diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 62786097..ea19ae3d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,6 +34,8 @@ jobs: uses: actions/checkout@v4 - name: Set up tree-sitter uses: tree-sitter/setup-action/cli@v2 + with: + tree-sitter-ref: v0.25.10 - name: Set up examples shell: bash run: |- diff --git a/grammar.js b/grammar.js index a378cde7..79ea9a49 100644 --- a/grammar.js +++ b/grammar.js @@ -1586,6 +1586,10 @@ function _ctrl_try_rule(parenthesized) { keyword().catch, field('catch_branch', $._blosure), ]; + const seq_finally_array = [ + keyword().finally, + field('finally_branch', $._blosure), + ]; const seq_array = [ keyword().try, field('try_branch', $.block), @@ -1594,6 +1598,11 @@ function _ctrl_try_rule(parenthesized) { _insert_newline($, seq_catch_array, true, false) : seq(...seq_catch_array), ), + optional( + parenthesized ? + _insert_newline($, seq_finally_array, true, false) : + seq(...seq_finally_array), + ), ]; return parenthesized ? _insert_newline($, seq_array, false, false) : @@ -1956,6 +1965,7 @@ function keyword() { else: 'else', try: 'try', catch: 'catch', + finally: 'finally', match: 'match', in: 'in', diff --git a/queries/nu/highlights.scm b/queries/nu/highlights.scm index 0570739e..b06e2b88 100644 --- a/queries/nu/highlights.scm +++ b/queries/nu/highlights.scm @@ -22,6 +22,7 @@ [ "try" "catch" + "finally" "error" ] @keyword.exception diff --git a/script/known-failures.txt b/script/known-failures.txt index b4fd207a..9e492f93 100644 --- a/script/known-failures.txt +++ b/script/known-failures.txt @@ -21,6 +21,7 @@ examples/nu_scripts/custom-completions/pytest/pytest-completions.nu examples/nu_scripts/custom-menus/current_session_history_menu.nu examples/nu_scripts/example-config/init.nu examples/nu_scripts/make_release/gen-ts-ext.nu +examples/nu_scripts/make_release/notes/notice.nu examples/nu_scripts/make_release/notes/tools.nu examples/nu_scripts/modules/duplicates/example.nu examples/nu_scripts/modules/kubernetes/complete.nu diff --git a/src/grammar.json b/src/grammar.json index 606d71a8..1e32d3ea 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -1202,6 +1202,30 @@ } ] }, + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "finally" + }, + "named": false, + "value": "_prefix" + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':,]" + } + } + } + ] + }, { "type": "SEQ", "members": [ @@ -4442,6 +4466,31 @@ "type": "BLANK" } ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "finally" + }, + { + "type": "FIELD", + "name": "finally_branch", + "content": { + "type": "SYMBOL", + "name": "_blosure" + } + } + ] + }, + { + "type": "BLANK" + } + ] } ] }, @@ -4532,6 +4581,67 @@ "type": "BLANK" } ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_repeat_newline" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_repeat_newline" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "finally" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_repeat_newline" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "finally_branch", + "content": { + "type": "SYMBOL", + "name": "_blosure" + } + } + ] + }, + { + "type": "BLANK" + } + ] } ] }, @@ -15733,6 +15843,15 @@ "named": true, "value": "identifier" }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "finally" + }, + "named": true, + "value": "identifier" + }, { "type": "ALIAS", "content": { @@ -17485,14 +17604,6 @@ } ], "conflicts": [ - [ - "_assignment_pattern", - "_stmt_let_shortcut" - ], - [ - "_assignment_pattern_parenthesized", - "_stmt_let_shortcut" - ], [ "_binary_predicate_parenthesized" ], diff --git a/src/node-types.json b/src/node-types.json index b5ef6b42..af2b2a28 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -1051,6 +1051,20 @@ } ] }, + "finally_branch": { + "multiple": false, + "required": false, + "types": [ + { + "type": "block", + "named": true + }, + { + "type": "val_closure", + "named": true + } + ] + }, "try_branch": { "multiple": false, "required": true, @@ -5073,6 +5087,10 @@ "type": "filesize_unit", "named": true }, + { + "type": "finally", + "named": false + }, { "type": "float", "named": false diff --git a/src/parser.c b/src/parser.c index 0c1013cf..1df719db 100644 --- a/src/parser.c +++ b/src/parser.c @@ -15,16 +15,16 @@ #endif #define LANGUAGE_VERSION 15 -#define STATE_COUNT 5380 -#define LARGE_STATE_COUNT 1271 -#define SYMBOL_COUNT 484 +#define STATE_COUNT 5512 +#define LARGE_STATE_COUNT 1277 +#define SYMBOL_COUNT 485 #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 +#define FIELD_COUNT 65 +#define MAX_ALIAS_SEQUENCE_LENGTH 13 #define MAX_RESERVED_WORD_SET_SIZE 0 -#define PRODUCTION_ID_COUNT 253 +#define PRODUCTION_ID_COUNT 295 #define SUPERTYPE_COUNT 0 enum ts_symbol_identifiers { @@ -56,464 +56,465 @@ enum ts_symbol_identifiers { anon_sym_else = 26, anon_sym_try = 27, anon_sym_catch = 28, - anon_sym_match = 29, - anon_sym_in = 30, - anon_sym_true = 31, - anon_sym_false = 32, - anon_sym_null = 33, - aux_sym_cmd_identifier_token3 = 34, - aux_sym_cmd_identifier_token4 = 35, - aux_sym_cmd_identifier_token5 = 36, - anon_sym_STAR_STAR = 37, - anon_sym_PLUS_PLUS = 38, - anon_sym_STAR = 39, - anon_sym_SLASH = 40, - anon_sym_mod = 41, - anon_sym_SLASH_SLASH = 42, - anon_sym_PLUS = 43, - anon_sym_DASH = 44, - anon_sym_bit_DASHshl = 45, - anon_sym_bit_DASHshr = 46, - anon_sym_EQ_TILDE = 47, - anon_sym_BANG_TILDE = 48, - anon_sym_like = 49, - anon_sym_not_DASHlike = 50, - anon_sym_bit_DASHand = 51, - anon_sym_bit_DASHxor = 52, - anon_sym_bit_DASHor = 53, - anon_sym_and = 54, - anon_sym_xor = 55, - anon_sym_or = 56, - anon_sym_in2 = 57, - anon_sym_not_DASHin = 58, - anon_sym_has = 59, - anon_sym_not_DASHhas = 60, - anon_sym_starts_DASHwith = 61, - anon_sym_not_DASHstarts_DASHwith = 62, - anon_sym_ends_DASHwith = 63, - anon_sym_not_DASHends_DASHwith = 64, - anon_sym_EQ_EQ = 65, - anon_sym_BANG_EQ = 66, - anon_sym_LT = 67, - anon_sym_LT_EQ = 68, - anon_sym_GT = 69, - anon_sym_GT_EQ = 70, - aux_sym_cmd_identifier_token6 = 71, - sym_long_flag_identifier = 72, - sym__newline = 73, - sym__space = 74, - anon_sym_SEMI = 75, - anon_sym_PIPE = 76, - anon_sym_err_GT_PIPE = 77, - anon_sym_out_GT_PIPE = 78, - anon_sym_e_GT_PIPE = 79, - anon_sym_o_GT_PIPE = 80, - anon_sym_err_PLUSout_GT_PIPE = 81, - anon_sym_out_PLUSerr_GT_PIPE = 82, - anon_sym_o_PLUSe_GT_PIPE = 83, - anon_sym_e_PLUSo_GT_PIPE = 84, - sym_attribute_identifier = 85, - anon_sym_AT = 86, - anon_sym_COLON = 87, - anon_sym_DASH_GT = 88, - anon_sym_LBRACK = 89, - anon_sym_RBRACK = 90, - anon_sym_LPAREN = 91, - anon_sym_RPAREN = 92, - anon_sym_COMMA = 93, - anon_sym_DOLLAR = 94, - anon_sym_any = 95, - anon_sym_binary = 96, - anon_sym_block = 97, - anon_sym_bool = 98, - anon_sym_cell_DASHpath = 99, - anon_sym_closure = 100, - anon_sym_cond = 101, - anon_sym_datetime = 102, - anon_sym_directory = 103, - anon_sym_duration = 104, - anon_sym_error = 105, - anon_sym_expr = 106, - anon_sym_float = 107, - anon_sym_decimal = 108, - anon_sym_filesize = 109, - anon_sym_full_DASHcell_DASHpath = 110, - anon_sym_glob = 111, - anon_sym_int = 112, - anon_sym_import_DASHpattern = 113, - anon_sym_keyword = 114, - anon_sym_math = 115, - anon_sym_nothing = 116, - anon_sym_number = 117, - anon_sym_one_DASHof = 118, - anon_sym_operator = 119, - anon_sym_path = 120, - anon_sym_range = 121, - anon_sym_signature = 122, - anon_sym_string = 123, - anon_sym_table = 124, - anon_sym_variable = 125, - 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__stmt_let_shortcut = 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__collection_body_repeat1 = 459, - aux_sym__composite_argument_body_repeat1 = 460, - aux_sym__ctrl_match_body_repeat1 = 461, - aux_sym_match_pattern_repeat1 = 462, - aux_sym__match_pattern_list_body_repeat1 = 463, - aux_sym__match_pattern_record_body_repeat1 = 464, - aux_sym_pipe_element_repeat1 = 465, - aux_sym_pipe_element_repeat2 = 466, - aux_sym_pipe_element_parenthesized_repeat1 = 467, - aux_sym_pipe_element_parenthesized_repeat2 = 468, - aux_sym__command_list_body_repeat1 = 469, - aux_sym__where_predicate_lhs_repeat1 = 470, - aux_sym__parenthesized_body_repeat1 = 471, - aux_sym__parenthesized_body_repeat2 = 472, - aux_sym_val_binary_repeat1 = 473, - aux_sym_string_content_repeat1 = 474, - aux_sym__inter_single_quotes_repeat1 = 475, - aux_sym__inter_double_quotes_repeat1 = 476, - aux_sym_list_body_repeat1 = 477, - aux_sym_record_body_repeat1 = 478, - aux_sym__table_body_repeat1 = 479, - aux_sym__command_parenthesized_repeat1 = 480, - aux_sym__unquoted_with_expr_repeat1 = 481, - aux_sym__unquoted_in_list_with_expr_repeat1 = 482, - aux_sym__unquoted_in_record_with_expr_repeat1 = 483, - anon_alias_sym__head = 484, - anon_alias_sym__prefix = 485, - anon_alias_sym__unit = 486, + anon_sym_finally = 29, + anon_sym_match = 30, + anon_sym_in = 31, + anon_sym_true = 32, + anon_sym_false = 33, + anon_sym_null = 34, + aux_sym_cmd_identifier_token3 = 35, + aux_sym_cmd_identifier_token4 = 36, + aux_sym_cmd_identifier_token5 = 37, + anon_sym_STAR_STAR = 38, + anon_sym_PLUS_PLUS = 39, + anon_sym_STAR = 40, + anon_sym_SLASH = 41, + anon_sym_mod = 42, + anon_sym_SLASH_SLASH = 43, + anon_sym_PLUS = 44, + anon_sym_DASH = 45, + anon_sym_bit_DASHshl = 46, + anon_sym_bit_DASHshr = 47, + anon_sym_EQ_TILDE = 48, + anon_sym_BANG_TILDE = 49, + anon_sym_like = 50, + anon_sym_not_DASHlike = 51, + anon_sym_bit_DASHand = 52, + anon_sym_bit_DASHxor = 53, + anon_sym_bit_DASHor = 54, + anon_sym_and = 55, + anon_sym_xor = 56, + anon_sym_or = 57, + anon_sym_in2 = 58, + anon_sym_not_DASHin = 59, + anon_sym_has = 60, + anon_sym_not_DASHhas = 61, + anon_sym_starts_DASHwith = 62, + anon_sym_not_DASHstarts_DASHwith = 63, + anon_sym_ends_DASHwith = 64, + anon_sym_not_DASHends_DASHwith = 65, + anon_sym_EQ_EQ = 66, + anon_sym_BANG_EQ = 67, + anon_sym_LT = 68, + anon_sym_LT_EQ = 69, + anon_sym_GT = 70, + anon_sym_GT_EQ = 71, + aux_sym_cmd_identifier_token6 = 72, + sym_long_flag_identifier = 73, + sym__newline = 74, + sym__space = 75, + anon_sym_SEMI = 76, + anon_sym_PIPE = 77, + anon_sym_err_GT_PIPE = 78, + anon_sym_out_GT_PIPE = 79, + anon_sym_e_GT_PIPE = 80, + anon_sym_o_GT_PIPE = 81, + anon_sym_err_PLUSout_GT_PIPE = 82, + anon_sym_out_PLUSerr_GT_PIPE = 83, + anon_sym_o_PLUSe_GT_PIPE = 84, + anon_sym_e_PLUSo_GT_PIPE = 85, + sym_attribute_identifier = 86, + anon_sym_AT = 87, + anon_sym_COLON = 88, + anon_sym_DASH_GT = 89, + anon_sym_LBRACK = 90, + anon_sym_RBRACK = 91, + anon_sym_LPAREN = 92, + anon_sym_RPAREN = 93, + anon_sym_COMMA = 94, + anon_sym_DOLLAR = 95, + anon_sym_any = 96, + anon_sym_binary = 97, + anon_sym_block = 98, + anon_sym_bool = 99, + anon_sym_cell_DASHpath = 100, + anon_sym_closure = 101, + anon_sym_cond = 102, + anon_sym_datetime = 103, + anon_sym_directory = 104, + anon_sym_duration = 105, + anon_sym_error = 106, + anon_sym_expr = 107, + anon_sym_float = 108, + anon_sym_decimal = 109, + anon_sym_filesize = 110, + anon_sym_full_DASHcell_DASHpath = 111, + anon_sym_glob = 112, + anon_sym_int = 113, + anon_sym_import_DASHpattern = 114, + anon_sym_keyword = 115, + anon_sym_math = 116, + anon_sym_nothing = 117, + anon_sym_number = 118, + anon_sym_one_DASHof = 119, + anon_sym_operator = 120, + anon_sym_path = 121, + anon_sym_range = 122, + anon_sym_signature = 123, + anon_sym_string = 124, + anon_sym_table = 125, + anon_sym_variable = 126, + anon_sym_var_DASHwith_DASHopt_DASHtype = 127, + anon_sym_record = 128, + anon_sym_list = 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, + 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__stmt_let_shortcut = 361, + sym_pipe_element = 362, + sym_pipe_element_parenthesized = 363, + sym_scope_pattern = 364, + sym_wild_card = 365, + sym__command_list_body = 366, + sym_command_list = 367, + sym_block = 368, + sym__blosure = 369, + sym__where_predicate_lhs_path_head = 370, + sym__where_predicate_lhs = 371, + sym_where_command = 372, + sym_where_command_parenthesized = 373, + sym__binary_predicate = 374, + sym__binary_predicate_parenthesized = 375, + sym_where_predicate = 376, + sym__expression = 377, + sym__expression_parenthesized = 378, + sym_expr_unary = 379, + sym__expr_unary_minus = 380, + sym_expr_binary = 381, + sym_expr_binary_parenthesized = 382, + sym__expr_binary_expression = 383, + sym__expr_binary_expression_parenthesized = 384, + sym_expr_parenthesized = 385, + sym__spread_parenthesized = 386, + sym__expr_parenthesized_immediate = 387, + sym__parenthesized_body = 388, + sym_val_range = 389, + sym__val_range = 390, + sym__immediate_decimal = 391, + sym__value = 392, + sym_val_nothing = 393, + sym_val_bool = 394, + sym__spread_variable = 395, + sym_val_variable = 396, + sym_val_cellpath = 397, + sym_val_number = 398, + sym__val_number_decimal = 399, + sym__val_number = 400, + sym_val_duration = 401, + sym_val_filesize = 402, + sym_val_binary = 403, + sym_val_string = 404, + sym__raw_str = 405, + sym_string_content = 406, + sym__str_double_quotes = 407, + sym__str_single_quotes = 408, + sym__str_back_ticks = 409, + sym_val_interpolated = 410, + sym__inter_single_quotes = 411, + sym__inter_double_quotes = 412, + sym_expr_interpolated = 413, + sym_val_list = 414, + sym__spread_list = 415, + sym_list_body = 416, + sym_val_entry = 417, + sym_val_record = 418, + sym__spread_record = 419, + sym_record_body = 420, + sym_record_entry = 421, + sym__record_key = 422, + sym__table_head = 423, + sym__table_body = 424, + sym_val_table = 425, + sym_val_closure = 426, + sym_cell_path = 427, + sym__path_suffix = 428, + sym_path = 429, + sym_env_var = 430, + sym_command = 431, + sym__command_parenthesized = 432, + sym__cmd_arg = 433, + sym_redirection = 434, + sym__flag = 435, + sym__flag_equals_value = 436, + sym_short_flag = 437, + sym_long_flag = 438, + sym_unquoted = 439, + sym__unquoted_in_list = 440, + sym__unquoted_in_record = 441, + sym__unquoted_with_expr = 442, + sym__unquoted_in_list_with_expr = 443, + sym__unquoted_in_record_with_expr = 444, + sym__unquoted_anonymous_prefix = 445, + sym_comment = 446, + aux_sym_pipeline_repeat1 = 447, + aux_sym_pipeline_parenthesized_repeat1 = 448, + aux_sym__block_body_repeat1 = 449, + aux_sym__block_body_repeat2 = 450, + aux_sym_attribute_list_repeat1 = 451, + aux_sym_attribute_repeat1 = 452, + aux_sym_decl_def_repeat1 = 453, + aux_sym__types_body_repeat1 = 454, + aux_sym__types_body_repeat2 = 455, + aux_sym__types_body_repeat3 = 456, + aux_sym_parameter_parens_repeat1 = 457, + aux_sym_parameter_repeat1 = 458, + aux_sym_parameter_repeat2 = 459, + aux_sym__collection_body_repeat1 = 460, + aux_sym__composite_argument_body_repeat1 = 461, + aux_sym__ctrl_match_body_repeat1 = 462, + aux_sym_match_pattern_repeat1 = 463, + aux_sym__match_pattern_list_body_repeat1 = 464, + aux_sym__match_pattern_record_body_repeat1 = 465, + aux_sym_pipe_element_repeat1 = 466, + aux_sym_pipe_element_repeat2 = 467, + aux_sym_pipe_element_parenthesized_repeat1 = 468, + aux_sym_pipe_element_parenthesized_repeat2 = 469, + aux_sym__command_list_body_repeat1 = 470, + aux_sym__where_predicate_lhs_repeat1 = 471, + aux_sym__parenthesized_body_repeat1 = 472, + aux_sym__parenthesized_body_repeat2 = 473, + aux_sym_val_binary_repeat1 = 474, + aux_sym_string_content_repeat1 = 475, + aux_sym__inter_single_quotes_repeat1 = 476, + aux_sym__inter_double_quotes_repeat1 = 477, + aux_sym_list_body_repeat1 = 478, + aux_sym_record_body_repeat1 = 479, + aux_sym__table_body_repeat1 = 480, + aux_sym__command_parenthesized_repeat1 = 481, + aux_sym__unquoted_with_expr_repeat1 = 482, + aux_sym__unquoted_in_list_with_expr_repeat1 = 483, + aux_sym__unquoted_in_record_with_expr_repeat1 = 484, + anon_alias_sym__head = 485, + anon_alias_sym__prefix = 486, + anon_alias_sym__unit = 487, }; static const char * const ts_symbol_names[] = { @@ -546,6 +547,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_else] = "else", [anon_sym_try] = "try", [anon_sym_catch] = "catch", + [anon_sym_finally] = "finally", [anon_sym_match] = "match", [anon_sym_in] = "in", [anon_sym_true] = "true", @@ -1036,6 +1038,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_else] = anon_sym_else, [anon_sym_try] = anon_sym_try, [anon_sym_catch] = anon_sym_catch, + [anon_sym_finally] = anon_sym_finally, [anon_sym_match] = anon_sym_match, [anon_sym_in] = anon_sym_in, [anon_sym_true] = anon_sym_true, @@ -1613,6 +1616,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_finally] = { + .visible = true, + .named = false, + }, [anon_sym_match] = { .visible = true, .named = false, @@ -3469,49 +3476,50 @@ enum ts_field_identifiers { field_expr = 19, field_expression = 20, field_file_path = 21, - field_flag = 22, - field_flag_capsule = 23, - field_flat_type = 24, - field_head = 25, - field_import_pattern = 26, - field_inner = 27, - field_item = 28, - field_iterable = 29, - field_key = 30, - field_lhs = 31, - field_looping_var = 32, - field_module = 33, - field_name = 34, - field_opr = 35, - field_param_long_flag = 36, - field_param_name = 37, - field_param_optional = 38, - field_param_rest = 39, - field_param_short_flag = 40, - field_param_value = 41, - field_parameters = 42, - field_pattern = 43, - field_predicate = 44, - field_quoted_name = 45, - field_redir = 46, - field_rest = 47, - field_return_type = 48, - field_rhs = 49, - field_row = 50, - field_scrutinee = 51, - field_signature = 52, - field_spread = 53, - field_start = 54, - field_step = 55, - field_then_branch = 56, - field_try_branch = 57, - field_type = 58, - field_unit = 59, - field_unquoted_name = 60, - field_value = 61, - field_var_name = 62, - field_variable = 63, - field_wildcard = 64, + field_finally_branch = 22, + field_flag = 23, + field_flag_capsule = 24, + field_flat_type = 25, + field_head = 26, + field_import_pattern = 27, + field_inner = 28, + field_item = 29, + field_iterable = 30, + field_key = 31, + field_lhs = 32, + field_looping_var = 33, + field_module = 34, + field_name = 35, + field_opr = 36, + field_param_long_flag = 37, + field_param_name = 38, + field_param_optional = 39, + field_param_rest = 40, + field_param_short_flag = 41, + field_param_value = 42, + field_parameters = 43, + field_pattern = 44, + field_predicate = 45, + field_quoted_name = 46, + field_redir = 47, + field_rest = 48, + field_return_type = 49, + field_rhs = 50, + field_row = 51, + field_scrutinee = 52, + field_signature = 53, + field_spread = 54, + field_start = 55, + field_step = 56, + field_then_branch = 57, + field_try_branch = 58, + field_type = 59, + field_unit = 60, + field_unquoted_name = 61, + field_value = 62, + field_var_name = 63, + field_variable = 64, + field_wildcard = 65, }; static const char * const ts_field_names[] = { @@ -3537,6 +3545,7 @@ static const char * const ts_field_names[] = { [field_expr] = "expr", [field_expression] = "expression", [field_file_path] = "file_path", + [field_finally_branch] = "finally_branch", [field_flag] = "flag", [field_flag_capsule] = "flag_capsule", [field_flat_type] = "flat_type", @@ -3676,161 +3685,203 @@ static const TSMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [93] = {.index = 181, .length = 3}, [94] = {.index = 184, .length = 4}, [95] = {.index = 188, .length = 2}, - [96] = {.index = 190, .length = 1}, - [97] = {.index = 191, .length = 1}, - [99] = {.index = 190, .length = 1}, + [96] = {.index = 190, .length = 2}, + [97] = {.index = 192, .length = 1}, + [98] = {.index = 193, .length = 1}, [100] = {.index = 192, .length = 1}, - [101] = {.index = 193, .length = 2}, - [102] = {.index = 195, .length = 1}, - [103] = {.index = 196, .length = 2}, + [101] = {.index = 194, .length = 1}, + [102] = {.index = 195, .length = 2}, + [103] = {.index = 197, .length = 1}, [104] = {.index = 198, .length = 2}, - [106] = {.index = 200, .length = 2}, - [107] = {.index = 202, .length = 1}, - [108] = {.index = 203, .length = 4}, - [109] = {.index = 207, .length = 1}, - [110] = {.index = 208, .length = 2}, - [111] = {.index = 210, .length = 1}, - [112] = {.index = 211, .length = 2}, + [105] = {.index = 200, .length = 2}, + [107] = {.index = 202, .length = 2}, + [108] = {.index = 204, .length = 1}, + [109] = {.index = 205, .length = 4}, + [110] = {.index = 209, .length = 1}, + [111] = {.index = 210, .length = 2}, + [112] = {.index = 212, .length = 1}, [113] = {.index = 213, .length = 2}, - [114] = {.index = 215, .length = 1}, - [115] = {.index = 208, .length = 2}, - [116] = {.index = 216, .length = 2}, - [117] = {.index = 216, .length = 2}, - [118] = {.index = 216, .length = 2}, - [119] = {.index = 216, .length = 2}, - [120] = {.index = 218, .length = 9}, - [121] = {.index = 227, .length = 6}, - [122] = {.index = 233, .length = 6}, - [123] = {.index = 239, .length = 2}, - [124] = {.index = 241, .length = 1}, - [125] = {.index = 242, .length = 2}, - [126] = {.index = 244, .length = 1}, - [127] = {.index = 245, .length = 2}, - [128] = {.index = 245, .length = 2}, - [129] = {.index = 245, .length = 2}, - [130] = {.index = 245, .length = 2}, - [131] = {.index = 247, .length = 3}, - [132] = {.index = 250, .length = 4}, - [133] = {.index = 254, .length = 4}, - [134] = {.index = 258, .length = 1}, - [135] = {.index = 259, .length = 2}, - [136] = {.index = 261, .length = 5}, - [137] = {.index = 266, .length = 5}, - [138] = {.index = 271, .length = 4}, - [139] = {.index = 275, .length = 3}, - [140] = {.index = 278, .length = 3}, - [141] = {.index = 281, .length = 6}, - [142] = {.index = 287, .length = 6}, - [143] = {.index = 293, .length = 5}, - [144] = {.index = 298, .length = 3}, - [145] = {.index = 301, .length = 3}, - [146] = {.index = 304, .length = 2}, + [114] = {.index = 215, .length = 2}, + [115] = {.index = 217, .length = 1}, + [116] = {.index = 210, .length = 2}, + [117] = {.index = 218, .length = 2}, + [118] = {.index = 218, .length = 2}, + [119] = {.index = 218, .length = 2}, + [120] = {.index = 218, .length = 2}, + [121] = {.index = 220, .length = 9}, + [122] = {.index = 229, .length = 6}, + [123] = {.index = 235, .length = 6}, + [124] = {.index = 241, .length = 2}, + [125] = {.index = 243, .length = 1}, + [126] = {.index = 244, .length = 2}, + [127] = {.index = 246, .length = 1}, + [128] = {.index = 247, .length = 2}, + [129] = {.index = 247, .length = 2}, + [130] = {.index = 247, .length = 2}, + [131] = {.index = 247, .length = 2}, + [132] = {.index = 249, .length = 3}, + [133] = {.index = 252, .length = 4}, + [134] = {.index = 256, .length = 4}, + [135] = {.index = 260, .length = 1}, + [136] = {.index = 261, .length = 2}, + [137] = {.index = 263, .length = 5}, + [138] = {.index = 268, .length = 5}, + [139] = {.index = 273, .length = 4}, + [140] = {.index = 277, .length = 3}, + [141] = {.index = 280, .length = 3}, + [142] = {.index = 283, .length = 6}, + [143] = {.index = 289, .length = 6}, + [144] = {.index = 295, .length = 5}, + [145] = {.index = 300, .length = 3}, + [146] = {.index = 303, .length = 3}, [147] = {.index = 306, .length = 2}, [148] = {.index = 308, .length = 2}, - [149] = {.index = 310, .length = 3}, - [150] = {.index = 310, .length = 3}, - [151] = {.index = 313, .length = 3}, - [152] = {.index = 313, .length = 3}, - [153] = {.index = 316, .length = 1}, - [154] = {.index = 317, .length = 1}, - [155] = {.index = 318, .length = 3}, - [156] = {.index = 321, .length = 3}, - [157] = {.index = 324, .length = 3}, - [158] = {.index = 324, .length = 3}, - [159] = {.index = 324, .length = 3}, - [160] = {.index = 324, .length = 3}, - [161] = {.index = 324, .length = 3}, - [162] = {.index = 324, .length = 3}, - [163] = {.index = 324, .length = 3}, - [164] = {.index = 324, .length = 3}, - [165] = {.index = 327, .length = 5}, - [166] = {.index = 332, .length = 4}, - [167] = {.index = 336, .length = 4}, - [168] = {.index = 340, .length = 3}, - [169] = {.index = 343, .length = 1}, - [170] = {.index = 344, .length = 2}, - [171] = {.index = 346, .length = 1}, - [172] = {.index = 347, .length = 1}, - [173] = {.index = 348, .length = 1}, - [174] = {.index = 349, .length = 2}, + [149] = {.index = 310, .length = 2}, + [150] = {.index = 312, .length = 3}, + [151] = {.index = 312, .length = 3}, + [152] = {.index = 315, .length = 3}, + [153] = {.index = 315, .length = 3}, + [154] = {.index = 318, .length = 1}, + [155] = {.index = 319, .length = 1}, + [156] = {.index = 320, .length = 3}, + [157] = {.index = 323, .length = 3}, + [158] = {.index = 326, .length = 3}, + [159] = {.index = 326, .length = 3}, + [160] = {.index = 326, .length = 3}, + [161] = {.index = 326, .length = 3}, + [162] = {.index = 326, .length = 3}, + [163] = {.index = 326, .length = 3}, + [164] = {.index = 326, .length = 3}, + [165] = {.index = 326, .length = 3}, + [166] = {.index = 329, .length = 5}, + [167] = {.index = 334, .length = 4}, + [168] = {.index = 338, .length = 4}, + [169] = {.index = 342, .length = 3}, + [170] = {.index = 345, .length = 1}, + [171] = {.index = 346, .length = 2}, + [172] = {.index = 348, .length = 1}, + [173] = {.index = 349, .length = 1}, + [174] = {.index = 350, .length = 1}, [175] = {.index = 351, .length = 2}, - [176] = {.index = 353, .length = 5}, - [177] = {.index = 358, .length = 6}, - [178] = {.index = 364, .length = 1}, - [179] = {.index = 365, .length = 1}, - [180] = {.index = 366, .length = 2}, - [181] = {.index = 368, .length = 2}, - [182] = {.index = 370, .length = 2}, - [183] = {.index = 372, .length = 2}, - [184] = {.index = 374, .length = 2}, - [185] = {.index = 376, .length = 9}, - [186] = {.index = 385, .length = 6}, - [187] = {.index = 391, .length = 9}, - [188] = {.index = 400, .length = 6}, - [189] = {.index = 406, .length = 6}, - [190] = {.index = 412, .length = 6}, - [191] = {.index = 418, .length = 3}, - [192] = {.index = 418, .length = 3}, - [193] = {.index = 421, .length = 1}, - [194] = {.index = 422, .length = 4}, - [195] = {.index = 426, .length = 5}, - [196] = {.index = 431, .length = 5}, - [197] = {.index = 436, .length = 4}, - [198] = {.index = 440, .length = 3}, - [199] = {.index = 443, .length = 3}, - [200] = {.index = 446, .length = 3}, - [201] = {.index = 449, .length = 6}, - [202] = {.index = 455, .length = 2}, - [203] = {.index = 457, .length = 1}, - [204] = {.index = 458, .length = 2}, - [205] = {.index = 460, .length = 2}, - [206] = {.index = 462, .length = 2}, - [207] = {.index = 464, .length = 3}, - [208] = {.index = 467, .length = 3}, - [209] = {.index = 470, .length = 3}, - [210] = {.index = 473, .length = 3}, - [211] = {.index = 476, .length = 3}, - [212] = {.index = 479, .length = 3}, - [213] = {.index = 482, .length = 2}, - [214] = {.index = 484, .length = 2}, - [215] = {.index = 486, .length = 9}, - [216] = {.index = 495, .length = 6}, - [217] = {.index = 501, .length = 6}, - [218] = {.index = 507, .length = 1}, - [219] = {.index = 508, .length = 4}, - [220] = {.index = 512, .length = 5}, - [221] = {.index = 517, .length = 6}, - [222] = {.index = 523, .length = 3}, - [223] = {.index = 526, .length = 3}, - [224] = {.index = 529, .length = 3}, - [225] = {.index = 532, .length = 3}, - [226] = {.index = 535, .length = 3}, - [227] = {.index = 538, .length = 3}, - [228] = {.index = 541, .length = 3}, - [229] = {.index = 544, .length = 3}, - [230] = {.index = 547, .length = 3}, - [231] = {.index = 550, .length = 2}, - [232] = {.index = 552, .length = 2}, - [233] = {.index = 554, .length = 5}, - [234] = {.index = 559, .length = 4}, - [235] = {.index = 563, .length = 3}, - [236] = {.index = 566, .length = 3}, - [237] = {.index = 569, .length = 3}, - [238] = {.index = 572, .length = 3}, - [239] = {.index = 575, .length = 3}, - [240] = {.index = 578, .length = 3}, - [241] = {.index = 581, .length = 3}, - [242] = {.index = 584, .length = 3}, - [243] = {.index = 587, .length = 2}, - [244] = {.index = 589, .length = 5}, - [245] = {.index = 594, .length = 3}, - [246] = {.index = 597, .length = 3}, - [247] = {.index = 600, .length = 3}, - [248] = {.index = 603, .length = 3}, - [249] = {.index = 606, .length = 3}, - [250] = {.index = 609, .length = 3}, - [251] = {.index = 612, .length = 3}, - [252] = {.index = 615, .length = 3}, + [176] = {.index = 353, .length = 2}, + [177] = {.index = 355, .length = 5}, + [178] = {.index = 360, .length = 6}, + [179] = {.index = 366, .length = 3}, + [180] = {.index = 369, .length = 1}, + [181] = {.index = 370, .length = 1}, + [182] = {.index = 371, .length = 2}, + [183] = {.index = 373, .length = 2}, + [184] = {.index = 375, .length = 2}, + [185] = {.index = 377, .length = 2}, + [186] = {.index = 379, .length = 2}, + [187] = {.index = 381, .length = 2}, + [188] = {.index = 383, .length = 2}, + [189] = {.index = 385, .length = 9}, + [190] = {.index = 394, .length = 6}, + [191] = {.index = 400, .length = 9}, + [192] = {.index = 409, .length = 6}, + [193] = {.index = 415, .length = 6}, + [194] = {.index = 421, .length = 6}, + [195] = {.index = 427, .length = 3}, + [196] = {.index = 427, .length = 3}, + [197] = {.index = 430, .length = 1}, + [198] = {.index = 431, .length = 4}, + [199] = {.index = 435, .length = 5}, + [200] = {.index = 440, .length = 5}, + [201] = {.index = 445, .length = 4}, + [202] = {.index = 449, .length = 3}, + [203] = {.index = 452, .length = 3}, + [204] = {.index = 455, .length = 3}, + [205] = {.index = 458, .length = 6}, + [206] = {.index = 464, .length = 2}, + [207] = {.index = 466, .length = 1}, + [208] = {.index = 467, .length = 2}, + [209] = {.index = 469, .length = 2}, + [210] = {.index = 471, .length = 2}, + [211] = {.index = 473, .length = 3}, + [212] = {.index = 476, .length = 3}, + [213] = {.index = 479, .length = 3}, + [214] = {.index = 482, .length = 3}, + [215] = {.index = 485, .length = 3}, + [216] = {.index = 488, .length = 3}, + [217] = {.index = 491, .length = 2}, + [218] = {.index = 493, .length = 2}, + [219] = {.index = 495, .length = 2}, + [220] = {.index = 497, .length = 2}, + [221] = {.index = 499, .length = 9}, + [222] = {.index = 508, .length = 6}, + [223] = {.index = 514, .length = 6}, + [224] = {.index = 520, .length = 1}, + [225] = {.index = 521, .length = 4}, + [226] = {.index = 525, .length = 5}, + [227] = {.index = 530, .length = 6}, + [228] = {.index = 536, .length = 3}, + [229] = {.index = 539, .length = 3}, + [230] = {.index = 542, .length = 3}, + [231] = {.index = 545, .length = 3}, + [232] = {.index = 548, .length = 3}, + [233] = {.index = 551, .length = 3}, + [234] = {.index = 554, .length = 3}, + [235] = {.index = 557, .length = 3}, + [236] = {.index = 560, .length = 3}, + [237] = {.index = 563, .length = 3}, + [238] = {.index = 566, .length = 2}, + [239] = {.index = 568, .length = 2}, + [240] = {.index = 570, .length = 3}, + [241] = {.index = 573, .length = 3}, + [242] = {.index = 576, .length = 2}, + [243] = {.index = 578, .length = 2}, + [244] = {.index = 580, .length = 5}, + [245] = {.index = 585, .length = 4}, + [246] = {.index = 589, .length = 3}, + [247] = {.index = 592, .length = 3}, + [248] = {.index = 595, .length = 3}, + [249] = {.index = 598, .length = 3}, + [250] = {.index = 601, .length = 3}, + [251] = {.index = 604, .length = 3}, + [252] = {.index = 607, .length = 3}, + [253] = {.index = 610, .length = 3}, + [254] = {.index = 613, .length = 3}, + [255] = {.index = 616, .length = 3}, + [256] = {.index = 619, .length = 2}, + [257] = {.index = 621, .length = 2}, + [258] = {.index = 623, .length = 3}, + [259] = {.index = 626, .length = 3}, + [260] = {.index = 629, .length = 3}, + [261] = {.index = 632, .length = 2}, + [262] = {.index = 634, .length = 5}, + [263] = {.index = 639, .length = 3}, + [264] = {.index = 642, .length = 3}, + [265] = {.index = 645, .length = 3}, + [266] = {.index = 648, .length = 3}, + [267] = {.index = 651, .length = 3}, + [268] = {.index = 654, .length = 3}, + [269] = {.index = 657, .length = 3}, + [270] = {.index = 660, .length = 3}, + [271] = {.index = 663, .length = 3}, + [272] = {.index = 666, .length = 2}, + [273] = {.index = 668, .length = 3}, + [274] = {.index = 671, .length = 3}, + [275] = {.index = 674, .length = 3}, + [276] = {.index = 677, .length = 3}, + [277] = {.index = 680, .length = 3}, + [278] = {.index = 683, .length = 3}, + [279] = {.index = 686, .length = 3}, + [280] = {.index = 689, .length = 3}, + [281] = {.index = 692, .length = 3}, + [282] = {.index = 695, .length = 3}, + [283] = {.index = 698, .length = 3}, + [284] = {.index = 701, .length = 3}, + [285] = {.index = 704, .length = 3}, + [286] = {.index = 707, .length = 3}, + [287] = {.index = 710, .length = 3}, + [288] = {.index = 713, .length = 3}, + [289] = {.index = 716, .length = 3}, + [290] = {.index = 719, .length = 3}, + [291] = {.index = 722, .length = 3}, + [292] = {.index = 725, .length = 3}, + [293] = {.index = 728, .length = 3}, + [294] = {.index = 731, .length = 3}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -4111,51 +4162,54 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_catch_branch, 3}, {field_try_branch, 1}, [190] = + {field_finally_branch, 3}, + {field_try_branch, 1}, + [192] = {field_scrutinee, 1}, - [191] = + [193] = {field_rest, 0, .inherited = true}, - [192] = + [194] = {field_head, 1}, - [193] = + [195] = {field_head, 1, .inherited = true}, {field_row, 2, .inherited = true}, - [195] = + [197] = {field_row, 1}, - [196] = + [198] = {field_row, 0, .inherited = true}, {field_row, 1}, - [198] = + [200] = {field_row, 0, .inherited = true}, {field_row, 1, .inherited = true}, - [200] = + [202] = {field_entry, 1, .inherited = true}, {field_entry, 2}, - [202] = + [204] = {field_try_branch, 2}, - [203] = + [205] = {field_lhs, 2, .inherited = true}, {field_opr, 2, .inherited = true}, {field_predicate, 2}, {field_rhs, 2, .inherited = true}, - [207] = + [209] = {field_predicate, 2}, - [208] = + [210] = {field_key, 0}, {field_value, 2}, - [210] = + [212] = {field_name, 0}, - [211] = + [213] = {field_param_name, 0}, {field_param_name, 1}, - [213] = + [215] = {field_flag_capsule, 1}, {field_param_long_flag, 0}, - [215] = + [217] = {field_parameters, 2}, - [216] = + [218] = {field_end, 3}, {field_step, 1}, - [218] = + [220] = {field_lhs, 0}, {field_lhs, 0, .inherited = true}, {field_lhs, 2, .inherited = true}, @@ -4165,208 +4219,218 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_rhs, 0, .inherited = true}, {field_rhs, 2}, {field_rhs, 2, .inherited = true}, - [227] = + [229] = {field_lhs, 0}, {field_lhs, 0, .inherited = true}, {field_opr, 0, .inherited = true}, {field_opr, 1}, {field_rhs, 0, .inherited = true}, {field_rhs, 2}, - [233] = + [235] = {field_lhs, 0}, {field_lhs, 2, .inherited = true}, {field_opr, 1}, {field_opr, 2, .inherited = true}, {field_rhs, 2}, {field_rhs, 2, .inherited = true}, - [239] = + [241] = {field_digit, 0}, {field_digit, 1}, - [241] = + [243] = {field_digit, 2, .inherited = true}, - [242] = + [244] = {field_digit, 0, .inherited = true}, {field_digit, 1, .inherited = true}, - [244] = + [246] = {field_file_path, 2}, - [245] = + [247] = {field_start, 0}, {field_step, 2}, - [247] = + [249] = {field_quoted_name, 2, .inherited = true}, {field_unquoted_name, 2, .inherited = true}, {field_value, 4}, - [250] = + [252] = {field_body, 4}, {field_parameters, 3}, {field_quoted_name, 2, .inherited = true}, {field_unquoted_name, 2, .inherited = true}, - [254] = + [256] = {field_body, 4}, {field_quoted_name, 2, .inherited = true}, {field_signature, 3}, {field_unquoted_name, 2, .inherited = true}, - [258] = + [260] = {field_type, 2, .inherited = true}, - [259] = + [261] = {field_completion, 2}, {field_type, 1, .inherited = true}, - [261] = + [263] = {field_dollar_name, 0, .inherited = true}, {field_name, 0}, {field_type, 1}, {field_value, 3}, {field_var_name, 0, .inherited = true}, - [266] = + [268] = {field_body, 4}, {field_parameters, 2}, {field_quoted_name, 1, .inherited = true}, {field_return_type, 3}, {field_unquoted_name, 1, .inherited = true}, - [271] = + [273] = {field_body, 4}, {field_parameters, 3}, {field_quoted_name, 1, .inherited = true}, {field_unquoted_name, 1, .inherited = true}, - [275] = + [277] = {field_cmd, 1, .inherited = true}, {field_quoted_name, 1, .inherited = true}, {field_unquoted_name, 1, .inherited = true}, - [278] = + [280] = {field_cmd, 1}, {field_quoted_name, 1, .inherited = true}, {field_unquoted_name, 1, .inherited = true}, - [281] = + [283] = {field_cmd, 0, .inherited = true}, {field_cmd, 1}, {field_quoted_name, 0, .inherited = true}, {field_quoted_name, 1, .inherited = true}, {field_unquoted_name, 0, .inherited = true}, {field_unquoted_name, 1, .inherited = true}, - [287] = + [289] = {field_cmd, 0, .inherited = true}, {field_cmd, 1, .inherited = true}, {field_quoted_name, 0, .inherited = true}, {field_quoted_name, 1, .inherited = true}, {field_unquoted_name, 0, .inherited = true}, {field_unquoted_name, 1, .inherited = true}, - [293] = + [295] = {field_body, 4}, {field_dollar_name, 1, .inherited = true}, {field_iterable, 3}, {field_looping_var, 1}, {field_var_name, 1, .inherited = true}, - [298] = + [300] = {field_condition, 1}, {field_else_branch, 4}, {field_then_branch, 2}, - [301] = + [303] = {field_condition, 1}, {field_else_block, 4}, {field_then_branch, 2}, - [304] = + [306] = {field_row, 1, .inherited = true}, {field_row, 2}, - [306] = + [308] = {field_condition, 2}, {field_then_branch, 3}, - [308] = + [310] = {field_condition, 1}, {field_then_branch, 3}, - [310] = + [312] = {field_lhs, 0}, {field_opr, 1}, {field_rhs, 3}, - [313] = + [315] = {field_lhs, 0}, {field_opr, 2}, {field_rhs, 3}, - [316] = + [318] = {field_name, 2}, - [317] = + [319] = {field_param_value, 1}, - [318] = + [320] = {field_key, 0}, {field_key, 1}, {field_value, 3}, - [321] = + [323] = {field_quoted_name, 3, .inherited = true}, {field_signature, 4}, {field_unquoted_name, 3, .inherited = true}, - [324] = + [326] = {field_end, 4}, {field_start, 0}, {field_step, 2}, - [327] = + [329] = {field_body, 5}, {field_parameters, 3}, {field_quoted_name, 2, .inherited = true}, {field_return_type, 4}, {field_unquoted_name, 2, .inherited = true}, - [332] = + [334] = {field_body, 5}, {field_parameters, 4}, {field_quoted_name, 2, .inherited = true}, {field_unquoted_name, 2, .inherited = true}, - [336] = + [338] = {field_body, 5}, {field_parameters, 4}, {field_quoted_name, 3, .inherited = true}, {field_unquoted_name, 3, .inherited = true}, - [340] = + [342] = {field_completion, 0, .inherited = true}, {field_key, 0, .inherited = true}, {field_type, 0, .inherited = true}, - [343] = + [345] = {field_key, 0}, - [344] = + [346] = {field_completion, 3}, {field_type, 2, .inherited = true}, - [346] = + [348] = {field_command, 1}, - [347] = + [349] = {field_constant, 1}, - [348] = + [350] = {field_type, 3, .inherited = true}, - [349] = + [351] = {field_type, 0, .inherited = true}, {field_type, 1, .inherited = true}, - [351] = + [353] = {field_type, 0, .inherited = true}, {field_type, 2, .inherited = true}, - [353] = + [355] = {field_body, 5}, {field_parameters, 3}, {field_quoted_name, 1, .inherited = true}, {field_return_type, 4}, {field_unquoted_name, 1, .inherited = true}, - [358] = + [360] = {field_cmd, 1, .inherited = true}, {field_cmd, 2}, {field_quoted_name, 1, .inherited = true}, {field_quoted_name, 2, .inherited = true}, {field_unquoted_name, 1, .inherited = true}, {field_unquoted_name, 2, .inherited = true}, - [364] = + [366] = + {field_catch_branch, 3}, + {field_finally_branch, 5}, + {field_try_branch, 1}, + [369] = {field_rest, 1}, - [365] = + [370] = {field_entry, 1, .inherited = true}, - [366] = + [371] = {field_default_pattern, 0}, {field_expression, 2}, - [368] = + [373] = {field_expression, 2}, {field_pattern, 0}, - [370] = + [375] = {field_condition, 2}, {field_then_branch, 4}, - [372] = + [377] = {field_catch_branch, 4}, {field_try_branch, 2}, - [374] = + [379] = + {field_finally_branch, 4}, + {field_try_branch, 2}, + [381] = {field_catch_branch, 4}, {field_try_branch, 1}, - [376] = + [383] = + {field_finally_branch, 4}, + {field_try_branch, 1}, + [385] = {field_lhs, 0}, {field_lhs, 0, .inherited = true}, {field_lhs, 3, .inherited = true}, @@ -4376,14 +4440,14 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_rhs, 0, .inherited = true}, {field_rhs, 3}, {field_rhs, 3, .inherited = true}, - [385] = + [394] = {field_lhs, 0}, {field_lhs, 0, .inherited = true}, {field_opr, 0, .inherited = true}, {field_opr, 1}, {field_rhs, 0, .inherited = true}, {field_rhs, 3}, - [391] = + [400] = {field_lhs, 0}, {field_lhs, 0, .inherited = true}, {field_lhs, 3, .inherited = true}, @@ -4393,119 +4457,125 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_rhs, 0, .inherited = true}, {field_rhs, 3}, {field_rhs, 3, .inherited = true}, - [400] = + [409] = {field_lhs, 0}, {field_lhs, 0, .inherited = true}, {field_opr, 0, .inherited = true}, {field_opr, 2}, {field_rhs, 0, .inherited = true}, {field_rhs, 3}, - [406] = + [415] = {field_lhs, 0}, {field_lhs, 3, .inherited = true}, {field_opr, 1}, {field_opr, 3, .inherited = true}, {field_rhs, 3}, {field_rhs, 3, .inherited = true}, - [412] = + [421] = {field_lhs, 0}, {field_lhs, 3, .inherited = true}, {field_opr, 2}, {field_opr, 3, .inherited = true}, {field_rhs, 3}, {field_rhs, 3, .inherited = true}, - [418] = + [427] = {field_lhs, 0}, {field_opr, 2}, {field_rhs, 4}, - [421] = + [430] = {field_param_value, 2}, - [422] = + [431] = {field_body, 5}, {field_quoted_name, 3, .inherited = true}, {field_signature, 4}, {field_unquoted_name, 3, .inherited = true}, - [426] = + [435] = {field_body, 6}, {field_parameters, 4}, {field_quoted_name, 2, .inherited = true}, {field_return_type, 5}, {field_unquoted_name, 2, .inherited = true}, - [431] = + [440] = {field_body, 6}, {field_parameters, 4}, {field_quoted_name, 3, .inherited = true}, {field_return_type, 5}, {field_unquoted_name, 3, .inherited = true}, - [436] = + [445] = {field_body, 6}, {field_parameters, 5}, {field_quoted_name, 3, .inherited = true}, {field_unquoted_name, 3, .inherited = true}, - [440] = + [449] = {field_completion, 2, .inherited = true}, {field_key, 2, .inherited = true}, {field_type, 2, .inherited = true}, - [443] = + [452] = {field_completion, 1, .inherited = true}, {field_key, 0}, {field_type, 1, .inherited = true}, - [446] = + [455] = {field_completion, 1, .inherited = true}, {field_key, 1, .inherited = true}, {field_type, 1, .inherited = true}, - [449] = + [458] = {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}, - [455] = + [464] = {field_inner, 2}, {field_type, 2, .inherited = true}, - [457] = + [466] = {field_completion, 2}, - [458] = + [467] = {field_completion, 4}, {field_type, 3, .inherited = true}, - [460] = + [469] = {field_type, 1, .inherited = true}, {field_type, 2, .inherited = true}, - [462] = + [471] = {field_entry, 1, .inherited = true}, {field_rest, 2}, - [464] = + [473] = {field_condition, 2}, {field_else_branch, 5}, {field_then_branch, 3}, - [467] = + [476] = {field_condition, 2}, {field_else_block, 5}, {field_then_branch, 3}, - [470] = + [479] = {field_condition, 1}, {field_else_branch, 5}, {field_then_branch, 3}, - [473] = + [482] = {field_condition, 1}, {field_else_block, 5}, {field_then_branch, 3}, - [476] = + [485] = {field_condition, 1}, {field_else_branch, 5}, {field_then_branch, 2}, - [479] = + [488] = {field_condition, 1}, {field_else_block, 5}, {field_then_branch, 2}, - [482] = + [491] = {field_catch_branch, 5}, {field_try_branch, 2}, - [484] = + [493] = + {field_finally_branch, 5}, + {field_try_branch, 2}, + [495] = {field_catch_branch, 5}, {field_try_branch, 1}, - [486] = + [497] = + {field_finally_branch, 5}, + {field_try_branch, 1}, + [499] = {field_lhs, 0}, {field_lhs, 0, .inherited = true}, {field_lhs, 4, .inherited = true}, @@ -4515,166 +4585,305 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_rhs, 0, .inherited = true}, {field_rhs, 4}, {field_rhs, 4, .inherited = true}, - [495] = + [508] = {field_lhs, 0}, {field_lhs, 0, .inherited = true}, {field_opr, 0, .inherited = true}, {field_opr, 2}, {field_rhs, 0, .inherited = true}, {field_rhs, 4}, - [501] = + [514] = {field_lhs, 0}, {field_lhs, 4, .inherited = true}, {field_opr, 2}, {field_opr, 4, .inherited = true}, {field_rhs, 4}, {field_rhs, 4, .inherited = true}, - [507] = + [520] = {field_param_value, 3}, - [508] = + [521] = {field_body, 6}, {field_parameters, 5}, {field_quoted_name, 4, .inherited = true}, {field_unquoted_name, 4, .inherited = true}, - [512] = + [525] = {field_body, 7}, {field_parameters, 5}, {field_quoted_name, 3, .inherited = true}, {field_return_type, 6}, {field_unquoted_name, 3, .inherited = true}, - [517] = + [530] = {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}, - [523] = + [536] = {field_completion, 3}, {field_inner, 2}, {field_type, 2, .inherited = true}, - [526] = + [539] = {field_condition, 2}, {field_else_branch, 6}, {field_then_branch, 4}, - [529] = + [542] = {field_condition, 2}, {field_else_block, 6}, {field_then_branch, 4}, - [532] = + [545] = {field_condition, 2}, {field_else_branch, 6}, {field_then_branch, 3}, - [535] = + [548] = {field_condition, 2}, {field_else_block, 6}, {field_then_branch, 3}, - [538] = + [551] = {field_condition, 1}, {field_else_branch, 6}, {field_then_branch, 3}, - [541] = + [554] = {field_condition, 1}, {field_else_block, 6}, {field_then_branch, 3}, - [544] = + [557] = {field_condition, 1}, {field_else_branch, 6}, {field_then_branch, 2}, - [547] = + [560] = {field_condition, 1}, {field_else_block, 6}, {field_then_branch, 2}, - [550] = + [563] = + {field_catch_branch, 4}, + {field_finally_branch, 6}, + {field_try_branch, 2}, + [566] = {field_catch_branch, 6}, {field_try_branch, 2}, - [552] = + [568] = + {field_finally_branch, 6}, + {field_try_branch, 2}, + [570] = + {field_catch_branch, 4}, + {field_finally_branch, 6}, + {field_try_branch, 1}, + [573] = + {field_catch_branch, 3}, + {field_finally_branch, 6}, + {field_try_branch, 1}, + [576] = {field_catch_branch, 6}, {field_try_branch, 1}, - [554] = + [578] = + {field_finally_branch, 6}, + {field_try_branch, 1}, + [580] = {field_body, 7}, {field_parameters, 5}, {field_quoted_name, 4, .inherited = true}, {field_return_type, 6}, {field_unquoted_name, 4, .inherited = true}, - [559] = + [585] = {field_body, 7}, {field_parameters, 6}, {field_quoted_name, 4, .inherited = true}, {field_unquoted_name, 4, .inherited = true}, - [563] = + [589] = {field_condition, 2}, {field_else_branch, 7}, {field_then_branch, 4}, - [566] = + [592] = {field_condition, 2}, {field_else_block, 7}, {field_then_branch, 4}, - [569] = + [595] = {field_condition, 2}, {field_else_branch, 7}, {field_then_branch, 3}, - [572] = + [598] = {field_condition, 2}, {field_else_block, 7}, {field_then_branch, 3}, - [575] = + [601] = {field_condition, 1}, {field_else_branch, 7}, {field_then_branch, 3}, - [578] = + [604] = {field_condition, 1}, {field_else_block, 7}, {field_then_branch, 3}, - [581] = + [607] = {field_condition, 1}, {field_else_branch, 7}, {field_then_branch, 2}, - [584] = + [610] = {field_condition, 1}, {field_else_block, 7}, {field_then_branch, 2}, - [587] = + [613] = + {field_catch_branch, 5}, + {field_finally_branch, 7}, + {field_try_branch, 2}, + [616] = + {field_catch_branch, 4}, + {field_finally_branch, 7}, + {field_try_branch, 2}, + [619] = {field_catch_branch, 7}, {field_try_branch, 2}, - [589] = + [621] = + {field_finally_branch, 7}, + {field_try_branch, 2}, + [623] = + {field_catch_branch, 4}, + {field_finally_branch, 7}, + {field_try_branch, 1}, + [626] = + {field_catch_branch, 3}, + {field_finally_branch, 7}, + {field_try_branch, 1}, + [629] = + {field_catch_branch, 5}, + {field_finally_branch, 7}, + {field_try_branch, 1}, + [632] = + {field_finally_branch, 7}, + {field_try_branch, 1}, + [634] = {field_body, 8}, {field_parameters, 6}, {field_quoted_name, 4, .inherited = true}, {field_return_type, 7}, {field_unquoted_name, 4, .inherited = true}, - [594] = + [639] = {field_condition, 2}, {field_else_branch, 8}, {field_then_branch, 4}, - [597] = + [642] = {field_condition, 2}, {field_else_block, 8}, {field_then_branch, 4}, - [600] = + [645] = {field_condition, 2}, {field_else_branch, 8}, {field_then_branch, 3}, - [603] = + [648] = {field_condition, 2}, {field_else_block, 8}, {field_then_branch, 3}, - [606] = + [651] = {field_condition, 1}, {field_else_branch, 8}, {field_then_branch, 3}, - [609] = + [654] = {field_condition, 1}, {field_else_block, 8}, {field_then_branch, 3}, - [612] = + [657] = + {field_catch_branch, 5}, + {field_finally_branch, 8}, + {field_try_branch, 2}, + [660] = + {field_catch_branch, 4}, + {field_finally_branch, 8}, + {field_try_branch, 2}, + [663] = + {field_catch_branch, 6}, + {field_finally_branch, 8}, + {field_try_branch, 2}, + [666] = + {field_finally_branch, 8}, + {field_try_branch, 2}, + [668] = + {field_catch_branch, 4}, + {field_finally_branch, 8}, + {field_try_branch, 1}, + [671] = + {field_catch_branch, 3}, + {field_finally_branch, 8}, + {field_try_branch, 1}, + [674] = + {field_catch_branch, 5}, + {field_finally_branch, 8}, + {field_try_branch, 1}, + [677] = + {field_catch_branch, 6}, + {field_finally_branch, 8}, + {field_try_branch, 1}, + [680] = {field_condition, 2}, {field_else_branch, 9}, {field_then_branch, 4}, - [615] = + [683] = {field_condition, 2}, {field_else_block, 9}, {field_then_branch, 4}, + [686] = + {field_catch_branch, 5}, + {field_finally_branch, 9}, + {field_try_branch, 2}, + [689] = + {field_catch_branch, 4}, + {field_finally_branch, 9}, + {field_try_branch, 2}, + [692] = + {field_catch_branch, 6}, + {field_finally_branch, 9}, + {field_try_branch, 2}, + [695] = + {field_catch_branch, 7}, + {field_finally_branch, 9}, + {field_try_branch, 2}, + [698] = + {field_catch_branch, 4}, + {field_finally_branch, 9}, + {field_try_branch, 1}, + [701] = + {field_catch_branch, 5}, + {field_finally_branch, 9}, + {field_try_branch, 1}, + [704] = + {field_catch_branch, 6}, + {field_finally_branch, 9}, + {field_try_branch, 1}, + [707] = + {field_catch_branch, 5}, + {field_finally_branch, 10}, + {field_try_branch, 2}, + [710] = + {field_catch_branch, 6}, + {field_finally_branch, 10}, + {field_try_branch, 2}, + [713] = + {field_catch_branch, 7}, + {field_finally_branch, 10}, + {field_try_branch, 2}, + [716] = + {field_catch_branch, 5}, + {field_finally_branch, 10}, + {field_try_branch, 1}, + [719] = + {field_catch_branch, 6}, + {field_finally_branch, 10}, + {field_try_branch, 1}, + [722] = + {field_catch_branch, 6}, + {field_finally_branch, 11}, + {field_try_branch, 2}, + [725] = + {field_catch_branch, 7}, + {field_finally_branch, 11}, + {field_try_branch, 2}, + [728] = + {field_catch_branch, 6}, + {field_finally_branch, 11}, + {field_try_branch, 1}, + [731] = + {field_catch_branch, 7}, + {field_finally_branch, 12}, + {field_try_branch, 2}, }; static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { @@ -4719,83 +4928,83 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [90] = { [1] = sym_val_string, }, - [98] = { + [99] = { [0] = sym_val_string, }, - [99] = { + [100] = { [1] = sym_val_string, }, - [105] = { + [106] = { [0] = anon_alias_sym__head, }, - [108] = { + [109] = { [2] = sym_where_predicate, }, - [110] = { + [111] = { [0] = sym_identifier, }, - [117] = { + [118] = { [3] = sym_val_number, }, - [118] = { + [119] = { [1] = sym_val_number, }, - [119] = { + [120] = { [1] = sym_val_number, [3] = sym_val_number, }, - [128] = { + [129] = { [2] = sym_val_number, }, - [129] = { + [130] = { [0] = sym_val_number, }, - [130] = { + [131] = { [0] = sym_val_number, [2] = sym_val_number, }, - [150] = { + [151] = { [3] = sym_val_string, }, - [152] = { + [153] = { [3] = sym_val_string, }, - [155] = { + [156] = { [0] = sym_identifier, }, - [158] = { + [159] = { [4] = sym_val_number, }, - [159] = { + [160] = { [2] = sym_val_number, }, - [160] = { + [161] = { [2] = sym_val_number, [4] = sym_val_number, }, - [161] = { + [162] = { [0] = sym_val_number, }, - [162] = { + [163] = { [0] = sym_val_number, [4] = sym_val_number, }, - [163] = { + [164] = { [0] = sym_val_number, [2] = sym_val_number, }, - [164] = { + [165] = { [0] = sym_val_number, [2] = sym_val_number, [4] = sym_val_number, }, - [169] = { + [170] = { [0] = sym_identifier, }, - [192] = { + [196] = { [4] = sym_val_string, }, - [199] = { + [203] = { [0] = sym_identifier, }, }; @@ -4841,11 +5050,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1] = 1, [2] = 2, [3] = 3, - [4] = 4, - [5] = 3, - [6] = 4, + [4] = 3, + [5] = 5, + [6] = 5, [7] = 3, - [8] = 4, + [8] = 5, [9] = 3, [10] = 3, [11] = 3, @@ -4854,14 +5063,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [14] = 3, [15] = 3, [16] = 16, - [17] = 16, - [18] = 18, - [19] = 18, - [20] = 16, - [21] = 16, + [17] = 17, + [18] = 16, + [19] = 19, + [20] = 19, + [21] = 17, [22] = 16, - [23] = 23, - [24] = 23, + [23] = 16, + [24] = 16, [25] = 16, [26] = 16, [27] = 27, @@ -4875,163 +5084,163 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [35] = 35, [36] = 36, [37] = 37, - [38] = 37, + [38] = 35, [39] = 39, - [40] = 35, - [41] = 39, - [42] = 42, + [40] = 40, + [41] = 37, + [42] = 35, [43] = 43, [44] = 36, [45] = 37, [46] = 35, - [47] = 42, + [47] = 40, [48] = 43, - [49] = 36, - [50] = 42, - [51] = 37, - [52] = 52, - [53] = 37, - [54] = 42, - [55] = 43, - [56] = 36, - [57] = 37, - [58] = 42, + [49] = 40, + [50] = 37, + [51] = 35, + [52] = 40, + [53] = 43, + [54] = 43, + [55] = 55, + [56] = 37, + [57] = 35, + [58] = 40, [59] = 43, - [60] = 36, - [61] = 37, - [62] = 42, - [63] = 43, - [64] = 36, - [65] = 42, - [66] = 43, - [67] = 36, - [68] = 43, - [69] = 43, - [70] = 43, + [60] = 37, + [61] = 35, + [62] = 40, + [63] = 37, + [64] = 43, + [65] = 40, + [66] = 36, + [67] = 35, + [68] = 35, + [69] = 35, + [70] = 35, [71] = 43, - [72] = 37, - [73] = 43, + [72] = 43, + [73] = 55, [74] = 74, - [75] = 75, - [76] = 76, + [75] = 74, + [76] = 74, [77] = 77, - [78] = 76, - [79] = 75, - [80] = 75, - [81] = 77, + [78] = 78, + [79] = 78, + [80] = 80, + [81] = 80, [82] = 82, [83] = 83, - [84] = 83, - [85] = 85, - [86] = 86, - [87] = 83, + [84] = 82, + [85] = 83, + [86] = 82, + [87] = 87, [88] = 88, - [89] = 88, - [90] = 88, - [91] = 91, + [89] = 89, + [90] = 90, + [91] = 83, [92] = 92, [93] = 93, - [94] = 94, - [95] = 92, - [96] = 93, - [97] = 93, - [98] = 92, - [99] = 99, - [100] = 93, + [94] = 93, + [95] = 93, + [96] = 96, + [97] = 92, + [98] = 98, + [99] = 93, + [100] = 92, [101] = 92, - [102] = 99, - [103] = 93, - [104] = 92, - [105] = 105, - [106] = 99, + [102] = 96, + [103] = 96, + [104] = 104, + [105] = 98, + [106] = 106, [107] = 107, [108] = 108, [109] = 109, - [110] = 94, - [111] = 94, - [112] = 94, - [113] = 99, + [110] = 98, + [111] = 93, + [112] = 92, + [113] = 96, [114] = 114, - [115] = 115, + [115] = 98, [116] = 109, - [117] = 94, - [118] = 108, - [119] = 107, + [117] = 107, + [118] = 107, + [119] = 106, [120] = 108, - [121] = 99, - [122] = 107, - [123] = 114, - [124] = 114, - [125] = 108, - [126] = 107, - [127] = 109, - [128] = 93, - [129] = 129, - [130] = 115, - [131] = 92, - [132] = 109, - [133] = 114, - [134] = 107, - [135] = 114, - [136] = 94, - [137] = 108, - [138] = 99, - [139] = 109, - [140] = 107, - [141] = 114, - [142] = 108, - [143] = 109, + [121] = 93, + [122] = 92, + [123] = 96, + [124] = 109, + [125] = 106, + [126] = 98, + [127] = 104, + [128] = 109, + [129] = 108, + [130] = 107, + [131] = 131, + [132] = 106, + [133] = 108, + [134] = 96, + [135] = 98, + [136] = 106, + [137] = 107, + [138] = 109, + [139] = 108, + [140] = 109, + [141] = 108, + [142] = 107, + [143] = 106, [144] = 144, [145] = 145, - [146] = 146, + [146] = 144, [147] = 147, - [148] = 145, + [148] = 148, [149] = 149, [150] = 150, [151] = 151, [152] = 152, - [153] = 146, - [154] = 152, + [153] = 153, + [154] = 145, [155] = 155, - [156] = 149, - [157] = 149, - [158] = 158, - [159] = 149, - [160] = 144, - [161] = 158, - [162] = 150, - [163] = 150, - [164] = 151, - [165] = 144, - [166] = 152, - [167] = 151, - [168] = 146, - [169] = 152, - [170] = 146, - [171] = 158, - [172] = 150, - [173] = 158, - [174] = 144, + [156] = 151, + [157] = 144, + [158] = 147, + [159] = 148, + [160] = 149, + [161] = 144, + [162] = 147, + [163] = 151, + [164] = 150, + [165] = 151, + [166] = 155, + [167] = 147, + [168] = 148, + [169] = 149, + [170] = 148, + [171] = 149, + [172] = 152, + [173] = 153, + [174] = 174, [175] = 175, - [176] = 151, - [177] = 177, - [178] = 155, - [179] = 175, - [180] = 177, - [181] = 147, - [182] = 182, - [183] = 183, - [184] = 182, - [185] = 182, - [186] = 186, - [187] = 158, - [188] = 188, - [189] = 182, - [190] = 144, - [191] = 188, - [192] = 158, - [193] = 144, - [194] = 115, + [176] = 176, + [177] = 176, + [178] = 178, + [179] = 179, + [180] = 180, + [181] = 180, + [182] = 174, + [183] = 175, + [184] = 176, + [185] = 174, + [186] = 175, + [187] = 176, + [188] = 174, + [189] = 175, + [190] = 174, + [191] = 175, + [192] = 175, + [193] = 174, + [194] = 104, [195] = 195, [196] = 196, [197] = 197, @@ -5041,7 +5250,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [201] = 201, [202] = 202, [203] = 203, - [204] = 195, + [204] = 204, [205] = 205, [206] = 206, [207] = 207, @@ -5052,305 +5261,305 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [212] = 212, [213] = 213, [214] = 214, - [215] = 215, - [216] = 216, - [217] = 217, - [218] = 218, - [219] = 196, - [220] = 197, - [221] = 197, - [222] = 198, - [223] = 199, - [224] = 200, - [225] = 201, - [226] = 202, - [227] = 203, - [228] = 205, - [229] = 206, - [230] = 207, - [231] = 208, - [232] = 209, - [233] = 210, - [234] = 211, - [235] = 212, - [236] = 236, - [237] = 213, - [238] = 214, - [239] = 215, - [240] = 216, - [241] = 217, - [242] = 218, - [243] = 196, - [244] = 198, - [245] = 199, - [246] = 200, - [247] = 201, - [248] = 202, - [249] = 203, - [250] = 195, - [251] = 205, - [252] = 206, - [253] = 207, - [254] = 208, - [255] = 209, - [256] = 210, - [257] = 211, - [258] = 212, - [259] = 236, - [260] = 213, - [261] = 214, - [262] = 215, - [263] = 216, - [264] = 217, - [265] = 218, - [266] = 236, - [267] = 92, - [268] = 93, - [269] = 92, - [270] = 93, - [271] = 92, + [215] = 197, + [216] = 198, + [217] = 199, + [218] = 195, + [219] = 201, + [220] = 202, + [221] = 203, + [222] = 204, + [223] = 205, + [224] = 206, + [225] = 225, + [226] = 226, + [227] = 200, + [228] = 228, + [229] = 229, + [230] = 196, + [231] = 197, + [232] = 198, + [233] = 199, + [234] = 195, + [235] = 228, + [236] = 202, + [237] = 203, + [238] = 204, + [239] = 205, + [240] = 206, + [241] = 207, + [242] = 208, + [243] = 209, + [244] = 210, + [245] = 211, + [246] = 212, + [247] = 213, + [248] = 214, + [249] = 207, + [250] = 208, + [251] = 209, + [252] = 210, + [253] = 211, + [254] = 212, + [255] = 213, + [256] = 214, + [257] = 229, + [258] = 196, + [259] = 225, + [260] = 226, + [261] = 200, + [262] = 228, + [263] = 229, + [264] = 225, + [265] = 226, + [266] = 201, + [267] = 267, + [268] = 268, + [269] = 268, + [270] = 267, + [271] = 271, [272] = 93, - [273] = 99, - [274] = 274, - [275] = 99, - [276] = 94, - [277] = 94, - [278] = 278, - [279] = 99, - [280] = 280, - [281] = 94, - [282] = 278, - [283] = 280, - [284] = 93, - [285] = 278, - [286] = 280, - [287] = 92, - [288] = 274, - [289] = 274, - [290] = 280, - [291] = 278, - [292] = 278, - [293] = 280, - [294] = 93, - [295] = 94, - [296] = 92, - [297] = 109, - [298] = 107, - [299] = 107, - [300] = 108, + [273] = 92, + [274] = 93, + [275] = 92, + [276] = 271, + [277] = 267, + [278] = 93, + [279] = 92, + [280] = 271, + [281] = 267, + [282] = 271, + [283] = 271, + [284] = 267, + [285] = 268, + [286] = 93, + [287] = 96, + [288] = 98, + [289] = 98, + [290] = 96, + [291] = 96, + [292] = 92, + [293] = 98, + [294] = 109, + [295] = 108, + [296] = 107, + [297] = 107, + [298] = 109, + [299] = 108, + [300] = 109, [301] = 108, - [302] = 109, - [303] = 107, - [304] = 99, - [305] = 114, - [306] = 114, - [307] = 114, - [308] = 108, - [309] = 109, - [310] = 94, - [311] = 99, - [312] = 109, + [302] = 93, + [303] = 92, + [304] = 96, + [305] = 107, + [306] = 98, + [307] = 106, + [308] = 106, + [309] = 106, + [310] = 98, + [311] = 109, + [312] = 107, [313] = 108, - [314] = 107, - [315] = 114, - [316] = 114, - [317] = 107, + [314] = 96, + [315] = 106, + [316] = 107, + [317] = 109, [318] = 108, - [319] = 109, + [319] = 106, [320] = 320, [321] = 320, [322] = 320, - [323] = 158, - [324] = 144, - [325] = 144, - [326] = 144, - [327] = 158, - [328] = 158, - [329] = 158, - [330] = 144, - [331] = 158, - [332] = 144, + [323] = 174, + [324] = 175, + [325] = 174, + [326] = 175, + [327] = 175, + [328] = 174, + [329] = 174, + [330] = 175, + [331] = 174, + [332] = 175, [333] = 333, - [334] = 334, - [335] = 333, + [334] = 333, + [335] = 335, [336] = 336, - [337] = 336, + [337] = 335, [338] = 338, [339] = 339, - [340] = 338, - [341] = 338, + [340] = 340, + [341] = 341, [342] = 342, [343] = 343, - [344] = 338, - [345] = 338, + [344] = 339, + [345] = 339, [346] = 346, [347] = 347, [348] = 348, [349] = 349, - [350] = 350, - [351] = 351, - [352] = 338, - [353] = 346, - [354] = 347, - [355] = 348, - [356] = 349, - [357] = 350, - [358] = 338, - [359] = 351, - [360] = 360, - [361] = 338, - [362] = 338, - [363] = 338, - [364] = 342, - [365] = 343, - [366] = 338, - [367] = 367, - [368] = 333, - [369] = 336, - [370] = 370, - [371] = 334, + [350] = 339, + [351] = 339, + [352] = 352, + [353] = 339, + [354] = 339, + [355] = 355, + [356] = 340, + [357] = 339, + [358] = 339, + [359] = 339, + [360] = 342, + [361] = 348, + [362] = 339, + [363] = 343, + [364] = 346, + [365] = 347, + [366] = 349, + [367] = 341, + [368] = 368, + [369] = 369, + [370] = 369, + [371] = 333, [372] = 372, - [373] = 373, - [374] = 373, + [373] = 336, + [374] = 335, [375] = 375, - [376] = 347, - [377] = 375, - [378] = 350, - [379] = 339, - [380] = 342, - [381] = 381, - [382] = 375, - [383] = 375, - [384] = 351, - [385] = 375, - [386] = 348, + [376] = 375, + [377] = 343, + [378] = 378, + [379] = 346, + [380] = 348, + [381] = 340, + [382] = 341, + [383] = 349, + [384] = 375, + [385] = 385, + [386] = 375, [387] = 387, - [388] = 375, - [389] = 349, - [390] = 375, + [388] = 378, + [389] = 375, + [390] = 390, [391] = 391, - [392] = 381, - [393] = 375, + [392] = 375, + [393] = 352, [394] = 375, - [395] = 360, - [396] = 346, - [397] = 343, - [398] = 398, - [399] = 381, - [400] = 400, - [401] = 367, - [402] = 402, + [395] = 375, + [396] = 355, + [397] = 338, + [398] = 347, + [399] = 375, + [400] = 342, + [401] = 378, + [402] = 372, [403] = 403, [404] = 404, - [405] = 373, - [406] = 372, - [407] = 407, + [405] = 405, + [406] = 406, + [407] = 369, [408] = 408, [409] = 336, [410] = 410, [411] = 411, - [412] = 412, - [413] = 398, + [412] = 333, + [413] = 413, [414] = 414, - [415] = 334, + [415] = 390, [416] = 416, - [417] = 348, - [418] = 410, - [419] = 400, - [420] = 333, - [421] = 347, + [417] = 417, + [418] = 342, + [419] = 352, + [420] = 335, + [421] = 343, [422] = 93, - [423] = 92, - [424] = 360, - [425] = 414, - [426] = 346, - [427] = 342, - [428] = 372, - [429] = 349, - [430] = 350, - [431] = 431, - [432] = 351, - [433] = 367, - [434] = 334, - [435] = 387, - [436] = 339, - [437] = 343, + [423] = 346, + [424] = 340, + [425] = 336, + [426] = 391, + [427] = 92, + [428] = 347, + [429] = 341, + [430] = 355, + [431] = 349, + [432] = 372, + [433] = 348, + [434] = 338, + [435] = 416, + [436] = 385, + [437] = 410, [438] = 438, - [439] = 439, - [440] = 93, - [441] = 441, - [442] = 373, - [443] = 92, - [444] = 367, - [445] = 411, - [446] = 99, - [447] = 447, - [448] = 339, - [449] = 94, - [450] = 408, - [451] = 447, - [452] = 412, - [453] = 453, - [454] = 447, - [455] = 407, - [456] = 403, - [457] = 416, - [458] = 360, - [459] = 459, - [460] = 460, - [461] = 107, - [462] = 460, - [463] = 438, - [464] = 464, + [439] = 406, + [440] = 440, + [441] = 93, + [442] = 92, + [443] = 355, + [444] = 438, + [445] = 445, + [446] = 446, + [447] = 445, + [448] = 369, + [449] = 445, + [450] = 450, + [451] = 438, + [452] = 452, + [453] = 98, + [454] = 445, + [455] = 445, + [456] = 338, + [457] = 413, + [458] = 352, + [459] = 408, + [460] = 445, + [461] = 411, + [462] = 414, + [463] = 403, + [464] = 445, [465] = 465, - [466] = 108, - [467] = 460, - [468] = 109, - [469] = 94, - [470] = 460, - [471] = 471, - [472] = 460, - [473] = 460, - [474] = 99, - [475] = 460, - [476] = 460, + [466] = 96, + [467] = 452, + [468] = 445, + [469] = 469, + [470] = 452, + [471] = 469, + [472] = 472, + [473] = 96, + [474] = 109, + [475] = 475, + [476] = 108, [477] = 477, - [478] = 439, - [479] = 477, - [480] = 477, - [481] = 447, + [478] = 478, + [479] = 98, + [480] = 446, + [481] = 481, [482] = 482, - [483] = 483, - [484] = 350, + [483] = 107, + [484] = 438, [485] = 485, - [486] = 333, - [487] = 351, + [486] = 109, + [487] = 405, [488] = 488, [489] = 107, - [490] = 336, + [490] = 346, [491] = 491, - [492] = 404, + [492] = 341, [493] = 493, - [494] = 402, + [494] = 440, [495] = 495, - [496] = 372, + [496] = 496, [497] = 497, [498] = 498, - [499] = 108, - [500] = 348, - [501] = 109, - [502] = 346, + [499] = 499, + [500] = 450, + [501] = 372, + [502] = 342, [503] = 503, - [504] = 347, + [504] = 335, [505] = 505, - [506] = 349, - [507] = 453, - [508] = 441, - [509] = 509, - [510] = 510, - [511] = 511, - [512] = 512, - [513] = 513, + [506] = 348, + [507] = 507, + [508] = 508, + [509] = 333, + [510] = 108, + [511] = 404, + [512] = 343, + [513] = 340, [514] = 514, [515] = 515, [516] = 516, @@ -5361,15 +5570,15 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [521] = 521, [522] = 522, [523] = 523, - [524] = 524, - [525] = 525, - [526] = 526, + [524] = 481, + [525] = 349, + [526] = 347, [527] = 527, - [528] = 528, + [528] = 336, [529] = 529, [530] = 530, [531] = 531, - [532] = 532, + [532] = 515, [533] = 533, [534] = 534, [535] = 535, @@ -5379,22 +5588,22 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [539] = 539, [540] = 540, [541] = 541, - [542] = 537, + [542] = 542, [543] = 543, - [544] = 524, - [545] = 525, - [546] = 541, + [544] = 544, + [545] = 545, + [546] = 546, [547] = 547, [548] = 548, [549] = 549, - [550] = 521, - [551] = 522, - [552] = 523, - [553] = 531, - [554] = 536, - [555] = 513, + [550] = 550, + [551] = 551, + [552] = 552, + [553] = 553, + [554] = 554, + [555] = 555, [556] = 556, - [557] = 557, + [557] = 477, [558] = 558, [559] = 559, [560] = 560, @@ -5403,143 +5612,143 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [563] = 563, [564] = 564, [565] = 565, - [566] = 520, + [566] = 566, [567] = 567, [568] = 568, [569] = 569, [570] = 570, - [571] = 571, - [572] = 572, - [573] = 573, - [574] = 574, - [575] = 512, - [576] = 576, - [577] = 577, - [578] = 578, + [571] = 516, + [572] = 517, + [573] = 518, + [574] = 519, + [575] = 520, + [576] = 521, + [577] = 522, + [578] = 523, [579] = 579, - [580] = 580, - [581] = 581, - [582] = 514, - [583] = 334, - [584] = 584, - [585] = 533, - [586] = 534, - [587] = 535, - [588] = 515, - [589] = 540, + [580] = 529, + [581] = 530, + [582] = 531, + [583] = 515, + [584] = 533, + [585] = 534, + [586] = 535, + [587] = 536, + [588] = 537, + [589] = 570, [590] = 539, [591] = 540, - [592] = 513, - [593] = 514, - [594] = 515, - [595] = 516, - [596] = 517, - [597] = 518, - [598] = 519, - [599] = 599, - [600] = 547, - [601] = 464, - [602] = 548, - [603] = 549, - [604] = 543, - [605] = 516, - [606] = 343, - [607] = 556, - [608] = 557, - [609] = 558, - [610] = 559, - [611] = 560, - [612] = 567, - [613] = 568, - [614] = 569, - [615] = 570, - [616] = 571, - [617] = 517, - [618] = 561, - [619] = 518, - [620] = 519, - [621] = 572, - [622] = 342, - [623] = 562, - [624] = 573, - [625] = 574, - [626] = 512, - [627] = 576, - [628] = 563, - [629] = 537, - [630] = 543, - [631] = 524, - [632] = 525, - [633] = 541, - [634] = 547, - [635] = 548, - [636] = 549, - [637] = 521, - [638] = 522, - [639] = 523, + [592] = 541, + [593] = 542, + [594] = 543, + [595] = 544, + [596] = 545, + [597] = 546, + [598] = 547, + [599] = 548, + [600] = 549, + [601] = 550, + [602] = 551, + [603] = 552, + [604] = 553, + [605] = 554, + [606] = 606, + [607] = 607, + [608] = 559, + [609] = 560, + [610] = 561, + [611] = 562, + [612] = 563, + [613] = 564, + [614] = 565, + [615] = 579, + [616] = 606, + [617] = 607, + [618] = 618, + [619] = 619, + [620] = 620, + [621] = 618, + [622] = 619, + [623] = 620, + [624] = 624, + [625] = 566, + [626] = 567, + [627] = 568, + [628] = 569, + [629] = 570, + [630] = 516, + [631] = 517, + [632] = 518, + [633] = 519, + [634] = 520, + [635] = 521, + [636] = 522, + [637] = 523, + [638] = 529, + [639] = 530, [640] = 531, - [641] = 536, - [642] = 577, - [643] = 578, - [644] = 579, - [645] = 580, - [646] = 581, - [647] = 556, - [648] = 557, - [649] = 558, - [650] = 559, - [651] = 560, - [652] = 561, - [653] = 562, - [654] = 563, - [655] = 564, - [656] = 565, - [657] = 520, - [658] = 567, - [659] = 568, - [660] = 569, - [661] = 570, - [662] = 571, - [663] = 572, - [664] = 573, - [665] = 574, - [666] = 564, - [667] = 576, - [668] = 577, - [669] = 578, + [641] = 533, + [642] = 534, + [643] = 535, + [644] = 536, + [645] = 537, + [646] = 538, + [647] = 539, + [648] = 540, + [649] = 541, + [650] = 542, + [651] = 543, + [652] = 544, + [653] = 545, + [654] = 546, + [655] = 547, + [656] = 548, + [657] = 549, + [658] = 550, + [659] = 551, + [660] = 552, + [661] = 553, + [662] = 554, + [663] = 559, + [664] = 560, + [665] = 561, + [666] = 562, + [667] = 563, + [668] = 564, + [669] = 565, [670] = 579, - [671] = 580, - [672] = 581, - [673] = 565, - [674] = 482, - [675] = 533, - [676] = 534, - [677] = 535, - [678] = 538, - [679] = 539, - [680] = 538, - [681] = 681, - [682] = 526, + [671] = 606, + [672] = 607, + [673] = 618, + [674] = 619, + [675] = 620, + [676] = 676, + [677] = 566, + [678] = 567, + [679] = 568, + [680] = 569, + [681] = 538, + [682] = 338, [683] = 683, [684] = 684, [685] = 685, [686] = 686, [687] = 687, [688] = 688, - [689] = 488, + [689] = 689, [690] = 690, [691] = 691, - [692] = 692, - [693] = 441, - [694] = 528, + [692] = 355, + [693] = 693, + [694] = 694, [695] = 695, - [696] = 696, + [696] = 488, [697] = 697, - [698] = 453, - [699] = 699, - [700] = 700, + [698] = 698, + [699] = 440, + [700] = 450, [701] = 701, - [702] = 339, + [702] = 702, [703] = 703, [704] = 704, [705] = 705, @@ -5548,47 +5757,47 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [708] = 708, [709] = 709, [710] = 710, - [711] = 711, - [712] = 367, + [711] = 555, + [712] = 712, [713] = 713, - [714] = 714, - [715] = 715, - [716] = 510, + [714] = 556, + [715] = 352, + [716] = 716, [717] = 717, - [718] = 497, - [719] = 373, - [720] = 360, + [718] = 718, + [719] = 719, + [720] = 498, [721] = 721, [722] = 722, [723] = 723, [724] = 724, [725] = 725, - [726] = 726, + [726] = 493, [727] = 727, [728] = 728, [729] = 729, [730] = 730, - [731] = 731, + [731] = 369, [732] = 732, [733] = 733, [734] = 734, - [735] = 735, - [736] = 736, + [735] = 440, + [736] = 491, [737] = 737, [738] = 738, [739] = 739, [740] = 740, [741] = 741, [742] = 742, - [743] = 743, + [743] = 450, [744] = 744, [745] = 745, - [746] = 746, - [747] = 747, + [746] = 481, + [747] = 477, [748] = 748, [749] = 749, [750] = 750, - [751] = 503, + [751] = 751, [752] = 752, [753] = 753, [754] = 754, @@ -5596,48 +5805,48 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [756] = 756, [757] = 757, [758] = 758, - [759] = 732, - [760] = 733, - [761] = 734, - [762] = 738, - [763] = 740, - [764] = 754, - [765] = 765, - [766] = 725, - [767] = 765, - [768] = 768, + [759] = 759, + [760] = 760, + [761] = 761, + [762] = 762, + [763] = 763, + [764] = 764, + [765] = 751, + [766] = 758, + [767] = 761, + [768] = 764, [769] = 769, - [770] = 724, + [770] = 770, [771] = 771, [772] = 772, - [773] = 725, + [773] = 773, [774] = 774, [775] = 775, [776] = 776, [777] = 777, - [778] = 778, - [779] = 779, + [778] = 769, + [779] = 770, [780] = 780, - [781] = 781, - [782] = 782, + [781] = 771, + [782] = 772, [783] = 783, - [784] = 441, - [785] = 785, - [786] = 786, + [784] = 784, + [785] = 773, + [786] = 774, [787] = 787, - [788] = 485, - [789] = 495, - [790] = 453, + [788] = 788, + [789] = 789, + [790] = 790, [791] = 791, - [792] = 493, + [792] = 792, [793] = 793, [794] = 794, [795] = 795, - [796] = 441, - [797] = 797, + [796] = 796, + [797] = 775, [798] = 798, - [799] = 464, - [800] = 482, + [799] = 799, + [800] = 800, [801] = 801, [802] = 802, [803] = 803, @@ -5650,231 +5859,231 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [810] = 810, [811] = 811, [812] = 812, - [813] = 813, - [814] = 814, - [815] = 755, - [816] = 756, - [817] = 757, - [818] = 758, - [819] = 732, - [820] = 733, - [821] = 734, - [822] = 738, - [823] = 740, - [824] = 754, - [825] = 765, - [826] = 724, - [827] = 725, - [828] = 828, - [829] = 505, - [830] = 830, - [831] = 831, - [832] = 832, - [833] = 833, - [834] = 834, - [835] = 835, - [836] = 836, - [837] = 837, - [838] = 838, - [839] = 839, - [840] = 755, - [841] = 756, - [842] = 757, - [843] = 758, - [844] = 732, - [845] = 733, - [846] = 734, - [847] = 738, - [848] = 740, - [849] = 754, - [850] = 765, - [851] = 724, - [852] = 725, - [853] = 853, - [854] = 854, - [855] = 855, - [856] = 856, + [813] = 751, + [814] = 758, + [815] = 761, + [816] = 764, + [817] = 769, + [818] = 770, + [819] = 771, + [820] = 772, + [821] = 773, + [822] = 774, + [823] = 823, + [824] = 824, + [825] = 825, + [826] = 776, + [827] = 827, + [828] = 777, + [829] = 829, + [830] = 771, + [831] = 772, + [832] = 496, + [833] = 497, + [834] = 773, + [835] = 751, + [836] = 758, + [837] = 761, + [838] = 764, + [839] = 769, + [840] = 770, + [841] = 771, + [842] = 772, + [843] = 773, + [844] = 774, + [845] = 775, + [846] = 776, + [847] = 777, + [848] = 848, + [849] = 849, + [850] = 774, + [851] = 775, + [852] = 776, + [853] = 777, + [854] = 507, + [855] = 776, + [856] = 777, [857] = 857, [858] = 858, [859] = 859, - [860] = 860, + [860] = 751, [861] = 861, - [862] = 862, + [862] = 758, [863] = 863, - [864] = 864, + [864] = 761, [865] = 865, - [866] = 509, + [866] = 866, [867] = 867, - [868] = 755, - [869] = 756, - [870] = 757, - [871] = 758, - [872] = 732, - [873] = 733, - [874] = 734, - [875] = 738, - [876] = 740, - [877] = 754, - [878] = 765, - [879] = 724, - [880] = 725, + [868] = 764, + [869] = 869, + [870] = 769, + [871] = 871, + [872] = 770, + [873] = 450, + [874] = 874, + [875] = 875, + [876] = 876, + [877] = 877, + [878] = 878, + [879] = 485, + [880] = 880, [881] = 881, [882] = 882, - [883] = 755, - [884] = 756, - [885] = 757, - [886] = 758, + [883] = 505, + [884] = 884, + [885] = 495, + [886] = 886, [887] = 887, [888] = 888, [889] = 889, [890] = 890, - [891] = 755, - [892] = 756, - [893] = 757, - [894] = 758, - [895] = 732, - [896] = 733, - [897] = 734, - [898] = 738, - [899] = 740, - [900] = 754, - [901] = 765, - [902] = 724, - [903] = 903, - [904] = 904, + [891] = 891, + [892] = 751, + [893] = 758, + [894] = 761, + [895] = 764, + [896] = 769, + [897] = 770, + [898] = 771, + [899] = 772, + [900] = 773, + [901] = 774, + [902] = 775, + [903] = 776, + [904] = 777, [905] = 905, [906] = 906, [907] = 907, [908] = 908, - [909] = 497, + [909] = 909, [910] = 910, - [911] = 510, - [912] = 488, + [911] = 775, + [912] = 705, [913] = 913, [914] = 914, - [915] = 915, - [916] = 916, + [915] = 503, + [916] = 477, [917] = 917, [918] = 918, - [919] = 919, - [920] = 686, + [919] = 703, + [920] = 704, [921] = 921, - [922] = 922, - [923] = 687, - [924] = 704, + [922] = 493, + [923] = 923, + [924] = 924, [925] = 925, [926] = 926, [927] = 927, - [928] = 928, - [929] = 688, + [928] = 488, + [929] = 498, [930] = 930, [931] = 931, [932] = 932, - [933] = 713, + [933] = 933, [934] = 934, - [935] = 690, - [936] = 936, - [937] = 527, - [938] = 483, - [939] = 939, + [935] = 706, + [936] = 718, + [937] = 472, + [938] = 938, + [939] = 527, [940] = 940, - [941] = 498, + [941] = 941, [942] = 942, - [943] = 464, - [944] = 491, + [943] = 943, + [944] = 944, [945] = 945, - [946] = 946, + [946] = 930, [947] = 947, [948] = 948, - [949] = 949, - [950] = 700, + [949] = 701, + [950] = 950, [951] = 951, - [952] = 703, - [953] = 723, + [952] = 702, + [953] = 508, [954] = 954, [955] = 955, [956] = 956, [957] = 957, [958] = 958, - [959] = 482, - [960] = 960, + [959] = 959, + [960] = 481, [961] = 961, - [962] = 962, - [963] = 471, - [964] = 918, + [962] = 717, + [963] = 963, + [964] = 724, [965] = 965, [966] = 966, [967] = 967, - [968] = 968, - [969] = 969, + [968] = 372, + [969] = 478, [970] = 970, - [971] = 918, - [972] = 372, + [971] = 971, + [972] = 972, [973] = 973, - [974] = 691, - [975] = 721, + [974] = 974, + [975] = 930, [976] = 976, [977] = 977, - [978] = 497, - [979] = 510, - [980] = 488, - [981] = 705, - [982] = 982, - [983] = 683, - [984] = 984, - [985] = 985, + [978] = 978, + [979] = 450, + [980] = 683, + [981] = 697, + [982] = 738, + [983] = 983, + [984] = 933, + [985] = 974, [986] = 986, [987] = 987, - [988] = 988, + [988] = 689, [989] = 989, - [990] = 684, - [991] = 982, - [992] = 992, - [993] = 993, - [994] = 994, + [990] = 990, + [991] = 991, + [992] = 493, + [993] = 978, + [994] = 957, [995] = 995, [996] = 996, - [997] = 997, - [998] = 998, - [999] = 999, - [1000] = 1000, + [997] = 938, + [998] = 488, + [999] = 941, + [1000] = 498, [1001] = 1001, [1002] = 1002, - [1003] = 1003, + [1003] = 690, [1004] = 1004, [1005] = 1005, - [1006] = 708, - [1007] = 1007, + [1006] = 1006, + [1007] = 691, [1008] = 1008, [1009] = 1009, - [1010] = 1010, + [1010] = 963, [1011] = 1011, - [1012] = 1012, - [1013] = 1013, - [1014] = 1014, + [1012] = 693, + [1013] = 965, + [1014] = 694, [1015] = 1015, [1016] = 1016, [1017] = 1017, [1018] = 1018, - [1019] = 685, + [1019] = 1019, [1020] = 1020, [1021] = 1021, - [1022] = 1022, + [1022] = 917, [1023] = 1023, - [1024] = 888, - [1025] = 962, + [1024] = 1024, + [1025] = 1025, [1026] = 1026, - [1027] = 942, - [1028] = 973, + [1027] = 1027, + [1028] = 1028, [1029] = 1029, - [1030] = 697, - [1031] = 1031, + [1030] = 1030, + [1031] = 931, [1032] = 1032, [1033] = 1033, - [1034] = 1034, + [1034] = 732, [1035] = 1035, - [1036] = 1036, - [1037] = 1037, + [1036] = 707, + [1037] = 684, [1038] = 1038, [1039] = 1039, [1040] = 1040, @@ -5890,37 +6099,37 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1050] = 1050, [1051] = 1051, [1052] = 1052, - [1053] = 945, + [1053] = 685, [1054] = 1054, - [1055] = 965, - [1056] = 966, + [1055] = 1055, + [1056] = 1056, [1057] = 1057, - [1058] = 956, + [1058] = 686, [1059] = 1059, [1060] = 1060, [1061] = 1061, - [1062] = 958, + [1062] = 1062, [1063] = 1063, [1064] = 1064, [1065] = 1065, - [1066] = 1066, + [1066] = 1028, [1067] = 1067, [1068] = 1068, - [1069] = 1069, + [1069] = 990, [1070] = 1070, [1071] = 1071, [1072] = 1072, [1073] = 1073, - [1074] = 960, - [1075] = 1075, + [1074] = 1074, + [1075] = 687, [1076] = 1076, [1077] = 1077, - [1078] = 1078, + [1078] = 688, [1079] = 1079, [1080] = 1080, - [1081] = 1081, + [1081] = 991, [1082] = 1082, - [1083] = 961, + [1083] = 1083, [1084] = 1084, [1085] = 1085, [1086] = 1086, @@ -5945,58 +6154,58 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1105] = 1105, [1106] = 1106, [1107] = 1107, - [1108] = 714, + [1108] = 1108, [1109] = 1109, - [1110] = 722, + [1110] = 1110, [1111] = 1111, - [1112] = 717, + [1112] = 1112, [1113] = 1113, [1114] = 1114, [1115] = 1115, [1116] = 1116, - [1117] = 977, + [1117] = 1117, [1118] = 1118, - [1119] = 1119, - [1120] = 1120, - [1121] = 1050, + [1119] = 1059, + [1120] = 708, + [1121] = 989, [1122] = 1122, [1123] = 1123, [1124] = 1124, - [1125] = 701, - [1126] = 706, - [1127] = 441, - [1128] = 709, - [1129] = 710, + [1125] = 1125, + [1126] = 1126, + [1127] = 1127, + [1128] = 1128, + [1129] = 1129, [1130] = 1130, - [1131] = 1115, - [1132] = 696, - [1133] = 1116, - [1134] = 973, - [1135] = 711, - [1136] = 692, - [1137] = 982, - [1138] = 1138, + [1131] = 989, + [1132] = 1132, + [1133] = 1133, + [1134] = 1134, + [1135] = 1135, + [1136] = 709, + [1137] = 1059, + [1138] = 695, [1139] = 1139, [1140] = 1140, [1141] = 1141, [1142] = 1142, - [1143] = 1120, + [1143] = 1143, [1144] = 1144, [1145] = 1145, [1146] = 1146, - [1147] = 681, + [1147] = 1147, [1148] = 1148, - [1149] = 1149, - [1150] = 1150, + [1149] = 713, + [1150] = 983, [1151] = 1151, [1152] = 1152, [1153] = 1153, - [1154] = 1154, - [1155] = 1155, + [1154] = 791, + [1155] = 729, [1156] = 1156, [1157] = 1157, [1158] = 1158, - [1159] = 1159, + [1159] = 1140, [1160] = 1160, [1161] = 1161, [1162] = 1162, @@ -6004,7 +6213,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1164] = 1164, [1165] = 1165, [1166] = 1166, - [1167] = 1050, + [1167] = 792, [1168] = 1168, [1169] = 1169, [1170] = 1170, @@ -6019,7 +6228,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1179] = 1179, [1180] = 1180, [1181] = 1181, - [1182] = 1182, + [1182] = 793, [1183] = 1183, [1184] = 1184, [1185] = 1185, @@ -6028,8 +6237,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1188] = 1188, [1189] = 1189, [1190] = 1190, - [1191] = 1119, - [1192] = 1120, + [1191] = 1191, + [1192] = 1192, [1193] = 1193, [1194] = 1194, [1195] = 1195, @@ -6037,10 +6246,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1197] = 1197, [1198] = 1198, [1199] = 1199, - [1200] = 1061, + [1200] = 1200, [1201] = 1201, [1202] = 1202, - [1203] = 1203, + [1203] = 996, [1204] = 1204, [1205] = 1205, [1206] = 1206, @@ -6048,25 +6257,25 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1208] = 1208, [1209] = 1209, [1210] = 1210, - [1211] = 1211, + [1211] = 881, [1212] = 1212, - [1213] = 1213, + [1213] = 1028, [1214] = 1214, [1215] = 1215, [1216] = 1216, [1217] = 1217, [1218] = 1218, [1219] = 1219, - [1220] = 1220, + [1220] = 800, [1221] = 1221, [1222] = 1222, [1223] = 1223, [1224] = 1224, [1225] = 1225, [1226] = 1226, - [1227] = 715, + [1227] = 1001, [1228] = 1228, - [1229] = 1141, + [1229] = 1229, [1230] = 1230, [1231] = 1231, [1232] = 1232, @@ -6076,1077 +6285,1077 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1236] = 1236, [1237] = 1237, [1238] = 1238, - [1239] = 1239, - [1240] = 1240, - [1241] = 1241, + [1239] = 716, + [1240] = 1230, + [1241] = 1233, [1242] = 1242, [1243] = 1243, - [1244] = 1244, + [1244] = 1164, [1245] = 1245, [1246] = 1246, - [1247] = 695, - [1248] = 1248, + [1247] = 1247, + [1248] = 996, [1249] = 1249, [1250] = 1250, [1251] = 1251, - [1252] = 1252, + [1252] = 1001, [1253] = 1253, [1254] = 1254, [1255] = 1255, - [1256] = 1142, + [1256] = 1256, [1257] = 1257, - [1258] = 1119, + [1258] = 1258, [1259] = 1259, [1260] = 1260, - [1261] = 1160, - [1262] = 1161, + [1261] = 1261, + [1262] = 1262, [1263] = 1263, [1264] = 1264, [1265] = 1265, [1266] = 1266, - [1267] = 1142, - [1268] = 1142, - [1269] = 1142, - [1270] = 1270, - [1271] = 907, - [1272] = 1272, - [1273] = 932, - [1274] = 928, - [1275] = 949, - [1276] = 752, - [1277] = 931, - [1278] = 747, - [1279] = 748, - [1280] = 1156, - [1281] = 1153, - [1282] = 930, - [1283] = 737, - [1284] = 957, - [1285] = 905, - [1286] = 947, - [1287] = 1150, - [1288] = 1288, - [1289] = 1155, - [1290] = 948, - [1291] = 917, - [1292] = 915, - [1293] = 739, - [1294] = 1152, - [1295] = 946, - [1296] = 741, - [1297] = 927, - [1298] = 699, - [1299] = 730, - [1300] = 736, - [1301] = 925, - [1302] = 955, - [1303] = 735, - [1304] = 707, - [1305] = 919, - [1306] = 749, - [1307] = 906, - [1308] = 1154, - [1309] = 753, - [1310] = 889, - [1311] = 726, - [1312] = 904, - [1313] = 922, - [1314] = 913, - [1315] = 728, - [1316] = 731, - [1317] = 750, - [1318] = 954, - [1319] = 768, - [1320] = 769, - [1321] = 1157, - [1322] = 1322, - [1323] = 936, - [1324] = 926, - [1325] = 1260, - [1326] = 1326, - [1327] = 951, - [1328] = 1265, - [1329] = 914, - [1330] = 921, - [1331] = 967, - [1332] = 1332, - [1333] = 890, - [1334] = 1140, - [1335] = 934, - [1336] = 968, - [1337] = 742, - [1338] = 939, - [1339] = 743, - [1340] = 729, - [1341] = 1332, - [1342] = 744, - [1343] = 969, - [1344] = 910, - [1345] = 1345, - [1346] = 970, - [1347] = 1146, - [1348] = 940, - [1349] = 1149, - [1350] = 745, - [1351] = 908, - [1352] = 746, - [1353] = 727, + [1267] = 1267, + [1268] = 1268, + [1269] = 1269, + [1270] = 1164, + [1271] = 1164, + [1272] = 1164, + [1273] = 1273, + [1274] = 1274, + [1275] = 878, + [1276] = 1276, + [1277] = 808, + [1278] = 1278, + [1279] = 967, + [1280] = 1280, + [1281] = 1281, + [1282] = 801, + [1283] = 802, + [1284] = 803, + [1285] = 804, + [1286] = 805, + [1287] = 806, + [1288] = 807, + [1289] = 944, + [1290] = 1278, + [1291] = 914, + [1292] = 932, + [1293] = 972, + [1294] = 824, + [1295] = 951, + [1296] = 959, + [1297] = 811, + [1298] = 927, + [1299] = 812, + [1300] = 913, + [1301] = 1301, + [1302] = 865, + [1303] = 918, + [1304] = 710, + [1305] = 794, + [1306] = 795, + [1307] = 796, + [1308] = 1308, + [1309] = 926, + [1310] = 798, + [1311] = 809, + [1312] = 1312, + [1313] = 799, + [1314] = 712, + [1315] = 884, + [1316] = 970, + [1317] = 934, + [1318] = 848, + [1319] = 849, + [1320] = 940, + [1321] = 1169, + [1322] = 971, + [1323] = 1185, + [1324] = 973, + [1325] = 1189, + [1326] = 947, + [1327] = 1193, + [1328] = 956, + [1329] = 1195, + [1330] = 924, + [1331] = 1196, + [1332] = 943, + [1333] = 1202, + [1334] = 921, + [1335] = 1212, + [1336] = 950, + [1337] = 955, + [1338] = 961, + [1339] = 1222, + [1340] = 948, + [1341] = 1232, + [1342] = 942, + [1343] = 1236, + [1344] = 945, + [1345] = 1238, + [1346] = 976, + [1347] = 780, + [1348] = 783, + [1349] = 784, + [1350] = 958, + [1351] = 788, + [1352] = 966, + [1353] = 790, [1354] = 1354, [1355] = 1355, - [1356] = 527, + [1356] = 1356, [1357] = 1357, - [1358] = 1358, + [1358] = 485, [1359] = 1359, [1360] = 1360, - [1361] = 1361, - [1362] = 1362, - [1363] = 1360, + [1361] = 1354, + [1362] = 1359, + [1363] = 1363, [1364] = 1364, [1365] = 1365, [1366] = 1366, - [1367] = 1367, + [1367] = 527, [1368] = 1368, [1369] = 1369, - [1370] = 1362, + [1370] = 1364, [1371] = 1371, - [1372] = 1364, - [1373] = 1366, - [1374] = 1357, - [1375] = 1367, - [1376] = 696, - [1377] = 1366, - [1378] = 1378, - [1379] = 1365, + [1372] = 1372, + [1373] = 1356, + [1374] = 1355, + [1375] = 1366, + [1376] = 1376, + [1377] = 1377, + [1378] = 1376, + [1379] = 1363, [1380] = 1380, - [1381] = 1366, - [1382] = 1366, - [1383] = 1383, + [1381] = 1381, + [1382] = 1382, + [1383] = 1376, [1384] = 1384, [1385] = 1385, [1386] = 1386, [1387] = 1387, - [1388] = 398, - [1389] = 1371, - [1390] = 1390, - [1391] = 1391, + [1388] = 1388, + [1389] = 1389, + [1390] = 1376, + [1391] = 1376, [1392] = 1392, - [1393] = 1393, - [1394] = 410, + [1393] = 390, + [1394] = 1394, [1395] = 1395, [1396] = 1396, [1397] = 1397, - [1398] = 414, - [1399] = 398, + [1398] = 416, + [1399] = 1399, [1400] = 1400, - [1401] = 410, - [1402] = 1402, - [1403] = 1403, - [1404] = 414, - [1405] = 93, + [1401] = 390, + [1402] = 410, + [1403] = 93, + [1404] = 1404, + [1405] = 1405, [1406] = 1406, - [1407] = 92, + [1407] = 1407, [1408] = 1408, - [1409] = 1409, - [1410] = 438, - [1411] = 1411, - [1412] = 92, - [1413] = 527, - [1414] = 93, - [1415] = 94, - [1416] = 1416, - [1417] = 1417, - [1418] = 99, - [1419] = 438, - [1420] = 99, - [1421] = 1421, - [1422] = 696, - [1423] = 94, + [1409] = 410, + [1410] = 416, + [1411] = 92, + [1412] = 485, + [1413] = 1413, + [1414] = 469, + [1415] = 96, + [1416] = 93, + [1417] = 92, + [1418] = 98, + [1419] = 527, + [1420] = 1420, + [1421] = 108, + [1422] = 450, + [1423] = 1423, [1424] = 1424, - [1425] = 1425, - [1426] = 453, + [1425] = 440, + [1426] = 1426, [1427] = 1427, - [1428] = 109, - [1429] = 441, + [1428] = 98, + [1429] = 96, [1430] = 107, [1431] = 1431, - [1432] = 108, - [1433] = 1433, - [1434] = 109, - [1435] = 464, - [1436] = 107, - [1437] = 482, - [1438] = 441, - [1439] = 108, - [1440] = 453, - [1441] = 482, - [1442] = 510, - [1443] = 464, - [1444] = 528, - [1445] = 526, - [1446] = 497, - [1447] = 488, - [1448] = 497, - [1449] = 510, - [1450] = 488, - [1451] = 441, - [1452] = 1452, - [1453] = 528, - [1454] = 1454, + [1432] = 109, + [1433] = 469, + [1434] = 108, + [1435] = 477, + [1436] = 109, + [1437] = 481, + [1438] = 107, + [1439] = 450, + [1440] = 440, + [1441] = 481, + [1442] = 1442, + [1443] = 1443, + [1444] = 488, + [1445] = 498, + [1446] = 555, + [1447] = 493, + [1448] = 556, + [1449] = 477, + [1450] = 1450, + [1451] = 488, + [1452] = 1443, + [1453] = 555, + [1454] = 556, [1455] = 1455, - [1456] = 526, - [1457] = 453, - [1458] = 1458, - [1459] = 453, - [1460] = 441, - [1461] = 1461, - [1462] = 482, - [1463] = 1454, - [1464] = 1458, - [1465] = 1455, - [1466] = 464, - [1467] = 1452, - [1468] = 958, - [1469] = 945, + [1456] = 1442, + [1457] = 498, + [1458] = 450, + [1459] = 1455, + [1460] = 1460, + [1461] = 440, + [1462] = 493, + [1463] = 1463, + [1464] = 1464, + [1465] = 1465, + [1466] = 1466, + [1467] = 1467, + [1468] = 1468, + [1469] = 1469, [1470] = 1470, - [1471] = 510, + [1471] = 1471, [1472] = 1472, [1473] = 1473, - [1474] = 1474, - [1475] = 966, - [1476] = 1476, - [1477] = 965, - [1478] = 962, - [1479] = 942, + [1474] = 440, + [1475] = 481, + [1476] = 477, + [1477] = 1460, + [1478] = 1478, + [1479] = 450, [1480] = 1480, - [1481] = 956, - [1482] = 1482, - [1483] = 482, - [1484] = 1484, - [1485] = 1485, - [1486] = 1486, - [1487] = 1487, - [1488] = 960, - [1489] = 488, - [1490] = 464, - [1491] = 961, - [1492] = 1492, - [1493] = 1493, - [1494] = 497, - [1495] = 888, - [1496] = 960, - [1497] = 945, - [1498] = 888, + [1481] = 1481, + [1482] = 963, + [1483] = 965, + [1484] = 917, + [1485] = 931, + [1486] = 481, + [1487] = 738, + [1488] = 477, + [1489] = 933, + [1490] = 493, + [1491] = 938, + [1492] = 488, + [1493] = 498, + [1494] = 941, + [1495] = 974, + [1496] = 1496, + [1497] = 957, + [1498] = 1498, [1499] = 1499, - [1500] = 956, - [1501] = 962, - [1502] = 965, - [1503] = 1120, - [1504] = 1119, - [1505] = 497, - [1506] = 1050, - [1507] = 966, + [1500] = 1500, + [1501] = 1501, + [1502] = 1028, + [1503] = 938, + [1504] = 738, + [1505] = 1500, + [1506] = 1501, + [1507] = 1507, [1508] = 1508, - [1509] = 961, - [1510] = 1510, - [1511] = 942, - [1512] = 510, - [1513] = 958, - [1514] = 488, - [1515] = 1061, - [1516] = 1516, - [1517] = 1148, - [1518] = 1518, - [1519] = 1119, - [1520] = 1120, - [1521] = 1521, - [1522] = 1522, - [1523] = 1523, - [1524] = 1524, - [1525] = 1525, - [1526] = 1050, - [1527] = 398, - [1528] = 1061, - [1529] = 1529, - [1530] = 1530, - [1531] = 1531, - [1532] = 1532, + [1509] = 1500, + [1510] = 1500, + [1511] = 493, + [1512] = 488, + [1513] = 498, + [1514] = 974, + [1515] = 983, + [1516] = 957, + [1517] = 996, + [1518] = 1001, + [1519] = 963, + [1520] = 1500, + [1521] = 1500, + [1522] = 1500, + [1523] = 965, + [1524] = 917, + [1525] = 931, + [1526] = 1500, + [1527] = 941, + [1528] = 1528, + [1529] = 933, + [1530] = 1209, + [1531] = 1197, + [1532] = 1217, [1533] = 1533, [1534] = 1534, - [1535] = 1535, + [1535] = 390, [1536] = 1536, [1537] = 1537, [1538] = 1538, [1539] = 1539, [1540] = 1540, - [1541] = 1541, - [1542] = 1542, - [1543] = 1543, - [1544] = 1544, - [1545] = 1545, - [1546] = 1546, - [1547] = 1547, - [1548] = 1548, - [1549] = 1549, - [1550] = 1550, - [1551] = 1533, - [1552] = 1534, - [1553] = 1535, - [1554] = 1536, - [1555] = 1539, - [1556] = 1549, - [1557] = 1550, - [1558] = 1522, - [1559] = 1523, - [1560] = 1524, - [1561] = 1525, - [1562] = 1529, - [1563] = 1530, - [1564] = 1531, - [1565] = 1532, - [1566] = 1537, - [1567] = 1538, - [1568] = 1159, - [1569] = 1165, - [1570] = 1173, - [1571] = 1177, - [1572] = 1195, - [1573] = 1196, - [1574] = 1205, - [1575] = 1216, - [1576] = 1248, - [1577] = 1250, - [1578] = 1251, - [1579] = 1254, - [1580] = 1539, - [1581] = 1139, - [1582] = 1169, - [1583] = 1171, - [1584] = 1175, - [1585] = 1180, - [1586] = 1184, - [1587] = 1197, - [1588] = 1215, - [1589] = 1217, - [1590] = 1219, - [1591] = 1225, - [1592] = 1230, - [1593] = 1233, - [1594] = 1237, - [1595] = 1240, - [1596] = 1242, - [1597] = 1249, - [1598] = 1252, - [1599] = 1255, - [1600] = 1257, - [1601] = 1259, - [1602] = 1263, - [1603] = 1264, - [1604] = 1266, - [1605] = 1211, - [1606] = 1145, - [1607] = 1539, - [1608] = 1151, - [1609] = 1541, - [1610] = 1162, - [1611] = 1163, - [1612] = 1164, - [1613] = 1166, - [1614] = 1168, - [1615] = 1170, - [1616] = 1172, - [1617] = 1174, - [1618] = 1542, - [1619] = 1178, - [1620] = 1179, - [1621] = 1181, - [1622] = 1182, - [1623] = 1183, - [1624] = 1185, - [1625] = 1186, - [1626] = 1187, - [1627] = 1188, - [1628] = 1189, - [1629] = 1190, - [1630] = 1193, - [1631] = 1194, - [1632] = 1198, - [1633] = 1199, - [1634] = 1201, - [1635] = 1202, - [1636] = 1203, - [1637] = 1204, - [1638] = 1206, - [1639] = 1207, - [1640] = 1208, - [1641] = 1209, - [1642] = 1210, - [1643] = 1270, - [1644] = 1212, - [1645] = 1213, - [1646] = 1214, - [1647] = 1218, - [1648] = 1220, - [1649] = 1221, - [1650] = 1222, - [1651] = 1223, - [1652] = 1224, - [1653] = 1226, - [1654] = 1228, - [1655] = 1231, - [1656] = 1232, - [1657] = 1234, - [1658] = 1235, - [1659] = 1236, - [1660] = 1238, - [1661] = 1239, - [1662] = 1241, - [1663] = 1243, - [1664] = 1244, - [1665] = 1245, - [1666] = 1246, - [1667] = 1667, - [1668] = 1260, + [1541] = 1273, + [1542] = 1147, + [1543] = 1151, + [1544] = 1172, + [1545] = 1188, + [1546] = 1223, + [1547] = 1237, + [1548] = 1258, + [1549] = 1269, + [1550] = 1141, + [1551] = 1146, + [1552] = 1207, + [1553] = 1210, + [1554] = 1214, + [1555] = 1218, + [1556] = 1225, + [1557] = 1250, + [1558] = 1256, + [1559] = 1260, + [1560] = 1263, + [1561] = 1267, + [1562] = 1274, + [1563] = 1215, + [1564] = 1142, + [1565] = 1536, + [1566] = 1148, + [1567] = 1567, + [1568] = 1152, + [1569] = 1156, + [1570] = 1174, + [1571] = 1186, + [1572] = 1190, + [1573] = 1573, + [1574] = 1242, + [1575] = 1198, + [1576] = 1576, + [1577] = 1158, + [1578] = 1177, + [1579] = 1192, + [1580] = 1208, + [1581] = 1262, + [1582] = 1157, + [1583] = 1160, + [1584] = 1165, + [1585] = 1170, + [1586] = 1175, + [1587] = 1180, + [1588] = 1184, + [1589] = 1194, + [1590] = 1200, + [1591] = 1228, + [1592] = 1143, + [1593] = 1145, + [1594] = 1161, + [1595] = 1163, + [1596] = 1166, + [1597] = 1168, + [1598] = 1171, + [1599] = 1173, + [1600] = 1176, + [1601] = 1178, + [1602] = 1181, + [1603] = 1183, + [1604] = 1199, + [1605] = 1201, + [1606] = 1204, + [1607] = 1206, + [1608] = 1608, + [1609] = 1276, + [1610] = 1219, + [1611] = 1221, + [1612] = 1224, + [1613] = 1226, + [1614] = 1229, + [1615] = 1231, + [1616] = 1234, + [1617] = 1537, + [1618] = 1618, + [1619] = 1245, + [1620] = 1247, + [1621] = 1249, + [1622] = 1251, + [1623] = 1253, + [1624] = 1255, + [1625] = 1257, + [1626] = 1259, + [1627] = 1264, + [1628] = 1266, + [1629] = 1268, + [1630] = 1205, + [1631] = 1533, + [1632] = 996, + [1633] = 1001, + [1634] = 1634, + [1635] = 983, + [1636] = 1534, + [1637] = 1637, + [1638] = 1638, + [1639] = 1538, + [1640] = 1540, + [1641] = 1641, + [1642] = 1641, + [1643] = 1618, + [1644] = 1576, + [1645] = 1645, + [1646] = 1646, + [1647] = 1647, + [1648] = 1169, + [1649] = 1185, + [1650] = 1189, + [1651] = 1193, + [1652] = 1195, + [1653] = 1196, + [1654] = 1202, + [1655] = 1212, + [1656] = 1222, + [1657] = 1232, + [1658] = 1236, + [1659] = 1238, + [1660] = 1660, + [1661] = 1661, + [1662] = 1662, + [1663] = 1663, + [1664] = 1144, + [1665] = 1539, + [1666] = 1028, + [1667] = 1187, + [1668] = 1162, [1669] = 1265, - [1670] = 1140, - [1671] = 1146, - [1672] = 1149, - [1673] = 1150, - [1674] = 1152, - [1675] = 1153, - [1676] = 1154, - [1677] = 1155, - [1678] = 1156, - [1679] = 1157, - [1680] = 1539, - [1681] = 1543, - [1682] = 1544, - [1683] = 1539, - [1684] = 1539, - [1685] = 1539, - [1686] = 1545, - [1687] = 1546, - [1688] = 1547, - [1689] = 1548, - [1690] = 1540, - [1691] = 414, - [1692] = 410, - [1693] = 1693, - [1694] = 1260, - [1695] = 1265, - [1696] = 1140, - [1697] = 1146, - [1698] = 1149, - [1699] = 1150, - [1700] = 1152, - [1701] = 1153, - [1702] = 1154, - [1703] = 1155, - [1704] = 1704, - [1705] = 1156, - [1706] = 1157, - [1707] = 1518, - [1708] = 398, - [1709] = 1693, - [1710] = 1710, - [1711] = 1711, - [1712] = 1712, - [1713] = 93, - [1714] = 92, - [1715] = 1715, - [1716] = 1716, - [1717] = 387, - [1718] = 414, - [1719] = 410, - [1720] = 400, - [1721] = 1711, - [1722] = 1715, - [1723] = 1712, - [1724] = 1716, + [1670] = 1645, + [1671] = 1573, + [1672] = 1243, + [1673] = 1153, + [1674] = 1637, + [1675] = 1235, + [1676] = 1638, + [1677] = 1677, + [1678] = 1216, + [1679] = 1507, + [1680] = 1646, + [1681] = 1647, + [1682] = 1662, + [1683] = 1179, + [1684] = 1684, + [1685] = 1661, + [1686] = 1191, + [1687] = 1663, + [1688] = 1684, + [1689] = 1634, + [1690] = 1608, + [1691] = 1567, + [1692] = 1660, + [1693] = 1677, + [1694] = 1694, + [1695] = 1695, + [1696] = 1696, + [1697] = 410, + [1698] = 390, + [1699] = 416, + [1700] = 1700, + [1701] = 1701, + [1702] = 1694, + [1703] = 1703, + [1704] = 1169, + [1705] = 1185, + [1706] = 1189, + [1707] = 1193, + [1708] = 1195, + [1709] = 1196, + [1710] = 1202, + [1711] = 1212, + [1712] = 1222, + [1713] = 1232, + [1714] = 1714, + [1715] = 1236, + [1716] = 1238, + [1717] = 1703, + [1718] = 1701, + [1719] = 1714, + [1720] = 1700, + [1721] = 416, + [1722] = 335, + [1723] = 93, + [1724] = 1724, [1725] = 1725, - [1726] = 1725, - [1727] = 99, - [1728] = 1728, - [1729] = 404, - [1730] = 416, - [1731] = 1731, - [1732] = 403, - [1733] = 402, - [1734] = 333, - [1735] = 336, - [1736] = 94, - [1737] = 1737, - [1738] = 438, - [1739] = 1739, - [1740] = 1740, - [1741] = 411, - [1742] = 93, - [1743] = 92, - [1744] = 408, - [1745] = 412, - [1746] = 407, - [1747] = 1728, - [1748] = 1728, - [1749] = 1728, - [1750] = 1750, - [1751] = 92, - [1752] = 1752, - [1753] = 1753, - [1754] = 346, - [1755] = 347, - [1756] = 348, - [1757] = 349, - [1758] = 350, - [1759] = 351, + [1726] = 385, + [1727] = 1727, + [1728] = 333, + [1729] = 405, + [1730] = 92, + [1731] = 404, + [1732] = 391, + [1733] = 410, + [1734] = 1734, + [1735] = 406, + [1736] = 96, + [1737] = 414, + [1738] = 342, + [1739] = 335, + [1740] = 343, + [1741] = 403, + [1742] = 346, + [1743] = 1743, + [1744] = 1744, + [1745] = 1745, + [1746] = 1746, + [1747] = 413, + [1748] = 408, + [1749] = 411, + [1750] = 348, + [1751] = 340, + [1752] = 341, + [1753] = 93, + [1754] = 1744, + [1755] = 404, + [1756] = 347, + [1757] = 98, + [1758] = 92, + [1759] = 1759, [1760] = 1760, - [1761] = 404, - [1762] = 1752, - [1763] = 1753, - [1764] = 402, - [1765] = 1765, - [1766] = 336, - [1767] = 1767, - [1768] = 94, - [1769] = 1769, - [1770] = 1770, - [1771] = 333, - [1772] = 1765, - [1773] = 1767, - [1774] = 438, - [1775] = 1753, - [1776] = 453, - [1777] = 342, - [1778] = 1765, + [1761] = 469, + [1762] = 405, + [1763] = 333, + [1764] = 1734, + [1765] = 1745, + [1766] = 1734, + [1767] = 1743, + [1768] = 1743, + [1769] = 1734, + [1770] = 1743, + [1771] = 1771, + [1772] = 93, + [1773] = 1746, + [1774] = 92, + [1775] = 349, + [1776] = 1776, + [1777] = 1777, + [1778] = 440, [1779] = 1779, - [1780] = 343, - [1781] = 1765, - [1782] = 93, - [1783] = 1753, - [1784] = 107, - [1785] = 1769, - [1786] = 441, - [1787] = 108, - [1788] = 109, - [1789] = 1789, - [1790] = 99, - [1791] = 349, - [1792] = 1792, - [1793] = 1793, - [1794] = 1794, - [1795] = 1795, - [1796] = 1796, - [1797] = 441, - [1798] = 1795, - [1799] = 1799, - [1800] = 342, - [1801] = 1795, + [1780] = 1780, + [1781] = 1779, + [1782] = 347, + [1783] = 1783, + [1784] = 349, + [1785] = 469, + [1786] = 1786, + [1787] = 1787, + [1788] = 1777, + [1789] = 450, + [1790] = 107, + [1791] = 341, + [1792] = 342, + [1793] = 340, + [1794] = 343, + [1795] = 346, + [1796] = 1777, + [1797] = 1783, + [1798] = 336, + [1799] = 1787, + [1800] = 1779, + [1801] = 1801, [1802] = 1802, - [1803] = 343, - [1804] = 1804, - [1805] = 1805, - [1806] = 346, - [1807] = 347, - [1808] = 348, - [1809] = 334, - [1810] = 350, - [1811] = 351, - [1812] = 1812, - [1813] = 1813, - [1814] = 94, + [1803] = 348, + [1804] = 109, + [1805] = 369, + [1806] = 1777, + [1807] = 96, + [1808] = 98, + [1809] = 98, + [1810] = 96, + [1811] = 1802, + [1812] = 1779, + [1813] = 108, + [1814] = 1801, [1815] = 1815, - [1816] = 373, - [1817] = 99, - [1818] = 1793, - [1819] = 1804, - [1820] = 1794, + [1816] = 108, + [1817] = 1817, + [1818] = 1815, + [1819] = 1819, + [1820] = 369, [1821] = 1821, - [1822] = 1794, - [1823] = 107, - [1824] = 108, - [1825] = 109, - [1826] = 1794, - [1827] = 464, - [1828] = 1796, - [1829] = 482, - [1830] = 1804, - [1831] = 1796, - [1832] = 1804, + [1822] = 107, + [1823] = 1823, + [1824] = 109, + [1825] = 1825, + [1826] = 108, + [1827] = 1827, + [1828] = 481, + [1829] = 477, + [1830] = 440, + [1831] = 1831, + [1832] = 450, [1833] = 1833, - [1834] = 1834, - [1835] = 1792, - [1836] = 1836, - [1837] = 1795, + [1834] = 352, + [1835] = 107, + [1836] = 1833, + [1837] = 1837, [1838] = 1838, - [1839] = 1796, - [1840] = 1795, - [1841] = 1834, - [1842] = 453, - [1843] = 1834, - [1844] = 1794, - [1845] = 1834, - [1846] = 1846, - [1847] = 1838, - [1848] = 1796, - [1849] = 1804, - [1850] = 1794, - [1851] = 1795, - [1852] = 1846, - [1853] = 1796, - [1854] = 1804, - [1855] = 482, - [1856] = 526, - [1857] = 1857, - [1858] = 1858, - [1859] = 1859, - [1860] = 528, - [1861] = 1861, - [1862] = 497, - [1863] = 1863, - [1864] = 510, - [1865] = 339, - [1866] = 360, - [1867] = 334, - [1868] = 367, - [1869] = 488, - [1870] = 464, - [1871] = 107, - [1872] = 108, - [1873] = 109, - [1874] = 373, - [1875] = 348, - [1876] = 1876, - [1877] = 769, - [1878] = 488, - [1879] = 753, - [1880] = 483, - [1881] = 1472, - [1882] = 1861, - [1883] = 1883, - [1884] = 372, - [1885] = 453, - [1886] = 349, - [1887] = 1887, - [1888] = 350, - [1889] = 360, - [1890] = 351, - [1891] = 1887, - [1892] = 497, - [1893] = 752, - [1894] = 510, - [1895] = 749, - [1896] = 367, - [1897] = 750, - [1898] = 339, - [1899] = 471, - [1900] = 347, - [1901] = 441, - [1902] = 1876, - [1903] = 346, - [1904] = 768, - [1905] = 93, - [1906] = 715, - [1907] = 526, - [1908] = 528, - [1909] = 92, - [1910] = 695, - [1911] = 750, - [1912] = 695, - [1913] = 485, - [1914] = 336, - [1915] = 1510, - [1916] = 495, - [1917] = 509, - [1918] = 1918, - [1919] = 92, - [1920] = 94, - [1921] = 471, - [1922] = 453, - [1923] = 99, - [1924] = 503, - [1925] = 441, - [1926] = 349, - [1927] = 346, - [1928] = 752, - [1929] = 372, - [1930] = 715, - [1931] = 464, - [1932] = 1918, - [1933] = 347, - [1934] = 93, - [1935] = 483, - [1936] = 753, - [1937] = 493, - [1938] = 482, - [1939] = 768, - [1940] = 505, - [1941] = 769, - [1942] = 350, - [1943] = 333, - [1944] = 749, - [1945] = 351, + [1839] = 336, + [1840] = 338, + [1841] = 109, + [1842] = 1825, + [1843] = 1843, + [1844] = 1815, + [1845] = 1817, + [1846] = 1815, + [1847] = 355, + [1848] = 1848, + [1849] = 1833, + [1850] = 1833, + [1851] = 1825, + [1852] = 1817, + [1853] = 1833, + [1854] = 1854, + [1855] = 1817, + [1856] = 1817, + [1857] = 1815, + [1858] = 1825, + [1859] = 1833, + [1860] = 1817, + [1861] = 1815, + [1862] = 1825, + [1863] = 1825, + [1864] = 348, + [1865] = 355, + [1866] = 493, + [1867] = 488, + [1868] = 498, + [1869] = 481, + [1870] = 477, + [1871] = 1871, + [1872] = 372, + [1873] = 1873, + [1874] = 1874, + [1875] = 555, + [1876] = 556, + [1877] = 713, + [1878] = 340, + [1879] = 341, + [1880] = 808, + [1881] = 809, + [1882] = 729, + [1883] = 811, + [1884] = 812, + [1885] = 478, + [1886] = 1886, + [1887] = 848, + [1888] = 849, + [1889] = 472, + [1890] = 342, + [1891] = 352, + [1892] = 343, + [1893] = 346, + [1894] = 338, + [1895] = 343, + [1896] = 348, + [1897] = 1897, + [1898] = 729, + [1899] = 340, + [1900] = 497, + [1901] = 505, + [1902] = 1902, + [1903] = 555, + [1904] = 92, + [1905] = 478, + [1906] = 341, + [1907] = 556, + [1908] = 507, + [1909] = 1909, + [1910] = 713, + [1911] = 498, + [1912] = 812, + [1913] = 1464, + [1914] = 335, + [1915] = 472, + [1916] = 346, + [1917] = 811, + [1918] = 493, + [1919] = 333, + [1920] = 495, + [1921] = 1886, + [1922] = 848, + [1923] = 440, + [1924] = 342, + [1925] = 496, + [1926] = 808, + [1927] = 372, + [1928] = 93, + [1929] = 809, + [1930] = 491, + [1931] = 488, + [1932] = 1909, + [1933] = 450, + [1934] = 849, + [1935] = 1897, + [1936] = 343, + [1937] = 1937, + [1938] = 346, + [1939] = 477, + [1940] = 342, + [1941] = 347, + [1942] = 440, + [1943] = 96, + [1944] = 1944, + [1945] = 92, [1946] = 348, - [1947] = 1947, - [1948] = 482, - [1949] = 958, - [1950] = 713, - [1951] = 1516, - [1952] = 107, - [1953] = 346, - [1954] = 99, - [1955] = 347, - [1956] = 1956, - [1957] = 704, - [1958] = 723, - [1959] = 690, - [1960] = 94, - [1961] = 960, + [1947] = 98, + [1948] = 341, + [1949] = 1496, + [1950] = 349, + [1951] = 481, + [1952] = 1944, + [1953] = 450, + [1954] = 93, + [1955] = 340, + [1956] = 701, + [1957] = 957, + [1958] = 1958, + [1959] = 1959, + [1960] = 1960, + [1961] = 107, [1962] = 1962, - [1963] = 348, + [1963] = 933, [1964] = 1964, - [1965] = 349, - [1966] = 350, - [1967] = 961, - [1968] = 351, - [1969] = 700, - [1970] = 686, + [1965] = 974, + [1966] = 98, + [1967] = 705, + [1968] = 1464, + [1969] = 963, + [1970] = 738, [1971] = 1971, - [1972] = 688, - [1973] = 108, - [1974] = 497, - [1975] = 1964, - [1976] = 1976, - [1977] = 1977, - [1978] = 945, - [1979] = 888, - [1980] = 510, - [1981] = 1981, - [1982] = 962, - [1983] = 942, + [1972] = 965, + [1973] = 1973, + [1974] = 724, + [1975] = 718, + [1976] = 938, + [1977] = 704, + [1978] = 941, + [1979] = 108, + [1980] = 336, + [1981] = 488, + [1982] = 477, + [1983] = 717, [1984] = 1984, - [1985] = 1985, - [1986] = 109, - [1987] = 1987, - [1988] = 703, - [1989] = 488, - [1990] = 342, - [1991] = 966, - [1992] = 464, - [1993] = 343, - [1994] = 965, - [1995] = 956, - [1996] = 687, - [1997] = 1180, - [1998] = 956, - [1999] = 958, - [2000] = 960, - [2001] = 961, - [2002] = 888, - [2003] = 2003, - [2004] = 962, - [2005] = 965, - [2006] = 966, - [2007] = 2007, - [2008] = 2008, - [2009] = 497, - [2010] = 510, - [2011] = 488, - [2012] = 527, - [2013] = 2013, - [2014] = 333, + [1985] = 702, + [1986] = 703, + [1987] = 706, + [1988] = 498, + [1989] = 1989, + [1990] = 1990, + [1991] = 1991, + [1992] = 493, + [1993] = 369, + [1994] = 96, + [1995] = 1499, + [1996] = 917, + [1997] = 1997, + [1998] = 1998, + [1999] = 109, + [2000] = 931, + [2001] = 2001, + [2002] = 1989, + [2003] = 481, + [2004] = 2004, + [2005] = 2005, + [2006] = 1194, + [2007] = 488, + [2008] = 498, + [2009] = 1528, + [2010] = 107, + [2011] = 2011, + [2012] = 1496, + [2013] = 974, + [2014] = 1499, [2015] = 2015, - [2016] = 1472, - [2017] = 2017, - [2018] = 2018, - [2019] = 1159, - [2020] = 1165, - [2021] = 1173, - [2022] = 1177, - [2023] = 2023, - [2024] = 1195, - [2025] = 2025, - [2026] = 1196, - [2027] = 1205, - [2028] = 1216, - [2029] = 1248, - [2030] = 1250, - [2031] = 1251, - [2032] = 1254, - [2033] = 2033, - [2034] = 1139, - [2035] = 1169, - [2036] = 1171, - [2037] = 1175, - [2038] = 1184, - [2039] = 1197, - [2040] = 1215, - [2041] = 1217, - [2042] = 1219, - [2043] = 1225, - [2044] = 1230, - [2045] = 1233, - [2046] = 1237, - [2047] = 1240, - [2048] = 1242, - [2049] = 1249, - [2050] = 1252, - [2051] = 1255, - [2052] = 1257, - [2053] = 1259, - [2054] = 1263, - [2055] = 1264, - [2056] = 1266, - [2057] = 1211, - [2058] = 1145, - [2059] = 1148, - [2060] = 1151, - [2061] = 1162, - [2062] = 1163, - [2063] = 1164, - [2064] = 1166, - [2065] = 1168, - [2066] = 1170, - [2067] = 1172, - [2068] = 1174, - [2069] = 2069, - [2070] = 1178, - [2071] = 1179, - [2072] = 1181, - [2073] = 1182, - [2074] = 1183, - [2075] = 1185, - [2076] = 1186, - [2077] = 1187, - [2078] = 1188, - [2079] = 1189, - [2080] = 1190, - [2081] = 1193, - [2082] = 1194, - [2083] = 1198, - [2084] = 1199, - [2085] = 945, - [2086] = 1202, - [2087] = 1203, - [2088] = 1204, - [2089] = 1206, - [2090] = 1207, - [2091] = 1208, - [2092] = 1209, - [2093] = 1210, - [2094] = 1270, - [2095] = 1212, - [2096] = 1213, - [2097] = 1214, - [2098] = 1218, - [2099] = 1220, - [2100] = 1221, - [2101] = 1222, - [2102] = 1223, - [2103] = 1224, - [2104] = 1226, + [2016] = 2016, + [2017] = 957, + [2018] = 2011, + [2019] = 335, + [2020] = 1464, + [2021] = 963, + [2022] = 965, + [2023] = 917, + [2024] = 931, + [2025] = 738, + [2026] = 983, + [2027] = 738, + [2028] = 2028, + [2029] = 2029, + [2030] = 2016, + [2031] = 485, + [2032] = 933, + [2033] = 938, + [2034] = 1144, + [2035] = 109, + [2036] = 1187, + [2037] = 1162, + [2038] = 941, + [2039] = 1265, + [2040] = 338, + [2041] = 1243, + [2042] = 1153, + [2043] = 2043, + [2044] = 1235, + [2045] = 1216, + [2046] = 1179, + [2047] = 1191, + [2048] = 1197, + [2049] = 1217, + [2050] = 352, + [2051] = 716, + [2052] = 355, + [2053] = 2053, + [2054] = 1273, + [2055] = 1147, + [2056] = 2056, + [2057] = 1172, + [2058] = 1188, + [2059] = 1223, + [2060] = 1237, + [2061] = 1258, + [2062] = 1269, + [2063] = 1141, + [2064] = 1146, + [2065] = 1207, + [2066] = 1210, + [2067] = 1214, + [2068] = 1218, + [2069] = 1225, + [2070] = 1250, + [2071] = 1256, + [2072] = 1260, + [2073] = 1263, + [2074] = 1267, + [2075] = 1274, + [2076] = 1215, + [2077] = 1142, + [2078] = 1148, + [2079] = 1152, + [2080] = 1156, + [2081] = 1174, + [2082] = 1186, + [2083] = 2083, + [2084] = 1190, + [2085] = 933, + [2086] = 1242, + [2087] = 983, + [2088] = 1198, + [2089] = 1158, + [2090] = 1177, + [2091] = 1192, + [2092] = 1208, + [2093] = 974, + [2094] = 1262, + [2095] = 1157, + [2096] = 1160, + [2097] = 1165, + [2098] = 1170, + [2099] = 2011, + [2100] = 1175, + [2101] = 1180, + [2102] = 1184, + [2103] = 108, + [2104] = 1200, [2105] = 1228, - [2106] = 2008, - [2107] = 1231, - [2108] = 1232, - [2109] = 1234, - [2110] = 1235, - [2111] = 1236, - [2112] = 1238, - [2113] = 1239, - [2114] = 1241, - [2115] = 1243, - [2116] = 1244, - [2117] = 1245, - [2118] = 1246, - [2119] = 2119, - [2120] = 107, - [2121] = 2013, - [2122] = 2122, - [2123] = 1472, - [2124] = 109, - [2125] = 334, - [2126] = 2126, - [2127] = 108, - [2128] = 373, - [2129] = 1061, - [2130] = 2130, - [2131] = 2131, - [2132] = 2132, - [2133] = 2013, - [2134] = 2134, - [2135] = 1521, - [2136] = 2013, - [2137] = 2013, - [2138] = 2013, - [2139] = 2013, - [2140] = 942, - [2141] = 1201, - [2142] = 962, - [2143] = 1061, - [2144] = 942, - [2145] = 2145, - [2146] = 2146, - [2147] = 2147, - [2148] = 1510, - [2149] = 1510, - [2150] = 681, - [2151] = 339, - [2152] = 696, - [2153] = 1516, - [2154] = 965, - [2155] = 966, - [2156] = 888, - [2157] = 2157, - [2158] = 360, - [2159] = 1516, - [2160] = 2157, - [2161] = 2145, - [2162] = 1061, - [2163] = 2157, - [2164] = 2145, - [2165] = 367, - [2166] = 906, - [2167] = 940, - [2168] = 2168, - [2169] = 921, - [2170] = 739, - [2171] = 905, - [2172] = 749, - [2173] = 750, - [2174] = 768, - [2175] = 769, - [2176] = 2176, - [2177] = 752, - [2178] = 346, - [2179] = 1260, - [2180] = 1265, - [2181] = 1140, - [2182] = 1146, - [2183] = 1149, - [2184] = 1150, - [2185] = 1152, - [2186] = 1153, - [2187] = 1154, - [2188] = 1155, - [2189] = 1156, - [2190] = 1157, - [2191] = 753, - [2192] = 1521, - [2193] = 527, + [2106] = 1143, + [2107] = 1145, + [2108] = 1161, + [2109] = 1163, + [2110] = 1166, + [2111] = 1168, + [2112] = 1171, + [2113] = 2011, + [2114] = 1173, + [2115] = 1176, + [2116] = 1178, + [2117] = 1181, + [2118] = 1183, + [2119] = 1199, + [2120] = 2011, + [2121] = 1201, + [2122] = 1204, + [2123] = 1206, + [2124] = 1209, + [2125] = 1276, + [2126] = 1219, + [2127] = 2011, + [2128] = 1221, + [2129] = 1224, + [2130] = 1226, + [2131] = 1229, + [2132] = 1231, + [2133] = 1234, + [2134] = 938, + [2135] = 941, + [2136] = 1245, + [2137] = 1247, + [2138] = 1249, + [2139] = 1251, + [2140] = 1253, + [2141] = 1255, + [2142] = 1257, + [2143] = 1259, + [2144] = 1264, + [2145] = 1266, + [2146] = 1268, + [2147] = 1205, + [2148] = 2148, + [2149] = 2149, + [2150] = 2011, + [2151] = 2151, + [2152] = 493, + [2153] = 2153, + [2154] = 1151, + [2155] = 2155, + [2156] = 2156, + [2157] = 1528, + [2158] = 346, + [2159] = 790, + [2160] = 791, + [2161] = 792, + [2162] = 793, + [2163] = 348, + [2164] = 340, + [2165] = 341, + [2166] = 918, + [2167] = 503, + [2168] = 798, + [2169] = 799, + [2170] = 865, + [2171] = 934, + [2172] = 372, + [2173] = 527, + [2174] = 2174, + [2175] = 848, + [2176] = 800, + [2177] = 849, + [2178] = 713, + [2179] = 967, + [2180] = 927, + [2181] = 878, + [2182] = 881, + [2183] = 729, + [2184] = 983, + [2185] = 1499, + [2186] = 2186, + [2187] = 342, + [2188] = 2188, + [2189] = 508, + [2190] = 2156, + [2191] = 2174, + [2192] = 914, + [2193] = 884, [2194] = 2194, - [2195] = 347, - [2196] = 348, - [2197] = 349, - [2198] = 2194, - [2199] = 350, - [2200] = 1521, - [2201] = 2176, - [2202] = 351, - [2203] = 2203, - [2204] = 699, - [2205] = 715, - [2206] = 946, - [2207] = 741, - [2208] = 707, - [2209] = 372, - [2210] = 889, - [2211] = 954, - [2212] = 1260, - [2213] = 1265, - [2214] = 1140, - [2215] = 1146, - [2216] = 1149, - [2217] = 695, - [2218] = 1150, - [2219] = 1152, - [2220] = 939, - [2221] = 1153, - [2222] = 1154, - [2223] = 2194, - [2224] = 1155, - [2225] = 2176, - [2226] = 1156, - [2227] = 1157, - [2228] = 2194, - [2229] = 2229, - [2230] = 2230, - [2231] = 2194, - [2232] = 2232, - [2233] = 949, - [2234] = 2194, - [2235] = 2194, - [2236] = 932, - [2237] = 2176, - [2238] = 928, - [2239] = 491, - [2240] = 931, - [2241] = 498, - [2242] = 726, - [2243] = 731, - [2244] = 970, - [2245] = 2194, - [2246] = 696, - [2247] = 2247, - [2248] = 2248, - [2249] = 2247, - [2250] = 2247, - [2251] = 2247, - [2252] = 2247, - [2253] = 2247, + [2195] = 712, + [2196] = 2156, + [2197] = 2174, + [2198] = 808, + [2199] = 809, + [2200] = 811, + [2201] = 812, + [2202] = 1496, + [2203] = 343, + [2204] = 970, + [2205] = 2205, + [2206] = 710, + [2207] = 2207, + [2208] = 2208, + [2209] = 1222, + [2210] = 1196, + [2211] = 2211, + [2212] = 1169, + [2213] = 1193, + [2214] = 1202, + [2215] = 2211, + [2216] = 2208, + [2217] = 2208, + [2218] = 1212, + [2219] = 1232, + [2220] = 1236, + [2221] = 2208, + [2222] = 2208, + [2223] = 1238, + [2224] = 2208, + [2225] = 1222, + [2226] = 2208, + [2227] = 1232, + [2228] = 1185, + [2229] = 1169, + [2230] = 1189, + [2231] = 1528, + [2232] = 1195, + [2233] = 1196, + [2234] = 1193, + [2235] = 1236, + [2236] = 1202, + [2237] = 1212, + [2238] = 2211, + [2239] = 1195, + [2240] = 1185, + [2241] = 485, + [2242] = 1238, + [2243] = 1189, + [2244] = 2211, + [2245] = 2208, + [2246] = 2246, + [2247] = 2246, + [2248] = 2246, + [2249] = 2246, + [2250] = 2246, + [2251] = 2246, + [2252] = 527, + [2253] = 2253, [2254] = 2254, - [2255] = 2255, - [2256] = 2256, + [2255] = 1464, + [2256] = 485, [2257] = 2257, - [2258] = 2248, - [2259] = 527, - [2260] = 1472, - [2261] = 2261, - [2262] = 2262, + [2258] = 2253, + [2259] = 2259, + [2260] = 2260, + [2261] = 343, + [2262] = 348, [2263] = 2263, [2264] = 2264, - [2265] = 2008, - [2266] = 346, - [2267] = 1510, - [2268] = 347, - [2269] = 2269, - [2270] = 1516, - [2271] = 2271, + [2265] = 2265, + [2266] = 341, + [2267] = 2267, + [2268] = 1496, + [2269] = 346, + [2270] = 527, + [2271] = 340, [2272] = 2272, - [2273] = 696, - [2274] = 349, - [2275] = 350, - [2276] = 1472, - [2277] = 351, - [2278] = 348, - [2279] = 1521, - [2280] = 2280, - [2281] = 1516, - [2282] = 2282, - [2283] = 2283, - [2284] = 1510, + [2273] = 1499, + [2274] = 342, + [2275] = 2275, + [2276] = 2016, + [2277] = 2277, + [2278] = 1464, + [2279] = 2279, + [2280] = 1496, + [2281] = 2281, + [2282] = 1499, + [2283] = 1528, + [2284] = 2284, [2285] = 2285, - [2286] = 2286, - [2287] = 1521, + [2286] = 1528, + [2287] = 2287, [2288] = 2288, [2289] = 2289, - [2290] = 2290, - [2291] = 2291, - [2292] = 2286, - [2293] = 372, + [2290] = 2287, + [2291] = 372, + [2292] = 2292, + [2293] = 2293, [2294] = 2288, [2295] = 2295, - [2296] = 336, + [2296] = 333, [2297] = 2297, - [2298] = 2297, - [2299] = 2299, + [2298] = 347, + [2299] = 349, [2300] = 2300, - [2301] = 2301, - [2302] = 333, - [2303] = 398, + [2301] = 405, + [2302] = 404, + [2303] = 2303, [2304] = 2304, [2305] = 2305, [2306] = 2306, [2307] = 2307, - [2308] = 2308, - [2309] = 2309, + [2308] = 335, + [2309] = 390, [2310] = 2310, [2311] = 2311, [2312] = 2312, @@ -7160,424 +7369,424 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2320] = 2320, [2321] = 2321, [2322] = 2322, - [2323] = 342, - [2324] = 343, - [2325] = 404, - [2326] = 402, + [2323] = 2323, + [2324] = 2324, + [2325] = 2325, + [2326] = 2326, [2327] = 2327, - [2328] = 2328, - [2329] = 398, - [2330] = 373, + [2328] = 2317, + [2329] = 385, + [2330] = 390, [2331] = 410, - [2332] = 400, - [2333] = 414, - [2334] = 408, - [2335] = 2335, - [2336] = 93, + [2332] = 416, + [2333] = 369, + [2334] = 403, + [2335] = 410, + [2336] = 416, [2337] = 2337, [2338] = 2338, [2339] = 2339, - [2340] = 92, - [2341] = 2338, - [2342] = 414, - [2343] = 2339, - [2344] = 410, - [2345] = 400, - [2346] = 2346, - [2347] = 411, - [2348] = 2335, - [2349] = 412, - [2350] = 407, - [2351] = 2351, - [2352] = 398, - [2353] = 2337, - [2354] = 2351, - [2355] = 2346, - [2356] = 438, - [2357] = 92, - [2358] = 99, - [2359] = 93, - [2360] = 94, - [2361] = 414, - [2362] = 400, - [2363] = 411, - [2364] = 398, - [2365] = 410, - [2366] = 408, - [2367] = 412, - [2368] = 407, - [2369] = 93, - [2370] = 109, - [2371] = 411, - [2372] = 94, - [2373] = 410, - [2374] = 414, - [2375] = 438, - [2376] = 453, - [2377] = 333, - [2378] = 99, - [2379] = 346, - [2380] = 408, - [2381] = 412, - [2382] = 407, - [2383] = 347, - [2384] = 495, - [2385] = 348, - [2386] = 503, - [2387] = 441, - [2388] = 336, - [2389] = 400, - [2390] = 349, - [2391] = 336, - [2392] = 107, - [2393] = 350, - [2394] = 351, - [2395] = 92, - [2396] = 108, - [2397] = 333, - [2398] = 464, - [2399] = 404, - [2400] = 2400, - [2401] = 1472, - [2402] = 398, - [2403] = 99, - [2404] = 2404, - [2405] = 107, - [2406] = 453, - [2407] = 408, - [2408] = 412, - [2409] = 438, - [2410] = 441, - [2411] = 93, + [2340] = 2340, + [2341] = 2341, + [2342] = 2342, + [2343] = 93, + [2344] = 92, + [2345] = 390, + [2346] = 385, + [2347] = 413, + [2348] = 408, + [2349] = 411, + [2350] = 2337, + [2351] = 2338, + [2352] = 2339, + [2353] = 2340, + [2354] = 2341, + [2355] = 2342, + [2356] = 92, + [2357] = 403, + [2358] = 413, + [2359] = 408, + [2360] = 411, + [2361] = 385, + [2362] = 96, + [2363] = 390, + [2364] = 98, + [2365] = 93, + [2366] = 410, + [2367] = 469, + [2368] = 416, + [2369] = 343, + [2370] = 333, + [2371] = 346, + [2372] = 403, + [2373] = 413, + [2374] = 408, + [2375] = 411, + [2376] = 416, + [2377] = 335, + [2378] = 469, + [2379] = 348, + [2380] = 340, + [2381] = 96, + [2382] = 341, + [2383] = 410, + [2384] = 98, + [2385] = 107, + [2386] = 109, + [2387] = 108, + [2388] = 440, + [2389] = 385, + [2390] = 450, + [2391] = 497, + [2392] = 507, + [2393] = 333, + [2394] = 342, + [2395] = 93, + [2396] = 92, + [2397] = 98, + [2398] = 481, + [2399] = 1464, + [2400] = 477, + [2401] = 450, + [2402] = 109, + [2403] = 108, + [2404] = 403, + [2405] = 390, + [2406] = 469, + [2407] = 2407, + [2408] = 93, + [2409] = 347, + [2410] = 405, + [2411] = 440, [2412] = 2412, - [2413] = 482, - [2414] = 342, - [2415] = 402, - [2416] = 108, - [2417] = 2417, - [2418] = 2418, - [2419] = 411, - [2420] = 94, - [2421] = 92, - [2422] = 109, - [2423] = 407, - [2424] = 343, - [2425] = 453, - [2426] = 93, - [2427] = 2427, - [2428] = 92, - [2429] = 94, - [2430] = 404, - [2431] = 2431, - [2432] = 497, - [2433] = 99, - [2434] = 510, - [2435] = 1510, - [2436] = 488, - [2437] = 333, - [2438] = 1516, - [2439] = 402, - [2440] = 373, - [2441] = 107, - [2442] = 464, - [2443] = 526, - [2444] = 2444, - [2445] = 336, - [2446] = 528, - [2447] = 482, - [2448] = 109, - [2449] = 108, - [2450] = 414, - [2451] = 400, - [2452] = 410, - [2453] = 505, - [2454] = 493, - [2455] = 334, - [2456] = 485, - [2457] = 509, - [2458] = 373, - [2459] = 342, - [2460] = 343, - [2461] = 438, - [2462] = 441, - [2463] = 488, - [2464] = 336, - [2465] = 528, - [2466] = 342, - [2467] = 453, - [2468] = 404, - [2469] = 343, - [2470] = 349, - [2471] = 350, - [2472] = 351, - [2473] = 94, - [2474] = 99, - [2475] = 441, - [2476] = 108, - [2477] = 497, - [2478] = 408, - [2479] = 526, - [2480] = 412, - [2481] = 407, - [2482] = 510, - [2483] = 346, - [2484] = 347, - [2485] = 411, - [2486] = 109, - [2487] = 402, - [2488] = 333, - [2489] = 1521, - [2490] = 464, - [2491] = 107, - [2492] = 2492, - [2493] = 1863, - [2494] = 482, - [2495] = 441, - [2496] = 453, - [2497] = 367, - [2498] = 348, - [2499] = 339, - [2500] = 360, - [2501] = 687, - [2502] = 333, - [2503] = 2503, - [2504] = 464, - [2505] = 441, + [2413] = 2413, + [2414] = 2414, + [2415] = 2415, + [2416] = 335, + [2417] = 404, + [2418] = 408, + [2419] = 349, + [2420] = 92, + [2421] = 411, + [2422] = 107, + [2423] = 96, + [2424] = 413, + [2425] = 2425, + [2426] = 336, + [2427] = 404, + [2428] = 2428, + [2429] = 369, + [2430] = 2430, + [2431] = 469, + [2432] = 96, + [2433] = 555, + [2434] = 108, + [2435] = 410, + [2436] = 416, + [2437] = 440, + [2438] = 369, + [2439] = 405, + [2440] = 495, + [2441] = 98, + [2442] = 496, + [2443] = 107, + [2444] = 505, + [2445] = 93, + [2446] = 450, + [2447] = 92, + [2448] = 481, + [2449] = 493, + [2450] = 347, + [2451] = 349, + [2452] = 1499, + [2453] = 488, + [2454] = 498, + [2455] = 477, + [2456] = 333, + [2457] = 335, + [2458] = 556, + [2459] = 109, + [2460] = 1496, + [2461] = 385, + [2462] = 491, + [2463] = 493, + [2464] = 109, + [2465] = 1854, + [2466] = 477, + [2467] = 1528, + [2468] = 413, + [2469] = 408, + [2470] = 411, + [2471] = 2471, + [2472] = 108, + [2473] = 555, + [2474] = 556, + [2475] = 440, + [2476] = 96, + [2477] = 342, + [2478] = 450, + [2479] = 404, + [2480] = 403, + [2481] = 98, + [2482] = 347, + [2483] = 349, + [2484] = 355, + [2485] = 338, + [2486] = 440, + [2487] = 346, + [2488] = 107, + [2489] = 481, + [2490] = 488, + [2491] = 348, + [2492] = 340, + [2493] = 498, + [2494] = 341, + [2495] = 333, + [2496] = 343, + [2497] = 450, + [2498] = 405, + [2499] = 335, + [2500] = 352, + [2501] = 702, + [2502] = 493, + [2503] = 488, + [2504] = 498, + [2505] = 481, [2506] = 2506, - [2507] = 503, - [2508] = 404, - [2509] = 2509, - [2510] = 441, + [2507] = 336, + [2508] = 333, + [2509] = 1854, + [2510] = 507, [2511] = 2511, - [2512] = 2512, - [2513] = 348, - [2514] = 109, - [2515] = 336, - [2516] = 342, - [2517] = 2517, - [2518] = 2518, - [2519] = 334, - [2520] = 505, - [2521] = 453, - [2522] = 485, - [2523] = 108, - [2524] = 373, - [2525] = 495, - [2526] = 493, - [2527] = 402, - [2528] = 1863, - [2529] = 482, - [2530] = 2530, - [2531] = 350, - [2532] = 351, - [2533] = 2533, - [2534] = 333, - [2535] = 2530, + [2512] = 477, + [2513] = 2513, + [2514] = 2514, + [2515] = 405, + [2516] = 343, + [2517] = 440, + [2518] = 369, + [2519] = 346, + [2520] = 107, + [2521] = 109, + [2522] = 108, + [2523] = 481, + [2524] = 2524, + [2525] = 477, + [2526] = 450, + [2527] = 440, + [2528] = 555, + [2529] = 2513, + [2530] = 2513, + [2531] = 2531, + [2532] = 556, + [2533] = 349, + [2534] = 450, + [2535] = 2513, [2536] = 2536, - [2537] = 497, - [2538] = 509, + [2537] = 2537, + [2538] = 2538, [2539] = 2539, - [2540] = 528, - [2541] = 343, - [2542] = 510, - [2543] = 488, - [2544] = 2544, - [2545] = 464, - [2546] = 453, - [2547] = 2547, - [2548] = 347, - [2549] = 713, - [2550] = 2550, - [2551] = 2530, - [2552] = 700, - [2553] = 686, - [2554] = 346, - [2555] = 688, - [2556] = 2530, - [2557] = 107, - [2558] = 482, - [2559] = 526, - [2560] = 349, - [2561] = 503, - [2562] = 958, - [2563] = 960, - [2564] = 2564, - [2565] = 2565, - [2566] = 510, - [2567] = 961, + [2540] = 491, + [2541] = 495, + [2542] = 2542, + [2543] = 335, + [2544] = 348, + [2545] = 340, + [2546] = 341, + [2547] = 342, + [2548] = 335, + [2549] = 496, + [2550] = 497, + [2551] = 2551, + [2552] = 2552, + [2553] = 2553, + [2554] = 347, + [2555] = 705, + [2556] = 505, + [2557] = 717, + [2558] = 701, + [2559] = 703, + [2560] = 404, + [2561] = 477, + [2562] = 556, + [2563] = 342, + [2564] = 450, + [2565] = 481, + [2566] = 2566, + [2567] = 343, [2568] = 346, - [2569] = 493, - [2570] = 488, - [2571] = 333, - [2572] = 2572, - [2573] = 2573, - [2574] = 488, - [2575] = 339, - [2576] = 346, - [2577] = 441, - [2578] = 464, - [2579] = 464, - [2580] = 2580, - [2581] = 2544, - [2582] = 2582, - [2583] = 360, - [2584] = 347, - [2585] = 497, - [2586] = 348, + [2569] = 2569, + [2570] = 348, + [2571] = 340, + [2572] = 341, + [2573] = 477, + [2574] = 355, + [2575] = 335, + [2576] = 738, + [2577] = 496, + [2578] = 974, + [2579] = 2579, + [2580] = 496, + [2581] = 495, + [2582] = 493, + [2583] = 488, + [2584] = 498, + [2585] = 481, + [2586] = 347, [2587] = 2587, - [2588] = 2536, - [2589] = 526, - [2590] = 962, - [2591] = 2591, - [2592] = 495, - [2593] = 349, - [2594] = 349, - [2595] = 350, + [2588] = 2588, + [2589] = 497, + [2590] = 493, + [2591] = 957, + [2592] = 2542, + [2593] = 2551, + [2594] = 941, + [2595] = 2595, [2596] = 2596, - [2597] = 336, - [2598] = 485, + [2597] = 333, + [2598] = 555, [2599] = 2599, - [2600] = 509, - [2601] = 482, - [2602] = 351, - [2603] = 367, - [2604] = 482, - [2605] = 713, - [2606] = 2596, - [2607] = 888, - [2608] = 342, - [2609] = 343, - [2610] = 965, - [2611] = 966, - [2612] = 485, - [2613] = 942, - [2614] = 350, - [2615] = 351, - [2616] = 2616, - [2617] = 2617, - [2618] = 2618, - [2619] = 510, - [2620] = 2620, - [2621] = 2621, - [2622] = 342, - [2623] = 528, - [2624] = 347, - [2625] = 348, - [2626] = 343, - [2627] = 453, - [2628] = 373, - [2629] = 700, - [2630] = 505, - [2631] = 686, - [2632] = 687, - [2633] = 688, - [2634] = 945, - [2635] = 497, - [2636] = 2636, - [2637] = 505, - [2638] = 2638, - [2639] = 2503, - [2640] = 509, - [2641] = 956, - [2642] = 334, - [2643] = 2643, - [2644] = 497, + [2600] = 505, + [2601] = 2601, + [2602] = 2602, + [2603] = 336, + [2604] = 2604, + [2605] = 933, + [2606] = 2606, + [2607] = 338, + [2608] = 963, + [2609] = 349, + [2610] = 2610, + [2611] = 343, + [2612] = 346, + [2613] = 965, + [2614] = 2614, + [2615] = 505, + [2616] = 917, + [2617] = 2614, + [2618] = 440, + [2619] = 2619, + [2620] = 931, + [2621] = 2552, + [2622] = 488, + [2623] = 348, + [2624] = 495, + [2625] = 369, + [2626] = 340, + [2627] = 341, + [2628] = 705, + [2629] = 2629, + [2630] = 498, + [2631] = 347, + [2632] = 349, + [2633] = 2633, + [2634] = 491, + [2635] = 2635, + [2636] = 717, + [2637] = 938, + [2638] = 701, + [2639] = 702, + [2640] = 703, + [2641] = 507, + [2642] = 352, + [2643] = 342, + [2644] = 2595, [2645] = 491, - [2646] = 488, - [2647] = 367, - [2648] = 510, - [2649] = 2564, - [2650] = 509, - [2651] = 2651, - [2652] = 441, - [2653] = 488, - [2654] = 713, - [2655] = 700, - [2656] = 686, - [2657] = 687, - [2658] = 688, - [2659] = 485, - [2660] = 2660, - [2661] = 958, - [2662] = 2636, - [2663] = 372, - [2664] = 503, - [2665] = 942, - [2666] = 339, - [2667] = 483, - [2668] = 343, - [2669] = 528, - [2670] = 497, - [2671] = 505, - [2672] = 965, - [2673] = 2573, - [2674] = 471, - [2675] = 509, - [2676] = 2638, - [2677] = 966, - [2678] = 498, + [2646] = 498, + [2647] = 2647, + [2648] = 2648, + [2649] = 503, + [2650] = 493, + [2651] = 372, + [2652] = 338, + [2653] = 450, + [2654] = 347, + [2655] = 505, + [2656] = 2656, + [2657] = 508, + [2658] = 440, + [2659] = 2566, + [2660] = 2579, + [2661] = 938, + [2662] = 2662, + [2663] = 941, + [2664] = 917, + [2665] = 481, + [2666] = 472, + [2667] = 2619, + [2668] = 495, + [2669] = 2633, + [2670] = 963, + [2671] = 2635, + [2672] = 2672, + [2673] = 507, + [2674] = 336, + [2675] = 965, + [2676] = 352, + [2677] = 503, + [2678] = 488, [2679] = 2679, - [2680] = 2680, - [2681] = 495, - [2682] = 2587, - [2683] = 505, + [2680] = 355, + [2681] = 555, + [2682] = 498, + [2683] = 495, [2684] = 2684, - [2685] = 2685, - [2686] = 2616, - [2687] = 960, - [2688] = 493, - [2689] = 360, - [2690] = 373, - [2691] = 2587, - [2692] = 334, - [2693] = 961, - [2694] = 485, - [2695] = 888, - [2696] = 491, - [2697] = 2617, - [2698] = 2621, - [2699] = 482, - [2700] = 956, - [2701] = 962, - [2702] = 526, - [2703] = 1962, - [2704] = 453, - [2705] = 2591, - [2706] = 1061, - [2707] = 2707, - [2708] = 498, - [2709] = 2709, - [2710] = 342, - [2711] = 510, - [2712] = 945, - [2713] = 2713, - [2714] = 464, - [2715] = 2715, - [2716] = 2716, + [2685] = 496, + [2686] = 705, + [2687] = 717, + [2688] = 701, + [2689] = 702, + [2690] = 703, + [2691] = 2588, + [2692] = 2692, + [2693] = 931, + [2694] = 1937, + [2695] = 2588, + [2696] = 505, + [2697] = 496, + [2698] = 933, + [2699] = 983, + [2700] = 2569, + [2701] = 349, + [2702] = 478, + [2703] = 556, + [2704] = 508, + [2705] = 477, + [2706] = 957, + [2707] = 493, + [2708] = 2596, + [2709] = 369, + [2710] = 497, + [2711] = 488, + [2712] = 974, + [2713] = 738, + [2714] = 2714, + [2715] = 477, + [2716] = 702, [2717] = 2717, - [2718] = 498, - [2719] = 373, + [2718] = 703, + [2719] = 1937, [2720] = 2720, [2721] = 2721, [2722] = 491, - [2723] = 453, - [2724] = 2724, - [2725] = 2725, - [2726] = 2726, - [2727] = 2727, - [2728] = 2728, + [2723] = 497, + [2724] = 505, + [2725] = 507, + [2726] = 495, + [2727] = 496, + [2728] = 493, [2729] = 2729, [2730] = 2730, [2731] = 2731, [2732] = 2732, - [2733] = 2733, - [2734] = 2734, + [2733] = 440, + [2734] = 957, [2735] = 2735, [2736] = 2736, - [2737] = 2737, + [2737] = 732, [2738] = 2738, [2739] = 2739, - [2740] = 2740, + [2740] = 707, [2741] = 2741, [2742] = 2742, [2743] = 2743, @@ -7596,138 +7805,138 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2756] = 2756, [2757] = 2757, [2758] = 2758, - [2759] = 441, - [2760] = 2760, - [2761] = 441, + [2759] = 2759, + [2760] = 963, + [2761] = 2761, [2762] = 2762, - [2763] = 2763, + [2763] = 965, [2764] = 2764, [2765] = 2765, [2766] = 2766, - [2767] = 2767, + [2767] = 917, [2768] = 2768, - [2769] = 2769, + [2769] = 931, [2770] = 2770, [2771] = 2771, - [2772] = 2772, - [2773] = 2773, - [2774] = 2774, + [2772] = 450, + [2773] = 738, + [2774] = 933, [2775] = 2775, [2776] = 2776, [2777] = 2777, [2778] = 2778, [2779] = 2779, - [2780] = 2780, - [2781] = 2781, + [2780] = 705, + [2781] = 478, [2782] = 2782, - [2783] = 2783, - [2784] = 713, + [2783] = 450, + [2784] = 2784, [2785] = 2785, [2786] = 2786, - [2787] = 2787, + [2787] = 2731, [2788] = 2788, - [2789] = 2789, - [2790] = 2790, + [2789] = 938, + [2790] = 941, [2791] = 2791, - [2792] = 2792, + [2792] = 372, [2793] = 2793, - [2794] = 942, + [2794] = 2794, [2795] = 2795, - [2796] = 464, + [2796] = 2796, [2797] = 2797, [2798] = 2798, - [2799] = 700, + [2799] = 2799, [2800] = 2800, - [2801] = 945, + [2801] = 336, [2802] = 2802, [2803] = 2803, - [2804] = 1962, - [2805] = 956, - [2806] = 958, - [2807] = 482, + [2804] = 2804, + [2805] = 717, + [2806] = 2806, + [2807] = 2807, [2808] = 2808, - [2809] = 960, - [2810] = 961, + [2809] = 2809, + [2810] = 355, [2811] = 2811, [2812] = 2812, - [2813] = 888, - [2814] = 962, + [2813] = 2813, + [2814] = 2814, [2815] = 2815, - [2816] = 966, - [2817] = 372, - [2818] = 686, - [2819] = 2587, - [2820] = 687, - [2821] = 688, - [2822] = 1061, + [2816] = 2816, + [2817] = 2817, + [2818] = 488, + [2819] = 2819, + [2820] = 2820, + [2821] = 2821, + [2822] = 2822, [2823] = 2823, [2824] = 2824, - [2825] = 2825, + [2825] = 338, [2826] = 2826, [2827] = 2827, [2828] = 2828, [2829] = 2829, - [2830] = 2830, - [2831] = 493, - [2832] = 495, - [2833] = 509, - [2834] = 503, - [2835] = 505, - [2836] = 485, + [2830] = 708, + [2831] = 2831, + [2832] = 2832, + [2833] = 2833, + [2834] = 2834, + [2835] = 2835, + [2836] = 2836, [2837] = 2837, [2838] = 2838, [2839] = 2839, - [2840] = 2840, - [2841] = 2841, - [2842] = 722, - [2843] = 2843, - [2844] = 2844, - [2845] = 717, + [2840] = 508, + [2841] = 974, + [2842] = 2842, + [2843] = 709, + [2844] = 369, + [2845] = 498, [2846] = 2846, [2847] = 2847, - [2848] = 2848, + [2848] = 983, [2849] = 2849, - [2850] = 2850, - [2851] = 2851, - [2852] = 2852, + [2850] = 2731, + [2851] = 352, + [2852] = 481, [2853] = 2853, - [2854] = 691, - [2855] = 721, - [2856] = 2587, + [2854] = 2854, + [2855] = 2588, + [2856] = 2856, [2857] = 2857, [2858] = 2858, [2859] = 2859, [2860] = 2860, [2861] = 2861, - [2862] = 2862, - [2863] = 471, - [2864] = 2713, + [2862] = 2588, + [2863] = 1962, + [2864] = 2864, [2865] = 2865, [2866] = 2866, [2867] = 2867, - [2868] = 2680, + [2868] = 2868, [2869] = 2869, - [2870] = 334, - [2871] = 360, - [2872] = 2824, - [2873] = 497, + [2870] = 2870, + [2871] = 2871, + [2872] = 2872, + [2873] = 2873, [2874] = 2874, - [2875] = 483, - [2876] = 367, + [2875] = 2875, + [2876] = 2876, [2877] = 2877, - [2878] = 510, - [2879] = 339, - [2880] = 488, + [2878] = 2878, + [2879] = 2879, + [2880] = 2880, [2881] = 2881, [2882] = 2882, - [2883] = 2824, + [2883] = 2883, [2884] = 2884, - [2885] = 2122, + [2885] = 2885, [2886] = 2886, - [2887] = 2887, - [2888] = 2888, + [2887] = 701, + [2888] = 2679, [2889] = 2889, - [2890] = 2890, + [2890] = 2714, [2891] = 2891, [2892] = 2892, [2893] = 2893, @@ -7739,1442 +7948,1442 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2899] = 2899, [2900] = 2900, [2901] = 2901, - [2902] = 2902, - [2903] = 2903, - [2904] = 965, + [2902] = 503, + [2903] = 472, + [2904] = 2904, [2905] = 2905, - [2906] = 2717, - [2907] = 2858, - [2908] = 2908, - [2909] = 2900, - [2910] = 956, - [2911] = 2911, - [2912] = 2912, - [2913] = 695, - [2914] = 939, - [2915] = 471, - [2916] = 958, - [2917] = 2533, - [2918] = 497, - [2919] = 2919, - [2920] = 961, - [2921] = 686, - [2922] = 687, - [2923] = 2897, - [2924] = 2924, - [2925] = 949, - [2926] = 2517, - [2927] = 483, - [2928] = 2517, - [2929] = 510, - [2930] = 2539, - [2931] = 888, - [2932] = 2932, - [2933] = 2933, - [2934] = 2934, + [2906] = 2906, + [2907] = 2907, + [2908] = 477, + [2909] = 2909, + [2910] = 2895, + [2911] = 1962, + [2912] = 2870, + [2913] = 717, + [2914] = 914, + [2915] = 2871, + [2916] = 983, + [2917] = 478, + [2918] = 2918, + [2919] = 2514, + [2920] = 2506, + [2921] = 352, + [2922] = 729, + [2923] = 2776, + [2924] = 2874, + [2925] = 2882, + [2926] = 2926, + [2927] = 716, + [2928] = 2817, + [2929] = 2929, + [2930] = 2930, + [2931] = 2931, + [2932] = 963, + [2933] = 716, + [2934] = 2816, [2935] = 2935, - [2936] = 360, - [2937] = 932, - [2938] = 2533, - [2939] = 2939, - [2940] = 2899, - [2941] = 962, - [2942] = 2122, - [2943] = 372, - [2944] = 2944, - [2945] = 488, - [2946] = 945, - [2947] = 2812, - [2948] = 2933, - [2949] = 2934, - [2950] = 942, - [2951] = 688, - [2952] = 965, - [2953] = 966, - [2954] = 2877, - [2955] = 2775, - [2956] = 2956, - [2957] = 2874, + [2936] = 493, + [2937] = 2531, + [2938] = 2892, + [2939] = 931, + [2940] = 732, + [2941] = 967, + [2942] = 2876, + [2943] = 2943, + [2944] = 390, + [2945] = 2945, + [2946] = 2877, + [2947] = 2892, + [2948] = 472, + [2949] = 2949, + [2950] = 933, + [2951] = 2730, + [2952] = 2536, + [2953] = 2894, + [2954] = 2895, + [2955] = 2896, + [2956] = 2537, + [2957] = 2878, [2958] = 2958, - [2959] = 2506, - [2960] = 441, - [2961] = 2509, - [2962] = 2511, - [2963] = 2512, - [2964] = 2896, - [2965] = 2830, - [2966] = 2966, - [2967] = 2881, - [2968] = 2826, - [2969] = 367, - [2970] = 2827, - [2971] = 398, + [2959] = 965, + [2960] = 2960, + [2961] = 488, + [2962] = 2962, + [2963] = 2963, + [2964] = 941, + [2965] = 957, + [2966] = 2524, + [2967] = 738, + [2968] = 2930, + [2969] = 917, + [2970] = 2970, + [2971] = 2894, [2972] = 2972, - [2973] = 2886, - [2974] = 2903, - [2975] = 2975, - [2976] = 2976, - [2977] = 482, - [2978] = 2506, - [2979] = 2889, - [2980] = 2829, - [2981] = 339, - [2982] = 2982, - [2983] = 2902, - [2984] = 2547, - [2985] = 2770, + [2973] = 2880, + [2974] = 498, + [2975] = 2881, + [2976] = 2524, + [2977] = 2897, + [2978] = 2898, + [2979] = 2899, + [2980] = 2900, + [2981] = 918, + [2982] = 2731, + [2983] = 2901, + [2984] = 2904, + [2985] = 2905, [2986] = 2986, - [2987] = 2509, - [2988] = 2857, - [2989] = 2896, - [2990] = 906, - [2991] = 2897, - [2992] = 2899, - [2993] = 2900, - [2994] = 691, - [2995] = 721, - [2996] = 2539, - [2997] = 2771, - [2998] = 2773, - [2999] = 2828, - [3000] = 681, - [3001] = 2976, - [3002] = 2982, - [3003] = 2824, - [3004] = 3004, - [3005] = 722, - [3006] = 717, - [3007] = 713, - [3008] = 2774, - [3009] = 3009, - [3010] = 2867, - [3011] = 700, - [3012] = 2884, - [3013] = 2547, - [3014] = 2892, - [3015] = 2898, - [3016] = 681, - [3017] = 2901, - [3018] = 715, - [3019] = 960, - [3020] = 3020, - [3021] = 1061, - [3022] = 464, - [3023] = 946, - [3024] = 905, - [3025] = 3025, - [3026] = 715, - [3027] = 739, - [3028] = 2896, - [3029] = 741, - [3030] = 921, - [3031] = 2517, - [3032] = 3032, - [3033] = 932, - [3034] = 928, - [3035] = 2897, - [3036] = 527, - [3037] = 931, - [3038] = 3038, - [3039] = 414, - [3040] = 2203, - [3041] = 695, - [3042] = 3042, - [3043] = 3043, - [3044] = 2539, - [3045] = 726, - [3046] = 2932, - [3047] = 2897, - [3048] = 749, - [3049] = 750, - [3050] = 739, - [3051] = 2825, - [3052] = 752, - [3053] = 753, + [2987] = 372, + [2988] = 708, + [2989] = 2989, + [2990] = 2990, + [2991] = 2536, + [2992] = 701, + [2993] = 2531, + [2994] = 2858, + [2995] = 2514, + [2996] = 338, + [2997] = 713, + [2998] = 702, + [2999] = 703, + [3000] = 2860, + [3001] = 709, + [3002] = 3002, + [3003] = 938, + [3004] = 927, + [3005] = 2842, + [3006] = 2931, + [3007] = 2935, + [3008] = 705, + [3009] = 2849, + [3010] = 3010, + [3011] = 3011, + [3012] = 3012, + [3013] = 355, + [3014] = 3014, + [3015] = 974, + [3016] = 2538, + [3017] = 2861, + [3018] = 3018, + [3019] = 2742, + [3020] = 450, + [3021] = 3021, + [3022] = 2506, + [3023] = 2990, + [3024] = 3024, + [3025] = 481, + [3026] = 707, + [3027] = 2896, + [3028] = 2806, + [3029] = 2539, + [3030] = 3030, + [3031] = 3031, + [3032] = 2537, + [3033] = 2835, + [3034] = 811, + [3035] = 791, + [3036] = 792, + [3037] = 793, + [3038] = 918, + [3039] = 798, + [3040] = 416, + [3041] = 799, + [3042] = 800, + [3043] = 712, + [3044] = 970, + [3045] = 3045, + [3046] = 710, + [3047] = 808, + [3048] = 809, + [3049] = 3049, + [3050] = 865, + [3051] = 3051, + [3052] = 934, + [3053] = 812, [3054] = 3054, - [3055] = 932, - [3056] = 410, - [3057] = 768, - [3058] = 769, - [3059] = 2905, - [3060] = 2896, - [3061] = 2539, - [3062] = 2919, - [3063] = 906, - [3064] = 3020, - [3065] = 741, - [3066] = 2517, - [3067] = 921, - [3068] = 2511, - [3069] = 2512, - [3070] = 2229, - [3071] = 2230, - [3072] = 2232, - [3073] = 3073, - [3074] = 1061, - [3075] = 3075, + [3055] = 390, + [3056] = 914, + [3057] = 878, + [3058] = 881, + [3059] = 884, + [3060] = 848, + [3061] = 849, + [3062] = 967, + [3063] = 790, + [3064] = 791, + [3065] = 792, + [3066] = 793, + [3067] = 798, + [3068] = 799, + [3069] = 800, + [3070] = 2986, + [3071] = 3071, + [3072] = 3010, + [3073] = 2606, + [3074] = 808, + [3075] = 809, [3076] = 3076, - [3077] = 731, - [3078] = 400, + [3077] = 811, + [3078] = 812, [3079] = 3079, [3080] = 3080, - [3081] = 939, - [3082] = 3082, + [3081] = 3081, + [3082] = 927, [3083] = 3083, - [3084] = 949, - [3085] = 3085, + [3084] = 848, + [3085] = 849, [3086] = 3086, - [3087] = 2899, - [3088] = 3088, - [3089] = 699, - [3090] = 3090, - [3091] = 946, - [3092] = 707, + [3087] = 3087, + [3088] = 918, + [3089] = 2960, + [3090] = 914, + [3091] = 3091, + [3092] = 967, [3093] = 3093, - [3094] = 749, - [3095] = 750, - [3096] = 2547, - [3097] = 3004, - [3098] = 2533, - [3099] = 2899, - [3100] = 970, - [3101] = 2547, - [3102] = 889, - [3103] = 2900, - [3104] = 441, - [3105] = 954, - [3106] = 372, + [3094] = 3094, + [3095] = 3095, + [3096] = 3096, + [3097] = 3097, + [3098] = 3098, + [3099] = 3099, + [3100] = 390, + [3101] = 3101, + [3102] = 3014, + [3103] = 2963, + [3104] = 738, + [3105] = 974, + [3106] = 3106, [3107] = 3107, - [3108] = 3108, + [3108] = 2929, [3109] = 3109, - [3110] = 398, + [3110] = 957, [3111] = 3111, - [3112] = 3112, - [3113] = 3113, - [3114] = 940, - [3115] = 3115, - [3116] = 3116, - [3117] = 3117, - [3118] = 3118, - [3119] = 2924, - [3120] = 890, - [3121] = 940, - [3122] = 752, - [3123] = 753, - [3124] = 3124, - [3125] = 888, - [3126] = 2533, - [3127] = 942, - [3128] = 945, - [3129] = 905, + [3112] = 963, + [3113] = 965, + [3114] = 917, + [3115] = 931, + [3116] = 390, + [3117] = 933, + [3118] = 983, + [3119] = 938, + [3120] = 941, + [3121] = 2514, + [3122] = 2945, + [3123] = 2536, + [3124] = 2537, + [3125] = 2909, + [3126] = 2610, + [3127] = 2656, + [3128] = 372, + [3129] = 3129, [3130] = 3130, - [3131] = 2944, - [3132] = 906, - [3133] = 956, - [3134] = 958, - [3135] = 960, - [3136] = 961, - [3137] = 3137, - [3138] = 3138, - [3139] = 3139, + [3131] = 3131, + [3132] = 3132, + [3133] = 3133, + [3134] = 3134, + [3135] = 3135, + [3136] = 3136, + [3137] = 493, + [3138] = 488, + [3139] = 498, [3140] = 3140, [3141] = 3141, [3142] = 3142, - [3143] = 3143, - [3144] = 3144, - [3145] = 398, - [3146] = 2506, - [3147] = 727, - [3148] = 728, - [3149] = 2823, - [3150] = 2509, - [3151] = 962, - [3152] = 729, - [3153] = 2900, + [3143] = 450, + [3144] = 2587, + [3145] = 2629, + [3146] = 3146, + [3147] = 3147, + [3148] = 3148, + [3149] = 3149, + [3150] = 2892, + [3151] = 3151, + [3152] = 3152, + [3153] = 3153, [3154] = 3154, - [3155] = 730, - [3156] = 398, - [3157] = 965, - [3158] = 2582, - [3159] = 939, - [3160] = 966, - [3161] = 2620, - [3162] = 2651, + [3155] = 3155, + [3156] = 3156, + [3157] = 2894, + [3158] = 3158, + [3159] = 3159, + [3160] = 2531, + [3161] = 2506, + [3162] = 2514, [3163] = 3163, [3164] = 3164, [3165] = 3165, - [3166] = 2565, + [3166] = 3166, [3167] = 3167, [3168] = 3168, - [3169] = 497, + [3169] = 3169, [3170] = 3170, - [3171] = 735, - [3172] = 736, - [3173] = 737, - [3174] = 928, - [3175] = 931, + [3171] = 3171, + [3172] = 2536, + [3173] = 385, + [3174] = 2537, + [3175] = 2892, [3176] = 3176, - [3177] = 510, + [3177] = 3177, [3178] = 3178, - [3179] = 742, + [3179] = 3179, [3180] = 3180, - [3181] = 743, - [3182] = 744, - [3183] = 745, - [3184] = 2572, - [3185] = 746, - [3186] = 747, - [3187] = 488, - [3188] = 748, - [3189] = 699, - [3190] = 726, - [3191] = 2643, - [3192] = 707, - [3193] = 3193, - [3194] = 2580, - [3195] = 3195, - [3196] = 2599, - [3197] = 2618, - [3198] = 889, - [3199] = 954, - [3200] = 2956, - [3201] = 681, - [3202] = 768, - [3203] = 769, - [3204] = 949, - [3205] = 3205, - [3206] = 731, - [3207] = 2506, - [3208] = 2975, - [3209] = 2509, - [3210] = 3210, - [3211] = 970, - [3212] = 3167, - [3213] = 753, - [3214] = 932, - [3215] = 398, - [3216] = 731, - [3217] = 928, - [3218] = 3218, - [3219] = 3219, - [3220] = 3220, - [3221] = 939, - [3222] = 3222, - [3223] = 970, - [3224] = 2203, - [3225] = 940, - [3226] = 905, - [3227] = 400, - [3228] = 906, - [3229] = 400, - [3230] = 735, - [3231] = 736, - [3232] = 737, - [3233] = 3233, - [3234] = 931, - [3235] = 408, - [3236] = 412, - [3237] = 407, + [3181] = 2524, + [3182] = 2894, + [3183] = 2895, + [3184] = 3184, + [3185] = 3185, + [3186] = 2896, + [3187] = 716, + [3188] = 713, + [3189] = 3189, + [3190] = 485, + [3191] = 3191, + [3192] = 2531, + [3193] = 2207, + [3194] = 729, + [3195] = 2506, + [3196] = 3196, + [3197] = 2778, + [3198] = 2538, + [3199] = 2539, + [3200] = 2186, + [3201] = 2155, + [3202] = 2194, + [3203] = 3203, + [3204] = 2895, + [3205] = 2896, + [3206] = 2788, + [3207] = 824, + [3208] = 3208, + [3209] = 780, + [3210] = 783, + [3211] = 784, + [3212] = 788, + [3213] = 794, + [3214] = 795, + [3215] = 796, + [3216] = 2599, + [3217] = 2601, + [3218] = 801, + [3219] = 802, + [3220] = 803, + [3221] = 804, + [3222] = 805, + [3223] = 806, + [3224] = 807, + [3225] = 2602, + [3226] = 712, + [3227] = 2604, + [3228] = 970, + [3229] = 710, + [3230] = 865, + [3231] = 934, + [3232] = 410, + [3233] = 927, + [3234] = 878, + [3235] = 881, + [3236] = 3236, + [3237] = 884, [3238] = 3238, - [3239] = 739, - [3240] = 939, - [3241] = 3143, + [3239] = 790, + [3240] = 3240, + [3241] = 2524, [3242] = 3242, - [3243] = 3032, + [3243] = 390, [3244] = 3244, - [3245] = 3109, - [3246] = 932, - [3247] = 414, - [3248] = 954, - [3249] = 3113, - [3250] = 768, - [3251] = 769, - [3252] = 410, - [3253] = 3253, - [3254] = 726, - [3255] = 3255, - [3256] = 2912, + [3245] = 927, + [3246] = 403, + [3247] = 914, + [3248] = 385, + [3249] = 3141, + [3250] = 2186, + [3251] = 2155, + [3252] = 3252, + [3253] = 2194, + [3254] = 3148, + [3255] = 3142, + [3256] = 416, [3257] = 3257, - [3258] = 3130, - [3259] = 741, - [3260] = 727, - [3261] = 921, - [3262] = 410, - [3263] = 3163, - [3264] = 3137, - [3265] = 3138, + [3258] = 413, + [3259] = 408, + [3260] = 411, + [3261] = 3203, + [3262] = 3262, + [3263] = 918, + [3264] = 3264, + [3265] = 3265, [3266] = 3266, - [3267] = 3139, - [3268] = 3168, - [3269] = 949, - [3270] = 414, - [3271] = 890, - [3272] = 3272, - [3273] = 742, - [3274] = 949, - [3275] = 2230, - [3276] = 743, - [3277] = 3085, - [3278] = 3278, - [3279] = 744, - [3280] = 3140, - [3281] = 3141, - [3282] = 3142, - [3283] = 906, - [3284] = 745, - [3285] = 728, - [3286] = 729, - [3287] = 3107, - [3288] = 3288, - [3289] = 3289, - [3290] = 746, - [3291] = 3291, - [3292] = 3292, - [3293] = 3154, - [3294] = 3165, - [3295] = 411, - [3296] = 752, - [3297] = 747, - [3298] = 748, - [3299] = 3272, - [3300] = 2565, - [3301] = 2572, - [3302] = 3302, - [3303] = 3073, - [3304] = 3304, - [3305] = 730, - [3306] = 2643, - [3307] = 3307, - [3308] = 3242, - [3309] = 2580, - [3310] = 398, - [3311] = 3304, - [3312] = 3242, - [3313] = 2599, - [3314] = 2618, - [3315] = 3304, - [3316] = 2620, - [3317] = 2582, - [3318] = 3318, - [3319] = 3319, - [3320] = 3085, - [3321] = 3218, - [3322] = 400, - [3323] = 3323, - [3324] = 696, - [3325] = 3325, - [3326] = 3038, - [3327] = 2651, - [3328] = 3076, - [3329] = 3079, - [3330] = 3080, - [3331] = 3082, - [3332] = 3083, - [3333] = 3090, - [3334] = 3111, - [3335] = 3170, - [3336] = 3193, - [3337] = 3025, - [3338] = 3176, - [3339] = 414, - [3340] = 749, - [3341] = 3164, - [3342] = 750, - [3343] = 3343, - [3344] = 2232, - [3345] = 3345, - [3346] = 2908, + [3267] = 3178, + [3268] = 712, + [3269] = 3149, + [3270] = 970, + [3271] = 710, + [3272] = 3179, + [3273] = 865, + [3274] = 934, + [3275] = 3275, + [3276] = 3180, + [3277] = 824, + [3278] = 527, + [3279] = 3279, + [3280] = 385, + [3281] = 3281, + [3282] = 410, + [3283] = 3283, + [3284] = 416, + [3285] = 3130, + [3286] = 927, + [3287] = 878, + [3288] = 881, + [3289] = 884, + [3290] = 3290, + [3291] = 780, + [3292] = 783, + [3293] = 784, + [3294] = 3203, + [3295] = 788, + [3296] = 2610, + [3297] = 3151, + [3298] = 3298, + [3299] = 2656, + [3300] = 3031, + [3301] = 3021, + [3302] = 3147, + [3303] = 790, + [3304] = 791, + [3305] = 792, + [3306] = 793, + [3307] = 918, + [3308] = 794, + [3309] = 795, + [3310] = 796, + [3311] = 798, + [3312] = 3152, + [3313] = 3313, + [3314] = 799, + [3315] = 800, + [3316] = 801, + [3317] = 802, + [3318] = 803, + [3319] = 804, + [3320] = 805, + [3321] = 806, + [3322] = 807, + [3323] = 2587, + [3324] = 2629, + [3325] = 3136, + [3326] = 3129, + [3327] = 2601, + [3328] = 2602, + [3329] = 2604, + [3330] = 2606, + [3331] = 3331, + [3332] = 3332, + [3333] = 410, + [3334] = 808, + [3335] = 809, + [3336] = 3336, + [3337] = 3337, + [3338] = 811, + [3339] = 812, + [3340] = 914, + [3341] = 3341, + [3342] = 3342, + [3343] = 848, + [3344] = 849, + [3345] = 3184, + [3346] = 3185, [3347] = 3347, [3348] = 3348, - [3349] = 699, - [3350] = 889, - [3351] = 3195, + [3349] = 967, + [3350] = 3350, + [3351] = 410, [3352] = 3352, - [3353] = 3307, - [3354] = 410, - [3355] = 946, + [3353] = 3353, + [3354] = 967, + [3355] = 3355, [3356] = 3356, - [3357] = 3357, - [3358] = 3358, - [3359] = 3359, + [3357] = 416, + [3358] = 3131, + [3359] = 3132, [3360] = 3360, - [3361] = 3361, - [3362] = 707, - [3363] = 3319, - [3364] = 2229, - [3365] = 92, - [3366] = 2912, - [3367] = 3367, + [3361] = 3360, + [3362] = 3360, + [3363] = 3283, + [3364] = 3244, + [3365] = 3290, + [3366] = 3283, + [3367] = 390, [3368] = 3368, - [3369] = 728, - [3370] = 3370, - [3371] = 2533, - [3372] = 3219, - [3373] = 3373, - [3374] = 3374, - [3375] = 3375, - [3376] = 414, - [3377] = 412, - [3378] = 407, - [3379] = 3348, - [3380] = 3380, - [3381] = 3381, - [3382] = 3382, - [3383] = 3383, - [3384] = 93, - [3385] = 3385, - [3386] = 3386, + [3369] = 3156, + [3370] = 3133, + [3371] = 3371, + [3372] = 385, + [3373] = 3155, + [3374] = 3106, + [3375] = 3107, + [3376] = 3109, + [3377] = 3163, + [3378] = 3164, + [3379] = 3165, + [3380] = 3166, + [3381] = 3236, + [3382] = 3238, + [3383] = 3240, + [3384] = 3076, + [3385] = 3134, + [3386] = 2207, [3387] = 3387, - [3388] = 3388, - [3389] = 3389, - [3390] = 3390, + [3388] = 3352, + [3389] = 3353, + [3390] = 3146, [3391] = 3391, [3392] = 3392, - [3393] = 729, - [3394] = 3394, - [3395] = 3395, - [3396] = 2517, - [3397] = 3397, + [3393] = 3393, + [3394] = 3135, + [3395] = 2599, + [3396] = 3396, + [3397] = 807, [3398] = 3398, - [3399] = 730, - [3400] = 527, + [3399] = 3399, + [3400] = 3400, [3401] = 3401, - [3402] = 387, - [3403] = 3255, - [3404] = 3404, - [3405] = 3405, + [3402] = 3402, + [3403] = 3403, + [3404] = 3264, + [3405] = 3265, [3406] = 3406, - [3407] = 3168, + [3407] = 3407, [3408] = 3408, - [3409] = 411, - [3410] = 3410, - [3411] = 3233, - [3412] = 411, - [3413] = 742, - [3414] = 93, - [3415] = 3415, - [3416] = 410, - [3417] = 3289, - [3418] = 398, - [3419] = 92, - [3420] = 3357, - [3421] = 743, - [3422] = 3244, - [3423] = 736, - [3424] = 93, - [3425] = 744, - [3426] = 2539, - [3427] = 745, + [3409] = 3266, + [3410] = 410, + [3411] = 3411, + [3412] = 3203, + [3413] = 3413, + [3414] = 3313, + [3415] = 416, + [3416] = 3416, + [3417] = 3417, + [3418] = 3418, + [3419] = 3419, + [3420] = 3242, + [3421] = 2536, + [3422] = 3422, + [3423] = 3423, + [3424] = 3424, + [3425] = 3425, + [3426] = 3426, + [3427] = 3427, [3428] = 3428, - [3429] = 3278, - [3430] = 92, - [3431] = 414, - [3432] = 2506, - [3433] = 2509, - [3434] = 746, + [3429] = 3429, + [3430] = 3430, + [3431] = 3431, + [3432] = 2537, + [3433] = 416, + [3434] = 3434, [3435] = 3435, [3436] = 3436, - [3437] = 3163, + [3437] = 3437, [3438] = 3438, - [3439] = 3361, - [3440] = 735, - [3441] = 3352, - [3442] = 3195, + [3439] = 3439, + [3440] = 3440, + [3441] = 3441, + [3442] = 3442, [3443] = 3443, - [3444] = 3359, - [3445] = 2547, - [3446] = 3291, - [3447] = 727, - [3448] = 2908, + [3444] = 413, + [3445] = 2524, + [3446] = 3446, + [3447] = 408, + [3448] = 3448, [3449] = 3449, [3450] = 3450, - [3451] = 411, - [3452] = 408, - [3453] = 412, - [3454] = 407, - [3455] = 408, - [3456] = 412, - [3457] = 410, - [3458] = 3292, - [3459] = 3318, - [3460] = 3038, - [3461] = 93, - [3462] = 407, - [3463] = 3076, - [3464] = 3079, - [3465] = 3080, - [3466] = 3082, - [3467] = 3083, - [3468] = 3090, - [3469] = 3111, - [3470] = 3170, - [3471] = 3193, - [3472] = 3025, - [3473] = 3176, - [3474] = 3220, - [3475] = 3475, + [3451] = 3356, + [3452] = 3452, + [3453] = 390, + [3454] = 3454, + [3455] = 3455, + [3456] = 391, + [3457] = 3457, + [3458] = 3458, + [3459] = 3449, + [3460] = 3460, + [3461] = 3461, + [3462] = 3462, + [3463] = 3463, + [3464] = 3464, + [3465] = 3465, + [3466] = 3466, + [3467] = 3467, + [3468] = 3468, + [3469] = 3469, + [3470] = 3470, + [3471] = 3471, + [3472] = 411, + [3473] = 3473, + [3474] = 3474, + [3475] = 794, [3476] = 3476, [3477] = 3477, - [3478] = 747, - [3479] = 748, - [3480] = 3107, - [3481] = 3481, - [3482] = 3482, - [3483] = 3483, - [3484] = 3484, + [3478] = 795, + [3479] = 3479, + [3480] = 3480, + [3481] = 403, + [3482] = 413, + [3483] = 408, + [3484] = 411, [3485] = 3485, [3486] = 3486, - [3487] = 3487, - [3488] = 3222, + [3487] = 3147, + [3488] = 3488, [3489] = 3489, - [3490] = 3490, - [3491] = 3491, - [3492] = 3406, - [3493] = 3493, - [3494] = 3288, - [3495] = 3495, - [3496] = 92, - [3497] = 3497, - [3498] = 408, - [3499] = 3499, - [3500] = 3304, - [3501] = 3358, - [3502] = 3085, - [3503] = 3503, + [3490] = 3151, + [3491] = 796, + [3492] = 3152, + [3493] = 3156, + [3494] = 3494, + [3495] = 93, + [3496] = 3496, + [3497] = 92, + [3498] = 801, + [3499] = 802, + [3500] = 403, + [3501] = 3501, + [3502] = 93, + [3503] = 333, [3504] = 3504, - [3505] = 3505, - [3506] = 3506, - [3507] = 3242, - [3508] = 336, - [3509] = 333, + [3505] = 92, + [3506] = 3355, + [3507] = 3507, + [3508] = 803, + [3509] = 3509, [3510] = 3510, - [3511] = 890, - [3512] = 3512, + [3511] = 3511, + [3512] = 3368, [3513] = 3513, [3514] = 3514, - [3515] = 3515, - [3516] = 3516, - [3517] = 3517, - [3518] = 737, - [3519] = 400, - [3520] = 343, - [3521] = 99, + [3515] = 413, + [3516] = 408, + [3517] = 411, + [3518] = 3348, + [3519] = 3392, + [3520] = 804, + [3521] = 3393, [3522] = 3522, - [3523] = 99, - [3524] = 416, + [3523] = 3031, + [3524] = 3021, [3525] = 3525, [3526] = 3526, - [3527] = 92, - [3528] = 438, - [3529] = 94, - [3530] = 3525, - [3531] = 404, - [3532] = 696, - [3533] = 94, - [3534] = 94, - [3535] = 351, - [3536] = 3525, - [3537] = 3242, - [3538] = 342, + [3527] = 3257, + [3528] = 3528, + [3529] = 3529, + [3530] = 93, + [3531] = 3531, + [3532] = 3532, + [3533] = 805, + [3534] = 3534, + [3535] = 806, + [3536] = 92, + [3537] = 485, + [3538] = 3538, [3539] = 3539, - [3540] = 402, + [3540] = 3540, [3541] = 3541, - [3542] = 414, - [3543] = 99, - [3544] = 3544, - [3545] = 93, - [3546] = 3546, - [3547] = 93, - [3548] = 92, - [3549] = 93, - [3550] = 346, - [3551] = 3525, - [3552] = 410, - [3553] = 403, - [3554] = 92, - [3555] = 347, - [3556] = 3525, - [3557] = 348, - [3558] = 99, - [3559] = 94, - [3560] = 3560, - [3561] = 3561, - [3562] = 349, - [3563] = 350, - [3564] = 3564, - [3565] = 3565, - [3566] = 3565, - [3567] = 3567, - [3568] = 3568, - [3569] = 3568, - [3570] = 441, - [3571] = 107, - [3572] = 3565, - [3573] = 3567, - [3574] = 3568, - [3575] = 107, - [3576] = 108, - [3577] = 453, - [3578] = 3565, - [3579] = 3567, - [3580] = 3568, - [3581] = 108, + [3542] = 3542, + [3543] = 2531, + [3544] = 2506, + [3545] = 410, + [3546] = 3350, + [3547] = 3155, + [3548] = 3106, + [3549] = 3107, + [3550] = 3109, + [3551] = 3163, + [3552] = 3164, + [3553] = 3165, + [3554] = 3166, + [3555] = 3236, + [3556] = 3238, + [3557] = 3240, + [3558] = 3076, + [3559] = 3337, + [3560] = 3298, + [3561] = 2514, + [3562] = 335, + [3563] = 93, + [3564] = 824, + [3565] = 403, + [3566] = 92, + [3567] = 3360, + [3568] = 3387, + [3569] = 3283, + [3570] = 3342, + [3571] = 3571, + [3572] = 3572, + [3573] = 3573, + [3574] = 3574, + [3575] = 3575, + [3576] = 780, + [3577] = 3577, + [3578] = 3578, + [3579] = 783, + [3580] = 784, + [3581] = 788, [3582] = 3582, - [3583] = 3565, - [3584] = 3567, - [3585] = 3568, - [3586] = 109, - [3587] = 3565, - [3588] = 3567, - [3589] = 3568, - [3590] = 109, - [3591] = 3568, - [3592] = 3565, - [3593] = 3567, - [3594] = 3568, - [3595] = 3567, - [3596] = 3565, - [3597] = 3567, - [3598] = 3568, - [3599] = 3565, - [3600] = 3567, - [3601] = 3568, - [3602] = 3567, - [3603] = 3568, - [3604] = 3565, - [3605] = 3567, - [3606] = 3568, - [3607] = 3565, - [3608] = 3567, - [3609] = 3568, - [3610] = 3568, - [3611] = 3568, - [3612] = 3568, - [3613] = 107, - [3614] = 3568, - [3615] = 3568, - [3616] = 3568, - [3617] = 3568, - [3618] = 411, - [3619] = 109, - [3620] = 3620, - [3621] = 3544, - [3622] = 3582, - [3623] = 94, - [3624] = 441, - [3625] = 373, - [3626] = 3565, - [3627] = 407, - [3628] = 94, - [3629] = 408, - [3630] = 441, - [3631] = 412, - [3632] = 3567, - [3633] = 453, + [3583] = 3583, + [3584] = 3584, + [3585] = 414, + [3586] = 3586, + [3587] = 3587, + [3588] = 93, + [3589] = 96, + [3590] = 405, + [3591] = 92, + [3592] = 3592, + [3593] = 98, + [3594] = 404, + [3595] = 96, + [3596] = 469, + [3597] = 3597, + [3598] = 98, + [3599] = 410, + [3600] = 93, + [3601] = 92, + [3602] = 385, + [3603] = 3584, + [3604] = 406, + [3605] = 3584, + [3606] = 3606, + [3607] = 3607, + [3608] = 527, + [3609] = 3609, + [3610] = 98, + [3611] = 93, + [3612] = 342, + [3613] = 3584, + [3614] = 92, + [3615] = 343, + [3616] = 346, + [3617] = 348, + [3618] = 340, + [3619] = 341, + [3620] = 347, + [3621] = 349, + [3622] = 3584, + [3623] = 96, + [3624] = 98, + [3625] = 3283, + [3626] = 416, + [3627] = 3627, + [3628] = 96, + [3629] = 96, + [3630] = 98, + [3631] = 109, + [3632] = 3632, + [3633] = 108, [3634] = 3634, - [3635] = 3565, - [3636] = 3636, - [3637] = 3637, - [3638] = 441, - [3639] = 99, - [3640] = 2492, - [3641] = 3565, - [3642] = 3567, + [3635] = 413, + [3636] = 450, + [3637] = 369, + [3638] = 3638, + [3639] = 450, + [3640] = 3640, + [3641] = 107, + [3642] = 3640, [3643] = 3643, - [3644] = 3568, - [3645] = 107, - [3646] = 453, - [3647] = 3620, - [3648] = 3634, - [3649] = 108, - [3650] = 3637, - [3651] = 108, - [3652] = 94, - [3653] = 109, - [3654] = 99, - [3655] = 453, - [3656] = 99, - [3657] = 3568, - [3658] = 441, + [3644] = 3643, + [3645] = 411, + [3646] = 109, + [3647] = 3647, + [3648] = 3648, + [3649] = 3649, + [3650] = 108, + [3651] = 3632, + [3652] = 450, + [3653] = 3597, + [3654] = 3634, + [3655] = 2471, + [3656] = 96, + [3657] = 450, + [3658] = 403, [3659] = 3659, - [3660] = 3660, - [3661] = 464, - [3662] = 3659, - [3663] = 3660, + [3660] = 98, + [3661] = 107, + [3662] = 3640, + [3663] = 3643, [3664] = 3659, - [3665] = 346, - [3666] = 3659, - [3667] = 3667, - [3668] = 3660, - [3669] = 3669, - [3670] = 3659, - [3671] = 482, - [3672] = 347, - [3673] = 3659, - [3674] = 3659, - [3675] = 3659, - [3676] = 464, + [3665] = 3640, + [3666] = 3643, + [3667] = 3640, + [3668] = 3643, + [3669] = 3659, + [3670] = 3640, + [3671] = 3643, + [3672] = 3659, + [3673] = 440, + [3674] = 109, + [3675] = 3640, + [3676] = 3643, [3677] = 3659, - [3678] = 3660, - [3679] = 3659, - [3680] = 3659, + [3678] = 96, + [3679] = 3640, + [3680] = 3643, [3681] = 3659, - [3682] = 348, - [3683] = 3660, - [3684] = 485, - [3685] = 482, - [3686] = 3686, - [3687] = 482, - [3688] = 3660, - [3689] = 3686, - [3690] = 3667, - [3691] = 3660, - [3692] = 109, + [3682] = 3640, + [3683] = 3643, + [3684] = 3659, + [3685] = 3640, + [3686] = 3643, + [3687] = 3659, + [3688] = 3640, + [3689] = 3643, + [3690] = 3659, + [3691] = 3640, + [3692] = 3643, [3693] = 3659, - [3694] = 509, - [3695] = 3659, - [3696] = 3660, - [3697] = 3660, - [3698] = 3667, - [3699] = 107, - [3700] = 1863, - [3701] = 3667, + [3694] = 3640, + [3695] = 3643, + [3696] = 3659, + [3697] = 3640, + [3698] = 3643, + [3699] = 3659, + [3700] = 3659, + [3701] = 3659, [3702] = 3659, - [3703] = 108, - [3704] = 3686, - [3705] = 93, - [3706] = 453, - [3707] = 453, - [3708] = 505, + [3703] = 3659, + [3704] = 3659, + [3705] = 3659, + [3706] = 3659, + [3707] = 3659, + [3708] = 3648, [3709] = 108, - [3710] = 441, - [3711] = 3669, - [3712] = 109, - [3713] = 3713, - [3714] = 1863, + [3710] = 3649, + [3711] = 3659, + [3712] = 440, + [3713] = 98, + [3714] = 440, [3715] = 107, - [3716] = 3659, - [3717] = 482, - [3718] = 3660, - [3719] = 3719, - [3720] = 109, - [3721] = 3660, - [3722] = 3669, - [3723] = 464, - [3724] = 3660, - [3725] = 3636, - [3726] = 349, + [3716] = 440, + [3717] = 107, + [3718] = 109, + [3719] = 108, + [3720] = 3659, + [3721] = 408, + [3722] = 3722, + [3723] = 3723, + [3724] = 1854, + [3725] = 342, + [3726] = 3723, [3727] = 3727, - [3728] = 3669, - [3729] = 464, - [3730] = 350, - [3731] = 351, - [3732] = 3686, - [3733] = 3659, - [3734] = 107, - [3735] = 3660, - [3736] = 92, - [3737] = 108, - [3738] = 3659, - [3739] = 93, - [3740] = 528, - [3741] = 3741, - [3742] = 497, - [3743] = 488, - [3744] = 482, - [3745] = 488, - [3746] = 3746, - [3747] = 3746, - [3748] = 464, - [3749] = 3746, - [3750] = 94, - [3751] = 526, - [3752] = 528, - [3753] = 3753, - [3754] = 3746, - [3755] = 3746, - [3756] = 497, - [3757] = 510, - [3758] = 336, - [3759] = 510, - [3760] = 488, - [3761] = 3761, - [3762] = 3746, - [3763] = 92, - [3764] = 3746, - [3765] = 482, - [3766] = 3766, - [3767] = 464, - [3768] = 488, - [3769] = 497, - [3770] = 510, - [3771] = 526, - [3772] = 3746, - [3773] = 3753, - [3774] = 526, - [3775] = 3746, - [3776] = 3746, - [3777] = 99, - [3778] = 3746, - [3779] = 3779, - [3780] = 528, - [3781] = 333, - [3782] = 497, - [3783] = 510, - [3784] = 3746, - [3785] = 3746, - [3786] = 471, - [3787] = 3787, - [3788] = 526, - [3789] = 3789, - [3790] = 3790, - [3791] = 453, - [3792] = 1861, - [3793] = 3766, - [3794] = 3794, + [3728] = 3727, + [3729] = 343, + [3730] = 108, + [3731] = 3722, + [3732] = 3722, + [3733] = 346, + [3734] = 3734, + [3735] = 3722, + [3736] = 3734, + [3737] = 1854, + [3738] = 107, + [3739] = 481, + [3740] = 3722, + [3741] = 348, + [3742] = 3734, + [3743] = 340, + [3744] = 341, + [3745] = 477, + [3746] = 3722, + [3747] = 3722, + [3748] = 93, + [3749] = 3734, + [3750] = 3722, + [3751] = 3734, + [3752] = 3727, + [3753] = 3722, + [3754] = 3734, + [3755] = 3755, + [3756] = 450, + [3757] = 3734, + [3758] = 3722, + [3759] = 3638, + [3760] = 3722, + [3761] = 3722, + [3762] = 3722, + [3763] = 3763, + [3764] = 3722, + [3765] = 3765, + [3766] = 3722, + [3767] = 3722, + [3768] = 92, + [3769] = 3722, + [3770] = 107, + [3771] = 3727, + [3772] = 477, + [3773] = 107, + [3774] = 3734, + [3775] = 481, + [3776] = 440, + [3777] = 3722, + [3778] = 440, + [3779] = 109, + [3780] = 108, + [3781] = 495, + [3782] = 505, + [3783] = 3734, + [3784] = 3734, + [3785] = 3765, + [3786] = 477, + [3787] = 3734, + [3788] = 3723, + [3789] = 3765, + [3790] = 481, + [3791] = 477, + [3792] = 109, + [3793] = 3734, + [3794] = 3765, [3795] = 3795, - [3796] = 453, - [3797] = 3797, - [3798] = 491, - [3799] = 3799, - [3800] = 3800, - [3801] = 336, - [3802] = 3799, + [3796] = 450, + [3797] = 3734, + [3798] = 109, + [3799] = 108, + [3800] = 3723, + [3801] = 496, + [3802] = 481, [3803] = 3803, - [3804] = 3800, - [3805] = 497, - [3806] = 333, - [3807] = 3636, - [3808] = 3808, - [3809] = 493, - [3810] = 483, - [3811] = 441, - [3812] = 3799, - [3813] = 342, - [3814] = 453, - [3815] = 3799, - [3816] = 526, - [3817] = 510, - [3818] = 3797, - [3819] = 495, - [3820] = 3820, - [3821] = 510, - [3822] = 2636, - [3823] = 3823, - [3824] = 3799, - [3825] = 700, - [3826] = 3826, - [3827] = 509, - [3828] = 3790, - [3829] = 2617, - [3830] = 2573, - [3831] = 3820, - [3832] = 333, - [3833] = 3803, - [3834] = 441, - [3835] = 94, - [3836] = 526, - [3837] = 3799, - [3838] = 488, - [3839] = 453, - [3840] = 495, - [3841] = 3799, - [3842] = 3799, - [3843] = 503, - [3844] = 505, - [3845] = 3845, - [3846] = 3846, - [3847] = 441, - [3848] = 497, - [3849] = 3799, - [3850] = 498, - [3851] = 343, - [3852] = 3787, - [3853] = 528, - [3854] = 3823, - [3855] = 3789, - [3856] = 528, - [3857] = 3857, + [3804] = 3804, + [3805] = 477, + [3806] = 3806, + [3807] = 498, + [3808] = 493, + [3809] = 3804, + [3810] = 3804, + [3811] = 3811, + [3812] = 488, + [3813] = 3804, + [3814] = 3804, + [3815] = 96, + [3816] = 555, + [3817] = 3804, + [3818] = 493, + [3819] = 481, + [3820] = 488, + [3821] = 3804, + [3822] = 3822, + [3823] = 333, + [3824] = 3804, + [3825] = 498, + [3826] = 493, + [3827] = 3804, + [3828] = 3804, + [3829] = 488, + [3830] = 556, + [3831] = 498, + [3832] = 3804, + [3833] = 493, + [3834] = 3834, + [3835] = 555, + [3836] = 3804, + [3837] = 555, + [3838] = 92, + [3839] = 3811, + [3840] = 498, + [3841] = 488, + [3842] = 481, + [3843] = 477, + [3844] = 93, + [3845] = 556, + [3846] = 98, + [3847] = 335, + [3848] = 556, + [3849] = 3804, + [3850] = 3795, + [3851] = 503, + [3852] = 497, + [3853] = 3853, + [3854] = 3854, + [3855] = 3855, + [3856] = 3856, + [3857] = 556, [3858] = 3858, [3859] = 3859, - [3860] = 488, - [3861] = 441, - [3862] = 3826, - [3863] = 3863, - [3864] = 109, + [3860] = 3860, + [3861] = 3861, + [3862] = 3862, + [3863] = 497, + [3864] = 491, [3865] = 3865, - [3866] = 3799, - [3867] = 3867, - [3868] = 3753, - [3869] = 99, - [3870] = 528, - [3871] = 485, - [3872] = 108, - [3873] = 485, - [3874] = 3794, - [3875] = 3795, - [3876] = 686, - [3877] = 3846, - [3878] = 3863, - [3879] = 687, - [3880] = 3790, - [3881] = 503, - [3882] = 3799, - [3883] = 3790, - [3884] = 3858, - [3885] = 505, - [3886] = 3886, - [3887] = 503, - [3888] = 688, - [3889] = 3727, - [3890] = 3886, - [3891] = 107, - [3892] = 495, - [3893] = 493, - [3894] = 3741, - [3895] = 3895, - [3896] = 2638, - [3897] = 482, - [3898] = 3898, - [3899] = 3899, - [3900] = 3900, - [3901] = 3901, - [3902] = 3902, - [3903] = 3903, - [3904] = 3904, - [3905] = 3905, + [3866] = 3866, + [3867] = 109, + [3868] = 556, + [3869] = 3869, + [3870] = 3870, + [3871] = 3871, + [3872] = 3872, + [3873] = 3869, + [3874] = 3862, + [3875] = 3869, + [3876] = 3876, + [3877] = 493, + [3878] = 450, + [3879] = 488, + [3880] = 3880, + [3881] = 108, + [3882] = 3869, + [3883] = 3866, + [3884] = 2569, + [3885] = 507, + [3886] = 3870, + [3887] = 717, + [3888] = 496, + [3889] = 3871, + [3890] = 498, + [3891] = 507, + [3892] = 493, + [3893] = 3856, + [3894] = 3869, + [3895] = 3854, + [3896] = 3855, + [3897] = 701, + [3898] = 702, + [3899] = 703, + [3900] = 440, + [3901] = 3876, + [3902] = 3861, + [3903] = 347, + [3904] = 3834, + [3905] = 3638, [3906] = 3906, - [3907] = 3907, - [3908] = 3908, + [3907] = 3853, + [3908] = 335, [3909] = 3909, - [3910] = 342, - [3911] = 441, - [3912] = 3912, - [3913] = 1455, - [3914] = 343, - [3915] = 3915, - [3916] = 2587, + [3910] = 1886, + [3911] = 495, + [3912] = 3869, + [3913] = 472, + [3914] = 495, + [3915] = 335, + [3916] = 3869, [3917] = 3917, [3918] = 3918, - [3919] = 3919, - [3920] = 3900, - [3921] = 3901, - [3922] = 3922, - [3923] = 3902, - [3924] = 342, - [3925] = 700, - [3926] = 3926, - [3927] = 3927, - [3928] = 3899, - [3929] = 3929, - [3930] = 343, - [3931] = 3931, - [3932] = 686, - [3933] = 687, - [3934] = 688, - [3935] = 509, - [3936] = 505, - [3937] = 485, - [3938] = 464, - [3939] = 3899, - [3940] = 3900, - [3941] = 3901, - [3942] = 3903, - [3943] = 482, - [3944] = 346, - [3945] = 2621, - [3946] = 347, - [3947] = 348, - [3948] = 3948, - [3949] = 349, - [3950] = 350, - [3951] = 351, - [3952] = 3952, - [3953] = 464, - [3954] = 2587, - [3955] = 3955, - [3956] = 482, - [3957] = 1962, - [3958] = 334, + [3919] = 2566, + [3920] = 3869, + [3921] = 440, + [3922] = 491, + [3923] = 450, + [3924] = 3869, + [3925] = 440, + [3926] = 508, + [3927] = 555, + [3928] = 555, + [3929] = 478, + [3930] = 98, + [3931] = 488, + [3932] = 2595, + [3933] = 450, + [3934] = 498, + [3935] = 107, + [3936] = 440, + [3937] = 496, + [3938] = 333, + [3939] = 505, + [3940] = 3869, + [3941] = 3941, + [3942] = 555, + [3943] = 556, + [3944] = 450, + [3945] = 349, + [3946] = 3865, + [3947] = 96, + [3948] = 3806, + [3949] = 3859, + [3950] = 3856, + [3951] = 3869, + [3952] = 507, + [3953] = 3856, + [3954] = 3811, + [3955] = 3906, + [3956] = 497, + [3957] = 3860, + [3958] = 3941, [3959] = 3959, [3960] = 3960, [3961] = 3961, - [3962] = 3895, - [3963] = 1962, - [3964] = 3964, - [3965] = 713, - [3966] = 373, - [3967] = 3899, - [3968] = 3900, - [3969] = 3901, - [3970] = 3970, - [3971] = 464, + [3962] = 2579, + [3963] = 3963, + [3964] = 3917, + [3965] = 3872, + [3966] = 481, + [3967] = 450, + [3968] = 349, + [3969] = 3969, + [3970] = 450, + [3971] = 3971, [3972] = 3972, - [3973] = 3903, + [3973] = 3973, [3974] = 3974, - [3975] = 3899, - [3976] = 3900, - [3977] = 3901, - [3978] = 3903, - [3979] = 3915, - [3980] = 453, - [3981] = 3900, - [3982] = 3901, - [3983] = 3903, - [3984] = 713, - [3985] = 3899, + [3975] = 3975, + [3976] = 3976, + [3977] = 477, + [3978] = 3978, + [3979] = 3979, + [3980] = 3980, + [3981] = 3981, + [3982] = 3982, + [3983] = 3983, + [3984] = 3984, + [3985] = 3985, [3986] = 3986, - [3987] = 3903, - [3988] = 700, + [3987] = 3987, + [3988] = 3988, [3989] = 3989, - [3990] = 3899, - [3991] = 3929, + [3990] = 3990, + [3991] = 477, [3992] = 3992, [3993] = 3993, - [3994] = 3903, - [3995] = 3995, - [3996] = 3899, + [3994] = 3994, + [3995] = 342, + [3996] = 3996, [3997] = 3997, [3998] = 3998, - [3999] = 3903, - [4000] = 464, - [4001] = 482, - [4002] = 686, - [4003] = 687, - [4004] = 441, - [4005] = 688, - [4006] = 2713, - [4007] = 2680, - [4008] = 107, - [4009] = 3903, - [4010] = 108, - [4011] = 109, - [4012] = 3904, - [4013] = 4013, - [4014] = 4014, - [4015] = 4015, - [4016] = 453, - [4017] = 441, + [3999] = 3999, + [4000] = 4000, + [4001] = 343, + [4002] = 346, + [4003] = 1460, + [4004] = 2588, + [4005] = 4005, + [4006] = 348, + [4007] = 340, + [4008] = 341, + [4009] = 4009, + [4010] = 4010, + [4011] = 4011, + [4012] = 4012, + [4013] = 347, + [4014] = 717, + [4015] = 481, + [4016] = 349, + [4017] = 4017, [4018] = 4018, - [4019] = 342, - [4020] = 700, - [4021] = 686, - [4022] = 687, - [4023] = 688, - [4024] = 453, - [4025] = 3895, - [4026] = 3906, - [4027] = 3915, + [4019] = 4019, + [4020] = 4020, + [4021] = 4021, + [4022] = 4022, + [4023] = 4023, + [4024] = 4024, + [4025] = 4025, + [4026] = 4026, + [4027] = 4027, [4028] = 4028, [4029] = 4029, [4030] = 4030, - [4031] = 343, - [4032] = 453, - [4033] = 3895, - [4034] = 3906, - [4035] = 3915, - [4036] = 3906, - [4037] = 4013, - [4038] = 4014, - [4039] = 4015, - [4040] = 3865, - [4041] = 3808, - [4042] = 441, - [4043] = 4043, - [4044] = 4044, - [4045] = 4045, - [4046] = 441, - [4047] = 3899, + [4031] = 4031, + [4032] = 2596, + [4033] = 701, + [4034] = 702, + [4035] = 4035, + [4036] = 703, + [4037] = 477, + [4038] = 3973, + [4039] = 505, + [4040] = 495, + [4041] = 496, + [4042] = 1937, + [4043] = 3979, + [4044] = 3980, + [4045] = 3981, + [4046] = 336, + [4047] = 4047, [4048] = 4048, - [4049] = 960, - [4050] = 4050, - [4051] = 441, + [4049] = 3990, + [4050] = 705, + [4051] = 4051, [4052] = 4052, - [4053] = 4053, + [4053] = 2588, [4054] = 4054, - [4055] = 4052, - [4056] = 4054, + [4055] = 3974, + [4056] = 1937, [4057] = 4057, [4058] = 4058, - [4059] = 3992, + [4059] = 3975, [4060] = 4060, - [4061] = 3993, - [4062] = 961, - [4063] = 505, + [4061] = 4061, + [4062] = 4062, + [4063] = 4063, [4064] = 4064, - [4065] = 485, - [4066] = 4057, + [4065] = 4065, + [4066] = 4066, [4067] = 4067, - [4068] = 4048, - [4069] = 4054, - [4070] = 4052, - [4071] = 526, - [4072] = 888, - [4073] = 962, - [4074] = 4029, + [4068] = 481, + [4069] = 4069, + [4070] = 4070, + [4071] = 4071, + [4072] = 4072, + [4073] = 4073, + [4074] = 3979, [4075] = 4075, - [4076] = 4064, - [4077] = 3766, + [4076] = 4076, + [4077] = 4077, [4078] = 4078, - [4079] = 4030, - [4080] = 464, - [4081] = 4054, - [4082] = 4052, - [4083] = 3741, - [4084] = 888, - [4085] = 962, - [4086] = 690, - [4087] = 4087, - [4088] = 482, - [4089] = 4064, - [4090] = 2587, + [4079] = 4079, + [4080] = 369, + [4081] = 3990, + [4082] = 4082, + [4083] = 705, + [4084] = 4084, + [4085] = 717, + [4086] = 3979, + [4087] = 3980, + [4088] = 3981, + [4089] = 4089, + [4090] = 3990, [4091] = 4091, - [4092] = 942, - [4093] = 4054, - [4094] = 4052, - [4095] = 965, - [4096] = 2511, - [4097] = 2122, - [4098] = 2126, - [4099] = 4064, - [4100] = 2512, - [4101] = 888, - [4102] = 3325, - [4103] = 4054, - [4104] = 4052, + [4092] = 440, + [4093] = 4093, + [4094] = 3979, + [4095] = 3980, + [4096] = 3981, + [4097] = 4097, + [4098] = 3990, + [4099] = 4099, + [4100] = 3979, + [4101] = 3980, + [4102] = 3981, + [4103] = 3990, + [4104] = 3979, [4105] = 4105, - [4106] = 966, - [4107] = 4054, - [4108] = 4052, - [4109] = 4064, - [4110] = 4064, - [4111] = 945, - [4112] = 4054, - [4113] = 4052, - [4114] = 4057, - [4115] = 4052, - [4116] = 2884, - [4117] = 4064, - [4118] = 3266, - [4119] = 4054, - [4120] = 4054, - [4121] = 3564, - [4122] = 4054, - [4123] = 4054, - [4124] = 497, - [4125] = 4054, - [4126] = 497, - [4127] = 497, - [4128] = 4064, - [4129] = 4054, - [4130] = 4064, - [4131] = 4054, + [4106] = 4106, + [4107] = 4107, + [4108] = 3990, + [4109] = 701, + [4110] = 702, + [4111] = 4111, + [4112] = 4112, + [4113] = 703, + [4114] = 3979, + [4115] = 3990, + [4116] = 3979, + [4117] = 4117, + [4118] = 4118, + [4119] = 3990, + [4120] = 4120, + [4121] = 4121, + [4122] = 4122, + [4123] = 4123, + [4124] = 481, + [4125] = 4125, + [4126] = 4126, + [4127] = 477, + [4128] = 450, + [4129] = 2679, + [4130] = 2714, + [4131] = 4131, [4132] = 4132, - [4133] = 4050, - [4134] = 4054, - [4135] = 488, - [4136] = 956, - [4137] = 4054, - [4138] = 958, - [4139] = 4054, - [4140] = 4054, - [4141] = 4054, - [4142] = 334, - [4143] = 510, - [4144] = 960, - [4145] = 488, - [4146] = 961, - [4147] = 945, - [4148] = 681, - [4149] = 4053, - [4150] = 4058, - [4151] = 4087, - [4152] = 965, - [4153] = 966, - [4154] = 4154, - [4155] = 464, - [4156] = 510, - [4157] = 482, + [4133] = 347, + [4134] = 450, + [4135] = 4135, + [4136] = 4136, + [4137] = 107, + [4138] = 109, + [4139] = 108, + [4140] = 4089, + [4141] = 3993, + [4142] = 4142, + [4143] = 4143, + [4144] = 4144, + [4145] = 440, + [4146] = 4146, + [4147] = 717, + [4148] = 701, + [4149] = 702, + [4150] = 703, + [4151] = 347, + [4152] = 3980, + [4153] = 3973, + [4154] = 3974, + [4155] = 3975, + [4156] = 4156, + [4157] = 3981, [4158] = 4158, - [4159] = 1061, - [4160] = 956, - [4161] = 888, - [4162] = 962, - [4163] = 464, - [4164] = 4164, - [4165] = 958, - [4166] = 4048, - [4167] = 373, - [4168] = 965, - [4169] = 4169, - [4170] = 333, - [4171] = 441, - [4172] = 464, - [4173] = 966, - [4174] = 336, - [4175] = 497, - [4176] = 488, - [4177] = 482, - [4178] = 4048, - [4179] = 4054, + [4159] = 450, + [4160] = 4160, + [4161] = 4161, + [4162] = 3973, + [4163] = 3974, + [4164] = 3975, + [4165] = 349, + [4166] = 4106, + [4167] = 4107, + [4168] = 4111, + [4169] = 440, + [4170] = 440, + [4171] = 4171, + [4172] = 4172, + [4173] = 3982, + [4174] = 4174, + [4175] = 4175, + [4176] = 4176, + [4177] = 488, + [4178] = 738, + [4179] = 4179, [4180] = 4180, - [4181] = 945, - [4182] = 510, - [4183] = 3908, - [4184] = 3909, - [4185] = 488, - [4186] = 4057, - [4187] = 4187, - [4188] = 360, - [4189] = 3964, - [4190] = 4190, - [4191] = 961, - [4192] = 367, - [4193] = 956, - [4194] = 4194, - [4195] = 958, - [4196] = 723, - [4197] = 339, - [4198] = 2122, - [4199] = 3986, - [4200] = 482, - [4201] = 4201, - [4202] = 528, - [4203] = 4203, - [4204] = 4194, - [4205] = 960, - [4206] = 510, + [4181] = 4176, + [4182] = 4182, + [4183] = 931, + [4184] = 477, + [4185] = 4176, + [4186] = 4182, + [4187] = 477, + [4188] = 4188, + [4189] = 4189, + [4190] = 4179, + [4191] = 4191, + [4192] = 4192, + [4193] = 931, + [4194] = 4176, + [4195] = 4182, + [4196] = 4179, + [4197] = 917, + [4198] = 718, + [4199] = 4174, + [4200] = 4078, + [4201] = 4189, + [4202] = 4202, + [4203] = 4176, + [4204] = 4182, + [4205] = 4189, + [4206] = 933, [4207] = 4207, - [4208] = 4208, - [4209] = 4209, - [4210] = 728, - [4211] = 729, - [4212] = 3108, - [4213] = 4213, - [4214] = 730, - [4215] = 2582, - [4216] = 4216, - [4217] = 942, - [4218] = 960, - [4219] = 4169, + [4208] = 355, + [4209] = 3587, + [4210] = 4189, + [4211] = 4211, + [4212] = 338, + [4213] = 498, + [4214] = 931, + [4215] = 738, + [4216] = 4047, + [4217] = 4217, + [4218] = 4176, + [4219] = 4182, [4220] = 4220, [4221] = 4221, - [4222] = 4222, - [4223] = 4222, - [4224] = 4224, - [4225] = 4225, - [4226] = 731, - [4227] = 713, - [4228] = 906, - [4229] = 4229, - [4230] = 1061, - [4231] = 4231, - [4232] = 735, - [4233] = 736, + [4222] = 4189, + [4223] = 938, + [4224] = 738, + [4225] = 493, + [4226] = 4176, + [4227] = 4182, + [4228] = 4228, + [4229] = 941, + [4230] = 963, + [4231] = 4189, + [4232] = 333, + [4233] = 974, [4234] = 4234, - [4235] = 737, - [4236] = 4236, - [4237] = 4237, - [4238] = 4238, - [4239] = 962, - [4240] = 1061, - [4241] = 739, - [4242] = 4242, - [4243] = 4243, - [4244] = 4244, - [4245] = 4245, - [4246] = 965, - [4247] = 966, - [4248] = 372, - [4249] = 4249, - [4250] = 741, - [4251] = 4251, - [4252] = 742, - [4253] = 743, - [4254] = 744, - [4255] = 745, - [4256] = 746, - [4257] = 747, - [4258] = 748, - [4259] = 2565, - [4260] = 2572, - [4261] = 342, - [4262] = 4262, - [4263] = 4263, - [4264] = 2643, - [4265] = 2580, - [4266] = 2599, - [4267] = 2618, - [4268] = 4268, - [4269] = 4269, - [4270] = 4270, - [4271] = 2620, - [4272] = 360, - [4273] = 343, - [4274] = 4201, - [4275] = 4275, - [4276] = 4276, - [4277] = 1805, - [4278] = 4278, - [4279] = 1812, - [4280] = 945, - [4281] = 441, + [4235] = 933, + [4236] = 4176, + [4237] = 965, + [4238] = 4176, + [4239] = 3998, + [4240] = 493, + [4241] = 4176, + [4242] = 4189, + [4243] = 555, + [4244] = 4176, + [4245] = 495, + [4246] = 493, + [4247] = 498, + [4248] = 933, + [4249] = 4176, + [4250] = 369, + [4251] = 488, + [4252] = 498, + [4253] = 4176, + [4254] = 4176, + [4255] = 941, + [4256] = 4176, + [4257] = 4176, + [4258] = 1962, + [4259] = 2588, + [4260] = 4260, + [4261] = 4176, + [4262] = 488, + [4263] = 4176, + [4264] = 4180, + [4265] = 4176, + [4266] = 4266, + [4267] = 4234, + [4268] = 938, + [4269] = 336, + [4270] = 493, + [4271] = 4228, + [4272] = 4176, + [4273] = 496, + [4274] = 4266, + [4275] = 4182, + [4276] = 4189, + [4277] = 4182, + [4278] = 965, + [4279] = 481, + [4280] = 4280, + [4281] = 4091, [4282] = 4282, - [4283] = 4283, - [4284] = 956, - [4285] = 4285, - [4286] = 958, - [4287] = 4287, - [4288] = 4288, - [4289] = 960, - [4290] = 4290, - [4291] = 961, - [4292] = 4292, - [4293] = 888, - [4294] = 939, - [4295] = 4295, + [4283] = 4093, + [4284] = 963, + [4285] = 477, + [4286] = 4286, + [4287] = 983, + [4288] = 2858, + [4289] = 965, + [4290] = 704, + [4291] = 2538, + [4292] = 335, + [4293] = 2539, + [4294] = 3281, + [4295] = 481, [4296] = 4296, - [4297] = 4297, - [4298] = 4298, - [4299] = 4299, - [4300] = 4300, - [4301] = 3713, - [4302] = 3719, - [4303] = 4303, - [4304] = 4304, - [4305] = 4305, - [4306] = 346, - [4307] = 962, - [4308] = 347, - [4309] = 348, - [4310] = 4310, - [4311] = 965, - [4312] = 966, - [4313] = 4313, - [4314] = 949, - [4315] = 349, - [4316] = 350, - [4317] = 351, - [4318] = 962, - [4319] = 4319, - [4320] = 942, - [4321] = 4321, - [4322] = 3643, - [4323] = 961, - [4324] = 4180, - [4325] = 4222, - [4326] = 4326, - [4327] = 4327, + [4297] = 4082, + [4298] = 716, + [4299] = 4282, + [4300] = 4180, + [4301] = 4301, + [4302] = 450, + [4303] = 488, + [4304] = 1962, + [4305] = 498, + [4306] = 917, + [4307] = 957, + [4308] = 3347, + [4309] = 450, + [4310] = 481, + [4311] = 4311, + [4312] = 1984, + [4313] = 352, + [4314] = 4180, + [4315] = 4176, + [4316] = 4182, + [4317] = 3806, + [4318] = 4179, + [4319] = 3834, + [4320] = 4220, + [4321] = 957, + [4322] = 4322, + [4323] = 477, + [4324] = 556, + [4325] = 938, + [4326] = 481, + [4327] = 941, [4328] = 4328, - [4329] = 4329, - [4330] = 4330, - [4331] = 4331, - [4332] = 4332, - [4333] = 4333, - [4334] = 4334, - [4335] = 4335, + [4329] = 738, + [4330] = 917, + [4331] = 957, + [4332] = 963, + [4333] = 4189, + [4334] = 3999, + [4335] = 941, [4336] = 4336, - [4337] = 4337, + [4337] = 824, [4338] = 4338, [4339] = 4339, [4340] = 4340, @@ -9183,1040 +9392,1172 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4343] = 4343, [4344] = 4344, [4345] = 4345, - [4346] = 4222, - [4347] = 4347, - [4348] = 367, + [4346] = 4346, + [4347] = 4286, + [4348] = 4348, [4349] = 4349, - [4350] = 4350, - [4351] = 4351, - [4352] = 339, + [4350] = 983, + [4351] = 1355, + [4352] = 4352, [4353] = 4353, - [4354] = 4354, + [4354] = 347, [4355] = 4355, - [4356] = 3808, - [4357] = 4222, - [4358] = 497, - [4359] = 4359, - [4360] = 4360, - [4361] = 4361, + [4356] = 4356, + [4357] = 4357, + [4358] = 927, + [4359] = 440, + [4360] = 884, + [4361] = 349, [4362] = 4362, [4363] = 4363, - [4364] = 4364, + [4364] = 963, [4365] = 4365, - [4366] = 510, - [4367] = 4367, - [4368] = 488, + [4366] = 705, + [4367] = 717, + [4368] = 965, [4369] = 4369, - [4370] = 4370, - [4371] = 4371, - [4372] = 4372, + [4370] = 780, + [4371] = 783, + [4372] = 784, [4373] = 4373, - [4374] = 4374, - [4375] = 4222, - [4376] = 4376, + [4374] = 788, + [4375] = 2610, + [4376] = 3755, [4377] = 4377, - [4378] = 4378, - [4379] = 4379, - [4380] = 4380, - [4381] = 4381, - [4382] = 4382, - [4383] = 699, - [4384] = 4384, - [4385] = 4222, - [4386] = 707, - [4387] = 4319, - [4388] = 4222, + [4378] = 4286, + [4379] = 3763, + [4380] = 701, + [4381] = 702, + [4382] = 703, + [4383] = 3917, + [4384] = 3872, + [4385] = 4385, + [4386] = 790, + [4387] = 4387, + [4388] = 4388, [4389] = 4389, [4390] = 4390, - [4391] = 945, - [4392] = 4091, - [4393] = 4393, - [4394] = 4222, - [4395] = 965, - [4396] = 966, - [4397] = 4397, - [4398] = 4398, - [4399] = 889, - [4400] = 4222, + [4391] = 4391, + [4392] = 918, + [4393] = 957, + [4394] = 794, + [4395] = 795, + [4396] = 796, + [4397] = 798, + [4398] = 4362, + [4399] = 4399, + [4400] = 4400, [4401] = 4401, - [4402] = 4222, + [4402] = 4402, [4403] = 4403, - [4404] = 4222, - [4405] = 4405, + [4404] = 963, + [4405] = 965, [4406] = 4406, - [4407] = 4222, - [4408] = 4225, - [4409] = 4409, - [4410] = 4222, - [4411] = 4411, - [4412] = 4412, - [4413] = 890, - [4414] = 4414, - [4415] = 4393, - [4416] = 4416, + [4407] = 799, + [4408] = 801, + [4409] = 802, + [4410] = 803, + [4411] = 804, + [4412] = 805, + [4413] = 806, + [4414] = 807, + [4415] = 2587, + [4416] = 2629, [4417] = 4417, - [4418] = 4418, - [4419] = 888, - [4420] = 4420, - [4421] = 942, - [4422] = 4422, - [4423] = 4423, - [4424] = 4424, - [4425] = 4425, - [4426] = 4377, - [4427] = 3004, - [4428] = 945, - [4429] = 1357, + [4418] = 917, + [4419] = 488, + [4420] = 931, + [4421] = 2599, + [4422] = 2601, + [4423] = 2602, + [4424] = 2604, + [4425] = 2606, + [4426] = 4426, + [4427] = 738, + [4428] = 933, + [4429] = 4429, [4430] = 4430, - [4431] = 4431, - [4432] = 4432, - [4433] = 497, + [4431] = 974, + [4432] = 1399, + [4433] = 4433, [4434] = 4434, - [4435] = 510, - [4436] = 488, - [4437] = 1799, + [4435] = 4435, + [4436] = 4436, + [4437] = 450, [4438] = 4438, - [4439] = 1802, - [4440] = 956, - [4441] = 4441, - [4442] = 958, - [4443] = 4443, - [4444] = 3205, + [4439] = 4439, + [4440] = 4440, + [4441] = 3647, + [4442] = 4390, + [4443] = 4417, + [4444] = 498, [4445] = 4445, - [4446] = 932, - [4447] = 960, - [4448] = 4448, - [4449] = 961, - [4450] = 700, - [4451] = 497, - [4452] = 3210, - [4453] = 453, - [4454] = 888, - [4455] = 962, - [4456] = 510, - [4457] = 488, - [4458] = 1061, - [4459] = 4222, - [4460] = 4422, + [4446] = 4446, + [4447] = 4447, + [4448] = 914, + [4449] = 4449, + [4450] = 4450, + [4451] = 4451, + [4452] = 1819, + [4453] = 1821, + [4454] = 4454, + [4455] = 4455, + [4456] = 4456, + [4457] = 4457, + [4458] = 4458, + [4459] = 4459, + [4460] = 4460, [4461] = 4461, [4462] = 4462, - [4463] = 4222, - [4464] = 4222, + [4463] = 342, + [4464] = 933, [4465] = 4465, - [4466] = 4466, - [4467] = 726, - [4468] = 4468, + [4466] = 4301, + [4467] = 343, + [4468] = 346, [4469] = 4469, - [4470] = 4470, + [4470] = 967, [4471] = 4471, [4472] = 4472, - [4473] = 4473, - [4474] = 4474, + [4473] = 938, + [4474] = 4362, [4475] = 4475, - [4476] = 497, - [4477] = 1833, - [4478] = 1836, + [4476] = 348, + [4477] = 340, + [4478] = 341, [4479] = 4479, - [4480] = 4480, + [4480] = 4426, [4481] = 4481, - [4482] = 4430, + [4482] = 4365, [4483] = 4483, - [4484] = 4484, - [4485] = 965, - [4486] = 966, - [4487] = 4222, - [4488] = 4488, + [4484] = 738, + [4485] = 4485, + [4486] = 917, + [4487] = 4328, + [4488] = 974, [4489] = 4489, - [4490] = 4169, + [4490] = 1827, [4491] = 4491, - [4492] = 4492, - [4493] = 4409, - [4494] = 4326, + [4492] = 1823, + [4493] = 4493, + [4494] = 933, [4495] = 4495, - [4496] = 956, - [4497] = 4216, - [4498] = 4221, + [4496] = 983, + [4497] = 4497, + [4498] = 4362, [4499] = 4499, - [4500] = 4499, - [4501] = 958, + [4500] = 4500, + [4501] = 4501, [4502] = 4502, [4503] = 4503, - [4504] = 488, + [4504] = 4504, [4505] = 4505, - [4506] = 510, - [4507] = 686, - [4508] = 687, - [4509] = 688, - [4510] = 4326, - [4511] = 4216, - [4512] = 4221, - [4513] = 4499, - [4514] = 1408, - [4515] = 727, - [4516] = 3865, - [4517] = 3093, - [4518] = 4518, - [4519] = 4389, - [4520] = 715, - [4521] = 441, - [4522] = 2203, + [4506] = 4506, + [4507] = 4507, + [4508] = 4508, + [4509] = 4509, + [4510] = 4510, + [4511] = 957, + [4512] = 4362, + [4513] = 488, + [4514] = 498, + [4515] = 3153, + [4516] = 3154, + [4517] = 4517, + [4518] = 957, + [4519] = 4519, + [4520] = 938, + [4521] = 4521, + [4522] = 4522, [4523] = 4523, [4524] = 4524, - [4525] = 4523, - [4526] = 4526, + [4525] = 4362, + [4526] = 941, [4527] = 4527, - [4528] = 1371, - [4529] = 4328, + [4528] = 4528, + [4529] = 4529, [4530] = 4530, [4531] = 4531, - [4532] = 905, + [4532] = 4362, [4533] = 4533, - [4534] = 2506, - [4535] = 4295, - [4536] = 4296, - [4537] = 2533, - [4538] = 946, - [4539] = 4443, + [4534] = 4534, + [4535] = 1831, + [4536] = 1837, + [4537] = 4537, + [4538] = 4538, + [4539] = 4539, [4540] = 4540, - [4541] = 2509, - [4542] = 4523, + [4541] = 4541, + [4542] = 4362, [4543] = 4543, - [4544] = 4544, - [4545] = 4545, - [4546] = 2517, - [4547] = 4547, + [4544] = 963, + [4545] = 965, + [4546] = 355, + [4547] = 4362, [4548] = 4548, - [4549] = 4549, - [4550] = 4335, - [4551] = 4551, + [4549] = 931, + [4550] = 4550, + [4551] = 938, [4552] = 4552, [4553] = 4553, - [4554] = 768, - [4555] = 4297, - [4556] = 2539, - [4557] = 769, - [4558] = 2547, - [4559] = 4559, - [4560] = 482, + [4554] = 4362, + [4555] = 917, + [4556] = 931, + [4557] = 4557, + [4558] = 4558, + [4559] = 4362, + [4560] = 4560, [4561] = 4561, - [4562] = 4562, - [4563] = 4282, - [4564] = 4523, + [4562] = 738, + [4563] = 933, + [4564] = 983, [4565] = 4565, - [4566] = 4283, - [4567] = 4285, + [4566] = 4362, + [4567] = 4567, [4568] = 4568, - [4569] = 4406, - [4570] = 4370, - [4571] = 4571, - [4572] = 954, - [4573] = 4411, - [4574] = 1411, - [4575] = 4412, - [4576] = 4330, - [4577] = 4310, + [4569] = 4495, + [4570] = 4570, + [4571] = 4362, + [4572] = 4572, + [4573] = 941, + [4574] = 372, + [4575] = 4362, + [4576] = 4531, + [4577] = 4577, [4578] = 4578, - [4579] = 4298, - [4580] = 4337, - [4581] = 4431, - [4582] = 2168, - [4583] = 4416, - [4584] = 4420, - [4585] = 4287, - [4586] = 4586, + [4579] = 4579, + [4580] = 4580, + [4581] = 4581, + [4582] = 352, + [4583] = 4445, + [4584] = 2960, + [4585] = 938, + [4586] = 941, [4587] = 4587, - [4588] = 4365, - [4589] = 464, + [4588] = 4579, + [4589] = 4524, [4590] = 4590, - [4591] = 4288, - [4592] = 4592, - [4593] = 4341, - [4594] = 4594, + [4591] = 4591, + [4592] = 4191, + [4593] = 4593, + [4594] = 493, [4595] = 4595, [4596] = 4596, - [4597] = 4313, - [4598] = 4598, - [4599] = 4530, + [4597] = 4597, + [4598] = 488, + [4599] = 498, [4600] = 4600, - [4601] = 4595, - [4602] = 4559, - [4603] = 4603, - [4604] = 4367, - [4605] = 3323, - [4606] = 2897, + [4601] = 4601, + [4602] = 4602, + [4603] = 3158, + [4604] = 4604, + [4605] = 4605, + [4606] = 4606, [4607] = 4607, - [4608] = 4434, - [4609] = 4479, - [4610] = 4480, + [4608] = 4608, + [4609] = 4609, + [4610] = 4610, [4611] = 4611, [4612] = 4612, - [4613] = 4290, + [4613] = 4362, [4614] = 4614, - [4615] = 4615, - [4616] = 4530, + [4615] = 4362, + [4616] = 4362, [4617] = 4617, - [4618] = 4445, - [4619] = 4617, - [4620] = 4531, - [4621] = 4461, - [4622] = 2899, - [4623] = 4559, - [4624] = 4491, - [4625] = 4492, - [4626] = 4350, + [4618] = 4618, + [4619] = 4619, + [4620] = 4620, + [4621] = 4621, + [4622] = 4622, + [4623] = 4623, + [4624] = 3159, + [4625] = 712, + [4626] = 4626, [4627] = 4627, - [4628] = 4505, - [4629] = 4208, - [4630] = 4630, - [4631] = 4369, - [4632] = 4209, + [4628] = 710, + [4629] = 4629, + [4630] = 4362, + [4631] = 493, + [4632] = 4429, [4633] = 4633, - [4634] = 4481, - [4635] = 4635, - [4636] = 4636, - [4637] = 4637, - [4638] = 4213, - [4639] = 4378, - [4640] = 4379, - [4641] = 4331, - [4642] = 4380, - [4643] = 4643, - [4644] = 4484, - [4645] = 4371, - [4646] = 4495, - [4647] = 4381, - [4648] = 4648, - [4649] = 4382, - [4650] = 4305, - [4651] = 334, - [4652] = 4372, - [4653] = 4488, - [4654] = 4327, - [4655] = 939, - [4656] = 4656, - [4657] = 453, - [4658] = 4343, - [4659] = 4659, - [4660] = 527, - [4661] = 4661, - [4662] = 4553, - [4663] = 4342, - [4664] = 4332, - [4665] = 4390, - [4666] = 4666, - [4667] = 4351, - [4668] = 4668, - [4669] = 4669, - [4670] = 4670, - [4671] = 4671, - [4672] = 4333, - [4673] = 4673, - [4674] = 4523, - [4675] = 4675, - [4676] = 928, - [4677] = 931, + [4634] = 493, + [4635] = 4510, + [4636] = 4552, + [4637] = 4357, + [4638] = 488, + [4639] = 4639, + [4640] = 498, + [4641] = 338, + [4642] = 4642, + [4643] = 4429, + [4644] = 4510, + [4645] = 4552, + [4646] = 4357, + [4647] = 865, + [4648] = 974, + [4649] = 4649, + [4650] = 493, + [4651] = 4457, + [4652] = 4538, + [4653] = 4653, + [4654] = 4654, + [4655] = 4655, + [4656] = 4591, + [4657] = 811, + [4658] = 4658, + [4659] = 3184, + [4660] = 812, + [4661] = 4539, + [4662] = 477, + [4663] = 4663, + [4664] = 4600, + [4665] = 914, + [4666] = 2894, + [4667] = 2531, + [4668] = 481, + [4669] = 2514, + [4670] = 2188, + [4671] = 4434, + [4672] = 4655, + [4673] = 4595, + [4674] = 4674, + [4675] = 4517, + [4676] = 4455, + [4677] = 4658, [4678] = 4678, - [4679] = 4679, - [4680] = 749, - [4681] = 4681, - [4682] = 4682, - [4683] = 750, - [4684] = 4530, - [4685] = 4617, - [4686] = 2900, - [4687] = 4687, - [4688] = 4553, - [4689] = 4303, - [4690] = 4553, - [4691] = 4304, - [4692] = 3109, + [4679] = 2895, + [4680] = 4373, + [4681] = 4577, + [4682] = 4540, + [4683] = 4683, + [4684] = 4458, + [4685] = 4685, + [4686] = 4618, + [4687] = 4553, + [4688] = 4541, + [4689] = 4655, + [4690] = 2896, + [4691] = 4691, + [4692] = 450, [4693] = 4693, - [4694] = 4694, - [4695] = 4695, - [4696] = 4245, - [4697] = 4648, - [4698] = 4251, - [4699] = 4354, - [4700] = 4262, + [4694] = 4658, + [4695] = 1404, + [4696] = 4450, + [4697] = 4697, + [4698] = 4698, + [4699] = 4699, + [4700] = 4700, [4701] = 4701, - [4702] = 491, - [4703] = 4466, - [4704] = 4374, - [4705] = 4376, - [4706] = 4706, - [4707] = 2896, - [4708] = 4530, - [4709] = 4355, - [4710] = 4710, - [4711] = 2229, - [4712] = 2230, - [4713] = 4263, - [4714] = 4518, - [4715] = 4268, - [4716] = 2232, - [4717] = 4523, - [4718] = 4234, - [4719] = 4269, - [4720] = 4236, - [4721] = 4270, - [4722] = 4530, - [4723] = 4600, - [4724] = 4724, - [4725] = 4359, - [4726] = 4360, - [4727] = 4727, - [4728] = 4468, + [4702] = 4693, + [4703] = 4703, + [4704] = 4704, + [4705] = 4557, + [4706] = 4543, + [4707] = 4391, + [4708] = 4342, + [4709] = 4402, + [4710] = 4403, + [4711] = 4633, + [4712] = 4642, + [4713] = 848, + [4714] = 713, + [4715] = 4343, + [4716] = 4716, + [4717] = 849, + [4718] = 4349, + [4719] = 4719, + [4720] = 4438, + [4721] = 4655, + [4722] = 4722, + [4723] = 3179, + [4724] = 4601, + [4725] = 4460, + [4726] = 4726, + [4727] = 2186, + [4728] = 800, [4729] = 4729, [4730] = 4730, - [4731] = 752, - [4732] = 4732, - [4733] = 4733, - [4734] = 4666, - [4735] = 753, - [4736] = 4475, - [4737] = 4483, - [4738] = 4675, - [4739] = 4362, + [4731] = 4462, + [4732] = 485, + [4733] = 4439, + [4734] = 2155, + [4735] = 4735, + [4736] = 878, + [4737] = 4737, + [4738] = 4738, + [4739] = 450, [4740] = 4740, - [4741] = 949, - [4742] = 4489, - [4743] = 498, - [4744] = 4617, - [4745] = 4363, - [4746] = 4364, - [4747] = 695, - [4748] = 4748, - [4749] = 4749, - [4750] = 4750, + [4741] = 2194, + [4742] = 4435, + [4743] = 881, + [4744] = 4385, + [4745] = 4745, + [4746] = 4596, + [4747] = 4747, + [4748] = 4658, + [4749] = 4497, + [4750] = 3279, [4751] = 4751, - [4752] = 4752, - [4753] = 970, - [4754] = 4523, - [4755] = 373, - [4756] = 4756, - [4757] = 1367, - [4758] = 921, - [4759] = 441, - [4760] = 4321, - [4761] = 4334, - [4762] = 4530, - [4763] = 4469, - [4764] = 4559, - [4765] = 940, - [4766] = 4766, - [4767] = 4384, - [4768] = 4470, - [4769] = 4769, - [4770] = 3154, - [4771] = 4771, - [4772] = 4299, - [4773] = 4292, - [4774] = 4329, - [4775] = 3165, - [4776] = 4559, - [4777] = 4777, - [4778] = 4373, - [4779] = 956, - [4780] = 4780, + [4752] = 4493, + [4753] = 4701, + [4754] = 4620, + [4755] = 4755, + [4756] = 4489, + [4757] = 4639, + [4758] = 4527, + [4759] = 4500, + [4760] = 4558, + [4761] = 369, + [4762] = 4560, + [4763] = 4561, + [4764] = 4565, + [4765] = 4614, + [4766] = 4567, + [4767] = 4568, + [4768] = 4747, + [4769] = 4570, + [4770] = 4610, + [4771] = 4611, + [4772] = 4499, + [4773] = 4572, + [4774] = 4774, + [4775] = 4433, + [4776] = 4465, + [4777] = 4617, + [4778] = 4778, + [4779] = 4627, + [4780] = 4501, [4781] = 4781, - [4782] = 4782, - [4783] = 4783, - [4784] = 4784, - [4785] = 4785, + [4782] = 4602, + [4783] = 4502, + [4784] = 4503, + [4785] = 1366, [4786] = 4786, [4787] = 4787, [4788] = 4788, [4789] = 4789, - [4790] = 961, + [4790] = 4504, [4791] = 4791, - [4792] = 4792, + [4792] = 508, [4793] = 4793, - [4794] = 488, - [4795] = 4795, - [4796] = 4796, - [4797] = 4797, - [4798] = 4798, - [4799] = 4799, - [4800] = 930, - [4801] = 4801, - [4802] = 4802, - [4803] = 4803, - [4804] = 2908, - [4805] = 2912, - [4806] = 4801, - [4807] = 4802, - [4808] = 4808, + [4794] = 4794, + [4795] = 4529, + [4796] = 4533, + [4797] = 4446, + [4798] = 4534, + [4799] = 4704, + [4800] = 4800, + [4801] = 4471, + [4802] = 4528, + [4803] = 4700, + [4804] = 4604, + [4805] = 4619, + [4806] = 4806, + [4807] = 4807, + [4808] = 4605, [4809] = 4809, - [4810] = 1518, - [4811] = 4811, - [4812] = 360, + [4810] = 4606, + [4811] = 4607, + [4812] = 4812, [4813] = 4813, [4814] = 4814, [4815] = 4815, - [4816] = 942, - [4817] = 4817, + [4816] = 4816, + [4817] = 4608, [4818] = 4818, - [4819] = 4819, - [4820] = 497, - [4821] = 4813, - [4822] = 3167, - [4823] = 2130, - [4824] = 2131, - [4825] = 4814, - [4826] = 4826, - [4827] = 367, + [4819] = 4348, + [4820] = 4820, + [4821] = 4774, + [4822] = 4609, + [4823] = 4823, + [4824] = 4824, + [4825] = 4825, + [4826] = 4580, + [4827] = 4827, [4828] = 4828, - [4829] = 339, + [4829] = 4581, [4830] = 4830, - [4831] = 4831, - [4832] = 888, - [4833] = 1050, - [4834] = 4795, - [4835] = 4835, + [4831] = 440, + [4832] = 4507, + [4833] = 2207, + [4834] = 2892, + [4835] = 2536, [4836] = 4836, - [4837] = 4796, - [4838] = 4808, - [4839] = 4811, - [4840] = 4840, + [4837] = 4789, + [4838] = 4658, + [4839] = 4839, + [4840] = 4454, [4841] = 4841, - [4842] = 4798, - [4843] = 4799, - [4844] = 4844, + [4842] = 4842, + [4843] = 336, + [4844] = 4701, [4845] = 4845, - [4846] = 4846, - [4847] = 4847, - [4848] = 4848, - [4849] = 4849, - [4850] = 4850, - [4851] = 3713, - [4852] = 3719, - [4853] = 4853, - [4854] = 4854, - [4855] = 4855, - [4856] = 4808, - [4857] = 4811, - [4858] = 4858, + [4846] = 808, + [4847] = 809, + [4848] = 4436, + [4849] = 4509, + [4850] = 1363, + [4851] = 729, + [4852] = 4852, + [4853] = 503, + [4854] = 4774, + [4855] = 4508, + [4856] = 4856, + [4857] = 4857, + [4858] = 2524, [4859] = 4859, - [4860] = 945, + [4860] = 2537, [4861] = 4861, - [4862] = 4862, - [4863] = 4844, - [4864] = 4845, - [4865] = 4848, - [4866] = 4849, + [4862] = 970, + [4863] = 4863, + [4864] = 4864, + [4865] = 4865, + [4866] = 4655, [4867] = 4867, [4868] = 4868, - [4869] = 4673, - [4870] = 934, + [4869] = 4869, + [4870] = 4870, [4871] = 4871, - [4872] = 4872, + [4872] = 4336, [4873] = 4873, - [4874] = 4874, + [4874] = 4691, [4875] = 4875, [4876] = 4876, - [4877] = 4877, - [4878] = 904, - [4879] = 4879, - [4880] = 960, - [4881] = 4801, - [4882] = 2651, - [4883] = 4883, - [4884] = 4802, - [4885] = 4836, - [4886] = 4840, - [4887] = 4887, - [4888] = 464, + [4877] = 4406, + [4878] = 4521, + [4879] = 4522, + [4880] = 4597, + [4881] = 4649, + [4882] = 4882, + [4883] = 4863, + [4884] = 4338, + [4885] = 4658, + [4886] = 4701, + [4887] = 4693, + [4888] = 4388, [4889] = 4889, - [4890] = 696, - [4891] = 482, + [4890] = 4658, + [4891] = 4693, [4892] = 4892, [4893] = 4893, - [4894] = 4858, - [4895] = 4862, - [4896] = 4896, - [4897] = 957, - [4898] = 4873, - [4899] = 965, - [4900] = 4900, - [4901] = 4169, - [4902] = 2003, - [4903] = 4854, - [4904] = 4904, - [4905] = 4875, - [4906] = 4855, - [4907] = 4907, - [4908] = 966, - [4909] = 4872, - [4910] = 4841, - [4911] = 3113, + [4894] = 4894, + [4895] = 4593, + [4896] = 2506, + [4897] = 3178, + [4898] = 4774, + [4899] = 4899, + [4900] = 4655, + [4901] = 791, + [4902] = 792, + [4903] = 4537, + [4904] = 793, + [4905] = 934, + [4906] = 4655, + [4907] = 4389, + [4908] = 4523, + [4909] = 4774, + [4910] = 967, + [4911] = 4911, [4912] = 4912, - [4913] = 4874, - [4914] = 4818, + [4913] = 4913, + [4914] = 4914, [4915] = 4915, - [4916] = 4916, - [4917] = 4877, - [4918] = 4918, - [4919] = 4887, + [4916] = 352, + [4917] = 4917, + [4918] = 3185, + [4919] = 4919, [4920] = 4920, - [4921] = 4841, - [4922] = 4922, - [4923] = 4841, - [4924] = 510, - [4925] = 4871, - [4926] = 4900, - [4927] = 4896, - [4928] = 4817, - [4929] = 4801, - [4930] = 4802, - [4931] = 4868, - [4932] = 4876, - [4933] = 4808, - [4934] = 4811, - [4935] = 4935, - [4936] = 1061, + [4921] = 4921, + [4922] = 941, + [4923] = 4923, + [4924] = 4924, + [4925] = 974, + [4926] = 488, + [4927] = 3180, + [4928] = 4928, + [4929] = 4929, + [4930] = 931, + [4931] = 4931, + [4932] = 4932, + [4933] = 926, + [4934] = 4934, + [4935] = 4915, + [4936] = 4936, [4937] = 4937, - [4938] = 4841, - [4939] = 4939, + [4938] = 4911, + [4939] = 933, [4940] = 4940, - [4941] = 914, - [4942] = 958, + [4941] = 4941, + [4942] = 4942, [4943] = 4943, - [4944] = 4847, - [4945] = 4850, - [4946] = 962, - [4947] = 4907, - [4948] = 4948, + [4944] = 4944, + [4945] = 4945, + [4946] = 4946, + [4947] = 4947, + [4948] = 4942, [4949] = 4949, [4950] = 4950, [4951] = 4951, - [4952] = 4952, - [4953] = 4953, + [4952] = 4932, + [4953] = 4945, [4954] = 4954, - [4955] = 4955, - [4956] = 4949, - [4957] = 4957, - [4958] = 888, + [4955] = 983, + [4956] = 4685, + [4957] = 4936, + [4958] = 4940, [4959] = 4959, [4960] = 4960, [4961] = 4961, [4962] = 4962, [4963] = 4963, - [4964] = 4963, + [4964] = 4964, [4965] = 4965, [4966] = 4966, - [4967] = 4952, - [4968] = 4962, - [4969] = 4969, - [4970] = 4950, - [4971] = 4957, - [4972] = 4963, - [4973] = 4965, + [4967] = 4286, + [4968] = 4968, + [4969] = 958, + [4970] = 4970, + [4971] = 4949, + [4972] = 4972, + [4973] = 4973, [4974] = 4974, - [4975] = 4960, - [4976] = 4966, - [4977] = 4962, - [4978] = 4951, - [4979] = 4963, - [4980] = 4965, - [4981] = 4966, - [4982] = 4952, - [4983] = 4948, - [4984] = 4984, - [4985] = 4985, - [4986] = 4957, - [4987] = 4957, - [4988] = 4965, - [4989] = 4966, - [4990] = 4960, + [4975] = 4914, + [4976] = 4976, + [4977] = 4977, + [4978] = 4917, + [4979] = 4979, + [4980] = 4980, + [4981] = 2015, + [4982] = 966, + [4983] = 527, + [4984] = 498, + [4985] = 4965, + [4986] = 4931, + [4987] = 4987, + [4988] = 4970, + [4989] = 4934, + [4990] = 4944, [4991] = 4991, - [4992] = 4963, - [4993] = 4965, - [4994] = 4966, - [4995] = 4949, - [4996] = 4952, - [4997] = 4957, - [4998] = 4962, - [4999] = 4999, - [5000] = 939, - [5001] = 4960, - [5002] = 5002, - [5003] = 4963, - [5004] = 4965, - [5005] = 4966, - [5006] = 4951, - [5007] = 5002, - [5008] = 4957, - [5009] = 5009, - [5010] = 5010, - [5011] = 5011, + [4992] = 4992, + [4993] = 355, + [4994] = 4962, + [4995] = 4995, + [4996] = 4996, + [4997] = 4997, + [4998] = 4923, + [4999] = 944, + [5000] = 4942, + [5001] = 5001, + [5002] = 338, + [5003] = 5003, + [5004] = 5004, + [5005] = 4920, + [5006] = 4924, + [5007] = 5007, + [5008] = 4974, + [5009] = 4976, + [5010] = 4921, + [5011] = 951, [5012] = 5012, - [5013] = 4963, - [5014] = 4965, - [5015] = 4966, - [5016] = 491, + [5013] = 3031, + [5014] = 3021, + [5015] = 5015, + [5016] = 5016, [5017] = 5017, - [5018] = 4957, - [5019] = 5019, - [5020] = 4963, - [5021] = 4965, - [5022] = 4966, - [5023] = 4951, - [5024] = 4952, - [5025] = 4957, - [5026] = 5026, - [5027] = 4963, - [5028] = 4965, - [5029] = 4966, + [5018] = 5018, + [5019] = 738, + [5020] = 5020, + [5021] = 5021, + [5022] = 1507, + [5023] = 5023, + [5024] = 5024, + [5025] = 5025, + [5026] = 4919, + [5027] = 481, + [5028] = 5028, + [5029] = 4949, [5030] = 5030, - [5031] = 5009, - [5032] = 4957, - [5033] = 5033, - [5034] = 4963, - [5035] = 4965, - [5036] = 4966, - [5037] = 4955, - [5038] = 5038, - [5039] = 4957, - [5040] = 5040, - [5041] = 4963, - [5042] = 4965, - [5043] = 4966, - [5044] = 4955, - [5045] = 5045, - [5046] = 4957, - [5047] = 4999, - [5048] = 4963, - [5049] = 4965, - [5050] = 4966, - [5051] = 5017, - [5052] = 4957, + [5031] = 5031, + [5032] = 4947, + [5033] = 477, + [5034] = 1028, + [5035] = 4937, + [5036] = 5036, + [5037] = 957, + [5038] = 938, + [5039] = 5039, + [5040] = 493, + [5041] = 5041, + [5042] = 5042, + [5043] = 5043, + [5044] = 5044, + [5045] = 4947, + [5046] = 4995, + [5047] = 4947, + [5048] = 5048, + [5049] = 5049, + [5050] = 5050, + [5051] = 4947, + [5052] = 4960, [5053] = 5053, - [5054] = 4963, - [5055] = 4965, - [5056] = 4966, - [5057] = 4950, - [5058] = 4957, - [5059] = 5059, + [5054] = 3755, + [5055] = 3763, + [5056] = 4972, + [5057] = 4973, + [5058] = 5003, + [5059] = 5043, [5060] = 4963, - [5061] = 4965, - [5062] = 4966, - [5063] = 5063, - [5064] = 5064, - [5065] = 4952, - [5066] = 5066, - [5067] = 4974, - [5068] = 5068, - [5069] = 5069, - [5070] = 5070, - [5071] = 5071, - [5072] = 5030, - [5073] = 5073, + [5061] = 4942, + [5062] = 4949, + [5063] = 4912, + [5064] = 963, + [5065] = 4972, + [5066] = 4973, + [5067] = 5067, + [5068] = 965, + [5069] = 917, + [5070] = 4992, + [5071] = 2148, + [5072] = 4972, + [5073] = 4973, [5074] = 5074, - [5075] = 5075, - [5076] = 5076, - [5077] = 4957, - [5078] = 5078, - [5079] = 5079, + [5075] = 2149, + [5076] = 4950, + [5077] = 4964, + [5078] = 5050, + [5079] = 2656, [5080] = 5080, - [5081] = 4960, - [5082] = 5009, - [5083] = 5030, + [5081] = 5081, + [5082] = 5082, + [5083] = 5083, [5084] = 5084, - [5085] = 5045, - [5086] = 4974, - [5087] = 949, - [5088] = 4962, + [5085] = 5085, + [5086] = 5086, + [5087] = 5087, + [5088] = 5088, [5089] = 5089, - [5090] = 5090, - [5091] = 5091, - [5092] = 4991, - [5093] = 4948, - [5094] = 4960, - [5095] = 4955, - [5096] = 4960, - [5097] = 4984, - [5098] = 4960, - [5099] = 4951, - [5100] = 5100, + [5090] = 5087, + [5091] = 508, + [5092] = 5092, + [5093] = 5087, + [5094] = 5092, + [5095] = 5095, + [5096] = 5096, + [5097] = 5097, + [5098] = 5098, + [5099] = 5081, + [5100] = 5084, [5101] = 5101, - [5102] = 5045, - [5103] = 5059, - [5104] = 4950, - [5105] = 4957, - [5106] = 4962, - [5107] = 4948, - [5108] = 5108, - [5109] = 5066, - [5110] = 5110, - [5111] = 4953, - [5112] = 5012, - [5113] = 5113, - [5114] = 5068, - [5115] = 4984, - [5116] = 4962, - [5117] = 5117, - [5118] = 4963, - [5119] = 4965, - [5120] = 5064, - [5121] = 4955, - [5122] = 5122, - [5123] = 498, + [5102] = 5102, + [5103] = 5082, + [5104] = 5089, + [5105] = 5105, + [5106] = 5106, + [5107] = 5106, + [5108] = 5087, + [5109] = 5092, + [5110] = 5095, + [5111] = 5111, + [5112] = 5097, + [5113] = 5098, + [5114] = 5081, + [5115] = 5084, + [5116] = 5095, + [5117] = 5106, + [5118] = 5118, + [5119] = 5089, + [5120] = 5095, + [5121] = 5121, + [5122] = 5087, + [5123] = 5087, [5124] = 5124, - [5125] = 5125, - [5126] = 2517, - [5127] = 5045, - [5128] = 5076, - [5129] = 4999, - [5130] = 5100, - [5131] = 4963, - [5132] = 5030, - [5133] = 5133, - [5134] = 4965, - [5135] = 4966, - [5136] = 5136, - [5137] = 5137, - [5138] = 5138, - [5139] = 4961, + [5125] = 5097, + [5126] = 5098, + [5127] = 5081, + [5128] = 5128, + [5129] = 5097, + [5130] = 5089, + [5131] = 5098, + [5132] = 5081, + [5133] = 5097, + [5134] = 5087, + [5135] = 5098, + [5136] = 5097, + [5137] = 5098, + [5138] = 5081, + [5139] = 5111, [5140] = 5140, - [5141] = 2539, - [5142] = 5142, - [5143] = 4828, - [5144] = 4999, - [5145] = 4949, - [5146] = 5146, - [5147] = 4963, - [5148] = 4951, - [5149] = 5017, - [5150] = 5150, - [5151] = 5151, - [5152] = 4951, - [5153] = 497, - [5154] = 5009, - [5155] = 5091, - [5156] = 5071, - [5157] = 510, - [5158] = 4966, - [5159] = 488, - [5160] = 5017, - [5161] = 5161, - [5162] = 4952, - [5163] = 4965, - [5164] = 5030, + [5141] = 5089, + [5142] = 5087, + [5143] = 5081, + [5144] = 503, + [5145] = 5097, + [5146] = 5098, + [5147] = 5081, + [5148] = 5148, + [5149] = 5106, + [5150] = 5089, + [5151] = 5111, + [5152] = 5097, + [5153] = 5098, + [5154] = 5081, + [5155] = 5155, + [5156] = 5156, + [5157] = 5089, + [5158] = 5158, + [5159] = 5097, + [5160] = 5098, + [5161] = 5081, + [5162] = 5162, + [5163] = 5163, + [5164] = 5089, [5165] = 5165, - [5166] = 4955, - [5167] = 4957, - [5168] = 5168, - [5169] = 4959, - [5170] = 5101, - [5171] = 5171, - [5172] = 5011, - [5173] = 5173, - [5174] = 491, - [5175] = 4999, - [5176] = 4991, - [5177] = 4991, - [5178] = 5178, + [5166] = 5097, + [5167] = 5098, + [5168] = 5081, + [5169] = 5083, + [5170] = 5170, + [5171] = 5089, + [5172] = 5083, + [5173] = 5097, + [5174] = 5098, + [5175] = 5081, + [5176] = 5176, + [5177] = 5148, + [5178] = 5089, [5179] = 5179, - [5180] = 5117, - [5181] = 5069, - [5182] = 4952, - [5183] = 4962, - [5184] = 5184, - [5185] = 4949, - [5186] = 5136, - [5187] = 5017, - [5188] = 2533, - [5189] = 5117, - [5190] = 5190, - [5191] = 4960, - [5192] = 4957, - [5193] = 5045, - [5194] = 5194, - [5195] = 5195, - [5196] = 5045, - [5197] = 5079, - [5198] = 4999, - [5199] = 4985, - [5200] = 4960, - [5201] = 4950, - [5202] = 4962, - [5203] = 4960, - [5204] = 4951, + [5180] = 5097, + [5181] = 5098, + [5182] = 5081, + [5183] = 5080, + [5184] = 5089, + [5185] = 5185, + [5186] = 5097, + [5187] = 5098, + [5188] = 5081, + [5189] = 5158, + [5190] = 5089, + [5191] = 5191, + [5192] = 5097, + [5193] = 5098, + [5194] = 5081, + [5195] = 5185, + [5196] = 5196, + [5197] = 5197, + [5198] = 5083, + [5199] = 5084, + [5200] = 5105, + [5201] = 5201, + [5202] = 5202, + [5203] = 5203, + [5204] = 503, [5205] = 5205, - [5206] = 4950, - [5207] = 5045, + [5206] = 5206, + [5207] = 5080, [5208] = 5208, - [5209] = 491, - [5210] = 5045, - [5211] = 5064, - [5212] = 5068, - [5213] = 5069, - [5214] = 5070, - [5215] = 5010, - [5216] = 4962, - [5217] = 5090, - [5218] = 4957, - [5219] = 5219, - [5220] = 4962, - [5221] = 4957, - [5222] = 5011, - [5223] = 5223, - [5224] = 4963, - [5225] = 4965, - [5226] = 4966, - [5227] = 4991, - [5228] = 4963, - [5229] = 5223, - [5230] = 4965, - [5231] = 4949, - [5232] = 5136, - [5233] = 5122, - [5234] = 4960, - [5235] = 4966, - [5236] = 5045, - [5237] = 5223, - [5238] = 4950, - [5239] = 5070, - [5240] = 5059, - [5241] = 4962, - [5242] = 5084, - [5243] = 5125, - [5244] = 5219, - [5245] = 4963, - [5246] = 4965, - [5247] = 4966, - [5248] = 4951, - [5249] = 5076, - [5250] = 4949, - [5251] = 5136, - [5252] = 5084, - [5253] = 5064, - [5254] = 5068, - [5255] = 5069, - [5256] = 5070, - [5257] = 4949, - [5258] = 5090, - [5259] = 5223, + [5209] = 5209, + [5210] = 5163, + [5211] = 5203, + [5212] = 5083, + [5213] = 5087, + [5214] = 5140, + [5215] = 5080, + [5216] = 5216, + [5217] = 5092, + [5218] = 5218, + [5219] = 5102, + [5220] = 5095, + [5221] = 5221, + [5222] = 5222, + [5223] = 5218, + [5224] = 5197, + [5225] = 5191, + [5226] = 5208, + [5227] = 5227, + [5228] = 5092, + [5229] = 5229, + [5230] = 5230, + [5231] = 5083, + [5232] = 5232, + [5233] = 5080, + [5234] = 5234, + [5235] = 5197, + [5236] = 5236, + [5237] = 5092, + [5238] = 5238, + [5239] = 5084, + [5240] = 5089, + [5241] = 5165, + [5242] = 5191, + [5243] = 5243, + [5244] = 5244, + [5245] = 5245, + [5246] = 914, + [5247] = 5247, + [5248] = 5248, + [5249] = 5249, + [5250] = 5250, + [5251] = 5208, + [5252] = 5197, + [5253] = 5086, + [5254] = 5084, + [5255] = 5179, + [5256] = 5197, + [5257] = 5257, + [5258] = 5084, + [5259] = 5259, [5260] = 5260, - [5261] = 4966, - [5262] = 5064, - [5263] = 5068, - [5264] = 5069, - [5265] = 5070, - [5266] = 5064, - [5267] = 5068, - [5268] = 5069, - [5269] = 5070, - [5270] = 5064, - [5271] = 5068, - [5272] = 5069, - [5273] = 5070, - [5274] = 5064, - [5275] = 5069, - [5276] = 5070, - [5277] = 5064, - [5278] = 5069, - [5279] = 5070, - [5280] = 5064, - [5281] = 5069, - [5282] = 5070, - [5283] = 5064, - [5284] = 5069, - [5285] = 5070, - [5286] = 5064, - [5287] = 5069, - [5288] = 5070, - [5289] = 5064, - [5290] = 5069, - [5291] = 5070, - [5292] = 5064, - [5293] = 5069, - [5294] = 5070, - [5295] = 5064, - [5296] = 5069, - [5297] = 5070, - [5298] = 5064, - [5299] = 5069, - [5300] = 5070, - [5301] = 5064, - [5302] = 5069, - [5303] = 5070, - [5304] = 5064, - [5305] = 5069, - [5306] = 5070, - [5307] = 5064, - [5308] = 5069, - [5309] = 5070, - [5310] = 5064, - [5311] = 5069, - [5312] = 5070, - [5313] = 5064, - [5314] = 5069, - [5315] = 5070, - [5316] = 4991, - [5317] = 5011, - [5318] = 5318, - [5319] = 4951, - [5320] = 5009, - [5321] = 2506, - [5322] = 5179, - [5323] = 4960, - [5324] = 5017, - [5325] = 4952, - [5326] = 4951, - [5327] = 4952, - [5328] = 2509, - [5329] = 5030, + [5261] = 5087, + [5262] = 5262, + [5263] = 2524, + [5264] = 5264, + [5265] = 5092, + [5266] = 508, + [5267] = 5196, + [5268] = 5208, + [5269] = 5269, + [5270] = 5270, + [5271] = 5271, + [5272] = 5106, + [5273] = 5083, + [5274] = 5247, + [5275] = 5201, + [5276] = 5095, + [5277] = 5277, + [5278] = 5278, + [5279] = 5118, + [5280] = 5148, + [5281] = 2531, + [5282] = 5140, + [5283] = 5283, + [5284] = 5097, + [5285] = 5098, + [5286] = 5081, + [5287] = 5206, + [5288] = 5250, + [5289] = 5278, + [5290] = 5271, + [5291] = 5111, + [5292] = 5292, + [5293] = 5098, + [5294] = 5185, + [5295] = 5283, + [5296] = 2506, + [5297] = 5081, + [5298] = 5083, + [5299] = 5250, + [5300] = 5080, + [5301] = 5301, + [5302] = 5202, + [5303] = 5229, + [5304] = 5304, + [5305] = 5197, + [5306] = 5140, + [5307] = 5218, + [5308] = 5308, + [5309] = 5084, + [5310] = 5089, + [5311] = 5208, + [5312] = 5312, + [5313] = 5218, + [5314] = 5314, + [5315] = 5086, + [5316] = 5292, + [5317] = 5089, + [5318] = 5140, + [5319] = 5128, + [5320] = 5089, + [5321] = 5321, + [5322] = 5221, + [5323] = 5118, + [5324] = 493, + [5325] = 5111, + [5326] = 5084, + [5327] = 5158, + [5328] = 5250, + [5329] = 5097, [5330] = 5330, - [5331] = 5030, - [5332] = 4961, - [5333] = 5009, - [5334] = 4955, - [5335] = 498, - [5336] = 5336, - [5337] = 5337, - [5338] = 5337, - [5339] = 5339, - [5340] = 5110, - [5341] = 5341, - [5342] = 5318, - [5343] = 4974, - [5344] = 5090, - [5345] = 5113, - [5346] = 4957, - [5347] = 5089, - [5348] = 5348, - [5349] = 4984, - [5350] = 4999, - [5351] = 5089, - [5352] = 4960, - [5353] = 4960, - [5354] = 5078, - [5355] = 4999, - [5356] = 5137, - [5357] = 5357, - [5358] = 5009, - [5359] = 4962, - [5360] = 5337, - [5361] = 5045, - [5362] = 5017, - [5363] = 4952, - [5364] = 5038, - [5365] = 4963, - [5366] = 5337, - [5367] = 5138, - [5368] = 5089, - [5369] = 4957, - [5370] = 5091, - [5371] = 5030, - [5372] = 2547, - [5373] = 4991, - [5374] = 4961, - [5375] = 5184, - [5376] = 4965, - [5377] = 4966, - [5378] = 498, - [5379] = 5379, + [5331] = 5218, + [5332] = 5087, + [5333] = 5087, + [5334] = 5095, + [5335] = 5089, + [5336] = 5083, + [5337] = 5321, + [5338] = 5338, + [5339] = 5092, + [5340] = 508, + [5341] = 738, + [5342] = 5087, + [5343] = 5196, + [5344] = 5105, + [5345] = 5201, + [5346] = 5202, + [5347] = 5095, + [5348] = 488, + [5349] = 5222, + [5350] = 5092, + [5351] = 498, + [5352] = 2514, + [5353] = 5232, + [5354] = 5106, + [5355] = 5355, + [5356] = 5356, + [5357] = 5222, + [5358] = 967, + [5359] = 5095, + [5360] = 5089, + [5361] = 5361, + [5362] = 5097, + [5363] = 5082, + [5364] = 5355, + [5365] = 5098, + [5366] = 5081, + [5367] = 5243, + [5368] = 5368, + [5369] = 5111, + [5370] = 5158, + [5371] = 5218, + [5372] = 5264, + [5373] = 5179, + [5374] = 5374, + [5375] = 5375, + [5376] = 5087, + [5377] = 5083, + [5378] = 5080, + [5379] = 5270, + [5380] = 5197, + [5381] = 5084, + [5382] = 5092, + [5383] = 5383, + [5384] = 5095, + [5385] = 5196, + [5386] = 5105, + [5387] = 5201, + [5388] = 5202, + [5389] = 5101, + [5390] = 5222, + [5391] = 5097, + [5392] = 5098, + [5393] = 5081, + [5394] = 5196, + [5395] = 5105, + [5396] = 5201, + [5397] = 5202, + [5398] = 5196, + [5399] = 5105, + [5400] = 5201, + [5401] = 5202, + [5402] = 5196, + [5403] = 5105, + [5404] = 5201, + [5405] = 5202, + [5406] = 5196, + [5407] = 5201, + [5408] = 5202, + [5409] = 5196, + [5410] = 5201, + [5411] = 5202, + [5412] = 5196, + [5413] = 5201, + [5414] = 5202, + [5415] = 5196, + [5416] = 5201, + [5417] = 5202, + [5418] = 5196, + [5419] = 5201, + [5420] = 5202, + [5421] = 5196, + [5422] = 5201, + [5423] = 5202, + [5424] = 5196, + [5425] = 5201, + [5426] = 5202, + [5427] = 5196, + [5428] = 5201, + [5429] = 5202, + [5430] = 5196, + [5431] = 5201, + [5432] = 5202, + [5433] = 5196, + [5434] = 5201, + [5435] = 5202, + [5436] = 5196, + [5437] = 5201, + [5438] = 5202, + [5439] = 5196, + [5440] = 5201, + [5441] = 5202, + [5442] = 5196, + [5443] = 5201, + [5444] = 5202, + [5445] = 5196, + [5446] = 5201, + [5447] = 5202, + [5448] = 5170, + [5449] = 5097, + [5450] = 5176, + [5451] = 5208, + [5452] = 5270, + [5453] = 5262, + [5454] = 5096, + [5455] = 5140, + [5456] = 5111, + [5457] = 5375, + [5458] = 5458, + [5459] = 5083, + [5460] = 5084, + [5461] = 5208, + [5462] = 5106, + [5463] = 5375, + [5464] = 5097, + [5465] = 5101, + [5466] = 5247, + [5467] = 5467, + [5468] = 5375, + [5469] = 5218, + [5470] = 5269, + [5471] = 5101, + [5472] = 5247, + [5473] = 5321, + [5474] = 5081, + [5475] = 5475, + [5476] = 5148, + [5477] = 5250, + [5478] = 5245, + [5479] = 5208, + [5480] = 5111, + [5481] = 5089, + [5482] = 5089, + [5483] = 5483, + [5484] = 5218, + [5485] = 5098, + [5486] = 5234, + [5487] = 5140, + [5488] = 5488, + [5489] = 5250, + [5490] = 5095, + [5491] = 5087, + [5492] = 5269, + [5493] = 503, + [5494] = 5494, + [5495] = 5095, + [5496] = 5089, + [5497] = 5259, + [5498] = 5269, + [5499] = 2536, + [5500] = 5321, + [5501] = 5097, + [5502] = 5250, + [5503] = 4943, + [5504] = 2537, + [5505] = 5270, + [5506] = 5098, + [5507] = 5179, + [5508] = 5081, + [5509] = 5095, + [5510] = 5098, + [5511] = 5511, }; static const TSCharacterRange aux_sym_cmd_identifier_token1_character_set_1[] = { @@ -10879,1803 +11220,1803 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(660); + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1717, - '"', 1684, - '#', 2187, - '$', 1509, - '&', 823, - '\'', 1687, - '(', 1560, - ')', 1615, - '*', 1111, - '+', 1116, - ',', 1468, - '-', 1117, - '.', 1720, - '/', 1113, - ':', 1712, - ';', 1450, - '<', 1140, - '=', 672, - '>', 1143, - '?', 1716, - '@', 1480, - '[', 1664, - ']', 1465, - '^', 1730, - '_', 1501, - '`', 1691, - '{', 1497, - '|', 1451, - '}', 1498, + '!', 1746, + '"', 1713, + '#', 2216, + '$', 1538, + '&', 839, + '\'', 1716, + '(', 1589, + ')', 1644, + '*', 1135, + '+', 1140, + ',', 1497, + '-', 1141, + '.', 1749, + '/', 1137, + ':', 1741, + ';', 1479, + '<', 1164, + '=', 683, + '>', 1167, + '?', 1745, + '@', 1509, + '[', 1693, + ']', 1494, + '^', 1759, + '_', 1530, + '`', 1720, + '{', 1526, + '|', 1480, + '}', 1527, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(565); + lookahead == ' ') SKIP(576); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(1372); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(1396); END_STATE(); case 1: - if (lookahead == '\n') ADVANCE(1447); + if (lookahead == '\n') ADVANCE(1476); END_STATE(); case 2: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1717, - '#', 2187, - '$', 1469, - '(', 1466, - ')', 1467, - ',', 1468, - '-', 1486, - '.', 1724, - ':', 1462, - '<', 1140, - '=', 672, - '>', 1478, - '?', 1716, - '@', 1480, - '[', 1464, - ']', 1465, - '|', 1451, + '!', 1746, + '#', 2216, + '$', 1498, + '(', 1495, + ')', 1496, + ',', 1497, + '-', 1515, + '.', 1753, + ':', 1491, + '<', 1164, + '=', 683, + '>', 1507, + '?', 1745, + '@', 1509, + '[', 1493, + ']', 1494, + '|', 1480, ); if (lookahead == '\t' || lookahead == ' ') SKIP(3); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1372); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1396); END_STATE(); case 3: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1717, - '#', 2187, - '$', 1469, - '(', 1466, - ')', 1467, - ',', 1468, - '-', 1486, - '.', 1723, - ':', 1462, - '=', 672, - '>', 1478, - '?', 1716, - '[', 1464, - ']', 1465, - '|', 1451, + '!', 1746, + '#', 2216, + '$', 1498, + '(', 1495, + ')', 1496, + ',', 1497, + '-', 1515, + '.', 1752, + ':', 1491, + '=', 683, + '>', 1507, + '?', 1745, + '[', 1493, + ']', 1494, + '|', 1480, ); if (lookahead == '\t' || lookahead == ' ') SKIP(3); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1372); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1396); END_STATE(); case 4: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1717, - '#', 2187, - '(', 1466, - ')', 1467, + '!', 1746, + '#', 2216, + '(', 1495, + ')', 1496, '-', 297, - '.', 1719, - ':', 1712, - ';', 1450, - '=', 674, - '>', 1478, - '?', 1716, - '[', 1464, - 'a', 416, + '.', 1748, + ':', 1741, + ';', 1479, + '=', 685, + '>', 1507, + '?', 1745, + '[', 1493, + 'a', 424, 'e', 288, - 'i', 382, + 'i', 387, 'o', 289, - 'x', 426, - '{', 1497, - '|', 1451, - '}', 1498, + 'x', 435, + '{', 1526, + '|', 1480, + '}', 1527, ); if (lookahead == '\t' || lookahead == ' ') SKIP(4); END_STATE(); case 5: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1717, - '#', 2187, - '(', 1466, - ')', 1467, + '!', 1746, + '#', 2216, + '(', 1495, + ')', 1496, '-', 297, - '.', 1721, - ':', 1712, - ';', 1450, - '=', 674, - '>', 1478, - '?', 1716, - '[', 1464, - 'a', 416, + '.', 1750, + ':', 1741, + ';', 1479, + '=', 685, + '>', 1507, + '?', 1745, + '[', 1493, + 'a', 424, 'e', 288, - 'i', 382, + 'i', 387, 'o', 289, - 'x', 426, - '{', 1497, - '|', 1451, - '}', 1498, + 'x', 435, + '{', 1526, + '|', 1480, + '}', 1527, ); if (lookahead == '\t' || lookahead == ' ') SKIP(4); END_STATE(); case 6: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1717, - '#', 2187, - ')', 1467, - '.', 1719, - ':', 1712, - ';', 1450, + '!', 1746, + '#', 2216, + ')', 1496, + '.', 1748, + ':', 1741, + ';', 1479, '=', 323, - '?', 1716, - 'a', 416, + '?', 1745, + 'a', 424, 'e', 288, - 'i', 382, + 'i', 387, 'o', 289, - 'x', 426, - '{', 1497, - '|', 1451, - '}', 1498, + 'x', 435, + '{', 1526, + '|', 1480, + '}', 1527, ); if (lookahead == '\t' || lookahead == ' ') SKIP(6); END_STATE(); case 7: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1717, - '#', 2187, - ')', 1467, - '.', 1721, - ':', 1712, - ';', 1450, + '!', 1746, + '#', 2216, + ')', 1496, + '.', 1750, + ':', 1741, + ';', 1479, '=', 323, - '?', 1716, - 'a', 416, + '?', 1745, + 'a', 424, 'e', 288, - 'i', 382, + 'i', 387, 'o', 289, - 'x', 426, - '{', 1497, - '|', 1451, - '}', 1498, + 'x', 435, + '{', 1526, + '|', 1480, + '}', 1527, ); if (lookahead == '\t' || lookahead == ' ') SKIP(6); END_STATE(); case 8: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1792, - '#', 2187, - '$', 1469, - '(', 1560, - '*', 1511, - '+', 1575, - '-', 1492, - '.', 1603, - '/', 1566, - '<', 1549, - '=', 1794, - '>', 1479, - '_', 1812, - 'a', 1864, - 'b', 1851, - 'e', 1865, - 'h', 1822, - 'i', 1862, - 'l', 1850, - 'm', 1873, - 'n', 1872, - 'o', 1878, - 's', 1898, - 'x', 1870, - '{', 1497, + '!', 1821, + '#', 2216, + '$', 1498, + '(', 1589, + '*', 1540, + '+', 1604, + '-', 1521, + '.', 1632, + '/', 1595, + '<', 1578, + '=', 1823, + '>', 1508, + '_', 1841, + 'a', 1893, + 'b', 1880, + 'e', 1894, + 'h', 1851, + 'i', 1891, + 'l', 1879, + 'm', 1902, + 'n', 1901, + 'o', 1907, + 's', 1927, + 'x', 1899, + '{', 1526, ); if (lookahead == '\t' || lookahead == ' ') SKIP(22); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1933); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1962); END_STATE(); case 9: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1792, - '#', 2187, - '$', 1469, - '(', 1560, - '*', 1511, - '+', 1575, - '-', 1492, - '.', 1814, - '/', 1566, - '<', 1549, - '=', 1794, - '>', 1479, - '_', 1812, - 'a', 1864, - 'b', 1851, - 'e', 1865, - 'h', 1822, - 'i', 1862, - 'l', 1850, - 'm', 1873, - 'n', 1872, - 'o', 1878, - 's', 1898, - 'x', 1870, - '{', 1497, + '!', 1821, + '#', 2216, + '$', 1498, + '(', 1589, + '*', 1540, + '+', 1604, + '-', 1521, + '.', 1843, + '/', 1595, + '<', 1578, + '=', 1823, + '>', 1508, + '_', 1841, + 'a', 1893, + 'b', 1880, + 'e', 1894, + 'h', 1851, + 'i', 1891, + 'l', 1879, + 'm', 1902, + 'n', 1901, + 'o', 1907, + 's', 1927, + 'x', 1899, + '{', 1526, ); if (lookahead == '\t' || lookahead == ' ') SKIP(22); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1933); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1962); END_STATE(); case 10: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1792, - '#', 2187, - '(', 1560, - '*', 1511, - '+', 1574, - '-', 1485, - '.', 1594, - '/', 1566, - '<', 1549, - '=', 1794, - '>', 1479, - 'B', 1652, - 'E', 1806, - 'G', 1809, - 'K', 1809, - 'M', 1809, - 'P', 1809, - 'T', 1809, - 'a', 1864, - 'b', 1655, - 'd', 1823, - 'e', 1804, - 'g', 1808, - 'h', 1821, - 'i', 1862, - 'k', 1808, - 'l', 1850, - 'm', 1810, - 'n', 1871, - 'o', 1878, - 'p', 1808, - 's', 1837, - 't', 1808, - 'u', 1890, - 'w', 1857, - 'x', 1870, - '{', 1497, - 0xb5, 1890, + '!', 1821, + '#', 2216, + '(', 1589, + '*', 1540, + '+', 1603, + '-', 1514, + '.', 1623, + '/', 1595, + '<', 1578, + '=', 1823, + '>', 1508, + 'B', 1681, + 'E', 1835, + 'G', 1838, + 'K', 1838, + 'M', 1838, + 'P', 1838, + 'T', 1838, + 'a', 1893, + 'b', 1684, + 'd', 1852, + 'e', 1833, + 'g', 1837, + 'h', 1850, + 'i', 1891, + 'k', 1837, + 'l', 1879, + 'm', 1839, + 'n', 1900, + 'o', 1907, + 'p', 1837, + 's', 1866, + 't', 1837, + 'u', 1919, + 'w', 1886, + 'x', 1899, + '{', 1526, + 0xb5, 1919, ); if (lookahead == '\t' || lookahead == ' ') SKIP(30); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 11: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1792, - '#', 2187, - '(', 1560, - '*', 1511, - '+', 1574, - '-', 1485, - '.', 1594, - '/', 1566, - '<', 1549, - '=', 1794, - '>', 1479, - 'E', 1818, - 'a', 1864, - 'b', 1851, - 'e', 1815, - 'h', 1822, - 'i', 1862, - 'l', 1850, - 'm', 1873, - 'n', 1872, - 'o', 1878, - 's', 1898, - 'x', 1870, - '{', 1497, + '!', 1821, + '#', 2216, + '(', 1589, + '*', 1540, + '+', 1603, + '-', 1514, + '.', 1623, + '/', 1595, + '<', 1578, + '=', 1823, + '>', 1508, + 'E', 1847, + 'a', 1893, + 'b', 1880, + 'e', 1844, + 'h', 1851, + 'i', 1891, + 'l', 1879, + 'm', 1902, + 'n', 1901, + 'o', 1907, + 's', 1927, + 'x', 1899, + '{', 1526, ); if (lookahead == '\t' || lookahead == ' ') SKIP(30); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 12: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1792, - '#', 2187, - '(', 1560, - '*', 1511, - '+', 1574, - '-', 1485, - '.', 1789, - '/', 1566, - '<', 1549, - '=', 1794, - '>', 1479, - 'B', 1652, - 'E', 1806, - 'G', 1809, - 'K', 1809, - 'M', 1809, - 'P', 1809, - 'T', 1809, - '_', 1812, - 'a', 1864, - 'b', 1655, - 'd', 1823, - 'e', 1804, - 'g', 1808, - 'h', 1821, - 'i', 1862, - 'k', 1808, - 'l', 1850, - 'm', 1810, - 'n', 1871, - 'o', 1878, - 'p', 1808, - 's', 1837, - 't', 1808, - 'u', 1890, - 'w', 1857, - 'x', 1870, - '{', 1497, - 0xb5, 1890, + '!', 1821, + '#', 2216, + '(', 1589, + '*', 1540, + '+', 1603, + '-', 1514, + '.', 1818, + '/', 1595, + '<', 1578, + '=', 1823, + '>', 1508, + 'B', 1681, + 'E', 1835, + 'G', 1838, + 'K', 1838, + 'M', 1838, + 'P', 1838, + 'T', 1838, + '_', 1841, + 'a', 1893, + 'b', 1684, + 'd', 1852, + 'e', 1833, + 'g', 1837, + 'h', 1850, + 'i', 1891, + 'k', 1837, + 'l', 1879, + 'm', 1839, + 'n', 1900, + 'o', 1907, + 'p', 1837, + 's', 1866, + 't', 1837, + 'u', 1919, + 'w', 1886, + 'x', 1899, + '{', 1526, + 0xb5, 1919, ); if (lookahead == '\t' || lookahead == ' ') SKIP(30); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 13: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1792, - '#', 2187, - '(', 1560, - '*', 1511, - '+', 1574, - '-', 1485, - '.', 1789, - '/', 1566, - '<', 1549, - '=', 1794, - '>', 1479, - 'B', 1652, - 'E', 1806, - 'G', 1809, - 'K', 1809, - 'M', 1809, - 'P', 1809, - 'T', 1809, - 'a', 1864, - 'b', 1655, - 'd', 1823, - 'e', 1804, - 'g', 1808, - 'h', 1821, - 'i', 1862, - 'k', 1808, - 'l', 1850, - 'm', 1810, - 'n', 1871, - 'o', 1878, - 'p', 1808, - 's', 1837, - 't', 1808, - 'u', 1890, - 'w', 1857, - 'x', 1870, - '{', 1497, - 0xb5, 1890, + '!', 1821, + '#', 2216, + '(', 1589, + '*', 1540, + '+', 1603, + '-', 1514, + '.', 1818, + '/', 1595, + '<', 1578, + '=', 1823, + '>', 1508, + 'B', 1681, + 'E', 1835, + 'G', 1838, + 'K', 1838, + 'M', 1838, + 'P', 1838, + 'T', 1838, + 'a', 1893, + 'b', 1684, + 'd', 1852, + 'e', 1833, + 'g', 1837, + 'h', 1850, + 'i', 1891, + 'k', 1837, + 'l', 1879, + 'm', 1839, + 'n', 1900, + 'o', 1907, + 'p', 1837, + 's', 1866, + 't', 1837, + 'u', 1919, + 'w', 1886, + 'x', 1899, + '{', 1526, + 0xb5, 1919, ); if (lookahead == '\t' || lookahead == ' ') SKIP(30); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 14: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1792, - '#', 2187, - '(', 1560, - '*', 1511, - '+', 1574, - '-', 1485, - '.', 1789, - '/', 1566, - '<', 1549, - '=', 1794, - '>', 1479, - 'B', 1652, - 'E', 1809, - 'G', 1809, - 'K', 1809, - 'M', 1809, - 'P', 1809, - 'T', 1809, - 'a', 1864, - 'b', 1655, - 'd', 1823, - 'e', 1807, - 'g', 1808, - 'h', 1821, - 'i', 1862, - 'k', 1808, - 'l', 1850, - 'm', 1810, - 'n', 1871, - 'o', 1878, - 'p', 1808, - 's', 1837, - 't', 1808, - 'u', 1890, - 'w', 1857, - 'x', 1870, - '{', 1497, - 0xb5, 1890, + '!', 1821, + '#', 2216, + '(', 1589, + '*', 1540, + '+', 1603, + '-', 1514, + '.', 1818, + '/', 1595, + '<', 1578, + '=', 1823, + '>', 1508, + 'B', 1681, + 'E', 1838, + 'G', 1838, + 'K', 1838, + 'M', 1838, + 'P', 1838, + 'T', 1838, + 'a', 1893, + 'b', 1684, + 'd', 1852, + 'e', 1836, + 'g', 1837, + 'h', 1850, + 'i', 1891, + 'k', 1837, + 'l', 1879, + 'm', 1839, + 'n', 1900, + 'o', 1907, + 'p', 1837, + 's', 1866, + 't', 1837, + 'u', 1919, + 'w', 1886, + 'x', 1899, + '{', 1526, + 0xb5, 1919, ); if (lookahead == '\t' || lookahead == ' ') SKIP(30); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 15: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1792, - '#', 2187, - '(', 1560, - '*', 1511, - '+', 1574, - '-', 1485, - '.', 1789, - '/', 1566, - '<', 1549, - '=', 1794, - '>', 1479, - 'E', 1818, - '_', 1812, - 'a', 1864, - 'b', 1851, - 'e', 1815, - 'h', 1822, - 'i', 1862, - 'l', 1850, - 'm', 1873, - 'n', 1872, - 'o', 1878, - 's', 1898, - 'x', 1870, - '{', 1497, + '!', 1821, + '#', 2216, + '(', 1589, + '*', 1540, + '+', 1603, + '-', 1514, + '.', 1818, + '/', 1595, + '<', 1578, + '=', 1823, + '>', 1508, + 'E', 1847, + '_', 1841, + 'a', 1893, + 'b', 1880, + 'e', 1844, + 'h', 1851, + 'i', 1891, + 'l', 1879, + 'm', 1902, + 'n', 1901, + 'o', 1907, + 's', 1927, + 'x', 1899, + '{', 1526, ); if (lookahead == '\t' || lookahead == ' ') SKIP(30); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 16: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1792, - '#', 2187, - '(', 1560, - '*', 1511, - '+', 1574, - '-', 1485, - '.', 1789, - '/', 1566, - '<', 1549, - '=', 1794, - '>', 1479, - 'E', 1818, - 'a', 1864, - 'b', 1851, - 'e', 1815, - 'h', 1822, - 'i', 1862, - 'l', 1850, - 'm', 1873, - 'n', 1872, - 'o', 1878, - 's', 1898, - 'x', 1870, - '{', 1497, + '!', 1821, + '#', 2216, + '(', 1589, + '*', 1540, + '+', 1603, + '-', 1514, + '.', 1818, + '/', 1595, + '<', 1578, + '=', 1823, + '>', 1508, + 'E', 1847, + 'a', 1893, + 'b', 1880, + 'e', 1844, + 'h', 1851, + 'i', 1891, + 'l', 1879, + 'm', 1902, + 'n', 1901, + 'o', 1907, + 's', 1927, + 'x', 1899, + '{', 1526, ); if (lookahead == '\t' || lookahead == ' ') SKIP(30); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 17: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1792, - '#', 2187, - '(', 1560, - '*', 1511, - '+', 1574, - '-', 1485, - '.', 1789, - '/', 1566, - '<', 1549, - '=', 1794, - '>', 1479, - 'a', 1864, - 'b', 1851, - 'e', 1865, - 'h', 1822, - 'i', 1862, - 'l', 1850, - 'm', 1873, - 'n', 1872, - 'o', 1878, - 's', 1898, - 'x', 1870, - '{', 1497, + '!', 1821, + '#', 2216, + '(', 1589, + '*', 1540, + '+', 1603, + '-', 1514, + '.', 1818, + '/', 1595, + '<', 1578, + '=', 1823, + '>', 1508, + 'a', 1893, + 'b', 1880, + 'e', 1894, + 'h', 1851, + 'i', 1891, + 'l', 1879, + 'm', 1902, + 'n', 1901, + 'o', 1907, + 's', 1927, + 'x', 1899, + '{', 1526, ); if (lookahead == '\t' || lookahead == ' ') SKIP(30); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 18: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1792, - '#', 2187, - '(', 1560, - '*', 1511, - '+', 1574, - '-', 1485, - '.', 1593, - '/', 1566, - '<', 1549, - '=', 1794, - '>', 1479, - 'E', 1818, - 'a', 1864, - 'b', 1851, - 'e', 1815, - 'h', 1822, - 'i', 1862, - 'l', 1850, - 'm', 1873, - 'n', 1872, - 'o', 1878, - 's', 1898, - 'x', 1870, - '{', 1497, + '!', 1821, + '#', 2216, + '(', 1589, + '*', 1540, + '+', 1603, + '-', 1514, + '.', 1622, + '/', 1595, + '<', 1578, + '=', 1823, + '>', 1508, + 'E', 1847, + 'a', 1893, + 'b', 1880, + 'e', 1844, + 'h', 1851, + 'i', 1891, + 'l', 1879, + 'm', 1902, + 'n', 1901, + 'o', 1907, + 's', 1927, + 'x', 1899, + '{', 1526, ); if (lookahead == '\t' || lookahead == ' ') SKIP(30); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 19: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1792, - '#', 2187, - '(', 1560, - '*', 1511, - '+', 1574, - '-', 1485, - '/', 1566, - '<', 1549, - '=', 1794, - '>', 1479, - 'E', 1818, - '_', 1812, - 'a', 1864, - 'b', 1851, - 'e', 1815, - 'h', 1822, - 'i', 1862, - 'l', 1850, - 'm', 1873, - 'n', 1872, - 'o', 1878, - 's', 1898, - 'x', 1870, - '{', 1497, + '!', 1821, + '#', 2216, + '(', 1589, + '*', 1540, + '+', 1603, + '-', 1514, + '/', 1595, + '<', 1578, + '=', 1823, + '>', 1508, + 'E', 1847, + '_', 1841, + 'a', 1893, + 'b', 1880, + 'e', 1844, + 'h', 1851, + 'i', 1891, + 'l', 1879, + 'm', 1902, + 'n', 1901, + 'o', 1907, + 's', 1927, + 'x', 1899, + '{', 1526, ); if (lookahead == '\t' || lookahead == ' ') SKIP(30); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 20: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1792, - '#', 2187, - '(', 1560, - '*', 1511, - '+', 1574, - '-', 1485, - '/', 1566, - '<', 1549, - '=', 1794, - '>', 1479, - 'E', 1818, - 'a', 1864, - 'b', 1851, - 'e', 1815, - 'h', 1822, - 'i', 1862, - 'l', 1850, - 'm', 1873, - 'n', 1872, - 'o', 1878, - 's', 1898, - 'x', 1870, - '{', 1497, + '!', 1821, + '#', 2216, + '(', 1589, + '*', 1540, + '+', 1603, + '-', 1514, + '/', 1595, + '<', 1578, + '=', 1823, + '>', 1508, + 'E', 1847, + 'a', 1893, + 'b', 1880, + 'e', 1844, + 'h', 1851, + 'i', 1891, + 'l', 1879, + 'm', 1902, + 'n', 1901, + 'o', 1907, + 's', 1927, + 'x', 1899, + '{', 1526, ); if (lookahead == '\t' || lookahead == ' ') SKIP(30); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 21: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1792, - '#', 2187, - '(', 1560, - '*', 1511, - '+', 1574, - '-', 1485, - '/', 1566, - '<', 1549, - '=', 1794, - '>', 1479, - 'a', 1864, - 'b', 1851, - 'e', 1865, - 'h', 1822, - 'i', 1862, - 'l', 1850, - 'm', 1873, - 'n', 1872, - 'o', 1878, - 's', 1898, - 'x', 1870, - '{', 1497, + '!', 1821, + '#', 2216, + '(', 1589, + '*', 1540, + '+', 1603, + '-', 1514, + '/', 1595, + '<', 1578, + '=', 1823, + '>', 1508, + 'a', 1893, + 'b', 1880, + 'e', 1894, + 'h', 1851, + 'i', 1891, + 'l', 1879, + 'm', 1902, + 'n', 1901, + 'o', 1907, + 's', 1927, + 'x', 1899, + '{', 1526, ); if (lookahead == '\t' || lookahead == ' ') SKIP(30); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 22: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, '!', 320, - '#', 2187, - '$', 1469, - '*', 1511, - '+', 1576, - '-', 1493, - '.', 336, - '/', 1566, - '<', 1549, + '#', 2216, + '$', 1498, + '*', 1540, + '+', 1605, + '-', 1522, + '.', 337, + '/', 1595, + '<', 1578, '=', 322, - '>', 1479, - 'a', 416, - 'b', 395, - 'e', 420, - 'h', 340, - 'i', 417, - 'l', 394, - 'm', 431, - 'n', 429, - 'o', 446, - 's', 480, - 'x', 426, - '{', 1497, + '>', 1508, + 'a', 424, + 'b', 400, + 'e', 428, + 'h', 341, + 'i', 425, + 'l', 399, + 'm', 440, + 'n', 438, + 'o', 456, + 's', 490, + 'x', 435, + '{', 1526, ); if (lookahead == '\t' || lookahead == ' ') SKIP(22); END_STATE(); case 23: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, '!', 320, - '#', 2187, - ')', 1467, - '*', 1511, - '+', 1574, - '-', 1485, - '/', 1566, - ';', 1450, - '<', 1549, + '#', 2216, + ')', 1496, + '*', 1540, + '+', 1603, + '-', 1514, + '/', 1595, + ';', 1479, + '<', 1578, '=', 322, - '>', 1479, - 'a', 416, - 'b', 395, + '>', 1508, + 'a', 424, + 'b', 400, 'e', 284, - 'h', 340, - 'i', 417, - 'l', 394, - 'm', 431, - 'n', 429, + 'h', 341, + 'i', 425, + 'l', 399, + 'm', 440, + 'n', 438, 'o', 279, - 's', 480, - 'x', 426, - '|', 1451, + 's', 490, + 'x', 435, + '|', 1480, ); if (lookahead == '\t' || lookahead == ' ') SKIP(23); END_STATE(); case 24: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, '!', 320, - '#', 2187, - ')', 1467, - '*', 1511, - '+', 1574, - '-', 1485, - '/', 1566, - ';', 1450, - '<', 1549, + '#', 2216, + ')', 1496, + '*', 1540, + '+', 1603, + '-', 1514, + '/', 1595, + ';', 1479, + '<', 1578, '=', 322, - '>', 1479, - 'a', 416, - 'b', 395, + '>', 1508, + 'a', 424, + 'b', 400, 'e', 287, - 'h', 340, - 'i', 417, - 'l', 394, - 'm', 431, - 'n', 429, + 'h', 341, + 'i', 425, + 'l', 399, + 'm', 440, + 'n', 438, 'o', 289, - 's', 480, - 'x', 426, - '|', 1451, + 's', 490, + 'x', 435, + '|', 1480, ); if (lookahead == '\t' || lookahead == ' ') SKIP(24); END_STATE(); case 25: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, '!', 320, - '#', 2187, - '*', 1511, - '+', 1574, - '-', 1485, - '/', 1566, - ':', 1712, - ';', 1450, - '<', 1549, + '#', 2216, + '*', 1540, + '+', 1603, + '-', 1514, + '/', 1595, + ':', 1741, + ';', 1479, + '<', 1578, '=', 322, - '>', 1479, - 'a', 416, - 'b', 395, + '>', 1508, + 'a', 424, + 'b', 400, 'e', 284, - 'h', 340, - 'i', 417, - 'l', 394, - 'm', 431, - 'n', 429, + 'h', 341, + 'i', 425, + 'l', 399, + 'm', 440, + 'n', 438, 'o', 279, - 's', 480, - 'x', 426, - '|', 1451, - '}', 1498, + 's', 490, + 'x', 435, + '|', 1480, + '}', 1527, ); if (lookahead == '\t' || lookahead == ' ') SKIP(25); END_STATE(); case 26: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, '!', 320, - '#', 2187, - '*', 1511, - '+', 1574, - '-', 1485, - '/', 1566, - ';', 1450, - '<', 1549, + '#', 2216, + '*', 1540, + '+', 1603, + '-', 1514, + '/', 1595, + ';', 1479, + '<', 1578, '=', 322, - '>', 1479, - 'a', 416, - 'b', 395, + '>', 1508, + 'a', 424, + 'b', 400, 'e', 284, - 'h', 340, - 'i', 417, - 'l', 394, - 'm', 431, - 'n', 429, + 'h', 341, + 'i', 425, + 'l', 399, + 'm', 440, + 'n', 438, 'o', 279, - 's', 480, - 'x', 426, - '|', 1451, - '}', 1498, + 's', 490, + 'x', 435, + '|', 1480, + '}', 1527, ); if (lookahead == '\t' || lookahead == ' ') SKIP(26); END_STATE(); case 27: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, '!', 320, - '#', 2187, - '*', 1511, - '+', 1574, - '-', 1485, - '/', 1566, - ';', 1450, - '<', 1549, + '#', 2216, + '*', 1540, + '+', 1603, + '-', 1514, + '/', 1595, + ';', 1479, + '<', 1578, '=', 322, - '>', 1479, - 'a', 416, - 'b', 395, + '>', 1508, + 'a', 424, + 'b', 400, 'e', 287, - 'h', 340, - 'i', 417, - 'l', 394, - 'm', 431, - 'n', 429, + 'h', 341, + 'i', 425, + 'l', 399, + 'm', 440, + 'n', 438, 'o', 289, - 's', 480, - 'x', 426, - '|', 1451, - '}', 1498, + 's', 490, + 'x', 435, + '|', 1480, + '}', 1527, ); if (lookahead == '\t' || lookahead == ' ') SKIP(27); END_STATE(); case 28: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, '!', 320, - '#', 2187, - '*', 1511, - '+', 1574, - '-', 1485, - '/', 1566, - '<', 1549, + '#', 2216, + '*', 1540, + '+', 1603, + '-', 1514, + '/', 1595, + '<', 1578, '=', 322, - '>', 1479, - 'a', 416, - 'b', 395, + '>', 1508, + 'a', 424, + 'b', 400, 'e', 284, - 'h', 340, - 'i', 417, - 'l', 394, - 'm', 431, - 'n', 429, + 'h', 341, + 'i', 425, + 'l', 399, + 'm', 440, + 'n', 438, 'o', 279, - 's', 480, - 'x', 426, - '|', 1451, + 's', 490, + 'x', 435, + '|', 1480, ); if (lookahead == '\t' || lookahead == ' ') SKIP(28); END_STATE(); case 29: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, '!', 320, - '#', 2187, - '*', 1511, - '+', 1574, - '-', 1485, - '/', 1566, - '<', 1549, + '#', 2216, + '*', 1540, + '+', 1603, + '-', 1514, + '/', 1595, + '<', 1578, '=', 322, - '>', 1479, - 'a', 416, - 'b', 395, + '>', 1508, + 'a', 424, + 'b', 400, 'e', 287, - 'h', 340, - 'i', 417, - 'l', 394, - 'm', 431, - 'n', 429, + 'h', 341, + 'i', 425, + 'l', 399, + 'm', 440, + 'n', 438, 'o', 289, - 's', 480, - 'x', 426, - '|', 1451, + 's', 490, + 'x', 435, + '|', 1480, ); if (lookahead == '\t' || lookahead == ' ') SKIP(29); END_STATE(); case 30: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, '!', 320, - '#', 2187, - '*', 1511, - '+', 1574, - '-', 1485, - '/', 1566, - '<', 1549, + '#', 2216, + '*', 1540, + '+', 1603, + '-', 1514, + '/', 1595, + '<', 1578, '=', 322, - '>', 1479, - 'a', 416, - 'b', 395, - 'e', 420, - 'h', 340, - 'i', 417, - 'l', 394, - 'm', 431, - 'n', 429, - 'o', 446, - 's', 480, - 'x', 426, - '{', 1497, + '>', 1508, + 'a', 424, + 'b', 400, + 'e', 428, + 'h', 341, + 'i', 425, + 'l', 399, + 'm', 440, + 'n', 438, + 'o', 456, + 's', 490, + 'x', 435, + '{', 1526, ); if (lookahead == '\t' || lookahead == ' ') SKIP(30); END_STATE(); case 31: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '"', 1684, - '#', 2187, - '$', 1470, - '\'', 1687, - '(', 1466, - ')', 1467, - '+', 701, - '-', 1490, - '.', 696, - '0', 1622, - ':', 1712, - ';', 1450, - '=', 1728, - '@', 1461, - 'I', 808, - 'N', 804, - '[', 1464, - '^', 1730, - '_', 715, - '`', 1691, - 'a', 753, - 'c', 720, - 'd', 730, - 'e', 758, - 'f', 722, - 'i', 714, - 'l', 738, - 'm', 724, - 'n', 768, - 't', 771, - 'u', 784, - 'w', 746, - '{', 1497, - '}', 1498, + '"', 1713, + '#', 2216, + '$', 1499, + '\'', 1716, + '(', 1495, + ')', 1496, + '+', 712, + '-', 1519, + '.', 707, + '0', 1651, + ':', 1741, + ';', 1479, + '=', 1757, + '@', 1490, + 'I', 824, + 'N', 820, + '[', 1493, + '^', 1759, + '_', 726, + '`', 1720, + 'a', 765, + 'c', 731, + 'd', 742, + 'e', 772, + 'f', 732, + 'i', 725, + 'l', 750, + 'm', 736, + 'n', 783, + 't', 786, + 'u', 799, + 'w', 758, + '{', 1526, + '}', 1527, ); if (lookahead == '\t' || lookahead == ' ') SKIP(32); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1638); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1667); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(823); + (lookahead < '{' || '}' < lookahead)) ADVANCE(839); END_STATE(); case 32: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '"', 1684, - '#', 2187, - '$', 1470, - '\'', 1687, - '(', 1466, - ')', 1467, - '+', 701, - '-', 1490, - '.', 696, - '0', 1622, - ':', 1712, - ';', 1450, - '@', 1461, - 'I', 808, - 'N', 804, - '[', 1464, - '^', 1730, - '_', 715, - '`', 1691, - 'a', 753, - 'c', 720, - 'd', 730, - 'e', 758, - 'f', 722, - 'i', 714, - 'l', 738, - 'm', 724, - 'n', 768, - 't', 771, - 'u', 784, - 'w', 746, - '{', 1497, - '}', 1498, + '"', 1713, + '#', 2216, + '$', 1499, + '\'', 1716, + '(', 1495, + ')', 1496, + '+', 712, + '-', 1519, + '.', 707, + '0', 1651, + ':', 1741, + ';', 1479, + '@', 1490, + 'I', 824, + 'N', 820, + '[', 1493, + '^', 1759, + '_', 726, + '`', 1720, + 'a', 765, + 'c', 731, + 'd', 742, + 'e', 772, + 'f', 732, + 'i', 725, + 'l', 750, + 'm', 736, + 'n', 783, + 't', 786, + 'u', 799, + 'w', 758, + '{', 1526, + '}', 1527, ); if (lookahead == '\t' || lookahead == ' ') SKIP(32); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1638); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1667); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(823); + (lookahead < '{' || '}' < lookahead)) ADVANCE(839); END_STATE(); case 33: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '"', 1684, - '#', 2187, - '$', 1470, - '\'', 1687, - '(', 1466, - ')', 1467, - '+', 1579, - '-', 1490, - '.', 697, - '0', 1622, - ':', 1462, - ';', 1450, - '<', 1140, + '"', 1713, + '#', 2216, + '$', 1499, + '\'', 1716, + '(', 1495, + ')', 1496, + '+', 1608, + '-', 1519, + '.', 708, + '0', 1651, + ':', 1491, + ';', 1479, + '<', 1164, '=', 323, - '>', 1478, - '@', 1461, - 'I', 808, - 'N', 804, - '[', 1464, - ']', 1465, - '^', 1730, - '_', 715, - '`', 1691, - 'a', 753, - 'c', 720, - 'd', 730, - 'e', 758, - 'f', 722, - 'i', 714, - 'l', 738, - 'm', 724, - 'n', 768, - 't', 771, - 'u', 784, - 'w', 746, - '{', 1497, - '|', 1451, - '}', 1498, + '>', 1507, + '@', 1490, + 'I', 824, + 'N', 820, + '[', 1493, + ']', 1494, + '^', 1759, + '_', 726, + '`', 1720, + 'a', 765, + 'c', 731, + 'd', 742, + 'e', 772, + 'f', 732, + 'i', 725, + 'l', 750, + 'm', 736, + 'n', 783, + 't', 786, + 'u', 799, + 'w', 758, + '{', 1526, + '|', 1480, + '}', 1527, ); if (lookahead == '\t' || lookahead == ' ') SKIP(34); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1638); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1667); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '+' || '.' < lookahead)) ADVANCE(823); + (lookahead < '+' || '.' < lookahead)) ADVANCE(839); END_STATE(); case 34: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '"', 1684, - '#', 2187, - '$', 1470, - '\'', 1687, - '(', 1466, - ')', 1467, - '+', 1579, - '-', 1490, - '.', 697, - '0', 1622, - ':', 1462, - ';', 1450, + '"', 1713, + '#', 2216, + '$', 1499, + '\'', 1716, + '(', 1495, + ')', 1496, + '+', 1608, + '-', 1519, + '.', 708, + '0', 1651, + ':', 1491, + ';', 1479, '=', 323, - '>', 1478, - '@', 1461, - 'I', 808, - 'N', 804, - '[', 1464, - ']', 1465, - '^', 1730, - '_', 715, - '`', 1691, - 'a', 753, - 'c', 720, - 'd', 730, - 'e', 758, - 'f', 722, - 'i', 714, - 'l', 738, - 'm', 724, - 'n', 768, - 't', 771, - 'u', 784, - 'w', 746, - '{', 1497, - '|', 1451, - '}', 1498, + '>', 1507, + '@', 1490, + 'I', 824, + 'N', 820, + '[', 1493, + ']', 1494, + '^', 1759, + '_', 726, + '`', 1720, + 'a', 765, + 'c', 731, + 'd', 742, + 'e', 772, + 'f', 732, + 'i', 725, + 'l', 750, + 'm', 736, + 'n', 783, + 't', 786, + 'u', 799, + 'w', 758, + '{', 1526, + '|', 1480, + '}', 1527, ); if (lookahead == '\t' || lookahead == ' ') SKIP(34); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1638); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1667); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '+' || '.' < lookahead) && - (lookahead < '0' || '>' < lookahead)) ADVANCE(823); + (lookahead < '0' || '>' < lookahead)) ADVANCE(839); END_STATE(); case 35: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '"', 1684, - '#', 2187, - '$', 1470, - '\'', 1687, - '(', 1466, - '+', 701, - '-', 1490, - '.', 696, - '0', 1622, - ';', 1450, - '=', 1728, - 'I', 808, - 'N', 804, - '[', 1464, - '^', 1730, - '_', 715, - '`', 1691, - 'a', 753, - 'c', 720, - 'd', 730, - 'e', 758, - 'f', 722, - 'i', 714, - 'l', 738, - 'm', 724, - 'n', 768, - 't', 771, - 'u', 784, - 'w', 750, - '{', 1497, - '\t', 1449, - ' ', 1449, + '"', 1713, + '#', 2216, + '$', 1499, + '\'', 1716, + '(', 1495, + '+', 712, + '-', 1519, + '.', 707, + '0', 1651, + ';', 1479, + '=', 1757, + 'I', 824, + 'N', 820, + '[', 1493, + '^', 1759, + '_', 726, + '`', 1720, + 'a', 765, + 'c', 731, + 'd', 742, + 'e', 772, + 'f', 732, + 'i', 725, + 'l', 750, + 'm', 736, + 'n', 783, + 't', 786, + 'u', 799, + 'w', 762, + '{', 1526, + '\t', 1478, + ' ', 1478, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1638); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(823); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1667); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(839); END_STATE(); case 36: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '"', 1684, - '#', 2187, - '$', 1470, - '\'', 1687, - '(', 1466, - '+', 701, - '-', 1490, - '.', 696, - '0', 1622, - '=', 672, - '>', 1478, - '@', 1480, - 'I', 808, - 'N', 804, - '[', 1464, - '^', 1730, - '_', 715, - '`', 1691, - 'a', 753, - 'c', 720, - 'd', 730, - 'e', 758, - 'f', 722, - 'i', 714, - 'l', 738, - 'm', 724, - 'n', 768, - 't', 771, - 'u', 784, - 'w', 750, - '{', 1497, + '"', 1713, + '#', 2216, + '$', 1499, + '\'', 1716, + '(', 1495, + '+', 712, + '-', 1519, + '.', 707, + '0', 1651, + '=', 683, + '>', 1507, + '@', 1509, + 'I', 824, + 'N', 820, + '[', 1493, + '^', 1759, + '_', 726, + '`', 1720, + 'a', 765, + 'c', 731, + 'd', 742, + 'e', 772, + 'f', 732, + 'i', 725, + 'l', 750, + 'm', 736, + 'n', 783, + 't', 786, + 'u', 799, + 'w', 762, + '{', 1526, ); if (lookahead == '\t' || lookahead == ' ') SKIP(37); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1638); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1667); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(823); + (lookahead < '{' || '}' < lookahead)) ADVANCE(839); END_STATE(); case 37: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '"', 1684, - '#', 2187, - '$', 1470, - '\'', 1687, - '(', 1466, - '+', 701, - '-', 1490, - '.', 696, - '0', 1622, - '=', 672, - '>', 1478, - 'I', 808, - 'N', 804, - '[', 1464, - '^', 1730, - '_', 715, - '`', 1691, - 'a', 753, - 'c', 720, - 'd', 730, - 'e', 758, - 'f', 722, - 'i', 714, - 'l', 738, - 'm', 724, - 'n', 768, - 't', 771, - 'u', 784, - 'w', 750, - '{', 1497, + '"', 1713, + '#', 2216, + '$', 1499, + '\'', 1716, + '(', 1495, + '+', 712, + '-', 1519, + '.', 707, + '0', 1651, + '=', 683, + '>', 1507, + 'I', 824, + 'N', 820, + '[', 1493, + '^', 1759, + '_', 726, + '`', 1720, + 'a', 765, + 'c', 731, + 'd', 742, + 'e', 772, + 'f', 732, + 'i', 725, + 'l', 750, + 'm', 736, + 'n', 783, + 't', 786, + 'u', 799, + 'w', 762, + '{', 1526, ); if (lookahead == '\t' || lookahead == ' ') SKIP(37); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1638); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(823); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1667); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(839); END_STATE(); case 38: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '"', 1684, - '#', 2187, - '$', 1470, - '\'', 1687, - '(', 1466, - '+', 701, + '"', 1713, + '#', 2216, + '$', 1499, + '\'', 1716, + '(', 1495, + '+', 712, '-', 299, - '.', 717, - '=', 1728, - 'I', 808, - 'N', 804, - '[', 1464, - ']', 1465, - '_', 715, - '`', 1691, - 'a', 753, - 'c', 720, - 'd', 730, - 'e', 758, - 'f', 722, - 'i', 714, - 'l', 738, - 'm', 724, - 'n', 797, - 't', 771, - 'u', 784, - 'w', 750, - '{', 1497, + '.', 728, + '=', 1757, + 'I', 824, + 'N', 820, + '[', 1493, + ']', 1494, + '_', 726, + '`', 1720, + 'a', 765, + 'c', 731, + 'd', 742, + 'e', 772, + 'f', 732, + 'i', 725, + 'l', 750, + 'm', 736, + 'n', 812, + 't', 786, + 'u', 799, + 'w', 762, + '{', 1526, ); if (lookahead == '\t' || lookahead == ' ') SKIP(39); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(823); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(839); END_STATE(); case 39: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '"', 1684, - '#', 2187, - '$', 1470, - '\'', 1687, - '(', 1466, - '+', 701, + '"', 1713, + '#', 2216, + '$', 1499, + '\'', 1716, + '(', 1495, + '+', 712, '-', 299, - '.', 717, - 'I', 808, - 'N', 804, - '[', 1464, - ']', 1465, - '_', 715, - '`', 1691, - 'a', 753, - 'c', 720, - 'd', 730, - 'e', 758, - 'f', 722, - 'i', 714, - 'l', 738, - 'm', 724, - 'n', 797, - 't', 771, - 'u', 784, - 'w', 750, - '{', 1497, + '.', 728, + 'I', 824, + 'N', 820, + '[', 1493, + ']', 1494, + '_', 726, + '`', 1720, + 'a', 765, + 'c', 731, + 'd', 742, + 'e', 772, + 'f', 732, + 'i', 725, + 'l', 750, + 'm', 736, + 'n', 812, + 't', 786, + 'u', 799, + 'w', 762, + '{', 1526, ); if (lookahead == '\t' || lookahead == ' ') SKIP(39); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(823); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(839); END_STATE(); case 40: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '"', 1684, - '#', 2187, - '$', 1470, - '\'', 1687, - '(', 1466, + '"', 1713, + '#', 2216, + '$', 1499, + '\'', 1716, + '(', 1495, '+', 309, - '-', 1490, + '-', 1519, '.', 310, - '0', 1625, - ':', 1712, - 'N', 527, - '[', 1464, - '_', 338, - '`', 1691, - 'f', 343, - 'n', 437, - 't', 451, - '{', 1497, + '0', 1654, + ':', 1741, + 'N', 538, + '[', 1493, + '_', 339, + '`', 1720, + 'f', 348, + 'n', 446, + 't', 461, + '{', 1526, ); if (lookahead == '\t' || lookahead == ' ') SKIP(40); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(536); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1641); + lookahead == 'i') ADVANCE(547); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1670); END_STATE(); case 41: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '"', 1684, - '#', 2187, - '$', 1470, - '\'', 1687, - '(', 1466, - '+', 1579, - '-', 1490, - '.', 700, - '0', 1627, - 'I', 808, - 'N', 804, - '_', 715, - '`', 1691, - 'a', 753, - 'c', 720, - 'd', 730, - 'e', 758, - 'f', 722, - 'i', 714, - 'l', 738, - 'm', 724, - 'n', 797, - 't', 771, - 'u', 784, - 'w', 750, - '}', 1498, + '"', 1713, + '#', 2216, + '$', 1499, + '\'', 1716, + '(', 1495, + '+', 1608, + '-', 1519, + '.', 711, + '0', 1656, + 'I', 824, + 'N', 820, + '_', 726, + '`', 1720, + 'a', 765, + 'c', 731, + 'd', 742, + 'e', 772, + 'f', 732, + 'i', 725, + 'l', 750, + 'm', 736, + 'n', 812, + 't', 786, + 'u', 799, + 'w', 762, + '}', 1527, ); if (lookahead == '\t' || lookahead == ' ') SKIP(41); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1643); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(823); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1672); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(839); END_STATE(); case 42: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '"', 1684, - '#', 2187, - '$', 1470, - '\'', 1687, - '(', 1466, - '+', 1999, - '-', 1490, - '.', 1997, - '0', 1623, - 'N', 2046, - '[', 1464, - '_', 2011, - '`', 1691, - 'f', 2014, - 'n', 2026, - 't', 2029, - '{', 1497, + '"', 1713, + '#', 2216, + '$', 1499, + '\'', 1716, + '(', 1495, + '+', 2028, + '-', 1519, + '.', 2026, + '0', 1652, + 'N', 2075, + '[', 1493, + '_', 2040, + '`', 1720, + 'f', 2043, + 'n', 2055, + 't', 2058, + '{', 1526, ); if (lookahead == '\t' || lookahead == ' ') SKIP(42); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2050); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); + lookahead == 'i') ADVANCE(2079); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1668); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2069); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2098); END_STATE(); case 43: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '"', 1684, - '#', 2187, - '$', 1470, - '\'', 1687, - '(', 1466, - '+', 1999, - '-', 1487, - '.', 1998, - '0', 1623, - ':', 1712, - ';', 1450, - 'N', 2046, - '[', 1464, - '_', 2011, - '`', 1691, - 'e', 1988, - 'f', 2014, - 'n', 2042, - 'o', 1989, - 't', 2029, - '{', 1497, - '|', 1451, - '}', 1498, - '\t', 1448, - ' ', 1448, - 'I', 2050, - 'i', 2050, + '"', 1713, + '#', 2216, + '$', 1499, + '\'', 1716, + '(', 1495, + '+', 2028, + '-', 1516, + '.', 2027, + '0', 1652, + ':', 1741, + ';', 1479, + 'N', 2075, + '[', 1493, + '_', 2040, + '`', 1720, + 'e', 2017, + 'f', 2043, + 'n', 2071, + 'o', 2018, + 't', 2058, + '{', 1526, + '|', 1480, + '}', 1527, + '\t', 1477, + ' ', 1477, + 'I', 2079, + 'i', 2079, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1668); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ']') ADVANCE(2069); + lookahead != ']') ADVANCE(2098); END_STATE(); case 44: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '"', 1684, - '#', 2187, - '$', 1470, - '\'', 1687, - '(', 1466, - '+', 1999, - '-', 1487, - '.', 1998, - '0', 1623, - ';', 1450, - 'N', 2046, - '[', 1464, - '_', 2011, - '`', 1691, - 'e', 1992, - 'f', 2014, - 'n', 2042, - 'o', 1993, - 't', 2029, - '{', 1497, - '\t', 1449, - ' ', 1449, - 'I', 2050, - 'i', 2050, + '"', 1713, + '#', 2216, + '$', 1499, + '\'', 1716, + '(', 1495, + '+', 2028, + '-', 1516, + '.', 2027, + '0', 1652, + ';', 1479, + 'N', 2075, + '[', 1493, + '_', 2040, + '`', 1720, + 'e', 2021, + 'f', 2043, + 'n', 2071, + 'o', 2022, + 't', 2058, + '{', 1526, + '\t', 1478, + ' ', 1478, + 'I', 2079, + 'i', 2079, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1668); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2069); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2098); END_STATE(); case 45: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '"', 1684, - '#', 2187, - '$', 1470, - '\'', 1687, - '(', 1466, - '+', 2081, - ',', 1468, - '-', 2080, - '.', 2082, - '0', 1624, - 'N', 2099, - '[', 1464, - ']', 1465, - '_', 2086, - '`', 1691, - 'f', 2089, - 'n', 2098, - 't', 2095, - '{', 1497, + '"', 1713, + '#', 2216, + '$', 1499, + '\'', 1716, + '(', 1495, + '+', 2110, + ',', 1497, + '-', 2109, + '.', 2111, + '0', 1653, + 'N', 2128, + '[', 1493, + ']', 1494, + '_', 2115, + '`', 1720, + 'f', 2118, + 'n', 2127, + 't', 2124, + '{', 1526, ); if (lookahead == '\t' || lookahead == ' ') SKIP(45); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2105); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); + lookahead == 'i') ADVANCE(2134); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1669); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2127); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2156); END_STATE(); case 46: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '"', 1684, - '#', 2187, - '$', 1470, - '\'', 1687, - '(', 1466, - '+', 2138, - '-', 2137, - '.', 2136, - '0', 1626, - 'N', 2153, - '[', 1464, - '_', 2140, - '`', 1691, - 'f', 2143, - 'n', 2152, - 't', 2149, - '{', 1497, + '"', 1713, + '#', 2216, + '$', 1499, + '\'', 1716, + '(', 1495, + '+', 2167, + '-', 2166, + '.', 2165, + '0', 1655, + 'N', 2182, + '[', 1493, + '_', 2169, + '`', 1720, + 'f', 2172, + 'n', 2181, + 't', 2178, + '{', 1526, ); if (lookahead == '\t' || lookahead == ' ') SKIP(46); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2159); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1642); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2173); + lookahead == 'i') ADVANCE(2188); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1671); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2202); END_STATE(); case 47: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '"', 1684, - '#', 2187, - '$', 1469, - '\'', 1687, - '(', 1466, - '+', 1999, + '"', 1713, + '#', 2216, + '$', 1498, + '\'', 1716, + '(', 1495, + '+', 2028, '-', 298, - '.', 1997, - '0', 1623, - 'N', 2046, - '[', 1464, - '_', 1500, - '`', 1691, - 'f', 2014, - 'n', 2042, - 't', 2029, - '{', 1497, - '}', 1498, + '.', 2026, + '0', 1652, + 'N', 2075, + '[', 1493, + '_', 1529, + '`', 1720, + 'f', 2043, + 'n', 2071, + 't', 2058, + '{', 1526, + '}', 1527, ); if (lookahead == '\t' || lookahead == ' ') SKIP(47); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2050); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); + lookahead == 'i') ADVANCE(2079); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1668); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2069); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2098); END_STATE(); case 48: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '"', 1684, - '#', 2187, - '$', 1469, - '\'', 1687, - '(', 1466, - '+', 2081, - ',', 1468, - '-', 2080, - '.', 2079, - '0', 1624, - 'N', 2099, - '[', 1464, - ']', 1465, - '_', 2086, - '`', 1691, - 'f', 2089, - 'n', 2098, - 't', 2095, - '{', 1497, + '"', 1713, + '#', 2216, + '$', 1498, + '\'', 1716, + '(', 1495, + '+', 2110, + ',', 1497, + '-', 2109, + '.', 2108, + '0', 1653, + 'N', 2128, + '[', 1493, + ']', 1494, + '_', 2115, + '`', 1720, + 'f', 2118, + 'n', 2127, + 't', 2124, + '{', 1526, ); if (lookahead == '\t' || lookahead == ' ') SKIP(48); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2105); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); + lookahead == 'i') ADVANCE(2134); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1669); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2127); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2156); END_STATE(); case 49: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '"', 1684, - '#', 2187, - '$', 1469, - '\'', 1687, - '(', 1466, - '-', 1485, - '`', 1691, - 'f', 1514, - 'n', 1518, - 't', 1519, - '{', 1497, + '"', 1713, + '#', 2216, + '$', 1498, + '\'', 1716, + '(', 1495, + '-', 1514, + '`', 1720, + 'f', 1543, + 'n', 1547, + 't', 1548, + '{', 1526, ); if (lookahead == '\t' || lookahead == ' ') SKIP(49); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1524); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1553); END_STATE(); case 50: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '"', 1684, - '#', 2187, - '\'', 1687, - '+', 2138, - '-', 2137, - '.', 2136, - '>', 1478, - 'N', 2153, - '_', 2140, - '`', 1691, - 'f', 2143, - 'n', 2152, - 't', 2149, + '"', 1713, + '#', 2216, + '\'', 1716, + '+', 2167, + '-', 2166, + '.', 2165, + '>', 1507, + 'N', 2182, + '_', 2169, + '`', 1720, + 'f', 2172, + 'n', 2181, + 't', 2178, ); if (lookahead == '\t' || lookahead == ' ') SKIP(50); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2159); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2173); + lookahead == 'i') ADVANCE(2188); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2202); END_STATE(); case 51: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '"', 1684, - '#', 2190, - '$', 1471, - '\'', 1687, - '(', 1466, - '+', 847, - '-', 1491, - '.', 848, - '0', 863, - ':', 1712, - 'N', 1019, - '[', 1464, - '_', 865, - '`', 1691, - 'f', 873, - 'n', 943, - 't', 958, - '{', 1497, + '"', 1713, + '#', 2219, + '$', 1500, + '\'', 1716, + '(', 1495, + '+', 863, + '-', 1520, + '.', 864, + '0', 879, + ':', 1741, + 'N', 1040, + '[', 1493, + '_', 881, + '`', 1720, + 'f', 889, + 'n', 963, + 't', 978, + '{', 1526, ); if (lookahead == '\t' || lookahead == ' ') SKIP(40); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1024); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(868); + lookahead == 'i') ADVANCE(1045); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(884); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1045); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1066); END_STATE(); case 52: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '$', 1469, - '(', 1560, - ')', 1467, - '+', 1960, - ',', 1468, - '-', 1488, - '.', 1599, - ':', 1462, - '=', 672, - ']', 1465, - '_', 1344, - '|', 1451, + '#', 2216, + '$', 1498, + '(', 1589, + ')', 1496, + '+', 1989, + ',', 1497, + '-', 1517, + '.', 1628, + ':', 1491, + '=', 683, + ']', 1494, + '_', 1368, + '|', 1480, ); if (lookahead == '\t' || lookahead == ' ') SKIP(74); @@ -12685,27 +13026,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1985); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1372); + lookahead == '^') ADVANCE(2014); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1638); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1396); END_STATE(); case 53: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '$', 1469, - '(', 1560, - ')', 1467, - '+', 1960, - ',', 1468, - '-', 1488, - '.', 1961, - ':', 1462, - '=', 672, - ']', 1465, - '_', 1344, - '|', 1451, + '#', 2216, + '$', 1498, + '(', 1589, + ')', 1496, + '+', 1989, + ',', 1497, + '-', 1517, + '.', 1990, + ':', 1491, + '=', 683, + ']', 1494, + '_', 1368, + '|', 1480, ); if (lookahead == '\t' || lookahead == ' ') SKIP(74); @@ -12715,49 +13056,49 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1985); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1372); + lookahead == '^') ADVANCE(2014); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1638); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1396); END_STATE(); case 54: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '$', 1469, - '(', 1560, - ')', 1467, - ',', 1468, - '-', 1486, - '.', 1600, - ':', 1462, - '=', 672, - 'E', 1334, - 'G', 1342, - 'K', 1342, - 'M', 1342, - 'P', 1342, - 'T', 1342, - ']', 1465, - 'd', 1347, - 'e', 1333, - 'g', 1341, - 'h', 1365, - 'k', 1341, - 'm', 1343, - 'n', 1367, - 'p', 1341, - 's', 1352, - 't', 1341, - 'u', 1367, - 'w', 1353, - '|', 1451, - 0xb5, 1367, + '#', 2216, + '$', 1498, + '(', 1589, + ')', 1496, + ',', 1497, + '-', 1515, + '.', 1629, + ':', 1491, + '=', 683, + 'E', 1358, + 'G', 1366, + 'K', 1366, + 'M', 1366, + 'P', 1366, + 'T', 1366, + ']', 1494, + 'd', 1371, + 'e', 1357, + 'g', 1365, + 'h', 1389, + 'k', 1365, + 'm', 1367, + 'n', 1391, + 'p', 1365, + 's', 1376, + 't', 1365, + 'u', 1391, + 'w', 1377, + '|', 1480, + 0xb5, 1391, ); if (lookahead == '\t' || lookahead == ' ') SKIP(76); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); + lookahead == 'b') ADVANCE(1685); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12765,29 +13106,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1985); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1372); + lookahead == '^') ADVANCE(2014); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1396); END_STATE(); case 55: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '$', 1469, - '(', 1560, - ')', 1467, - ',', 1468, - '-', 1486, - '.', 1600, - ':', 1462, - '=', 672, - ']', 1465, - '|', 1451, + '#', 2216, + '$', 1498, + '(', 1589, + ')', 1496, + ',', 1497, + '-', 1515, + '.', 1629, + ':', 1491, + '=', 683, + ']', 1494, + '|', 1480, ); if (lookahead == '\t' || lookahead == ' ') SKIP(76); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1335); + lookahead == 'e') ADVANCE(1359); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12795,49 +13136,49 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1985); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1372); + lookahead == '^') ADVANCE(2014); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1396); END_STATE(); case 56: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '$', 1469, - '(', 1560, - ')', 1467, - ',', 1468, - '-', 1486, - '.', 1964, - ':', 1462, - '=', 672, - 'E', 1334, - 'G', 1342, - 'K', 1342, - 'M', 1342, - 'P', 1342, - 'T', 1342, - ']', 1465, - '_', 1344, - 'd', 1347, - 'e', 1333, - 'g', 1341, - 'h', 1365, - 'k', 1341, - 'm', 1343, - 'n', 1367, - 'p', 1341, - 's', 1352, - 't', 1341, - 'u', 1367, - 'w', 1353, - '|', 1451, - 0xb5, 1367, + '#', 2216, + '$', 1498, + '(', 1589, + ')', 1496, + ',', 1497, + '-', 1515, + '.', 1993, + ':', 1491, + '=', 683, + 'E', 1358, + 'G', 1366, + 'K', 1366, + 'M', 1366, + 'P', 1366, + 'T', 1366, + ']', 1494, + '_', 1368, + 'd', 1371, + 'e', 1357, + 'g', 1365, + 'h', 1389, + 'k', 1365, + 'm', 1367, + 'n', 1391, + 'p', 1365, + 's', 1376, + 't', 1365, + 'u', 1391, + 'w', 1377, + '|', 1480, + 0xb5, 1391, ); if (lookahead == '\t' || lookahead == ' ') SKIP(76); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); + lookahead == 'b') ADVANCE(1685); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12845,49 +13186,49 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1985); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1372); + lookahead == '^') ADVANCE(2014); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1638); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1396); END_STATE(); case 57: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '$', 1469, - '(', 1560, - ')', 1467, - ',', 1468, - '-', 1486, - '.', 1964, - ':', 1462, - '=', 672, - 'E', 1334, - 'G', 1342, - 'K', 1342, - 'M', 1342, - 'P', 1342, - 'T', 1342, - ']', 1465, - 'd', 1347, - 'e', 1333, - 'g', 1341, - 'h', 1365, - 'k', 1341, - 'm', 1343, - 'n', 1367, - 'p', 1341, - 's', 1352, - 't', 1341, - 'u', 1367, - 'w', 1353, - '|', 1451, - 0xb5, 1367, + '#', 2216, + '$', 1498, + '(', 1589, + ')', 1496, + ',', 1497, + '-', 1515, + '.', 1993, + ':', 1491, + '=', 683, + 'E', 1358, + 'G', 1366, + 'K', 1366, + 'M', 1366, + 'P', 1366, + 'T', 1366, + ']', 1494, + 'd', 1371, + 'e', 1357, + 'g', 1365, + 'h', 1389, + 'k', 1365, + 'm', 1367, + 'n', 1391, + 'p', 1365, + 's', 1376, + 't', 1365, + 'u', 1391, + 'w', 1377, + '|', 1480, + 0xb5, 1391, ); if (lookahead == '\t' || lookahead == ' ') SKIP(76); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); + lookahead == 'b') ADVANCE(1685); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12895,48 +13236,48 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1985); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1372); + lookahead == '^') ADVANCE(2014); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1396); END_STATE(); case 58: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '$', 1469, - '(', 1560, - ')', 1467, - ',', 1468, - '-', 1486, - '.', 1964, - ':', 1462, - '=', 672, - 'E', 1342, - 'G', 1342, - 'K', 1342, - 'M', 1342, - 'P', 1342, - 'T', 1342, - ']', 1465, - 'd', 1347, - 'e', 1341, - 'g', 1341, - 'h', 1365, - 'k', 1341, - 'm', 1343, - 'n', 1367, - 'p', 1341, - 's', 1352, - 't', 1341, - 'u', 1367, - 'w', 1353, - '|', 1451, - 0xb5, 1367, + '#', 2216, + '$', 1498, + '(', 1589, + ')', 1496, + ',', 1497, + '-', 1515, + '.', 1993, + ':', 1491, + '=', 683, + 'E', 1366, + 'G', 1366, + 'K', 1366, + 'M', 1366, + 'P', 1366, + 'T', 1366, + ']', 1494, + 'd', 1371, + 'e', 1365, + 'g', 1365, + 'h', 1389, + 'k', 1365, + 'm', 1367, + 'n', 1391, + 'p', 1365, + 's', 1376, + 't', 1365, + 'u', 1391, + 'w', 1377, + '|', 1480, + 0xb5, 1391, ); if (lookahead == '\t' || lookahead == ' ') SKIP(76); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); + lookahead == 'b') ADVANCE(1685); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12944,30 +13285,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1985); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1372); + lookahead == '^') ADVANCE(2014); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1396); END_STATE(); case 59: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '$', 1469, - '(', 1560, - ')', 1467, - ',', 1468, - '-', 1486, - '.', 1964, - ':', 1462, - '=', 672, - ']', 1465, - '_', 1344, - '|', 1451, + '#', 2216, + '$', 1498, + '(', 1589, + ')', 1496, + ',', 1497, + '-', 1515, + '.', 1993, + ':', 1491, + '=', 683, + ']', 1494, + '_', 1368, + '|', 1480, ); if (lookahead == '\t' || lookahead == ' ') SKIP(76); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1335); + lookahead == 'e') ADVANCE(1359); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12975,30 +13316,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1985); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1372); + lookahead == '^') ADVANCE(2014); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1638); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1396); END_STATE(); case 60: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '$', 1469, - '(', 1560, - ')', 1467, - ',', 1468, - '-', 1486, - '.', 1964, - ':', 1462, - '=', 672, - ']', 1465, - '|', 1451, + '#', 2216, + '$', 1498, + '(', 1589, + ')', 1496, + ',', 1497, + '-', 1515, + '.', 1993, + ':', 1491, + '=', 683, + ']', 1494, + '|', 1480, ); if (lookahead == '\t' || lookahead == ' ') SKIP(76); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1335); + lookahead == 'e') ADVANCE(1359); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -13006,24 +13347,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1985); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1372); + lookahead == '^') ADVANCE(2014); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1396); END_STATE(); case 61: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '$', 1469, - '(', 1560, - ')', 1467, - ',', 1468, - '-', 1486, - '.', 1964, - ':', 1462, - '=', 672, - ']', 1465, - '|', 1451, + '#', 2216, + '$', 1498, + '(', 1589, + ')', 1496, + ',', 1497, + '-', 1515, + '.', 1993, + ':', 1491, + '=', 683, + ']', 1494, + '|', 1480, ); if (lookahead == '\t' || lookahead == ' ') SKIP(76); @@ -13034,29 +13375,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1985); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1372); + lookahead == '^') ADVANCE(2014); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1396); END_STATE(); case 62: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '$', 1469, - '(', 1560, - ')', 1467, - ',', 1468, - '-', 1486, - '.', 1598, - ':', 1462, - '=', 672, - ']', 1465, - '|', 1451, + '#', 2216, + '$', 1498, + '(', 1589, + ')', 1496, + ',', 1497, + '-', 1515, + '.', 1627, + ':', 1491, + '=', 683, + ']', 1494, + '|', 1480, ); if (lookahead == '\t' || lookahead == ' ') SKIP(76); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1335); + lookahead == 'e') ADVANCE(1359); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -13064,30 +13405,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1985); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1372); + lookahead == '^') ADVANCE(2014); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1396); END_STATE(); case 63: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '$', 1469, - '(', 1560, - ')', 1467, - ',', 1468, - '-', 1486, - '.', 1962, - ':', 1462, - '=', 672, - ']', 1465, - '_', 1344, - '|', 1451, + '#', 2216, + '$', 1498, + '(', 1589, + ')', 1496, + ',', 1497, + '-', 1515, + '.', 1991, + ':', 1491, + '=', 683, + ']', 1494, + '_', 1368, + '|', 1480, ); if (lookahead == '\t' || lookahead == ' ') SKIP(76); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1335); + lookahead == 'e') ADVANCE(1359); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -13095,30 +13436,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1985); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1372); + lookahead == '^') ADVANCE(2014); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1638); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1396); END_STATE(); case 64: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '$', 1469, - '(', 1560, - ')', 1467, - ',', 1468, - '-', 1486, - '.', 1962, - ':', 1462, - '=', 672, - ']', 1465, - '|', 1451, + '#', 2216, + '$', 1498, + '(', 1589, + ')', 1496, + ',', 1497, + '-', 1515, + '.', 1991, + ':', 1491, + '=', 683, + ']', 1494, + '|', 1480, ); if (lookahead == '\t' || lookahead == ' ') SKIP(76); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1335); + lookahead == 'e') ADVANCE(1359); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -13126,24 +13467,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1985); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1372); + lookahead == '^') ADVANCE(2014); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1396); END_STATE(); case 65: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '$', 1469, - '(', 1560, - ')', 1467, - ',', 1468, - '-', 1486, - '.', 1962, - ':', 1462, - '=', 672, - ']', 1465, - '|', 1451, + '#', 2216, + '$', 1498, + '(', 1589, + ')', 1496, + ',', 1497, + '-', 1515, + '.', 1991, + ':', 1491, + '=', 683, + ']', 1494, + '|', 1480, ); if (lookahead == '\t' || lookahead == ' ') SKIP(76); @@ -13154,160 +13495,160 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1985); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1372); + lookahead == '^') ADVANCE(2014); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1396); END_STATE(); case 66: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '$', 1469, - '(', 1560, - '.', 1603, - ';', 1450, - '_', 1812, - '\t', 1449, - ' ', 1449, - '+', 1790, - '-', 1790, + '#', 2216, + '$', 1498, + '(', 1589, + '.', 1632, + ';', 1479, + '_', 1841, + '\t', 1478, + ' ', 1478, + '+', 1819, + '-', 1819, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1933); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1962); END_STATE(); case 67: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '$', 1469, - '(', 1560, - '.', 1603, - '=', 1795, - '_', 1812, - 'i', 1844, - '|', 1451, + '#', 2216, + '$', 1498, + '(', 1589, + '.', 1632, + '=', 1824, + '_', 1841, + 'i', 1873, + '|', 1480, ); if (lookahead == '\t' || lookahead == ' ') SKIP(77); if (lookahead == '+' || - lookahead == '-') ADVANCE(1790); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1933); + lookahead == '-') ADVANCE(1819); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1962); END_STATE(); case 68: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '$', 1469, - '(', 1560, - '.', 1603, - '=', 1795, - '_', 1812, - '|', 1451, + '#', 2216, + '$', 1498, + '(', 1589, + '.', 1632, + '=', 1824, + '_', 1841, + '|', 1480, ); if (lookahead == '\t' || lookahead == ' ') SKIP(78); if (lookahead == '+' || - lookahead == '-') ADVANCE(1790); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1933); + lookahead == '-') ADVANCE(1819); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1962); END_STATE(); case 69: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '$', 1469, - '(', 1560, - '.', 1814, - ';', 1450, - '_', 1812, - '\t', 1449, - ' ', 1449, - '+', 1790, - '-', 1790, + '#', 2216, + '$', 1498, + '(', 1589, + '.', 1843, + ';', 1479, + '_', 1841, + '\t', 1478, + ' ', 1478, + '+', 1819, + '-', 1819, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1933); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1962); END_STATE(); case 70: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '$', 1469, - '(', 1560, - '.', 1814, - '=', 1795, - '_', 1812, - 'i', 1844, - '|', 1451, + '#', 2216, + '$', 1498, + '(', 1589, + '.', 1843, + '=', 1824, + '_', 1841, + 'i', 1873, + '|', 1480, ); if (lookahead == '\t' || lookahead == ' ') SKIP(77); if (lookahead == '+' || - lookahead == '-') ADVANCE(1790); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1933); + lookahead == '-') ADVANCE(1819); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1962); END_STATE(); case 71: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '$', 1469, - '(', 1560, - '.', 1814, - '=', 1795, - '_', 1812, - '|', 1451, + '#', 2216, + '$', 1498, + '(', 1589, + '.', 1843, + '=', 1824, + '_', 1841, + '|', 1480, ); if (lookahead == '\t' || lookahead == ' ') SKIP(78); if (lookahead == '+' || - lookahead == '-') ADVANCE(1790); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1933); + lookahead == '-') ADVANCE(1819); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1962); END_STATE(); case 72: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '$', 1469, - '(', 1466, - ')', 1467, - ',', 1468, - '-', 1486, + '#', 2216, + '$', 1498, + '(', 1495, + ')', 1496, + ',', 1497, + '-', 1515, '.', 312, - ':', 1462, - '=', 672, - '[', 1464, - ']', 1465, - '|', 1451, + ':', 1491, + '=', 683, + '[', 1493, + ']', 1494, + '|', 1480, ); if (lookahead == '\t' || lookahead == ' ') SKIP(72); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1372); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1396); END_STATE(); case 73: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '$', 1469, - '(', 1466, - ')', 1467, - ',', 1468, - '-', 1486, - '.', 1962, - ':', 1462, - '=', 672, - '[', 1664, - ']', 1465, - '|', 1451, + '#', 2216, + '$', 1498, + '(', 1495, + ')', 1496, + ',', 1497, + '-', 1515, + '.', 1991, + ':', 1491, + '=', 683, + '[', 1693, + ']', 1494, + '|', 1480, ); if (lookahead == '\t' || lookahead == ' ') SKIP(72); @@ -13318,84 +13659,84 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1985); + lookahead == '^') ADVANCE(2014); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '$' < lookahead) && (lookahead < '&' || '.' < lookahead) && (lookahead < ':' || '@' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1372); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1396); END_STATE(); case 74: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '$', 1469, - ')', 1467, + '#', 2216, + '$', 1498, + ')', 1496, '+', 314, - ',', 1468, - '-', 1489, + ',', 1497, + '-', 1518, '.', 313, - ':', 1462, - '=', 672, - ']', 1465, - '|', 1451, + ':', 1491, + '=', 683, + ']', 1494, + '|', 1480, ); if (lookahead == '\t' || lookahead == ' ') SKIP(74); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1372); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1396); END_STATE(); case 75: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '$', 1469, - ')', 1467, - ',', 1468, - '-', 1486, + '#', 2216, + '$', 1498, + ')', 1496, + ',', 1497, + '-', 1515, '.', 312, - ':', 1462, - '=', 672, - '?', 1482, - ']', 1465, - '|', 1451, + ':', 1491, + '=', 683, + '?', 1511, + ']', 1494, + '|', 1480, ); if (lookahead == '\t' || lookahead == ' ') SKIP(76); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1372); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1396); END_STATE(); case 76: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '$', 1469, - ')', 1467, - ',', 1468, - '-', 1486, + '#', 2216, + '$', 1498, + ')', 1496, + ',', 1497, + '-', 1515, '.', 312, - ':', 1462, - '=', 672, - ']', 1465, - '|', 1451, + ':', 1491, + '=', 683, + ']', 1494, + '|', 1480, ); if (lookahead == '\t' || lookahead == ' ') SKIP(76); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1372); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1396); END_STATE(); case 77: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '$', 1469, - '.', 336, + '#', 2216, + '$', 1498, + '.', 337, '=', 323, - 'i', 381, - '|', 1451, + 'i', 386, + '|', 1480, ); if (lookahead == '\t' || lookahead == ' ') SKIP(77); @@ -13403,13 +13744,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '-') ADVANCE(314); END_STATE(); case 78: - if (lookahead == '\n') ADVANCE(1447); + if (lookahead == '\n') ADVANCE(1476); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2187); - if (lookahead == '$') ADVANCE(1469); - if (lookahead == '.') ADVANCE(336); + if (lookahead == '#') ADVANCE(2216); + if (lookahead == '$') ADVANCE(1498); + if (lookahead == '.') ADVANCE(337); if (lookahead == '=') ADVANCE(323); - if (lookahead == '|') ADVANCE(1451); + if (lookahead == '|') ADVANCE(1480); if (lookahead == '\t' || lookahead == ' ') SKIP(78); if (lookahead == '+' || @@ -13417,922 +13758,922 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 79: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '(', 1560, - '.', 1594, - ';', 1450, - 'E', 1806, - 'G', 1809, - 'K', 1809, - 'M', 1809, - 'P', 1809, - 'T', 1809, - 'd', 1823, - 'e', 1805, - 'g', 1808, - 'h', 1877, - 'k', 1808, - 'm', 1811, - 'n', 1890, - 'p', 1808, - 's', 1838, - 't', 1808, - 'u', 1890, - 'w', 1857, - 0xb5, 1890, - '\t', 1449, - ' ', 1449, - 'B', 1652, - 'b', 1652, + '#', 2216, + '(', 1589, + '.', 1623, + ';', 1479, + 'E', 1835, + 'G', 1838, + 'K', 1838, + 'M', 1838, + 'P', 1838, + 'T', 1838, + 'd', 1852, + 'e', 1834, + 'g', 1837, + 'h', 1906, + 'k', 1837, + 'm', 1840, + 'n', 1919, + 'p', 1837, + 's', 1867, + 't', 1837, + 'u', 1919, + 'w', 1886, + 0xb5, 1919, + '\t', 1478, + ' ', 1478, + 'B', 1681, + 'b', 1681, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 80: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '(', 1560, - '.', 1594, - ';', 1450, - '\t', 1449, - ' ', 1449, - 'E', 1818, - 'e', 1818, + '#', 2216, + '(', 1589, + '.', 1623, + ';', 1479, + '\t', 1478, + ' ', 1478, + 'E', 1847, + 'e', 1847, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 81: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '(', 1560, - '.', 1789, - ';', 1450, - 'E', 1806, - 'G', 1809, - 'K', 1809, - 'M', 1809, - 'P', 1809, - 'T', 1809, - '_', 1812, - 'd', 1823, - 'e', 1805, - 'g', 1808, - 'h', 1877, - 'k', 1808, - 'm', 1811, - 'n', 1890, - 'p', 1808, - 's', 1838, - 't', 1808, - 'u', 1890, - 'w', 1857, - 0xb5, 1890, - '\t', 1449, - ' ', 1449, - 'B', 1652, - 'b', 1652, + '#', 2216, + '(', 1589, + '.', 1818, + ';', 1479, + 'E', 1835, + 'G', 1838, + 'K', 1838, + 'M', 1838, + 'P', 1838, + 'T', 1838, + '_', 1841, + 'd', 1852, + 'e', 1834, + 'g', 1837, + 'h', 1906, + 'k', 1837, + 'm', 1840, + 'n', 1919, + 'p', 1837, + 's', 1867, + 't', 1837, + 'u', 1919, + 'w', 1886, + 0xb5, 1919, + '\t', 1478, + ' ', 1478, + 'B', 1681, + 'b', 1681, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 82: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '(', 1560, - '.', 1789, - ';', 1450, - 'E', 1806, - 'G', 1809, - 'K', 1809, - 'M', 1809, - 'P', 1809, - 'T', 1809, - 'd', 1823, - 'e', 1805, - 'g', 1808, - 'h', 1877, - 'k', 1808, - 'm', 1811, - 'n', 1890, - 'p', 1808, - 's', 1838, - 't', 1808, - 'u', 1890, - 'w', 1857, - 0xb5, 1890, - '\t', 1449, - ' ', 1449, - 'B', 1652, - 'b', 1652, + '#', 2216, + '(', 1589, + '.', 1818, + ';', 1479, + 'E', 1835, + 'G', 1838, + 'K', 1838, + 'M', 1838, + 'P', 1838, + 'T', 1838, + 'd', 1852, + 'e', 1834, + 'g', 1837, + 'h', 1906, + 'k', 1837, + 'm', 1840, + 'n', 1919, + 'p', 1837, + 's', 1867, + 't', 1837, + 'u', 1919, + 'w', 1886, + 0xb5, 1919, + '\t', 1478, + ' ', 1478, + 'B', 1681, + 'b', 1681, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 83: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '(', 1560, - '.', 1789, - ';', 1450, - 'E', 1809, - 'G', 1809, - 'K', 1809, - 'M', 1809, - 'P', 1809, - 'T', 1809, - 'd', 1823, - 'e', 1808, - 'g', 1808, - 'h', 1877, - 'k', 1808, - 'm', 1811, - 'n', 1890, - 'p', 1808, - 's', 1838, - 't', 1808, - 'u', 1890, - 'w', 1857, - 0xb5, 1890, - '\t', 1449, - ' ', 1449, - 'B', 1652, - 'b', 1652, + '#', 2216, + '(', 1589, + '.', 1818, + ';', 1479, + 'E', 1838, + 'G', 1838, + 'K', 1838, + 'M', 1838, + 'P', 1838, + 'T', 1838, + 'd', 1852, + 'e', 1837, + 'g', 1837, + 'h', 1906, + 'k', 1837, + 'm', 1840, + 'n', 1919, + 'p', 1837, + 's', 1867, + 't', 1837, + 'u', 1919, + 'w', 1886, + 0xb5, 1919, + '\t', 1478, + ' ', 1478, + 'B', 1681, + 'b', 1681, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 84: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '(', 1560, - '.', 1789, - ';', 1450, - '_', 1812, - '\t', 1449, - ' ', 1449, - 'E', 1818, - 'e', 1818, + '#', 2216, + '(', 1589, + '.', 1818, + ';', 1479, + '_', 1841, + '\t', 1478, + ' ', 1478, + 'E', 1847, + 'e', 1847, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 85: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '(', 1560, - '.', 1789, - ';', 1450, - '\t', 1449, - ' ', 1449, - 'E', 1818, - 'e', 1818, + '#', 2216, + '(', 1589, + '.', 1818, + ';', 1479, + '\t', 1478, + ' ', 1478, + 'E', 1847, + 'e', 1847, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 86: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '(', 1560, - '.', 1789, - ';', 1450, - '\t', 1449, - ' ', 1449, + '#', 2216, + '(', 1589, + '.', 1818, + ';', 1479, + '\t', 1478, + ' ', 1478, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 87: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '(', 1560, - '.', 1593, - ';', 1450, - '\t', 1449, - ' ', 1449, - 'E', 1818, - 'e', 1818, + '#', 2216, + '(', 1589, + '.', 1622, + ';', 1479, + '\t', 1478, + ' ', 1478, + 'E', 1847, + 'e', 1847, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 88: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '(', 1560, - ';', 1450, - '_', 1812, - '\t', 1449, - ' ', 1449, - 'E', 1818, - 'e', 1818, + '#', 2216, + '(', 1589, + ';', 1479, + '_', 1841, + '\t', 1478, + ' ', 1478, + 'E', 1847, + 'e', 1847, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 89: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '(', 1560, - ';', 1450, - '\t', 1449, - ' ', 1449, - 'E', 1818, - 'e', 1818, + '#', 2216, + '(', 1589, + ';', 1479, + '\t', 1478, + ' ', 1478, + 'E', 1847, + 'e', 1847, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 90: - if (lookahead == '\n') ADVANCE(1447); + if (lookahead == '\n') ADVANCE(1476); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2187); - if (lookahead == '(') ADVANCE(1560); - if (lookahead == ';') ADVANCE(1450); + if (lookahead == '#') ADVANCE(2216); + if (lookahead == '(') ADVANCE(1589); + if (lookahead == ';') ADVANCE(1479); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1449); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + lookahead == ' ') ADVANCE(1478); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 91: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '(', 1466, - ')', 1467, - ',', 1468, + '#', 2216, + '(', 1495, + ')', 1496, + ',', 1497, '-', 297, - '.', 1722, - ':', 1462, - ';', 1450, - '=', 672, - '>', 1478, - '@', 1480, - '[', 1464, - ']', 1465, - 'c', 1350, - 'f', 1369, - 'i', 1358, - 'o', 1361, - 'v', 1346, - '{', 1497, - '}', 1498, + '.', 1751, + ':', 1491, + ';', 1479, + '=', 683, + '>', 1507, + '@', 1509, + '[', 1493, + ']', 1494, + 'c', 1374, + 'f', 1393, + 'i', 1382, + 'o', 1385, + 'v', 1370, + '{', 1526, + '}', 1527, ); if (lookahead == '\t' || lookahead == ' ') SKIP(92); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1372); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1396); END_STATE(); case 92: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '(', 1466, - ')', 1467, - ',', 1468, + '#', 2216, + '(', 1495, + ')', 1496, + ',', 1497, '-', 297, - '.', 1722, - ':', 1462, - ';', 1450, - '=', 672, - '>', 1478, - '[', 1464, - ']', 1465, - 'c', 1350, - 'f', 1369, - 'i', 1358, - 'o', 1361, - 'v', 1346, - '{', 1497, - '}', 1498, + '.', 1751, + ':', 1491, + ';', 1479, + '=', 683, + '>', 1507, + '[', 1493, + ']', 1494, + 'c', 1374, + 'f', 1393, + 'i', 1382, + 'o', 1385, + 'v', 1370, + '{', 1526, + '}', 1527, ); if (lookahead == '\t' || lookahead == ' ') SKIP(92); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1372); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1396); END_STATE(); case 93: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '.', 1594, - '=', 1795, - 'E', 1806, - 'G', 1809, - 'K', 1809, - 'M', 1809, - 'P', 1809, - 'T', 1809, - 'd', 1823, - 'e', 1805, - 'g', 1808, - 'h', 1877, - 'i', 1844, - 'k', 1808, - 'm', 1811, - 'n', 1890, - 'p', 1808, - 's', 1838, - 't', 1808, - 'u', 1890, - 'w', 1857, - '|', 1451, - 0xb5, 1890, + '#', 2216, + '.', 1623, + '=', 1824, + 'E', 1835, + 'G', 1838, + 'K', 1838, + 'M', 1838, + 'P', 1838, + 'T', 1838, + 'd', 1852, + 'e', 1834, + 'g', 1837, + 'h', 1906, + 'i', 1873, + 'k', 1837, + 'm', 1840, + 'n', 1919, + 'p', 1837, + 's', 1867, + 't', 1837, + 'u', 1919, + 'w', 1886, + '|', 1480, + 0xb5, 1919, ); if (lookahead == '\t' || lookahead == ' ') SKIP(114); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1652); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + lookahead == 'b') ADVANCE(1681); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 94: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '.', 1594, - '=', 1795, - 'E', 1806, - 'G', 1809, - 'K', 1809, - 'M', 1809, - 'P', 1809, - 'T', 1809, - 'd', 1823, - 'e', 1805, - 'g', 1808, - 'h', 1877, - 'k', 1808, - 'm', 1811, - 'n', 1890, - 'p', 1808, - 's', 1838, - 't', 1808, - 'u', 1890, - 'w', 1857, - '|', 1451, - 0xb5, 1890, + '#', 2216, + '.', 1623, + '=', 1824, + 'E', 1835, + 'G', 1838, + 'K', 1838, + 'M', 1838, + 'P', 1838, + 'T', 1838, + 'd', 1852, + 'e', 1834, + 'g', 1837, + 'h', 1906, + 'k', 1837, + 'm', 1840, + 'n', 1919, + 'p', 1837, + 's', 1867, + 't', 1837, + 'u', 1919, + 'w', 1886, + '|', 1480, + 0xb5, 1919, ); if (lookahead == '\t' || lookahead == ' ') SKIP(115); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1652); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + lookahead == 'b') ADVANCE(1681); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 95: - if (lookahead == '\n') ADVANCE(1447); + if (lookahead == '\n') ADVANCE(1476); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2187); - if (lookahead == '.') ADVANCE(1594); - if (lookahead == '=') ADVANCE(1795); - if (lookahead == 'i') ADVANCE(1844); - if (lookahead == '|') ADVANCE(1451); + if (lookahead == '#') ADVANCE(2216); + if (lookahead == '.') ADVANCE(1623); + if (lookahead == '=') ADVANCE(1824); + if (lookahead == 'i') ADVANCE(1873); + if (lookahead == '|') ADVANCE(1480); if (lookahead == '\t' || lookahead == ' ') SKIP(114); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1818); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + lookahead == 'e') ADVANCE(1847); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 96: - if (lookahead == '\n') ADVANCE(1447); + if (lookahead == '\n') ADVANCE(1476); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2187); - if (lookahead == '.') ADVANCE(1594); - if (lookahead == '=') ADVANCE(1795); - if (lookahead == '|') ADVANCE(1451); + if (lookahead == '#') ADVANCE(2216); + if (lookahead == '.') ADVANCE(1623); + if (lookahead == '=') ADVANCE(1824); + if (lookahead == '|') ADVANCE(1480); if (lookahead == '\t' || lookahead == ' ') SKIP(115); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1818); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + lookahead == 'e') ADVANCE(1847); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 97: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '.', 1789, - '=', 1795, - 'E', 1806, - 'G', 1809, - 'K', 1809, - 'M', 1809, - 'P', 1809, - 'T', 1809, - '_', 1812, - 'd', 1823, - 'e', 1805, - 'g', 1808, - 'h', 1877, - 'i', 1844, - 'k', 1808, - 'm', 1811, - 'n', 1890, - 'p', 1808, - 's', 1838, - 't', 1808, - 'u', 1890, - 'w', 1857, - '|', 1451, - 0xb5, 1890, + '#', 2216, + '.', 1818, + '=', 1824, + 'E', 1835, + 'G', 1838, + 'K', 1838, + 'M', 1838, + 'P', 1838, + 'T', 1838, + '_', 1841, + 'd', 1852, + 'e', 1834, + 'g', 1837, + 'h', 1906, + 'i', 1873, + 'k', 1837, + 'm', 1840, + 'n', 1919, + 'p', 1837, + 's', 1867, + 't', 1837, + 'u', 1919, + 'w', 1886, + '|', 1480, + 0xb5, 1919, ); if (lookahead == '\t' || lookahead == ' ') SKIP(114); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1652); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + lookahead == 'b') ADVANCE(1681); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 98: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '.', 1789, - '=', 1795, - 'E', 1806, - 'G', 1809, - 'K', 1809, - 'M', 1809, - 'P', 1809, - 'T', 1809, - '_', 1812, - 'd', 1823, - 'e', 1805, - 'g', 1808, - 'h', 1877, - 'k', 1808, - 'm', 1811, - 'n', 1890, - 'p', 1808, - 's', 1838, - 't', 1808, - 'u', 1890, - 'w', 1857, - '|', 1451, - 0xb5, 1890, + '#', 2216, + '.', 1818, + '=', 1824, + 'E', 1835, + 'G', 1838, + 'K', 1838, + 'M', 1838, + 'P', 1838, + 'T', 1838, + '_', 1841, + 'd', 1852, + 'e', 1834, + 'g', 1837, + 'h', 1906, + 'k', 1837, + 'm', 1840, + 'n', 1919, + 'p', 1837, + 's', 1867, + 't', 1837, + 'u', 1919, + 'w', 1886, + '|', 1480, + 0xb5, 1919, ); if (lookahead == '\t' || lookahead == ' ') SKIP(115); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1652); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + lookahead == 'b') ADVANCE(1681); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 99: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '.', 1789, - '=', 1795, - 'E', 1806, - 'G', 1809, - 'K', 1809, - 'M', 1809, - 'P', 1809, - 'T', 1809, - 'd', 1823, - 'e', 1805, - 'g', 1808, - 'h', 1877, - 'i', 1844, - 'k', 1808, - 'm', 1811, - 'n', 1890, - 'p', 1808, - 's', 1838, - 't', 1808, - 'u', 1890, - 'w', 1857, - '|', 1451, - 0xb5, 1890, + '#', 2216, + '.', 1818, + '=', 1824, + 'E', 1835, + 'G', 1838, + 'K', 1838, + 'M', 1838, + 'P', 1838, + 'T', 1838, + 'd', 1852, + 'e', 1834, + 'g', 1837, + 'h', 1906, + 'i', 1873, + 'k', 1837, + 'm', 1840, + 'n', 1919, + 'p', 1837, + 's', 1867, + 't', 1837, + 'u', 1919, + 'w', 1886, + '|', 1480, + 0xb5, 1919, ); if (lookahead == '\t' || lookahead == ' ') SKIP(114); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1652); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + lookahead == 'b') ADVANCE(1681); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 100: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '.', 1789, - '=', 1795, - 'E', 1806, - 'G', 1809, - 'K', 1809, - 'M', 1809, - 'P', 1809, - 'T', 1809, - 'd', 1823, - 'e', 1805, - 'g', 1808, - 'h', 1877, - 'k', 1808, - 'm', 1811, - 'n', 1890, - 'p', 1808, - 's', 1838, - 't', 1808, - 'u', 1890, - 'w', 1857, - '|', 1451, - 0xb5, 1890, + '#', 2216, + '.', 1818, + '=', 1824, + 'E', 1835, + 'G', 1838, + 'K', 1838, + 'M', 1838, + 'P', 1838, + 'T', 1838, + 'd', 1852, + 'e', 1834, + 'g', 1837, + 'h', 1906, + 'k', 1837, + 'm', 1840, + 'n', 1919, + 'p', 1837, + 's', 1867, + 't', 1837, + 'u', 1919, + 'w', 1886, + '|', 1480, + 0xb5, 1919, ); if (lookahead == '\t' || lookahead == ' ') SKIP(115); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1652); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + lookahead == 'b') ADVANCE(1681); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 101: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '.', 1789, - '=', 1795, - 'E', 1809, - 'G', 1809, - 'K', 1809, - 'M', 1809, - 'P', 1809, - 'T', 1809, - 'd', 1823, - 'e', 1808, - 'g', 1808, - 'h', 1877, - 'i', 1844, - 'k', 1808, - 'm', 1811, - 'n', 1890, - 'p', 1808, - 's', 1838, - 't', 1808, - 'u', 1890, - 'w', 1857, - '|', 1451, - 0xb5, 1890, + '#', 2216, + '.', 1818, + '=', 1824, + 'E', 1838, + 'G', 1838, + 'K', 1838, + 'M', 1838, + 'P', 1838, + 'T', 1838, + 'd', 1852, + 'e', 1837, + 'g', 1837, + 'h', 1906, + 'i', 1873, + 'k', 1837, + 'm', 1840, + 'n', 1919, + 'p', 1837, + 's', 1867, + 't', 1837, + 'u', 1919, + 'w', 1886, + '|', 1480, + 0xb5, 1919, ); if (lookahead == '\t' || lookahead == ' ') SKIP(114); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1652); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + lookahead == 'b') ADVANCE(1681); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 102: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '.', 1789, - '=', 1795, - 'E', 1809, - 'G', 1809, - 'K', 1809, - 'M', 1809, - 'P', 1809, - 'T', 1809, - 'd', 1823, - 'e', 1808, - 'g', 1808, - 'h', 1877, - 'k', 1808, - 'm', 1811, - 'n', 1890, - 'p', 1808, - 's', 1838, - 't', 1808, - 'u', 1890, - 'w', 1857, - '|', 1451, - 0xb5, 1890, + '#', 2216, + '.', 1818, + '=', 1824, + 'E', 1838, + 'G', 1838, + 'K', 1838, + 'M', 1838, + 'P', 1838, + 'T', 1838, + 'd', 1852, + 'e', 1837, + 'g', 1837, + 'h', 1906, + 'k', 1837, + 'm', 1840, + 'n', 1919, + 'p', 1837, + 's', 1867, + 't', 1837, + 'u', 1919, + 'w', 1886, + '|', 1480, + 0xb5, 1919, ); if (lookahead == '\t' || lookahead == ' ') SKIP(115); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1652); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + lookahead == 'b') ADVANCE(1681); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 103: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '.', 1789, - '=', 1795, - '_', 1812, - 'i', 1844, - '|', 1451, + '#', 2216, + '.', 1818, + '=', 1824, + '_', 1841, + 'i', 1873, + '|', 1480, ); if (lookahead == '\t' || lookahead == ' ') SKIP(114); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1818); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + lookahead == 'e') ADVANCE(1847); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 104: - if (lookahead == '\n') ADVANCE(1447); + if (lookahead == '\n') ADVANCE(1476); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2187); - if (lookahead == '.') ADVANCE(1789); - if (lookahead == '=') ADVANCE(1795); - if (lookahead == '_') ADVANCE(1812); - if (lookahead == '|') ADVANCE(1451); + if (lookahead == '#') ADVANCE(2216); + if (lookahead == '.') ADVANCE(1818); + if (lookahead == '=') ADVANCE(1824); + if (lookahead == '_') ADVANCE(1841); + if (lookahead == '|') ADVANCE(1480); if (lookahead == '\t' || lookahead == ' ') SKIP(115); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1818); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + lookahead == 'e') ADVANCE(1847); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 105: - if (lookahead == '\n') ADVANCE(1447); + if (lookahead == '\n') ADVANCE(1476); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2187); - if (lookahead == '.') ADVANCE(1789); - if (lookahead == '=') ADVANCE(1795); - if (lookahead == 'i') ADVANCE(1844); - if (lookahead == '|') ADVANCE(1451); + if (lookahead == '#') ADVANCE(2216); + if (lookahead == '.') ADVANCE(1818); + if (lookahead == '=') ADVANCE(1824); + if (lookahead == 'i') ADVANCE(1873); + if (lookahead == '|') ADVANCE(1480); if (lookahead == '\t' || lookahead == ' ') SKIP(114); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1818); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + lookahead == 'e') ADVANCE(1847); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 106: - if (lookahead == '\n') ADVANCE(1447); + if (lookahead == '\n') ADVANCE(1476); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2187); - if (lookahead == '.') ADVANCE(1789); - if (lookahead == '=') ADVANCE(1795); - if (lookahead == 'i') ADVANCE(1844); - if (lookahead == '|') ADVANCE(1451); + if (lookahead == '#') ADVANCE(2216); + if (lookahead == '.') ADVANCE(1818); + if (lookahead == '=') ADVANCE(1824); + if (lookahead == 'i') ADVANCE(1873); + if (lookahead == '|') ADVANCE(1480); if (lookahead == '\t' || lookahead == ' ') SKIP(114); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 107: - if (lookahead == '\n') ADVANCE(1447); + if (lookahead == '\n') ADVANCE(1476); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2187); - if (lookahead == '.') ADVANCE(1789); - if (lookahead == '=') ADVANCE(1795); - if (lookahead == '|') ADVANCE(1451); + if (lookahead == '#') ADVANCE(2216); + if (lookahead == '.') ADVANCE(1818); + if (lookahead == '=') ADVANCE(1824); + if (lookahead == '|') ADVANCE(1480); if (lookahead == '\t' || lookahead == ' ') SKIP(115); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1818); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + lookahead == 'e') ADVANCE(1847); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 108: - if (lookahead == '\n') ADVANCE(1447); + if (lookahead == '\n') ADVANCE(1476); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2187); - if (lookahead == '.') ADVANCE(1789); - if (lookahead == '=') ADVANCE(1795); - if (lookahead == '|') ADVANCE(1451); + if (lookahead == '#') ADVANCE(2216); + if (lookahead == '.') ADVANCE(1818); + if (lookahead == '=') ADVANCE(1824); + if (lookahead == '|') ADVANCE(1480); if (lookahead == '\t' || lookahead == ' ') SKIP(115); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 109: - if (lookahead == '\n') ADVANCE(1447); + if (lookahead == '\n') ADVANCE(1476); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2187); - if (lookahead == '.') ADVANCE(1593); - if (lookahead == '=') ADVANCE(1795); - if (lookahead == 'i') ADVANCE(1844); - if (lookahead == '|') ADVANCE(1451); + if (lookahead == '#') ADVANCE(2216); + if (lookahead == '.') ADVANCE(1622); + if (lookahead == '=') ADVANCE(1824); + if (lookahead == 'i') ADVANCE(1873); + if (lookahead == '|') ADVANCE(1480); if (lookahead == '\t' || lookahead == ' ') SKIP(114); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1818); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + lookahead == 'e') ADVANCE(1847); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 110: - if (lookahead == '\n') ADVANCE(1447); + if (lookahead == '\n') ADVANCE(1476); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2187); - if (lookahead == '.') ADVANCE(1593); - if (lookahead == '=') ADVANCE(1795); - if (lookahead == '|') ADVANCE(1451); + if (lookahead == '#') ADVANCE(2216); + if (lookahead == '.') ADVANCE(1622); + if (lookahead == '=') ADVANCE(1824); + if (lookahead == '|') ADVANCE(1480); if (lookahead == '\t' || lookahead == ' ') SKIP(115); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1818); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + lookahead == 'e') ADVANCE(1847); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 111: ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - ':', 1712, - ';', 1450, - '=', 1728, + '#', 2216, + ':', 1741, + ';', 1479, + '=', 1757, 'e', 288, 'o', 290, - '|', 1451, - '}', 1498, - '\t', 1448, - ' ', 1448, + '|', 1480, + '}', 1527, + '\t', 1477, + ' ', 1477, ); END_STATE(); case 112: - if (lookahead == '\n') ADVANCE(1447); + if (lookahead == '\n') ADVANCE(1476); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2187); - if (lookahead == ':') ADVANCE(1712); - if (lookahead == '{') ADVANCE(1497); + if (lookahead == '#') ADVANCE(2216); + if (lookahead == ':') ADVANCE(1741); + if (lookahead == '{') ADVANCE(1526); if (lookahead == '\t' || lookahead == ' ') SKIP(112); END_STATE(); case 113: - if (lookahead == '\n') ADVANCE(1447); + if (lookahead == '\n') ADVANCE(1476); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2187); - if (lookahead == ';') ADVANCE(1450); - if (lookahead == '=') ADVANCE(1728); + if (lookahead == '#') ADVANCE(2216); + if (lookahead == ';') ADVANCE(1479); + if (lookahead == '=') ADVANCE(1757); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1449); - if (set_contains(sym_long_flag_identifier_character_set_1, 686, lookahead)) ADVANCE(1446); + lookahead == ' ') ADVANCE(1478); + if (set_contains(sym_long_flag_identifier_character_set_1, 686, lookahead)) ADVANCE(1475); END_STATE(); case 114: - if (lookahead == '\n') ADVANCE(1447); + if (lookahead == '\n') ADVANCE(1476); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2187); + if (lookahead == '#') ADVANCE(2216); if (lookahead == '=') ADVANCE(323); - if (lookahead == 'i') ADVANCE(381); - if (lookahead == '|') ADVANCE(1451); + if (lookahead == 'i') ADVANCE(386); + if (lookahead == '|') ADVANCE(1480); if (lookahead == '\t' || lookahead == ' ') SKIP(114); END_STATE(); case 115: - if (lookahead == '\n') ADVANCE(1447); + if (lookahead == '\n') ADVANCE(1476); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2187); + if (lookahead == '#') ADVANCE(2216); if (lookahead == '=') ADVANCE(323); - if (lookahead == '|') ADVANCE(1451); + if (lookahead == '|') ADVANCE(1480); if (lookahead == '\t' || lookahead == ' ') SKIP(115); END_STATE(); case 116: - if (lookahead == '\n') ADVANCE(1447); + if (lookahead == '\n') ADVANCE(1476); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2187); - if (lookahead == '=') ADVANCE(1795); - if (lookahead == '_') ADVANCE(1812); - if (lookahead == 'i') ADVANCE(1844); - if (lookahead == '|') ADVANCE(1451); + if (lookahead == '#') ADVANCE(2216); + if (lookahead == '=') ADVANCE(1824); + if (lookahead == '_') ADVANCE(1841); + if (lookahead == 'i') ADVANCE(1873); + if (lookahead == '|') ADVANCE(1480); if (lookahead == '\t' || lookahead == ' ') SKIP(114); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1818); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + lookahead == 'e') ADVANCE(1847); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 117: - if (lookahead == '\n') ADVANCE(1447); + if (lookahead == '\n') ADVANCE(1476); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2187); - if (lookahead == '=') ADVANCE(1795); - if (lookahead == '_') ADVANCE(1812); - if (lookahead == '|') ADVANCE(1451); + if (lookahead == '#') ADVANCE(2216); + if (lookahead == '=') ADVANCE(1824); + if (lookahead == '_') ADVANCE(1841); + if (lookahead == '|') ADVANCE(1480); if (lookahead == '\t' || lookahead == ' ') SKIP(115); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1818); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + lookahead == 'e') ADVANCE(1847); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 118: - if (lookahead == '\n') ADVANCE(1447); + if (lookahead == '\n') ADVANCE(1476); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2187); - if (lookahead == '=') ADVANCE(1795); - if (lookahead == 'i') ADVANCE(1844); - if (lookahead == '|') ADVANCE(1451); + if (lookahead == '#') ADVANCE(2216); + if (lookahead == '=') ADVANCE(1824); + if (lookahead == 'i') ADVANCE(1873); + if (lookahead == '|') ADVANCE(1480); if (lookahead == '\t' || lookahead == ' ') SKIP(114); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1818); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + lookahead == 'e') ADVANCE(1847); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 119: - if (lookahead == '\n') ADVANCE(1447); + if (lookahead == '\n') ADVANCE(1476); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2187); - if (lookahead == '=') ADVANCE(1795); - if (lookahead == 'i') ADVANCE(1844); - if (lookahead == '|') ADVANCE(1451); + if (lookahead == '#') ADVANCE(2216); + if (lookahead == '=') ADVANCE(1824); + if (lookahead == 'i') ADVANCE(1873); + if (lookahead == '|') ADVANCE(1480); if (lookahead == '\t' || lookahead == ' ') SKIP(114); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 120: - if (lookahead == '\n') ADVANCE(1447); + if (lookahead == '\n') ADVANCE(1476); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2187); - if (lookahead == '=') ADVANCE(1795); - if (lookahead == '|') ADVANCE(1451); + if (lookahead == '#') ADVANCE(2216); + if (lookahead == '=') ADVANCE(1824); + if (lookahead == '|') ADVANCE(1480); if (lookahead == '\t' || lookahead == ' ') SKIP(115); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1818); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + lookahead == 'e') ADVANCE(1847); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 121: - if (lookahead == '\n') ADVANCE(1447); + if (lookahead == '\n') ADVANCE(1476); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2187); - if (lookahead == '=') ADVANCE(1795); - if (lookahead == '|') ADVANCE(1451); + if (lookahead == '#') ADVANCE(2216); + if (lookahead == '=') ADVANCE(1824); + if (lookahead == '|') ADVANCE(1480); if (lookahead == '\t' || lookahead == ' ') SKIP(115); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 122: - if (lookahead == '\n') ADVANCE(1447); + if (lookahead == '\n') ADVANCE(1476); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2190); - if (lookahead == ':') ADVANCE(1712); - if (lookahead == '{') ADVANCE(1497); + if (lookahead == '#') ADVANCE(2219); + if (lookahead == ':') ADVANCE(1741); + if (lookahead == '{') ADVANCE(1526); if (lookahead == '\t' || lookahead == ' ') SKIP(112); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 123: ADVANCE_MAP( - '\n', 1706, - '\r', 1706, - '!', 1718, - '#', 2187, - '(', 1560, - '*', 1512, - '+', 1577, - '-', 1494, - '.', 1721, - '/', 1567, - ':', 1712, - ';', 1450, - '<', 1549, - '=', 673, - '>', 1479, - '?', 1716, - '@', 1480, - '[', 1464, - ']', 1465, - 'a', 416, - 'b', 395, + '\n', 1735, + '\r', 1735, + '!', 1747, + '#', 2216, + '(', 1589, + '*', 1541, + '+', 1606, + '-', 1523, + '.', 1750, + '/', 1596, + ':', 1741, + ';', 1479, + '<', 1578, + '=', 684, + '>', 1508, + '?', 1745, + '@', 1509, + '[', 1493, + ']', 1494, + 'a', 424, + 'b', 400, 'e', 284, - 'h', 340, - 'i', 417, - 'l', 394, - 'm', 431, - 'n', 429, + 'h', 341, + 'i', 425, + 'l', 399, + 'm', 440, + 'n', 438, 'o', 279, - 's', 480, - 'x', 426, - '|', 1451, - '}', 1498, - '\t', 1707, - ' ', 1707, - 0x0b, 1706, - '\f', 1706, - ',', 1706, + 's', 490, + 'x', 435, + '|', 1480, + '}', 1527, + '\t', 1736, + ' ', 1736, + 0x0b, 1735, + '\f', 1735, + ',', 1735, ); END_STATE(); case 124: ADVANCE_MAP( - '!', 1717, - '"', 1684, - '#', 2187, + '!', 1746, + '"', 1713, + '#', 2216, '$', 180, - '\'', 1687, - '.', 1719, - ';', 1715, - '?', 1716, - '`', 1691, + '\'', 1716, + '.', 1748, + ';', 1744, + '?', 1745, + '`', 1720, '\t', 124, ' ', 124, ); @@ -14340,15 +14681,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 125: ADVANCE_MAP( - '!', 1717, - '"', 1684, - '#', 2187, + '!', 1746, + '"', 1713, + '#', 2216, '$', 180, - '\'', 1687, - '.', 1719, - ';', 1715, - '?', 1716, - '`', 1691, + '\'', 1716, + '.', 1748, + ';', 1744, + '?', 1745, + '`', 1720, '\t', 124, ' ', 124, ); @@ -14359,622 +14700,643 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && lookahead != '^' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1729); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1758); END_STATE(); case 126: ADVANCE_MAP( - '!', 1717, - '"', 1684, - '#', 2187, - '\'', 1687, - '+', 701, + '!', 1746, + '"', 1713, + '#', 2216, + '\'', 1716, + '+', 712, '-', 299, - '.', 1725, - '?', 1716, - 'I', 808, - 'N', 804, - '_', 715, - '`', 1691, - 'a', 753, - 'c', 720, - 'd', 730, - 'e', 758, - 'f', 722, - 'i', 714, - 'l', 738, - 'm', 724, - 'n', 797, - 't', 771, - 'u', 784, - 'w', 750, + '.', 1754, + '?', 1745, + 'I', 824, + 'N', 820, + '_', 726, + '`', 1720, + 'a', 765, + 'c', 731, + 'd', 742, + 'e', 772, + 'f', 732, + 'i', 725, + 'l', 750, + 'm', 736, + 'n', 812, + 't', 786, + 'u', 799, + 'w', 762, ); if (lookahead == '\t' || lookahead == ' ') SKIP(126); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(823); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(839); END_STATE(); case 127: ADVANCE_MAP( - '!', 1717, - '"', 1684, - '#', 2187, - '\'', 1687, - '+', 701, + '!', 1746, + '"', 1713, + '#', 2216, + '\'', 1716, + '+', 712, '-', 299, - '.', 1725, - 'I', 808, - 'N', 804, - '_', 715, - '`', 1691, - 'a', 753, - 'c', 720, - 'd', 730, - 'e', 758, - 'f', 722, - 'i', 714, - 'l', 738, - 'm', 724, - 'n', 797, - 't', 771, - 'u', 784, - 'w', 750, + '.', 1754, + 'I', 824, + 'N', 820, + '_', 726, + '`', 1720, + 'a', 765, + 'c', 731, + 'd', 742, + 'e', 772, + 'f', 732, + 'i', 725, + 'l', 750, + 'm', 736, + 'n', 812, + 't', 786, + 'u', 799, + 'w', 762, ); if (lookahead == '\t' || lookahead == ' ') SKIP(127); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(823); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(839); END_STATE(); case 128: ADVANCE_MAP( - '!', 1717, - '#', 2187, - ',', 1706, - '.', 1722, - ';', 1715, - '?', 1716, - ']', 1465, - '\t', 1709, - ' ', 1709, + '!', 1746, + '#', 2216, + ',', 1735, + '.', 1751, + ';', 1744, + '?', 1745, + ']', 1494, + '\t', 1738, + ' ', 1738, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1710); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1739); END_STATE(); case 129: ADVANCE_MAP( - '!', 1717, - '#', 2187, - '.', 1721, - ':', 1712, - '>', 1478, - '?', 1716, - ']', 1465, - '}', 1498, - '\t', 1711, - ' ', 1711, + '!', 1746, + '#', 2216, + '.', 1750, + ':', 1741, + '>', 1507, + '?', 1745, + 'E', 333, + 'G', 333, + 'K', 333, + 'M', 333, + 'P', 333, + 'T', 333, + ']', 1494, + 'd', 344, + 'e', 332, + 'g', 332, + 'h', 455, + 'k', 332, + 'm', 335, + 'n', 473, + 'p', 332, + 's', 376, + 't', 332, + 'u', 473, + 'w', 409, + '}', 1527, + 0xb5, 473, + '\t', 1740, + ' ', 1740, + 'B', 1681, + 'b', 1681, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1706); + lookahead == ',') ADVANCE(1735); END_STATE(); case 130: ADVANCE_MAP( - '!', 1717, - '#', 2187, - '.', 1722, - ':', 1462, - '>', 1478, - '?', 1716, - ']', 1465, - '}', 1498, - '\t', 1711, - ' ', 1711, + '!', 1746, + '#', 2216, + '.', 1751, + ':', 1491, + '>', 1507, + '?', 1745, + ']', 1494, + '}', 1527, + '\t', 1740, + ' ', 1740, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1706); + lookahead == ',') ADVANCE(1735); END_STATE(); case 131: ADVANCE_MAP( - '!', 1792, - '#', 2187, - '$', 1469, - '(', 1560, - '*', 1511, - '+', 1575, - '-', 1492, - '.', 1603, - '/', 1566, - '<', 1549, - '=', 1793, - '>', 1479, - '_', 1812, - 'a', 1864, - 'b', 1851, - 'e', 1865, - 'h', 1822, - 'i', 1862, - 'l', 1850, - 'm', 1873, - 'n', 1872, - 'o', 1878, - 's', 1898, - 'x', 1870, + '!', 1821, + '#', 2216, + '$', 1498, + '(', 1589, + '*', 1540, + '+', 1604, + '-', 1521, + '.', 1632, + '/', 1595, + '<', 1578, + '=', 1822, + '>', 1508, + '_', 1841, + 'a', 1893, + 'b', 1880, + 'e', 1894, + 'h', 1851, + 'i', 1891, + 'l', 1879, + 'm', 1902, + 'n', 1901, + 'o', 1907, + 's', 1927, + 'x', 1899, ); if (lookahead == '\t' || lookahead == ' ') SKIP(145); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1933); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1962); END_STATE(); case 132: ADVANCE_MAP( - '!', 1792, - '#', 2187, - '$', 1469, - '(', 1560, - '*', 1511, - '+', 1575, - '-', 1492, - '.', 1814, - '/', 1566, - '<', 1549, - '=', 1793, - '>', 1479, - '_', 1812, - 'a', 1864, - 'b', 1851, - 'e', 1865, - 'h', 1822, - 'i', 1862, - 'l', 1850, - 'm', 1873, - 'n', 1872, - 'o', 1878, - 's', 1898, - 'x', 1870, + '!', 1821, + '#', 2216, + '$', 1498, + '(', 1589, + '*', 1540, + '+', 1604, + '-', 1521, + '.', 1843, + '/', 1595, + '<', 1578, + '=', 1822, + '>', 1508, + '_', 1841, + 'a', 1893, + 'b', 1880, + 'e', 1894, + 'h', 1851, + 'i', 1891, + 'l', 1879, + 'm', 1902, + 'n', 1901, + 'o', 1907, + 's', 1927, + 'x', 1899, ); if (lookahead == '\t' || lookahead == ' ') SKIP(145); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1933); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1962); END_STATE(); case 133: ADVANCE_MAP( - '!', 1792, - '#', 2187, - '(', 1560, - '*', 1511, - '+', 1574, - '-', 1485, - '.', 1594, - '/', 1566, - '<', 1549, - '=', 1793, - '>', 1479, - 'B', 1652, - 'E', 1806, - 'G', 1809, - 'K', 1809, - 'M', 1809, - 'P', 1809, - 'T', 1809, - 'a', 1864, - 'b', 1655, - 'd', 1823, - 'e', 1804, - 'g', 1808, - 'h', 1821, - 'i', 1862, - 'k', 1808, - 'l', 1850, - 'm', 1810, - 'n', 1871, - 'o', 1878, - 'p', 1808, - 's', 1837, - 't', 1808, - 'u', 1890, - 'w', 1857, - 'x', 1870, - 0xb5, 1890, + '!', 1821, + '#', 2216, + '(', 1589, + '*', 1540, + '+', 1603, + '-', 1514, + '.', 1623, + '/', 1595, + '<', 1578, + '=', 1822, + '>', 1508, + 'B', 1681, + 'E', 1835, + 'G', 1838, + 'K', 1838, + 'M', 1838, + 'P', 1838, + 'T', 1838, + 'a', 1893, + 'b', 1684, + 'd', 1852, + 'e', 1833, + 'g', 1837, + 'h', 1850, + 'i', 1891, + 'k', 1837, + 'l', 1879, + 'm', 1839, + 'n', 1900, + 'o', 1907, + 'p', 1837, + 's', 1866, + 't', 1837, + 'u', 1919, + 'w', 1886, + 'x', 1899, + 0xb5, 1919, ); if (lookahead == '\t' || lookahead == ' ') SKIP(146); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 134: ADVANCE_MAP( - '!', 1792, - '#', 2187, - '(', 1560, - '*', 1511, - '+', 1574, - '-', 1485, - '.', 1594, - '/', 1566, - '<', 1549, - '=', 1793, - '>', 1479, - 'E', 1818, - 'a', 1864, - 'b', 1851, - 'e', 1815, - 'h', 1822, - 'i', 1862, - 'l', 1850, - 'm', 1873, - 'n', 1872, - 'o', 1878, - 's', 1898, - 'x', 1870, + '!', 1821, + '#', 2216, + '(', 1589, + '*', 1540, + '+', 1603, + '-', 1514, + '.', 1623, + '/', 1595, + '<', 1578, + '=', 1822, + '>', 1508, + 'E', 1847, + 'a', 1893, + 'b', 1880, + 'e', 1844, + 'h', 1851, + 'i', 1891, + 'l', 1879, + 'm', 1902, + 'n', 1901, + 'o', 1907, + 's', 1927, + 'x', 1899, ); if (lookahead == '\t' || lookahead == ' ') SKIP(146); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 135: ADVANCE_MAP( - '!', 1792, - '#', 2187, - '(', 1560, - '*', 1511, - '+', 1574, - '-', 1485, - '.', 1789, - '/', 1566, - '<', 1549, - '=', 1793, - '>', 1479, - 'B', 1652, - 'E', 1806, - 'G', 1809, - 'K', 1809, - 'M', 1809, - 'P', 1809, - 'T', 1809, - '_', 1812, - 'a', 1864, - 'b', 1655, - 'd', 1823, - 'e', 1804, - 'g', 1808, - 'h', 1821, - 'i', 1862, - 'k', 1808, - 'l', 1850, - 'm', 1810, - 'n', 1871, - 'o', 1878, - 'p', 1808, - 's', 1837, - 't', 1808, - 'u', 1890, - 'w', 1857, - 'x', 1870, - 0xb5, 1890, + '!', 1821, + '#', 2216, + '(', 1589, + '*', 1540, + '+', 1603, + '-', 1514, + '.', 1818, + '/', 1595, + '<', 1578, + '=', 1822, + '>', 1508, + 'B', 1681, + 'E', 1835, + 'G', 1838, + 'K', 1838, + 'M', 1838, + 'P', 1838, + 'T', 1838, + '_', 1841, + 'a', 1893, + 'b', 1684, + 'd', 1852, + 'e', 1833, + 'g', 1837, + 'h', 1850, + 'i', 1891, + 'k', 1837, + 'l', 1879, + 'm', 1839, + 'n', 1900, + 'o', 1907, + 'p', 1837, + 's', 1866, + 't', 1837, + 'u', 1919, + 'w', 1886, + 'x', 1899, + 0xb5, 1919, ); if (lookahead == '\t' || lookahead == ' ') SKIP(146); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 136: ADVANCE_MAP( - '!', 1792, - '#', 2187, - '(', 1560, - '*', 1511, - '+', 1574, - '-', 1485, - '.', 1789, - '/', 1566, - '<', 1549, - '=', 1793, - '>', 1479, - 'B', 1652, - 'E', 1806, - 'G', 1809, - 'K', 1809, - 'M', 1809, - 'P', 1809, - 'T', 1809, - 'a', 1864, - 'b', 1655, - 'd', 1823, - 'e', 1804, - 'g', 1808, - 'h', 1821, - 'i', 1862, - 'k', 1808, - 'l', 1850, - 'm', 1810, - 'n', 1871, - 'o', 1878, - 'p', 1808, - 's', 1837, - 't', 1808, - 'u', 1890, - 'w', 1857, - 'x', 1870, - 0xb5, 1890, + '!', 1821, + '#', 2216, + '(', 1589, + '*', 1540, + '+', 1603, + '-', 1514, + '.', 1818, + '/', 1595, + '<', 1578, + '=', 1822, + '>', 1508, + 'B', 1681, + 'E', 1835, + 'G', 1838, + 'K', 1838, + 'M', 1838, + 'P', 1838, + 'T', 1838, + 'a', 1893, + 'b', 1684, + 'd', 1852, + 'e', 1833, + 'g', 1837, + 'h', 1850, + 'i', 1891, + 'k', 1837, + 'l', 1879, + 'm', 1839, + 'n', 1900, + 'o', 1907, + 'p', 1837, + 's', 1866, + 't', 1837, + 'u', 1919, + 'w', 1886, + 'x', 1899, + 0xb5, 1919, ); if (lookahead == '\t' || lookahead == ' ') SKIP(146); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 137: ADVANCE_MAP( - '!', 1792, - '#', 2187, - '(', 1560, - '*', 1511, - '+', 1574, - '-', 1485, - '.', 1789, - '/', 1566, - '<', 1549, - '=', 1793, - '>', 1479, - 'B', 1652, - 'E', 1809, - 'G', 1809, - 'K', 1809, - 'M', 1809, - 'P', 1809, - 'T', 1809, - 'a', 1864, - 'b', 1655, - 'd', 1823, - 'e', 1807, - 'g', 1808, - 'h', 1821, - 'i', 1862, - 'k', 1808, - 'l', 1850, - 'm', 1810, - 'n', 1871, - 'o', 1878, - 'p', 1808, - 's', 1837, - 't', 1808, - 'u', 1890, - 'w', 1857, - 'x', 1870, - 0xb5, 1890, + '!', 1821, + '#', 2216, + '(', 1589, + '*', 1540, + '+', 1603, + '-', 1514, + '.', 1818, + '/', 1595, + '<', 1578, + '=', 1822, + '>', 1508, + 'B', 1681, + 'E', 1838, + 'G', 1838, + 'K', 1838, + 'M', 1838, + 'P', 1838, + 'T', 1838, + 'a', 1893, + 'b', 1684, + 'd', 1852, + 'e', 1836, + 'g', 1837, + 'h', 1850, + 'i', 1891, + 'k', 1837, + 'l', 1879, + 'm', 1839, + 'n', 1900, + 'o', 1907, + 'p', 1837, + 's', 1866, + 't', 1837, + 'u', 1919, + 'w', 1886, + 'x', 1899, + 0xb5, 1919, ); if (lookahead == '\t' || lookahead == ' ') SKIP(146); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 138: ADVANCE_MAP( - '!', 1792, - '#', 2187, - '(', 1560, - '*', 1511, - '+', 1574, - '-', 1485, - '.', 1789, - '/', 1566, - '<', 1549, - '=', 1793, - '>', 1479, - 'E', 1818, - '_', 1812, - 'a', 1864, - 'b', 1851, - 'e', 1815, - 'h', 1822, - 'i', 1862, - 'l', 1850, - 'm', 1873, - 'n', 1872, - 'o', 1878, - 's', 1898, - 'x', 1870, + '!', 1821, + '#', 2216, + '(', 1589, + '*', 1540, + '+', 1603, + '-', 1514, + '.', 1818, + '/', 1595, + '<', 1578, + '=', 1822, + '>', 1508, + 'E', 1847, + '_', 1841, + 'a', 1893, + 'b', 1880, + 'e', 1844, + 'h', 1851, + 'i', 1891, + 'l', 1879, + 'm', 1902, + 'n', 1901, + 'o', 1907, + 's', 1927, + 'x', 1899, ); if (lookahead == '\t' || lookahead == ' ') SKIP(146); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 139: ADVANCE_MAP( - '!', 1792, - '#', 2187, - '(', 1560, - '*', 1511, - '+', 1574, - '-', 1485, - '.', 1789, - '/', 1566, - '<', 1549, - '=', 1793, - '>', 1479, - 'E', 1818, - 'a', 1864, - 'b', 1851, - 'e', 1815, - 'h', 1822, - 'i', 1862, - 'l', 1850, - 'm', 1873, - 'n', 1872, - 'o', 1878, - 's', 1898, - 'x', 1870, + '!', 1821, + '#', 2216, + '(', 1589, + '*', 1540, + '+', 1603, + '-', 1514, + '.', 1818, + '/', 1595, + '<', 1578, + '=', 1822, + '>', 1508, + 'E', 1847, + 'a', 1893, + 'b', 1880, + 'e', 1844, + 'h', 1851, + 'i', 1891, + 'l', 1879, + 'm', 1902, + 'n', 1901, + 'o', 1907, + 's', 1927, + 'x', 1899, ); if (lookahead == '\t' || lookahead == ' ') SKIP(146); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 140: ADVANCE_MAP( - '!', 1792, - '#', 2187, - '(', 1560, - '*', 1511, - '+', 1574, - '-', 1485, - '.', 1789, - '/', 1566, - '<', 1549, - '=', 1793, - '>', 1479, - 'a', 1864, - 'b', 1851, - 'e', 1865, - 'h', 1822, - 'i', 1862, - 'l', 1850, - 'm', 1873, - 'n', 1872, - 'o', 1878, - 's', 1898, - 'x', 1870, + '!', 1821, + '#', 2216, + '(', 1589, + '*', 1540, + '+', 1603, + '-', 1514, + '.', 1818, + '/', 1595, + '<', 1578, + '=', 1822, + '>', 1508, + 'a', 1893, + 'b', 1880, + 'e', 1894, + 'h', 1851, + 'i', 1891, + 'l', 1879, + 'm', 1902, + 'n', 1901, + 'o', 1907, + 's', 1927, + 'x', 1899, ); if (lookahead == '\t' || lookahead == ' ') SKIP(146); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 141: ADVANCE_MAP( - '!', 1792, - '#', 2187, - '(', 1560, - '*', 1511, - '+', 1574, - '-', 1485, - '.', 1593, - '/', 1566, - '<', 1549, - '=', 1793, - '>', 1479, - 'E', 1818, - 'a', 1864, - 'b', 1851, - 'e', 1815, - 'h', 1822, - 'i', 1862, - 'l', 1850, - 'm', 1873, - 'n', 1872, - 'o', 1878, - 's', 1898, - 'x', 1870, + '!', 1821, + '#', 2216, + '(', 1589, + '*', 1540, + '+', 1603, + '-', 1514, + '.', 1622, + '/', 1595, + '<', 1578, + '=', 1822, + '>', 1508, + 'E', 1847, + 'a', 1893, + 'b', 1880, + 'e', 1844, + 'h', 1851, + 'i', 1891, + 'l', 1879, + 'm', 1902, + 'n', 1901, + 'o', 1907, + 's', 1927, + 'x', 1899, ); if (lookahead == '\t' || lookahead == ' ') SKIP(146); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 142: ADVANCE_MAP( - '!', 1792, - '#', 2187, - '(', 1560, - '*', 1511, - '+', 1574, - '-', 1485, - '/', 1566, - '<', 1549, - '=', 1793, - '>', 1479, - 'E', 1818, - '_', 1812, - 'a', 1864, - 'b', 1851, - 'e', 1815, - 'h', 1822, - 'i', 1862, - 'l', 1850, - 'm', 1873, - 'n', 1872, - 'o', 1878, - 's', 1898, - 'x', 1870, + '!', 1821, + '#', 2216, + '(', 1589, + '*', 1540, + '+', 1603, + '-', 1514, + '/', 1595, + '<', 1578, + '=', 1822, + '>', 1508, + 'E', 1847, + '_', 1841, + 'a', 1893, + 'b', 1880, + 'e', 1844, + 'h', 1851, + 'i', 1891, + 'l', 1879, + 'm', 1902, + 'n', 1901, + 'o', 1907, + 's', 1927, + 'x', 1899, ); if (lookahead == '\t' || lookahead == ' ') SKIP(146); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 143: ADVANCE_MAP( - '!', 1792, - '#', 2187, - '(', 1560, - '*', 1511, - '+', 1574, - '-', 1485, - '/', 1566, - '<', 1549, - '=', 1793, - '>', 1479, - 'E', 1818, - 'a', 1864, - 'b', 1851, - 'e', 1815, - 'h', 1822, - 'i', 1862, - 'l', 1850, - 'm', 1873, - 'n', 1872, - 'o', 1878, - 's', 1898, - 'x', 1870, + '!', 1821, + '#', 2216, + '(', 1589, + '*', 1540, + '+', 1603, + '-', 1514, + '/', 1595, + '<', 1578, + '=', 1822, + '>', 1508, + 'E', 1847, + 'a', 1893, + 'b', 1880, + 'e', 1844, + 'h', 1851, + 'i', 1891, + 'l', 1879, + 'm', 1902, + 'n', 1901, + 'o', 1907, + 's', 1927, + 'x', 1899, ); if (lookahead == '\t' || lookahead == ' ') SKIP(146); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 144: ADVANCE_MAP( - '!', 1792, - '#', 2187, - '(', 1560, - '*', 1511, - '+', 1574, - '-', 1485, - '/', 1566, - '<', 1549, - '=', 1793, - '>', 1479, - 'a', 1864, - 'b', 1851, - 'e', 1865, - 'h', 1822, - 'i', 1862, - 'l', 1850, - 'm', 1873, - 'n', 1872, - 'o', 1878, - 's', 1898, - 'x', 1870, + '!', 1821, + '#', 2216, + '(', 1589, + '*', 1540, + '+', 1603, + '-', 1514, + '/', 1595, + '<', 1578, + '=', 1822, + '>', 1508, + 'a', 1893, + 'b', 1880, + 'e', 1894, + 'h', 1851, + 'i', 1891, + 'l', 1879, + 'm', 1902, + 'n', 1901, + 'o', 1907, + 's', 1927, + 'x', 1899, ); if (lookahead == '\t' || lookahead == ' ') SKIP(146); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 145: ADVANCE_MAP( '!', 320, - '#', 2187, - '$', 1469, - '*', 1511, - '+', 1576, - '-', 1493, - '.', 336, - '/', 1566, - '<', 1549, + '#', 2216, + '$', 1498, + '*', 1540, + '+', 1605, + '-', 1522, + '.', 337, + '/', 1595, + '<', 1578, '=', 321, - '>', 1479, - 'a', 416, - 'b', 395, - 'e', 420, - 'h', 340, - 'i', 417, - 'l', 394, - 'm', 431, - 'n', 429, - 'o', 446, - 's', 480, - 'x', 426, + '>', 1508, + 'a', 424, + 'b', 400, + 'e', 428, + 'h', 341, + 'i', 425, + 'l', 399, + 'm', 440, + 'n', 438, + 'o', 456, + 's', 490, + 'x', 435, ); if (lookahead == '\t' || lookahead == ' ') SKIP(145); @@ -14982,715 +15344,715 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 146: ADVANCE_MAP( '!', 320, - '#', 2187, - '*', 1511, - '+', 1574, - '-', 1485, - '/', 1566, - '<', 1549, + '#', 2216, + '*', 1540, + '+', 1603, + '-', 1514, + '/', 1595, + '<', 1578, '=', 321, - '>', 1479, - 'a', 416, - 'b', 395, - 'e', 420, - 'h', 340, - 'i', 417, - 'l', 394, - 'm', 431, - 'n', 429, - 'o', 446, - 's', 480, - 'x', 426, + '>', 1508, + 'a', 424, + 'b', 400, + 'e', 428, + 'h', 341, + 'i', 425, + 'l', 399, + 'm', 440, + 'n', 438, + 'o', 456, + 's', 490, + 'x', 435, ); if (lookahead == '\t' || lookahead == ' ') SKIP(146); END_STATE(); case 147: ADVANCE_MAP( - '"', 1684, - '#', 2187, - '$', 1470, - '\'', 1687, - '(', 1560, - '+', 1999, + '"', 1713, + '#', 2216, + '$', 1499, + '\'', 1716, + '(', 1589, + '+', 2028, '-', 308, - '.', 1997, - '0', 1623, - ';', 1715, - 'N', 2046, - '[', 1464, - '_', 2011, - '`', 1691, - 'f', 2014, - 'n', 2042, - 't', 2029, - '{', 1497, + '.', 2026, + '0', 1652, + ';', 1744, + 'N', 2075, + '[', 1493, + '_', 2040, + '`', 1720, + 'f', 2043, + 'n', 2071, + 't', 2058, + '{', 1526, '\t', 150, ' ', 150, - 'I', 2050, - 'i', 2050, + 'I', 2079, + 'i', 2079, ); if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(318); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1668); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2069); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2098); END_STATE(); case 148: ADVANCE_MAP( - '"', 1684, - '#', 2187, - '$', 1470, - '\'', 1687, - '(', 1466, - '+', 1579, - '-', 1490, - '.', 700, - '0', 1627, - ':', 1462, - '<', 1140, - '>', 1478, - '@', 1480, - 'I', 808, - 'N', 804, - ']', 1465, - '_', 715, - '`', 1691, - 'a', 753, - 'c', 720, - 'd', 730, - 'e', 758, - 'f', 722, - 'i', 714, - 'l', 738, - 'm', 724, - 'n', 797, - 't', 771, - 'u', 784, - 'w', 750, - '}', 1498, - '\t', 1711, - ' ', 1711, + '"', 1713, + '#', 2216, + '$', 1499, + '\'', 1716, + '(', 1495, + '+', 1608, + '-', 1519, + '.', 711, + '0', 1656, + ':', 1491, + '<', 1164, + '>', 1507, + '@', 1509, + 'I', 824, + 'N', 820, + ']', 1494, + '_', 726, + '`', 1720, + 'a', 765, + 'c', 731, + 'd', 742, + 'e', 772, + 'f', 732, + 'i', 725, + 'l', 750, + 'm', 736, + 'n', 812, + 't', 786, + 'u', 799, + 'w', 762, + '}', 1527, + '\t', 1740, + ' ', 1740, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1706); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1643); + lookahead == ',') ADVANCE(1735); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1672); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(823); + (lookahead < '{' || '}' < lookahead)) ADVANCE(839); END_STATE(); case 149: ADVANCE_MAP( - '"', 1684, - '#', 2187, - '$', 1470, - '\'', 1687, - '(', 1466, - '+', 1999, + '"', 1713, + '#', 2216, + '$', 1499, + '\'', 1716, + '(', 1495, + '+', 2028, '-', 308, - '.', 1997, - '0', 1623, - ':', 1712, - 'N', 2046, - '[', 1464, - '_', 2011, - '`', 1691, - 'f', 2014, - 'n', 2042, - 't', 2029, - '{', 1497, + '.', 2026, + '0', 1652, + ':', 1741, + 'N', 2075, + '[', 1493, + '_', 2040, + '`', 1720, + 'f', 2043, + 'n', 2071, + 't', 2058, + '{', 1526, ); if (lookahead == '\t' || lookahead == ' ') SKIP(149); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2050); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); + lookahead == 'i') ADVANCE(2079); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1668); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || ';' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2069); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2098); END_STATE(); case 150: ADVANCE_MAP( - '"', 1684, - '#', 2187, - '$', 1470, - '\'', 1687, - '(', 1466, - '+', 1999, + '"', 1713, + '#', 2216, + '$', 1499, + '\'', 1716, + '(', 1495, + '+', 2028, '-', 308, - '.', 1997, - '0', 1623, - ';', 1715, - 'N', 2046, - '[', 1464, - '_', 2011, - '`', 1691, - 'f', 2014, - 'n', 2042, - 't', 2029, - '{', 1497, + '.', 2026, + '0', 1652, + ';', 1744, + 'N', 2075, + '[', 1493, + '_', 2040, + '`', 1720, + 'f', 2043, + 'n', 2071, + 't', 2058, + '{', 1526, '\t', 150, ' ', 150, - 'I', 2050, - 'i', 2050, + 'I', 2079, + 'i', 2079, ); if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(318); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1668); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2069); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2098); END_STATE(); case 151: ADVANCE_MAP( - '"', 1684, - '#', 2187, - '$', 1470, - '\'', 1687, - '(', 1466, - '+', 1999, + '"', 1713, + '#', 2216, + '$', 1499, + '\'', 1716, + '(', 1495, + '+', 2028, '-', 308, - '.', 1997, - '0', 1623, - 'N', 2046, - '[', 1464, - '_', 2011, - '`', 1691, - 'f', 2014, - 'n', 2042, - 't', 2029, - '{', 1497, + '.', 2026, + '0', 1652, + 'N', 2075, + '[', 1493, + '_', 2040, + '`', 1720, + 'f', 2043, + 'n', 2071, + 't', 2058, + '{', 1526, ); if (lookahead == '\t' || lookahead == ' ') SKIP(151); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2050); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); + lookahead == 'i') ADVANCE(2079); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1668); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2069); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2098); END_STATE(); case 152: ADVANCE_MAP( - '"', 1684, - '#', 2187, - '$', 1470, - '\'', 1687, - '(', 1466, - '+', 1999, + '"', 1713, + '#', 2216, + '$', 1499, + '\'', 1716, + '(', 1495, + '+', 2028, '-', 308, - '.', 1997, - ':', 1712, - 'N', 2046, - '_', 2011, - '`', 1691, - 'f', 2014, - 'n', 2042, - 't', 2029, + '.', 2026, + ':', 1741, + 'N', 2075, + '_', 2040, + '`', 1720, + 'f', 2043, + 'n', 2071, + 't', 2058, ); if (lookahead == '\t' || lookahead == ' ') SKIP(152); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2050); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1639); + lookahead == 'i') ADVANCE(2079); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1668); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || ';' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2069); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2098); END_STATE(); case 153: ADVANCE_MAP( - '"', 1684, - '#', 2187, - '$', 1470, - '\'', 1687, - '(', 1466, - '+', 1999, + '"', 1713, + '#', 2216, + '$', 1499, + '\'', 1716, + '(', 1495, + '+', 2028, '-', 308, - '.', 1997, - 'N', 2046, - '_', 2011, - '`', 1691, - 'f', 2014, - 'n', 2042, - 't', 2029, + '.', 2026, + 'N', 2075, + '_', 2040, + '`', 1720, + 'f', 2043, + 'n', 2071, + 't', 2058, ); if (lookahead == '\t' || lookahead == ' ') SKIP(153); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2050); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1639); + lookahead == 'i') ADVANCE(2079); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1668); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '[' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2069); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2098); END_STATE(); case 154: ADVANCE_MAP( - '"', 1684, - '#', 2187, - '$', 1470, - '\'', 1687, - '(', 1466, - '+', 2081, - '-', 2080, - '.', 2082, - '0', 1624, - 'N', 2099, - '[', 1464, - ']', 1465, - '_', 2086, - '`', 1691, - 'f', 2089, - 'n', 2098, - 't', 2095, - '{', 1497, - '\t', 1711, - ' ', 1711, - 'I', 2105, - 'i', 2105, + '"', 1713, + '#', 2216, + '$', 1499, + '\'', 1716, + '(', 1495, + '+', 2110, + '-', 2109, + '.', 2111, + '0', 1653, + 'N', 2128, + '[', 1493, + ']', 1494, + '_', 2115, + '`', 1720, + 'f', 2118, + 'n', 2127, + 't', 2124, + '{', 1526, + '\t', 1740, + ' ', 1740, + 'I', 2134, + 'i', 2134, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1706); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); + lookahead == ',') ADVANCE(1735); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1669); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2127); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2156); END_STATE(); case 155: - if (lookahead == '"') ADVANCE(1684); - if (lookahead == '#') ADVANCE(2187); - if (lookahead == '$') ADVANCE(1470); - if (lookahead == '\'') ADVANCE(1687); - if (lookahead == '(') ADVANCE(1466); - if (lookahead == '`') ADVANCE(1691); + if (lookahead == '"') ADVANCE(1713); + if (lookahead == '#') ADVANCE(2216); + if (lookahead == '$') ADVANCE(1499); + if (lookahead == '\'') ADVANCE(1716); + if (lookahead == '(') ADVANCE(1495); + if (lookahead == '`') ADVANCE(1720); if (lookahead == '\t' || lookahead == ' ') SKIP(155); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1986); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2015); END_STATE(); case 156: ADVANCE_MAP( - '"', 1684, - '#', 2187, - '$', 1469, - '\'', 1687, - '(', 1466, - '+', 1999, - ',', 1706, + '"', 1713, + '#', 2216, + '$', 1498, + '\'', 1716, + '(', 1495, + '+', 2028, + ',', 1735, '-', 308, - '.', 1997, - '0', 1623, - 'N', 2046, - '[', 1464, - '_', 1500, - '`', 1691, - 'f', 2014, - 'n', 2042, - 't', 2029, - '{', 1497, - '}', 1498, - '\t', 1708, - ' ', 1708, - 'I', 2050, - 'i', 2050, + '.', 2026, + '0', 1652, + 'N', 2075, + '[', 1493, + '_', 1529, + '`', 1720, + 'f', 2043, + 'n', 2071, + 't', 2058, + '{', 1526, + '}', 1527, + '\t', 1737, + ' ', 1737, + 'I', 2079, + 'i', 2079, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1706); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1735); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1668); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2069); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2098); END_STATE(); case 157: ADVANCE_MAP( - '"', 1684, - '#', 2187, - '$', 1469, - '\'', 1687, - '(', 1466, - '+', 1999, + '"', 1713, + '#', 2216, + '$', 1498, + '\'', 1716, + '(', 1495, + '+', 2028, '-', 308, - '.', 1997, - '0', 1623, - 'N', 2046, - '[', 1464, - '_', 2011, - '`', 1691, - 'f', 2014, - 'n', 2042, - 't', 2029, - '{', 1497, + '.', 2026, + '0', 1652, + 'N', 2075, + '[', 1493, + '_', 2040, + '`', 1720, + 'f', 2043, + 'n', 2071, + 't', 2058, + '{', 1526, ); if (lookahead == '\t' || lookahead == ' ') SKIP(157); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2050); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); + lookahead == 'i') ADVANCE(2079); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1668); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2069); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2098); END_STATE(); case 158: ADVANCE_MAP( - '"', 1684, - '#', 2187, - '$', 1469, - '\'', 1687, - '(', 1466, - '+', 2081, - '-', 2080, - '.', 2079, - '0', 1624, - 'N', 2099, - '[', 1464, - ']', 1465, - '_', 2086, - '`', 1691, - 'f', 2089, - 'n', 2098, - 't', 2095, - '{', 1497, - '\t', 1711, - ' ', 1711, - 'I', 2105, - 'i', 2105, + '"', 1713, + '#', 2216, + '$', 1498, + '\'', 1716, + '(', 1495, + '+', 2110, + '-', 2109, + '.', 2108, + '0', 1653, + 'N', 2128, + '[', 1493, + ']', 1494, + '_', 2115, + '`', 1720, + 'f', 2118, + 'n', 2127, + 't', 2124, + '{', 1526, + '\t', 1740, + ' ', 1740, + 'I', 2134, + 'i', 2134, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1706); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); + lookahead == ',') ADVANCE(1735); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1669); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2127); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2156); END_STATE(); case 159: ADVANCE_MAP( - '"', 1684, - '#', 2187, - '\'', 1687, - '(', 1560, - '+', 701, + '"', 1713, + '#', 2216, + '\'', 1716, + '(', 1589, + '+', 712, '-', 308, - '.', 717, - ':', 1462, - '>', 1478, - 'I', 808, - 'N', 804, - ']', 1465, - '_', 715, - '`', 1691, - 'a', 753, - 'c', 720, - 'd', 730, - 'e', 758, - 'f', 722, - 'i', 714, - 'l', 738, - 'm', 724, - 'n', 797, - 't', 771, - 'u', 784, - 'w', 750, - '}', 1498, - '\t', 1711, - ' ', 1711, + '.', 728, + ':', 1491, + '>', 1507, + 'I', 824, + 'N', 820, + ']', 1494, + '_', 726, + '`', 1720, + 'a', 765, + 'c', 731, + 'd', 742, + 'e', 772, + 'f', 732, + 'i', 725, + 'l', 750, + 'm', 736, + 'n', 812, + 't', 786, + 'u', 799, + 'w', 762, + '}', 1527, + '\t', 1740, + ' ', 1740, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1706); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(823); + lookahead == ',') ADVANCE(1735); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(839); END_STATE(); case 160: ADVANCE_MAP( - '"', 1684, - '#', 2187, - '\'', 1687, - '+', 701, + '"', 1713, + '#', 2216, + '\'', 1716, + '+', 712, '-', 308, - '.', 717, - ':', 1712, - 'I', 808, - 'N', 804, - '_', 715, - '`', 1691, - 'a', 753, - 'c', 720, - 'd', 730, - 'e', 758, - 'f', 722, - 'i', 714, - 'l', 738, - 'm', 724, - 'n', 797, - 't', 771, - 'u', 784, - 'w', 750, + '.', 728, + ':', 1741, + 'I', 824, + 'N', 820, + '_', 726, + '`', 1720, + 'a', 765, + 'c', 731, + 'd', 742, + 'e', 772, + 'f', 732, + 'i', 725, + 'l', 750, + 'm', 736, + 'n', 812, + 't', 786, + 'u', 799, + 'w', 762, ); if (lookahead == '\t' || lookahead == ' ') SKIP(160); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(823); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(839); END_STATE(); case 161: ADVANCE_MAP( - '"', 1684, - '#', 2187, - '\'', 1687, - '+', 701, + '"', 1713, + '#', 2216, + '\'', 1716, + '+', 712, '-', 299, - '.', 1725, - '?', 1716, - 'I', 808, - 'N', 804, - '_', 715, - '`', 1691, - 'a', 753, - 'c', 720, - 'd', 730, - 'e', 758, - 'f', 722, - 'i', 714, - 'l', 738, - 'm', 724, - 'n', 797, - 't', 771, - 'u', 784, - 'w', 750, + '.', 1754, + '?', 1745, + 'I', 824, + 'N', 820, + '_', 726, + '`', 1720, + 'a', 765, + 'c', 731, + 'd', 742, + 'e', 772, + 'f', 732, + 'i', 725, + 'l', 750, + 'm', 736, + 'n', 812, + 't', 786, + 'u', 799, + 'w', 762, ); if (lookahead == '\t' || lookahead == ' ') SKIP(161); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(823); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(839); END_STATE(); case 162: ADVANCE_MAP( - '"', 1684, - '#', 2187, - '\'', 1687, - '+', 701, + '"', 1713, + '#', 2216, + '\'', 1716, + '+', 712, '-', 299, - '.', 1725, - 'I', 808, - 'N', 804, - '_', 715, - '`', 1691, - 'a', 753, - 'c', 720, - 'd', 730, - 'e', 758, - 'f', 722, - 'i', 714, - 'l', 738, - 'm', 724, - 'n', 797, - 't', 771, - 'u', 784, - 'w', 750, + '.', 1754, + 'I', 824, + 'N', 820, + '_', 726, + '`', 1720, + 'a', 765, + 'c', 731, + 'd', 742, + 'e', 772, + 'f', 732, + 'i', 725, + 'l', 750, + 'm', 736, + 'n', 812, + 't', 786, + 'u', 799, + 'w', 762, ); if (lookahead == '\t' || lookahead == ' ') SKIP(162); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(823); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(839); END_STATE(); case 163: ADVANCE_MAP( - '"', 1684, - '#', 2187, - '\'', 1687, - '+', 701, + '"', 1713, + '#', 2216, + '\'', 1716, + '+', 712, '-', 299, - '.', 717, - ':', 1712, - 'I', 808, - 'N', 804, - '_', 715, - '`', 1691, - 'a', 753, - 'c', 720, - 'd', 730, - 'e', 758, - 'f', 722, - 'i', 714, - 'l', 738, - 'm', 724, - 'n', 797, - 't', 771, - 'u', 784, - 'w', 750, + '.', 728, + ':', 1741, + 'I', 824, + 'N', 820, + '_', 726, + '`', 1720, + 'a', 765, + 'c', 731, + 'd', 742, + 'e', 772, + 'f', 732, + 'i', 725, + 'l', 750, + 'm', 736, + 'n', 812, + 't', 786, + 'u', 799, + 'w', 762, ); if (lookahead == '\t' || lookahead == ' ') SKIP(163); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(823); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(839); END_STATE(); case 164: ADVANCE_MAP( - '"', 1684, - '#', 2187, - '\'', 1687, - '+', 701, + '"', 1713, + '#', 2216, + '\'', 1716, + '+', 712, '-', 299, - '.', 717, - '=', 1728, - 'I', 1442, - 'N', 1437, - '_', 1378, - '`', 1691, - 'a', 1402, - 'c', 1379, - 'd', 1386, - 'e', 1407, - 'f', 1380, - 'i', 1377, - 'l', 1393, - 'm', 1382, - 'n', 1433, - 't', 1416, - 'u', 1422, - 'w', 1399, + '.', 728, + '=', 1757, + 'I', 1471, + 'N', 1466, + '_', 1402, + '`', 1720, + 'a', 1427, + 'c', 1403, + 'd', 1411, + 'e', 1434, + 'f', 1404, + 'i', 1401, + 'l', 1418, + 'm', 1407, + 'n', 1461, + 't', 1444, + 'u', 1450, + 'w', 1424, ); if (lookahead == '\t' || lookahead == ' ') SKIP(165); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1378); - if (set_contains(sym_attribute_identifier_character_set_1, 685, lookahead)) ADVANCE(1446); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(823); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1402); + if (set_contains(sym_attribute_identifier_character_set_1, 685, lookahead)) ADVANCE(1475); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(839); END_STATE(); case 165: ADVANCE_MAP( - '"', 1684, - '#', 2187, - '\'', 1687, - '+', 701, + '"', 1713, + '#', 2216, + '\'', 1716, + '+', 712, '-', 299, - '.', 717, - 'I', 808, - 'N', 804, - '_', 715, - '`', 1691, - 'a', 753, - 'c', 720, - 'd', 730, - 'e', 758, - 'f', 722, - 'i', 714, - 'l', 738, - 'm', 724, - 'n', 797, - 't', 771, - 'u', 784, - 'w', 750, + '.', 728, + 'I', 824, + 'N', 820, + '_', 726, + '`', 1720, + 'a', 765, + 'c', 731, + 'd', 742, + 'e', 772, + 'f', 732, + 'i', 725, + 'l', 750, + 'm', 736, + 'n', 812, + 't', 786, + 'u', 799, + 'w', 762, ); if (lookahead == '\t' || lookahead == ' ') SKIP(165); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(823); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(839); END_STATE(); case 166: ADVANCE_MAP( - '"', 1684, - '#', 2187, - '\'', 1687, - '+', 701, - '-', 1781, - '.', 1595, - 'E', 708, - 'G', 713, - 'I', 808, - 'K', 713, - 'M', 713, - 'N', 804, - 'P', 713, - 'T', 713, - '_', 715, - '`', 1691, - 'a', 753, - 'c', 720, - 'd', 721, - 'e', 707, - 'f', 722, - 'g', 712, - 'h', 773, - 'i', 714, - 'k', 712, - 'l', 738, - 'm', 709, - 'n', 781, - 'p', 712, - 's', 739, - 't', 711, - 'u', 783, - 'w', 749, - 0xb5, 782, + '"', 1713, + '#', 2216, + '\'', 1716, + '+', 712, + '-', 1810, + '.', 1624, + 'E', 719, + 'G', 724, + 'I', 824, + 'K', 724, + 'M', 724, + 'N', 820, + 'P', 724, + 'T', 724, + '_', 726, + '`', 1720, + 'a', 765, + 'c', 731, + 'd', 733, + 'e', 718, + 'f', 732, + 'g', 723, + 'h', 788, + 'i', 725, + 'k', 723, + 'l', 750, + 'm', 720, + 'n', 796, + 'p', 723, + 's', 751, + 't', 722, + 'u', 798, + 'w', 761, + 0xb5, 797, ); if (lookahead == '\t' || lookahead == ' ') SKIP(165); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1652); + lookahead == 'b') ADVANCE(1681); if (lookahead == '$' || lookahead == ',' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || lookahead == '@' || - lookahead == '^') ADVANCE(1933); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); + lookahead == '^') ADVANCE(1962); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(823); + (lookahead < '{' || '}' < lookahead)) ADVANCE(839); END_STATE(); case 167: ADVANCE_MAP( - '"', 1684, - '#', 2187, - '\'', 1687, - '+', 701, - '-', 1781, - '.', 717, - 'I', 808, - 'N', 804, - '[', 1664, - '_', 715, - '`', 1691, - 'a', 753, - 'c', 720, - 'd', 730, - 'e', 758, - 'f', 722, - 'i', 714, - 'l', 738, - 'm', 724, - 'n', 797, - 't', 771, - 'u', 784, - 'w', 750, + '"', 1713, + '#', 2216, + '\'', 1716, + '+', 712, + '-', 1810, + '.', 728, + 'I', 824, + 'N', 820, + '[', 1693, + '_', 726, + '`', 1720, + 'a', 765, + 'c', 731, + 'd', 742, + 'e', 772, + 'f', 732, + 'i', 725, + 'l', 750, + 'm', 736, + 'n', 812, + 't', 786, + 'u', 799, + 'w', 762, ); if (lookahead == '\t' || lookahead == ' ') SKIP(165); @@ -15699,514 +16061,514 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || lookahead == '@' || - lookahead == '^') ADVANCE(1933); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); + lookahead == '^') ADVANCE(1962); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(823); + (lookahead < '{' || '}' < lookahead)) ADVANCE(839); END_STATE(); case 168: ADVANCE_MAP( - '"', 1684, - '#', 2187, - '\'', 1687, - '+', 701, - '-', 1781, - '.', 699, - 'E', 708, - 'G', 713, - 'I', 808, - 'K', 713, - 'M', 713, - 'N', 804, - 'P', 713, - 'T', 713, - '_', 715, - '`', 1691, - 'a', 753, - 'c', 720, - 'd', 721, - 'e', 707, - 'f', 722, - 'g', 712, - 'h', 773, - 'i', 714, - 'k', 712, - 'l', 738, - 'm', 709, - 'n', 781, - 'p', 712, - 's', 739, - 't', 711, - 'u', 783, - 'w', 749, - 0xb5, 782, + '"', 1713, + '#', 2216, + '\'', 1716, + '+', 712, + '-', 1810, + '.', 710, + 'E', 719, + 'G', 724, + 'I', 824, + 'K', 724, + 'M', 724, + 'N', 820, + 'P', 724, + 'T', 724, + '_', 726, + '`', 1720, + 'a', 765, + 'c', 731, + 'd', 733, + 'e', 718, + 'f', 732, + 'g', 723, + 'h', 788, + 'i', 725, + 'k', 723, + 'l', 750, + 'm', 720, + 'n', 796, + 'p', 723, + 's', 751, + 't', 722, + 'u', 798, + 'w', 761, + 0xb5, 797, ); if (lookahead == '\t' || lookahead == ' ') SKIP(165); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1652); + lookahead == 'b') ADVANCE(1681); if (lookahead == '$' || lookahead == ',' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || lookahead == '@' || - lookahead == '^') ADVANCE(1933); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); + lookahead == '^') ADVANCE(1962); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(823); + (lookahead < '{' || '}' < lookahead)) ADVANCE(839); END_STATE(); case 169: ADVANCE_MAP( - '"', 1684, - '#', 2187, - '\'', 1687, - '+', 701, - '-', 1781, - '.', 699, - 'E', 708, - 'G', 713, - 'I', 808, - 'K', 713, - 'M', 713, - 'N', 804, - 'P', 713, - 'T', 713, - '_', 718, - '`', 1691, - 'a', 753, - 'c', 720, - 'd', 721, - 'e', 707, - 'f', 722, - 'g', 712, - 'h', 773, - 'i', 714, - 'k', 712, - 'l', 738, - 'm', 709, - 'n', 781, - 'p', 712, - 's', 739, - 't', 711, - 'u', 783, - 'w', 749, - 0xb5, 782, + '"', 1713, + '#', 2216, + '\'', 1716, + '+', 712, + '-', 1810, + '.', 710, + 'E', 719, + 'G', 724, + 'I', 824, + 'K', 724, + 'M', 724, + 'N', 820, + 'P', 724, + 'T', 724, + '_', 730, + '`', 1720, + 'a', 765, + 'c', 731, + 'd', 733, + 'e', 718, + 'f', 732, + 'g', 723, + 'h', 788, + 'i', 725, + 'k', 723, + 'l', 750, + 'm', 720, + 'n', 796, + 'p', 723, + 's', 751, + 't', 722, + 'u', 798, + 'w', 761, + 0xb5, 797, ); if (lookahead == '\t' || lookahead == ' ') SKIP(165); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1652); + lookahead == 'b') ADVANCE(1681); if (lookahead == '$' || lookahead == ',' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || lookahead == '@' || - lookahead == '^') ADVANCE(1933); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + lookahead == '^') ADVANCE(1962); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(823); + (lookahead < '{' || '}' < lookahead)) ADVANCE(839); END_STATE(); case 170: ADVANCE_MAP( - '"', 1684, - '#', 2187, - '\'', 1687, - '+', 701, - '-', 1781, - '.', 699, - 'E', 713, - 'G', 713, - 'I', 808, - 'K', 713, - 'M', 713, - 'N', 804, - 'P', 713, - 'T', 713, - '_', 715, - '`', 1691, - 'a', 753, - 'c', 720, - 'd', 721, - 'e', 710, - 'f', 722, - 'g', 712, - 'h', 773, - 'i', 714, - 'k', 712, - 'l', 738, - 'm', 709, - 'n', 781, - 'p', 712, - 's', 739, - 't', 711, - 'u', 783, - 'w', 749, - 0xb5, 782, + '"', 1713, + '#', 2216, + '\'', 1716, + '+', 712, + '-', 1810, + '.', 710, + 'E', 724, + 'G', 724, + 'I', 824, + 'K', 724, + 'M', 724, + 'N', 820, + 'P', 724, + 'T', 724, + '_', 726, + '`', 1720, + 'a', 765, + 'c', 731, + 'd', 733, + 'e', 721, + 'f', 732, + 'g', 723, + 'h', 788, + 'i', 725, + 'k', 723, + 'l', 750, + 'm', 720, + 'n', 796, + 'p', 723, + 's', 751, + 't', 722, + 'u', 798, + 'w', 761, + 0xb5, 797, ); if (lookahead == '\t' || lookahead == ' ') SKIP(165); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1652); + lookahead == 'b') ADVANCE(1681); if (lookahead == '$' || lookahead == ',' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || lookahead == '@' || - lookahead == '^') ADVANCE(1933); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); + lookahead == '^') ADVANCE(1962); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(823); + (lookahead < '{' || '}' < lookahead)) ADVANCE(839); END_STATE(); case 171: ADVANCE_MAP( - '"', 1684, - '#', 2187, - '\'', 1687, - '+', 2138, - '-', 2137, - '.', 2136, - '>', 1478, - 'N', 2153, - '_', 2140, - '`', 1691, - 'f', 2143, - 'n', 2152, - 't', 2149, - '\t', 1711, - ' ', 1711, - 'I', 2159, - 'i', 2159, + '"', 1713, + '#', 2216, + '\'', 1716, + '+', 2167, + '-', 2166, + '.', 2165, + '>', 1507, + 'N', 2182, + '_', 2169, + '`', 1720, + 'f', 2172, + 'n', 2181, + 't', 2178, + '\t', 1740, + ' ', 1740, + 'I', 2188, + 'i', 2188, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1706); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); + lookahead == ',') ADVANCE(1735); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || ';' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2173); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2202); END_STATE(); case 172: - if (lookahead == '"') ADVANCE(1684); - if (lookahead == '#') ADVANCE(2187); - if (lookahead == '\'') ADVANCE(1687); - if (lookahead == '`') ADVANCE(1691); + if (lookahead == '"') ADVANCE(1713); + if (lookahead == '#') ADVANCE(2216); + if (lookahead == '\'') ADVANCE(1716); + if (lookahead == '`') ADVANCE(1720); if (lookahead == '\t' || lookahead == ' ') SKIP(172); END_STATE(); case 173: ADVANCE_MAP( - '"', 1684, - '#', 2190, - '$', 1471, - '\'', 1687, - '(', 1466, - '+', 847, - '-', 846, - '.', 848, - '0', 864, - ':', 1712, - 'N', 1019, - '[', 1464, - '_', 865, - '`', 1691, - 'f', 873, - 'n', 1009, - 't', 958, - '{', 1497, + '"', 1713, + '#', 2219, + '$', 1500, + '\'', 1716, + '(', 1495, + '+', 863, + '-', 862, + '.', 864, + '0', 880, + ':', 1741, + 'N', 1040, + '[', 1493, + '_', 881, + '`', 1720, + 'f', 889, + 'n', 1029, + 't', 978, + '{', 1526, ); if (lookahead == '\t' || lookahead == ' ') SKIP(149); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1024); + lookahead == 'i') ADVANCE(1045); if (lookahead == ',' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(2069); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(871); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(2098); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(887); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1045); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1066); END_STATE(); case 174: ADVANCE_MAP( - '"', 1684, - '#', 2190, - '$', 1471, - '\'', 1687, - '(', 1466, - '+', 847, - '-', 846, - '.', 848, - '0', 864, - 'N', 1019, - '[', 1464, - '_', 865, - '`', 1691, - 'f', 873, - 'n', 1009, - 't', 958, - '{', 1497, + '"', 1713, + '#', 2219, + '$', 1500, + '\'', 1716, + '(', 1495, + '+', 863, + '-', 862, + '.', 864, + '0', 880, + 'N', 1040, + '[', 1493, + '_', 881, + '`', 1720, + 'f', 889, + 'n', 1029, + 't', 978, + '{', 1526, ); if (lookahead == '\t' || lookahead == ' ') SKIP(151); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1024); + lookahead == 'i') ADVANCE(1045); if (lookahead == ',' || lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(2069); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(871); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(2098); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(887); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1045); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1066); END_STATE(); case 175: ADVANCE_MAP( - '"', 1684, - '#', 2190, - '$', 1471, - '\'', 1687, - '(', 1466, - '+', 847, - '-', 846, - '.', 848, - ':', 1712, - 'N', 1019, - '_', 865, - '`', 1691, - 'f', 873, - 'n', 1009, - 't', 958, + '"', 1713, + '#', 2219, + '$', 1500, + '\'', 1716, + '(', 1495, + '+', 863, + '-', 862, + '.', 864, + ':', 1741, + 'N', 1040, + '_', 881, + '`', 1720, + 'f', 889, + 'n', 1029, + 't', 978, ); if (lookahead == '\t' || lookahead == ' ') SKIP(152); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1024); + lookahead == 'i') ADVANCE(1045); if (lookahead == ',' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(2069); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(871); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(2098); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(887); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1045); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1066); END_STATE(); case 176: ADVANCE_MAP( - '"', 1684, - '#', 2190, - '$', 1471, - '\'', 1687, - '(', 1466, - '+', 847, - '-', 846, - '.', 848, - 'N', 1019, - '_', 865, - '`', 1691, - 'f', 873, - 'n', 1009, - 't', 958, + '"', 1713, + '#', 2219, + '$', 1500, + '\'', 1716, + '(', 1495, + '+', 863, + '-', 862, + '.', 864, + 'N', 1040, + '_', 881, + '`', 1720, + 'f', 889, + 'n', 1029, + 't', 978, ); if (lookahead == '\t' || lookahead == ' ') SKIP(153); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1024); + lookahead == 'i') ADVANCE(1045); if (lookahead == ',' || lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(2069); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(871); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(2098); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(887); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1045); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1066); END_STATE(); case 177: ADVANCE_MAP( - '"', 1684, - '#', 2190, - '\'', 1687, - '+', 847, - '-', 846, - '.', 865, - ':', 1712, - 'I', 1024, - 'N', 1019, - '_', 865, - '`', 1691, - 'a', 931, - 'c', 878, - 'd', 894, - 'e', 934, - 'f', 872, - 'i', 860, - 'l', 904, - 'm', 880, - 'n', 1009, - 't', 963, - 'u', 979, - 'w', 915, + '"', 1713, + '#', 2219, + '\'', 1716, + '+', 863, + '-', 862, + '.', 881, + ':', 1741, + 'I', 1045, + 'N', 1040, + '_', 881, + '`', 1720, + 'a', 949, + 'c', 894, + 'd', 911, + 'e', 953, + 'f', 888, + 'i', 876, + 'l', 921, + 'm', 897, + 'n', 1029, + 't', 983, + 'u', 999, + 'w', 932, ); if (lookahead == '\t' || lookahead == ' ') SKIP(160); if (lookahead == '$' || lookahead == '@' || - lookahead == '^') ADVANCE(1045); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(865); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + lookahead == '^') ADVANCE(1066); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(881); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 178: ADVANCE_MAP( - '"', 1684, - '#', 2190, - '\'', 1687, - '+', 847, - '-', 839, - '.', 865, - ':', 1712, - 'I', 1024, - 'N', 1019, - '_', 865, - '`', 1691, - 'a', 931, - 'c', 878, - 'd', 894, - 'e', 934, - 'f', 872, - 'i', 860, - 'l', 904, - 'm', 880, - 'n', 1009, - 't', 963, - 'u', 979, - 'w', 915, + '"', 1713, + '#', 2219, + '\'', 1716, + '+', 863, + '-', 855, + '.', 881, + ':', 1741, + 'I', 1045, + 'N', 1040, + '_', 881, + '`', 1720, + 'a', 949, + 'c', 894, + 'd', 911, + 'e', 953, + 'f', 888, + 'i', 876, + 'l', 921, + 'm', 897, + 'n', 1029, + 't', 983, + 'u', 999, + 'w', 932, ); if (lookahead == '\t' || lookahead == ' ') SKIP(163); if (lookahead == '$' || lookahead == '@' || - lookahead == '^') ADVANCE(1045); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(865); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + lookahead == '^') ADVANCE(1066); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(881); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 179: - if (lookahead == '"') ADVANCE(1684); - if (lookahead == '#') ADVANCE(1686); - if (lookahead == '\\') ADVANCE(506); + if (lookahead == '"') ADVANCE(1713); + if (lookahead == '#') ADVANCE(1715); + if (lookahead == '\\') ADVANCE(516); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1685); - if (lookahead != 0) ADVANCE(1686); + lookahead == ' ') ADVANCE(1714); + if (lookahead != 0) ADVANCE(1715); END_STATE(); case 180: - if (lookahead == '"') ADVANCE(1701); - if (lookahead == '\'') ADVANCE(1700); + if (lookahead == '"') ADVANCE(1730); + if (lookahead == '\'') ADVANCE(1729); END_STATE(); case 181: - if (lookahead == '"') ADVANCE(1702); - if (lookahead == '#') ADVANCE(1697); - if (lookahead == '(') ADVANCE(1466); - if (lookahead == '\\') ADVANCE(501); + if (lookahead == '"') ADVANCE(1731); + if (lookahead == '#') ADVANCE(1726); + if (lookahead == '(') ADVANCE(1495); + if (lookahead == '\\') ADVANCE(511); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1696); - if (lookahead != 0) ADVANCE(1697); + lookahead == ' ') ADVANCE(1725); + if (lookahead != 0) ADVANCE(1726); END_STATE(); case 182: - if (lookahead == '#') ADVANCE(2187); - if (lookahead == '$') ADVANCE(1469); - if (lookahead == '(') ADVANCE(1560); - if (lookahead == '.') ADVANCE(1603); - if (lookahead == '_') ADVANCE(1812); - if (lookahead == '{') ADVANCE(1497); + if (lookahead == '#') ADVANCE(2216); + if (lookahead == '$') ADVANCE(1498); + if (lookahead == '(') ADVANCE(1589); + if (lookahead == '.') ADVANCE(1632); + if (lookahead == '_') ADVANCE(1841); + if (lookahead == '{') ADVANCE(1526); if (lookahead == '\t' || lookahead == ' ') SKIP(191); if (lookahead == '+' || - lookahead == '-') ADVANCE(1790); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1933); + lookahead == '-') ADVANCE(1819); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1962); END_STATE(); case 183: ADVANCE_MAP( - '#', 2187, - '$', 1469, - '(', 1560, - '.', 1601, - ']', 1465, - '_', 1974, - '}', 1498, - '\t', 1711, - ' ', 1711, - '+', 1960, - '-', 1960, + '#', 2216, + '$', 1498, + '(', 1589, + '.', 1630, + ']', 1494, + '_', 2003, + '}', 1527, + '\t', 1740, + ' ', 1740, + '+', 1989, + '-', 1989, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1706); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1985); + lookahead == ',') ADVANCE(1735); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2014); END_STATE(); case 184: ADVANCE_MAP( - '#', 2187, - '$', 1469, - '(', 1560, - '.', 1971, - '_', 1974, - '}', 1498, - '\t', 1711, - ' ', 1711, - '+', 1960, - '-', 1960, + '#', 2216, + '$', 1498, + '(', 1589, + '.', 2000, + '_', 2003, + '}', 1527, + '\t', 1740, + ' ', 1740, + '+', 1989, + '-', 1989, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1706); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1985); + lookahead == ',') ADVANCE(1735); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2014); END_STATE(); case 185: ADVANCE_MAP( - '#', 2187, - '$', 1469, - '(', 1560, - '.', 1944, - ']', 1465, - '_', 1943, - '\t', 1711, - ' ', 1711, - '+', 1937, - '-', 1937, + '#', 2216, + '$', 1498, + '(', 1589, + '.', 1973, + ']', 1494, + '_', 1972, + '\t', 1740, + ' ', 1740, + '+', 1966, + '-', 1966, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1706); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + lookahead == ',') ADVANCE(1735); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -16214,24 +16576,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1987); END_STATE(); case 186: ADVANCE_MAP( - '#', 2187, - '$', 1469, - '(', 1560, - '.', 1935, - ']', 1465, - '_', 1943, - '\t', 1711, - ' ', 1711, - '+', 1937, - '-', 1937, + '#', 2216, + '$', 1498, + '(', 1589, + '.', 1964, + ']', 1494, + '_', 1972, + '\t', 1740, + ' ', 1740, + '+', 1966, + '-', 1966, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1706); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + lookahead == ',') ADVANCE(1735); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -16239,24 +16601,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1987); END_STATE(); case 187: ADVANCE_MAP( - '#', 2187, - '$', 1469, - '(', 1560, - '.', 1602, - ']', 1465, - '_', 1943, - '\t', 1711, - ' ', 1711, - '+', 1937, - '-', 1937, + '#', 2216, + '$', 1498, + '(', 1589, + '.', 1631, + ']', 1494, + '_', 1972, + '\t', 1740, + ' ', 1740, + '+', 1966, + '-', 1966, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1706); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + lookahead == ',') ADVANCE(1735); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -16264,118 +16626,118 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1987); END_STATE(); case 188: - if (lookahead == '#') ADVANCE(2187); - if (lookahead == '$') ADVANCE(1469); - if (lookahead == '(') ADVANCE(1560); - if (lookahead == '.') ADVANCE(1814); - if (lookahead == '_') ADVANCE(1812); - if (lookahead == '{') ADVANCE(1497); + if (lookahead == '#') ADVANCE(2216); + if (lookahead == '$') ADVANCE(1498); + if (lookahead == '(') ADVANCE(1589); + if (lookahead == '.') ADVANCE(1843); + if (lookahead == '_') ADVANCE(1841); + if (lookahead == '{') ADVANCE(1526); if (lookahead == '\t' || lookahead == ' ') SKIP(191); if (lookahead == '+' || - lookahead == '-') ADVANCE(1790); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1933); + lookahead == '-') ADVANCE(1819); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1962); END_STATE(); case 189: ADVANCE_MAP( - '#', 2187, - '$', 1469, - '(', 1560, - '.', 1597, - '[', 1664, - ']', 1465, - '_', 1943, - '}', 1498, - '\t', 1711, - ' ', 1711, - '+', 1937, - '-', 1937, + '#', 2216, + '$', 1498, + '(', 1589, + '.', 1626, + '[', 1693, + ']', 1494, + '_', 1972, + '}', 1527, + '\t', 1740, + ' ', 1740, + '+', 1966, + '-', 1966, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1706); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + lookahead == ',') ADVANCE(1735); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1987); END_STATE(); case 190: - if (lookahead == '#') ADVANCE(2187); - if (lookahead == '$') ADVANCE(1469); - if (lookahead == '.') ADVANCE(336); - if (lookahead == ']') ADVANCE(1465); + if (lookahead == '#') ADVANCE(2216); + if (lookahead == '$') ADVANCE(1498); + if (lookahead == '.') ADVANCE(337); + if (lookahead == ']') ADVANCE(1494); if (lookahead == '\t' || lookahead == ' ') SKIP(190); if (lookahead == '+' || lookahead == '-') ADVANCE(314); END_STATE(); case 191: - if (lookahead == '#') ADVANCE(2187); - if (lookahead == '$') ADVANCE(1469); - if (lookahead == '.') ADVANCE(336); - if (lookahead == '{') ADVANCE(1497); + if (lookahead == '#') ADVANCE(2216); + if (lookahead == '$') ADVANCE(1498); + if (lookahead == '.') ADVANCE(337); + if (lookahead == '{') ADVANCE(1526); if (lookahead == '\t' || lookahead == ' ') SKIP(191); if (lookahead == '+' || lookahead == '-') ADVANCE(314); END_STATE(); case 192: - if (lookahead == '#') ADVANCE(2187); - if (lookahead == '$') ADVANCE(1469); - if (lookahead == '.') ADVANCE(336); + if (lookahead == '#') ADVANCE(2216); + if (lookahead == '$') ADVANCE(1498); + if (lookahead == '.') ADVANCE(337); if (lookahead == '\t' || lookahead == ' ') SKIP(192); if (lookahead == '+' || lookahead == '-') ADVANCE(314); END_STATE(); case 193: - if (lookahead == '#') ADVANCE(2187); - if (lookahead == '$') ADVANCE(1469); - if (lookahead == ':') ADVANCE(1712); + if (lookahead == '#') ADVANCE(2216); + if (lookahead == '$') ADVANCE(1498); + if (lookahead == ':') ADVANCE(1741); if (lookahead == '\t' || lookahead == ' ') SKIP(193); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1372); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1396); END_STATE(); case 194: ADVANCE_MAP( - '#', 2187, - '(', 1560, - '.', 1594, - 'E', 1939, - 'G', 1941, - 'K', 1941, - 'M', 1941, - 'P', 1941, - 'T', 1941, - ']', 1465, - 'd', 1948, - 'e', 1938, - 'g', 1940, - 'h', 1954, - 'k', 1940, - 'm', 1942, - 'n', 1955, - 'p', 1940, - 's', 1951, - 't', 1940, - 'u', 1955, - 'w', 1952, - '}', 1498, - 0xb5, 1955, - '\t', 1711, - ' ', 1711, - 'B', 1652, - 'b', 1652, + '#', 2216, + '(', 1589, + '.', 1623, + 'E', 1968, + 'G', 1970, + 'K', 1970, + 'M', 1970, + 'P', 1970, + 'T', 1970, + ']', 1494, + 'd', 1977, + 'e', 1967, + 'g', 1969, + 'h', 1983, + 'k', 1969, + 'm', 1971, + 'n', 1984, + 'p', 1969, + 's', 1980, + 't', 1969, + 'u', 1984, + 'w', 1981, + '}', 1527, + 0xb5, 1984, + '\t', 1740, + ' ', 1740, + 'B', 1681, + 'b', 1681, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1706); + lookahead == ',') ADVANCE(1735); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16383,40 +16745,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1987); END_STATE(); case 195: ADVANCE_MAP( - '#', 2187, - '(', 1560, - '.', 1594, - 'E', 1939, - 'G', 1941, - 'K', 1941, - 'M', 1941, - 'P', 1941, - 'T', 1941, - ']', 1465, - 'd', 1948, - 'e', 1938, - 'g', 1940, - 'h', 1954, - 'k', 1940, - 'm', 1942, - 'n', 1955, - 'p', 1940, - 's', 1951, - 't', 1940, - 'u', 1955, - 'w', 1952, - 0xb5, 1955, - '\t', 1711, - ' ', 1711, - 'B', 1652, - 'b', 1652, + '#', 2216, + '(', 1589, + '.', 1623, + 'E', 1968, + 'G', 1970, + 'K', 1970, + 'M', 1970, + 'P', 1970, + 'T', 1970, + ']', 1494, + 'd', 1977, + 'e', 1967, + 'g', 1969, + 'h', 1983, + 'k', 1969, + 'm', 1971, + 'n', 1984, + 'p', 1969, + 's', 1980, + 't', 1969, + 'u', 1984, + 'w', 1981, + 0xb5, 1984, + '\t', 1740, + ' ', 1740, + 'B', 1681, + 'b', 1681, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1706); + lookahead == ',') ADVANCE(1735); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16424,56 +16786,56 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1987); END_STATE(); case 196: ADVANCE_MAP( - '#', 2187, - '(', 1560, - '.', 1594, - 'E', 1966, - 'G', 1968, - 'K', 1968, - 'M', 1968, - 'P', 1968, - 'T', 1968, - 'd', 1975, - 'e', 1965, - 'g', 1967, - 'h', 1981, - 'k', 1967, - 'm', 1969, - 'n', 1982, - 'p', 1967, - 's', 1978, - 't', 1967, - 'u', 1982, - 'w', 1979, - '}', 1498, - 0xb5, 1982, - '\t', 1711, - ' ', 1711, - 'B', 1652, - 'b', 1652, + '#', 2216, + '(', 1589, + '.', 1623, + 'E', 1995, + 'G', 1997, + 'K', 1997, + 'M', 1997, + 'P', 1997, + 'T', 1997, + 'd', 2004, + 'e', 1994, + 'g', 1996, + 'h', 2010, + 'k', 1996, + 'm', 1998, + 'n', 2011, + 'p', 1996, + 's', 2007, + 't', 1996, + 'u', 2011, + 'w', 2008, + '}', 1527, + 0xb5, 2011, + '\t', 1740, + ' ', 1740, + 'B', 1681, + 'b', 1681, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1706); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); + lookahead == ',') ADVANCE(1735); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); END_STATE(); case 197: ADVANCE_MAP( - '#', 2187, - '(', 1560, - '.', 1594, - ']', 1465, - '}', 1498, - '\t', 1711, - ' ', 1711, - 'E', 1946, - 'e', 1946, + '#', 2216, + '(', 1589, + '.', 1623, + ']', 1494, + '}', 1527, + '\t', 1740, + ' ', 1740, + 'E', 1975, + 'e', 1975, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1706); + lookahead == ',') ADVANCE(1735); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16481,21 +16843,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1987); END_STATE(); case 198: ADVANCE_MAP( - '#', 2187, - '(', 1560, - '.', 1594, - ']', 1465, - '\t', 1711, - ' ', 1711, - 'E', 1946, - 'e', 1946, + '#', 2216, + '(', 1589, + '.', 1623, + ']', 1494, + '\t', 1740, + ' ', 1740, + 'E', 1975, + 'e', 1975, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1706); + lookahead == ',') ADVANCE(1735); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16503,37 +16865,52 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1987); END_STATE(); case 199: ADVANCE_MAP( - '#', 2187, - '(', 1560, - '.', 1594, - '}', 1498, - '\t', 1711, - ' ', 1711, - 'E', 1972, - 'e', 1972, + '#', 2216, + '(', 1589, + '.', 1623, + '}', 1527, + '\t', 1740, + ' ', 1740, + 'E', 2001, + 'e', 2001, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1706); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); + lookahead == ',') ADVANCE(1735); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); END_STATE(); case 200: ADVANCE_MAP( - '#', 2187, - '(', 1560, - '.', 1593, - ']', 1465, - '}', 1498, - '\t', 1711, - ' ', 1711, - 'E', 1946, - 'e', 1946, + '#', 2216, + '(', 1589, + '.', 1622, + ']', 1494, + '}', 1527, + '\t', 1740, + ' ', 1740, + 'E', 2001, + 'e', 2001, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1706); + lookahead == ',') ADVANCE(1735); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); + END_STATE(); + case 201: + ADVANCE_MAP( + '#', 2216, + '(', 1589, + '.', 1622, + ']', 1494, + '\t', 1740, + ' ', 1740, + 'E', 1975, + 'e', 1975, + ); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(1735); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16541,58 +16918,43 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); - END_STATE(); - case 201: - ADVANCE_MAP( - '#', 2187, - '(', 1560, - '.', 1593, - '}', 1498, - '\t', 1711, - ' ', 1711, - 'E', 1972, - 'e', 1972, - ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1706); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1987); END_STATE(); case 202: ADVANCE_MAP( - '#', 2187, - '(', 1560, - '.', 1934, - 'E', 1939, - 'G', 1941, - 'K', 1941, - 'M', 1941, - 'P', 1941, - 'T', 1941, - ']', 1465, - '_', 1943, - 'd', 1948, - 'e', 1938, - 'g', 1940, - 'h', 1954, - 'k', 1940, - 'm', 1942, - 'n', 1955, - 'p', 1940, - 's', 1951, - 't', 1940, - 'u', 1955, - 'w', 1952, - '}', 1498, - 0xb5, 1955, - '\t', 1711, - ' ', 1711, - 'B', 1652, - 'b', 1652, + '#', 2216, + '(', 1589, + '.', 1963, + 'E', 1968, + 'G', 1970, + 'K', 1970, + 'M', 1970, + 'P', 1970, + 'T', 1970, + ']', 1494, + '_', 1972, + 'd', 1977, + 'e', 1967, + 'g', 1969, + 'h', 1983, + 'k', 1969, + 'm', 1971, + 'n', 1984, + 'p', 1969, + 's', 1980, + 't', 1969, + 'u', 1984, + 'w', 1981, + '}', 1527, + 0xb5, 1984, + '\t', 1740, + ' ', 1740, + 'B', 1681, + 'b', 1681, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1706); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + lookahead == ',') ADVANCE(1735); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16601,42 +16963,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1987); END_STATE(); case 203: ADVANCE_MAP( - '#', 2187, - '(', 1560, - '.', 1934, - 'E', 1939, - 'G', 1941, - 'K', 1941, - 'M', 1941, - 'P', 1941, - 'T', 1941, - ']', 1465, - '_', 1943, - 'd', 1948, - 'e', 1938, - 'g', 1940, - 'h', 1954, - 'k', 1940, - 'm', 1942, - 'n', 1955, - 'p', 1940, - 's', 1951, - 't', 1940, - 'u', 1955, - 'w', 1952, - 0xb5, 1955, - '\t', 1711, - ' ', 1711, - 'B', 1652, - 'b', 1652, + '#', 2216, + '(', 1589, + '.', 1963, + 'E', 1968, + 'G', 1970, + 'K', 1970, + 'M', 1970, + 'P', 1970, + 'T', 1970, + ']', 1494, + '_', 1972, + 'd', 1977, + 'e', 1967, + 'g', 1969, + 'h', 1983, + 'k', 1969, + 'm', 1971, + 'n', 1984, + 'p', 1969, + 's', 1980, + 't', 1969, + 'u', 1984, + 'w', 1981, + 0xb5, 1984, + '\t', 1740, + ' ', 1740, + 'B', 1681, + 'b', 1681, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1706); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + lookahead == ',') ADVANCE(1735); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16645,41 +17007,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1987); END_STATE(); case 204: ADVANCE_MAP( - '#', 2187, - '(', 1560, - '.', 1934, - 'E', 1939, - 'G', 1941, - 'K', 1941, - 'M', 1941, - 'P', 1941, - 'T', 1941, - ']', 1465, - 'd', 1948, - 'e', 1938, - 'g', 1940, - 'h', 1954, - 'k', 1940, - 'm', 1942, - 'n', 1955, - 'p', 1940, - 's', 1951, - 't', 1940, - 'u', 1955, - 'w', 1952, - '}', 1498, - 0xb5, 1955, - '\t', 1711, - ' ', 1711, - 'B', 1652, - 'b', 1652, + '#', 2216, + '(', 1589, + '.', 1963, + 'E', 1968, + 'G', 1970, + 'K', 1970, + 'M', 1970, + 'P', 1970, + 'T', 1970, + ']', 1494, + 'd', 1977, + 'e', 1967, + 'g', 1969, + 'h', 1983, + 'k', 1969, + 'm', 1971, + 'n', 1984, + 'p', 1969, + 's', 1980, + 't', 1969, + 'u', 1984, + 'w', 1981, + '}', 1527, + 0xb5, 1984, + '\t', 1740, + ' ', 1740, + 'B', 1681, + 'b', 1681, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1706); + lookahead == ',') ADVANCE(1735); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16687,40 +17049,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1987); END_STATE(); case 205: ADVANCE_MAP( - '#', 2187, - '(', 1560, - '.', 1934, - 'E', 1939, - 'G', 1941, - 'K', 1941, - 'M', 1941, - 'P', 1941, - 'T', 1941, - ']', 1465, - 'd', 1948, - 'e', 1938, - 'g', 1940, - 'h', 1954, - 'k', 1940, - 'm', 1942, - 'n', 1955, - 'p', 1940, - 's', 1951, - 't', 1940, - 'u', 1955, - 'w', 1952, - 0xb5, 1955, - '\t', 1711, - ' ', 1711, - 'B', 1652, - 'b', 1652, + '#', 2216, + '(', 1589, + '.', 1963, + 'E', 1968, + 'G', 1970, + 'K', 1970, + 'M', 1970, + 'P', 1970, + 'T', 1970, + ']', 1494, + 'd', 1977, + 'e', 1967, + 'g', 1969, + 'h', 1983, + 'k', 1969, + 'm', 1971, + 'n', 1984, + 'p', 1969, + 's', 1980, + 't', 1969, + 'u', 1984, + 'w', 1981, + 0xb5, 1984, + '\t', 1740, + ' ', 1740, + 'B', 1681, + 'b', 1681, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1706); + lookahead == ',') ADVANCE(1735); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16728,41 +17090,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1987); END_STATE(); case 206: ADVANCE_MAP( - '#', 2187, - '(', 1560, - '.', 1934, - 'E', 1941, - 'G', 1941, - 'K', 1941, - 'M', 1941, - 'P', 1941, - 'T', 1941, - ']', 1465, - 'd', 1948, - 'e', 1940, - 'g', 1940, - 'h', 1954, - 'k', 1940, - 'm', 1942, - 'n', 1955, - 'p', 1940, - 's', 1951, - 't', 1940, - 'u', 1955, - 'w', 1952, - '}', 1498, - 0xb5, 1955, - '\t', 1711, - ' ', 1711, - 'B', 1652, - 'b', 1652, + '#', 2216, + '(', 1589, + '.', 1963, + 'E', 1970, + 'G', 1970, + 'K', 1970, + 'M', 1970, + 'P', 1970, + 'T', 1970, + ']', 1494, + 'd', 1977, + 'e', 1969, + 'g', 1969, + 'h', 1983, + 'k', 1969, + 'm', 1971, + 'n', 1984, + 'p', 1969, + 's', 1980, + 't', 1969, + 'u', 1984, + 'w', 1981, + '}', 1527, + 0xb5, 1984, + '\t', 1740, + ' ', 1740, + 'B', 1681, + 'b', 1681, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1706); + lookahead == ',') ADVANCE(1735); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16770,40 +17132,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1987); END_STATE(); case 207: ADVANCE_MAP( - '#', 2187, - '(', 1560, - '.', 1934, - 'E', 1941, - 'G', 1941, - 'K', 1941, - 'M', 1941, - 'P', 1941, - 'T', 1941, - ']', 1465, - 'd', 1948, - 'e', 1940, - 'g', 1940, - 'h', 1954, - 'k', 1940, - 'm', 1942, - 'n', 1955, - 'p', 1940, - 's', 1951, - 't', 1940, - 'u', 1955, - 'w', 1952, - 0xb5, 1955, - '\t', 1711, - ' ', 1711, - 'B', 1652, - 'b', 1652, + '#', 2216, + '(', 1589, + '.', 1963, + 'E', 1970, + 'G', 1970, + 'K', 1970, + 'M', 1970, + 'P', 1970, + 'T', 1970, + ']', 1494, + 'd', 1977, + 'e', 1969, + 'g', 1969, + 'h', 1983, + 'k', 1969, + 'm', 1971, + 'n', 1984, + 'p', 1969, + 's', 1980, + 't', 1969, + 'u', 1984, + 'w', 1981, + 0xb5, 1984, + '\t', 1740, + ' ', 1740, + 'B', 1681, + 'b', 1681, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1706); + lookahead == ',') ADVANCE(1735); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16811,24 +17173,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1987); END_STATE(); case 208: ADVANCE_MAP( - '#', 2187, - '(', 1560, - '.', 1934, - ']', 1465, - '_', 1943, - '}', 1498, - '\t', 1711, - ' ', 1711, - 'E', 1946, - 'e', 1946, + '#', 2216, + '(', 1589, + '.', 1963, + ']', 1494, + '_', 1972, + '}', 1527, + '\t', 1740, + ' ', 1740, + 'E', 1975, + 'e', 1975, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1706); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + lookahead == ',') ADVANCE(1735); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16837,23 +17199,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1987); END_STATE(); case 209: ADVANCE_MAP( - '#', 2187, - '(', 1560, - '.', 1934, - ']', 1465, - '_', 1943, - '\t', 1711, - ' ', 1711, - 'E', 1946, - 'e', 1946, + '#', 2216, + '(', 1589, + '.', 1963, + ']', 1494, + '_', 1972, + '\t', 1740, + ' ', 1740, + 'E', 1975, + 'e', 1975, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1706); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + lookahead == ',') ADVANCE(1735); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16862,22 +17224,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1987); END_STATE(); case 210: ADVANCE_MAP( - '#', 2187, - '(', 1560, - '.', 1934, - ']', 1465, - '}', 1498, - '\t', 1711, - ' ', 1711, - 'E', 1946, - 'e', 1946, + '#', 2216, + '(', 1589, + '.', 1963, + ']', 1494, + '}', 1527, + '\t', 1740, + ' ', 1740, + 'E', 1975, + 'e', 1975, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1706); + lookahead == ',') ADVANCE(1735); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16885,18 +17247,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1987); END_STATE(); case 211: - if (lookahead == '#') ADVANCE(2187); - if (lookahead == '(') ADVANCE(1560); - if (lookahead == '.') ADVANCE(1934); - if (lookahead == ']') ADVANCE(1465); - if (lookahead == '}') ADVANCE(1498); + if (lookahead == '#') ADVANCE(2216); + if (lookahead == '(') ADVANCE(1589); + if (lookahead == '.') ADVANCE(1963); + if (lookahead == ']') ADVANCE(1494); + if (lookahead == '}') ADVANCE(1527); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1711); + lookahead == ' ') ADVANCE(1740); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1706); + lookahead == ',') ADVANCE(1735); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16904,21 +17266,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1987); END_STATE(); case 212: ADVANCE_MAP( - '#', 2187, - '(', 1560, - '.', 1934, - ']', 1465, - '\t', 1711, - ' ', 1711, - 'E', 1946, - 'e', 1946, + '#', 2216, + '(', 1589, + '.', 1963, + ']', 1494, + '\t', 1740, + ' ', 1740, + 'E', 1975, + 'e', 1975, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1706); + lookahead == ',') ADVANCE(1735); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16926,17 +17288,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1987); END_STATE(); case 213: - if (lookahead == '#') ADVANCE(2187); - if (lookahead == '(') ADVANCE(1560); - if (lookahead == '.') ADVANCE(1934); - if (lookahead == ']') ADVANCE(1465); + if (lookahead == '#') ADVANCE(2216); + if (lookahead == '(') ADVANCE(1589); + if (lookahead == '.') ADVANCE(1963); + if (lookahead == ']') ADVANCE(1494); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1711); + lookahead == ' ') ADVANCE(1740); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1706); + lookahead == ',') ADVANCE(1735); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16944,23 +17306,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1987); END_STATE(); case 214: ADVANCE_MAP( - '#', 2187, - '(', 1560, - '.', 1936, - ']', 1465, - '_', 1943, - '\t', 1711, - ' ', 1711, - 'E', 1946, - 'e', 1946, + '#', 2216, + '(', 1589, + '.', 1965, + ']', 1494, + '_', 1972, + '\t', 1740, + ' ', 1740, + 'E', 1975, + 'e', 1975, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1706); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + lookahead == ',') ADVANCE(1735); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16969,21 +17331,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1987); END_STATE(); case 215: ADVANCE_MAP( - '#', 2187, - '(', 1560, - '.', 1936, - ']', 1465, - '\t', 1711, - ' ', 1711, - 'E', 1946, - 'e', 1946, + '#', 2216, + '(', 1589, + '.', 1965, + ']', 1494, + '\t', 1740, + ' ', 1740, + 'E', 1975, + 'e', 1975, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1706); + lookahead == ',') ADVANCE(1735); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16991,17 +17353,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1987); END_STATE(); case 216: - if (lookahead == '#') ADVANCE(2187); - if (lookahead == '(') ADVANCE(1560); - if (lookahead == '.') ADVANCE(1936); - if (lookahead == ']') ADVANCE(1465); + if (lookahead == '#') ADVANCE(2216); + if (lookahead == '(') ADVANCE(1589); + if (lookahead == '.') ADVANCE(1965); + if (lookahead == ']') ADVANCE(1494); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1711); + lookahead == ' ') ADVANCE(1740); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1706); + lookahead == ',') ADVANCE(1735); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17009,21 +17371,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1987); END_STATE(); case 217: ADVANCE_MAP( - '#', 2187, - '(', 1560, - '.', 1596, - ']', 1465, - '\t', 1711, - ' ', 1711, - 'E', 1946, - 'e', 1946, + '#', 2216, + '(', 1589, + '.', 1625, + ']', 1494, + '\t', 1740, + ' ', 1740, + 'E', 1975, + 'e', 1975, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1706); + lookahead == ',') ADVANCE(1735); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17031,169 +17393,169 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1987); END_STATE(); case 218: ADVANCE_MAP( - '#', 2187, - '(', 1560, - '.', 1959, - 'E', 1966, - 'G', 1968, - 'K', 1968, - 'M', 1968, - 'P', 1968, - 'T', 1968, - '_', 1974, - 'd', 1975, - 'e', 1965, - 'g', 1967, - 'h', 1981, - 'k', 1967, - 'm', 1969, - 'n', 1982, - 'p', 1967, - 's', 1978, - 't', 1967, - 'u', 1982, - 'w', 1979, - '}', 1498, - 0xb5, 1982, - '\t', 1711, - ' ', 1711, - 'B', 1652, - 'b', 1652, + '#', 2216, + '(', 1589, + '.', 1988, + 'E', 1995, + 'G', 1997, + 'K', 1997, + 'M', 1997, + 'P', 1997, + 'T', 1997, + '_', 2003, + 'd', 2004, + 'e', 1994, + 'g', 1996, + 'h', 2010, + 'k', 1996, + 'm', 1998, + 'n', 2011, + 'p', 1996, + 's', 2007, + 't', 1996, + 'u', 2011, + 'w', 2008, + '}', 1527, + 0xb5, 2011, + '\t', 1740, + ' ', 1740, + 'B', 1681, + 'b', 1681, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1706); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); + lookahead == ',') ADVANCE(1735); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); END_STATE(); case 219: ADVANCE_MAP( - '#', 2187, - '(', 1560, - '.', 1959, - 'E', 1966, - 'G', 1968, - 'K', 1968, - 'M', 1968, - 'P', 1968, - 'T', 1968, - 'd', 1975, - 'e', 1965, - 'g', 1967, - 'h', 1981, - 'k', 1967, - 'm', 1969, - 'n', 1982, - 'p', 1967, - 's', 1978, - 't', 1967, - 'u', 1982, - 'w', 1979, - '}', 1498, - 0xb5, 1982, - '\t', 1711, - ' ', 1711, - 'B', 1652, - 'b', 1652, + '#', 2216, + '(', 1589, + '.', 1988, + 'E', 1995, + 'G', 1997, + 'K', 1997, + 'M', 1997, + 'P', 1997, + 'T', 1997, + 'd', 2004, + 'e', 1994, + 'g', 1996, + 'h', 2010, + 'k', 1996, + 'm', 1998, + 'n', 2011, + 'p', 1996, + 's', 2007, + 't', 1996, + 'u', 2011, + 'w', 2008, + '}', 1527, + 0xb5, 2011, + '\t', 1740, + ' ', 1740, + 'B', 1681, + 'b', 1681, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1706); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); + lookahead == ',') ADVANCE(1735); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); END_STATE(); case 220: ADVANCE_MAP( - '#', 2187, - '(', 1560, - '.', 1959, - 'E', 1968, - 'G', 1968, - 'K', 1968, - 'M', 1968, - 'P', 1968, - 'T', 1968, - 'd', 1975, - 'e', 1967, - 'g', 1967, - 'h', 1981, - 'k', 1967, - 'm', 1969, - 'n', 1982, - 'p', 1967, - 's', 1978, - 't', 1967, - 'u', 1982, - 'w', 1979, - '}', 1498, - 0xb5, 1982, - '\t', 1711, - ' ', 1711, - 'B', 1652, - 'b', 1652, + '#', 2216, + '(', 1589, + '.', 1988, + 'E', 1997, + 'G', 1997, + 'K', 1997, + 'M', 1997, + 'P', 1997, + 'T', 1997, + 'd', 2004, + 'e', 1996, + 'g', 1996, + 'h', 2010, + 'k', 1996, + 'm', 1998, + 'n', 2011, + 'p', 1996, + 's', 2007, + 't', 1996, + 'u', 2011, + 'w', 2008, + '}', 1527, + 0xb5, 2011, + '\t', 1740, + ' ', 1740, + 'B', 1681, + 'b', 1681, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1706); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); + lookahead == ',') ADVANCE(1735); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); END_STATE(); case 221: ADVANCE_MAP( - '#', 2187, - '(', 1560, - '.', 1959, - '_', 1974, - '}', 1498, - '\t', 1711, - ' ', 1711, - 'E', 1972, - 'e', 1972, + '#', 2216, + '(', 1589, + '.', 1988, + '_', 2003, + '}', 1527, + '\t', 1740, + ' ', 1740, + 'E', 2001, + 'e', 2001, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1706); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); + lookahead == ',') ADVANCE(1735); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); END_STATE(); case 222: ADVANCE_MAP( - '#', 2187, - '(', 1560, - '.', 1959, - '}', 1498, - '\t', 1711, - ' ', 1711, - 'E', 1972, - 'e', 1972, + '#', 2216, + '(', 1589, + '.', 1988, + '}', 1527, + '\t', 1740, + ' ', 1740, + 'E', 2001, + 'e', 2001, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1706); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); + lookahead == ',') ADVANCE(1735); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); END_STATE(); case 223: - if (lookahead == '#') ADVANCE(2187); - if (lookahead == '(') ADVANCE(1560); - if (lookahead == '.') ADVANCE(1959); - if (lookahead == '}') ADVANCE(1498); + if (lookahead == '#') ADVANCE(2216); + if (lookahead == '(') ADVANCE(1589); + if (lookahead == '.') ADVANCE(1988); + if (lookahead == '}') ADVANCE(1527); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1711); + lookahead == ' ') ADVANCE(1740); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1706); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); + lookahead == ',') ADVANCE(1735); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); END_STATE(); case 224: ADVANCE_MAP( - '#', 2187, - '(', 1560, - ']', 1465, - '_', 1943, - '\t', 1711, - ' ', 1711, - 'E', 1946, - 'e', 1946, + '#', 2216, + '(', 1589, + ']', 1494, + '_', 1972, + '\t', 1740, + ' ', 1740, + 'E', 1975, + 'e', 1975, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1706); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + lookahead == ',') ADVANCE(1735); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17202,17 +17564,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1987); END_STATE(); case 225: - if (lookahead == '#') ADVANCE(2187); - if (lookahead == '(') ADVANCE(1560); - if (lookahead == ']') ADVANCE(1465); - if (lookahead == '}') ADVANCE(1498); + if (lookahead == '#') ADVANCE(2216); + if (lookahead == '(') ADVANCE(1589); + if (lookahead == ']') ADVANCE(1494); + if (lookahead == '}') ADVANCE(1527); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1711); + lookahead == ' ') ADVANCE(1740); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1706); + lookahead == ',') ADVANCE(1735); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17220,18 +17582,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1987); END_STATE(); case 226: - if (lookahead == '#') ADVANCE(2187); - if (lookahead == '(') ADVANCE(1560); - if (lookahead == ']') ADVANCE(1465); + if (lookahead == '#') ADVANCE(2216); + if (lookahead == '(') ADVANCE(1589); + if (lookahead == ']') ADVANCE(1494); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1711); + lookahead == ' ') ADVANCE(1740); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1946); + lookahead == 'e') ADVANCE(1975); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1706); + lookahead == ',') ADVANCE(1735); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17239,678 +17601,678 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1987); END_STATE(); case 227: ADVANCE_MAP( - '#', 2187, - '(', 1560, - '_', 1974, - '}', 1498, - '\t', 1711, - ' ', 1711, - 'E', 1972, - 'e', 1972, + '#', 2216, + '(', 1589, + '_', 2003, + '}', 1527, + '\t', 1740, + ' ', 1740, + 'E', 2001, + 'e', 2001, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1706); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); + lookahead == ',') ADVANCE(1735); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); END_STATE(); case 228: - if (lookahead == '#') ADVANCE(2187); - if (lookahead == '(') ADVANCE(1560); - if (lookahead == '{') ADVANCE(1497); + if (lookahead == '#') ADVANCE(2216); + if (lookahead == '(') ADVANCE(1589); + if (lookahead == '{') ADVANCE(1526); if (lookahead == '\t' || lookahead == ' ') SKIP(270); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 229: - if (lookahead == '#') ADVANCE(2187); - if (lookahead == '(') ADVANCE(1560); - if (lookahead == '}') ADVANCE(1498); + if (lookahead == '#') ADVANCE(2216); + if (lookahead == '(') ADVANCE(1589); + if (lookahead == '}') ADVANCE(1527); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1711); + lookahead == ' ') ADVANCE(1740); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1972); + lookahead == 'e') ADVANCE(2001); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1706); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); + lookahead == ',') ADVANCE(1735); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); END_STATE(); case 230: - if (lookahead == '#') ADVANCE(2187); - if (lookahead == '(') ADVANCE(1560); - if (lookahead == '}') ADVANCE(1498); + if (lookahead == '#') ADVANCE(2216); + if (lookahead == '(') ADVANCE(1589); + if (lookahead == '}') ADVANCE(1527); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1711); + lookahead == ' ') ADVANCE(1740); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1706); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); + lookahead == ',') ADVANCE(1735); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); END_STATE(); case 231: - if (lookahead == '#') ADVANCE(2187); - if (lookahead == '(') ADVANCE(1560); + if (lookahead == '#') ADVANCE(2216); + if (lookahead == '(') ADVANCE(1589); if (lookahead == '\t' || lookahead == ' ') SKIP(272); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); END_STATE(); case 232: - if (lookahead == '#') ADVANCE(2187); - if (lookahead == '(') ADVANCE(1560); + if (lookahead == '#') ADVANCE(2216); + if (lookahead == '(') ADVANCE(1589); if (lookahead == '\t' || lookahead == ' ') SKIP(272); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1958); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1987); END_STATE(); case 233: ADVANCE_MAP( - '#', 2187, - '(', 1466, - '-', 1782, - '.', 1594, - 'E', 1806, - 'G', 1809, - 'K', 1809, - 'M', 1809, - 'P', 1809, - 'T', 1809, - '[', 1464, - 'd', 1823, - 'e', 1805, - 'g', 1808, - 'h', 1877, - 'k', 1808, - 'm', 1811, - 'n', 1890, - 'p', 1808, - 's', 1838, - 't', 1808, - 'u', 1890, - 'w', 1857, - 0xb5, 1890, + '#', 2216, + '(', 1495, + '-', 1811, + '.', 1623, + 'E', 1835, + 'G', 1838, + 'K', 1838, + 'M', 1838, + 'P', 1838, + 'T', 1838, + '[', 1493, + 'd', 1852, + 'e', 1834, + 'g', 1837, + 'h', 1906, + 'k', 1837, + 'm', 1840, + 'n', 1919, + 'p', 1837, + 's', 1867, + 't', 1837, + 'u', 1919, + 'w', 1886, + 0xb5, 1919, ); if (lookahead == '\t' || lookahead == ' ') SKIP(239); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1652); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + lookahead == 'b') ADVANCE(1681); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 234: ADVANCE_MAP( - '#', 2187, - '(', 1466, - '-', 1782, - '.', 1789, - 'E', 1806, - 'G', 1809, - 'K', 1809, - 'M', 1809, - 'P', 1809, - 'T', 1809, - '[', 1464, - '_', 1812, - 'd', 1823, - 'e', 1805, - 'g', 1808, - 'h', 1877, - 'k', 1808, - 'm', 1811, - 'n', 1890, - 'p', 1808, - 's', 1838, - 't', 1808, - 'u', 1890, - 'w', 1857, - 0xb5, 1890, + '#', 2216, + '(', 1495, + '-', 1811, + '.', 1818, + 'E', 1835, + 'G', 1838, + 'K', 1838, + 'M', 1838, + 'P', 1838, + 'T', 1838, + '[', 1493, + '_', 1841, + 'd', 1852, + 'e', 1834, + 'g', 1837, + 'h', 1906, + 'k', 1837, + 'm', 1840, + 'n', 1919, + 'p', 1837, + 's', 1867, + 't', 1837, + 'u', 1919, + 'w', 1886, + 0xb5, 1919, ); if (lookahead == '\t' || lookahead == ' ') SKIP(239); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1652); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + lookahead == 'b') ADVANCE(1681); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 235: ADVANCE_MAP( - '#', 2187, - '(', 1466, - '-', 1782, - '.', 1789, - 'E', 1806, - 'G', 1809, - 'K', 1809, - 'M', 1809, - 'P', 1809, - 'T', 1809, - '[', 1464, - 'd', 1823, - 'e', 1805, - 'g', 1808, - 'h', 1877, - 'k', 1808, - 'm', 1811, - 'n', 1890, - 'p', 1808, - 's', 1838, - 't', 1808, - 'u', 1890, - 'w', 1857, - 0xb5, 1890, + '#', 2216, + '(', 1495, + '-', 1811, + '.', 1818, + 'E', 1835, + 'G', 1838, + 'K', 1838, + 'M', 1838, + 'P', 1838, + 'T', 1838, + '[', 1493, + 'd', 1852, + 'e', 1834, + 'g', 1837, + 'h', 1906, + 'k', 1837, + 'm', 1840, + 'n', 1919, + 'p', 1837, + 's', 1867, + 't', 1837, + 'u', 1919, + 'w', 1886, + 0xb5, 1919, ); if (lookahead == '\t' || lookahead == ' ') SKIP(239); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1652); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + lookahead == 'b') ADVANCE(1681); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 236: ADVANCE_MAP( - '#', 2187, - '(', 1466, - '-', 1782, - '.', 1789, - 'E', 1809, - 'G', 1809, - 'K', 1809, - 'M', 1809, - 'P', 1809, - 'T', 1809, - '[', 1464, - 'd', 1823, - 'e', 1808, - 'g', 1808, - 'h', 1877, - 'k', 1808, - 'm', 1811, - 'n', 1890, - 'p', 1808, - 's', 1838, - 't', 1808, - 'u', 1890, - 'w', 1857, - 0xb5, 1890, + '#', 2216, + '(', 1495, + '-', 1811, + '.', 1818, + 'E', 1838, + 'G', 1838, + 'K', 1838, + 'M', 1838, + 'P', 1838, + 'T', 1838, + '[', 1493, + 'd', 1852, + 'e', 1837, + 'g', 1837, + 'h', 1906, + 'k', 1837, + 'm', 1840, + 'n', 1919, + 'p', 1837, + 's', 1867, + 't', 1837, + 'u', 1919, + 'w', 1886, + 0xb5, 1919, ); if (lookahead == '\t' || lookahead == ' ') SKIP(239); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1652); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + lookahead == 'b') ADVANCE(1681); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 237: - if (lookahead == '#') ADVANCE(2187); - if (lookahead == '(') ADVANCE(1466); - if (lookahead == '-') ADVANCE(1782); - if (lookahead == '[') ADVANCE(1464); + if (lookahead == '#') ADVANCE(2216); + if (lookahead == '(') ADVANCE(1495); + if (lookahead == '-') ADVANCE(1811); + if (lookahead == '[') ADVANCE(1493); if (lookahead == '\t' || lookahead == ' ') SKIP(239); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 238: - if (lookahead == '#') ADVANCE(2187); - if (lookahead == '(') ADVANCE(1466); + if (lookahead == '#') ADVANCE(2216); + if (lookahead == '(') ADVANCE(1495); if (lookahead == '-') ADVANCE(297); - if (lookahead == '=') ADVANCE(1728); - if (lookahead == '[') ADVANCE(1464); + if (lookahead == '=') ADVANCE(1757); + if (lookahead == '[') ADVANCE(1493); if (lookahead == '\t' || lookahead == ' ') SKIP(239); - if (set_contains(sym_long_flag_identifier_character_set_1, 686, lookahead)) ADVANCE(1446); + if (set_contains(sym_long_flag_identifier_character_set_1, 686, lookahead)) ADVANCE(1475); END_STATE(); case 239: - if (lookahead == '#') ADVANCE(2187); - if (lookahead == '(') ADVANCE(1466); + if (lookahead == '#') ADVANCE(2216); + if (lookahead == '(') ADVANCE(1495); if (lookahead == '-') ADVANCE(297); - if (lookahead == '[') ADVANCE(1464); + if (lookahead == '[') ADVANCE(1493); if (lookahead == '\t' || lookahead == ' ') SKIP(239); END_STATE(); case 240: - if (lookahead == '#') ADVANCE(2187); - if (lookahead == ',') ADVANCE(1468); - if (lookahead == ']') ADVANCE(1465); + if (lookahead == '#') ADVANCE(2216); + if (lookahead == ',') ADVANCE(1497); + if (lookahead == ']') ADVANCE(1494); if (lookahead == '\t' || lookahead == ' ') SKIP(240); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1665); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1694); END_STATE(); case 241: ADVANCE_MAP( - '#', 2187, - '.', 1594, - 'E', 1806, - 'G', 1809, - 'K', 1809, - 'M', 1809, - 'P', 1809, - 'T', 1809, - 'd', 1823, - 'e', 1805, - 'g', 1808, - 'h', 1877, - 'k', 1808, - 'm', 1811, - 'n', 1890, - 'p', 1808, - 's', 1838, - 't', 1808, - 'u', 1890, - 'w', 1857, - '{', 1497, - 0xb5, 1890, + '#', 2216, + '.', 1623, + 'E', 1835, + 'G', 1838, + 'K', 1838, + 'M', 1838, + 'P', 1838, + 'T', 1838, + 'd', 1852, + 'e', 1834, + 'g', 1837, + 'h', 1906, + 'k', 1837, + 'm', 1840, + 'n', 1919, + 'p', 1837, + 's', 1867, + 't', 1837, + 'u', 1919, + 'w', 1886, + '{', 1526, + 0xb5, 1919, ); if (lookahead == '\t' || lookahead == ' ') SKIP(270); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1652); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + lookahead == 'b') ADVANCE(1681); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 242: ADVANCE_MAP( - '#', 2187, - '.', 1594, - 'E', 1966, - 'G', 1968, - 'K', 1968, - 'M', 1968, - 'P', 1968, - 'T', 1968, - 'd', 1975, - 'e', 1965, - 'g', 1967, - 'h', 1981, - 'k', 1967, - 'm', 1969, - 'n', 1982, - 'p', 1967, - 's', 1978, - 't', 1967, - 'u', 1982, - 'w', 1979, - 0xb5, 1982, + '#', 2216, + '.', 1623, + 'E', 1995, + 'G', 1997, + 'K', 1997, + 'M', 1997, + 'P', 1997, + 'T', 1997, + 'd', 2004, + 'e', 1994, + 'g', 1996, + 'h', 2010, + 'k', 1996, + 'm', 1998, + 'n', 2011, + 'p', 1996, + 's', 2007, + 't', 1996, + 'u', 2011, + 'w', 2008, + 0xb5, 2011, ); if (lookahead == '\t' || lookahead == ' ') SKIP(272); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1652); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); + lookahead == 'b') ADVANCE(1681); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); END_STATE(); case 243: - if (lookahead == '#') ADVANCE(2187); - if (lookahead == '.') ADVANCE(1594); - if (lookahead == '{') ADVANCE(1497); + if (lookahead == '#') ADVANCE(2216); + if (lookahead == '.') ADVANCE(1623); + if (lookahead == '{') ADVANCE(1526); if (lookahead == '\t' || lookahead == ' ') SKIP(270); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1818); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + lookahead == 'e') ADVANCE(1847); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 244: - if (lookahead == '#') ADVANCE(2187); - if (lookahead == '.') ADVANCE(1594); + if (lookahead == '#') ADVANCE(2216); + if (lookahead == '.') ADVANCE(1623); if (lookahead == '\t' || lookahead == ' ') SKIP(272); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1972); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); + lookahead == 'e') ADVANCE(2001); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); END_STATE(); case 245: - if (lookahead == '#') ADVANCE(2187); - if (lookahead == '.') ADVANCE(1719); - if (lookahead == 'i') ADVANCE(1360); + if (lookahead == '#') ADVANCE(2216); + if (lookahead == '.') ADVANCE(1748); + if (lookahead == 'i') ADVANCE(1384); if (lookahead == '\t' || lookahead == ' ') SKIP(245); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1372); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1396); END_STATE(); case 246: - if (lookahead == '#') ADVANCE(2187); - if (lookahead == '.') ADVANCE(1603); - if (lookahead == '_') ADVANCE(1812); + if (lookahead == '#') ADVANCE(2216); + if (lookahead == '.') ADVANCE(1632); + if (lookahead == '_') ADVANCE(1841); if (lookahead == '\t' || lookahead == ' ') SKIP(255); if (lookahead == '+' || - lookahead == '-') ADVANCE(1790); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + lookahead == '-') ADVANCE(1819); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 247: ADVANCE_MAP( - '#', 2187, - '.', 1789, - 'E', 1806, - 'G', 1809, - 'K', 1809, - 'M', 1809, - 'P', 1809, - 'T', 1809, - '_', 1812, - 'd', 1823, - 'e', 1805, - 'g', 1808, - 'h', 1877, - 'k', 1808, - 'm', 1811, - 'n', 1890, - 'p', 1808, - 's', 1838, - 't', 1808, - 'u', 1890, - 'w', 1857, - '{', 1497, - 0xb5, 1890, + '#', 2216, + '.', 1818, + 'E', 1835, + 'G', 1838, + 'K', 1838, + 'M', 1838, + 'P', 1838, + 'T', 1838, + '_', 1841, + 'd', 1852, + 'e', 1834, + 'g', 1837, + 'h', 1906, + 'k', 1837, + 'm', 1840, + 'n', 1919, + 'p', 1837, + 's', 1867, + 't', 1837, + 'u', 1919, + 'w', 1886, + '{', 1526, + 0xb5, 1919, ); if (lookahead == '\t' || lookahead == ' ') SKIP(270); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1652); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + lookahead == 'b') ADVANCE(1681); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 248: ADVANCE_MAP( - '#', 2187, - '.', 1789, - 'E', 1806, - 'G', 1809, - 'K', 1809, - 'M', 1809, - 'P', 1809, - 'T', 1809, - 'd', 1823, - 'e', 1805, - 'g', 1808, - 'h', 1877, - 'k', 1808, - 'm', 1811, - 'n', 1890, - 'p', 1808, - 's', 1838, - 't', 1808, - 'u', 1890, - 'w', 1857, - '{', 1497, - 0xb5, 1890, + '#', 2216, + '.', 1818, + 'E', 1835, + 'G', 1838, + 'K', 1838, + 'M', 1838, + 'P', 1838, + 'T', 1838, + 'd', 1852, + 'e', 1834, + 'g', 1837, + 'h', 1906, + 'k', 1837, + 'm', 1840, + 'n', 1919, + 'p', 1837, + 's', 1867, + 't', 1837, + 'u', 1919, + 'w', 1886, + '{', 1526, + 0xb5, 1919, ); if (lookahead == '\t' || lookahead == ' ') SKIP(270); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1652); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + lookahead == 'b') ADVANCE(1681); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 249: ADVANCE_MAP( - '#', 2187, - '.', 1789, - 'E', 1809, - 'G', 1809, - 'K', 1809, - 'M', 1809, - 'P', 1809, - 'T', 1809, - 'd', 1823, - 'e', 1808, - 'g', 1808, - 'h', 1877, - 'k', 1808, - 'm', 1811, - 'n', 1890, - 'p', 1808, - 's', 1838, - 't', 1808, - 'u', 1890, - 'w', 1857, - '{', 1497, - 0xb5, 1890, + '#', 2216, + '.', 1818, + 'E', 1838, + 'G', 1838, + 'K', 1838, + 'M', 1838, + 'P', 1838, + 'T', 1838, + 'd', 1852, + 'e', 1837, + 'g', 1837, + 'h', 1906, + 'k', 1837, + 'm', 1840, + 'n', 1919, + 'p', 1837, + 's', 1867, + 't', 1837, + 'u', 1919, + 'w', 1886, + '{', 1526, + 0xb5, 1919, ); if (lookahead == '\t' || lookahead == ' ') SKIP(270); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1652); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + lookahead == 'b') ADVANCE(1681); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 250: - if (lookahead == '#') ADVANCE(2187); - if (lookahead == '.') ADVANCE(1789); - if (lookahead == '_') ADVANCE(1812); - if (lookahead == '{') ADVANCE(1497); + if (lookahead == '#') ADVANCE(2216); + if (lookahead == '.') ADVANCE(1818); + if (lookahead == '_') ADVANCE(1841); + if (lookahead == '{') ADVANCE(1526); if (lookahead == '\t' || lookahead == ' ') SKIP(270); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1818); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + lookahead == 'e') ADVANCE(1847); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 251: - if (lookahead == '#') ADVANCE(2187); - if (lookahead == '.') ADVANCE(1789); - if (lookahead == '{') ADVANCE(1497); + if (lookahead == '#') ADVANCE(2216); + if (lookahead == '.') ADVANCE(1818); + if (lookahead == '{') ADVANCE(1526); if (lookahead == '\t' || lookahead == ' ') SKIP(270); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1818); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + lookahead == 'e') ADVANCE(1847); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 252: - if (lookahead == '#') ADVANCE(2187); - if (lookahead == '.') ADVANCE(1789); - if (lookahead == '{') ADVANCE(1497); + if (lookahead == '#') ADVANCE(2216); + if (lookahead == '.') ADVANCE(1818); + if (lookahead == '{') ADVANCE(1526); if (lookahead == '\t' || lookahead == ' ') SKIP(270); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 253: - if (lookahead == '#') ADVANCE(2187); - if (lookahead == '.') ADVANCE(1593); - if (lookahead == '{') ADVANCE(1497); + if (lookahead == '#') ADVANCE(2216); + if (lookahead == '.') ADVANCE(1622); + if (lookahead == '{') ADVANCE(1526); if (lookahead == '\t' || lookahead == ' ') SKIP(270); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1818); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + lookahead == 'e') ADVANCE(1847); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 254: - if (lookahead == '#') ADVANCE(2187); - if (lookahead == '.') ADVANCE(1593); + if (lookahead == '#') ADVANCE(2216); + if (lookahead == '.') ADVANCE(1622); if (lookahead == '\t' || lookahead == ' ') SKIP(272); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1972); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); + lookahead == 'e') ADVANCE(2001); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); END_STATE(); case 255: - if (lookahead == '#') ADVANCE(2187); - if (lookahead == '.') ADVANCE(336); + if (lookahead == '#') ADVANCE(2216); + if (lookahead == '.') ADVANCE(337); if (lookahead == '\t' || lookahead == ' ') SKIP(255); if (lookahead == '+' || lookahead == '-') ADVANCE(314); END_STATE(); case 256: - if (lookahead == '#') ADVANCE(2187); - if (lookahead == '.') ADVANCE(1601); - if (lookahead == '_') ADVANCE(1974); + if (lookahead == '#') ADVANCE(2216); + if (lookahead == '.') ADVANCE(1630); + if (lookahead == '_') ADVANCE(2003); if (lookahead == '\t' || lookahead == ' ') SKIP(255); if (lookahead == '+' || - lookahead == '-') ADVANCE(1960); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); + lookahead == '-') ADVANCE(1989); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); END_STATE(); case 257: - if (lookahead == '#') ADVANCE(2187); - if (lookahead == '.') ADVANCE(1971); - if (lookahead == '_') ADVANCE(1974); + if (lookahead == '#') ADVANCE(2216); + if (lookahead == '.') ADVANCE(2000); + if (lookahead == '_') ADVANCE(2003); if (lookahead == '\t' || lookahead == ' ') SKIP(255); if (lookahead == '+' || - lookahead == '-') ADVANCE(1960); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); + lookahead == '-') ADVANCE(1989); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); END_STATE(); case 258: - if (lookahead == '#') ADVANCE(2187); - if (lookahead == '.') ADVANCE(1814); - if (lookahead == '_') ADVANCE(1812); + if (lookahead == '#') ADVANCE(2216); + if (lookahead == '.') ADVANCE(1843); + if (lookahead == '_') ADVANCE(1841); if (lookahead == '\t' || lookahead == ' ') SKIP(255); if (lookahead == '+' || - lookahead == '-') ADVANCE(1790); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + lookahead == '-') ADVANCE(1819); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 259: ADVANCE_MAP( - '#', 2187, - '.', 1959, - 'E', 1966, - 'G', 1968, - 'K', 1968, - 'M', 1968, - 'P', 1968, - 'T', 1968, - '_', 1974, - 'd', 1975, - 'e', 1965, - 'g', 1967, - 'h', 1981, - 'k', 1967, - 'm', 1969, - 'n', 1982, - 'p', 1967, - 's', 1978, - 't', 1967, - 'u', 1982, - 'w', 1979, - 0xb5, 1982, + '#', 2216, + '.', 1988, + 'E', 1995, + 'G', 1997, + 'K', 1997, + 'M', 1997, + 'P', 1997, + 'T', 1997, + '_', 2003, + 'd', 2004, + 'e', 1994, + 'g', 1996, + 'h', 2010, + 'k', 1996, + 'm', 1998, + 'n', 2011, + 'p', 1996, + 's', 2007, + 't', 1996, + 'u', 2011, + 'w', 2008, + 0xb5, 2011, ); if (lookahead == '\t' || lookahead == ' ') SKIP(272); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1652); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); + lookahead == 'b') ADVANCE(1681); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); END_STATE(); case 260: ADVANCE_MAP( - '#', 2187, - '.', 1959, - 'E', 1966, - 'G', 1968, - 'K', 1968, - 'M', 1968, - 'P', 1968, - 'T', 1968, - 'd', 1975, - 'e', 1965, - 'g', 1967, - 'h', 1981, - 'k', 1967, - 'm', 1969, - 'n', 1982, - 'p', 1967, - 's', 1978, - 't', 1967, - 'u', 1982, - 'w', 1979, - 0xb5, 1982, + '#', 2216, + '.', 1988, + 'E', 1995, + 'G', 1997, + 'K', 1997, + 'M', 1997, + 'P', 1997, + 'T', 1997, + 'd', 2004, + 'e', 1994, + 'g', 1996, + 'h', 2010, + 'k', 1996, + 'm', 1998, + 'n', 2011, + 'p', 1996, + 's', 2007, + 't', 1996, + 'u', 2011, + 'w', 2008, + 0xb5, 2011, ); if (lookahead == '\t' || lookahead == ' ') SKIP(272); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1652); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); + lookahead == 'b') ADVANCE(1681); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); END_STATE(); case 261: ADVANCE_MAP( - '#', 2187, - '.', 1959, - 'E', 1968, - 'G', 1968, - 'K', 1968, - 'M', 1968, - 'P', 1968, - 'T', 1968, - 'd', 1975, - 'e', 1967, - 'g', 1967, - 'h', 1981, - 'k', 1967, - 'm', 1969, - 'n', 1982, - 'p', 1967, - 's', 1978, - 't', 1967, - 'u', 1982, - 'w', 1979, - 0xb5, 1982, + '#', 2216, + '.', 1988, + 'E', 1997, + 'G', 1997, + 'K', 1997, + 'M', 1997, + 'P', 1997, + 'T', 1997, + 'd', 2004, + 'e', 1996, + 'g', 1996, + 'h', 2010, + 'k', 1996, + 'm', 1998, + 'n', 2011, + 'p', 1996, + 's', 2007, + 't', 1996, + 'u', 2011, + 'w', 2008, + 0xb5, 2011, ); if (lookahead == '\t' || lookahead == ' ') SKIP(272); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1652); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); + lookahead == 'b') ADVANCE(1681); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); END_STATE(); case 262: - if (lookahead == '#') ADVANCE(2187); - if (lookahead == '.') ADVANCE(1959); - if (lookahead == '_') ADVANCE(1974); + if (lookahead == '#') ADVANCE(2216); + if (lookahead == '.') ADVANCE(1988); + if (lookahead == '_') ADVANCE(2003); if (lookahead == '\t' || lookahead == ' ') SKIP(272); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1972); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); + lookahead == 'e') ADVANCE(2001); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); END_STATE(); case 263: - if (lookahead == '#') ADVANCE(2187); - if (lookahead == '.') ADVANCE(1959); + if (lookahead == '#') ADVANCE(2216); + if (lookahead == '.') ADVANCE(1988); if (lookahead == '\t' || lookahead == ' ') SKIP(272); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1972); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); + lookahead == 'e') ADVANCE(2001); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); END_STATE(); case 264: - if (lookahead == '#') ADVANCE(2187); - if (lookahead == '.') ADVANCE(1959); + if (lookahead == '#') ADVANCE(2216); + if (lookahead == '.') ADVANCE(1988); if (lookahead == '\t' || lookahead == ' ') SKIP(272); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); END_STATE(); case 265: ADVANCE_MAP( - '#', 2187, - ':', 1712, - 'a', 408, - 'c', 434, - 'd', 370, - 'e', 512, - 'm', 432, - 'u', 469, + '#', 2216, + ':', 1741, + 'a', 416, + 'c', 444, + 'd', 374, + 'e', 522, + 'm', 441, + 'u', 479, ); if (lookahead == '\t' || lookahead == ' ') SKIP(265); END_STATE(); case 266: - if (lookahead == '#') ADVANCE(2187); - if (lookahead == ':') ADVANCE(1712); + if (lookahead == '#') ADVANCE(2216); + if (lookahead == ':') ADVANCE(1741); if (lookahead == '\t' || lookahead == ' ') SKIP(266); END_STATE(); case 267: ADVANCE_MAP( - '#', 2187, - '>', 1478, - '[', 1464, - ']', 1465, - 'c', 1350, - 'f', 1369, - 'i', 1358, - 'o', 1361, - 'v', 1346, - '\t', 1711, - ' ', 1711, + '#', 2216, + '>', 1507, + '[', 1493, + ']', 1494, + 'c', 1374, + 'f', 1393, + 'i', 1382, + 'o', 1385, + 'v', 1370, + '\t', 1740, + ' ', 1740, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1706); + lookahead == ',') ADVANCE(1735); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '&' || '.' < lookahead) && @@ -17918,73 +18280,73 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '^' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1372); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1396); END_STATE(); case 268: - if (lookahead == '#') ADVANCE(2187); - if (lookahead == '_') ADVANCE(1812); - if (lookahead == '{') ADVANCE(1497); + if (lookahead == '#') ADVANCE(2216); + if (lookahead == '_') ADVANCE(1841); + if (lookahead == '{') ADVANCE(1526); if (lookahead == '\t' || lookahead == ' ') SKIP(270); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1818); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + lookahead == 'e') ADVANCE(1847); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 269: - if (lookahead == '#') ADVANCE(2187); - if (lookahead == '_') ADVANCE(1974); + if (lookahead == '#') ADVANCE(2216); + if (lookahead == '_') ADVANCE(2003); if (lookahead == '\t' || lookahead == ' ') SKIP(272); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1972); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); + lookahead == 'e') ADVANCE(2001); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); END_STATE(); case 270: - if (lookahead == '#') ADVANCE(2187); - if (lookahead == '{') ADVANCE(1497); + if (lookahead == '#') ADVANCE(2216); + if (lookahead == '{') ADVANCE(1526); if (lookahead == '\t' || lookahead == ' ') SKIP(270); END_STATE(); case 271: - if (lookahead == '#') ADVANCE(2187); - if (lookahead == '{') ADVANCE(1497); + if (lookahead == '#') ADVANCE(2216); + if (lookahead == '{') ADVANCE(1526); if (lookahead == '\t' || lookahead == ' ') SKIP(270); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1818); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + lookahead == 'e') ADVANCE(1847); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 272: - if (lookahead == '#') ADVANCE(2187); + if (lookahead == '#') ADVANCE(2216); if (lookahead == '\t' || lookahead == ' ') SKIP(272); END_STATE(); case 273: - if (lookahead == '#') ADVANCE(2187); + if (lookahead == '#') ADVANCE(2216); if (lookahead == '\t' || lookahead == ' ') SKIP(272); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1972); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); + lookahead == 'e') ADVANCE(2001); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); END_STATE(); case 274: - if (lookahead == '#') ADVANCE(2187); + if (lookahead == '#') ADVANCE(2216); if (lookahead == '\t' || lookahead == ' ') SKIP(272); - if (set_contains(sym_attribute_identifier_character_set_1, 685, lookahead)) ADVANCE(1460); + if (set_contains(sym_attribute_identifier_character_set_1, 685, lookahead)) ADVANCE(1489); END_STATE(); case 275: - if (lookahead == '#') ADVANCE(2187); + if (lookahead == '#') ADVANCE(2216); if (lookahead == '\t' || lookahead == ' ') SKIP(272); - if (set_contains(sym_param_short_flag_identifier_character_set_1, 770, lookahead)) ADVANCE(1496); + if (set_contains(sym_param_short_flag_identifier_character_set_1, 770, lookahead)) ADVANCE(1525); END_STATE(); case 276: - if (lookahead == '#') ADVANCE(2190); - if (lookahead == '$') ADVANCE(1472); - if (lookahead == ':') ADVANCE(1712); + if (lookahead == '#') ADVANCE(2219); + if (lookahead == '$') ADVANCE(1501); + if (lookahead == ':') ADVANCE(1741); if (lookahead == '\t' || lookahead == ' ') SKIP(193); if (lookahead == '!' || @@ -17995,3662 +18357,3704 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '.' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1045); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1029); + lookahead == '^') ADVANCE(1066); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 277: ADVANCE_MAP( - '#', 2190, - ':', 1712, - 'a', 931, - 'c', 950, - 'd', 894, - 'e', 1018, - 'm', 951, - 'u', 979, + '#', 2219, + ':', 1741, + 'a', 949, + 'c', 970, + 'd', 911, + 'e', 1038, + 'm', 971, + 'u', 999, ); if (lookahead == '\t' || lookahead == ' ') SKIP(265); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 278: - if (lookahead == '#') ADVANCE(1699); - if (lookahead == '\'') ADVANCE(1690); - if (lookahead == '(') ADVANCE(1466); + if (lookahead == '#') ADVANCE(1728); + if (lookahead == '\'') ADVANCE(1719); + if (lookahead == '(') ADVANCE(1495); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1698); - if (lookahead != 0) ADVANCE(1699); + lookahead == ' ') ADVANCE(1727); + if (lookahead != 0) ADVANCE(1728); END_STATE(); case 279: - if (lookahead == '+') ADVANCE(373); - if (lookahead == '>') ADVANCE(1738); - if (lookahead == 'r') ADVANCE(1530); - if (lookahead == 'u') ADVANCE(482); + if (lookahead == '+') ADVANCE(378); + if (lookahead == '>') ADVANCE(1767); + if (lookahead == 'r') ADVANCE(1559); + if (lookahead == 'u') ADVANCE(492); END_STATE(); case 280: - if (lookahead == '+') ADVANCE(374); - if (lookahead == '>') ADVANCE(1734); + if (lookahead == '+') ADVANCE(379); + if (lookahead == '>') ADVANCE(1763); END_STATE(); case 281: ADVANCE_MAP( - '+', 425, - '>', 1736, - 'I', 528, - 'i', 528, - 'n', 360, - 'r', 447, - 'x', 440, - 'B', 1652, - 'b', 1652, + '+', 434, + '>', 1765, + 'I', 539, + 'i', 539, + 'n', 364, + 'r', 457, + 'x', 449, + 'B', 1681, + 'b', 1681, ); END_STATE(); case 282: - if (lookahead == '+') ADVANCE(425); - if (lookahead == '>') ADVANCE(1736); - if (lookahead == 'l') ADVANCE(467); - if (lookahead == 'n') ADVANCE(360); - if (lookahead == 'r') ADVANCE(447); + if (lookahead == '+') ADVANCE(434); + if (lookahead == '>') ADVANCE(1765); + if (lookahead == 'l') ADVANCE(477); + if (lookahead == 'n') ADVANCE(364); + if (lookahead == 'r') ADVANCE(457); END_STATE(); case 283: - if (lookahead == '+') ADVANCE(425); - if (lookahead == '>') ADVANCE(1736); - if (lookahead == 'l') ADVANCE(467); - if (lookahead == 'n') ADVANCE(360); - if (lookahead == 'r') ADVANCE(447); - if (lookahead == 'x') ADVANCE(440); + if (lookahead == '+') ADVANCE(434); + if (lookahead == '>') ADVANCE(1765); + if (lookahead == 'l') ADVANCE(477); + if (lookahead == 'n') ADVANCE(364); + if (lookahead == 'r') ADVANCE(457); + if (lookahead == 'x') ADVANCE(449); END_STATE(); case 284: - if (lookahead == '+') ADVANCE(425); - if (lookahead == '>') ADVANCE(1736); - if (lookahead == 'n') ADVANCE(360); - if (lookahead == 'r') ADVANCE(447); + if (lookahead == '+') ADVANCE(434); + if (lookahead == '>') ADVANCE(1765); + if (lookahead == 'n') ADVANCE(364); + if (lookahead == 'r') ADVANCE(457); END_STATE(); case 285: - if (lookahead == '+') ADVANCE(425); - if (lookahead == '>') ADVANCE(1736); - if (lookahead == 'n') ADVANCE(360); - if (lookahead == 'r') ADVANCE(447); - if (lookahead == 'x') ADVANCE(440); + if (lookahead == '+') ADVANCE(434); + if (lookahead == '>') ADVANCE(1765); + if (lookahead == 'n') ADVANCE(364); + if (lookahead == 'r') ADVANCE(457); + if (lookahead == 'x') ADVANCE(449); END_STATE(); case 286: - if (lookahead == '+') ADVANCE(424); - if (lookahead == '>') ADVANCE(1732); + if (lookahead == '+') ADVANCE(433); + if (lookahead == '>') ADVANCE(1761); END_STATE(); case 287: - if (lookahead == '+') ADVANCE(433); - if (lookahead == '>') ADVANCE(517); - if (lookahead == 'n') ADVANCE(360); - if (lookahead == 'r') ADVANCE(452); + if (lookahead == '+') ADVANCE(442); + if (lookahead == '>') ADVANCE(528); + if (lookahead == 'n') ADVANCE(364); + if (lookahead == 'r') ADVANCE(462); END_STATE(); case 288: - if (lookahead == '+') ADVANCE(433); - if (lookahead == '>') ADVANCE(517); - if (lookahead == 'r') ADVANCE(452); + if (lookahead == '+') ADVANCE(442); + if (lookahead == '>') ADVANCE(528); + if (lookahead == 'r') ADVANCE(462); END_STATE(); case 289: - if (lookahead == '+') ADVANCE(375); - if (lookahead == '>') ADVANCE(518); - if (lookahead == 'r') ADVANCE(1530); - if (lookahead == 'u') ADVANCE(487); + if (lookahead == '+') ADVANCE(380); + if (lookahead == '>') ADVANCE(529); + if (lookahead == 'r') ADVANCE(1559); + if (lookahead == 'u') ADVANCE(497); END_STATE(); case 290: - if (lookahead == '+') ADVANCE(375); - if (lookahead == '>') ADVANCE(518); - if (lookahead == 'u') ADVANCE(487); + if (lookahead == '+') ADVANCE(380); + if (lookahead == '>') ADVANCE(529); + if (lookahead == 'u') ADVANCE(497); END_STATE(); case 291: - if (lookahead == '+') ADVANCE(438); - if (lookahead == '>') ADVANCE(520); + if (lookahead == '+') ADVANCE(447); + if (lookahead == '>') ADVANCE(531); END_STATE(); case 292: - if (lookahead == '+') ADVANCE(379); - if (lookahead == '>') ADVANCE(522); + if (lookahead == '+') ADVANCE(383); + if (lookahead == '>') ADVANCE(533); END_STATE(); case 293: - if (lookahead == '-') ADVANCE(351); + if (lookahead == '-') ADVANCE(355); END_STATE(); case 294: - if (lookahead == '-') ADVANCE(380); + if (lookahead == '-') ADVANCE(384); END_STATE(); case 295: - if (lookahead == '-') ADVANCE(380); + if (lookahead == '-') ADVANCE(384); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1559); + lookahead == ' ') ADVANCE(1588); END_STATE(); case 296: - if (lookahead == '-') ADVANCE(507); + if (lookahead == '-') ADVANCE(517); END_STATE(); case 297: - if (lookahead == '-') ADVANCE(1483); + if (lookahead == '-') ADVANCE(1512); END_STATE(); case 298: - if (lookahead == '-') ADVANCE(1483); - if (lookahead == '.') ADVANCE(335); - if (lookahead == '>') ADVANCE(1463); + if (lookahead == '-') ADVANCE(1512); + if (lookahead == '.') ADVANCE(336); + if (lookahead == '>') ADVANCE(1492); if (lookahead == '_') ADVANCE(309); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(533); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + lookahead == 'i') ADVANCE(544); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); END_STATE(); case 299: - if (lookahead == '-') ADVANCE(1483); - if (lookahead == '.') ADVANCE(335); + if (lookahead == '-') ADVANCE(1512); + if (lookahead == '.') ADVANCE(336); if (lookahead == '_') ADVANCE(309); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(533); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + lookahead == 'i') ADVANCE(544); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); END_STATE(); case 300: - if (lookahead == '-') ADVANCE(1483); - if (lookahead == '>') ADVANCE(1463); + if (lookahead == '-') ADVANCE(1512); + if (lookahead == '>') ADVANCE(1492); END_STATE(); case 301: - if (lookahead == '-') ADVANCE(428); + if (lookahead == '-') ADVANCE(437); END_STATE(); case 302: - if (lookahead == '-') ADVANCE(484); + if (lookahead == '-') ADVANCE(495); END_STATE(); case 303: - if (lookahead == '-') ADVANCE(554); + if (lookahead == '-') ADVANCE(565); END_STATE(); case 304: - if (lookahead == '-') ADVANCE(508); + if (lookahead == '-') ADVANCE(518); END_STATE(); case 305: - if (lookahead == '-') ADVANCE(509); + if (lookahead == '-') ADVANCE(519); END_STATE(); case 306: - if (lookahead == '-') ADVANCE(445); + if (lookahead == '-') ADVANCE(454); END_STATE(); case 307: - if (lookahead == '-') ADVANCE(510); + if (lookahead == '-') ADVANCE(520); END_STATE(); case 308: - if (lookahead == '.') ADVANCE(335); + if (lookahead == '.') ADVANCE(336); if (lookahead == '_') ADVANCE(309); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(533); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + lookahead == 'i') ADVANCE(544); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); END_STATE(); case 309: - if (lookahead == '.') ADVANCE(335); + if (lookahead == '.') ADVANCE(336); if (lookahead == '_') ADVANCE(309); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); END_STATE(); case 310: - if (lookahead == '.') ADVANCE(1506); - if (lookahead == '_') ADVANCE(339); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); + if (lookahead == '.') ADVANCE(1535); + if (lookahead == '_') ADVANCE(340); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1674); END_STATE(); case 311: - if (lookahead == '.') ADVANCE(1481); + if (lookahead == '.') ADVANCE(1510); END_STATE(); case 312: if (lookahead == '.') ADVANCE(311); END_STATE(); case 313: if (lookahead == '.') ADVANCE(311); - if (lookahead == '_') ADVANCE(336); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if (lookahead == '_') ADVANCE(337); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1640); END_STATE(); case 314: - if (lookahead == '.') ADVANCE(337); + if (lookahead == '.') ADVANCE(338); if (lookahead == '_') ADVANCE(314); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1639); END_STATE(); case 315: - if (lookahead == '2') ADVANCE(542); + if (lookahead == '2') ADVANCE(553); if (lookahead == '0' || - lookahead == '1') ADVANCE(548); + lookahead == '1') ADVANCE(559); END_STATE(); case 316: - if (lookahead == ':') ADVANCE(549); + if (lookahead == ':') ADVANCE(560); END_STATE(); case 317: - if (lookahead == ':') ADVANCE(550); + if (lookahead == ':') ADVANCE(561); END_STATE(); case 318: - if (lookahead == ';') ADVANCE(1715); + if (lookahead == ';') ADVANCE(1744); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(318); END_STATE(); case 319: - if (lookahead == '=') ADVANCE(1138); - if (lookahead == '~') ADVANCE(1120); + if (lookahead == '=') ADVANCE(1162); + if (lookahead == '~') ADVANCE(1144); END_STATE(); case 320: - if (lookahead == '=') ADVANCE(1547); - if (lookahead == '~') ADVANCE(1553); + if (lookahead == '=') ADVANCE(1576); + if (lookahead == '~') ADVANCE(1582); END_STATE(); case 321: - if (lookahead == '=') ADVANCE(1546); - if (lookahead == '>') ADVANCE(1499); - if (lookahead == '~') ADVANCE(1552); + if (lookahead == '=') ADVANCE(1575); + if (lookahead == '>') ADVANCE(1528); + if (lookahead == '~') ADVANCE(1581); END_STATE(); case 322: - if (lookahead == '=') ADVANCE(1546); - if (lookahead == '~') ADVANCE(1552); + if (lookahead == '=') ADVANCE(1575); + if (lookahead == '~') ADVANCE(1581); END_STATE(); case 323: - if (lookahead == '>') ADVANCE(1499); + if (lookahead == '>') ADVANCE(1528); END_STATE(); case 324: - if (lookahead == '>') ADVANCE(1746); + if (lookahead == '>') ADVANCE(1775); END_STATE(); case 325: - if (lookahead == '>') ADVANCE(1744); + if (lookahead == '>') ADVANCE(1773); END_STATE(); case 326: - if (lookahead == '>') ADVANCE(1740); + if (lookahead == '>') ADVANCE(1769); END_STATE(); case 327: - if (lookahead == '>') ADVANCE(1742); + if (lookahead == '>') ADVANCE(1771); END_STATE(); case 328: - if (lookahead == '>') ADVANCE(519); + if (lookahead == '>') ADVANCE(530); END_STATE(); case 329: - if (lookahead == '>') ADVANCE(521); + if (lookahead == '>') ADVANCE(532); END_STATE(); case 330: - if (lookahead == '>') ADVANCE(523); + if (lookahead == '>') ADVANCE(534); END_STATE(); case 331: - if (lookahead == '>') ADVANCE(524); + if (lookahead == '>') ADVANCE(535); END_STATE(); case 332: - if (lookahead == 'I') ADVANCE(528); - if (lookahead == 'i') ADVANCE(528); + if (lookahead == 'I') ADVANCE(539); + if (lookahead == 'i') ADVANCE(539); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1652); + lookahead == 'b') ADVANCE(1681); END_STATE(); case 333: - if (lookahead == 'I') ADVANCE(528); - if (lookahead == 'i') ADVANCE(353); + if (lookahead == 'I') ADVANCE(539); + if (lookahead == 'i') ADVANCE(357); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1652); + lookahead == 'b') ADVANCE(1681); END_STATE(); case 334: - if (lookahead == 'I') ADVANCE(528); - if (lookahead == 'i') ADVANCE(415); - if (lookahead == 'o') ADVANCE(358); - if (lookahead == 's') ADVANCE(1657); + if (lookahead == 'I') ADVANCE(539); + if (lookahead == 'i') ADVANCE(423); + if (lookahead == 'o') ADVANCE(362); + if (lookahead == 's') ADVANCE(1686); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1652); + lookahead == 'b') ADVANCE(1681); END_STATE(); case 335: - if (lookahead == '_') ADVANCE(335); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); + if (lookahead == 'I') ADVANCE(539); + if (lookahead == 'i') ADVANCE(423); + if (lookahead == 's') ADVANCE(1686); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1681); END_STATE(); case 336: if (lookahead == '_') ADVANCE(336); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1675); END_STATE(); case 337: if (lookahead == '_') ADVANCE(337); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1640); END_STATE(); case 338: if (lookahead == '_') ADVANCE(338); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); END_STATE(); case 339: if (lookahead == '_') ADVANCE(339); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); END_STATE(); case 340: - if (lookahead == 'a') ADVANCE(464); + if (lookahead == '_') ADVANCE(340); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1674); END_STATE(); case 341: - if (lookahead == 'a') ADVANCE(464); - if (lookahead == 'r') ADVANCE(1657); + if (lookahead == 'a') ADVANCE(474); END_STATE(); case 342: - if (lookahead == 'a') ADVANCE(513); - if (lookahead == 'e') ADVANCE(383); + if (lookahead == 'a') ADVANCE(474); + if (lookahead == 'r') ADVANCE(1686); END_STATE(); case 343: - if (lookahead == 'a') ADVANCE(413); + if (lookahead == 'a') ADVANCE(415); END_STATE(); case 344: - if (lookahead == 'a') ADVANCE(456); + if (lookahead == 'a') ADVANCE(524); END_STATE(); case 345: - if (lookahead == 'a') ADVANCE(465); + if (lookahead == 'a') ADVANCE(524); + if (lookahead == 'e') ADVANCE(388); END_STATE(); case 346: - if (lookahead == 'a') ADVANCE(462); + if (lookahead == 'a') ADVANCE(465); END_STATE(); case 347: - if (lookahead == 'a') ADVANCE(476); + if (lookahead == 'a') ADVANCE(475); END_STATE(); case 348: - if (lookahead == 'a') ADVANCE(493); + if (lookahead == 'a') ADVANCE(421); END_STATE(); case 349: - if (lookahead == 'a') ADVANCE(495); + if (lookahead == 'a') ADVANCE(421); + if (lookahead == 'i') ADVANCE(429); END_STATE(); case 350: - if (lookahead == 'a') ADVANCE(494); + if (lookahead == 'a') ADVANCE(472); END_STATE(); case 351: - if (lookahead == 'a') ADVANCE(421); - if (lookahead == 'o') ADVANCE(449); - if (lookahead == 's') ADVANCE(386); - if (lookahead == 'x') ADVANCE(435); + if (lookahead == 'a') ADVANCE(486); END_STATE(); case 352: - if (lookahead == 'a') ADVANCE(461); + if (lookahead == 'a') ADVANCE(503); END_STATE(); case 353: - if (lookahead == 'b') ADVANCE(1652); + if (lookahead == 'a') ADVANCE(505); END_STATE(); case 354: - if (lookahead == 'c') ADVANCE(1657); + if (lookahead == 'a') ADVANCE(504); END_STATE(); case 355: - if (lookahead == 'c') ADVANCE(385); + if (lookahead == 'a') ADVANCE(430); + if (lookahead == 'o') ADVANCE(459); + if (lookahead == 's') ADVANCE(391); + if (lookahead == 'x') ADVANCE(443); END_STATE(); case 356: - if (lookahead == 'c') ADVANCE(378); + if (lookahead == 'a') ADVANCE(471); END_STATE(); case 357: - if (lookahead == 'd') ADVANCE(1526); + if (lookahead == 'b') ADVANCE(1681); END_STATE(); case 358: - if (lookahead == 'd') ADVANCE(1570); + if (lookahead == 'c') ADVANCE(1686); END_STATE(); case 359: - if (lookahead == 'd') ADVANCE(1584); + if (lookahead == 'c') ADVANCE(390); END_STATE(); case 360: - if (lookahead == 'd') ADVANCE(466); + if (lookahead == 'c') ADVANCE(385); END_STATE(); case 361: - if (lookahead == 'd') ADVANCE(503); + if (lookahead == 'd') ADVANCE(1555); END_STATE(); case 362: - if (lookahead == 'd') ADVANCE(472); + if (lookahead == 'd') ADVANCE(1599); END_STATE(); case 363: - if (lookahead == 'e') ADVANCE(1046); + if (lookahead == 'd') ADVANCE(1613); END_STATE(); case 364: - if (lookahead == 'e') ADVANCE(1070); + if (lookahead == 'd') ADVANCE(476); END_STATE(); case 365: - if (lookahead == 'e') ADVANCE(1088); + if (lookahead == 'd') ADVANCE(514); END_STATE(); case 366: - if (lookahead == 'e') ADVANCE(1091); + if (lookahead == 'd') ADVANCE(482); END_STATE(); case 367: - if (lookahead == 'e') ADVANCE(1055); + if (lookahead == 'e') ADVANCE(1067); END_STATE(); case 368: - if (lookahead == 'e') ADVANCE(1555); + if (lookahead == 'e') ADVANCE(1091); END_STATE(); case 369: - if (lookahead == 'e') ADVANCE(1557); + if (lookahead == 'e') ADVANCE(1112); END_STATE(); case 370: - if (lookahead == 'e') ADVANCE(383); + if (lookahead == 'e') ADVANCE(1115); END_STATE(); case 371: - if (lookahead == 'e') ADVANCE(1477); + if (lookahead == 'e') ADVANCE(1076); END_STATE(); case 372: - if (lookahead == 'e') ADVANCE(354); - if (lookahead == 't') ADVANCE(344); + if (lookahead == 'e') ADVANCE(1584); END_STATE(); case 373: - if (lookahead == 'e') ADVANCE(325); + if (lookahead == 'e') ADVANCE(1586); END_STATE(); case 374: - if (lookahead == 'e') ADVANCE(457); + if (lookahead == 'e') ADVANCE(388); END_STATE(); case 375: - if (lookahead == 'e') ADVANCE(329); + if (lookahead == 'e') ADVANCE(1506); END_STATE(); case 376: - if (lookahead == 'e') ADVANCE(453); + if (lookahead == 'e') ADVANCE(358); END_STATE(); case 377: - if (lookahead == 'e') ADVANCE(455); + if (lookahead == 'e') ADVANCE(358); + if (lookahead == 't') ADVANCE(346); END_STATE(); case 378: - if (lookahead == 'e') ADVANCE(410); + if (lookahead == 'e') ADVANCE(325); END_STATE(); case 379: - if (lookahead == 'e') ADVANCE(458); + if (lookahead == 'e') ADVANCE(467); END_STATE(); case 380: - if (lookahead == 'e') ADVANCE(423); - if (lookahead == 'h') ADVANCE(345); - if (lookahead == 'i') ADVANCE(418); - if (lookahead == 'l') ADVANCE(401); - if (lookahead == 's') ADVANCE(500); + if (lookahead == 'e') ADVANCE(329); END_STATE(); case 381: - if (lookahead == 'f') ADVANCE(1067); + if (lookahead == 'e') ADVANCE(464); END_STATE(); case 382: - if (lookahead == 'f') ADVANCE(1067); - if (lookahead == 'n') ADVANCE(1082); + if (lookahead == 'e') ADVANCE(466); END_STATE(); case 383: - if (lookahead == 'f') ADVANCE(824); + if (lookahead == 'e') ADVANCE(468); END_STATE(); case 384: - if (lookahead == 'f') ADVANCE(1476); + if (lookahead == 'e') ADVANCE(432); + if (lookahead == 'h') ADVANCE(347); + if (lookahead == 'i') ADVANCE(426); + if (lookahead == 'l') ADVANCE(407); + if (lookahead == 's') ADVANCE(510); END_STATE(); case 385: - if (lookahead == 'h') ADVANCE(1076); + if (lookahead == 'e') ADVANCE(418); END_STATE(); case 386: - if (lookahead == 'h') ADVANCE(407); + if (lookahead == 'f') ADVANCE(1088); END_STATE(); case 387: - if (lookahead == 'h') ADVANCE(1542); + if (lookahead == 'f') ADVANCE(1088); + if (lookahead == 'n') ADVANCE(1106); END_STATE(); case 388: - if (lookahead == 'h') ADVANCE(1538); + if (lookahead == 'f') ADVANCE(840); END_STATE(); case 389: - if (lookahead == 'h') ADVANCE(1544); + if (lookahead == 'f') ADVANCE(1505); END_STATE(); case 390: - if (lookahead == 'h') ADVANCE(1540); + if (lookahead == 'h') ADVANCE(1097); END_STATE(); case 391: - if (lookahead == 'h') ADVANCE(1473); + if (lookahead == 'h') ADVANCE(413); END_STATE(); case 392: - if (lookahead == 'h') ADVANCE(1474); + if (lookahead == 'h') ADVANCE(1571); END_STATE(); case 393: - if (lookahead == 'h') ADVANCE(301); + if (lookahead == 'h') ADVANCE(1567); END_STATE(); case 394: - if (lookahead == 'i') ADVANCE(404); + if (lookahead == 'h') ADVANCE(1573); END_STATE(); case 395: - if (lookahead == 'i') ADVANCE(475); + if (lookahead == 'h') ADVANCE(1569); END_STATE(); case 396: - if (lookahead == 'i') ADVANCE(483); + if (lookahead == 'h') ADVANCE(1502); END_STATE(); case 397: - if (lookahead == 'i') ADVANCE(485); + if (lookahead == 'h') ADVANCE(1503); END_STATE(); case 398: - if (lookahead == 'i') ADVANCE(488); + if (lookahead == 'h') ADVANCE(301); END_STATE(); case 399: - if (lookahead == 'i') ADVANCE(489); + if (lookahead == 'i') ADVANCE(410); END_STATE(); case 400: - if (lookahead == 'i') ADVANCE(490); + if (lookahead == 'i') ADVANCE(485); END_STATE(); case 401: - if (lookahead == 'i') ADVANCE(405); + if (lookahead == 'i') ADVANCE(429); END_STATE(); case 402: - if (lookahead == 'i') ADVANCE(346); + if (lookahead == 'i') ADVANCE(493); END_STATE(); case 403: - if (lookahead == 'k') ADVANCE(1657); + if (lookahead == 'i') ADVANCE(494); END_STATE(); case 404: - if (lookahead == 'k') ADVANCE(368); + if (lookahead == 'i') ADVANCE(498); END_STATE(); case 405: - if (lookahead == 'k') ADVANCE(369); + if (lookahead == 'i') ADVANCE(499); END_STATE(); case 406: - if (lookahead == 'l') ADVANCE(1094); + if (lookahead == 'i') ADVANCE(500); END_STATE(); case 407: - if (lookahead == 'l') ADVANCE(1580); - if (lookahead == 'r') ADVANCE(1582); + if (lookahead == 'i') ADVANCE(411); END_STATE(); case 408: - if (lookahead == 'l') ADVANCE(402); + if (lookahead == 'i') ADVANCE(350); END_STATE(); case 409: - if (lookahead == 'l') ADVANCE(406); + if (lookahead == 'k') ADVANCE(1686); END_STATE(); case 410: - if (lookahead == 'l') ADVANCE(411); + if (lookahead == 'k') ADVANCE(372); END_STATE(); case 411: - if (lookahead == 'l') ADVANCE(306); + if (lookahead == 'k') ADVANCE(373); END_STATE(); case 412: - if (lookahead == 'l') ADVANCE(367); + if (lookahead == 'l') ADVANCE(1118); END_STATE(); case 413: - if (lookahead == 'l') ADVANCE(468); + if (lookahead == 'l') ADVANCE(1609); + if (lookahead == 'r') ADVANCE(1611); END_STATE(); case 414: - if (lookahead == 'n') ADVANCE(1052); + if (lookahead == 'l') ADVANCE(523); END_STATE(); case 415: - if (lookahead == 'n') ADVANCE(1657); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1652); + if (lookahead == 'l') ADVANCE(414); END_STATE(); case 416: - if (lookahead == 'n') ADVANCE(357); + if (lookahead == 'l') ADVANCE(408); END_STATE(); case 417: - if (lookahead == 'n') ADVANCE(1082); + if (lookahead == 'l') ADVANCE(412); END_STATE(); case 418: - if (lookahead == 'n') ADVANCE(1532); + if (lookahead == 'l') ADVANCE(419); END_STATE(); case 419: - if (lookahead == 'n') ADVANCE(1475); + if (lookahead == 'l') ADVANCE(306); END_STATE(); case 420: - if (lookahead == 'n') ADVANCE(360); + if (lookahead == 'l') ADVANCE(371); END_STATE(); case 421: - if (lookahead == 'n') ADVANCE(359); + if (lookahead == 'l') ADVANCE(478); END_STATE(); case 422: - if (lookahead == 'n') ADVANCE(470); + if (lookahead == 'n') ADVANCE(1073); END_STATE(); case 423: - if (lookahead == 'n') ADVANCE(362); + if (lookahead == 'n') ADVANCE(1686); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1681); END_STATE(); case 424: - if (lookahead == 'o') ADVANCE(502); + if (lookahead == 'n') ADVANCE(361); END_STATE(); case 425: - if (lookahead == 'o') ADVANCE(324); + if (lookahead == 'n') ADVANCE(1106); END_STATE(); case 426: - if (lookahead == 'o') ADVANCE(448); + if (lookahead == 'n') ADVANCE(1561); END_STATE(); case 427: - if (lookahead == 'o') ADVANCE(384); + if (lookahead == 'n') ADVANCE(1504); END_STATE(); case 428: - if (lookahead == 'o') ADVANCE(442); + if (lookahead == 'n') ADVANCE(364); END_STATE(); case 429: - if (lookahead == 'o') ADVANCE(481); + if (lookahead == 'n') ADVANCE(343); END_STATE(); case 430: - if (lookahead == 'o') ADVANCE(481); - if (lookahead == 's') ADVANCE(1657); + if (lookahead == 'n') ADVANCE(363); END_STATE(); case 431: - if (lookahead == 'o') ADVANCE(358); + if (lookahead == 'n') ADVANCE(480); END_STATE(); case 432: - if (lookahead == 'o') ADVANCE(361); + if (lookahead == 'n') ADVANCE(366); END_STATE(); case 433: - if (lookahead == 'o') ADVANCE(328); + if (lookahead == 'o') ADVANCE(512); END_STATE(); case 434: - if (lookahead == 'o') ADVANCE(422); + if (lookahead == 'o') ADVANCE(324); END_STATE(); case 435: - if (lookahead == 'o') ADVANCE(450); + if (lookahead == 'o') ADVANCE(458); END_STATE(); case 436: - if (lookahead == 'o') ADVANCE(478); + if (lookahead == 'o') ADVANCE(389); END_STATE(); case 437: - if (lookahead == 'o') ADVANCE(479); - if (lookahead == 'u') ADVANCE(409); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(534); + if (lookahead == 'o') ADVANCE(451); END_STATE(); case 438: - if (lookahead == 'o') ADVANCE(505); + if (lookahead == 'o') ADVANCE(491); END_STATE(); case 439: - if (lookahead == 'o') ADVANCE(460); + if (lookahead == 'o') ADVANCE(491); + if (lookahead == 's') ADVANCE(1686); END_STATE(); case 440: - if (lookahead == 'p') ADVANCE(439); - if (lookahead == 't') ADVANCE(376); + if (lookahead == 'o') ADVANCE(362); END_STATE(); case 441: - if (lookahead == 'p') ADVANCE(371); + if (lookahead == 'o') ADVANCE(365); END_STATE(); case 442: - if (lookahead == 'p') ADVANCE(492); + if (lookahead == 'o') ADVANCE(328); END_STATE(); case 443: - if (lookahead == 'p') ADVANCE(348); + if (lookahead == 'o') ADVANCE(460); END_STATE(); case 444: - if (lookahead == 'p') ADVANCE(349); + if (lookahead == 'o') ADVANCE(431); END_STATE(); case 445: - if (lookahead == 'p') ADVANCE(350); + if (lookahead == 'o') ADVANCE(488); END_STATE(); case 446: - if (lookahead == 'r') ADVANCE(1530); + if (lookahead == 'o') ADVANCE(489); + if (lookahead == 'u') ADVANCE(417); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(545); END_STATE(); case 447: - if (lookahead == 'r') ADVANCE(286); + if (lookahead == 'o') ADVANCE(515); END_STATE(); case 448: - if (lookahead == 'r') ADVANCE(1528); + if (lookahead == 'o') ADVANCE(470); END_STATE(); case 449: - if (lookahead == 'r') ADVANCE(1588); + if (lookahead == 'p') ADVANCE(448); + if (lookahead == 't') ADVANCE(381); END_STATE(); case 450: - if (lookahead == 'r') ADVANCE(1586); + if (lookahead == 'p') ADVANCE(375); END_STATE(); case 451: - if (lookahead == 'r') ADVANCE(504); + if (lookahead == 'p') ADVANCE(502); END_STATE(); case 452: - if (lookahead == 'r') ADVANCE(291); + if (lookahead == 'p') ADVANCE(352); END_STATE(); case 453: - if (lookahead == 'r') ADVANCE(414); + if (lookahead == 'p') ADVANCE(353); END_STATE(); case 454: - if (lookahead == 'r') ADVANCE(327); + if (lookahead == 'p') ADVANCE(354); END_STATE(); case 455: - if (lookahead == 'r') ADVANCE(419); + if (lookahead == 'r') ADVANCE(1686); END_STATE(); case 456: - if (lookahead == 'r') ADVANCE(498); + if (lookahead == 'r') ADVANCE(1559); END_STATE(); case 457: - if (lookahead == 'r') ADVANCE(454); + if (lookahead == 'r') ADVANCE(286); END_STATE(); case 458: - if (lookahead == 'r') ADVANCE(459); + if (lookahead == 'r') ADVANCE(1557); END_STATE(); case 459: - if (lookahead == 'r') ADVANCE(331); + if (lookahead == 'r') ADVANCE(1617); END_STATE(); case 460: - if (lookahead == 'r') ADVANCE(477); + if (lookahead == 'r') ADVANCE(1615); END_STATE(); case 461: - if (lookahead == 'r') ADVANCE(499); + if (lookahead == 'r') ADVANCE(513); END_STATE(); case 462: - if (lookahead == 's') ADVANCE(669); + if (lookahead == 'r') ADVANCE(291); END_STATE(); case 463: - if (lookahead == 's') ADVANCE(1657); + if (lookahead == 'r') ADVANCE(327); END_STATE(); case 464: - if (lookahead == 's') ADVANCE(1534); + if (lookahead == 'r') ADVANCE(422); END_STATE(); case 465: - if (lookahead == 's') ADVANCE(1536); + if (lookahead == 'r') ADVANCE(508); END_STATE(); case 466: - if (lookahead == 's') ADVANCE(296); + if (lookahead == 'r') ADVANCE(427); END_STATE(); case 467: - if (lookahead == 's') ADVANCE(364); + if (lookahead == 'r') ADVANCE(463); END_STATE(); case 468: - if (lookahead == 's') ADVANCE(366); + if (lookahead == 'r') ADVANCE(469); END_STATE(); case 469: - if (lookahead == 's') ADVANCE(363); + if (lookahead == 'r') ADVANCE(331); END_STATE(); case 470: - if (lookahead == 's') ADVANCE(474); + if (lookahead == 'r') ADVANCE(487); END_STATE(); case 471: - if (lookahead == 's') ADVANCE(304); + if (lookahead == 'r') ADVANCE(509); END_STATE(); case 472: - if (lookahead == 's') ADVANCE(305); + if (lookahead == 's') ADVANCE(680); END_STATE(); case 473: - if (lookahead == 's') ADVANCE(307); + if (lookahead == 's') ADVANCE(1686); END_STATE(); case 474: - if (lookahead == 't') ADVANCE(681); + if (lookahead == 's') ADVANCE(1563); END_STATE(); case 475: - if (lookahead == 't') ADVANCE(293); + if (lookahead == 's') ADVANCE(1565); END_STATE(); case 476: - if (lookahead == 't') ADVANCE(355); + if (lookahead == 's') ADVANCE(296); END_STATE(); case 477: - if (lookahead == 't') ADVANCE(665); + if (lookahead == 's') ADVANCE(368); END_STATE(); case 478: - if (lookahead == 't') ADVANCE(295); + if (lookahead == 's') ADVANCE(370); END_STATE(); case 479: - if (lookahead == 't') ADVANCE(543); + if (lookahead == 's') ADVANCE(367); END_STATE(); case 480: - if (lookahead == 't') ADVANCE(344); + if (lookahead == 's') ADVANCE(484); END_STATE(); case 481: - if (lookahead == 't') ADVANCE(294); + if (lookahead == 's') ADVANCE(304); END_STATE(); case 482: - if (lookahead == 't') ADVANCE(280); + if (lookahead == 's') ADVANCE(305); END_STATE(); case 483: - if (lookahead == 't') ADVANCE(387); + if (lookahead == 's') ADVANCE(307); END_STATE(); case 484: - if (lookahead == 't') ADVANCE(514); + if (lookahead == 't') ADVANCE(692); END_STATE(); case 485: - if (lookahead == 't') ADVANCE(388); + if (lookahead == 't') ADVANCE(293); END_STATE(); case 486: - if (lookahead == 't') ADVANCE(326); + if (lookahead == 't') ADVANCE(359); END_STATE(); case 487: - if (lookahead == 't') ADVANCE(292); + if (lookahead == 't') ADVANCE(676); END_STATE(); case 488: - if (lookahead == 't') ADVANCE(389); + if (lookahead == 't') ADVANCE(295); END_STATE(); case 489: - if (lookahead == 't') ADVANCE(390); + if (lookahead == 't') ADVANCE(554); END_STATE(); case 490: - if (lookahead == 't') ADVANCE(393); + if (lookahead == 't') ADVANCE(346); END_STATE(); case 491: - if (lookahead == 't') ADVANCE(330); + if (lookahead == 't') ADVANCE(294); END_STATE(); case 492: - if (lookahead == 't') ADVANCE(302); + if (lookahead == 't') ADVANCE(280); END_STATE(); case 493: - if (lookahead == 't') ADVANCE(391); + if (lookahead == 't') ADVANCE(392); END_STATE(); case 494: - if (lookahead == 't') ADVANCE(392); + if (lookahead == 't') ADVANCE(393); END_STATE(); case 495: - if (lookahead == 't') ADVANCE(497); + if (lookahead == 't') ADVANCE(525); END_STATE(); case 496: - if (lookahead == 't') ADVANCE(376); + if (lookahead == 't') ADVANCE(326); END_STATE(); case 497: - if (lookahead == 't') ADVANCE(377); + if (lookahead == 't') ADVANCE(292); END_STATE(); case 498: - if (lookahead == 't') ADVANCE(471); + if (lookahead == 't') ADVANCE(394); END_STATE(); case 499: - if (lookahead == 't') ADVANCE(473); + if (lookahead == 't') ADVANCE(395); END_STATE(); case 500: - if (lookahead == 't') ADVANCE(352); + if (lookahead == 't') ADVANCE(398); END_STATE(); case 501: - if (lookahead == 'u') ADVANCE(515); - if (lookahead == 'x') ADVANCE(562); - if (lookahead != 0) ADVANCE(1703); + if (lookahead == 't') ADVANCE(330); END_STATE(); case 502: - if (lookahead == 'u') ADVANCE(486); + if (lookahead == 't') ADVANCE(302); END_STATE(); case 503: - if (lookahead == 'u') ADVANCE(412); + if (lookahead == 't') ADVANCE(396); END_STATE(); case 504: - if (lookahead == 'u') ADVANCE(365); + if (lookahead == 't') ADVANCE(397); END_STATE(); case 505: - if (lookahead == 'u') ADVANCE(491); + if (lookahead == 't') ADVANCE(507); END_STATE(); case 506: - if (lookahead == 'u') ADVANCE(516); - if (lookahead == 'x') ADVANCE(563); - if (lookahead != 0) ADVANCE(1695); + if (lookahead == 't') ADVANCE(381); END_STATE(); case 507: - if (lookahead == 'w') ADVANCE(396); + if (lookahead == 't') ADVANCE(382); END_STATE(); case 508: - if (lookahead == 'w') ADVANCE(397); + if (lookahead == 't') ADVANCE(481); END_STATE(); case 509: - if (lookahead == 'w') ADVANCE(398); + if (lookahead == 't') ADVANCE(483); END_STATE(); case 510: - if (lookahead == 'w') ADVANCE(399); + if (lookahead == 't') ADVANCE(356); END_STATE(); case 511: - if (lookahead == 'w') ADVANCE(400); + if (lookahead == 'u') ADVANCE(526); + if (lookahead == 'x') ADVANCE(573); + if (lookahead != 0) ADVANCE(1732); END_STATE(); case 512: - if (lookahead == 'x') ADVANCE(496); + if (lookahead == 'u') ADVANCE(496); END_STATE(); case 513: - if (lookahead == 'y') ADVANCE(1657); + if (lookahead == 'u') ADVANCE(369); END_STATE(); case 514: - if (lookahead == 'y') ADVANCE(441); + if (lookahead == 'u') ADVANCE(420); END_STATE(); case 515: - if (lookahead == '{') ADVANCE(559); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(557); + if (lookahead == 'u') ADVANCE(501); END_STATE(); case 516: - if (lookahead == '{') ADVANCE(561); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(564); + if (lookahead == 'u') ADVANCE(527); + if (lookahead == 'x') ADVANCE(574); + if (lookahead != 0) ADVANCE(1724); END_STATE(); case 517: - if (lookahead == '|') ADVANCE(1454); + if (lookahead == 'w') ADVANCE(402); END_STATE(); case 518: - if (lookahead == '|') ADVANCE(1455); + if (lookahead == 'w') ADVANCE(403); END_STATE(); case 519: - if (lookahead == '|') ADVANCE(1459); + if (lookahead == 'w') ADVANCE(404); END_STATE(); case 520: - if (lookahead == '|') ADVANCE(1452); + if (lookahead == 'w') ADVANCE(405); END_STATE(); case 521: - if (lookahead == '|') ADVANCE(1458); + if (lookahead == 'w') ADVANCE(406); END_STATE(); case 522: - if (lookahead == '|') ADVANCE(1453); + if (lookahead == 'x') ADVANCE(506); END_STATE(); case 523: - if (lookahead == '|') ADVANCE(1456); + if (lookahead == 'y') ADVANCE(1100); END_STATE(); case 524: - if (lookahead == '|') ADVANCE(1457); + if (lookahead == 'y') ADVANCE(1686); END_STATE(); case 525: - if (lookahead == '}') ADVANCE(1703); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(525); + if (lookahead == 'y') ADVANCE(450); END_STATE(); case 526: - if (lookahead == '}') ADVANCE(1695); + if (lookahead == '{') ADVANCE(570); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(526); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(568); END_STATE(); case 527: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(534); + if (lookahead == '{') ADVANCE(572); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(575); END_STATE(); case 528: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1652); + if (lookahead == '|') ADVANCE(1483); END_STATE(); case 529: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1104); + if (lookahead == '|') ADVANCE(1484); END_STATE(); case 530: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1102); + if (lookahead == '|') ADVANCE(1488); END_STATE(); case 531: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(538); + if (lookahead == '|') ADVANCE(1481); END_STATE(); case 532: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(539); + if (lookahead == '|') ADVANCE(1487); END_STATE(); case 533: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(529); + if (lookahead == '|') ADVANCE(1482); END_STATE(); case 534: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1108); + if (lookahead == '|') ADVANCE(1485); END_STATE(); case 535: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(531); + if (lookahead == '|') ADVANCE(1486); END_STATE(); case 536: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(530); + if (lookahead == '}') ADVANCE(1732); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(536); END_STATE(); case 537: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(532); + if (lookahead == '}') ADVANCE(1724); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(537); END_STATE(); case 538: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(541); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(545); END_STATE(); case 539: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(540); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1681); END_STATE(); case 540: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1097); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1128); END_STATE(); case 541: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1103); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1126); END_STATE(); case 542: - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1670); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(549); END_STATE(); case 543: - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1559); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(550); END_STATE(); case 544: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(317); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(540); END_STATE(); case 545: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1132); END_STATE(); case 546: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1666); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(542); END_STATE(); case 547: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1678); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(541); END_STATE(); case 548: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1670); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(543); END_STATE(); case 549: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(544); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(552); END_STATE(); case 550: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(545); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(551); END_STATE(); case 551: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1677); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1121); END_STATE(); case 552: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(303); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1127); END_STATE(); case 553: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(552); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1699); END_STATE(); case 554: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(551); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(1588); END_STATE(); case 555: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(316); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(317); END_STATE(); case 556: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(555); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1696); END_STATE(); case 557: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1695); + END_STATE(); + case 558: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1707); + END_STATE(); + case 559: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1699); + END_STATE(); + case 560: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(555); + END_STATE(); + case 561: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(556); + END_STATE(); + case 562: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1706); + END_STATE(); + case 563: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(303); + END_STATE(); + case 564: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(563); + END_STATE(); + case 565: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(562); + END_STATE(); + case 566: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(316); + END_STATE(); + case 567: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(566); + END_STATE(); + case 568: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(562); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(573); END_STATE(); - case 558: + case 569: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1703); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1732); END_STATE(); - case 559: + case 570: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(525); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(536); END_STATE(); - case 560: + case 571: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1695); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1724); END_STATE(); - case 561: + case 572: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(526); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(537); END_STATE(); - case 562: + case 573: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(558); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(569); END_STATE(); - case 563: + case 574: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(560); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(571); END_STATE(); - case 564: + case 575: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(563); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(574); END_STATE(); - case 565: - if (eof) ADVANCE(660); + case 576: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1717, - '"', 1684, - '#', 2187, - '$', 1470, - '&', 823, - '\'', 1687, - '(', 1466, - ')', 1467, - '*', 1511, - '+', 1574, - ',', 1468, - '-', 1485, - '.', 1720, - '/', 1569, - ':', 1712, - ';', 1450, - '<', 1548, - '=', 672, - '>', 1479, - '?', 1716, - '@', 1461, - '[', 1464, - ']', 1465, - '^', 1730, - '_', 1501, - '`', 1691, - '{', 1497, - '|', 1451, - '}', 1498, + '!', 1746, + '"', 1713, + '#', 2216, + '$', 1499, + '&', 839, + '\'', 1716, + '(', 1495, + ')', 1496, + '*', 1540, + '+', 1603, + ',', 1497, + '-', 1514, + '.', 1749, + '/', 1598, + ':', 1741, + ';', 1479, + '<', 1577, + '=', 683, + '>', 1508, + '?', 1745, + '@', 1490, + '[', 1493, + ']', 1494, + '^', 1759, + '_', 1530, + '`', 1720, + '{', 1526, + '|', 1480, + '}', 1527, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(565); + lookahead == ' ') SKIP(576); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(1372); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(1396); END_STATE(); - case 566: - if (eof) ADVANCE(660); + case 577: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1717, - '"', 1684, - '#', 2187, - '\'', 1687, - ')', 1467, - '*', 1510, - '+', 701, + '!', 1746, + '"', 1713, + '#', 2216, + '\'', 1716, + ')', 1496, + '*', 1539, + '+', 712, '-', 308, - '.', 1725, - ';', 1450, - '?', 1716, - 'I', 808, - 'N', 804, - '[', 1464, - '_', 715, - '`', 1691, - 'a', 753, - 'c', 720, - 'd', 730, - 'e', 758, - 'f', 722, - 'i', 714, - 'l', 738, - 'm', 724, - 'n', 797, - 't', 771, - 'u', 784, - 'w', 750, - '}', 1498, + '.', 1754, + ';', 1479, + '?', 1745, + 'I', 824, + 'N', 820, + '[', 1493, + '_', 726, + '`', 1720, + 'a', 765, + 'c', 731, + 'd', 742, + 'e', 772, + 'f', 732, + 'i', 725, + 'l', 750, + 'm', 736, + 'n', 812, + 't', 786, + 'u', 799, + 'w', 762, + '}', 1527, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(566); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); + lookahead == ' ') SKIP(577); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '.' < lookahead) && (lookahead < '0' || '@' < lookahead) && (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(823); + (lookahead < '{' || '}' < lookahead)) ADVANCE(839); END_STATE(); - case 567: - if (eof) ADVANCE(660); + case 578: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1717, - '"', 1684, - '#', 2187, - '\'', 1687, - ')', 1467, - '*', 1510, - '+', 701, + '!', 1746, + '"', 1713, + '#', 2216, + '\'', 1716, + ')', 1496, + '*', 1539, + '+', 712, '-', 308, - '.', 1725, - ';', 1450, - 'I', 808, - 'N', 804, - '[', 1464, - '_', 715, - '`', 1691, - 'a', 753, - 'c', 720, - 'd', 730, - 'e', 758, - 'f', 722, - 'i', 714, - 'l', 738, - 'm', 724, - 'n', 797, - 't', 771, - 'u', 784, - 'w', 750, - '}', 1498, + '.', 1754, + ';', 1479, + 'I', 824, + 'N', 820, + '[', 1493, + '_', 726, + '`', 1720, + 'a', 765, + 'c', 731, + 'd', 742, + 'e', 772, + 'f', 732, + 'i', 725, + 'l', 750, + 'm', 736, + 'n', 812, + 't', 786, + 'u', 799, + 'w', 762, + '}', 1527, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(567); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(823); + lookahead == ' ') SKIP(578); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(839); END_STATE(); - case 568: - if (eof) ADVANCE(660); + case 579: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1717, - '#', 2187, - '(', 1466, - ')', 1467, + '!', 1746, + '#', 2216, + '(', 1495, + ')', 1496, '-', 300, - '.', 1719, - ':', 1462, - ';', 1450, - '=', 672, - '>', 1478, - '?', 1716, - '[', 1464, - 'a', 416, + '.', 1748, + ':', 1491, + ';', 1479, + '=', 683, + '>', 1507, + '?', 1745, + '[', 1493, + 'a', 424, 'e', 288, - 'i', 417, + 'i', 425, 'o', 289, - 'x', 426, - '{', 1497, - '|', 1451, - '}', 1498, + 'x', 435, + '{', 1526, + '|', 1480, + '}', 1527, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(568); + lookahead == ' ') SKIP(579); END_STATE(); - case 569: - if (eof) ADVANCE(660); + case 580: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1717, - '#', 2187, - '(', 1466, - ')', 1467, + '!', 1746, + '#', 2216, + '(', 1495, + ')', 1496, '-', 300, - '.', 1721, - ':', 1462, - ';', 1450, - '<', 1140, - '=', 672, - '>', 1478, - '?', 1716, - '@', 1480, - '[', 1464, - 'a', 416, + '.', 1750, + ':', 1491, + ';', 1479, + '<', 1164, + '=', 683, + '>', 1507, + '?', 1745, + '@', 1509, + '[', 1493, + 'a', 424, 'e', 288, - 'i', 417, + 'i', 425, 'o', 289, - 'x', 426, - '{', 1497, - '|', 1451, - '}', 1498, + 'x', 435, + '{', 1526, + '|', 1480, + '}', 1527, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(568); + lookahead == ' ') SKIP(579); END_STATE(); - case 570: - if (eof) ADVANCE(660); + case 581: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1717, - '#', 2187, - '(', 1466, - ')', 1467, + '!', 1746, + '#', 2216, + '(', 1495, + ')', 1496, '-', 297, - '.', 1719, - ':', 1462, - ';', 1450, - '=', 674, - '>', 1478, - '?', 1716, - '[', 1464, - 'a', 416, + '.', 1748, + ':', 1491, + ';', 1479, + '=', 685, + '>', 1507, + '?', 1745, + '[', 1493, + 'a', 424, 'e', 288, - 'i', 382, + 'i', 387, 'o', 289, - 'x', 426, - '{', 1497, - '|', 1451, - '}', 1498, + 'x', 435, + '{', 1526, + '|', 1480, + '}', 1527, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(570); + lookahead == ' ') SKIP(581); END_STATE(); - case 571: - if (eof) ADVANCE(660); + case 582: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1717, - '#', 2187, - '(', 1466, - ')', 1467, + '!', 1746, + '#', 2216, + '(', 1495, + ')', 1496, '-', 297, - '.', 1721, - ':', 1462, - ';', 1450, - '=', 674, - '>', 1478, - '?', 1716, - '[', 1464, - 'a', 416, + '.', 1750, + ':', 1491, + ';', 1479, + '=', 685, + '>', 1507, + '?', 1745, + '[', 1493, + 'a', 424, 'e', 288, - 'i', 382, + 'i', 387, 'o', 289, - 'x', 426, - '{', 1497, - '|', 1451, - '}', 1498, + 'x', 435, + '{', 1526, + '|', 1480, + '}', 1527, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(570); + lookahead == ' ') SKIP(581); END_STATE(); - case 572: - if (eof) ADVANCE(660); + case 583: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1717, - '#', 2187, - ')', 1467, - '.', 1721, - ';', 1450, - '=', 1728, - '?', 1716, - 'e', 1373, - 'o', 1374, - '|', 1451, - '}', 1498, - '\t', 1449, - ' ', 1449, + '!', 1746, + '#', 2216, + ')', 1496, + '.', 1750, + ';', 1479, + '=', 1757, + '?', 1745, + 'e', 1397, + 'o', 1398, + '|', 1480, + '}', 1527, + '\t', 1478, + ' ', 1478, ); - if (set_contains(sym_long_flag_identifier_character_set_1, 686, lookahead)) ADVANCE(1446); + if (set_contains(sym_long_flag_identifier_character_set_1, 686, lookahead)) ADVANCE(1475); END_STATE(); - case 573: - if (eof) ADVANCE(660); + case 584: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1718, - '#', 2187, - '$', 1508, - '\'', 1690, - '(', 1560, - ')', 1467, - '*', 1512, - '+', 1577, - '-', 1494, - '.', 1721, - '/', 1567, - ':', 1712, - ';', 1450, - '<', 1549, - '=', 673, - '>', 1479, - '?', 1716, - '@', 1480, - ']', 1465, - '`', 1694, - 'a', 416, - 'b', 395, - 'c', 347, - 'd', 370, + '!', 1747, + '#', 2216, + '$', 1537, + '\'', 1719, + '(', 1589, + ')', 1496, + '*', 1541, + '+', 1606, + '-', 1523, + '.', 1750, + '/', 1596, + ':', 1741, + ';', 1479, + '<', 1578, + '=', 684, + '>', 1508, + '?', 1745, + '@', 1509, + ']', 1494, + '`', 1723, + 'a', 424, + 'b', 400, + 'c', 351, + 'd', 374, 'e', 283, - 'h', 340, - 'i', 417, - 'l', 394, - 'm', 431, - 'n', 429, + 'f', 401, + 'h', 341, + 'i', 425, + 'l', 399, + 'm', 440, + 'n', 438, 'o', 279, - 's', 480, - 'x', 426, - '{', 1497, - '|', 1451, - '}', 1498, + 's', 490, + 'x', 435, + '{', 1526, + '|', 1480, + '}', 1527, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(576); + lookahead == ' ') SKIP(587); END_STATE(); - case 574: - if (eof) ADVANCE(660); + case 585: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1718, - '#', 2187, - '(', 1560, - ')', 1467, - '*', 1511, - '+', 1574, - '-', 1485, - '.', 1721, - '/', 1566, - ':', 1712, - ';', 1450, - '<', 1549, + '!', 1747, + '#', 2216, + '(', 1589, + ')', 1496, + '*', 1540, + '+', 1603, + '-', 1514, + '.', 1750, + '/', 1595, + ':', 1741, + ';', 1479, + '<', 1578, '=', 321, - '>', 1479, - '?', 1716, - '@', 1461, - 'B', 1652, + '>', 1508, + '?', 1745, + '@', 1490, + 'B', 1681, 'E', 333, 'G', 333, 'K', 333, 'M', 333, 'P', 333, 'T', 333, - '[', 1664, - 'a', 416, - 'b', 1654, - 'd', 342, + '[', 1693, + 'a', 424, + 'b', 1683, + 'd', 345, 'e', 281, + 'f', 401, 'g', 332, - 'h', 341, - 'i', 382, + 'h', 342, + 'i', 387, 'k', 332, - 'l', 394, + 'l', 399, 'm', 334, - 'n', 430, + 'n', 439, 'o', 279, 'p', 332, - 's', 372, + 's', 377, 't', 332, - 'u', 463, - 'w', 403, - 'x', 426, - '{', 1497, - '|', 1451, - '}', 1498, - 0xb5, 463, + 'u', 473, + 'w', 409, + 'x', 435, + '{', 1526, + '|', 1480, + '}', 1527, + 0xb5, 473, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(575); + lookahead == ' ') SKIP(586); END_STATE(); - case 575: - if (eof) ADVANCE(660); + case 586: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1718, - '#', 2187, - ')', 1467, - '*', 1511, - '+', 1574, - '-', 1485, - '.', 1719, - '/', 1566, - ':', 1712, - ';', 1450, - '<', 1549, + '!', 1747, + '#', 2216, + ')', 1496, + '*', 1540, + '+', 1603, + '-', 1514, + '.', 1748, + '/', 1595, + ':', 1741, + ';', 1479, + '<', 1578, '=', 321, - '>', 1479, - '?', 1716, - '@', 1461, - 'a', 416, - 'b', 395, - 'd', 370, + '>', 1508, + '?', 1745, + '@', 1490, + 'a', 424, + 'b', 400, + 'd', 374, 'e', 285, - 'h', 340, - 'i', 382, - 'l', 394, - 'm', 431, - 'n', 429, + 'f', 401, + 'h', 341, + 'i', 387, + 'l', 399, + 'm', 440, + 'n', 438, 'o', 279, - 's', 480, - 'x', 426, - '{', 1497, - '|', 1451, - '}', 1498, + 's', 490, + 'x', 435, + '{', 1526, + '|', 1480, + '}', 1527, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(575); + lookahead == ' ') SKIP(586); END_STATE(); - case 576: - if (eof) ADVANCE(660); + case 587: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1718, - '#', 2187, - ')', 1467, - '*', 1512, - '+', 1577, - '-', 1494, - '.', 1719, - '/', 1567, - ':', 1712, - ';', 1450, - '<', 1549, - '=', 673, - '>', 1479, - '?', 1716, - ']', 1465, - 'a', 416, - 'b', 395, - 'c', 347, - 'd', 370, + '!', 1747, + '#', 2216, + ')', 1496, + '*', 1541, + '+', 1606, + '-', 1523, + '.', 1748, + '/', 1596, + ':', 1741, + ';', 1479, + '<', 1578, + '=', 684, + '>', 1508, + '?', 1745, + ']', 1494, + 'a', 424, + 'b', 400, + 'c', 351, + 'd', 374, 'e', 283, - 'h', 340, - 'i', 417, - 'l', 394, - 'm', 431, - 'n', 429, + 'f', 401, + 'h', 341, + 'i', 425, + 'l', 399, + 'm', 440, + 'n', 438, 'o', 279, - 's', 480, - 'x', 426, - '{', 1497, - '|', 1451, - '}', 1498, + 's', 490, + 'x', 435, + '{', 1526, + '|', 1480, + '}', 1527, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(576); + lookahead == ' ') SKIP(587); END_STATE(); - case 577: - if (eof) ADVANCE(660); + case 588: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1792, - '#', 2187, - '$', 1469, - '(', 1560, - ')', 1467, - '*', 1511, - '+', 1575, - '-', 1492, - '.', 1603, - '/', 1566, - ';', 1450, - '<', 1549, - '=', 1794, - '>', 1479, - '_', 1812, - 'a', 1864, - 'b', 1851, - 'e', 1771, - 'h', 1822, - 'i', 1862, - 'l', 1850, - 'm', 1873, - 'n', 1872, - 'o', 1762, - 's', 1898, - 'x', 1870, - '{', 1497, - '|', 1451, - '}', 1498, + '!', 1821, + '#', 2216, + '$', 1498, + '(', 1589, + ')', 1496, + '*', 1540, + '+', 1604, + '-', 1521, + '.', 1632, + '/', 1595, + ';', 1479, + '<', 1578, + '=', 1823, + '>', 1508, + '_', 1841, + 'a', 1893, + 'b', 1880, + 'e', 1800, + 'h', 1851, + 'i', 1891, + 'l', 1879, + 'm', 1902, + 'n', 1901, + 'o', 1791, + 's', 1927, + 'x', 1899, + '{', 1526, + '|', 1480, + '}', 1527, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(609); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + lookahead == ' ') SKIP(620); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '_' || 'b' < lookahead)) ADVANCE(1933); + (lookahead < '_' || 'b' < lookahead)) ADVANCE(1962); END_STATE(); - case 578: - if (eof) ADVANCE(660); + case 589: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1792, - '#', 2187, - '$', 1469, - '(', 1560, - ')', 1467, - '*', 1511, - '+', 1575, - '-', 1492, - '.', 1603, - '/', 1566, - ';', 1450, - '<', 1549, - '=', 1794, - '>', 1479, - '_', 1812, - 'a', 1864, - 'b', 1851, - 'e', 1775, - 'h', 1822, - 'i', 1862, - 'l', 1850, - 'm', 1873, - 'n', 1872, - 'o', 1777, - 's', 1898, - 'x', 1870, - '|', 1451, - '}', 1498, + '!', 1821, + '#', 2216, + '$', 1498, + '(', 1589, + ')', 1496, + '*', 1540, + '+', 1604, + '-', 1521, + '.', 1632, + '/', 1595, + ';', 1479, + '<', 1578, + '=', 1823, + '>', 1508, + '_', 1841, + 'a', 1893, + 'b', 1880, + 'e', 1804, + 'h', 1851, + 'i', 1891, + 'l', 1879, + 'm', 1902, + 'n', 1901, + 'o', 1806, + 's', 1927, + 'x', 1899, + '|', 1480, + '}', 1527, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(611); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1933); + lookahead == ' ') SKIP(622); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1962); END_STATE(); - case 579: - if (eof) ADVANCE(660); + case 590: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1792, - '#', 2187, - '$', 1469, - '(', 1560, - ')', 1467, - '*', 1511, - '+', 1575, - '-', 1492, - '.', 1814, - '/', 1566, - ';', 1450, - '<', 1549, - '=', 1794, - '>', 1479, - '_', 1812, - 'a', 1864, - 'b', 1851, - 'e', 1771, - 'h', 1822, - 'i', 1862, - 'l', 1850, - 'm', 1873, - 'n', 1872, - 'o', 1762, - 's', 1898, - 'x', 1870, - '|', 1451, - '}', 1498, + '!', 1821, + '#', 2216, + '$', 1498, + '(', 1589, + ')', 1496, + '*', 1540, + '+', 1604, + '-', 1521, + '.', 1843, + '/', 1595, + ';', 1479, + '<', 1578, + '=', 1823, + '>', 1508, + '_', 1841, + 'a', 1893, + 'b', 1880, + 'e', 1800, + 'h', 1851, + 'i', 1891, + 'l', 1879, + 'm', 1902, + 'n', 1901, + 'o', 1791, + 's', 1927, + 'x', 1899, + '|', 1480, + '}', 1527, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(610); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1933); + lookahead == ' ') SKIP(621); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1962); END_STATE(); - case 580: - if (eof) ADVANCE(660); + case 591: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1792, - '#', 2187, - '$', 1469, - '(', 1560, - ')', 1467, - '*', 1511, - '+', 1575, - '-', 1492, - '.', 1814, - '/', 1566, - ';', 1450, - '<', 1549, - '=', 1794, - '>', 1479, - '_', 1812, - 'a', 1864, - 'b', 1851, - 'e', 1775, - 'h', 1822, - 'i', 1862, - 'l', 1850, - 'm', 1873, - 'n', 1872, - 'o', 1777, - 's', 1898, - 'x', 1870, - '|', 1451, - '}', 1498, + '!', 1821, + '#', 2216, + '$', 1498, + '(', 1589, + ')', 1496, + '*', 1540, + '+', 1604, + '-', 1521, + '.', 1843, + '/', 1595, + ';', 1479, + '<', 1578, + '=', 1823, + '>', 1508, + '_', 1841, + 'a', 1893, + 'b', 1880, + 'e', 1804, + 'h', 1851, + 'i', 1891, + 'l', 1879, + 'm', 1902, + 'n', 1901, + 'o', 1806, + 's', 1927, + 'x', 1899, + '|', 1480, + '}', 1527, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(611); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1933); + lookahead == ' ') SKIP(622); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1962); END_STATE(); - case 581: - if (eof) ADVANCE(660); + case 592: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1792, - '#', 2187, - '(', 1560, - ')', 1467, - '*', 1511, - '+', 1574, - '-', 1485, - '.', 1594, - '/', 1566, - ';', 1450, - '<', 1549, - '=', 1794, - '>', 1479, - 'B', 1652, - 'E', 1806, - 'G', 1809, - 'K', 1809, - 'M', 1809, - 'P', 1809, - 'T', 1809, - 'a', 1864, - 'b', 1655, - 'd', 1823, - 'e', 1763, - 'g', 1808, - 'h', 1821, - 'i', 1862, - 'k', 1808, - 'l', 1850, - 'm', 1810, - 'n', 1871, - 'o', 1762, - 'p', 1808, - 's', 1837, - 't', 1808, - 'u', 1890, - 'w', 1857, - 'x', 1870, - '|', 1451, - '}', 1498, - 0xb5, 1890, + '!', 1821, + '#', 2216, + '(', 1589, + ')', 1496, + '*', 1540, + '+', 1603, + '-', 1514, + '.', 1623, + '/', 1595, + ';', 1479, + '<', 1578, + '=', 1823, + '>', 1508, + 'B', 1681, + 'E', 1835, + 'G', 1838, + 'K', 1838, + 'M', 1838, + 'P', 1838, + 'T', 1838, + 'a', 1893, + 'b', 1684, + 'd', 1852, + 'e', 1792, + 'g', 1837, + 'h', 1850, + 'i', 1891, + 'k', 1837, + 'l', 1879, + 'm', 1839, + 'n', 1900, + 'o', 1791, + 'p', 1837, + 's', 1866, + 't', 1837, + 'u', 1919, + 'w', 1886, + 'x', 1899, + '|', 1480, + '}', 1527, + 0xb5, 1919, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + lookahead == ' ') SKIP(625); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); - case 582: - if (eof) ADVANCE(660); + case 593: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1792, - '#', 2187, - '(', 1560, - ')', 1467, - '*', 1511, - '+', 1574, - '-', 1485, - '.', 1594, - '/', 1566, - ';', 1450, - '<', 1549, - '=', 1794, - '>', 1479, - 'B', 1652, - 'E', 1806, - 'G', 1809, - 'K', 1809, - 'M', 1809, - 'P', 1809, - 'T', 1809, - 'a', 1864, - 'b', 1655, - 'd', 1823, - 'e', 1765, - 'g', 1808, - 'h', 1821, - 'i', 1862, - 'k', 1808, - 'l', 1850, - 'm', 1810, - 'n', 1871, - 'o', 1777, - 'p', 1808, - 's', 1837, - 't', 1808, - 'u', 1890, - 'w', 1857, - 'x', 1870, - '|', 1451, - '}', 1498, - 0xb5, 1890, + '!', 1821, + '#', 2216, + '(', 1589, + ')', 1496, + '*', 1540, + '+', 1603, + '-', 1514, + '.', 1623, + '/', 1595, + ';', 1479, + '<', 1578, + '=', 1823, + '>', 1508, + 'B', 1681, + 'E', 1835, + 'G', 1838, + 'K', 1838, + 'M', 1838, + 'P', 1838, + 'T', 1838, + 'a', 1893, + 'b', 1684, + 'd', 1852, + 'e', 1794, + 'g', 1837, + 'h', 1850, + 'i', 1891, + 'k', 1837, + 'l', 1879, + 'm', 1839, + 'n', 1900, + 'o', 1806, + 'p', 1837, + 's', 1866, + 't', 1837, + 'u', 1919, + 'w', 1886, + 'x', 1899, + '|', 1480, + '}', 1527, + 0xb5, 1919, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(615); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + lookahead == ' ') SKIP(626); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); - case 583: - if (eof) ADVANCE(660); + case 594: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1792, - '#', 2187, - '(', 1560, - ')', 1467, - '*', 1511, - '+', 1574, - '-', 1485, - '.', 1594, - '/', 1566, - ';', 1450, - '<', 1549, - '=', 1794, - '>', 1479, - 'E', 1818, - 'a', 1864, - 'b', 1851, - 'e', 1764, - 'h', 1822, - 'i', 1862, - 'l', 1850, - 'm', 1873, - 'n', 1872, - 'o', 1762, - 's', 1898, - 'x', 1870, - '{', 1497, - '|', 1451, - '}', 1498, + '!', 1821, + '#', 2216, + '(', 1589, + ')', 1496, + '*', 1540, + '+', 1603, + '-', 1514, + '.', 1623, + '/', 1595, + ';', 1479, + '<', 1578, + '=', 1823, + '>', 1508, + 'E', 1847, + 'a', 1893, + 'b', 1880, + 'e', 1793, + 'h', 1851, + 'i', 1891, + 'l', 1879, + 'm', 1902, + 'n', 1901, + 'o', 1791, + 's', 1927, + 'x', 1899, + '{', 1526, + '|', 1480, + '}', 1527, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(613); + lookahead == ' ') SKIP(624); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(1933); + (lookahead < '`' || 'b' < lookahead)) ADVANCE(1962); END_STATE(); - case 584: - if (eof) ADVANCE(660); + case 595: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1792, - '#', 2187, - '(', 1560, - ')', 1467, - '*', 1511, - '+', 1574, - '-', 1485, - '.', 1594, - '/', 1566, - ';', 1450, - '<', 1549, - '=', 1794, - '>', 1479, - 'E', 1818, - 'a', 1864, - 'b', 1851, - 'e', 1767, - 'h', 1822, - 'i', 1862, - 'l', 1850, - 'm', 1873, - 'n', 1872, - 'o', 1777, - 's', 1898, - 'x', 1870, - '|', 1451, - '}', 1498, + '!', 1821, + '#', 2216, + '(', 1589, + ')', 1496, + '*', 1540, + '+', 1603, + '-', 1514, + '.', 1623, + '/', 1595, + ';', 1479, + '<', 1578, + '=', 1823, + '>', 1508, + 'E', 1847, + 'a', 1893, + 'b', 1880, + 'e', 1796, + 'h', 1851, + 'i', 1891, + 'l', 1879, + 'm', 1902, + 'n', 1901, + 'o', 1806, + 's', 1927, + 'x', 1899, + '|', 1480, + '}', 1527, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(615); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + lookahead == ' ') SKIP(626); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); - case 585: - if (eof) ADVANCE(660); + case 596: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1792, - '#', 2187, - '(', 1560, - ')', 1467, - '*', 1511, - '+', 1574, - '-', 1485, - '.', 1789, - '/', 1566, - ';', 1450, - '<', 1549, - '=', 1794, - '>', 1479, - 'B', 1652, - 'E', 1806, - 'G', 1809, - 'K', 1809, - 'M', 1809, - 'P', 1809, - 'T', 1809, - '_', 1812, - 'a', 1864, - 'b', 1655, - 'd', 1823, - 'e', 1763, - 'g', 1808, - 'h', 1821, - 'i', 1862, - 'k', 1808, - 'l', 1850, - 'm', 1810, - 'n', 1871, - 'o', 1762, - 'p', 1808, - 's', 1837, - 't', 1808, - 'u', 1890, - 'w', 1857, - 'x', 1870, - '|', 1451, - '}', 1498, - 0xb5, 1890, + '!', 1821, + '#', 2216, + '(', 1589, + ')', 1496, + '*', 1540, + '+', 1603, + '-', 1514, + '.', 1818, + '/', 1595, + ';', 1479, + '<', 1578, + '=', 1823, + '>', 1508, + 'B', 1681, + 'E', 1835, + 'G', 1838, + 'K', 1838, + 'M', 1838, + 'P', 1838, + 'T', 1838, + '_', 1841, + 'a', 1893, + 'b', 1684, + 'd', 1852, + 'e', 1792, + 'g', 1837, + 'h', 1850, + 'i', 1891, + 'k', 1837, + 'l', 1879, + 'm', 1839, + 'n', 1900, + 'o', 1791, + 'p', 1837, + 's', 1866, + 't', 1837, + 'u', 1919, + 'w', 1886, + 'x', 1899, + '|', 1480, + '}', 1527, + 0xb5, 1919, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(614); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + lookahead == ' ') SKIP(625); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); - case 586: - if (eof) ADVANCE(660); + case 597: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1792, - '#', 2187, - '(', 1560, - ')', 1467, - '*', 1511, - '+', 1574, - '-', 1485, - '.', 1789, - '/', 1566, - ';', 1450, - '<', 1549, - '=', 1794, - '>', 1479, - 'B', 1652, - 'E', 1806, - 'G', 1809, - 'K', 1809, - 'M', 1809, - 'P', 1809, - 'T', 1809, - '_', 1812, - 'a', 1864, - 'b', 1655, - 'd', 1823, - 'e', 1765, - 'g', 1808, - 'h', 1821, - 'i', 1862, - 'k', 1808, - 'l', 1850, - 'm', 1810, - 'n', 1871, - 'o', 1777, - 'p', 1808, - 's', 1837, - 't', 1808, - 'u', 1890, - 'w', 1857, - 'x', 1870, - '|', 1451, - '}', 1498, - 0xb5, 1890, + '!', 1821, + '#', 2216, + '(', 1589, + ')', 1496, + '*', 1540, + '+', 1603, + '-', 1514, + '.', 1818, + '/', 1595, + ';', 1479, + '<', 1578, + '=', 1823, + '>', 1508, + 'B', 1681, + 'E', 1835, + 'G', 1838, + 'K', 1838, + 'M', 1838, + 'P', 1838, + 'T', 1838, + '_', 1841, + 'a', 1893, + 'b', 1684, + 'd', 1852, + 'e', 1794, + 'g', 1837, + 'h', 1850, + 'i', 1891, + 'k', 1837, + 'l', 1879, + 'm', 1839, + 'n', 1900, + 'o', 1806, + 'p', 1837, + 's', 1866, + 't', 1837, + 'u', 1919, + 'w', 1886, + 'x', 1899, + '|', 1480, + '}', 1527, + 0xb5, 1919, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(615); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + lookahead == ' ') SKIP(626); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); - case 587: - if (eof) ADVANCE(660); + case 598: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1792, - '#', 2187, - '(', 1560, - ')', 1467, - '*', 1511, - '+', 1574, - '-', 1485, - '.', 1789, - '/', 1566, - ';', 1450, - '<', 1549, - '=', 1794, - '>', 1479, - 'B', 1652, - 'E', 1806, - 'G', 1809, - 'K', 1809, - 'M', 1809, - 'P', 1809, - 'T', 1809, - 'a', 1864, - 'b', 1655, - 'd', 1823, - 'e', 1763, - 'g', 1808, - 'h', 1821, - 'i', 1862, - 'k', 1808, - 'l', 1850, - 'm', 1810, - 'n', 1871, - 'o', 1762, - 'p', 1808, - 's', 1837, - 't', 1808, - 'u', 1890, - 'w', 1857, - 'x', 1870, - '|', 1451, - '}', 1498, - 0xb5, 1890, + '!', 1821, + '#', 2216, + '(', 1589, + ')', 1496, + '*', 1540, + '+', 1603, + '-', 1514, + '.', 1818, + '/', 1595, + ';', 1479, + '<', 1578, + '=', 1823, + '>', 1508, + 'B', 1681, + 'E', 1835, + 'G', 1838, + 'K', 1838, + 'M', 1838, + 'P', 1838, + 'T', 1838, + 'a', 1893, + 'b', 1684, + 'd', 1852, + 'e', 1792, + 'g', 1837, + 'h', 1850, + 'i', 1891, + 'k', 1837, + 'l', 1879, + 'm', 1839, + 'n', 1900, + 'o', 1791, + 'p', 1837, + 's', 1866, + 't', 1837, + 'u', 1919, + 'w', 1886, + 'x', 1899, + '|', 1480, + '}', 1527, + 0xb5, 1919, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + lookahead == ' ') SKIP(625); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); - case 588: - if (eof) ADVANCE(660); + case 599: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1792, - '#', 2187, - '(', 1560, - ')', 1467, - '*', 1511, - '+', 1574, - '-', 1485, - '.', 1789, - '/', 1566, - ';', 1450, - '<', 1549, - '=', 1794, - '>', 1479, - 'B', 1652, - 'E', 1806, - 'G', 1809, - 'K', 1809, - 'M', 1809, - 'P', 1809, - 'T', 1809, - 'a', 1864, - 'b', 1655, - 'd', 1823, - 'e', 1765, - 'g', 1808, - 'h', 1821, - 'i', 1862, - 'k', 1808, - 'l', 1850, - 'm', 1810, - 'n', 1871, - 'o', 1777, - 'p', 1808, - 's', 1837, - 't', 1808, - 'u', 1890, - 'w', 1857, - 'x', 1870, - '|', 1451, - '}', 1498, - 0xb5, 1890, + '!', 1821, + '#', 2216, + '(', 1589, + ')', 1496, + '*', 1540, + '+', 1603, + '-', 1514, + '.', 1818, + '/', 1595, + ';', 1479, + '<', 1578, + '=', 1823, + '>', 1508, + 'B', 1681, + 'E', 1835, + 'G', 1838, + 'K', 1838, + 'M', 1838, + 'P', 1838, + 'T', 1838, + 'a', 1893, + 'b', 1684, + 'd', 1852, + 'e', 1794, + 'g', 1837, + 'h', 1850, + 'i', 1891, + 'k', 1837, + 'l', 1879, + 'm', 1839, + 'n', 1900, + 'o', 1806, + 'p', 1837, + 's', 1866, + 't', 1837, + 'u', 1919, + 'w', 1886, + 'x', 1899, + '|', 1480, + '}', 1527, + 0xb5, 1919, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(615); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + lookahead == ' ') SKIP(626); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); - case 589: - if (eof) ADVANCE(660); + case 600: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1792, - '#', 2187, - '(', 1560, - ')', 1467, - '*', 1511, - '+', 1574, - '-', 1485, - '.', 1789, - '/', 1566, - ';', 1450, - '<', 1549, - '=', 1794, - '>', 1479, - 'B', 1652, - 'E', 1809, - 'G', 1809, - 'K', 1809, - 'M', 1809, - 'P', 1809, - 'T', 1809, - 'a', 1864, - 'b', 1655, - 'd', 1823, - 'e', 1770, - 'g', 1808, - 'h', 1821, - 'i', 1862, - 'k', 1808, - 'l', 1850, - 'm', 1810, - 'n', 1871, - 'o', 1762, - 'p', 1808, - 's', 1837, - 't', 1808, - 'u', 1890, - 'w', 1857, - 'x', 1870, - '|', 1451, - '}', 1498, - 0xb5, 1890, + '!', 1821, + '#', 2216, + '(', 1589, + ')', 1496, + '*', 1540, + '+', 1603, + '-', 1514, + '.', 1818, + '/', 1595, + ';', 1479, + '<', 1578, + '=', 1823, + '>', 1508, + 'B', 1681, + 'E', 1838, + 'G', 1838, + 'K', 1838, + 'M', 1838, + 'P', 1838, + 'T', 1838, + 'a', 1893, + 'b', 1684, + 'd', 1852, + 'e', 1799, + 'g', 1837, + 'h', 1850, + 'i', 1891, + 'k', 1837, + 'l', 1879, + 'm', 1839, + 'n', 1900, + 'o', 1791, + 'p', 1837, + 's', 1866, + 't', 1837, + 'u', 1919, + 'w', 1886, + 'x', 1899, + '|', 1480, + '}', 1527, + 0xb5, 1919, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + lookahead == ' ') SKIP(625); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); - case 590: - if (eof) ADVANCE(660); + case 601: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1792, - '#', 2187, - '(', 1560, - ')', 1467, - '*', 1511, - '+', 1574, - '-', 1485, - '.', 1789, - '/', 1566, - ';', 1450, - '<', 1549, - '=', 1794, - '>', 1479, - 'B', 1652, - 'E', 1809, - 'G', 1809, - 'K', 1809, - 'M', 1809, - 'P', 1809, - 'T', 1809, - 'a', 1864, - 'b', 1655, - 'd', 1823, - 'e', 1773, - 'g', 1808, - 'h', 1821, - 'i', 1862, - 'k', 1808, - 'l', 1850, - 'm', 1810, - 'n', 1871, - 'o', 1777, - 'p', 1808, - 's', 1837, - 't', 1808, - 'u', 1890, - 'w', 1857, - 'x', 1870, - '|', 1451, - '}', 1498, - 0xb5, 1890, + '!', 1821, + '#', 2216, + '(', 1589, + ')', 1496, + '*', 1540, + '+', 1603, + '-', 1514, + '.', 1818, + '/', 1595, + ';', 1479, + '<', 1578, + '=', 1823, + '>', 1508, + 'B', 1681, + 'E', 1838, + 'G', 1838, + 'K', 1838, + 'M', 1838, + 'P', 1838, + 'T', 1838, + 'a', 1893, + 'b', 1684, + 'd', 1852, + 'e', 1802, + 'g', 1837, + 'h', 1850, + 'i', 1891, + 'k', 1837, + 'l', 1879, + 'm', 1839, + 'n', 1900, + 'o', 1806, + 'p', 1837, + 's', 1866, + 't', 1837, + 'u', 1919, + 'w', 1886, + 'x', 1899, + '|', 1480, + '}', 1527, + 0xb5, 1919, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(615); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + lookahead == ' ') SKIP(626); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); - case 591: - if (eof) ADVANCE(660); + case 602: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1792, - '#', 2187, - '(', 1560, - ')', 1467, - '*', 1511, - '+', 1574, - '-', 1485, - '.', 1789, - '/', 1566, - ';', 1450, - '<', 1549, - '=', 1794, - '>', 1479, - 'E', 1818, - '_', 1812, - 'a', 1864, - 'b', 1851, - 'e', 1764, - 'h', 1822, - 'i', 1862, - 'l', 1850, - 'm', 1873, - 'n', 1872, - 'o', 1762, - 's', 1898, - 'x', 1870, - '{', 1497, - '|', 1451, - '}', 1498, + '!', 1821, + '#', 2216, + '(', 1589, + ')', 1496, + '*', 1540, + '+', 1603, + '-', 1514, + '.', 1818, + '/', 1595, + ';', 1479, + '<', 1578, + '=', 1823, + '>', 1508, + 'E', 1847, + '_', 1841, + 'a', 1893, + 'b', 1880, + 'e', 1793, + 'h', 1851, + 'i', 1891, + 'l', 1879, + 'm', 1902, + 'n', 1901, + 'o', 1791, + 's', 1927, + 'x', 1899, + '{', 1526, + '|', 1480, + '}', 1527, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(613); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + lookahead == ' ') SKIP(624); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '_' || 'b' < lookahead)) ADVANCE(1933); + (lookahead < '_' || 'b' < lookahead)) ADVANCE(1962); END_STATE(); - case 592: - if (eof) ADVANCE(660); + case 603: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1792, - '#', 2187, - '(', 1560, - ')', 1467, - '*', 1511, - '+', 1574, - '-', 1485, - '.', 1789, - '/', 1566, - ';', 1450, - '<', 1549, - '=', 1794, - '>', 1479, - 'E', 1818, - '_', 1812, - 'a', 1864, - 'b', 1851, - 'e', 1767, - 'h', 1822, - 'i', 1862, - 'l', 1850, - 'm', 1873, - 'n', 1872, - 'o', 1777, - 's', 1898, - 'x', 1870, - '|', 1451, - '}', 1498, + '!', 1821, + '#', 2216, + '(', 1589, + ')', 1496, + '*', 1540, + '+', 1603, + '-', 1514, + '.', 1818, + '/', 1595, + ';', 1479, + '<', 1578, + '=', 1823, + '>', 1508, + 'E', 1847, + '_', 1841, + 'a', 1893, + 'b', 1880, + 'e', 1796, + 'h', 1851, + 'i', 1891, + 'l', 1879, + 'm', 1902, + 'n', 1901, + 'o', 1806, + 's', 1927, + 'x', 1899, + '|', 1480, + '}', 1527, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(615); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + lookahead == ' ') SKIP(626); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); - case 593: - if (eof) ADVANCE(660); + case 604: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1792, - '#', 2187, - '(', 1560, - ')', 1467, - '*', 1511, - '+', 1574, - '-', 1485, - '.', 1789, - '/', 1566, - ';', 1450, - '<', 1549, - '=', 1794, - '>', 1479, - 'E', 1818, - 'a', 1864, - 'b', 1851, - 'e', 1764, - 'h', 1822, - 'i', 1862, - 'l', 1850, - 'm', 1873, - 'n', 1872, - 'o', 1762, - 's', 1898, - 'x', 1870, - '{', 1497, - '|', 1451, - '}', 1498, + '!', 1821, + '#', 2216, + '(', 1589, + ')', 1496, + '*', 1540, + '+', 1603, + '-', 1514, + '.', 1818, + '/', 1595, + ';', 1479, + '<', 1578, + '=', 1823, + '>', 1508, + 'E', 1847, + 'a', 1893, + 'b', 1880, + 'e', 1793, + 'h', 1851, + 'i', 1891, + 'l', 1879, + 'm', 1902, + 'n', 1901, + 'o', 1791, + 's', 1927, + 'x', 1899, + '{', 1526, + '|', 1480, + '}', 1527, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(613); + lookahead == ' ') SKIP(624); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(1933); + (lookahead < '`' || 'b' < lookahead)) ADVANCE(1962); END_STATE(); - case 594: - if (eof) ADVANCE(660); + case 605: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1792, - '#', 2187, - '(', 1560, - ')', 1467, - '*', 1511, - '+', 1574, - '-', 1485, - '.', 1789, - '/', 1566, - ';', 1450, - '<', 1549, - '=', 1794, - '>', 1479, - 'E', 1818, - 'a', 1864, - 'b', 1851, - 'e', 1767, - 'h', 1822, - 'i', 1862, - 'l', 1850, - 'm', 1873, - 'n', 1872, - 'o', 1777, - 's', 1898, - 'x', 1870, - '|', 1451, - '}', 1498, + '!', 1821, + '#', 2216, + '(', 1589, + ')', 1496, + '*', 1540, + '+', 1603, + '-', 1514, + '.', 1818, + '/', 1595, + ';', 1479, + '<', 1578, + '=', 1823, + '>', 1508, + 'E', 1847, + 'a', 1893, + 'b', 1880, + 'e', 1796, + 'h', 1851, + 'i', 1891, + 'l', 1879, + 'm', 1902, + 'n', 1901, + 'o', 1806, + 's', 1927, + 'x', 1899, + '|', 1480, + '}', 1527, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(615); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + lookahead == ' ') SKIP(626); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); - case 595: - if (eof) ADVANCE(660); + case 606: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1792, - '#', 2187, - '(', 1560, - ')', 1467, - '*', 1511, - '+', 1574, - '-', 1485, - '.', 1789, - '/', 1566, - ';', 1450, - '<', 1549, - '=', 1794, - '>', 1479, - 'a', 1864, - 'b', 1851, - 'e', 1771, - 'h', 1822, - 'i', 1862, - 'l', 1850, - 'm', 1873, - 'n', 1872, - 'o', 1762, - 's', 1898, - 'x', 1870, - '{', 1497, - '|', 1451, - '}', 1498, + '!', 1821, + '#', 2216, + '(', 1589, + ')', 1496, + '*', 1540, + '+', 1603, + '-', 1514, + '.', 1818, + '/', 1595, + ';', 1479, + '<', 1578, + '=', 1823, + '>', 1508, + 'a', 1893, + 'b', 1880, + 'e', 1800, + 'h', 1851, + 'i', 1891, + 'l', 1879, + 'm', 1902, + 'n', 1901, + 'o', 1791, + 's', 1927, + 'x', 1899, + '{', 1526, + '|', 1480, + '}', 1527, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(613); + lookahead == ' ') SKIP(624); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(1933); + (lookahead < '`' || 'b' < lookahead)) ADVANCE(1962); END_STATE(); - case 596: - if (eof) ADVANCE(660); + case 607: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1792, - '#', 2187, - '(', 1560, - ')', 1467, - '*', 1511, - '+', 1574, - '-', 1485, - '.', 1789, - '/', 1566, - ';', 1450, - '<', 1549, - '=', 1794, - '>', 1479, - 'a', 1864, - 'b', 1851, - 'e', 1775, - 'h', 1822, - 'i', 1862, - 'l', 1850, - 'm', 1873, - 'n', 1872, - 'o', 1777, - 's', 1898, - 'x', 1870, - '|', 1451, - '}', 1498, + '!', 1821, + '#', 2216, + '(', 1589, + ')', 1496, + '*', 1540, + '+', 1603, + '-', 1514, + '.', 1818, + '/', 1595, + ';', 1479, + '<', 1578, + '=', 1823, + '>', 1508, + 'a', 1893, + 'b', 1880, + 'e', 1804, + 'h', 1851, + 'i', 1891, + 'l', 1879, + 'm', 1902, + 'n', 1901, + 'o', 1806, + 's', 1927, + 'x', 1899, + '|', 1480, + '}', 1527, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(615); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + lookahead == ' ') SKIP(626); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); - case 597: - if (eof) ADVANCE(660); + case 608: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1792, - '#', 2187, - '(', 1560, - ')', 1467, - '*', 1511, - '+', 1574, - '-', 1485, - '.', 1593, - '/', 1566, - ';', 1450, - '<', 1549, - '=', 1794, - '>', 1479, - 'E', 1818, - 'a', 1864, - 'b', 1851, - 'e', 1764, - 'h', 1822, - 'i', 1862, - 'l', 1850, - 'm', 1873, - 'n', 1872, - 'o', 1762, - 's', 1898, - 'x', 1870, - '{', 1497, - '|', 1451, - '}', 1498, + '!', 1821, + '#', 2216, + '(', 1589, + ')', 1496, + '*', 1540, + '+', 1603, + '-', 1514, + '.', 1622, + '/', 1595, + ';', 1479, + '<', 1578, + '=', 1823, + '>', 1508, + 'E', 1847, + 'a', 1893, + 'b', 1880, + 'e', 1793, + 'h', 1851, + 'i', 1891, + 'l', 1879, + 'm', 1902, + 'n', 1901, + 'o', 1791, + 's', 1927, + 'x', 1899, + '{', 1526, + '|', 1480, + '}', 1527, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(613); + lookahead == ' ') SKIP(624); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(1933); + (lookahead < '`' || 'b' < lookahead)) ADVANCE(1962); END_STATE(); - case 598: - if (eof) ADVANCE(660); + case 609: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1792, - '#', 2187, - '(', 1560, - ')', 1467, - '*', 1511, - '+', 1574, - '-', 1485, - '.', 1593, - '/', 1566, - ';', 1450, - '<', 1549, - '=', 1794, - '>', 1479, - 'E', 1818, - 'a', 1864, - 'b', 1851, - 'e', 1767, - 'h', 1822, - 'i', 1862, - 'l', 1850, - 'm', 1873, - 'n', 1872, - 'o', 1777, - 's', 1898, - 'x', 1870, - '|', 1451, - '}', 1498, + '!', 1821, + '#', 2216, + '(', 1589, + ')', 1496, + '*', 1540, + '+', 1603, + '-', 1514, + '.', 1622, + '/', 1595, + ';', 1479, + '<', 1578, + '=', 1823, + '>', 1508, + 'E', 1847, + 'a', 1893, + 'b', 1880, + 'e', 1796, + 'h', 1851, + 'i', 1891, + 'l', 1879, + 'm', 1902, + 'n', 1901, + 'o', 1806, + 's', 1927, + 'x', 1899, + '|', 1480, + '}', 1527, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(615); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + lookahead == ' ') SKIP(626); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); - case 599: - if (eof) ADVANCE(660); + case 610: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1792, - '#', 2187, - '(', 1560, - ')', 1467, - '*', 1511, - '+', 1574, - '-', 1485, - '/', 1566, - ';', 1450, - '<', 1549, - '=', 1794, - '>', 1479, - 'E', 1818, - '_', 1812, - 'a', 1864, - 'b', 1851, - 'e', 1764, - 'h', 1822, - 'i', 1862, - 'l', 1850, - 'm', 1873, - 'n', 1872, - 'o', 1762, - 's', 1898, - 'x', 1870, - '|', 1451, - '}', 1498, + '!', 1821, + '#', 2216, + '(', 1589, + ')', 1496, + '*', 1540, + '+', 1603, + '-', 1514, + '/', 1595, + ';', 1479, + '<', 1578, + '=', 1823, + '>', 1508, + 'E', 1847, + '_', 1841, + 'a', 1893, + 'b', 1880, + 'e', 1793, + 'h', 1851, + 'i', 1891, + 'l', 1879, + 'm', 1902, + 'n', 1901, + 'o', 1791, + 's', 1927, + 'x', 1899, + '|', 1480, + '}', 1527, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(614); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + lookahead == ' ') SKIP(625); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); - case 600: - if (eof) ADVANCE(660); + case 611: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1792, - '#', 2187, - '(', 1560, - ')', 1467, - '*', 1511, - '+', 1574, - '-', 1485, - '/', 1566, - ';', 1450, - '<', 1549, - '=', 1794, - '>', 1479, - 'E', 1818, - '_', 1812, - 'a', 1864, - 'b', 1851, - 'e', 1767, - 'h', 1822, - 'i', 1862, - 'l', 1850, - 'm', 1873, - 'n', 1872, - 'o', 1777, - 's', 1898, - 'x', 1870, - '|', 1451, - '}', 1498, + '!', 1821, + '#', 2216, + '(', 1589, + ')', 1496, + '*', 1540, + '+', 1603, + '-', 1514, + '/', 1595, + ';', 1479, + '<', 1578, + '=', 1823, + '>', 1508, + 'E', 1847, + '_', 1841, + 'a', 1893, + 'b', 1880, + 'e', 1796, + 'h', 1851, + 'i', 1891, + 'l', 1879, + 'm', 1902, + 'n', 1901, + 'o', 1806, + 's', 1927, + 'x', 1899, + '|', 1480, + '}', 1527, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(615); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + lookahead == ' ') SKIP(626); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); - case 601: - if (eof) ADVANCE(660); + case 612: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1792, - '#', 2187, - '(', 1560, - ')', 1467, - '*', 1511, - '+', 1574, - '-', 1485, - '/', 1566, - ';', 1450, - '<', 1549, - '=', 1794, - '>', 1479, - 'E', 1818, - 'a', 1864, - 'b', 1851, - 'e', 1764, - 'h', 1822, - 'i', 1862, - 'l', 1850, - 'm', 1873, - 'n', 1872, - 'o', 1762, - 's', 1898, - 'x', 1870, - '|', 1451, - '}', 1498, + '!', 1821, + '#', 2216, + '(', 1589, + ')', 1496, + '*', 1540, + '+', 1603, + '-', 1514, + '/', 1595, + ';', 1479, + '<', 1578, + '=', 1823, + '>', 1508, + 'E', 1847, + 'a', 1893, + 'b', 1880, + 'e', 1793, + 'h', 1851, + 'i', 1891, + 'l', 1879, + 'm', 1902, + 'n', 1901, + 'o', 1791, + 's', 1927, + 'x', 1899, + '|', 1480, + '}', 1527, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + lookahead == ' ') SKIP(625); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); - case 602: - if (eof) ADVANCE(660); + case 613: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1792, - '#', 2187, - '(', 1560, - ')', 1467, - '*', 1511, - '+', 1574, - '-', 1485, - '/', 1566, - ';', 1450, - '<', 1549, - '=', 1794, - '>', 1479, - 'E', 1818, - 'a', 1864, - 'b', 1851, - 'e', 1767, - 'h', 1822, - 'i', 1862, - 'l', 1850, - 'm', 1873, - 'n', 1872, - 'o', 1777, - 's', 1898, - 'x', 1870, - '|', 1451, - '}', 1498, + '!', 1821, + '#', 2216, + '(', 1589, + ')', 1496, + '*', 1540, + '+', 1603, + '-', 1514, + '/', 1595, + ';', 1479, + '<', 1578, + '=', 1823, + '>', 1508, + 'E', 1847, + 'a', 1893, + 'b', 1880, + 'e', 1796, + 'h', 1851, + 'i', 1891, + 'l', 1879, + 'm', 1902, + 'n', 1901, + 'o', 1806, + 's', 1927, + 'x', 1899, + '|', 1480, + '}', 1527, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(615); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + lookahead == ' ') SKIP(626); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); - case 603: - if (eof) ADVANCE(660); + case 614: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1792, - '#', 2187, - '(', 1560, - ')', 1467, - '*', 1511, - '+', 1574, - '-', 1485, - '/', 1566, - ';', 1450, - '<', 1549, - '=', 1794, - '>', 1479, - 'a', 1864, - 'b', 1851, - 'e', 1771, - 'h', 1822, - 'i', 1862, - 'l', 1850, - 'm', 1873, - 'n', 1872, - 'o', 1762, - 's', 1898, - 'x', 1870, - '{', 1497, - '|', 1451, - '}', 1498, + '!', 1821, + '#', 2216, + '(', 1589, + ')', 1496, + '*', 1540, + '+', 1603, + '-', 1514, + '/', 1595, + ';', 1479, + '<', 1578, + '=', 1823, + '>', 1508, + 'a', 1893, + 'b', 1880, + 'e', 1800, + 'h', 1851, + 'i', 1891, + 'l', 1879, + 'm', 1902, + 'n', 1901, + 'o', 1791, + 's', 1927, + 'x', 1899, + '{', 1526, + '|', 1480, + '}', 1527, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(613); + lookahead == ' ') SKIP(624); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(1933); + (lookahead < '`' || 'b' < lookahead)) ADVANCE(1962); END_STATE(); - case 604: - if (eof) ADVANCE(660); + case 615: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1792, - '#', 2187, - '(', 1560, - ')', 1467, - '*', 1511, - '+', 1574, - '-', 1485, - '/', 1566, - ';', 1450, - '<', 1549, - '=', 1794, - '>', 1479, - 'a', 1864, - 'b', 1851, - 'e', 1775, - 'h', 1822, - 'i', 1862, - 'l', 1850, - 'm', 1873, - 'n', 1872, - 'o', 1777, - 's', 1898, - 'x', 1870, - '|', 1451, - '}', 1498, + '!', 1821, + '#', 2216, + '(', 1589, + ')', 1496, + '*', 1540, + '+', 1603, + '-', 1514, + '/', 1595, + ';', 1479, + '<', 1578, + '=', 1823, + '>', 1508, + 'a', 1893, + 'b', 1880, + 'e', 1804, + 'h', 1851, + 'i', 1891, + 'l', 1879, + 'm', 1902, + 'n', 1901, + 'o', 1806, + 's', 1927, + 'x', 1899, + '|', 1480, + '}', 1527, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(615); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + lookahead == ' ') SKIP(626); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); - case 605: - if (eof) ADVANCE(660); + case 616: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 851, - '#', 2190, - ')', 1467, - '*', 1513, - '+', 1578, - '-', 1495, - '/', 1568, - ':', 1712, - ';', 1450, - '<', 1549, + '!', 867, + '#', 2219, + ')', 1496, + '*', 1542, + '+', 1607, + '-', 1524, + '/', 1597, + ':', 1741, + ';', 1479, + '<', 1578, '=', 322, - '>', 1479, - 'a', 935, - 'b', 917, - 'e', 828, - 'h', 874, - 'i', 936, - 'l', 916, - 'm', 948, - 'n', 949, - 'o', 827, - 's', 994, - 'x', 947, - '|', 1451, - '}', 1498, + '>', 1508, + 'a', 954, + 'b', 934, + 'e', 844, + 'h', 890, + 'i', 955, + 'l', 933, + 'm', 968, + 'n', 969, + 'o', 843, + 's', 1014, + 'x', 967, + '|', 1480, + '}', 1527, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(612); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1045); + lookahead == ' ') SKIP(623); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1066); END_STATE(); - case 606: - if (eof) ADVANCE(660); + case 617: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 851, - '#', 2190, - ')', 1467, - '*', 1513, - '+', 1578, - '-', 1495, - '/', 1568, - ';', 1450, - '<', 1549, + '!', 867, + '#', 2219, + ')', 1496, + '*', 1542, + '+', 1607, + '-', 1524, + '/', 1597, + ';', 1479, + '<', 1578, '=', 322, - '>', 1479, - 'a', 935, - 'b', 917, - 'e', 832, - 'h', 874, - 'i', 936, - 'l', 916, - 'm', 948, - 'n', 949, - 'o', 831, - 's', 994, - 'x', 947, - '|', 1451, - '}', 1498, + '>', 1508, + 'a', 954, + 'b', 934, + 'e', 848, + 'h', 890, + 'i', 955, + 'l', 933, + 'm', 968, + 'n', 969, + 'o', 847, + 's', 1014, + 'x', 967, + '|', 1480, + '}', 1527, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(615); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1045); + lookahead == ' ') SKIP(626); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1066); END_STATE(); - case 607: - if (eof) ADVANCE(660); + case 618: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, '!', 320, - '#', 2187, - '$', 1469, - '(', 1466, - ')', 1467, - '*', 1511, - '+', 1574, - '-', 1485, - '.', 1719, - '/', 1566, - ':', 1462, - ';', 1450, - '<', 1549, + '#', 2216, + '$', 1498, + '(', 1495, + ')', 1496, + '*', 1540, + '+', 1603, + '-', 1514, + '.', 1748, + '/', 1595, + ':', 1491, + ';', 1479, + '<', 1578, '=', 322, - '>', 1479, - '?', 1716, - '[', 1464, - 'a', 416, - 'b', 395, - 'c', 347, + '>', 1508, + '?', 1745, + '[', 1493, + 'a', 424, + 'b', 400, + 'c', 351, 'e', 282, - 'f', 343, - 'h', 340, - 'i', 417, - 'l', 394, - 'm', 431, - 'n', 436, + 'f', 349, + 'h', 341, + 'i', 425, + 'l', 399, + 'm', 440, + 'n', 445, 'o', 279, - 's', 480, - 't', 451, - 'x', 426, - '{', 1497, - '|', 1451, + 's', 490, + 't', 461, + 'x', 435, + '{', 1526, + '|', 1480, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(607); + lookahead == ' ') SKIP(618); END_STATE(); - case 608: - if (eof) ADVANCE(660); + case 619: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, '!', 320, - '#', 2187, - '$', 1469, - '(', 1466, - ')', 1467, - '*', 1511, - '+', 1574, - '-', 1485, - '.', 1721, - '/', 1566, - ':', 1462, - ';', 1450, - '<', 1549, + '#', 2216, + '$', 1498, + '(', 1495, + ')', 1496, + '*', 1540, + '+', 1603, + '-', 1514, + '.', 1750, + '/', 1595, + ':', 1491, + ';', 1479, + '<', 1578, '=', 322, - '>', 1479, - '?', 1716, - '[', 1464, - 'a', 416, - 'b', 395, - 'c', 347, + '>', 1508, + '?', 1745, + '[', 1493, + 'a', 424, + 'b', 400, + 'c', 351, 'e', 282, - 'f', 343, - 'h', 340, - 'i', 417, - 'l', 394, - 'm', 431, - 'n', 436, + 'f', 349, + 'h', 341, + 'i', 425, + 'l', 399, + 'm', 440, + 'n', 445, 'o', 279, - 's', 480, - 't', 451, - 'x', 426, - '{', 1497, - '|', 1451, + 's', 490, + 't', 461, + 'x', 435, + '{', 1526, + '|', 1480, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(607); + lookahead == ' ') SKIP(618); END_STATE(); - case 609: - if (eof) ADVANCE(660); + case 620: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, '!', 320, - '#', 2187, - '$', 1469, - ')', 1467, - '*', 1511, - '+', 1576, - '-', 1493, - '.', 336, - '/', 1566, - ';', 1450, - '<', 1549, + '#', 2216, + '$', 1498, + ')', 1496, + '*', 1540, + '+', 1605, + '-', 1522, + '.', 337, + '/', 1595, + ';', 1479, + '<', 1578, '=', 322, - '>', 1479, - 'a', 416, - 'b', 395, + '>', 1508, + 'a', 424, + 'b', 400, 'e', 284, - 'h', 340, - 'i', 417, - 'l', 394, - 'm', 431, - 'n', 429, + 'h', 341, + 'i', 425, + 'l', 399, + 'm', 440, + 'n', 438, 'o', 279, - 's', 480, - 'x', 426, - '{', 1497, - '|', 1451, - '}', 1498, + 's', 490, + 'x', 435, + '{', 1526, + '|', 1480, + '}', 1527, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(609); + lookahead == ' ') SKIP(620); END_STATE(); - case 610: - if (eof) ADVANCE(660); + case 621: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, '!', 320, - '#', 2187, - '$', 1469, - ')', 1467, - '*', 1511, - '+', 1576, - '-', 1493, - '.', 336, - '/', 1566, - ';', 1450, - '<', 1549, + '#', 2216, + '$', 1498, + ')', 1496, + '*', 1540, + '+', 1605, + '-', 1522, + '.', 337, + '/', 1595, + ';', 1479, + '<', 1578, '=', 322, - '>', 1479, - 'a', 416, - 'b', 395, + '>', 1508, + 'a', 424, + 'b', 400, 'e', 284, - 'h', 340, - 'i', 417, - 'l', 394, - 'm', 431, - 'n', 429, + 'h', 341, + 'i', 425, + 'l', 399, + 'm', 440, + 'n', 438, 'o', 279, - 's', 480, - 'x', 426, - '|', 1451, - '}', 1498, + 's', 490, + 'x', 435, + '|', 1480, + '}', 1527, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(610); + lookahead == ' ') SKIP(621); END_STATE(); - case 611: - if (eof) ADVANCE(660); + case 622: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, '!', 320, - '#', 2187, - '$', 1469, - ')', 1467, - '*', 1511, - '+', 1576, - '-', 1493, - '.', 336, - '/', 1566, - ';', 1450, - '<', 1549, + '#', 2216, + '$', 1498, + ')', 1496, + '*', 1540, + '+', 1605, + '-', 1522, + '.', 337, + '/', 1595, + ';', 1479, + '<', 1578, '=', 322, - '>', 1479, - 'a', 416, - 'b', 395, + '>', 1508, + 'a', 424, + 'b', 400, 'e', 287, - 'h', 340, - 'i', 417, - 'l', 394, - 'm', 431, - 'n', 429, + 'h', 341, + 'i', 425, + 'l', 399, + 'm', 440, + 'n', 438, 'o', 289, - 's', 480, - 'x', 426, - '|', 1451, - '}', 1498, + 's', 490, + 'x', 435, + '|', 1480, + '}', 1527, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(611); + lookahead == ' ') SKIP(622); END_STATE(); - case 612: - if (eof) ADVANCE(660); + case 623: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, '!', 320, - '#', 2187, - ')', 1467, - '*', 1511, - '+', 1574, - '-', 1485, - '/', 1566, - ':', 1712, - ';', 1450, - '<', 1549, + '#', 2216, + ')', 1496, + '*', 1540, + '+', 1603, + '-', 1514, + '/', 1595, + ':', 1741, + ';', 1479, + '<', 1578, '=', 322, - '>', 1479, - 'a', 416, - 'b', 395, + '>', 1508, + 'a', 424, + 'b', 400, 'e', 284, - 'h', 340, - 'i', 417, - 'l', 394, - 'm', 431, - 'n', 429, + 'h', 341, + 'i', 425, + 'l', 399, + 'm', 440, + 'n', 438, 'o', 279, - 's', 480, - 'x', 426, - '|', 1451, - '}', 1498, + 's', 490, + 'x', 435, + '|', 1480, + '}', 1527, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(612); + lookahead == ' ') SKIP(623); END_STATE(); - case 613: - if (eof) ADVANCE(660); + case 624: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, '!', 320, - '#', 2187, - ')', 1467, - '*', 1511, - '+', 1574, - '-', 1485, - '/', 1566, - ';', 1450, - '<', 1549, + '#', 2216, + ')', 1496, + '*', 1540, + '+', 1603, + '-', 1514, + '/', 1595, + ';', 1479, + '<', 1578, '=', 322, - '>', 1479, - 'a', 416, - 'b', 395, + '>', 1508, + 'a', 424, + 'b', 400, 'e', 284, - 'h', 340, - 'i', 417, - 'l', 394, - 'm', 431, - 'n', 429, + 'h', 341, + 'i', 425, + 'l', 399, + 'm', 440, + 'n', 438, 'o', 279, - 's', 480, - 'x', 426, - '{', 1497, - '|', 1451, - '}', 1498, + 's', 490, + 'x', 435, + '{', 1526, + '|', 1480, + '}', 1527, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(613); + lookahead == ' ') SKIP(624); END_STATE(); - case 614: - if (eof) ADVANCE(660); + case 625: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, '!', 320, - '#', 2187, - ')', 1467, - '*', 1511, - '+', 1574, - '-', 1485, - '/', 1566, - ';', 1450, - '<', 1549, + '#', 2216, + ')', 1496, + '*', 1540, + '+', 1603, + '-', 1514, + '/', 1595, + ';', 1479, + '<', 1578, '=', 322, - '>', 1479, - 'a', 416, - 'b', 395, + '>', 1508, + 'a', 424, + 'b', 400, 'e', 284, - 'h', 340, - 'i', 417, - 'l', 394, - 'm', 431, - 'n', 429, + 'h', 341, + 'i', 425, + 'l', 399, + 'm', 440, + 'n', 438, 'o', 279, - 's', 480, - 'x', 426, - '|', 1451, - '}', 1498, + 's', 490, + 'x', 435, + '|', 1480, + '}', 1527, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(614); + lookahead == ' ') SKIP(625); END_STATE(); - case 615: - if (eof) ADVANCE(660); + case 626: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, '!', 320, - '#', 2187, - ')', 1467, - '*', 1511, - '+', 1574, - '-', 1485, - '/', 1566, - ';', 1450, - '<', 1549, + '#', 2216, + ')', 1496, + '*', 1540, + '+', 1603, + '-', 1514, + '/', 1595, + ';', 1479, + '<', 1578, '=', 322, - '>', 1479, - 'a', 416, - 'b', 395, + '>', 1508, + 'a', 424, + 'b', 400, 'e', 287, - 'h', 340, - 'i', 417, - 'l', 394, - 'm', 431, - 'n', 429, + 'h', 341, + 'i', 425, + 'l', 399, + 'm', 440, + 'n', 438, 'o', 289, - 's', 480, - 'x', 426, - '|', 1451, - '}', 1498, + 's', 490, + 'x', 435, + '|', 1480, + '}', 1527, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(615); + lookahead == ' ') SKIP(626); END_STATE(); - case 616: - if (eof) ADVANCE(660); + case 627: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, '!', 320, - '#', 2187, - ')', 1467, - '*', 1512, - '+', 1577, - '-', 1494, - '.', 1719, - '/', 1567, - ':', 1462, - ';', 1450, - '<', 1549, - '=', 673, - '>', 1479, - 'a', 416, - 'b', 395, + '#', 2216, + ')', 1496, + '*', 1541, + '+', 1606, + '-', 1523, + '.', 1748, + '/', 1596, + ':', 1491, + ';', 1479, + '<', 1578, + '=', 684, + '>', 1508, + 'a', 424, + 'b', 400, 'e', 284, - 'h', 340, - 'i', 417, - 'l', 394, - 'm', 431, - 'n', 429, + 'h', 341, + 'i', 425, + 'l', 399, + 'm', 440, + 'n', 438, 'o', 279, - 's', 480, - 'x', 426, - '|', 1451, - '}', 1498, + 's', 490, + 'x', 435, + '|', 1480, + '}', 1527, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(616); + lookahead == ' ') SKIP(627); END_STATE(); - case 617: - if (eof) ADVANCE(660); + case 628: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, '!', 320, - '#', 2187, - ')', 1467, - '*', 1512, - '+', 1577, - '-', 1494, - '.', 1721, - '/', 1567, - ':', 1462, - ';', 1450, - '<', 1549, - '=', 673, - '>', 1479, - 'a', 416, - 'b', 395, + '#', 2216, + ')', 1496, + '*', 1541, + '+', 1606, + '-', 1523, + '.', 1750, + '/', 1596, + ':', 1491, + ';', 1479, + '<', 1578, + '=', 684, + '>', 1508, + 'a', 424, + 'b', 400, 'e', 284, - 'h', 340, - 'i', 417, - 'l', 394, - 'm', 431, - 'n', 429, + 'h', 341, + 'i', 425, + 'l', 399, + 'm', 440, + 'n', 438, 'o', 279, - 's', 480, - 'x', 426, - '|', 1451, - '}', 1498, + 's', 490, + 'x', 435, + '|', 1480, + '}', 1527, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(616); + lookahead == ' ') SKIP(627); END_STATE(); - case 618: - if (eof) ADVANCE(660); + case 629: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, '!', 320, - '#', 2187, - '*', 1511, - '+', 1574, - '-', 1485, - '/', 1566, - ';', 1450, - '<', 1549, + '#', 2216, + '*', 1540, + '+', 1603, + '-', 1514, + '/', 1595, + ';', 1479, + '<', 1578, '=', 322, - '>', 1479, - 'a', 416, - 'b', 395, + '>', 1508, + 'a', 424, + 'b', 400, 'e', 284, - 'h', 340, - 'i', 417, - 'l', 394, - 'm', 431, - 'n', 429, + 'h', 341, + 'i', 425, + 'l', 399, + 'm', 440, + 'n', 438, 'o', 279, - 's', 480, - 'x', 426, - '|', 1451, + 's', 490, + 'x', 435, + '|', 1480, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(618); + lookahead == ' ') SKIP(629); END_STATE(); - case 619: - if (eof) ADVANCE(660); + case 630: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, '!', 320, - '#', 2187, - '*', 1511, - '+', 1574, - '-', 1485, - '/', 1566, - ';', 1450, - '<', 1549, + '#', 2216, + '*', 1540, + '+', 1603, + '-', 1514, + '/', 1595, + ';', 1479, + '<', 1578, '=', 322, - '>', 1479, - 'a', 416, - 'b', 395, + '>', 1508, + 'a', 424, + 'b', 400, 'e', 287, - 'h', 340, - 'i', 417, - 'l', 394, - 'm', 431, - 'n', 429, + 'h', 341, + 'i', 425, + 'l', 399, + 'm', 440, + 'n', 438, 'o', 289, - 's', 480, - 'x', 426, - '|', 1451, + 's', 490, + 'x', 435, + '|', 1480, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); + lookahead == ' ') SKIP(630); END_STATE(); - case 620: - if (eof) ADVANCE(660); + case 631: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '"', 1684, - '#', 2187, - '$', 1470, - '\'', 1687, - '(', 1466, - ')', 1615, - '+', 701, - '-', 1490, - '.', 696, - '0', 1622, - ':', 1462, - ';', 1450, - '=', 672, - '@', 1461, - 'I', 808, - 'N', 804, - '[', 1464, - '^', 1730, - '_', 715, - '`', 1691, - 'a', 753, - 'c', 720, - 'd', 730, - 'e', 758, - 'f', 722, - 'i', 714, - 'l', 738, - 'm', 724, - 'n', 768, - 't', 771, - 'u', 784, - 'w', 746, - '{', 1497, - '|', 1451, - '}', 1498, + '"', 1713, + '#', 2216, + '$', 1499, + '\'', 1716, + '(', 1495, + ')', 1644, + '+', 712, + '-', 1519, + '.', 707, + '0', 1651, + ':', 1491, + ';', 1479, + '=', 683, + '@', 1490, + 'I', 824, + 'N', 820, + '[', 1493, + '^', 1759, + '_', 726, + '`', 1720, + 'a', 765, + 'c', 731, + 'd', 742, + 'e', 772, + 'f', 732, + 'i', 725, + 'l', 750, + 'm', 736, + 'n', 783, + 't', 786, + 'u', 799, + 'w', 758, + '{', 1526, + '|', 1480, + '}', 1527, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(623); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1638); + lookahead == ' ') SKIP(634); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1667); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'a' < lookahead)) ADVANCE(823); + (lookahead < ']' || 'a' < lookahead)) ADVANCE(839); END_STATE(); - case 621: - if (eof) ADVANCE(660); + case 632: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '"', 1684, - '#', 2187, - '$', 1470, - '\'', 1687, - '(', 1466, - ')', 1467, - '+', 701, - '-', 1490, - '.', 696, - '0', 1622, - ':', 1462, - ';', 1450, - '<', 1140, - '=', 672, - '>', 1478, - '@', 1480, - 'I', 808, - 'N', 804, - '[', 1464, - '^', 1730, - '_', 715, - '`', 1691, - 'a', 753, - 'c', 720, - 'd', 730, - 'e', 690, - 'f', 722, - 'i', 714, - 'l', 738, - 'm', 724, - 'n', 768, - 'o', 692, - 't', 771, - 'u', 784, - 'w', 746, - '{', 1497, - '|', 1451, - '}', 1498, + '"', 1713, + '#', 2216, + '$', 1499, + '\'', 1716, + '(', 1495, + ')', 1496, + '+', 712, + '-', 1519, + '.', 707, + '0', 1651, + ':', 1491, + ';', 1479, + '<', 1164, + '=', 683, + '>', 1507, + '@', 1509, + 'I', 824, + 'N', 820, + '[', 1493, + '^', 1759, + '_', 726, + '`', 1720, + 'a', 765, + 'c', 731, + 'd', 742, + 'e', 701, + 'f', 732, + 'i', 725, + 'l', 750, + 'm', 736, + 'n', 783, + 'o', 703, + 't', 786, + 'u', 799, + 'w', 758, + '{', 1526, + '|', 1480, + '}', 1527, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(622); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1638); + lookahead == ' ') SKIP(633); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1667); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '+' || '.' < lookahead) && - (lookahead < ']' || 'a' < lookahead)) ADVANCE(823); + (lookahead < ']' || 'a' < lookahead)) ADVANCE(839); END_STATE(); - case 622: - if (eof) ADVANCE(660); + case 633: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '"', 1684, - '#', 2187, - '$', 1470, - '\'', 1687, - '(', 1466, - ')', 1467, - '+', 701, - '-', 1490, - '.', 696, - '0', 1622, - ':', 1462, - ';', 1450, - '=', 672, - '>', 1478, - 'I', 808, - 'N', 804, - '[', 1464, - '^', 1730, - '_', 715, - '`', 1691, - 'a', 753, - 'c', 720, - 'd', 730, - 'e', 690, - 'f', 722, - 'i', 714, - 'l', 738, - 'm', 724, - 'n', 768, - 'o', 692, - 't', 771, - 'u', 784, - 'w', 746, - '{', 1497, - '|', 1451, - '}', 1498, + '"', 1713, + '#', 2216, + '$', 1499, + '\'', 1716, + '(', 1495, + ')', 1496, + '+', 712, + '-', 1519, + '.', 707, + '0', 1651, + ':', 1491, + ';', 1479, + '=', 683, + '>', 1507, + 'I', 824, + 'N', 820, + '[', 1493, + '^', 1759, + '_', 726, + '`', 1720, + 'a', 765, + 'c', 731, + 'd', 742, + 'e', 701, + 'f', 732, + 'i', 725, + 'l', 750, + 'm', 736, + 'n', 783, + 'o', 703, + 't', 786, + 'u', 799, + 'w', 758, + '{', 1526, + '|', 1480, + '}', 1527, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(622); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1638); + lookahead == ' ') SKIP(633); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1667); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '@' && - (lookahead < ']' || 'a' < lookahead)) ADVANCE(823); + (lookahead < ']' || 'a' < lookahead)) ADVANCE(839); END_STATE(); - case 623: - if (eof) ADVANCE(660); + case 634: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '"', 1684, - '#', 2187, - '$', 1470, - '\'', 1687, - '(', 1466, - ')', 1467, - '+', 701, - '-', 1490, - '.', 696, - '0', 1622, - ':', 1462, - ';', 1450, - '=', 672, - '@', 1461, - 'I', 808, - 'N', 804, - '[', 1464, - '^', 1730, - '_', 715, - '`', 1691, - 'a', 753, - 'c', 720, - 'd', 730, - 'e', 758, - 'f', 722, - 'i', 714, - 'l', 738, - 'm', 724, - 'n', 768, - 't', 771, - 'u', 784, - 'w', 746, - '{', 1497, - '|', 1451, - '}', 1498, + '"', 1713, + '#', 2216, + '$', 1499, + '\'', 1716, + '(', 1495, + ')', 1496, + '+', 712, + '-', 1519, + '.', 707, + '0', 1651, + ':', 1491, + ';', 1479, + '=', 683, + '@', 1490, + 'I', 824, + 'N', 820, + '[', 1493, + '^', 1759, + '_', 726, + '`', 1720, + 'a', 765, + 'c', 731, + 'd', 742, + 'e', 772, + 'f', 732, + 'i', 725, + 'l', 750, + 'm', 736, + 'n', 783, + 't', 786, + 'u', 799, + 'w', 758, + '{', 1526, + '|', 1480, + '}', 1527, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(623); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1638); + lookahead == ' ') SKIP(634); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1667); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'a' < lookahead)) ADVANCE(823); + (lookahead < ']' || 'a' < lookahead)) ADVANCE(839); END_STATE(); - case 624: - if (eof) ADVANCE(660); + case 635: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '"', 1684, - '#', 2187, - '$', 1470, - '\'', 1687, - '(', 1466, - ')', 1467, - '+', 1999, - '-', 1487, - '.', 1998, - '0', 1623, - ';', 1450, - 'N', 2046, - '[', 1464, - '_', 2011, - '`', 1691, - 'e', 1988, - 'f', 2014, - 'n', 2042, - 'o', 1989, - 't', 2029, - '{', 1497, - '|', 1451, - '}', 1498, - '\t', 1449, - ' ', 1449, - 'I', 2050, - 'i', 2050, + '"', 1713, + '#', 2216, + '$', 1499, + '\'', 1716, + '(', 1495, + ')', 1496, + '+', 2028, + '-', 1516, + '.', 2027, + '0', 1652, + ';', 1479, + 'N', 2075, + '[', 1493, + '_', 2040, + '`', 1720, + 'e', 2017, + 'f', 2043, + 'n', 2071, + 'o', 2018, + 't', 2058, + '{', 1526, + '|', 1480, + '}', 1527, + '\t', 1478, + ' ', 1478, + 'I', 2079, + 'i', 2079, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1668); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(2069); + lookahead != ']') ADVANCE(2098); END_STATE(); - case 625: - if (eof) ADVANCE(660); + case 636: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '"', 1684, - '#', 2187, - '\'', 1687, - '(', 1466, - ')', 1467, - '*', 1510, - '+', 701, + '"', 1713, + '#', 2216, + '\'', 1716, + '(', 1495, + ')', 1496, + '*', 1539, + '+', 712, '-', 299, - '.', 717, - ';', 1450, - '=', 672, - 'I', 808, - 'N', 804, - '[', 1464, - '_', 715, - '`', 1691, - 'a', 753, - 'c', 720, - 'd', 730, - 'e', 758, - 'f', 722, - 'i', 714, - 'l', 738, - 'm', 724, - 'n', 797, - 't', 771, - 'u', 784, - 'w', 750, - '{', 1497, - '}', 1498, + '.', 728, + ';', 1479, + '=', 683, + 'I', 824, + 'N', 820, + '[', 1493, + '_', 726, + '`', 1720, + 'a', 765, + 'c', 731, + 'd', 742, + 'e', 772, + 'f', 732, + 'i', 725, + 'l', 750, + 'm', 736, + 'n', 812, + 't', 786, + 'u', 799, + 'w', 762, + '{', 1526, + '}', 1527, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(625); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(823); + lookahead == ' ') SKIP(636); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(839); END_STATE(); - case 626: - if (eof) ADVANCE(660); + case 637: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '"', 1684, - '#', 2187, - '\'', 1687, - ')', 1467, - '*', 1510, - '+', 701, + '"', 1713, + '#', 2216, + '\'', 1716, + ')', 1496, + '*', 1539, + '+', 712, '-', 308, - '.', 1725, - ';', 1450, - '?', 1716, - 'I', 808, - 'N', 804, - '[', 1464, - '_', 715, - '`', 1691, - 'a', 753, - 'c', 720, - 'd', 730, - 'e', 758, - 'f', 722, - 'i', 714, - 'l', 738, - 'm', 724, - 'n', 797, - 't', 771, - 'u', 784, - 'w', 750, - '}', 1498, + '.', 1754, + ';', 1479, + '?', 1745, + 'I', 824, + 'N', 820, + '[', 1493, + '_', 726, + '`', 1720, + 'a', 765, + 'c', 731, + 'd', 742, + 'e', 772, + 'f', 732, + 'i', 725, + 'l', 750, + 'm', 736, + 'n', 812, + 't', 786, + 'u', 799, + 'w', 762, + '}', 1527, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(626); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); + lookahead == ' ') SKIP(637); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || '.' < lookahead) && (lookahead < '0' || '@' < lookahead) && (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(823); + (lookahead < '{' || '}' < lookahead)) ADVANCE(839); END_STATE(); - case 627: - if (eof) ADVANCE(660); + case 638: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '"', 1684, - '#', 2187, - '\'', 1687, - ')', 1467, - '*', 1510, - '+', 701, + '"', 1713, + '#', 2216, + '\'', 1716, + ')', 1496, + '*', 1539, + '+', 712, '-', 308, - '.', 1725, - ';', 1450, - 'I', 808, - 'N', 804, - '[', 1464, - '_', 715, - '`', 1691, - 'a', 753, - 'c', 720, - 'd', 730, - 'e', 758, - 'f', 722, - 'i', 714, - 'l', 738, - 'm', 724, - 'n', 797, - 't', 771, - 'u', 784, - 'w', 750, - '}', 1498, + '.', 1754, + ';', 1479, + 'I', 824, + 'N', 820, + '[', 1493, + '_', 726, + '`', 1720, + 'a', 765, + 'c', 731, + 'd', 742, + 'e', 772, + 'f', 732, + 'i', 725, + 'l', 750, + 'm', 736, + 'n', 812, + 't', 786, + 'u', 799, + 'w', 762, + '}', 1527, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(627); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(823); + lookahead == ' ') SKIP(638); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(839); END_STATE(); - case 628: - if (eof) ADVANCE(660); + case 639: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '"', 1684, - '#', 2189, - '$', 1470, - '\'', 1687, - '(', 1466, - '+', 701, - '-', 1490, - '.', 696, - '0', 1622, - ';', 1450, - '@', 1461, - 'I', 808, - 'N', 804, - '[', 1464, - '^', 1730, - '_', 715, - '`', 1691, - 'a', 753, - 'c', 720, - 'd', 730, - 'e', 758, - 'f', 722, - 'i', 714, - 'l', 738, - 'm', 724, - 'n', 768, - 't', 771, - 'u', 784, - 'w', 746, - '{', 1497, + '"', 1713, + '#', 2218, + '$', 1499, + '\'', 1716, + '(', 1495, + '+', 712, + '-', 1519, + '.', 707, + '0', 1651, + ';', 1479, + '@', 1490, + 'I', 824, + 'N', 820, + '[', 1493, + '^', 1759, + '_', 726, + '`', 1720, + 'a', 765, + 'c', 731, + 'd', 742, + 'e', 772, + 'f', 732, + 'i', 725, + 'l', 750, + 'm', 736, + 'n', 783, + 't', 786, + 'u', 799, + 'w', 758, + '{', 1526, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(628); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1638); + lookahead == ' ') SKIP(639); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1667); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(823); + (lookahead < '{' || '}' < lookahead)) ADVANCE(839); END_STATE(); - case 629: - if (eof) ADVANCE(660); + case 640: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '$', 1469, - '(', 1560, - ')', 1467, - '.', 1603, - ';', 1450, - '[', 1664, - '_', 1812, - 'e', 1776, - 'o', 1778, - '|', 1451, - '}', 1498, - '\t', 1449, - ' ', 1449, - '+', 1790, - '-', 1790, + '#', 2216, + '$', 1498, + '(', 1589, + ')', 1496, + '.', 1632, + ';', 1479, + '[', 1693, + '_', 1841, + 'e', 1805, + 'o', 1807, + '|', 1480, + '}', 1527, + '\t', 1478, + ' ', 1478, + '+', 1819, + '-', 1819, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && @@ -21658,11030 +22062,11119 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1933); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1962); END_STATE(); - case 630: - if (eof) ADVANCE(660); + case 641: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '$', 1469, - '(', 1560, - ')', 1467, - '.', 1603, - ';', 1450, - '_', 1812, - 'a', 1864, - 'e', 1776, - 'o', 1777, - 'x', 1870, - '|', 1451, - '}', 1498, + '#', 2216, + '$', 1498, + '(', 1589, + ')', 1496, + '.', 1632, + ';', 1479, + '_', 1841, + 'a', 1893, + 'e', 1805, + 'o', 1806, + 'x', 1899, + '|', 1480, + '}', 1527, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(633); + lookahead == ' ') SKIP(644); if (lookahead == '+' || - lookahead == '-') ADVANCE(1790); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1933); + lookahead == '-') ADVANCE(1819); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1962); END_STATE(); - case 631: - if (eof) ADVANCE(660); + case 642: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '$', 1469, - '(', 1560, - ')', 1467, - '.', 1814, - ';', 1450, - '_', 1812, - 'a', 1864, - 'e', 1776, - 'o', 1777, - 'x', 1870, - '|', 1451, - '}', 1498, + '#', 2216, + '$', 1498, + '(', 1589, + ')', 1496, + '.', 1843, + ';', 1479, + '_', 1841, + 'a', 1893, + 'e', 1805, + 'o', 1806, + 'x', 1899, + '|', 1480, + '}', 1527, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(633); + lookahead == ' ') SKIP(644); if (lookahead == '+' || - lookahead == '-') ADVANCE(1790); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1933); + lookahead == '-') ADVANCE(1819); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1962); END_STATE(); - case 632: - if (eof) ADVANCE(660); + case 643: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '$', 1469, - '(', 1560, - ')', 1467, - '.', 1814, - ';', 1450, - '_', 1812, - 'e', 1776, - 'o', 1778, - '|', 1451, - '}', 1498, - '\t', 1449, - ' ', 1449, - '+', 1790, - '-', 1790, + '#', 2216, + '$', 1498, + '(', 1589, + ')', 1496, + '.', 1843, + ';', 1479, + '_', 1841, + 'e', 1805, + 'o', 1807, + '|', 1480, + '}', 1527, + '\t', 1478, + ' ', 1478, + '+', 1819, + '-', 1819, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1933); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1962); END_STATE(); - case 633: - if (eof) ADVANCE(660); + case 644: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '$', 1469, - ')', 1467, - '.', 336, - ';', 1450, - 'a', 416, + '#', 2216, + '$', 1498, + ')', 1496, + '.', 337, + ';', 1479, + 'a', 424, 'e', 288, 'o', 289, - 'x', 426, - '|', 1451, - '}', 1498, + 'x', 435, + '|', 1480, + '}', 1527, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(633); + lookahead == ' ') SKIP(644); if (lookahead == '+' || lookahead == '-') ADVANCE(314); END_STATE(); - case 634: - if (eof) ADVANCE(660); + case 645: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '(', 1560, - ')', 1467, - '.', 1594, - ';', 1450, - 'E', 1806, - 'G', 1809, - 'K', 1809, - 'M', 1809, - 'P', 1809, - 'T', 1809, - 'a', 1864, - 'd', 1823, - 'e', 1766, - 'g', 1808, - 'h', 1877, - 'k', 1808, - 'm', 1811, - 'n', 1890, - 'o', 1777, - 'p', 1808, - 's', 1838, - 't', 1808, - 'u', 1890, - 'w', 1857, - 'x', 1870, - '|', 1451, - '}', 1498, - 0xb5, 1890, + '#', 2216, + '(', 1589, + ')', 1496, + '.', 1623, + ';', 1479, + 'E', 1835, + 'G', 1838, + 'K', 1838, + 'M', 1838, + 'P', 1838, + 'T', 1838, + 'a', 1893, + 'd', 1852, + 'e', 1795, + 'g', 1837, + 'h', 1906, + 'k', 1837, + 'm', 1840, + 'n', 1919, + 'o', 1806, + 'p', 1837, + 's', 1867, + 't', 1837, + 'u', 1919, + 'w', 1886, + 'x', 1899, + '|', 1480, + '}', 1527, + 0xb5, 1919, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(659); + lookahead == ' ') SKIP(670); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1652); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + lookahead == 'b') ADVANCE(1681); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); - case 635: - if (eof) ADVANCE(660); + case 646: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '(', 1560, - ')', 1467, - '.', 1594, - ';', 1450, - 'E', 1806, - 'G', 1809, - 'K', 1809, - 'M', 1809, - 'P', 1809, - 'T', 1809, - 'd', 1823, - 'e', 1766, - 'g', 1808, - 'h', 1877, - 'k', 1808, - 'm', 1811, - 'n', 1890, - 'o', 1778, - 'p', 1808, - 's', 1838, - 't', 1808, - 'u', 1890, - 'w', 1857, - '|', 1451, - '}', 1498, - 0xb5, 1890, - '\t', 1449, - ' ', 1449, - 'B', 1652, - 'b', 1652, + '#', 2216, + '(', 1589, + ')', 1496, + '.', 1623, + ';', 1479, + 'E', 1835, + 'G', 1838, + 'K', 1838, + 'M', 1838, + 'P', 1838, + 'T', 1838, + 'd', 1852, + 'e', 1795, + 'g', 1837, + 'h', 1906, + 'k', 1837, + 'm', 1840, + 'n', 1919, + 'o', 1807, + 'p', 1837, + 's', 1867, + 't', 1837, + 'u', 1919, + 'w', 1886, + '|', 1480, + '}', 1527, + 0xb5, 1919, + '\t', 1478, + ' ', 1478, + 'B', 1681, + 'b', 1681, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); - case 636: - if (eof) ADVANCE(660); + case 647: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '(', 1560, - ')', 1467, - '.', 1594, - ';', 1450, - 'E', 1818, - 'a', 1864, - 'e', 1768, - 'o', 1777, - 'x', 1870, - '|', 1451, - '}', 1498, + '#', 2216, + '(', 1589, + ')', 1496, + '.', 1623, + ';', 1479, + 'E', 1847, + 'a', 1893, + 'e', 1797, + 'o', 1806, + 'x', 1899, + '|', 1480, + '}', 1527, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(659); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + lookahead == ' ') SKIP(670); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); - case 637: - if (eof) ADVANCE(660); + case 648: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '(', 1560, - ')', 1467, - '.', 1594, - ';', 1450, - 'E', 1818, - 'e', 1768, - 'o', 1778, - '|', 1451, - '}', 1498, - '\t', 1449, - ' ', 1449, + '#', 2216, + '(', 1589, + ')', 1496, + '.', 1623, + ';', 1479, + 'E', 1847, + 'e', 1797, + 'o', 1807, + '|', 1480, + '}', 1527, + '\t', 1478, + ' ', 1478, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); - case 638: - if (eof) ADVANCE(660); + case 649: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '(', 1560, - ')', 1467, - '.', 1789, - ';', 1450, - 'E', 1806, - 'G', 1809, - 'K', 1809, - 'M', 1809, - 'P', 1809, - 'T', 1809, - '_', 1812, - 'a', 1864, - 'd', 1823, - 'e', 1766, - 'g', 1808, - 'h', 1877, - 'k', 1808, - 'm', 1811, - 'n', 1890, - 'o', 1777, - 'p', 1808, - 's', 1838, - 't', 1808, - 'u', 1890, - 'w', 1857, - 'x', 1870, - '|', 1451, - '}', 1498, - 0xb5, 1890, + '#', 2216, + '(', 1589, + ')', 1496, + '.', 1818, + ';', 1479, + 'E', 1835, + 'G', 1838, + 'K', 1838, + 'M', 1838, + 'P', 1838, + 'T', 1838, + '_', 1841, + 'a', 1893, + 'd', 1852, + 'e', 1795, + 'g', 1837, + 'h', 1906, + 'k', 1837, + 'm', 1840, + 'n', 1919, + 'o', 1806, + 'p', 1837, + 's', 1867, + 't', 1837, + 'u', 1919, + 'w', 1886, + 'x', 1899, + '|', 1480, + '}', 1527, + 0xb5, 1919, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(659); + lookahead == ' ') SKIP(670); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1652); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + lookahead == 'b') ADVANCE(1681); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); - case 639: - if (eof) ADVANCE(660); + case 650: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '(', 1560, - ')', 1467, - '.', 1789, - ';', 1450, - 'E', 1806, - 'G', 1809, - 'K', 1809, - 'M', 1809, - 'P', 1809, - 'T', 1809, - '_', 1812, - 'd', 1823, - 'e', 1766, - 'g', 1808, - 'h', 1877, - 'k', 1808, - 'm', 1811, - 'n', 1890, - 'o', 1778, - 'p', 1808, - 's', 1838, - 't', 1808, - 'u', 1890, - 'w', 1857, - '|', 1451, - '}', 1498, - 0xb5, 1890, - '\t', 1449, - ' ', 1449, - 'B', 1652, - 'b', 1652, + '#', 2216, + '(', 1589, + ')', 1496, + '.', 1818, + ';', 1479, + 'E', 1835, + 'G', 1838, + 'K', 1838, + 'M', 1838, + 'P', 1838, + 'T', 1838, + '_', 1841, + 'd', 1852, + 'e', 1795, + 'g', 1837, + 'h', 1906, + 'k', 1837, + 'm', 1840, + 'n', 1919, + 'o', 1807, + 'p', 1837, + 's', 1867, + 't', 1837, + 'u', 1919, + 'w', 1886, + '|', 1480, + '}', 1527, + 0xb5, 1919, + '\t', 1478, + ' ', 1478, + 'B', 1681, + 'b', 1681, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); - case 640: - if (eof) ADVANCE(660); + case 651: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '(', 1560, - ')', 1467, - '.', 1789, - ';', 1450, - 'E', 1806, - 'G', 1809, - 'K', 1809, - 'M', 1809, - 'P', 1809, - 'T', 1809, - 'a', 1864, - 'd', 1823, - 'e', 1766, - 'g', 1808, - 'h', 1877, - 'k', 1808, - 'm', 1811, - 'n', 1890, - 'o', 1777, - 'p', 1808, - 's', 1838, - 't', 1808, - 'u', 1890, - 'w', 1857, - 'x', 1870, - '|', 1451, - '}', 1498, - 0xb5, 1890, + '#', 2216, + '(', 1589, + ')', 1496, + '.', 1818, + ';', 1479, + 'E', 1835, + 'G', 1838, + 'K', 1838, + 'M', 1838, + 'P', 1838, + 'T', 1838, + 'a', 1893, + 'd', 1852, + 'e', 1795, + 'g', 1837, + 'h', 1906, + 'k', 1837, + 'm', 1840, + 'n', 1919, + 'o', 1806, + 'p', 1837, + 's', 1867, + 't', 1837, + 'u', 1919, + 'w', 1886, + 'x', 1899, + '|', 1480, + '}', 1527, + 0xb5, 1919, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(659); + lookahead == ' ') SKIP(670); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1652); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + lookahead == 'b') ADVANCE(1681); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); - case 641: - if (eof) ADVANCE(660); + case 652: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '(', 1560, - ')', 1467, - '.', 1789, - ';', 1450, - 'E', 1806, - 'G', 1809, - 'K', 1809, - 'M', 1809, - 'P', 1809, - 'T', 1809, - 'd', 1823, - 'e', 1766, - 'g', 1808, - 'h', 1877, - 'k', 1808, - 'm', 1811, - 'n', 1890, - 'o', 1778, - 'p', 1808, - 's', 1838, - 't', 1808, - 'u', 1890, - 'w', 1857, - '|', 1451, - '}', 1498, - 0xb5, 1890, - '\t', 1449, - ' ', 1449, - 'B', 1652, - 'b', 1652, + '#', 2216, + '(', 1589, + ')', 1496, + '.', 1818, + ';', 1479, + 'E', 1835, + 'G', 1838, + 'K', 1838, + 'M', 1838, + 'P', 1838, + 'T', 1838, + 'd', 1852, + 'e', 1795, + 'g', 1837, + 'h', 1906, + 'k', 1837, + 'm', 1840, + 'n', 1919, + 'o', 1807, + 'p', 1837, + 's', 1867, + 't', 1837, + 'u', 1919, + 'w', 1886, + '|', 1480, + '}', 1527, + 0xb5, 1919, + '\t', 1478, + ' ', 1478, + 'B', 1681, + 'b', 1681, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); - case 642: - if (eof) ADVANCE(660); + case 653: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '(', 1560, - ')', 1467, - '.', 1789, - ';', 1450, - 'E', 1809, - 'G', 1809, - 'K', 1809, - 'M', 1809, - 'P', 1809, - 'T', 1809, - 'a', 1864, - 'd', 1823, - 'e', 1774, - 'g', 1808, - 'h', 1877, - 'k', 1808, - 'm', 1811, - 'n', 1890, - 'o', 1777, - 'p', 1808, - 's', 1838, - 't', 1808, - 'u', 1890, - 'w', 1857, - 'x', 1870, - '|', 1451, - '}', 1498, - 0xb5, 1890, + '#', 2216, + '(', 1589, + ')', 1496, + '.', 1818, + ';', 1479, + 'E', 1838, + 'G', 1838, + 'K', 1838, + 'M', 1838, + 'P', 1838, + 'T', 1838, + 'a', 1893, + 'd', 1852, + 'e', 1803, + 'g', 1837, + 'h', 1906, + 'k', 1837, + 'm', 1840, + 'n', 1919, + 'o', 1806, + 'p', 1837, + 's', 1867, + 't', 1837, + 'u', 1919, + 'w', 1886, + 'x', 1899, + '|', 1480, + '}', 1527, + 0xb5, 1919, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(659); + lookahead == ' ') SKIP(670); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1652); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + lookahead == 'b') ADVANCE(1681); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); - case 643: - if (eof) ADVANCE(660); + case 654: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '(', 1560, - ')', 1467, - '.', 1789, - ';', 1450, - 'E', 1809, - 'G', 1809, - 'K', 1809, - 'M', 1809, - 'P', 1809, - 'T', 1809, - 'd', 1823, - 'e', 1774, - 'g', 1808, - 'h', 1877, - 'k', 1808, - 'm', 1811, - 'n', 1890, - 'o', 1778, - 'p', 1808, - 's', 1838, - 't', 1808, - 'u', 1890, - 'w', 1857, - '|', 1451, - '}', 1498, - 0xb5, 1890, - '\t', 1449, - ' ', 1449, - 'B', 1652, - 'b', 1652, + '#', 2216, + '(', 1589, + ')', 1496, + '.', 1818, + ';', 1479, + 'E', 1838, + 'G', 1838, + 'K', 1838, + 'M', 1838, + 'P', 1838, + 'T', 1838, + 'd', 1852, + 'e', 1803, + 'g', 1837, + 'h', 1906, + 'k', 1837, + 'm', 1840, + 'n', 1919, + 'o', 1807, + 'p', 1837, + 's', 1867, + 't', 1837, + 'u', 1919, + 'w', 1886, + '|', 1480, + '}', 1527, + 0xb5, 1919, + '\t', 1478, + ' ', 1478, + 'B', 1681, + 'b', 1681, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); - case 644: - if (eof) ADVANCE(660); + case 655: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '(', 1560, - ')', 1467, - '.', 1789, - ';', 1450, - 'E', 1818, - '_', 1812, - 'a', 1864, - 'e', 1768, - 'o', 1777, - 'x', 1870, - '|', 1451, - '}', 1498, + '#', 2216, + '(', 1589, + ')', 1496, + '.', 1818, + ';', 1479, + 'E', 1847, + '_', 1841, + 'a', 1893, + 'e', 1797, + 'o', 1806, + 'x', 1899, + '|', 1480, + '}', 1527, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(659); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + lookahead == ' ') SKIP(670); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); - case 645: - if (eof) ADVANCE(660); + case 656: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '(', 1560, - ')', 1467, - '.', 1789, - ';', 1450, - 'E', 1818, - '_', 1812, - 'e', 1768, - 'o', 1778, - '|', 1451, - '}', 1498, - '\t', 1449, - ' ', 1449, + '#', 2216, + '(', 1589, + ')', 1496, + '.', 1818, + ';', 1479, + 'E', 1847, + '_', 1841, + 'e', 1797, + 'o', 1807, + '|', 1480, + '}', 1527, + '\t', 1478, + ' ', 1478, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); - case 646: - if (eof) ADVANCE(660); + case 657: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '(', 1560, - ')', 1467, - '.', 1789, - ';', 1450, - 'E', 1818, - 'a', 1864, - 'e', 1768, - 'o', 1777, - 'x', 1870, - '|', 1451, - '}', 1498, + '#', 2216, + '(', 1589, + ')', 1496, + '.', 1818, + ';', 1479, + 'E', 1847, + 'a', 1893, + 'e', 1797, + 'o', 1806, + 'x', 1899, + '|', 1480, + '}', 1527, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(659); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + lookahead == ' ') SKIP(670); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); - case 647: - if (eof) ADVANCE(660); + case 658: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '(', 1560, - ')', 1467, - '.', 1789, - ';', 1450, - 'E', 1818, - 'e', 1768, - 'o', 1778, - '|', 1451, - '}', 1498, - '\t', 1449, - ' ', 1449, + '#', 2216, + '(', 1589, + ')', 1496, + '.', 1818, + ';', 1479, + 'E', 1847, + 'e', 1797, + 'o', 1807, + '|', 1480, + '}', 1527, + '\t', 1478, + ' ', 1478, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); - case 648: - if (eof) ADVANCE(660); + case 659: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '(', 1560, - ')', 1467, - '.', 1789, - ';', 1450, - 'a', 1864, - 'e', 1776, - 'o', 1777, - 'x', 1870, - '|', 1451, - '}', 1498, + '#', 2216, + '(', 1589, + ')', 1496, + '.', 1818, + ';', 1479, + 'a', 1893, + 'e', 1805, + 'o', 1806, + 'x', 1899, + '|', 1480, + '}', 1527, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(659); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + lookahead == ' ') SKIP(670); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); - case 649: - if (eof) ADVANCE(660); + case 660: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '(', 1560, - ')', 1467, - '.', 1789, - ';', 1450, - 'e', 1776, - 'o', 1778, - '|', 1451, - '}', 1498, - '\t', 1449, - ' ', 1449, + '#', 2216, + '(', 1589, + ')', 1496, + '.', 1818, + ';', 1479, + 'e', 1805, + 'o', 1807, + '|', 1480, + '}', 1527, + '\t', 1478, + ' ', 1478, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); - case 650: - if (eof) ADVANCE(660); + case 661: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '(', 1560, - ')', 1467, - '.', 1593, - ';', 1450, - 'E', 1818, - 'a', 1864, - 'e', 1768, - 'o', 1777, - 'x', 1870, - '|', 1451, - '}', 1498, + '#', 2216, + '(', 1589, + ')', 1496, + '.', 1622, + ';', 1479, + 'E', 1847, + 'a', 1893, + 'e', 1797, + 'o', 1806, + 'x', 1899, + '|', 1480, + '}', 1527, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(659); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + lookahead == ' ') SKIP(670); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); - case 651: - if (eof) ADVANCE(660); + case 662: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '(', 1560, - ')', 1467, - '.', 1593, - ';', 1450, - 'E', 1818, - 'e', 1768, - 'o', 1778, - '|', 1451, - '}', 1498, - '\t', 1449, - ' ', 1449, + '#', 2216, + '(', 1589, + ')', 1496, + '.', 1622, + ';', 1479, + 'E', 1847, + 'e', 1797, + 'o', 1807, + '|', 1480, + '}', 1527, + '\t', 1478, + ' ', 1478, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); - case 652: - if (eof) ADVANCE(660); + case 663: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '(', 1560, - ')', 1467, - ';', 1450, - 'E', 1818, - '_', 1812, - 'a', 1864, - 'e', 1768, - 'o', 1777, - 'x', 1870, - '|', 1451, - '}', 1498, + '#', 2216, + '(', 1589, + ')', 1496, + ';', 1479, + 'E', 1847, + '_', 1841, + 'a', 1893, + 'e', 1797, + 'o', 1806, + 'x', 1899, + '|', 1480, + '}', 1527, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(659); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + lookahead == ' ') SKIP(670); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); - case 653: - if (eof) ADVANCE(660); + case 664: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '(', 1560, - ')', 1467, - ';', 1450, - 'E', 1818, - '_', 1812, - 'e', 1768, - 'o', 1778, - '|', 1451, - '}', 1498, - '\t', 1449, - ' ', 1449, + '#', 2216, + '(', 1589, + ')', 1496, + ';', 1479, + 'E', 1847, + '_', 1841, + 'e', 1797, + 'o', 1807, + '|', 1480, + '}', 1527, + '\t', 1478, + ' ', 1478, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); - case 654: - if (eof) ADVANCE(660); + case 665: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '(', 1560, - ')', 1467, - ';', 1450, - 'E', 1818, - 'a', 1864, - 'e', 1768, - 'o', 1777, - 'x', 1870, - '|', 1451, - '}', 1498, + '#', 2216, + '(', 1589, + ')', 1496, + ';', 1479, + 'E', 1847, + 'a', 1893, + 'e', 1797, + 'o', 1806, + 'x', 1899, + '|', 1480, + '}', 1527, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(659); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + lookahead == ' ') SKIP(670); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); - case 655: - if (eof) ADVANCE(660); + case 666: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '(', 1560, - ')', 1467, - ';', 1450, - 'E', 1818, - 'e', 1768, - 'o', 1778, - '|', 1451, - '}', 1498, - '\t', 1449, - ' ', 1449, + '#', 2216, + '(', 1589, + ')', 1496, + ';', 1479, + 'E', 1847, + 'e', 1797, + 'o', 1807, + '|', 1480, + '}', 1527, + '\t', 1478, + ' ', 1478, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); - case 656: - if (eof) ADVANCE(660); + case 667: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '(', 1560, - ')', 1467, - ';', 1450, - 'a', 1864, - 'e', 1776, - 'o', 1777, - 'x', 1870, - '|', 1451, - '}', 1498, + '#', 2216, + '(', 1589, + ')', 1496, + ';', 1479, + 'a', 1893, + 'e', 1805, + 'o', 1806, + 'x', 1899, + '|', 1480, + '}', 1527, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(659); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + lookahead == ' ') SKIP(670); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); - case 657: - if (eof) ADVANCE(660); + case 668: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - '(', 1560, - ')', 1467, - ';', 1450, - 'e', 1776, - 'o', 1778, - '|', 1451, - '}', 1498, - '\t', 1449, - ' ', 1449, + '#', 2216, + '(', 1589, + ')', 1496, + ';', 1479, + 'e', 1805, + 'o', 1807, + '|', 1480, + '}', 1527, + '\t', 1478, + ' ', 1478, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); - case 658: - if (eof) ADVANCE(660); + case 669: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - ')', 1467, - ';', 1450, - '=', 1728, - 'e', 1755, - 'o', 1756, - '|', 1451, - '}', 1498, - '\t', 1449, - ' ', 1449, + '#', 2216, + ')', 1496, + ';', 1479, + '=', 1757, + 'e', 1784, + 'o', 1785, + '|', 1480, + '}', 1527, + '\t', 1478, + ' ', 1478, ); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1761); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1790); END_STATE(); - case 659: - if (eof) ADVANCE(660); + case 670: + if (eof) ADVANCE(671); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '#', 2187, - ')', 1467, - ';', 1450, - 'a', 416, + '#', 2216, + ')', 1496, + ';', 1479, + 'a', 424, 'e', 288, 'o', 289, - 'x', 426, - '|', 1451, - '}', 1498, + 'x', 435, + '|', 1480, + '}', 1527, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(659); + lookahead == ' ') SKIP(670); END_STATE(); - case 660: + case 671: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 661: + case 672: ACCEPT_TOKEN(anon_sym_POUND_BANG); END_STATE(); - case 662: + case 673: ACCEPT_TOKEN(aux_sym_shebang_token1); END_STATE(); - case 663: + case 674: ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(662); - if (lookahead == '\r') ADVANCE(664); - if (lookahead == '#') ADVANCE(2188); + if (lookahead == '\n') ADVANCE(673); + if (lookahead == '\r') ADVANCE(675); + if (lookahead == '#') ADVANCE(2217); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(663); - if (lookahead != 0) ADVANCE(664); - END_STATE(); - case 664: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(662); - if (lookahead == '\r') ADVANCE(664); - if (lookahead != 0) ADVANCE(664); - END_STATE(); - case 665: - ACCEPT_TOKEN(anon_sym_export); - END_STATE(); - case 666: - ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '-') ADVANCE(1394); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); - END_STATE(); - case 667: - ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '-') ADVANCE(741); - END_STATE(); - case 668: - ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '-') ADVANCE(901); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); - END_STATE(); - case 669: - ACCEPT_TOKEN(anon_sym_alias); - END_STATE(); - case 670: - ACCEPT_TOKEN(anon_sym_alias); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); - END_STATE(); - case 671: - ACCEPT_TOKEN(anon_sym_alias); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); - END_STATE(); - case 672: - ACCEPT_TOKEN(anon_sym_EQ); - END_STATE(); - case 673: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(1546); - if (lookahead == '~') ADVANCE(1552); - END_STATE(); - case 674: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '>') ADVANCE(1499); + lookahead == ' ') ADVANCE(674); + if (lookahead != 0) ADVANCE(675); END_STATE(); case 675: - ACCEPT_TOKEN(anon_sym_let); + ACCEPT_TOKEN(aux_sym_shebang_token1); + if (lookahead == '\n') ADVANCE(673); + if (lookahead == '\r') ADVANCE(675); + if (lookahead != 0) ADVANCE(675); END_STATE(); case 676: - ACCEPT_TOKEN(anon_sym_let); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + ACCEPT_TOKEN(anon_sym_export); END_STATE(); case 677: - ACCEPT_TOKEN(anon_sym_let); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + ACCEPT_TOKEN(anon_sym_export); + if (lookahead == '-') ADVANCE(1420); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); END_STATE(); case 678: - ACCEPT_TOKEN(anon_sym_mut); + ACCEPT_TOKEN(anon_sym_export); + if (lookahead == '-') ADVANCE(753); END_STATE(); case 679: - ACCEPT_TOKEN(anon_sym_mut); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + ACCEPT_TOKEN(anon_sym_export); + if (lookahead == '-') ADVANCE(919); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 680: - ACCEPT_TOKEN(anon_sym_mut); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + ACCEPT_TOKEN(anon_sym_alias); END_STATE(); case 681: - ACCEPT_TOKEN(anon_sym_const); + ACCEPT_TOKEN(anon_sym_alias); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); END_STATE(); case 682: - ACCEPT_TOKEN(anon_sym_const); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + ACCEPT_TOKEN(anon_sym_alias); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 683: - ACCEPT_TOKEN(anon_sym_const); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); case 684: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(1575); + if (lookahead == '~') ADVANCE(1581); END_STATE(); case 685: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '>') ADVANCE(1528); END_STATE(); case 686: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + ACCEPT_TOKEN(anon_sym_let); END_STATE(); case 687: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + ACCEPT_TOKEN(anon_sym_let); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); END_STATE(); case 688: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_let); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 689: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '$') ADVANCE(1616); - if (lookahead == '(') ADVANCE(1590); - if (lookahead == '{') ADVANCE(1705); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + ACCEPT_TOKEN(anon_sym_mut); END_STATE(); case 690: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(765); - if (lookahead == '>') ADVANCE(517); - if (lookahead == 'l') ADVANCE(785); - if (lookahead == 'r') ADVANCE(774); - if (lookahead == 'x') ADVANCE(770); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + ACCEPT_TOKEN(anon_sym_mut); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); END_STATE(); case 691: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(766); - if (lookahead == '>') ADVANCE(520); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + ACCEPT_TOKEN(anon_sym_mut); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 692: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(744); - if (lookahead == '>') ADVANCE(518); - if (lookahead == 'u') ADVANCE(794); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + ACCEPT_TOKEN(anon_sym_const); END_STATE(); case 693: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(743); - if (lookahead == '>') ADVANCE(522); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + ACCEPT_TOKEN(anon_sym_const); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); END_STATE(); case 694: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(820); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + ACCEPT_TOKEN(anon_sym_const); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 695: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(803); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 696: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(1506); - if (lookahead == '_') ADVANCE(717); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 697: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(1503); - if (lookahead == '_') ADVANCE(717); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 698: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(689); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 699: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(1592); - if (lookahead == '_') ADVANCE(717); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS_EQ); END_STATE(); case 700: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(698); - if (lookahead == '_') ADVANCE(717); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == '$') ADVANCE(1645); + if (lookahead == '(') ADVANCE(1619); + if (lookahead == '{') ADVANCE(1734); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 701: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(716); - if (lookahead == '_') ADVANCE(701); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == '+') ADVANCE(780); + if (lookahead == '>') ADVANCE(528); + if (lookahead == 'l') ADVANCE(800); + if (lookahead == 'r') ADVANCE(789); + if (lookahead == 'x') ADVANCE(785); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 702: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ':') ADVANCE(549); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == '+') ADVANCE(781); + if (lookahead == '>') ADVANCE(531); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 703: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(519); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == '+') ADVANCE(756); + if (lookahead == '>') ADVANCE(529); + if (lookahead == 'u') ADVANCE(809); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 704: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(521); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == '+') ADVANCE(755); + if (lookahead == '>') ADVANCE(533); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 705: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(523); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == '-') ADVANCE(836); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 706: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(524); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == '.') ADVANCE(819); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 707: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - ADVANCE_MAP( - 'I', 805, - '_', 719, - 'i', 805, - 'l', 785, - 'x', 770, - '+', 719, - '-', 719, - 'B', 1652, - 'b', 1652, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == '.') ADVANCE(1535); + if (lookahead == '_') ADVANCE(728); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1674); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 708: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(805); - if (lookahead == '_') ADVANCE(719); - if (lookahead == 'i') ADVANCE(725); - if (lookahead == '+' || - lookahead == '-') ADVANCE(719); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1652); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == '.') ADVANCE(1532); + if (lookahead == '_') ADVANCE(728); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1674); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 709: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - ADVANCE_MAP( - 'I', 805, - 'a', 795, - 'i', 762, - 'o', 729, - 's', 1657, - 'u', 790, - 'B', 1652, - 'b', 1652, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == '.') ADVANCE(700); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 710: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(805); - if (lookahead == 'i') ADVANCE(805); - if (lookahead == 'l') ADVANCE(785); - if (lookahead == 'x') ADVANCE(770); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1652); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == '.') ADVANCE(1621); + if (lookahead == '_') ADVANCE(728); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1674); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 711: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(805); - if (lookahead == 'i') ADVANCE(805); - if (lookahead == 'r') ADVANCE(798); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1652); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == '.') ADVANCE(709); + if (lookahead == '_') ADVANCE(728); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1674); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 712: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(805); - if (lookahead == 'i') ADVANCE(805); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1652); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == '.') ADVANCE(727); + if (lookahead == '_') ADVANCE(712); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 713: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(805); - if (lookahead == 'i') ADVANCE(725); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1652); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == ':') ADVANCE(560); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 714: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N') ADVANCE(806); - if (lookahead == 'f') ADVANCE(1067); - if (lookahead == 'n') ADVANCE(1083); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == '>') ADVANCE(530); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 715: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(715); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == '>') ADVANCE(532); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 716: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(716); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == '>') ADVANCE(534); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 717: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(717); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == '>') ADVANCE(535); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 718: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(718); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + ADVANCE_MAP( + 'I', 821, + '_', 729, + 'i', 821, + 'l', 800, + 'x', 785, + '+', 729, + '-', 729, + 'B', 1681, + 'b', 1681, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 719: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(719); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'I') ADVANCE(821); + if (lookahead == '_') ADVANCE(729); + if (lookahead == 'i') ADVANCE(737); + if (lookahead == '+' || + lookahead == '-') ADVANCE(729); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1681); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 720: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(788); - if (lookahead == 'o') ADVANCE(763); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + ADVANCE_MAP( + 'I', 821, + 'a', 810, + 'i', 776, + 'o', 741, + 's', 1686, + 'u', 805, + 'B', 1681, + 'b', 1681, + ); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 721: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(802); - if (lookahead == 'e') ADVANCE(745); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'I') ADVANCE(821); + if (lookahead == 'i') ADVANCE(821); + if (lookahead == 'l') ADVANCE(800); + if (lookahead == 'x') ADVANCE(785); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1681); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 722: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(759); - if (lookahead == 'o') ADVANCE(772); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'I') ADVANCE(821); + if (lookahead == 'i') ADVANCE(821); + if (lookahead == 'r') ADVANCE(813); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1681); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 723: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(780); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'I') ADVANCE(821); + if (lookahead == 'i') ADVANCE(821); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1681); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 724: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(795); - if (lookahead == 'o') ADVANCE(729); - if (lookahead == 'u') ADVANCE(790); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'I') ADVANCE(821); + if (lookahead == 'i') ADVANCE(737); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1681); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 725: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'b') ADVANCE(1652); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'N') ADVANCE(822); + if (lookahead == 'f') ADVANCE(1088); + if (lookahead == 'n') ADVANCE(1107); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 726: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(1657); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == '_') ADVANCE(726); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 727: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(747); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == '_') ADVANCE(727); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1675); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); 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(823); + if (lookahead == '_') ADVANCE(728); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1674); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 729: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(800); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == '_') ADVANCE(729); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 730: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(745); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == '_') ADVANCE(730); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 731: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1046); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'a') ADVANCE(803); + if (lookahead == 'o') ADVANCE(777); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 732: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1070); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'a') ADVANCE(773); + if (lookahead == 'i') ADVANCE(778); + if (lookahead == 'o') ADVANCE(787); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 733: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1088); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'a') ADVANCE(818); + if (lookahead == 'e') ADVANCE(757); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 734: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1091); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'a') ADVANCE(795); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 735: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1525); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'a') ADVANCE(769); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 736: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1064); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'a') ADVANCE(810); + if (lookahead == 'o') ADVANCE(741); + if (lookahead == 'u') ADVANCE(805); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 737: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1055); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'b') ADVANCE(1681); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 738: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(789); - if (lookahead == 'o') ADVANCE(764); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'c') ADVANCE(1686); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 739: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(726); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'c') ADVANCE(759); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 740: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(777); - if (lookahead == 'i') ADVANCE(756); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'c') ADVANCE(760); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 741: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(761); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'd') ADVANCE(815); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 742: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(775); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'e') ADVANCE(757); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 743: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(778); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'e') ADVANCE(1067); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 744: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(704); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'e') ADVANCE(1091); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 745: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'f') ADVANCE(824); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'e') ADVANCE(1112); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 746: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(740); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'e') ADVANCE(1115); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 747: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(1076); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'e') ADVANCE(1554); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 748: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(1079); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'e') ADVANCE(1085); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 749: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(752); - if (lookahead == 'k') ADVANCE(1657); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'e') ADVANCE(1076); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 750: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(752); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'e') ADVANCE(804); + if (lookahead == 'o') ADVANCE(779); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 751: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(723); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'e') ADVANCE(738); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 752: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(756); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'e') ADVANCE(792); + if (lookahead == 'i') ADVANCE(770); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 753: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(751); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'e') ADVANCE(775); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 754: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1094); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'e') ADVANCE(790); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 755: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(754); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'e') ADVANCE(793); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 756: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(736); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'e') ADVANCE(715); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); 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(823); + if (lookahead == 'f') ADVANCE(840); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 758: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(785); - if (lookahead == 'x') ADVANCE(770); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'h') ADVANCE(752); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 759: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(787); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'h') ADVANCE(1097); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 760: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(1052); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'h') ADVANCE(1103); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 761: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(801); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'h') ADVANCE(764); + if (lookahead == 'k') ADVANCE(1686); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 762: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(1657); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1652); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'h') ADVANCE(764); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 763: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(786); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'i') ADVANCE(734); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 764: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(769); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'i') ADVANCE(770); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 765: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(703); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'l') ADVANCE(763); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 766: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(799); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'l') ADVANCE(1118); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 767: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(776); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'l') ADVANCE(817); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 768: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(791); - if (lookahead == 'u') ADVANCE(755); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(809); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'l') ADVANCE(766); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 769: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(1061); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'l') ADVANCE(767); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 770: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(767); - if (lookahead == 't') ADVANCE(742); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'l') ADVANCE(748); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 771: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(798); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'l') ADVANCE(749); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 772: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1058); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'l') ADVANCE(800); + if (lookahead == 'x') ADVANCE(785); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 773: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1657); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'l') ADVANCE(802); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 774: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(691); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'n') ADVANCE(1073); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 775: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(760); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'n') ADVANCE(816); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 776: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(793); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'n') ADVANCE(1686); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1681); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 777: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(735); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'n') ADVANCE(801); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 778: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(779); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'n') ADVANCE(735); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 779: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(706); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'o') ADVANCE(784); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 780: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(669); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'o') ADVANCE(714); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 781: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1657); - if (lookahead == 'u') ADVANCE(755); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(809); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'o') ADVANCE(814); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 782: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1657); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'o') ADVANCE(791); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); 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(823); + if (lookahead == 'o') ADVANCE(806); + if (lookahead == 'u') ADVANCE(768); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(825); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 784: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(731); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'p') ADVANCE(1082); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); 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(823); + if (lookahead == 'p') ADVANCE(782); + if (lookahead == 't') ADVANCE(754); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 786: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(792); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'r') ADVANCE(813); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 787: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(734); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'r') ADVANCE(1079); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 788: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(727); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'r') ADVANCE(1686); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 789: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(675); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'r') ADVANCE(702); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 790: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(678); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'r') ADVANCE(774); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 791: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(814); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'r') ADVANCE(808); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 792: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(681); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'r') ADVANCE(747); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 793: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(667); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'r') ADVANCE(794); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 794: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(693); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'r') ADVANCE(717); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 795: 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(823); + if (lookahead == 's') ADVANCE(680); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 796: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(705); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 's') ADVANCE(1686); + if (lookahead == 'u') ADVANCE(768); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(825); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 797: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(755); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(809); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 's') ADVANCE(1686); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 798: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(733); - if (lookahead == 'y') ADVANCE(1073); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 's') ADVANCE(1687); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 799: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(796); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 's') ADVANCE(743); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 800: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(757); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 's') ADVANCE(744); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 801: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'v') ADVANCE(1049); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 's') ADVANCE(807); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 802: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'y') ADVANCE(1657); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 's') ADVANCE(746); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 803: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '{') ADVANCE(1705); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 't') ADVANCE(739); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 804: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(809); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 't') ADVANCE(686); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 805: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1652); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 't') ADVANCE(689); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 806: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1098); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 't') ADVANCE(830); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 807: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(811); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 't') ADVANCE(692); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 808: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(806); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 't') ADVANCE(678); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 809: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1108); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 't') ADVANCE(704); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 810: 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(823); + if (lookahead == 't') ADVANCE(740); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 811: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(812); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 't') ADVANCE(716); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 812: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1097); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'u') ADVANCE(768); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(825); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 813: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(1648); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'u') ADVANCE(745); + if (lookahead == 'y') ADVANCE(1094); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 814: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1559); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'u') ADVANCE(811); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 815: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(1649); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'u') ADVANCE(771); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 816: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(694); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'v') ADVANCE(1070); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 817: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'y') ADVANCE(1100); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 818: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(702); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'y') ADVANCE(1686); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 819: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(816); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == '{') ADVANCE(1734); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); 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(823); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(825); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); 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(823); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1681); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 822: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1647); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1122); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 823: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(827); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 824: - ACCEPT_TOKEN(anon_sym_def); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(822); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 825: - ACCEPT_TOKEN(anon_sym_def); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1132); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 826: - ACCEPT_TOKEN(anon_sym_def); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(823); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 827: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(899); - if (lookahead == '>') ADVANCE(1738); - if (lookahead == 'r') ADVANCE(1531); - if (lookahead == 'u') ADVANCE(992); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(828); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 828: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(944); - if (lookahead == '>') ADVANCE(1736); - if (lookahead == 'n') ADVANCE(888); - if (lookahead == 'r') ADVANCE(959); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1121); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 829: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(900); - if (lookahead == '>') ADVANCE(1734); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(1677); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 830: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(946); - if (lookahead == '>') ADVANCE(1732); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(1588); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 831: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(902); - if (lookahead == '>') ADVANCE(518); - if (lookahead == 'r') ADVANCE(1531); - if (lookahead == 'u') ADVANCE(998); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(1678); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 832: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(952); - if (lookahead == '>') ADVANCE(517); - if (lookahead == 'n') ADVANCE(888); - if (lookahead == 'r') ADVANCE(965); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(705); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 833: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(954); - if (lookahead == '>') ADVANCE(520); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1702); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 834: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(905); - if (lookahead == '>') ADVANCE(522); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(713); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 835: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1035); - if (lookahead == '_') ADVANCE(865); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(865); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(832); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 836: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(879); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(833); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 837: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(906); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(834); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 838: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1014); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1676); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 839: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1484); - if (lookahead == '.') ADVANCE(865); - if (lookahead == '_') ADVANCE(847); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1024); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(865); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(839); END_STATE(); case 840: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1037); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + ACCEPT_TOKEN(anon_sym_def); END_STATE(); case 841: - 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(1045); + ACCEPT_TOKEN(anon_sym_def); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); END_STATE(); case 842: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1041); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + ACCEPT_TOKEN(anon_sym_def); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 843: 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(1045); + if (lookahead == '+') ADVANCE(916); + if (lookahead == '>') ADVANCE(1767); + if (lookahead == 'r') ADVANCE(1560); + if (lookahead == 'u') ADVANCE(1012); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); 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(1045); + if (lookahead == '+') ADVANCE(964); + if (lookahead == '>') ADVANCE(1765); + if (lookahead == 'n') ADVANCE(905); + if (lookahead == 'r') ADVANCE(979); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 845: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1043); - if (lookahead == '_') ADVANCE(865); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(865); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == '+') ADVANCE(917); + if (lookahead == '>') ADVANCE(1763); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 846: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '.') ADVANCE(865); - if (lookahead == '_') ADVANCE(847); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1024); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(865); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == '+') ADVANCE(966); + if (lookahead == '>') ADVANCE(1761); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 847: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '.') ADVANCE(865); - if (lookahead == '_') ADVANCE(847); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(865); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == '+') ADVANCE(918); + if (lookahead == '>') ADVANCE(529); + if (lookahead == 'r') ADVANCE(1560); + if (lookahead == 'u') ADVANCE(1018); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 848: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '.') ADVANCE(1507); - if (lookahead == '_') ADVANCE(865); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(865); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == '+') ADVANCE(972); + if (lookahead == '>') ADVANCE(528); + if (lookahead == 'n') ADVANCE(905); + if (lookahead == 'r') ADVANCE(985); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 849: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == ':') ADVANCE(549); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == '+') ADVANCE(974); + if (lookahead == '>') ADVANCE(531); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 850: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == ':') ADVANCE(2068); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == '+') ADVANCE(922); + if (lookahead == '>') ADVANCE(533); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 851: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '=') ADVANCE(1547); - if (lookahead == '~') ADVANCE(1554); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == '-') ADVANCE(1056); + if (lookahead == '_') ADVANCE(881); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(881); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 852: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(1746); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == '-') ADVANCE(895); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 853: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(1744); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == '-') ADVANCE(923); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 854: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(1740); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == '-') ADVANCE(1034); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 855: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(1742); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == '-') ADVANCE(1513); + if (lookahead == '.') ADVANCE(881); + if (lookahead == '_') ADVANCE(863); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1045); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(881); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 856: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(519); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == '-') ADVANCE(1058); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 857: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(521); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == '-') ADVANCE(1035); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 858: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(523); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == '-') ADVANCE(1062); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 859: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(524); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == '-') ADVANCE(1036); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 860: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'N') ADVANCE(1020); - if (lookahead == 'f') ADVANCE(1069); - if (lookahead == 'n') ADVANCE(1084); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == '-') ADVANCE(1037); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 861: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'T') ADVANCE(1038); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == '-') ADVANCE(1064); + if (lookahead == '_') ADVANCE(881); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(881); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); 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(1045); + if (lookahead == '.') ADVANCE(881); + if (lookahead == '_') ADVANCE(863); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1045); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(881); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 863: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(865); - if (lookahead == 'b') ADVANCE(1651); - if (lookahead == 'o') ADVANCE(1661); - if (lookahead == 'x') ADVANCE(1663); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(867); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == '.') ADVANCE(881); + if (lookahead == '_') ADVANCE(863); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(881); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 864: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(865); - if (lookahead == 'b') ADVANCE(1651); - if (lookahead == 'o') ADVANCE(1661); - if (lookahead == 'x') ADVANCE(1663); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(870); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == '.') ADVANCE(1536); + if (lookahead == '_') ADVANCE(881); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(881); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 865: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(865); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(865); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == ':') ADVANCE(560); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 866: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(865); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(835); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == ':') ADVANCE(2097); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 867: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(865); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(866); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == '=') ADVANCE(1576); + if (lookahead == '~') ADVANCE(1583); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 868: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(865); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(867); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == '>') ADVANCE(1775); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 869: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(865); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(845); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == '>') ADVANCE(1773); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 870: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(865); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(869); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == '>') ADVANCE(1769); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 871: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(865); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(870); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == '>') ADVANCE(1771); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 872: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(927); - if (lookahead == 'o') ADVANCE(964); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == '>') ADVANCE(530); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 873: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(927); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == '>') ADVANCE(532); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 874: 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(1045); + if (lookahead == '>') ADVANCE(534); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 875: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(968); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == '>') ADVANCE(535); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 876: 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(1045); + if (lookahead == 'N') ADVANCE(1041); + if (lookahead == 'f') ADVANCE(1090); + if (lookahead == 'n') ADVANCE(1108); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); 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(1045); + if (lookahead == 'T') ADVANCE(1059); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 878: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(986); - if (lookahead == 'o') ADVANCE(941); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'T') ADVANCE(1060); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 879: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(940); - if (lookahead == 'o') ADVANCE(961); - if (lookahead == 's') ADVANCE(908); - if (lookahead == 'x') ADVANCE(953); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == '_') ADVANCE(881); + if (lookahead == 'b') ADVANCE(1680); + if (lookahead == 'o') ADVANCE(1690); + if (lookahead == 'x') ADVANCE(1692); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(883); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 880: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(1002); - if (lookahead == 'o') ADVANCE(887); - if (lookahead == 'u') ADVANCE(988); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == '_') ADVANCE(881); + if (lookahead == 'b') ADVANCE(1680); + if (lookahead == 'o') ADVANCE(1690); + if (lookahead == 'x') ADVANCE(1692); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(886); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 881: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(973); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == '_') ADVANCE(881); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(881); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 882: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'c') ADVANCE(913); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == '_') ADVANCE(881); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(851); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); 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(1045); + if (lookahead == '_') ADVANCE(881); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(882); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 884: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'd') ADVANCE(1527); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == '_') ADVANCE(881); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(883); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 885: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'd') ADVANCE(1571); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == '_') ADVANCE(881); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(861); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 886: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'd') ADVANCE(1585); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == '_') ADVANCE(881); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(885); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 887: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'd') ADVANCE(1012); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == '_') ADVANCE(881); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(886); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 888: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'd') ADVANCE(978); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'a') ADVANCE(944); + if (lookahead == 'i') ADVANCE(961); + if (lookahead == 'o') ADVANCE(984); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 889: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'd') ADVANCE(983); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'a') ADVANCE(944); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 890: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1090); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'a') ADVANCE(994); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 891: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1093); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'a') ADVANCE(987); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 892: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1556); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'a') ADVANCE(995); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 893: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'a') ADVANCE(996); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 894: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(907); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'a') ADVANCE(1006); + if (lookahead == 'o') ADVANCE(960); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 895: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1048); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'a') ADVANCE(959); + if (lookahead == 'o') ADVANCE(981); + if (lookahead == 's') ADVANCE(925); + if (lookahead == 'x') ADVANCE(973); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 896: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1072); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'a') ADVANCE(950); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 897: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1066); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'a') ADVANCE(1022); + if (lookahead == 'o') ADVANCE(904); + if (lookahead == 'u') ADVANCE(1008); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 898: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1057); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'a') ADVANCE(993); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 899: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(853); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'c') ADVANCE(930); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 900: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(969); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'c') ADVANCE(931); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 901: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(939); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'd') ADVANCE(1556); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 902: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(857); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'd') ADVANCE(1600); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 903: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(967); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'd') ADVANCE(1614); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 904: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(987); - if (lookahead == 'o') ADVANCE(945); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'd') ADVANCE(1032); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 905: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(971); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'd') ADVANCE(998); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 906: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(942); - if (lookahead == 'h') ADVANCE(876); - if (lookahead == 'i') ADVANCE(937); - if (lookahead == 'l') ADVANCE(923); - if (lookahead == 's') ADVANCE(1006); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'd') ADVANCE(1003); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 907: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'f') ADVANCE(826); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'e') ADVANCE(1114); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 908: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(929); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'e') ADVANCE(1117); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 909: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(1543); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'e') ADVANCE(1585); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 910: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(1539); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'e') ADVANCE(1587); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 911: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(1545); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'e') ADVANCE(924); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 912: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(1541); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'e') ADVANCE(1069); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 913: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(1078); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'e') ADVANCE(1093); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 914: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(1081); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'e') ADVANCE(1087); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 915: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(918); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'e') ADVANCE(1078); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 916: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(925); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'e') ADVANCE(869); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 917: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(991); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'e') ADVANCE(989); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 918: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(932); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'e') ADVANCE(873); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 919: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(993); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'e') ADVANCE(958); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 920: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(997); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'e') ADVANCE(988); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 921: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(999); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'e') ADVANCE(1007); + if (lookahead == 'o') ADVANCE(965); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); 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(1045); + if (lookahead == 'e') ADVANCE(991); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 923: 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(1045); + if (lookahead == 'e') ADVANCE(962); + if (lookahead == 'h') ADVANCE(892); + if (lookahead == 'i') ADVANCE(956); + if (lookahead == 'l') ADVANCE(940); + if (lookahead == 's') ADVANCE(1026); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 924: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(877); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'f') ADVANCE(842); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 925: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'k') ADVANCE(892); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'h') ADVANCE(946); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); 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(1045); + if (lookahead == 'h') ADVANCE(1572); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 927: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(977); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'h') ADVANCE(1568); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 928: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(1096); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'h') ADVANCE(1574); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 929: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(1581); - if (lookahead == 'r') ADVANCE(1583); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'h') ADVANCE(1570); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 930: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(928); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'h') ADVANCE(1099); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 931: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(924); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'h') ADVANCE(1105); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 932: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(897); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'h') ADVANCE(935); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); 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(1045); + if (lookahead == 'i') ADVANCE(942); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 934: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(980); - if (lookahead == 'x') ADVANCE(957); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'i') ADVANCE(1011); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 935: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(884); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'i') ADVANCE(951); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 936: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(1087); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'i') ADVANCE(1013); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 937: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(1533); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'i') ADVANCE(1017); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 938: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(1054); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'i') ADVANCE(1019); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 939: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(1013); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'i') ADVANCE(1020); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 940: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(886); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'i') ADVANCE(943); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 941: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(981); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'i') ADVANCE(893); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 942: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(889); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'k') ADVANCE(909); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 943: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(985); - if (lookahead == 'u') ADVANCE(930); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1023); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'k') ADVANCE(910); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 944: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(852); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'l') ADVANCE(997); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 945: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(956); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'l') ADVANCE(1120); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 946: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(1010); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'l') ADVANCE(1610); + if (lookahead == 'r') ADVANCE(1612); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 947: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(960); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'l') ADVANCE(1039); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 948: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(885); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'l') ADVANCE(945); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 949: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(995); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'l') ADVANCE(941); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 950: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(941); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'l') ADVANCE(947); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 951: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(887); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'l') ADVANCE(914); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 952: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(856); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'l') ADVANCE(915); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 953: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(962); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'l') ADVANCE(1000); + if (lookahead == 'x') ADVANCE(977); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 954: 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(1045); + if (lookahead == 'n') ADVANCE(901); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 955: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(972); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'n') ADVANCE(1111); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 956: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'p') ADVANCE(1063); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'n') ADVANCE(1562); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 957: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'p') ADVANCE(955); - if (lookahead == 't') ADVANCE(903); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'n') ADVANCE(1075); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 958: 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(1045); + if (lookahead == 'n') ADVANCE(1033); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 959: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(830); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'n') ADVANCE(903); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 960: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1529); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'n') ADVANCE(1001); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 961: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1589); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'n') ADVANCE(896); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 962: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1587); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'n') ADVANCE(906); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 963: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1007); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'o') ADVANCE(1005); + if (lookahead == 'u') ADVANCE(948); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1044); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 964: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1060); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'o') ADVANCE(868); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 965: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(833); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'o') ADVANCE(976); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 966: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(855); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'o') ADVANCE(1030); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 967: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(938); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'o') ADVANCE(980); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 968: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1004); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'o') ADVANCE(902); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 969: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(966); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'o') ADVANCE(1015); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 970: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(859); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'o') ADVANCE(960); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 971: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(970); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'o') ADVANCE(904); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 972: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(990); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'o') ADVANCE(872); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 973: 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(1045); + if (lookahead == 'o') ADVANCE(982); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 974: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(1535); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'o') ADVANCE(1031); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 975: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(1537); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'o') ADVANCE(992); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 976: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(671); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'p') ADVANCE(1084); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 977: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(891); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'p') ADVANCE(975); + if (lookahead == 't') ADVANCE(920); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 978: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(838); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'r') ADVANCE(1028); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 979: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(895); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'r') ADVANCE(846); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); 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(1045); + if (lookahead == 'r') ADVANCE(1558); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 981: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(989); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'r') ADVANCE(1618); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 982: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(841); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'r') ADVANCE(1616); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 983: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(843); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'r') ADVANCE(1027); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); 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(1045); + if (lookahead == 'r') ADVANCE(1081); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 985: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(1030); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'r') ADVANCE(849); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 986: 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(1045); + if (lookahead == 'r') ADVANCE(871); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 987: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(677); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'r') ADVANCE(1024); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 988: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(680); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'r') ADVANCE(957); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 989: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(683); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'r') ADVANCE(986); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 990: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(668); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'r') ADVANCE(875); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 991: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(836); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'r') ADVANCE(990); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 992: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(829); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'r') ADVANCE(1010); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 993: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(909); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'r') ADVANCE(1025); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 994: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(875); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 's') ADVANCE(1564); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 995: 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(1045); + if (lookahead == 's') ADVANCE(1566); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 996: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(854); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 's') ADVANCE(682); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 997: 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(1045); + if (lookahead == 's') ADVANCE(908); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 998: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(834); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 's') ADVANCE(854); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 999: 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(1045); + if (lookahead == 's') ADVANCE(912); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); 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(1045); + if (lookahead == 's') ADVANCE(913); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 1001: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(858); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 's') ADVANCE(1009); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 1002: 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(1045); + if (lookahead == 's') ADVANCE(857); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 1003: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(903); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 's') ADVANCE(859); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 1004: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(982); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 's') ADVANCE(860); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 1005: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(984); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 't') ADVANCE(1051); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 1006: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(881); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 't') ADVANCE(899); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 1007: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'u') ADVANCE(890); - if (lookahead == 'y') ADVANCE(1075); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 't') ADVANCE(688); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 1008: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'u') ADVANCE(890); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 't') ADVANCE(691); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 1009: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'u') ADVANCE(930); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1023); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 't') ADVANCE(694); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 1010: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'u') ADVANCE(996); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 't') ADVANCE(679); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 1011: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'u') ADVANCE(1001); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 't') ADVANCE(852); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 1012: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'u') ADVANCE(933); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 't') ADVANCE(845); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 1013: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'v') ADVANCE(1051); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 't') ADVANCE(926); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 1014: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'w') ADVANCE(919); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 't') ADVANCE(891); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); 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(1045); + if (lookahead == 't') ADVANCE(853); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); 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(1045); + if (lookahead == 't') ADVANCE(870); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); 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(1045); + if (lookahead == 't') ADVANCE(927); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 1018: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'x') ADVANCE(1003); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 't') ADVANCE(850); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 1019: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1023); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 't') ADVANCE(928); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 1020: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1022); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 't') ADVANCE(929); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 1021: 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(1045); + if (lookahead == 't') ADVANCE(874); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 1022: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1025); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 't') ADVANCE(900); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 1023: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1045); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 't') ADVANCE(920); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 1024: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1020); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 't') ADVANCE(1002); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); 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(1045); + if (lookahead == 't') ADVANCE(1004); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 1026: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1027); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 't') ADVANCE(898); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 1027: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1045); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'u') ADVANCE(907); + if (lookahead == 'y') ADVANCE(1096); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 1028: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(1028); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'u') ADVANCE(907); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 1029: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-' || - lookahead == '.' || - lookahead == '?' || - lookahead == '@') ADVANCE(1045); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1029); + if (lookahead == 'u') ADVANCE(948); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1044); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 1030: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1559); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'u') ADVANCE(1016); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 1031: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(1031); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'u') ADVANCE(1021); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 1032: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(840); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'u') ADVANCE(952); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 1033: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(861); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'v') ADVANCE(1072); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 1034: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(849); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'w') ADVANCE(936); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 1035: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1032); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'w') ADVANCE(937); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 1036: 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(1045); + if (lookahead == 'w') ADVANCE(938); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 1037: 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(1045); + if (lookahead == 'w') ADVANCE(939); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); 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(1045); + if (lookahead == 'x') ADVANCE(1023); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 1039: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1036); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'y') ADVANCE(1102); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 1040: 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(1045); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1044); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 1041: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1040); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1043); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 1042: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(842); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1047); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 1043: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1042); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1046); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); case 1044: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1066); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + END_STATE(); + case 1045: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1041); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + END_STATE(); + case 1046: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1042); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + END_STATE(); + case 1047: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1048); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + END_STATE(); + case 1048: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1066); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + END_STATE(); + case 1049: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(1049); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + END_STATE(); + case 1050: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (lookahead == '-' || + lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(1066); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1050); + END_STATE(); + case 1051: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(1588); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + END_STATE(); + case 1052: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(1052); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + END_STATE(); + case 1053: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(856); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + END_STATE(); + case 1054: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(877); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + END_STATE(); + case 1055: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(865); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + END_STATE(); + case 1056: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1053); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + END_STATE(); + case 1057: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(866); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + END_STATE(); + case 1058: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1054); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + END_STATE(); + case 1059: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1055); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + END_STATE(); + case 1060: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1057); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + END_STATE(); + case 1061: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(878); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + END_STATE(); + case 1062: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1061); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + END_STATE(); + case 1063: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(858); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + END_STATE(); + case 1064: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1063); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + END_STATE(); + case 1065: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1044); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1065); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); - case 1045: + case 1066: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); - case 1046: + case 1067: ACCEPT_TOKEN(anon_sym_use); END_STATE(); - case 1047: + case 1068: ACCEPT_TOKEN(anon_sym_use); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); END_STATE(); - case 1048: + case 1069: ACCEPT_TOKEN(anon_sym_use); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); - case 1049: + case 1070: ACCEPT_TOKEN(anon_sym_export_DASHenv); END_STATE(); - case 1050: + case 1071: ACCEPT_TOKEN(anon_sym_export_DASHenv); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); END_STATE(); - case 1051: + case 1072: ACCEPT_TOKEN(anon_sym_export_DASHenv); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); - case 1052: + case 1073: ACCEPT_TOKEN(anon_sym_extern); END_STATE(); - case 1053: + case 1074: ACCEPT_TOKEN(anon_sym_extern); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); END_STATE(); - case 1054: + case 1075: ACCEPT_TOKEN(anon_sym_extern); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); - case 1055: + case 1076: ACCEPT_TOKEN(anon_sym_module); END_STATE(); - case 1056: + case 1077: ACCEPT_TOKEN(anon_sym_module); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); END_STATE(); - case 1057: + case 1078: ACCEPT_TOKEN(anon_sym_module); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); - case 1058: + case 1079: ACCEPT_TOKEN(anon_sym_for); END_STATE(); - case 1059: + case 1080: ACCEPT_TOKEN(anon_sym_for); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); END_STATE(); - case 1060: + case 1081: ACCEPT_TOKEN(anon_sym_for); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); - case 1061: + case 1082: ACCEPT_TOKEN(anon_sym_loop); END_STATE(); - case 1062: + case 1083: ACCEPT_TOKEN(anon_sym_loop); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); END_STATE(); - case 1063: + case 1084: ACCEPT_TOKEN(anon_sym_loop); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); - case 1064: + case 1085: ACCEPT_TOKEN(anon_sym_while); END_STATE(); - case 1065: + case 1086: ACCEPT_TOKEN(anon_sym_while); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); END_STATE(); - case 1066: + case 1087: ACCEPT_TOKEN(anon_sym_while); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); - case 1067: + case 1088: ACCEPT_TOKEN(anon_sym_if); END_STATE(); - case 1068: + case 1089: ACCEPT_TOKEN(anon_sym_if); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); END_STATE(); - case 1069: + case 1090: ACCEPT_TOKEN(anon_sym_if); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); - case 1070: + case 1091: ACCEPT_TOKEN(anon_sym_else); END_STATE(); - case 1071: + case 1092: ACCEPT_TOKEN(anon_sym_else); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); END_STATE(); - case 1072: + case 1093: ACCEPT_TOKEN(anon_sym_else); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); - case 1073: + case 1094: ACCEPT_TOKEN(anon_sym_try); END_STATE(); - case 1074: + case 1095: ACCEPT_TOKEN(anon_sym_try); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); END_STATE(); - case 1075: + case 1096: ACCEPT_TOKEN(anon_sym_try); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); - case 1076: + case 1097: ACCEPT_TOKEN(anon_sym_catch); END_STATE(); - case 1077: + case 1098: ACCEPT_TOKEN(anon_sym_catch); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); END_STATE(); - case 1078: + case 1099: ACCEPT_TOKEN(anon_sym_catch); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); - case 1079: + case 1100: + ACCEPT_TOKEN(anon_sym_finally); + END_STATE(); + case 1101: + ACCEPT_TOKEN(anon_sym_finally); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + END_STATE(); + case 1102: + ACCEPT_TOKEN(anon_sym_finally); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); + END_STATE(); + case 1103: ACCEPT_TOKEN(anon_sym_match); END_STATE(); - case 1080: + case 1104: ACCEPT_TOKEN(anon_sym_match); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); END_STATE(); - case 1081: + case 1105: ACCEPT_TOKEN(anon_sym_match); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); - case 1082: + case 1106: ACCEPT_TOKEN(anon_sym_in); END_STATE(); - case 1083: + case 1107: ACCEPT_TOKEN(anon_sym_in); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1098); + lookahead == 'f') ADVANCE(1122); END_STATE(); - case 1084: + case 1108: ACCEPT_TOKEN(anon_sym_in); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1022); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + lookahead == 'f') ADVANCE(1043); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); - case 1085: + case 1109: ACCEPT_TOKEN(anon_sym_in); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1440); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + lookahead == 'f') ADVANCE(1469); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); END_STATE(); - case 1086: + case 1110: ACCEPT_TOKEN(anon_sym_in); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); END_STATE(); - case 1087: + case 1111: ACCEPT_TOKEN(anon_sym_in); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); - case 1088: + case 1112: ACCEPT_TOKEN(anon_sym_true); END_STATE(); - case 1089: + case 1113: ACCEPT_TOKEN(anon_sym_true); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); END_STATE(); - case 1090: + case 1114: ACCEPT_TOKEN(anon_sym_true); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); - case 1091: + case 1115: ACCEPT_TOKEN(anon_sym_false); END_STATE(); - case 1092: + case 1116: ACCEPT_TOKEN(anon_sym_false); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); END_STATE(); - case 1093: + case 1117: ACCEPT_TOKEN(anon_sym_false); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); - case 1094: + case 1118: ACCEPT_TOKEN(anon_sym_null); END_STATE(); - case 1095: + case 1119: ACCEPT_TOKEN(anon_sym_null); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); END_STATE(); - case 1096: + case 1120: ACCEPT_TOKEN(anon_sym_null); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); - case 1097: + case 1121: ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); END_STATE(); - case 1098: + case 1122: ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(810); + lookahead == 'i') ADVANCE(826); END_STATE(); - case 1099: + case 1123: ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2051); + lookahead == 'i') ADVANCE(2080); END_STATE(); - case 1100: + case 1124: ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2106); + lookahead == 'i') ADVANCE(2135); END_STATE(); - case 1101: + case 1125: ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2160); + lookahead == 'i') ADVANCE(2189); END_STATE(); - case 1102: + case 1126: ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(537); + lookahead == 'i') ADVANCE(548); END_STATE(); - case 1103: + case 1127: ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); END_STATE(); - case 1104: + case 1128: ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(535); + lookahead == 'i') ADVANCE(546); END_STATE(); - case 1105: + case 1129: ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1930); + lookahead == 'i') ADVANCE(1959); END_STATE(); - case 1106: + case 1130: ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2108); + lookahead == 'i') ADVANCE(2137); END_STATE(); - case 1107: + case 1131: ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2162); + lookahead == 'i') ADVANCE(2191); END_STATE(); - case 1108: + case 1132: ACCEPT_TOKEN(aux_sym_cmd_identifier_token5); END_STATE(); - case 1109: + case 1133: ACCEPT_TOKEN(anon_sym_STAR_STAR); END_STATE(); - case 1110: + case 1134: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); - case 1111: + case 1135: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(1109); + if (lookahead == '*') ADVANCE(1133); END_STATE(); - case 1112: + case 1136: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(1115); + if (lookahead == '/') ADVANCE(1139); END_STATE(); - case 1113: + case 1137: ACCEPT_TOKEN(anon_sym_SLASH); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); END_STATE(); - case 1114: + case 1138: ACCEPT_TOKEN(anon_sym_mod); END_STATE(); - case 1115: + case 1139: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); END_STATE(); - case 1116: + case 1140: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(1110); + if (lookahead == '+') ADVANCE(1134); END_STATE(); - case 1117: + case 1141: ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); - case 1118: + case 1142: ACCEPT_TOKEN(anon_sym_bit_DASHshl); END_STATE(); - case 1119: + case 1143: ACCEPT_TOKEN(anon_sym_bit_DASHshr); END_STATE(); - case 1120: + case 1144: ACCEPT_TOKEN(anon_sym_EQ_TILDE); END_STATE(); - case 1121: + case 1145: ACCEPT_TOKEN(anon_sym_BANG_TILDE); END_STATE(); - case 1122: + case 1146: ACCEPT_TOKEN(anon_sym_like); END_STATE(); - case 1123: + case 1147: ACCEPT_TOKEN(anon_sym_not_DASHlike); END_STATE(); - case 1124: + case 1148: ACCEPT_TOKEN(anon_sym_bit_DASHand); END_STATE(); - case 1125: + case 1149: ACCEPT_TOKEN(anon_sym_bit_DASHxor); END_STATE(); - case 1126: + case 1150: ACCEPT_TOKEN(anon_sym_bit_DASHor); END_STATE(); - case 1127: + case 1151: ACCEPT_TOKEN(anon_sym_and); END_STATE(); - case 1128: + case 1152: ACCEPT_TOKEN(anon_sym_xor); END_STATE(); - case 1129: + case 1153: ACCEPT_TOKEN(anon_sym_or); END_STATE(); - case 1130: + case 1154: ACCEPT_TOKEN(anon_sym_in2); END_STATE(); - case 1131: + case 1155: ACCEPT_TOKEN(anon_sym_not_DASHin); END_STATE(); - case 1132: + case 1156: ACCEPT_TOKEN(anon_sym_has); END_STATE(); - case 1133: + case 1157: ACCEPT_TOKEN(anon_sym_not_DASHhas); END_STATE(); - case 1134: + case 1158: ACCEPT_TOKEN(anon_sym_starts_DASHwith); END_STATE(); - case 1135: + case 1159: ACCEPT_TOKEN(anon_sym_not_DASHstarts_DASHwith); END_STATE(); - case 1136: + case 1160: ACCEPT_TOKEN(anon_sym_ends_DASHwith); END_STATE(); - case 1137: + case 1161: ACCEPT_TOKEN(anon_sym_not_DASHends_DASHwith); END_STATE(); - case 1138: + case 1162: ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); - case 1139: + case 1163: ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); - case 1140: + case 1164: ACCEPT_TOKEN(anon_sym_LT); END_STATE(); - case 1141: + case 1165: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '=') ADVANCE(1142); + if (lookahead == '=') ADVANCE(1166); END_STATE(); - case 1142: + case 1166: ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); - case 1143: + case 1167: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(1144); + if (lookahead == '=') ADVANCE(1168); END_STATE(); - case 1144: + case 1168: ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 1145: + case 1169: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1208, - '#', 2187, - ')', 1467, - '*', 1111, - '+', 1116, - '-', 1117, - '.', 1207, - '/', 1112, - ';', 1450, - '<', 1141, + '!', 1232, + '#', 2216, + ')', 1496, + '*', 1135, + '+', 1140, + '-', 1141, + '.', 1231, + '/', 1136, + ';', 1479, + '<', 1165, '=', 319, - '>', 1143, - 'B', 1652, - 'E', 1218, - 'G', 1221, - 'K', 1221, - 'M', 1221, - 'P', 1221, - 'T', 1221, - '_', 1223, - 'a', 1265, - 'b', 1653, - 'd', 1227, - 'e', 1189, - 'g', 1220, - 'h', 1228, - 'i', 1267, - 'k', 1220, - 'l', 1255, - 'm', 1222, - 'n', 1278, - 'o', 1190, - 'p', 1220, - 's', 1241, - 't', 1220, - 'u', 1293, - 'w', 1261, - 'x', 1274, - '|', 1451, - 0xb5, 1293, + '>', 1167, + 'B', 1681, + 'E', 1242, + 'G', 1245, + 'K', 1245, + 'M', 1245, + 'P', 1245, + 'T', 1245, + '_', 1247, + 'a', 1289, + 'b', 1682, + 'd', 1251, + 'e', 1213, + 'g', 1244, + 'h', 1252, + 'i', 1291, + 'k', 1244, + 'l', 1279, + 'm', 1246, + 'n', 1302, + 'o', 1214, + 'p', 1244, + 's', 1265, + 't', 1244, + 'u', 1317, + 'w', 1285, + 'x', 1298, + '|', 1480, + 0xb5, 1317, ); if (lookahead == '\t' || lookahead == ' ') SKIP(23); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); END_STATE(); - case 1146: + case 1170: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1208, - '#', 2187, - ')', 1467, - '*', 1111, - '+', 1116, - '-', 1117, - '.', 1207, - '/', 1112, - ';', 1450, - '<', 1141, + '!', 1232, + '#', 2216, + ')', 1496, + '*', 1135, + '+', 1140, + '-', 1141, + '.', 1231, + '/', 1136, + ';', 1479, + '<', 1165, '=', 319, - '>', 1143, - 'B', 1652, - 'E', 1218, - 'G', 1221, - 'K', 1221, - 'M', 1221, - 'P', 1221, - 'T', 1221, - '_', 1223, - 'a', 1265, - 'b', 1653, - 'd', 1227, - 'e', 1197, - 'g', 1220, - 'h', 1228, - 'i', 1267, - 'k', 1220, - 'l', 1255, - 'm', 1222, - 'n', 1278, - 'o', 1198, - 'p', 1220, - 's', 1241, - 't', 1220, - 'u', 1293, - 'w', 1261, - 'x', 1274, - '|', 1451, - 0xb5, 1293, + '>', 1167, + 'B', 1681, + 'E', 1242, + 'G', 1245, + 'K', 1245, + 'M', 1245, + 'P', 1245, + 'T', 1245, + '_', 1247, + 'a', 1289, + 'b', 1682, + 'd', 1251, + 'e', 1221, + 'g', 1244, + 'h', 1252, + 'i', 1291, + 'k', 1244, + 'l', 1279, + 'm', 1246, + 'n', 1302, + 'o', 1222, + 'p', 1244, + 's', 1265, + 't', 1244, + 'u', 1317, + 'w', 1285, + 'x', 1298, + '|', 1480, + 0xb5, 1317, ); if (lookahead == '\t' || lookahead == ' ') SKIP(24); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); END_STATE(); - case 1147: + case 1171: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1208, - '#', 2187, - ')', 1467, - '*', 1111, - '+', 1116, - '-', 1117, - '.', 1207, - '/', 1112, - ';', 1450, - '<', 1141, + '!', 1232, + '#', 2216, + ')', 1496, + '*', 1135, + '+', 1140, + '-', 1141, + '.', 1231, + '/', 1136, + ';', 1479, + '<', 1165, '=', 319, - '>', 1143, - 'B', 1652, - 'E', 1218, - 'G', 1221, - 'K', 1221, - 'M', 1221, - 'P', 1221, - 'T', 1221, - 'a', 1265, - 'b', 1653, - 'd', 1227, - 'e', 1189, - 'g', 1220, - 'h', 1228, - 'i', 1267, - 'k', 1220, - 'l', 1255, - 'm', 1222, - 'n', 1278, - 'o', 1190, - 'p', 1220, - 's', 1241, - 't', 1220, - 'u', 1293, - 'w', 1261, - 'x', 1274, - '|', 1451, - 0xb5, 1293, + '>', 1167, + 'B', 1681, + 'E', 1242, + 'G', 1245, + 'K', 1245, + 'M', 1245, + 'P', 1245, + 'T', 1245, + 'a', 1289, + 'b', 1682, + 'd', 1251, + 'e', 1213, + 'g', 1244, + 'h', 1252, + 'i', 1291, + 'k', 1244, + 'l', 1279, + 'm', 1246, + 'n', 1302, + 'o', 1214, + 'p', 1244, + 's', 1265, + 't', 1244, + 'u', 1317, + 'w', 1285, + 'x', 1298, + '|', 1480, + 0xb5, 1317, ); if (lookahead == '\t' || lookahead == ' ') SKIP(23); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); END_STATE(); - case 1148: + case 1172: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1208, - '#', 2187, - ')', 1467, - '*', 1111, - '+', 1116, - '-', 1117, - '.', 1207, - '/', 1112, - ';', 1450, - '<', 1141, + '!', 1232, + '#', 2216, + ')', 1496, + '*', 1135, + '+', 1140, + '-', 1141, + '.', 1231, + '/', 1136, + ';', 1479, + '<', 1165, '=', 319, - '>', 1143, - 'B', 1652, - 'E', 1218, - 'G', 1221, - 'K', 1221, - 'M', 1221, - 'P', 1221, - 'T', 1221, - 'a', 1265, - 'b', 1653, - 'd', 1227, - 'e', 1197, - 'g', 1220, - 'h', 1228, - 'i', 1267, - 'k', 1220, - 'l', 1255, - 'm', 1222, - 'n', 1278, - 'o', 1198, - 'p', 1220, - 's', 1241, - 't', 1220, - 'u', 1293, - 'w', 1261, - 'x', 1274, - '|', 1451, - 0xb5, 1293, + '>', 1167, + 'B', 1681, + 'E', 1242, + 'G', 1245, + 'K', 1245, + 'M', 1245, + 'P', 1245, + 'T', 1245, + 'a', 1289, + 'b', 1682, + 'd', 1251, + 'e', 1221, + 'g', 1244, + 'h', 1252, + 'i', 1291, + 'k', 1244, + 'l', 1279, + 'm', 1246, + 'n', 1302, + 'o', 1222, + 'p', 1244, + 's', 1265, + 't', 1244, + 'u', 1317, + 'w', 1285, + 'x', 1298, + '|', 1480, + 0xb5, 1317, ); if (lookahead == '\t' || lookahead == ' ') SKIP(24); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); END_STATE(); - case 1149: + case 1173: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1208, - '#', 2187, - ')', 1467, - '*', 1111, - '+', 1116, - '-', 1117, - '.', 1207, - '/', 1112, - ';', 1450, - '<', 1141, + '!', 1232, + '#', 2216, + ')', 1496, + '*', 1135, + '+', 1140, + '-', 1141, + '.', 1231, + '/', 1136, + ';', 1479, + '<', 1165, '=', 319, - '>', 1143, - 'B', 1652, - 'E', 1221, - 'G', 1221, - 'K', 1221, - 'M', 1221, - 'P', 1221, - 'T', 1221, - 'a', 1265, - 'b', 1653, - 'd', 1227, - 'e', 1192, - 'g', 1220, - 'h', 1228, - 'i', 1267, - 'k', 1220, - 'l', 1255, - 'm', 1222, - 'n', 1278, - 'o', 1190, - 'p', 1220, - 's', 1241, - 't', 1220, - 'u', 1293, - 'w', 1261, - 'x', 1274, - '|', 1451, - 0xb5, 1293, + '>', 1167, + 'B', 1681, + 'E', 1245, + 'G', 1245, + 'K', 1245, + 'M', 1245, + 'P', 1245, + 'T', 1245, + 'a', 1289, + 'b', 1682, + 'd', 1251, + 'e', 1216, + 'g', 1244, + 'h', 1252, + 'i', 1291, + 'k', 1244, + 'l', 1279, + 'm', 1246, + 'n', 1302, + 'o', 1214, + 'p', 1244, + 's', 1265, + 't', 1244, + 'u', 1317, + 'w', 1285, + 'x', 1298, + '|', 1480, + 0xb5, 1317, ); if (lookahead == '\t' || lookahead == ' ') SKIP(23); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); END_STATE(); - case 1150: + case 1174: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1208, - '#', 2187, - ')', 1467, - '*', 1111, - '+', 1116, - '-', 1117, - '.', 1207, - '/', 1112, - ';', 1450, - '<', 1141, + '!', 1232, + '#', 2216, + ')', 1496, + '*', 1135, + '+', 1140, + '-', 1141, + '.', 1231, + '/', 1136, + ';', 1479, + '<', 1165, '=', 319, - '>', 1143, - 'B', 1652, - 'E', 1221, - 'G', 1221, - 'K', 1221, - 'M', 1221, - 'P', 1221, - 'T', 1221, - 'a', 1265, - 'b', 1653, - 'd', 1227, - 'e', 1195, - 'g', 1220, - 'h', 1228, - 'i', 1267, - 'k', 1220, - 'l', 1255, - 'm', 1222, - 'n', 1278, - 'o', 1198, - 'p', 1220, - 's', 1241, - 't', 1220, - 'u', 1293, - 'w', 1261, - 'x', 1274, - '|', 1451, - 0xb5, 1293, + '>', 1167, + 'B', 1681, + 'E', 1245, + 'G', 1245, + 'K', 1245, + 'M', 1245, + 'P', 1245, + 'T', 1245, + 'a', 1289, + 'b', 1682, + 'd', 1251, + 'e', 1219, + 'g', 1244, + 'h', 1252, + 'i', 1291, + 'k', 1244, + 'l', 1279, + 'm', 1246, + 'n', 1302, + 'o', 1222, + 'p', 1244, + 's', 1265, + 't', 1244, + 'u', 1317, + 'w', 1285, + 'x', 1298, + '|', 1480, + 0xb5, 1317, ); if (lookahead == '\t' || lookahead == ' ') SKIP(24); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); END_STATE(); - case 1151: + case 1175: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1208, - '#', 2187, - ')', 1467, - '*', 1111, - '+', 1116, - '-', 1117, - '.', 1594, - '/', 1112, - ';', 1450, - '<', 1141, + '!', 1232, + '#', 2216, + ')', 1496, + '*', 1135, + '+', 1140, + '-', 1141, + '.', 1623, + '/', 1136, + ';', 1479, + '<', 1165, '=', 319, - '>', 1143, - 'B', 1652, - 'E', 1218, - 'G', 1221, - 'K', 1221, - 'M', 1221, - 'P', 1221, - 'T', 1221, - 'a', 1265, - 'b', 1653, - 'd', 1227, - 'e', 1189, - 'g', 1220, - 'h', 1228, - 'i', 1267, - 'k', 1220, - 'l', 1255, - 'm', 1222, - 'n', 1278, - 'o', 1190, - 'p', 1220, - 's', 1241, - 't', 1220, - 'u', 1293, - 'w', 1261, - 'x', 1274, - '|', 1451, - 0xb5, 1293, + '>', 1167, + 'B', 1681, + 'E', 1242, + 'G', 1245, + 'K', 1245, + 'M', 1245, + 'P', 1245, + 'T', 1245, + 'a', 1289, + 'b', 1682, + 'd', 1251, + 'e', 1213, + 'g', 1244, + 'h', 1252, + 'i', 1291, + 'k', 1244, + 'l', 1279, + 'm', 1246, + 'n', 1302, + 'o', 1214, + 'p', 1244, + 's', 1265, + 't', 1244, + 'u', 1317, + 'w', 1285, + 'x', 1298, + '|', 1480, + 0xb5, 1317, ); if (lookahead == '\t' || lookahead == ' ') SKIP(23); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); END_STATE(); - case 1152: + case 1176: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1208, - '#', 2187, - ')', 1467, - '*', 1111, - '+', 1116, - '-', 1117, - '.', 1594, - '/', 1112, - ';', 1450, - '<', 1141, + '!', 1232, + '#', 2216, + ')', 1496, + '*', 1135, + '+', 1140, + '-', 1141, + '.', 1623, + '/', 1136, + ';', 1479, + '<', 1165, '=', 319, - '>', 1143, - 'B', 1652, - 'E', 1218, - 'G', 1221, - 'K', 1221, - 'M', 1221, - 'P', 1221, - 'T', 1221, - 'a', 1265, - 'b', 1653, - 'd', 1227, - 'e', 1197, - 'g', 1220, - 'h', 1228, - 'i', 1267, - 'k', 1220, - 'l', 1255, - 'm', 1222, - 'n', 1278, - 'o', 1198, - 'p', 1220, - 's', 1241, - 't', 1220, - 'u', 1293, - 'w', 1261, - 'x', 1274, - '|', 1451, - 0xb5, 1293, + '>', 1167, + 'B', 1681, + 'E', 1242, + 'G', 1245, + 'K', 1245, + 'M', 1245, + 'P', 1245, + 'T', 1245, + 'a', 1289, + 'b', 1682, + 'd', 1251, + 'e', 1221, + 'g', 1244, + 'h', 1252, + 'i', 1291, + 'k', 1244, + 'l', 1279, + 'm', 1246, + 'n', 1302, + 'o', 1222, + 'p', 1244, + 's', 1265, + 't', 1244, + 'u', 1317, + 'w', 1285, + 'x', 1298, + '|', 1480, + 0xb5, 1317, ); if (lookahead == '\t' || lookahead == ' ') SKIP(24); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); END_STATE(); - case 1153: + case 1177: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1208, - '#', 2187, - ')', 1467, - '*', 1111, - '+', 1116, - '-', 1117, - '/', 1112, - ';', 1450, - '<', 1141, + '!', 1232, + '#', 2216, + ')', 1496, + '*', 1135, + '+', 1140, + '-', 1141, + '/', 1136, + ';', 1479, + '<', 1165, '=', 319, - '>', 1143, - 'a', 1265, - 'b', 1254, - 'e', 1193, - 'h', 1229, - 'i', 1267, - 'l', 1255, - 'm', 1275, - 'n', 1279, - 'o', 1190, - 's', 1301, - 'x', 1274, - '|', 1451, + '>', 1167, + 'a', 1289, + 'b', 1278, + 'e', 1217, + 'h', 1253, + 'i', 1291, + 'l', 1279, + 'm', 1299, + 'n', 1303, + 'o', 1214, + 's', 1325, + 'x', 1298, + '|', 1480, ); if (lookahead == '\t' || lookahead == ' ') SKIP(23); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); END_STATE(); - case 1154: + case 1178: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1208, - '#', 2187, - ')', 1467, - '*', 1111, - '+', 1116, - '-', 1117, - '/', 1112, - ';', 1450, - '<', 1141, + '!', 1232, + '#', 2216, + ')', 1496, + '*', 1135, + '+', 1140, + '-', 1141, + '/', 1136, + ';', 1479, + '<', 1165, '=', 319, - '>', 1143, - 'a', 1265, - 'b', 1254, - 'e', 1196, - 'h', 1229, - 'i', 1267, - 'l', 1255, - 'm', 1275, - 'n', 1279, - 'o', 1198, - 's', 1301, - 'x', 1274, - '|', 1451, + '>', 1167, + 'a', 1289, + 'b', 1278, + 'e', 1220, + 'h', 1253, + 'i', 1291, + 'l', 1279, + 'm', 1299, + 'n', 1303, + 'o', 1222, + 's', 1325, + 'x', 1298, + '|', 1480, ); if (lookahead == '\t' || lookahead == ' ') SKIP(24); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); END_STATE(); - case 1155: + case 1179: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1208, - '#', 2187, - '*', 1111, - '+', 1116, - '-', 1117, - '.', 1207, - '/', 1112, - ':', 1712, - ';', 1450, - '<', 1141, + '!', 1232, + '#', 2216, + '*', 1135, + '+', 1140, + '-', 1141, + '.', 1231, + '/', 1136, + ':', 1741, + ';', 1479, + '<', 1165, '=', 319, - '>', 1143, - 'B', 1652, - 'E', 1218, - 'G', 1221, - 'K', 1221, - 'M', 1221, - 'P', 1221, - 'T', 1221, - '_', 1223, - 'a', 1265, - 'b', 1653, - 'd', 1227, - 'e', 1189, - 'g', 1220, - 'h', 1228, - 'i', 1267, - 'k', 1220, - 'l', 1255, - 'm', 1222, - 'n', 1278, - 'o', 1190, - 'p', 1220, - 's', 1241, - 't', 1220, - 'u', 1293, - 'w', 1261, - 'x', 1274, - '|', 1451, - '}', 1498, - 0xb5, 1293, + '>', 1167, + 'B', 1681, + 'E', 1242, + 'G', 1245, + 'K', 1245, + 'M', 1245, + 'P', 1245, + 'T', 1245, + '_', 1247, + 'a', 1289, + 'b', 1682, + 'd', 1251, + 'e', 1213, + 'g', 1244, + 'h', 1252, + 'i', 1291, + 'k', 1244, + 'l', 1279, + 'm', 1246, + 'n', 1302, + 'o', 1214, + 'p', 1244, + 's', 1265, + 't', 1244, + 'u', 1317, + 'w', 1285, + 'x', 1298, + '|', 1480, + '}', 1527, + 0xb5, 1317, ); if (lookahead == '\t' || lookahead == ' ') SKIP(25); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); END_STATE(); - case 1156: + case 1180: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1208, - '#', 2187, - '*', 1111, - '+', 1116, - '-', 1117, - '.', 1207, - '/', 1112, - ':', 1712, - ';', 1450, - '<', 1141, + '!', 1232, + '#', 2216, + '*', 1135, + '+', 1140, + '-', 1141, + '.', 1231, + '/', 1136, + ':', 1741, + ';', 1479, + '<', 1165, '=', 319, - '>', 1143, - 'B', 1652, - 'E', 1218, - 'G', 1221, - 'K', 1221, - 'M', 1221, - 'P', 1221, - 'T', 1221, - 'a', 1265, - 'b', 1653, - 'd', 1227, - 'e', 1189, - 'g', 1220, - 'h', 1228, - 'i', 1267, - 'k', 1220, - 'l', 1255, - 'm', 1222, - 'n', 1278, - 'o', 1190, - 'p', 1220, - 's', 1241, - 't', 1220, - 'u', 1293, - 'w', 1261, - 'x', 1274, - '|', 1451, - '}', 1498, - 0xb5, 1293, + '>', 1167, + 'B', 1681, + 'E', 1242, + 'G', 1245, + 'K', 1245, + 'M', 1245, + 'P', 1245, + 'T', 1245, + 'a', 1289, + 'b', 1682, + 'd', 1251, + 'e', 1213, + 'g', 1244, + 'h', 1252, + 'i', 1291, + 'k', 1244, + 'l', 1279, + 'm', 1246, + 'n', 1302, + 'o', 1214, + 'p', 1244, + 's', 1265, + 't', 1244, + 'u', 1317, + 'w', 1285, + 'x', 1298, + '|', 1480, + '}', 1527, + 0xb5, 1317, ); if (lookahead == '\t' || lookahead == ' ') SKIP(25); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); END_STATE(); - case 1157: + case 1181: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1208, - '#', 2187, - '*', 1111, - '+', 1116, - '-', 1117, - '.', 1207, - '/', 1112, - ':', 1712, - ';', 1450, - '<', 1141, + '!', 1232, + '#', 2216, + '*', 1135, + '+', 1140, + '-', 1141, + '.', 1231, + '/', 1136, + ':', 1741, + ';', 1479, + '<', 1165, '=', 319, - '>', 1143, - 'B', 1652, - 'E', 1221, - 'G', 1221, - 'K', 1221, - 'M', 1221, - 'P', 1221, - 'T', 1221, - 'a', 1265, - 'b', 1653, - 'd', 1227, - 'e', 1192, - 'g', 1220, - 'h', 1228, - 'i', 1267, - 'k', 1220, - 'l', 1255, - 'm', 1222, - 'n', 1278, - 'o', 1190, - 'p', 1220, - 's', 1241, - 't', 1220, - 'u', 1293, - 'w', 1261, - 'x', 1274, - '|', 1451, - '}', 1498, - 0xb5, 1293, + '>', 1167, + 'B', 1681, + 'E', 1245, + 'G', 1245, + 'K', 1245, + 'M', 1245, + 'P', 1245, + 'T', 1245, + 'a', 1289, + 'b', 1682, + 'd', 1251, + 'e', 1216, + 'g', 1244, + 'h', 1252, + 'i', 1291, + 'k', 1244, + 'l', 1279, + 'm', 1246, + 'n', 1302, + 'o', 1214, + 'p', 1244, + 's', 1265, + 't', 1244, + 'u', 1317, + 'w', 1285, + 'x', 1298, + '|', 1480, + '}', 1527, + 0xb5, 1317, ); if (lookahead == '\t' || lookahead == ' ') SKIP(25); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); END_STATE(); - case 1158: + case 1182: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1208, - '#', 2187, - '*', 1111, - '+', 1116, - '-', 1117, - '.', 1207, - '/', 1112, - ';', 1450, - '<', 1141, + '!', 1232, + '#', 2216, + '*', 1135, + '+', 1140, + '-', 1141, + '.', 1231, + '/', 1136, + ';', 1479, + '<', 1165, '=', 319, - '>', 1143, - 'B', 1652, - 'E', 1218, - 'G', 1221, - 'K', 1221, - 'M', 1221, - 'P', 1221, - 'T', 1221, - '_', 1223, - 'a', 1265, - 'b', 1653, - 'd', 1227, - 'e', 1189, - 'g', 1220, - 'h', 1228, - 'i', 1267, - 'k', 1220, - 'l', 1255, - 'm', 1222, - 'n', 1278, - 'o', 1190, - 'p', 1220, - 's', 1241, - 't', 1220, - 'u', 1293, - 'w', 1261, - 'x', 1274, - '|', 1451, - '}', 1498, - 0xb5, 1293, + '>', 1167, + 'B', 1681, + 'E', 1242, + 'G', 1245, + 'K', 1245, + 'M', 1245, + 'P', 1245, + 'T', 1245, + '_', 1247, + 'a', 1289, + 'b', 1682, + 'd', 1251, + 'e', 1213, + 'g', 1244, + 'h', 1252, + 'i', 1291, + 'k', 1244, + 'l', 1279, + 'm', 1246, + 'n', 1302, + 'o', 1214, + 'p', 1244, + 's', 1265, + 't', 1244, + 'u', 1317, + 'w', 1285, + 'x', 1298, + '|', 1480, + '}', 1527, + 0xb5, 1317, ); if (lookahead == '\t' || lookahead == ' ') SKIP(26); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); END_STATE(); - case 1159: + case 1183: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1208, - '#', 2187, - '*', 1111, - '+', 1116, - '-', 1117, - '.', 1207, - '/', 1112, - ';', 1450, - '<', 1141, + '!', 1232, + '#', 2216, + '*', 1135, + '+', 1140, + '-', 1141, + '.', 1231, + '/', 1136, + ';', 1479, + '<', 1165, '=', 319, - '>', 1143, - 'B', 1652, - 'E', 1218, - 'G', 1221, - 'K', 1221, - 'M', 1221, - 'P', 1221, - 'T', 1221, - '_', 1223, - 'a', 1265, - 'b', 1653, - 'd', 1227, - 'e', 1197, - 'g', 1220, - 'h', 1228, - 'i', 1267, - 'k', 1220, - 'l', 1255, - 'm', 1222, - 'n', 1278, - 'o', 1198, - 'p', 1220, - 's', 1241, - 't', 1220, - 'u', 1293, - 'w', 1261, - 'x', 1274, - '|', 1451, - '}', 1498, - 0xb5, 1293, + '>', 1167, + 'B', 1681, + 'E', 1242, + 'G', 1245, + 'K', 1245, + 'M', 1245, + 'P', 1245, + 'T', 1245, + '_', 1247, + 'a', 1289, + 'b', 1682, + 'd', 1251, + 'e', 1221, + 'g', 1244, + 'h', 1252, + 'i', 1291, + 'k', 1244, + 'l', 1279, + 'm', 1246, + 'n', 1302, + 'o', 1222, + 'p', 1244, + 's', 1265, + 't', 1244, + 'u', 1317, + 'w', 1285, + 'x', 1298, + '|', 1480, + '}', 1527, + 0xb5, 1317, ); if (lookahead == '\t' || lookahead == ' ') SKIP(27); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); END_STATE(); - case 1160: + case 1184: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1208, - '#', 2187, - '*', 1111, - '+', 1116, - '-', 1117, - '.', 1207, - '/', 1112, - ';', 1450, - '<', 1141, + '!', 1232, + '#', 2216, + '*', 1135, + '+', 1140, + '-', 1141, + '.', 1231, + '/', 1136, + ';', 1479, + '<', 1165, '=', 319, - '>', 1143, - 'B', 1652, - 'E', 1218, - 'G', 1221, - 'K', 1221, - 'M', 1221, - 'P', 1221, - 'T', 1221, - 'a', 1265, - 'b', 1653, - 'd', 1227, - 'e', 1189, - 'g', 1220, - 'h', 1228, - 'i', 1267, - 'k', 1220, - 'l', 1255, - 'm', 1222, - 'n', 1278, - 'o', 1190, - 'p', 1220, - 's', 1241, - 't', 1220, - 'u', 1293, - 'w', 1261, - 'x', 1274, - '|', 1451, - '}', 1498, - 0xb5, 1293, + '>', 1167, + 'B', 1681, + 'E', 1242, + 'G', 1245, + 'K', 1245, + 'M', 1245, + 'P', 1245, + 'T', 1245, + 'a', 1289, + 'b', 1682, + 'd', 1251, + 'e', 1213, + 'g', 1244, + 'h', 1252, + 'i', 1291, + 'k', 1244, + 'l', 1279, + 'm', 1246, + 'n', 1302, + 'o', 1214, + 'p', 1244, + 's', 1265, + 't', 1244, + 'u', 1317, + 'w', 1285, + 'x', 1298, + '|', 1480, + '}', 1527, + 0xb5, 1317, ); if (lookahead == '\t' || lookahead == ' ') SKIP(26); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); END_STATE(); - case 1161: + case 1185: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1208, - '#', 2187, - '*', 1111, - '+', 1116, - '-', 1117, - '.', 1207, - '/', 1112, - ';', 1450, - '<', 1141, + '!', 1232, + '#', 2216, + '*', 1135, + '+', 1140, + '-', 1141, + '.', 1231, + '/', 1136, + ';', 1479, + '<', 1165, '=', 319, - '>', 1143, - 'B', 1652, - 'E', 1218, - 'G', 1221, - 'K', 1221, - 'M', 1221, - 'P', 1221, - 'T', 1221, - 'a', 1265, - 'b', 1653, - 'd', 1227, - 'e', 1197, - 'g', 1220, - 'h', 1228, - 'i', 1267, - 'k', 1220, - 'l', 1255, - 'm', 1222, - 'n', 1278, - 'o', 1198, - 'p', 1220, - 's', 1241, - 't', 1220, - 'u', 1293, - 'w', 1261, - 'x', 1274, - '|', 1451, - '}', 1498, - 0xb5, 1293, + '>', 1167, + 'B', 1681, + 'E', 1242, + 'G', 1245, + 'K', 1245, + 'M', 1245, + 'P', 1245, + 'T', 1245, + 'a', 1289, + 'b', 1682, + 'd', 1251, + 'e', 1221, + 'g', 1244, + 'h', 1252, + 'i', 1291, + 'k', 1244, + 'l', 1279, + 'm', 1246, + 'n', 1302, + 'o', 1222, + 'p', 1244, + 's', 1265, + 't', 1244, + 'u', 1317, + 'w', 1285, + 'x', 1298, + '|', 1480, + '}', 1527, + 0xb5, 1317, ); if (lookahead == '\t' || lookahead == ' ') SKIP(27); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); END_STATE(); - case 1162: + case 1186: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1208, - '#', 2187, - '*', 1111, - '+', 1116, - '-', 1117, - '.', 1207, - '/', 1112, - ';', 1450, - '<', 1141, + '!', 1232, + '#', 2216, + '*', 1135, + '+', 1140, + '-', 1141, + '.', 1231, + '/', 1136, + ';', 1479, + '<', 1165, '=', 319, - '>', 1143, - 'B', 1652, - 'E', 1221, - 'G', 1221, - 'K', 1221, - 'M', 1221, - 'P', 1221, - 'T', 1221, - 'a', 1265, - 'b', 1653, - 'd', 1227, - 'e', 1192, - 'g', 1220, - 'h', 1228, - 'i', 1267, - 'k', 1220, - 'l', 1255, - 'm', 1222, - 'n', 1278, - 'o', 1190, - 'p', 1220, - 's', 1241, - 't', 1220, - 'u', 1293, - 'w', 1261, - 'x', 1274, - '|', 1451, - '}', 1498, - 0xb5, 1293, + '>', 1167, + 'B', 1681, + 'E', 1245, + 'G', 1245, + 'K', 1245, + 'M', 1245, + 'P', 1245, + 'T', 1245, + 'a', 1289, + 'b', 1682, + 'd', 1251, + 'e', 1216, + 'g', 1244, + 'h', 1252, + 'i', 1291, + 'k', 1244, + 'l', 1279, + 'm', 1246, + 'n', 1302, + 'o', 1214, + 'p', 1244, + 's', 1265, + 't', 1244, + 'u', 1317, + 'w', 1285, + 'x', 1298, + '|', 1480, + '}', 1527, + 0xb5, 1317, ); if (lookahead == '\t' || lookahead == ' ') SKIP(26); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); END_STATE(); - case 1163: + case 1187: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1208, - '#', 2187, - '*', 1111, - '+', 1116, - '-', 1117, - '.', 1207, - '/', 1112, - ';', 1450, - '<', 1141, + '!', 1232, + '#', 2216, + '*', 1135, + '+', 1140, + '-', 1141, + '.', 1231, + '/', 1136, + ';', 1479, + '<', 1165, '=', 319, - '>', 1143, - 'B', 1652, - 'E', 1221, - 'G', 1221, - 'K', 1221, - 'M', 1221, - 'P', 1221, - 'T', 1221, - 'a', 1265, - 'b', 1653, - 'd', 1227, - 'e', 1195, - 'g', 1220, - 'h', 1228, - 'i', 1267, - 'k', 1220, - 'l', 1255, - 'm', 1222, - 'n', 1278, - 'o', 1198, - 'p', 1220, - 's', 1241, - 't', 1220, - 'u', 1293, - 'w', 1261, - 'x', 1274, - '|', 1451, - '}', 1498, - 0xb5, 1293, + '>', 1167, + 'B', 1681, + 'E', 1245, + 'G', 1245, + 'K', 1245, + 'M', 1245, + 'P', 1245, + 'T', 1245, + 'a', 1289, + 'b', 1682, + 'd', 1251, + 'e', 1219, + 'g', 1244, + 'h', 1252, + 'i', 1291, + 'k', 1244, + 'l', 1279, + 'm', 1246, + 'n', 1302, + 'o', 1222, + 'p', 1244, + 's', 1265, + 't', 1244, + 'u', 1317, + 'w', 1285, + 'x', 1298, + '|', 1480, + '}', 1527, + 0xb5, 1317, ); if (lookahead == '\t' || lookahead == ' ') SKIP(27); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); END_STATE(); - case 1164: + case 1188: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1208, - '#', 2187, - '*', 1111, - '+', 1116, - '-', 1117, - '.', 1207, - '/', 1112, - '<', 1141, + '!', 1232, + '#', 2216, + '*', 1135, + '+', 1140, + '-', 1141, + '.', 1231, + '/', 1136, + '<', 1165, '=', 319, - '>', 1143, - 'B', 1652, - 'E', 1218, - 'G', 1221, - 'K', 1221, - 'M', 1221, - 'P', 1221, - 'T', 1221, - '_', 1223, - 'a', 1265, - 'b', 1653, - 'd', 1227, - 'e', 1189, - 'g', 1220, - 'h', 1228, - 'i', 1267, - 'k', 1220, - 'l', 1255, - 'm', 1222, - 'n', 1278, - 'o', 1190, - 'p', 1220, - 's', 1241, - 't', 1220, - 'u', 1293, - 'w', 1261, - 'x', 1274, - '|', 1451, - 0xb5, 1293, + '>', 1167, + 'B', 1681, + 'E', 1242, + 'G', 1245, + 'K', 1245, + 'M', 1245, + 'P', 1245, + 'T', 1245, + '_', 1247, + 'a', 1289, + 'b', 1682, + 'd', 1251, + 'e', 1213, + 'g', 1244, + 'h', 1252, + 'i', 1291, + 'k', 1244, + 'l', 1279, + 'm', 1246, + 'n', 1302, + 'o', 1214, + 'p', 1244, + 's', 1265, + 't', 1244, + 'u', 1317, + 'w', 1285, + 'x', 1298, + '|', 1480, + 0xb5, 1317, ); if (lookahead == '\t' || lookahead == ' ') SKIP(28); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); END_STATE(); - case 1165: + case 1189: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1208, - '#', 2187, - '*', 1111, - '+', 1116, - '-', 1117, - '.', 1207, - '/', 1112, - '<', 1141, + '!', 1232, + '#', 2216, + '*', 1135, + '+', 1140, + '-', 1141, + '.', 1231, + '/', 1136, + '<', 1165, '=', 319, - '>', 1143, - 'B', 1652, - 'E', 1218, - 'G', 1221, - 'K', 1221, - 'M', 1221, - 'P', 1221, - 'T', 1221, - '_', 1223, - 'a', 1265, - 'b', 1653, - 'd', 1227, - 'e', 1197, - 'g', 1220, - 'h', 1228, - 'i', 1267, - 'k', 1220, - 'l', 1255, - 'm', 1222, - 'n', 1278, - 'o', 1198, - 'p', 1220, - 's', 1241, - 't', 1220, - 'u', 1293, - 'w', 1261, - 'x', 1274, - '|', 1451, - 0xb5, 1293, + '>', 1167, + 'B', 1681, + 'E', 1242, + 'G', 1245, + 'K', 1245, + 'M', 1245, + 'P', 1245, + 'T', 1245, + '_', 1247, + 'a', 1289, + 'b', 1682, + 'd', 1251, + 'e', 1221, + 'g', 1244, + 'h', 1252, + 'i', 1291, + 'k', 1244, + 'l', 1279, + 'm', 1246, + 'n', 1302, + 'o', 1222, + 'p', 1244, + 's', 1265, + 't', 1244, + 'u', 1317, + 'w', 1285, + 'x', 1298, + '|', 1480, + 0xb5, 1317, ); if (lookahead == '\t' || lookahead == ' ') SKIP(29); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); END_STATE(); - case 1166: + case 1190: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1208, - '#', 2187, - '*', 1111, - '+', 1116, - '-', 1117, - '.', 1207, - '/', 1112, - '<', 1141, + '!', 1232, + '#', 2216, + '*', 1135, + '+', 1140, + '-', 1141, + '.', 1231, + '/', 1136, + '<', 1165, '=', 319, - '>', 1143, - 'B', 1652, - 'E', 1218, - 'G', 1221, - 'K', 1221, - 'M', 1221, - 'P', 1221, - 'T', 1221, - 'a', 1265, - 'b', 1653, - 'd', 1227, - 'e', 1189, - 'g', 1220, - 'h', 1228, - 'i', 1267, - 'k', 1220, - 'l', 1255, - 'm', 1222, - 'n', 1278, - 'o', 1190, - 'p', 1220, - 's', 1241, - 't', 1220, - 'u', 1293, - 'w', 1261, - 'x', 1274, - '|', 1451, - 0xb5, 1293, + '>', 1167, + 'B', 1681, + 'E', 1242, + 'G', 1245, + 'K', 1245, + 'M', 1245, + 'P', 1245, + 'T', 1245, + 'a', 1289, + 'b', 1682, + 'd', 1251, + 'e', 1213, + 'g', 1244, + 'h', 1252, + 'i', 1291, + 'k', 1244, + 'l', 1279, + 'm', 1246, + 'n', 1302, + 'o', 1214, + 'p', 1244, + 's', 1265, + 't', 1244, + 'u', 1317, + 'w', 1285, + 'x', 1298, + '|', 1480, + 0xb5, 1317, ); if (lookahead == '\t' || lookahead == ' ') SKIP(28); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); END_STATE(); - case 1167: + case 1191: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1208, - '#', 2187, - '*', 1111, - '+', 1116, - '-', 1117, - '.', 1207, - '/', 1112, - '<', 1141, + '!', 1232, + '#', 2216, + '*', 1135, + '+', 1140, + '-', 1141, + '.', 1231, + '/', 1136, + '<', 1165, '=', 319, - '>', 1143, - 'B', 1652, - 'E', 1218, - 'G', 1221, - 'K', 1221, - 'M', 1221, - 'P', 1221, - 'T', 1221, - 'a', 1265, - 'b', 1653, - 'd', 1227, - 'e', 1197, - 'g', 1220, - 'h', 1228, - 'i', 1267, - 'k', 1220, - 'l', 1255, - 'm', 1222, - 'n', 1278, - 'o', 1198, - 'p', 1220, - 's', 1241, - 't', 1220, - 'u', 1293, - 'w', 1261, - 'x', 1274, - '|', 1451, - 0xb5, 1293, + '>', 1167, + 'B', 1681, + 'E', 1242, + 'G', 1245, + 'K', 1245, + 'M', 1245, + 'P', 1245, + 'T', 1245, + 'a', 1289, + 'b', 1682, + 'd', 1251, + 'e', 1221, + 'g', 1244, + 'h', 1252, + 'i', 1291, + 'k', 1244, + 'l', 1279, + 'm', 1246, + 'n', 1302, + 'o', 1222, + 'p', 1244, + 's', 1265, + 't', 1244, + 'u', 1317, + 'w', 1285, + 'x', 1298, + '|', 1480, + 0xb5, 1317, ); if (lookahead == '\t' || lookahead == ' ') SKIP(29); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); END_STATE(); - case 1168: + case 1192: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1208, - '#', 2187, - '*', 1111, - '+', 1116, - '-', 1117, - '.', 1207, - '/', 1112, - '<', 1141, + '!', 1232, + '#', 2216, + '*', 1135, + '+', 1140, + '-', 1141, + '.', 1231, + '/', 1136, + '<', 1165, '=', 319, - '>', 1143, - 'B', 1652, - 'E', 1221, - 'G', 1221, - 'K', 1221, - 'M', 1221, - 'P', 1221, - 'T', 1221, - 'a', 1265, - 'b', 1653, - 'd', 1227, - 'e', 1192, - 'g', 1220, - 'h', 1228, - 'i', 1267, - 'k', 1220, - 'l', 1255, - 'm', 1222, - 'n', 1278, - 'o', 1190, - 'p', 1220, - 's', 1241, - 't', 1220, - 'u', 1293, - 'w', 1261, - 'x', 1274, - '|', 1451, - 0xb5, 1293, + '>', 1167, + 'B', 1681, + 'E', 1245, + 'G', 1245, + 'K', 1245, + 'M', 1245, + 'P', 1245, + 'T', 1245, + 'a', 1289, + 'b', 1682, + 'd', 1251, + 'e', 1216, + 'g', 1244, + 'h', 1252, + 'i', 1291, + 'k', 1244, + 'l', 1279, + 'm', 1246, + 'n', 1302, + 'o', 1214, + 'p', 1244, + 's', 1265, + 't', 1244, + 'u', 1317, + 'w', 1285, + 'x', 1298, + '|', 1480, + 0xb5, 1317, ); if (lookahead == '\t' || lookahead == ' ') SKIP(28); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); END_STATE(); - case 1169: + case 1193: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1208, - '#', 2187, - '*', 1111, - '+', 1116, - '-', 1117, - '.', 1207, - '/', 1112, - '<', 1141, + '!', 1232, + '#', 2216, + '*', 1135, + '+', 1140, + '-', 1141, + '.', 1231, + '/', 1136, + '<', 1165, '=', 319, - '>', 1143, - 'B', 1652, - 'E', 1221, - 'G', 1221, - 'K', 1221, - 'M', 1221, - 'P', 1221, - 'T', 1221, - 'a', 1265, - 'b', 1653, - 'd', 1227, - 'e', 1195, - 'g', 1220, - 'h', 1228, - 'i', 1267, - 'k', 1220, - 'l', 1255, - 'm', 1222, - 'n', 1278, - 'o', 1198, - 'p', 1220, - 's', 1241, - 't', 1220, - 'u', 1293, - 'w', 1261, - 'x', 1274, - '|', 1451, - 0xb5, 1293, + '>', 1167, + 'B', 1681, + 'E', 1245, + 'G', 1245, + 'K', 1245, + 'M', 1245, + 'P', 1245, + 'T', 1245, + 'a', 1289, + 'b', 1682, + 'd', 1251, + 'e', 1219, + 'g', 1244, + 'h', 1252, + 'i', 1291, + 'k', 1244, + 'l', 1279, + 'm', 1246, + 'n', 1302, + 'o', 1222, + 'p', 1244, + 's', 1265, + 't', 1244, + 'u', 1317, + 'w', 1285, + 'x', 1298, + '|', 1480, + 0xb5, 1317, ); if (lookahead == '\t' || lookahead == ' ') SKIP(29); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); END_STATE(); - case 1170: + case 1194: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1208, - '#', 2187, - '*', 1111, - '+', 1116, - '-', 1117, - '.', 1594, - '/', 1112, - ':', 1712, - ';', 1450, - '<', 1141, + '!', 1232, + '#', 2216, + '*', 1135, + '+', 1140, + '-', 1141, + '.', 1623, + '/', 1136, + ':', 1741, + ';', 1479, + '<', 1165, '=', 319, - '>', 1143, - 'B', 1652, - 'E', 1218, - 'G', 1221, - 'K', 1221, - 'M', 1221, - 'P', 1221, - 'T', 1221, - 'a', 1265, - 'b', 1653, - 'd', 1227, - 'e', 1189, - 'g', 1220, - 'h', 1228, - 'i', 1267, - 'k', 1220, - 'l', 1255, - 'm', 1222, - 'n', 1278, - 'o', 1190, - 'p', 1220, - 's', 1241, - 't', 1220, - 'u', 1293, - 'w', 1261, - 'x', 1274, - '|', 1451, - '}', 1498, - 0xb5, 1293, + '>', 1167, + 'B', 1681, + 'E', 1242, + 'G', 1245, + 'K', 1245, + 'M', 1245, + 'P', 1245, + 'T', 1245, + 'a', 1289, + 'b', 1682, + 'd', 1251, + 'e', 1213, + 'g', 1244, + 'h', 1252, + 'i', 1291, + 'k', 1244, + 'l', 1279, + 'm', 1246, + 'n', 1302, + 'o', 1214, + 'p', 1244, + 's', 1265, + 't', 1244, + 'u', 1317, + 'w', 1285, + 'x', 1298, + '|', 1480, + '}', 1527, + 0xb5, 1317, ); if (lookahead == '\t' || lookahead == ' ') SKIP(25); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); END_STATE(); - case 1171: + case 1195: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1208, - '#', 2187, - '*', 1111, - '+', 1116, - '-', 1117, - '.', 1594, - '/', 1112, - ';', 1450, - '<', 1141, + '!', 1232, + '#', 2216, + '*', 1135, + '+', 1140, + '-', 1141, + '.', 1623, + '/', 1136, + ';', 1479, + '<', 1165, '=', 319, - '>', 1143, - 'B', 1652, - 'E', 1218, - 'G', 1221, - 'K', 1221, - 'M', 1221, - 'P', 1221, - 'T', 1221, - 'a', 1265, - 'b', 1653, - 'd', 1227, - 'e', 1189, - 'g', 1220, - 'h', 1228, - 'i', 1267, - 'k', 1220, - 'l', 1255, - 'm', 1222, - 'n', 1278, - 'o', 1190, - 'p', 1220, - 's', 1241, - 't', 1220, - 'u', 1293, - 'w', 1261, - 'x', 1274, - '|', 1451, - '}', 1498, - 0xb5, 1293, + '>', 1167, + 'B', 1681, + 'E', 1242, + 'G', 1245, + 'K', 1245, + 'M', 1245, + 'P', 1245, + 'T', 1245, + 'a', 1289, + 'b', 1682, + 'd', 1251, + 'e', 1213, + 'g', 1244, + 'h', 1252, + 'i', 1291, + 'k', 1244, + 'l', 1279, + 'm', 1246, + 'n', 1302, + 'o', 1214, + 'p', 1244, + 's', 1265, + 't', 1244, + 'u', 1317, + 'w', 1285, + 'x', 1298, + '|', 1480, + '}', 1527, + 0xb5, 1317, ); if (lookahead == '\t' || lookahead == ' ') SKIP(26); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); END_STATE(); - case 1172: + case 1196: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1208, - '#', 2187, - '*', 1111, - '+', 1116, - '-', 1117, - '.', 1594, - '/', 1112, - ';', 1450, - '<', 1141, + '!', 1232, + '#', 2216, + '*', 1135, + '+', 1140, + '-', 1141, + '.', 1623, + '/', 1136, + ';', 1479, + '<', 1165, '=', 319, - '>', 1143, - 'B', 1652, - 'E', 1218, - 'G', 1221, - 'K', 1221, - 'M', 1221, - 'P', 1221, - 'T', 1221, - 'a', 1265, - 'b', 1653, - 'd', 1227, - 'e', 1197, - 'g', 1220, - 'h', 1228, - 'i', 1267, - 'k', 1220, - 'l', 1255, - 'm', 1222, - 'n', 1278, - 'o', 1198, - 'p', 1220, - 's', 1241, - 't', 1220, - 'u', 1293, - 'w', 1261, - 'x', 1274, - '|', 1451, - '}', 1498, - 0xb5, 1293, + '>', 1167, + 'B', 1681, + 'E', 1242, + 'G', 1245, + 'K', 1245, + 'M', 1245, + 'P', 1245, + 'T', 1245, + 'a', 1289, + 'b', 1682, + 'd', 1251, + 'e', 1221, + 'g', 1244, + 'h', 1252, + 'i', 1291, + 'k', 1244, + 'l', 1279, + 'm', 1246, + 'n', 1302, + 'o', 1222, + 'p', 1244, + 's', 1265, + 't', 1244, + 'u', 1317, + 'w', 1285, + 'x', 1298, + '|', 1480, + '}', 1527, + 0xb5, 1317, ); if (lookahead == '\t' || lookahead == ' ') SKIP(27); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); END_STATE(); - case 1173: + case 1197: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1208, - '#', 2187, - '*', 1111, - '+', 1116, - '-', 1117, - '.', 1594, - '/', 1112, - '<', 1141, + '!', 1232, + '#', 2216, + '*', 1135, + '+', 1140, + '-', 1141, + '.', 1623, + '/', 1136, + '<', 1165, '=', 319, - '>', 1143, - 'B', 1652, - 'E', 1218, - 'G', 1221, - 'K', 1221, - 'M', 1221, - 'P', 1221, - 'T', 1221, - 'a', 1265, - 'b', 1653, - 'd', 1227, - 'e', 1189, - 'g', 1220, - 'h', 1228, - 'i', 1267, - 'k', 1220, - 'l', 1255, - 'm', 1222, - 'n', 1278, - 'o', 1190, - 'p', 1220, - 's', 1241, - 't', 1220, - 'u', 1293, - 'w', 1261, - 'x', 1274, - '|', 1451, - 0xb5, 1293, + '>', 1167, + 'B', 1681, + 'E', 1242, + 'G', 1245, + 'K', 1245, + 'M', 1245, + 'P', 1245, + 'T', 1245, + 'a', 1289, + 'b', 1682, + 'd', 1251, + 'e', 1213, + 'g', 1244, + 'h', 1252, + 'i', 1291, + 'k', 1244, + 'l', 1279, + 'm', 1246, + 'n', 1302, + 'o', 1214, + 'p', 1244, + 's', 1265, + 't', 1244, + 'u', 1317, + 'w', 1285, + 'x', 1298, + '|', 1480, + 0xb5, 1317, ); if (lookahead == '\t' || lookahead == ' ') SKIP(28); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); END_STATE(); - case 1174: + case 1198: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1208, - '#', 2187, - '*', 1111, - '+', 1116, - '-', 1117, - '.', 1594, - '/', 1112, - '<', 1141, + '!', 1232, + '#', 2216, + '*', 1135, + '+', 1140, + '-', 1141, + '.', 1623, + '/', 1136, + '<', 1165, '=', 319, - '>', 1143, - 'B', 1652, - 'E', 1218, - 'G', 1221, - 'K', 1221, - 'M', 1221, - 'P', 1221, - 'T', 1221, - 'a', 1265, - 'b', 1653, - 'd', 1227, - 'e', 1197, - 'g', 1220, - 'h', 1228, - 'i', 1267, - 'k', 1220, - 'l', 1255, - 'm', 1222, - 'n', 1278, - 'o', 1198, - 'p', 1220, - 's', 1241, - 't', 1220, - 'u', 1293, - 'w', 1261, - 'x', 1274, - '|', 1451, - 0xb5, 1293, + '>', 1167, + 'B', 1681, + 'E', 1242, + 'G', 1245, + 'K', 1245, + 'M', 1245, + 'P', 1245, + 'T', 1245, + 'a', 1289, + 'b', 1682, + 'd', 1251, + 'e', 1221, + 'g', 1244, + 'h', 1252, + 'i', 1291, + 'k', 1244, + 'l', 1279, + 'm', 1246, + 'n', 1302, + 'o', 1222, + 'p', 1244, + 's', 1265, + 't', 1244, + 'u', 1317, + 'w', 1285, + 'x', 1298, + '|', 1480, + 0xb5, 1317, ); if (lookahead == '\t' || lookahead == ' ') SKIP(29); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); END_STATE(); - case 1175: + case 1199: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1208, - '#', 2187, - '*', 1111, - '+', 1116, - '-', 1117, - '/', 1112, - ';', 1450, - '<', 1141, + '!', 1232, + '#', 2216, + '*', 1135, + '+', 1140, + '-', 1141, + '/', 1136, + ';', 1479, + '<', 1165, '=', 319, - '>', 1143, - 'a', 1265, - 'b', 1254, - 'e', 1193, - 'h', 1229, - 'i', 1267, - 'l', 1255, - 'm', 1275, - 'n', 1279, - 'o', 1190, - 's', 1301, - 'x', 1274, - '|', 1451, - '}', 1498, + '>', 1167, + 'a', 1289, + 'b', 1278, + 'e', 1217, + 'h', 1253, + 'i', 1291, + 'l', 1279, + 'm', 1299, + 'n', 1303, + 'o', 1214, + 's', 1325, + 'x', 1298, + '|', 1480, + '}', 1527, ); if (lookahead == '\t' || lookahead == ' ') SKIP(26); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); END_STATE(); - case 1176: + case 1200: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1208, - '#', 2187, - '*', 1111, - '+', 1116, - '-', 1117, - '/', 1112, - ';', 1450, - '<', 1141, + '!', 1232, + '#', 2216, + '*', 1135, + '+', 1140, + '-', 1141, + '/', 1136, + ';', 1479, + '<', 1165, '=', 319, - '>', 1143, - 'a', 1265, - 'b', 1254, - 'e', 1196, - 'h', 1229, - 'i', 1267, - 'l', 1255, - 'm', 1275, - 'n', 1279, - 'o', 1198, - 's', 1301, - 'x', 1274, - '|', 1451, - '}', 1498, + '>', 1167, + 'a', 1289, + 'b', 1278, + 'e', 1220, + 'h', 1253, + 'i', 1291, + 'l', 1279, + 'm', 1299, + 'n', 1303, + 'o', 1222, + 's', 1325, + 'x', 1298, + '|', 1480, + '}', 1527, ); if (lookahead == '\t' || lookahead == ' ') SKIP(27); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); END_STATE(); - case 1177: + case 1201: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1208, - '#', 2187, - '*', 1111, - '+', 1116, - '-', 1117, - '/', 1112, - '<', 1141, + '!', 1232, + '#', 2216, + '*', 1135, + '+', 1140, + '-', 1141, + '/', 1136, + '<', 1165, '=', 319, - '>', 1143, - 'a', 1265, - 'b', 1254, - 'e', 1193, - 'h', 1229, - 'i', 1267, - 'l', 1255, - 'm', 1275, - 'n', 1279, - 'o', 1190, - 's', 1301, - 'x', 1274, - '|', 1451, + '>', 1167, + 'a', 1289, + 'b', 1278, + 'e', 1217, + 'h', 1253, + 'i', 1291, + 'l', 1279, + 'm', 1299, + 'n', 1303, + 'o', 1214, + 's', 1325, + 'x', 1298, + '|', 1480, ); if (lookahead == '\t' || lookahead == ' ') SKIP(28); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); END_STATE(); - case 1178: + case 1202: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1447, + '\n', 1476, '\r', 1, - '!', 1208, - '#', 2187, - '*', 1111, - '+', 1116, - '-', 1117, - '/', 1112, - '<', 1141, + '!', 1232, + '#', 2216, + '*', 1135, + '+', 1140, + '-', 1141, + '/', 1136, + '<', 1165, '=', 319, - '>', 1143, - 'a', 1265, - 'b', 1254, - 'e', 1196, - 'h', 1229, - 'i', 1267, - 'l', 1255, - 'm', 1275, - 'n', 1279, - 'o', 1198, - 's', 1301, - 'x', 1274, - '|', 1451, + '>', 1167, + 'a', 1289, + 'b', 1278, + 'e', 1220, + 'h', 1253, + 'i', 1291, + 'l', 1279, + 'm', 1299, + 'n', 1303, + 'o', 1222, + 's', 1325, + 'x', 1298, + '|', 1480, ); if (lookahead == '\t' || lookahead == ' ') SKIP(29); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); END_STATE(); - case 1179: + case 1203: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1208, - '#', 2187, - '*', 1111, - '+', 1116, - '-', 1117, - '.', 1593, - '/', 1112, - ':', 1712, - '<', 1141, + '!', 1232, + '#', 2216, + '*', 1135, + '+', 1140, + '-', 1141, + '.', 1622, + '/', 1136, + ':', 1741, + '<', 1165, '=', 319, - '>', 1143, - 'B', 1652, - 'E', 1218, - 'G', 1221, - 'K', 1221, - 'M', 1221, - 'P', 1221, - 'T', 1221, - 'a', 1265, - 'b', 1653, - 'd', 1227, - 'e', 1217, - 'g', 1220, - 'h', 1228, - 'i', 1267, - 'k', 1220, - 'l', 1255, - 'm', 1222, - 'n', 1278, - 'o', 1281, - 'p', 1220, - 's', 1241, - 't', 1220, - 'u', 1293, - 'w', 1261, - 'x', 1274, - 0xb5, 1293, + '>', 1167, + 'B', 1681, + 'E', 1242, + 'G', 1245, + 'K', 1245, + 'M', 1245, + 'P', 1245, + 'T', 1245, + 'a', 1289, + 'b', 1682, + 'd', 1251, + 'e', 1241, + 'g', 1244, + 'h', 1252, + 'i', 1291, + 'k', 1244, + 'l', 1279, + 'm', 1246, + 'n', 1302, + 'o', 1305, + 'p', 1244, + 's', 1265, + 't', 1244, + 'u', 1317, + 'w', 1285, + 'x', 1298, + 0xb5, 1317, ); if (lookahead == '\t' || lookahead == ' ') SKIP(266); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); END_STATE(); - case 1180: + case 1204: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1208, - '#', 2187, - '*', 1111, - '+', 1116, - '-', 1117, - '.', 1593, - '/', 1112, - '<', 1141, + '!', 1232, + '#', 2216, + '*', 1135, + '+', 1140, + '-', 1141, + '.', 1622, + '/', 1136, + '<', 1165, '=', 319, - '>', 1143, - 'B', 1652, - 'E', 1218, - 'G', 1221, - 'K', 1221, - 'M', 1221, - 'P', 1221, - 'T', 1221, - 'a', 1265, - 'b', 1653, - 'd', 1227, - 'e', 1217, - 'g', 1220, - 'h', 1228, - 'i', 1267, - 'k', 1220, - 'l', 1255, - 'm', 1222, - 'n', 1278, - 'o', 1281, - 'p', 1220, - 's', 1241, - 't', 1220, - 'u', 1293, - 'w', 1261, - 'x', 1274, - 0xb5, 1293, + '>', 1167, + 'B', 1681, + 'E', 1242, + 'G', 1245, + 'K', 1245, + 'M', 1245, + 'P', 1245, + 'T', 1245, + 'a', 1289, + 'b', 1682, + 'd', 1251, + 'e', 1241, + 'g', 1244, + 'h', 1252, + 'i', 1291, + 'k', 1244, + 'l', 1279, + 'm', 1246, + 'n', 1302, + 'o', 1305, + 'p', 1244, + 's', 1265, + 't', 1244, + 'u', 1317, + 'w', 1285, + 'x', 1298, + 0xb5, 1317, ); if (lookahead == '\t' || lookahead == ' ') SKIP(272); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); END_STATE(); - case 1181: + case 1205: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1208, - '#', 2187, - '*', 1111, - '+', 1116, - '-', 1117, - '/', 1112, - ':', 1712, - '<', 1141, + '!', 1232, + '#', 2216, + '*', 1135, + '+', 1140, + '-', 1141, + '/', 1136, + ':', 1741, + '<', 1165, '=', 319, - '>', 1143, - 'B', 1652, - 'E', 1218, - 'G', 1221, - 'K', 1221, - 'M', 1221, - 'P', 1221, - 'T', 1221, - '_', 1223, - 'a', 1265, - 'b', 1653, - 'd', 1227, - 'e', 1217, - 'g', 1220, - 'h', 1228, - 'i', 1267, - 'k', 1220, - 'l', 1255, - 'm', 1222, - 'n', 1278, - 'o', 1281, - 'p', 1220, - 's', 1241, - 't', 1220, - 'u', 1293, - 'w', 1261, - 'x', 1274, - 0xb5, 1293, + '>', 1167, + 'B', 1681, + 'E', 1242, + 'G', 1245, + 'K', 1245, + 'M', 1245, + 'P', 1245, + 'T', 1245, + '_', 1247, + 'a', 1289, + 'b', 1682, + 'd', 1251, + 'e', 1241, + 'g', 1244, + 'h', 1252, + 'i', 1291, + 'k', 1244, + 'l', 1279, + 'm', 1246, + 'n', 1302, + 'o', 1305, + 'p', 1244, + 's', 1265, + 't', 1244, + 'u', 1317, + 'w', 1285, + 'x', 1298, + 0xb5, 1317, ); if (lookahead == '\t' || lookahead == ' ') SKIP(266); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); END_STATE(); - case 1182: + case 1206: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1208, - '#', 2187, - '*', 1111, - '+', 1116, - '-', 1117, - '/', 1112, - ':', 1712, - '<', 1141, + '!', 1232, + '#', 2216, + '*', 1135, + '+', 1140, + '-', 1141, + '/', 1136, + ':', 1741, + '<', 1165, '=', 319, - '>', 1143, - 'B', 1652, - 'E', 1218, - 'G', 1221, - 'K', 1221, - 'M', 1221, - 'P', 1221, - 'T', 1221, - 'a', 1265, - 'b', 1653, - 'd', 1227, - 'e', 1217, - 'g', 1220, - 'h', 1228, - 'i', 1267, - 'k', 1220, - 'l', 1255, - 'm', 1222, - 'n', 1278, - 'o', 1281, - 'p', 1220, - 's', 1241, - 't', 1220, - 'u', 1293, - 'w', 1261, - 'x', 1274, - 0xb5, 1293, + '>', 1167, + 'B', 1681, + 'E', 1242, + 'G', 1245, + 'K', 1245, + 'M', 1245, + 'P', 1245, + 'T', 1245, + 'a', 1289, + 'b', 1682, + 'd', 1251, + 'e', 1241, + 'g', 1244, + 'h', 1252, + 'i', 1291, + 'k', 1244, + 'l', 1279, + 'm', 1246, + 'n', 1302, + 'o', 1305, + 'p', 1244, + 's', 1265, + 't', 1244, + 'u', 1317, + 'w', 1285, + 'x', 1298, + 0xb5, 1317, ); if (lookahead == '\t' || lookahead == ' ') SKIP(266); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); END_STATE(); - case 1183: + case 1207: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1208, - '#', 2187, - '*', 1111, - '+', 1116, - '-', 1117, - '/', 1112, - ':', 1712, - '<', 1141, + '!', 1232, + '#', 2216, + '*', 1135, + '+', 1140, + '-', 1141, + '/', 1136, + ':', 1741, + '<', 1165, '=', 319, - '>', 1143, - 'B', 1652, - 'E', 1221, - 'G', 1221, - 'K', 1221, - 'M', 1221, - 'P', 1221, - 'T', 1221, - 'a', 1265, - 'b', 1653, - 'd', 1227, - 'e', 1219, - 'g', 1220, - 'h', 1228, - 'i', 1267, - 'k', 1220, - 'l', 1255, - 'm', 1222, - 'n', 1278, - 'o', 1281, - 'p', 1220, - 's', 1241, - 't', 1220, - 'u', 1293, - 'w', 1261, - 'x', 1274, - 0xb5, 1293, + '>', 1167, + 'B', 1681, + 'E', 1245, + 'G', 1245, + 'K', 1245, + 'M', 1245, + 'P', 1245, + 'T', 1245, + 'a', 1289, + 'b', 1682, + 'd', 1251, + 'e', 1243, + 'g', 1244, + 'h', 1252, + 'i', 1291, + 'k', 1244, + 'l', 1279, + 'm', 1246, + 'n', 1302, + 'o', 1305, + 'p', 1244, + 's', 1265, + 't', 1244, + 'u', 1317, + 'w', 1285, + 'x', 1298, + 0xb5, 1317, ); if (lookahead == '\t' || lookahead == ' ') SKIP(266); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); END_STATE(); - case 1184: + case 1208: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1208, - '#', 2187, - '*', 1111, - '+', 1116, - '-', 1117, - '/', 1112, - '<', 1141, + '!', 1232, + '#', 2216, + '*', 1135, + '+', 1140, + '-', 1141, + '/', 1136, + '<', 1165, '=', 319, - '>', 1143, - 'B', 1652, - 'E', 1218, - 'G', 1221, - 'K', 1221, - 'M', 1221, - 'P', 1221, - 'T', 1221, - '_', 1223, - 'a', 1265, - 'b', 1653, - 'd', 1227, - 'e', 1217, - 'g', 1220, - 'h', 1228, - 'i', 1267, - 'k', 1220, - 'l', 1255, - 'm', 1222, - 'n', 1278, - 'o', 1281, - 'p', 1220, - 's', 1241, - 't', 1220, - 'u', 1293, - 'w', 1261, - 'x', 1274, - 0xb5, 1293, + '>', 1167, + 'B', 1681, + 'E', 1242, + 'G', 1245, + 'K', 1245, + 'M', 1245, + 'P', 1245, + 'T', 1245, + '_', 1247, + 'a', 1289, + 'b', 1682, + 'd', 1251, + 'e', 1241, + 'g', 1244, + 'h', 1252, + 'i', 1291, + 'k', 1244, + 'l', 1279, + 'm', 1246, + 'n', 1302, + 'o', 1305, + 'p', 1244, + 's', 1265, + 't', 1244, + 'u', 1317, + 'w', 1285, + 'x', 1298, + 0xb5, 1317, ); if (lookahead == '\t' || lookahead == ' ') SKIP(272); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); END_STATE(); - case 1185: + case 1209: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1208, - '#', 2187, - '*', 1111, - '+', 1116, - '-', 1117, - '/', 1112, - '<', 1141, + '!', 1232, + '#', 2216, + '*', 1135, + '+', 1140, + '-', 1141, + '/', 1136, + '<', 1165, '=', 319, - '>', 1143, - 'B', 1652, - 'E', 1218, - 'G', 1221, - 'K', 1221, - 'M', 1221, - 'P', 1221, - 'T', 1221, - 'a', 1265, - 'b', 1653, - 'd', 1227, - 'e', 1217, - 'g', 1220, - 'h', 1228, - 'i', 1267, - 'k', 1220, - 'l', 1255, - 'm', 1222, - 'n', 1278, - 'o', 1281, - 'p', 1220, - 's', 1241, - 't', 1220, - 'u', 1293, - 'w', 1261, - 'x', 1274, - 0xb5, 1293, + '>', 1167, + 'B', 1681, + 'E', 1242, + 'G', 1245, + 'K', 1245, + 'M', 1245, + 'P', 1245, + 'T', 1245, + 'a', 1289, + 'b', 1682, + 'd', 1251, + 'e', 1241, + 'g', 1244, + 'h', 1252, + 'i', 1291, + 'k', 1244, + 'l', 1279, + 'm', 1246, + 'n', 1302, + 'o', 1305, + 'p', 1244, + 's', 1265, + 't', 1244, + 'u', 1317, + 'w', 1285, + 'x', 1298, + 0xb5, 1317, ); if (lookahead == '\t' || lookahead == ' ') SKIP(272); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); END_STATE(); - case 1186: + case 1210: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1208, - '#', 2187, - '*', 1111, - '+', 1116, - '-', 1117, - '/', 1112, - '<', 1141, + '!', 1232, + '#', 2216, + '*', 1135, + '+', 1140, + '-', 1141, + '/', 1136, + '<', 1165, '=', 319, - '>', 1143, - 'B', 1652, - 'E', 1221, - 'G', 1221, - 'K', 1221, - 'M', 1221, - 'P', 1221, - 'T', 1221, - 'a', 1265, - 'b', 1653, - 'd', 1227, - 'e', 1219, - 'g', 1220, - 'h', 1228, - 'i', 1267, - 'k', 1220, - 'l', 1255, - 'm', 1222, - 'n', 1278, - 'o', 1281, - 'p', 1220, - 's', 1241, - 't', 1220, - 'u', 1293, - 'w', 1261, - 'x', 1274, - 0xb5, 1293, + '>', 1167, + 'B', 1681, + 'E', 1245, + 'G', 1245, + 'K', 1245, + 'M', 1245, + 'P', 1245, + 'T', 1245, + 'a', 1289, + 'b', 1682, + 'd', 1251, + 'e', 1243, + 'g', 1244, + 'h', 1252, + 'i', 1291, + 'k', 1244, + 'l', 1279, + 'm', 1246, + 'n', 1302, + 'o', 1305, + 'p', 1244, + 's', 1265, + 't', 1244, + 'u', 1317, + 'w', 1285, + 'x', 1298, + 0xb5, 1317, ); if (lookahead == '\t' || lookahead == ' ') SKIP(272); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); END_STATE(); - case 1187: + case 1211: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1208, - '#', 2187, - '*', 1111, - '+', 1116, - '-', 1117, - '/', 1112, - '<', 1141, + '!', 1232, + '#', 2216, + '*', 1135, + '+', 1140, + '-', 1141, + '/', 1136, + '<', 1165, '=', 319, - '>', 1143, - 'a', 1265, - 'b', 1254, - 'e', 1269, - 'h', 1229, - 'i', 1267, - 'l', 1255, - 'm', 1275, - 'n', 1279, - 'o', 1281, - 's', 1301, - 'x', 1274, + '>', 1167, + 'a', 1289, + 'b', 1278, + 'e', 1293, + 'h', 1253, + 'i', 1291, + 'l', 1279, + 'm', 1299, + 'n', 1303, + 'o', 1305, + 's', 1325, + 'x', 1298, ); if (lookahead == '\t' || lookahead == ' ') SKIP(272); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); END_STATE(); - case 1188: + case 1212: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '#') ADVANCE(2187); + if (lookahead == '#') ADVANCE(2216); if (lookahead == '\t' || lookahead == ' ') SKIP(272); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); - END_STATE(); - case 1189: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - '+', 1224, - '-', 1226, - '>', 1736, - 'I', 1321, - '_', 1226, - 'i', 1321, - 'n', 1239, - 'r', 1282, - 'B', 1652, - 'b', 1652, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); - END_STATE(); - case 1190: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1244); - if (lookahead == '>') ADVANCE(1738); - if (lookahead == 'r') ADVANCE(1129); - if (lookahead == 'u') ADVANCE(1303); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); - END_STATE(); - case 1191: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1273); - if (lookahead == '>') ADVANCE(1732); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); - END_STATE(); - case 1192: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - '+', 1272, - '>', 1736, - 'I', 1321, - 'i', 1321, - 'n', 1239, - 'r', 1282, - 'B', 1652, - 'b', 1652, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); - case 1193: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1272); - if (lookahead == '>') ADVANCE(1736); - if (lookahead == 'n') ADVANCE(1239); - if (lookahead == 'r') ADVANCE(1282); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); - END_STATE(); - case 1194: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1245); - if (lookahead == '>') ADVANCE(1734); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); - END_STATE(); - case 1195: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - '+', 1276, - '>', 517, - 'I', 1321, - 'i', 1321, - 'n', 1239, - 'r', 1287, - 'B', 1652, - 'b', 1652, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); - END_STATE(); - case 1196: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1276); - if (lookahead == '>') ADVANCE(517); - if (lookahead == 'n') ADVANCE(1239); - if (lookahead == 'r') ADVANCE(1287); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); - END_STATE(); - case 1197: + case 1213: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '+', 1225, - '-', 1226, - '>', 517, - 'I', 1321, - '_', 1226, - 'i', 1321, - 'n', 1239, - 'r', 1287, - 'B', 1652, - 'b', 1652, + '+', 1248, + '-', 1250, + '>', 1765, + 'I', 1345, + '_', 1250, + 'i', 1345, + 'n', 1263, + 'r', 1306, + 'B', 1681, + 'b', 1681, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); - END_STATE(); - case 1198: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1246); - if (lookahead == '>') ADVANCE(518); - if (lookahead == 'r') ADVANCE(1129); - if (lookahead == 'u') ADVANCE(1307); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); - END_STATE(); - case 1199: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1280); - if (lookahead == '>') ADVANCE(520); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); - END_STATE(); - case 1200: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1247); - if (lookahead == '>') ADVANCE(522); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); - END_STATE(); - case 1201: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '-') ADVANCE(1232); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); - END_STATE(); - case 1202: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '-') ADVANCE(1248); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); - END_STATE(); - case 1203: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '-') ADVANCE(1316); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); - 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(1322); - 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(1322); - 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(1322); - END_STATE(); - case 1207: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '.') ADVANCE(1592); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); - END_STATE(); - case 1208: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '=') ADVANCE(1139); - if (lookahead == '~') ADVANCE(1121); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); - END_STATE(); - case 1209: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(1746); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); - END_STATE(); - case 1210: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(1744); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); - END_STATE(); - case 1211: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(1740); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); - END_STATE(); - case 1212: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(1742); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); - END_STATE(); - case 1213: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(519); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1214: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(521); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == '+') ADVANCE(1268); + if (lookahead == '>') ADVANCE(1767); + if (lookahead == 'r') ADVANCE(1153); + if (lookahead == 'u') ADVANCE(1327); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1215: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(523); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == '+') ADVANCE(1297); + if (lookahead == '>') ADVANCE(1761); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1216: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(524); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + ADVANCE_MAP( + '+', 1296, + '>', 1765, + 'I', 1345, + 'i', 1345, + 'n', 1263, + 'r', 1306, + 'B', 1681, + 'b', 1681, + ); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1217: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - 'I', 1321, - '_', 1226, - 'i', 1321, - 'n', 1239, - '+', 1226, - '-', 1226, - 'B', 1652, - 'b', 1652, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == '+') ADVANCE(1296); + if (lookahead == '>') ADVANCE(1765); + if (lookahead == 'n') ADVANCE(1263); + if (lookahead == 'r') ADVANCE(1306); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1218: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'I') ADVANCE(1321); - if (lookahead == '_') ADVANCE(1226); - if (lookahead == 'i') ADVANCE(1234); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1226); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1652); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == '+') ADVANCE(1269); + if (lookahead == '>') ADVANCE(1763); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1219: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'I') ADVANCE(1321); - if (lookahead == 'i') ADVANCE(1321); - if (lookahead == 'n') ADVANCE(1239); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1652); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + ADVANCE_MAP( + '+', 1300, + '>', 528, + 'I', 1345, + 'i', 1345, + 'n', 1263, + 'r', 1311, + 'B', 1681, + 'b', 1681, + ); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1220: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'I') ADVANCE(1321); - if (lookahead == 'i') ADVANCE(1321); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1652); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == '+') ADVANCE(1300); + if (lookahead == '>') ADVANCE(528); + if (lookahead == 'n') ADVANCE(1263); + if (lookahead == 'r') ADVANCE(1311); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1221: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'I') ADVANCE(1321); - if (lookahead == 'i') ADVANCE(1234); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1652); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + ADVANCE_MAP( + '+', 1249, + '-', 1250, + '>', 528, + 'I', 1345, + '_', 1250, + 'i', 1345, + 'n', 1263, + 'r', 1311, + 'B', 1681, + 'b', 1681, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1222: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'I') ADVANCE(1321); - if (lookahead == 'i') ADVANCE(1266); - if (lookahead == 'o') ADVANCE(1237); - if (lookahead == 's') ADVANCE(1657); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1652); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == '+') ADVANCE(1270); + if (lookahead == '>') ADVANCE(529); + if (lookahead == 'r') ADVANCE(1153); + if (lookahead == 'u') ADVANCE(1331); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1223: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '_') ADVANCE(1223); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == '+') ADVANCE(1304); + if (lookahead == '>') ADVANCE(531); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1224: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '_') ADVANCE(1226); - if (lookahead == 'o') ADVANCE(1209); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == '+') ADVANCE(1271); + if (lookahead == '>') ADVANCE(533); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1225: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '_') ADVANCE(1226); - if (lookahead == 'o') ADVANCE(1213); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == '-') ADVANCE(1256); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1226: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '_') ADVANCE(1226); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == '-') ADVANCE(1272); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1227: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'a') ADVANCE(1320); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == '-') ADVANCE(1340); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1228: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'a') ADVANCE(1294); - if (lookahead == 'r') ADVANCE(1657); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == '-') ADVANCE(1341); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1229: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'a') ADVANCE(1294); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == '-') ADVANCE(1342); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1230: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'a') ADVANCE(1286); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == '-') ADVANCE(1343); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1231: 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(1322); + if (lookahead == '.') ADVANCE(1621); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1232: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'a') ADVANCE(1270); - if (lookahead == 'o') ADVANCE(1284); - if (lookahead == 's') ADVANCE(1249); - if (lookahead == 'x') ADVANCE(1277); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == '=') ADVANCE(1163); + if (lookahead == '~') ADVANCE(1145); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1233: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'a') ADVANCE(1292); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == '>') ADVANCE(1775); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1234: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'b') ADVANCE(1652); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == '>') ADVANCE(1773); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1235: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'c') ADVANCE(1657); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == '>') ADVANCE(1769); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1236: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'd') ADVANCE(1127); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == '>') ADVANCE(1771); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1237: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'd') ADVANCE(1114); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == '>') ADVANCE(530); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1238: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'd') ADVANCE(1124); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == '>') ADVANCE(532); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1239: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'd') ADVANCE(1296); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == '>') ADVANCE(534); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1240: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'd') ADVANCE(1298); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == '>') ADVANCE(535); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1241: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1235); - if (lookahead == 't') ADVANCE(1230); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + ADVANCE_MAP( + 'I', 1345, + '_', 1250, + 'i', 1345, + 'n', 1263, + '+', 1250, + '-', 1250, + 'B', 1681, + 'b', 1681, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1242: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1122); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == 'I') ADVANCE(1345); + if (lookahead == '_') ADVANCE(1250); + if (lookahead == 'i') ADVANCE(1258); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1250); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1681); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); 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(1322); + if (lookahead == 'I') ADVANCE(1345); + if (lookahead == 'i') ADVANCE(1345); + if (lookahead == 'n') ADVANCE(1263); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1681); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1244: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1210); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == 'I') ADVANCE(1345); + if (lookahead == 'i') ADVANCE(1345); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1681); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1245: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1289); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == 'I') ADVANCE(1345); + if (lookahead == 'i') ADVANCE(1258); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1681); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1246: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1214); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == 'I') ADVANCE(1345); + if (lookahead == 'i') ADVANCE(1290); + if (lookahead == 'o') ADVANCE(1261); + if (lookahead == 's') ADVANCE(1686); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1681); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1247: 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(1322); + if (lookahead == '_') ADVANCE(1247); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1248: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1271); - if (lookahead == 'h') ADVANCE(1231); - if (lookahead == 'i') ADVANCE(1268); - if (lookahead == 'l') ADVANCE(1260); - if (lookahead == 's') ADVANCE(1313); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == '_') ADVANCE(1250); + if (lookahead == 'o') ADVANCE(1233); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1249: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'h') ADVANCE(1264); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == '_') ADVANCE(1250); + if (lookahead == 'o') ADVANCE(1237); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1250: 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(1322); + if (lookahead == '_') ADVANCE(1250); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1251: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'h') ADVANCE(1134); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == 'a') ADVANCE(1344); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1252: 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(1322); + if (lookahead == 'a') ADVANCE(1318); + if (lookahead == 'r') ADVANCE(1686); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1253: 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(1322); + if (lookahead == 'a') ADVANCE(1318); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1254: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'i') ADVANCE(1300); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == 'a') ADVANCE(1310); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1255: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'i') ADVANCE(1262); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == 'a') ADVANCE(1319); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1256: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'i') ADVANCE(1304); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == 'a') ADVANCE(1294); + if (lookahead == 'o') ADVANCE(1308); + if (lookahead == 's') ADVANCE(1273); + if (lookahead == 'x') ADVANCE(1301); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1257: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'i') ADVANCE(1306); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == 'a') ADVANCE(1316); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1258: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'i') ADVANCE(1308); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == 'b') ADVANCE(1681); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); 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(1322); + if (lookahead == 'c') ADVANCE(1686); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1260: 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(1322); + if (lookahead == 'd') ADVANCE(1151); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1261: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'k') ADVANCE(1657); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == 'd') ADVANCE(1138); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1262: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'k') ADVANCE(1242); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == 'd') ADVANCE(1148); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); 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(1322); + if (lookahead == 'd') ADVANCE(1320); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1264: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'l') ADVANCE(1118); - if (lookahead == 'r') ADVANCE(1119); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == 'd') ADVANCE(1322); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1265: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'n') ADVANCE(1236); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == 'e') ADVANCE(1259); + if (lookahead == 't') ADVANCE(1254); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1266: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'n') ADVANCE(1657); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1652); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == 'e') ADVANCE(1146); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1267: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'n') ADVANCE(1130); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == 'e') ADVANCE(1147); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); 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(1322); + if (lookahead == 'e') ADVANCE(1234); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1269: 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(1322); + if (lookahead == 'e') ADVANCE(1313); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1270: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'n') ADVANCE(1238); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == 'e') ADVANCE(1238); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1271: 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(1322); + if (lookahead == 'e') ADVANCE(1314); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1272: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1209); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == 'e') ADVANCE(1295); + if (lookahead == 'h') ADVANCE(1255); + if (lookahead == 'i') ADVANCE(1292); + if (lookahead == 'l') ADVANCE(1284); + if (lookahead == 's') ADVANCE(1337); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1273: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1314); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == 'h') ADVANCE(1288); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1274: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1283); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == 'h') ADVANCE(1160); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1275: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1237); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == 'h') ADVANCE(1158); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1276: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1213); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == 'h') ADVANCE(1161); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1277: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1285); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == 'h') ADVANCE(1159); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1278: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1302); - if (lookahead == 's') ADVANCE(1657); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == 'i') ADVANCE(1324); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1279: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1302); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == 'i') ADVANCE(1286); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1280: 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(1322); + if (lookahead == 'i') ADVANCE(1328); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1281: 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(1322); + if (lookahead == 'i') ADVANCE(1330); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1282: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1191); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == 'i') ADVANCE(1332); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1283: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1128); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == 'i') ADVANCE(1333); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1284: 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(1322); + if (lookahead == 'i') ADVANCE(1287); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1285: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1125); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == 'k') ADVANCE(1686); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1286: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1311); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == 'k') ADVANCE(1266); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1287: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1199); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == 'k') ADVANCE(1267); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1288: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1212); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == 'l') ADVANCE(1142); + if (lookahead == 'r') ADVANCE(1143); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1289: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1288); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == 'n') ADVANCE(1260); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1290: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1291); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == 'n') ADVANCE(1686); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1681); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1291: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1216); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == 'n') ADVANCE(1154); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1292: 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(1322); + if (lookahead == 'n') ADVANCE(1155); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1293: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 's') ADVANCE(1657); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == 'n') ADVANCE(1263); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1294: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 's') ADVANCE(1132); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == 'n') ADVANCE(1262); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); 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(1322); + if (lookahead == 'n') ADVANCE(1264); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1296: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 's') ADVANCE(1203); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == 'o') ADVANCE(1233); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); 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(1322); + if (lookahead == 'o') ADVANCE(1338); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); 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(1322); + if (lookahead == 'o') ADVANCE(1307); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); 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(1322); + if (lookahead == 'o') ADVANCE(1261); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1300: 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(1322); + if (lookahead == 'o') ADVANCE(1237); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1301: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1230); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == 'o') ADVANCE(1309); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1302: 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(1322); + if (lookahead == 'o') ADVANCE(1326); + if (lookahead == 's') ADVANCE(1686); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1303: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1194); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == 'o') ADVANCE(1326); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1304: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1250); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == 'o') ADVANCE(1339); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1305: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1211); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == 'r') ADVANCE(1153); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1306: 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(1322); + if (lookahead == 'r') ADVANCE(1215); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1307: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1200); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == 'r') ADVANCE(1152); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1308: 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(1322); + if (lookahead == 'r') ADVANCE(1150); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); 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(1322); + if (lookahead == 'r') ADVANCE(1149); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1310: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1215); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == 'r') ADVANCE(1335); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1311: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1297); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == 'r') ADVANCE(1223); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1312: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1299); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == 'r') ADVANCE(1236); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1313: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1233); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == 'r') ADVANCE(1312); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1314: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'u') ADVANCE(1305); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == 'r') ADVANCE(1315); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1315: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'u') ADVANCE(1310); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == 'r') ADVANCE(1240); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1316: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'w') ADVANCE(1256); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == 'r') ADVANCE(1336); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); 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(1322); + if (lookahead == 's') ADVANCE(1686); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); 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(1322); + if (lookahead == 's') ADVANCE(1156); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); 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(1322); + if (lookahead == 's') ADVANCE(1157); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1320: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'y') ADVANCE(1657); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == 's') ADVANCE(1227); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1321: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1652); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == 's') ADVANCE(1228); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1322: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); + if (lookahead == 's') ADVANCE(1229); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1323: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(660); - ADVANCE_MAP( - '\n', 1447, - '\r', 1, - '!', 1208, - '#', 2187, - '*', 1111, - '+', 1116, - '-', 1117, - '.', 1207, - '/', 1112, - ';', 1450, - '<', 1141, - '=', 319, - '>', 1143, - 'B', 1652, - 'E', 1218, - 'G', 1221, - 'K', 1221, - 'M', 1221, - 'P', 1221, - 'T', 1221, - '_', 1223, - 'a', 1265, - 'b', 1653, - 'd', 1227, - 'e', 1189, - 'g', 1220, - 'h', 1228, - 'i', 1267, - 'k', 1220, - 'l', 1255, - 'm', 1222, - 'n', 1278, - 'o', 1190, - 'p', 1220, - 's', 1241, - 't', 1220, - 'u', 1293, - 'w', 1261, - 'x', 1274, - '|', 1451, - 0xb5, 1293, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(618); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); + if (lookahead == 's') ADVANCE(1230); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1324: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(660); - ADVANCE_MAP( - '\n', 1447, - '\r', 1, - '!', 1208, - '#', 2187, - '*', 1111, - '+', 1116, - '-', 1117, - '.', 1207, - '/', 1112, - ';', 1450, - '<', 1141, - '=', 319, - '>', 1143, - 'B', 1652, - 'E', 1218, - 'G', 1221, - 'K', 1221, - 'M', 1221, - 'P', 1221, - 'T', 1221, - '_', 1223, - 'a', 1265, - 'b', 1653, - 'd', 1227, - 'e', 1197, - 'g', 1220, - 'h', 1228, - 'i', 1267, - 'k', 1220, - 'l', 1255, - 'm', 1222, - 'n', 1278, - 'o', 1198, - 'p', 1220, - 's', 1241, - 't', 1220, - 'u', 1293, - 'w', 1261, - 'x', 1274, - '|', 1451, - 0xb5, 1293, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); + if (lookahead == 't') ADVANCE(1225); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1325: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(660); - ADVANCE_MAP( - '\n', 1447, - '\r', 1, - '!', 1208, - '#', 2187, - '*', 1111, - '+', 1116, - '-', 1117, - '.', 1207, - '/', 1112, - ';', 1450, - '<', 1141, - '=', 319, - '>', 1143, - 'B', 1652, - 'E', 1218, - 'G', 1221, - 'K', 1221, - 'M', 1221, - 'P', 1221, - 'T', 1221, - 'a', 1265, - 'b', 1653, - 'd', 1227, - 'e', 1189, - 'g', 1220, - 'h', 1228, - 'i', 1267, - 'k', 1220, - 'l', 1255, - 'm', 1222, - 'n', 1278, - 'o', 1190, - 'p', 1220, - 's', 1241, - 't', 1220, - 'u', 1293, - 'w', 1261, - 'x', 1274, - '|', 1451, - 0xb5, 1293, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(618); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); + if (lookahead == 't') ADVANCE(1254); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1326: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(660); - ADVANCE_MAP( - '\n', 1447, - '\r', 1, - '!', 1208, - '#', 2187, - '*', 1111, - '+', 1116, - '-', 1117, - '.', 1207, - '/', 1112, - ';', 1450, - '<', 1141, - '=', 319, - '>', 1143, - 'B', 1652, - 'E', 1218, - 'G', 1221, - 'K', 1221, - 'M', 1221, - 'P', 1221, - 'T', 1221, - 'a', 1265, - 'b', 1653, - 'd', 1227, - 'e', 1197, - 'g', 1220, - 'h', 1228, - 'i', 1267, - 'k', 1220, - 'l', 1255, - 'm', 1222, - 'n', 1278, - 'o', 1198, - 'p', 1220, - 's', 1241, - 't', 1220, - 'u', 1293, - 'w', 1261, - 'x', 1274, - '|', 1451, - 0xb5, 1293, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); + if (lookahead == 't') ADVANCE(1226); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1327: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(660); - ADVANCE_MAP( - '\n', 1447, - '\r', 1, - '!', 1208, - '#', 2187, - '*', 1111, - '+', 1116, - '-', 1117, - '.', 1207, - '/', 1112, - ';', 1450, - '<', 1141, - '=', 319, - '>', 1143, - 'B', 1652, - 'E', 1221, - 'G', 1221, - 'K', 1221, - 'M', 1221, - 'P', 1221, - 'T', 1221, - 'a', 1265, - 'b', 1653, - 'd', 1227, - 'e', 1192, - 'g', 1220, - 'h', 1228, - 'i', 1267, - 'k', 1220, - 'l', 1255, - 'm', 1222, - 'n', 1278, - 'o', 1190, - 'p', 1220, - 's', 1241, - 't', 1220, - 'u', 1293, - 'w', 1261, - 'x', 1274, - '|', 1451, - 0xb5, 1293, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(618); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); + if (lookahead == 't') ADVANCE(1218); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1328: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(660); - ADVANCE_MAP( - '\n', 1447, - '\r', 1, - '!', 1208, - '#', 2187, - '*', 1111, - '+', 1116, - '-', 1117, - '.', 1207, - '/', 1112, - ';', 1450, - '<', 1141, - '=', 319, - '>', 1143, - 'B', 1652, - 'E', 1221, - 'G', 1221, - 'K', 1221, - 'M', 1221, - 'P', 1221, - 'T', 1221, - 'a', 1265, - 'b', 1653, - 'd', 1227, - 'e', 1195, - 'g', 1220, - 'h', 1228, - 'i', 1267, - 'k', 1220, - 'l', 1255, - 'm', 1222, - 'n', 1278, - 'o', 1198, - 'p', 1220, - 's', 1241, - 't', 1220, - 'u', 1293, - 'w', 1261, - 'x', 1274, - '|', 1451, - 0xb5, 1293, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); + if (lookahead == 't') ADVANCE(1274); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1329: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(660); - ADVANCE_MAP( - '\n', 1447, - '\r', 1, - '!', 1208, - '#', 2187, - '*', 1111, - '+', 1116, - '-', 1117, - '.', 1594, - '/', 1112, - ';', 1450, - '<', 1141, - '=', 319, - '>', 1143, - 'B', 1652, - 'E', 1218, - 'G', 1221, - 'K', 1221, - 'M', 1221, - 'P', 1221, - 'T', 1221, - 'a', 1265, - 'b', 1653, - 'd', 1227, - 'e', 1189, - 'g', 1220, - 'h', 1228, - 'i', 1267, - 'k', 1220, - 'l', 1255, - 'm', 1222, - 'n', 1278, - 'o', 1190, - 'p', 1220, - 's', 1241, - 't', 1220, - 'u', 1293, - 'w', 1261, - 'x', 1274, - '|', 1451, - 0xb5, 1293, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(618); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); + if (lookahead == 't') ADVANCE(1235); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1330: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(660); - ADVANCE_MAP( - '\n', 1447, - '\r', 1, - '!', 1208, - '#', 2187, - '*', 1111, - '+', 1116, - '-', 1117, - '.', 1594, - '/', 1112, - ';', 1450, - '<', 1141, - '=', 319, - '>', 1143, - 'B', 1652, - 'E', 1218, - 'G', 1221, - 'K', 1221, - 'M', 1221, - 'P', 1221, - 'T', 1221, - 'a', 1265, - 'b', 1653, - 'd', 1227, - 'e', 1197, - 'g', 1220, - 'h', 1228, - 'i', 1267, - 'k', 1220, - 'l', 1255, - 'm', 1222, - 'n', 1278, - 'o', 1198, - 'p', 1220, - 's', 1241, - 't', 1220, - 'u', 1293, - 'w', 1261, - 'x', 1274, - '|', 1451, - 0xb5, 1293, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); + if (lookahead == 't') ADVANCE(1275); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1331: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(660); - ADVANCE_MAP( - '\n', 1447, - '\r', 1, - '!', 1208, - '#', 2187, - '*', 1111, - '+', 1116, - '-', 1117, - '/', 1112, - ';', 1450, - '<', 1141, - '=', 319, - '>', 1143, - 'a', 1265, - 'b', 1254, - 'e', 1193, - 'h', 1229, - 'i', 1267, - 'l', 1255, - 'm', 1275, - 'n', 1279, - 'o', 1190, - 's', 1301, - 'x', 1274, - '|', 1451, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(618); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); + if (lookahead == 't') ADVANCE(1224); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1332: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(660); - ADVANCE_MAP( - '\n', 1447, - '\r', 1, - '!', 1208, - '#', 2187, - '*', 1111, - '+', 1116, - '-', 1117, - '/', 1112, - ';', 1450, - '<', 1141, - '=', 319, - '>', 1143, - 'a', 1265, - 'b', 1254, - 'e', 1196, - 'h', 1229, - 'i', 1267, - 'l', 1255, - 'm', 1275, - 'n', 1279, - 'o', 1198, - 's', 1301, - 'x', 1274, - '|', 1451, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); + if (lookahead == 't') ADVANCE(1276); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1333: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(1345); - if (lookahead == '-') ADVANCE(1973); - if (lookahead == 'I') ADVANCE(1371); - if (lookahead == '_') ADVANCE(1345); - if (lookahead == 'i') ADVANCE(1371); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (lookahead == 't') ADVANCE(1277); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1334: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(1345); - if (lookahead == '-') ADVANCE(1973); - if (lookahead == 'I') ADVANCE(1371); - if (lookahead == '_') ADVANCE(1345); - if (lookahead == 'i') ADVANCE(1348); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (lookahead == 't') ADVANCE(1239); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1335: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(1345); - if (lookahead == '-') ADVANCE(1973); - if (lookahead == '_') ADVANCE(1345); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (lookahead == 't') ADVANCE(1321); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1336: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(443); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (lookahead == 't') ADVANCE(1323); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1337: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(356); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (lookahead == 't') ADVANCE(1257); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1338: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(427); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (lookahead == 'u') ADVANCE(1329); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1339: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(444); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (lookahead == 'u') ADVANCE(1334); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1340: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(511); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (lookahead == 'w') ADVANCE(1280); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1341: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(1371); - if (lookahead == 'i') ADVANCE(1371); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (lookahead == 'w') ADVANCE(1281); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1342: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(1371); - if (lookahead == 'i') ADVANCE(1348); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (lookahead == 'w') ADVANCE(1282); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1343: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(1371); - if (lookahead == 'i') ADVANCE(1359); - if (lookahead == 's') ADVANCE(1659); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (lookahead == 'w') ADVANCE(1283); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1344: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(1344); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (lookahead == 'y') ADVANCE(1686); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1345: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(1345); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1681); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1346: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(1366); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1346); END_STATE(); case 1347: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(1370); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (eof) ADVANCE(671); + ADVANCE_MAP( + '\n', 1476, + '\r', 1, + '!', 1232, + '#', 2216, + '*', 1135, + '+', 1140, + '-', 1141, + '.', 1231, + '/', 1136, + ';', 1479, + '<', 1165, + '=', 319, + '>', 1167, + 'B', 1681, + 'E', 1242, + 'G', 1245, + 'K', 1245, + 'M', 1245, + 'P', 1245, + 'T', 1245, + '_', 1247, + 'a', 1289, + 'b', 1682, + 'd', 1251, + 'e', 1213, + 'g', 1244, + 'h', 1252, + 'i', 1291, + 'k', 1244, + 'l', 1279, + 'm', 1246, + 'n', 1302, + 'o', 1214, + 'p', 1244, + 's', 1265, + 't', 1244, + 'u', 1317, + 'w', 1285, + 'x', 1298, + '|', 1480, + 0xb5, 1317, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(629); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); END_STATE(); case 1348: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'b') ADVANCE(1656); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (eof) ADVANCE(671); + ADVANCE_MAP( + '\n', 1476, + '\r', 1, + '!', 1232, + '#', 2216, + '*', 1135, + '+', 1140, + '-', 1141, + '.', 1231, + '/', 1136, + ';', 1479, + '<', 1165, + '=', 319, + '>', 1167, + 'B', 1681, + 'E', 1242, + 'G', 1245, + 'K', 1245, + 'M', 1245, + 'P', 1245, + 'T', 1245, + '_', 1247, + 'a', 1289, + 'b', 1682, + 'd', 1251, + 'e', 1221, + 'g', 1244, + 'h', 1252, + 'i', 1291, + 'k', 1244, + 'l', 1279, + 'm', 1246, + 'n', 1302, + 'o', 1222, + 'p', 1244, + 's', 1265, + 't', 1244, + 'u', 1317, + 'w', 1285, + 'x', 1298, + '|', 1480, + 0xb5, 1317, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(630); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); END_STATE(); case 1349: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(1659); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (eof) ADVANCE(671); + ADVANCE_MAP( + '\n', 1476, + '\r', 1, + '!', 1232, + '#', 2216, + '*', 1135, + '+', 1140, + '-', 1141, + '.', 1231, + '/', 1136, + ';', 1479, + '<', 1165, + '=', 319, + '>', 1167, + 'B', 1681, + 'E', 1242, + 'G', 1245, + 'K', 1245, + 'M', 1245, + 'P', 1245, + 'T', 1245, + 'a', 1289, + 'b', 1682, + 'd', 1251, + 'e', 1213, + 'g', 1244, + 'h', 1252, + 'i', 1291, + 'k', 1244, + 'l', 1279, + 'm', 1246, + 'n', 1302, + 'o', 1214, + 'p', 1244, + 's', 1265, + 't', 1244, + 'u', 1317, + 'w', 1285, + 'x', 1298, + '|', 1480, + 0xb5, 1317, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(629); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); END_STATE(); case 1350: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(1354); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (eof) ADVANCE(671); + ADVANCE_MAP( + '\n', 1476, + '\r', 1, + '!', 1232, + '#', 2216, + '*', 1135, + '+', 1140, + '-', 1141, + '.', 1231, + '/', 1136, + ';', 1479, + '<', 1165, + '=', 319, + '>', 1167, + 'B', 1681, + 'E', 1242, + 'G', 1245, + 'K', 1245, + 'M', 1245, + 'P', 1245, + 'T', 1245, + 'a', 1289, + 'b', 1682, + 'd', 1251, + 'e', 1221, + 'g', 1244, + 'h', 1252, + 'i', 1291, + 'k', 1244, + 'l', 1279, + 'm', 1246, + 'n', 1302, + 'o', 1222, + 'p', 1244, + 's', 1265, + 't', 1244, + 'u', 1317, + 'w', 1285, + 'x', 1298, + '|', 1480, + 0xb5, 1317, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(630); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); END_STATE(); case 1351: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(1338); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (eof) ADVANCE(671); + ADVANCE_MAP( + '\n', 1476, + '\r', 1, + '!', 1232, + '#', 2216, + '*', 1135, + '+', 1140, + '-', 1141, + '.', 1231, + '/', 1136, + ';', 1479, + '<', 1165, + '=', 319, + '>', 1167, + 'B', 1681, + 'E', 1245, + 'G', 1245, + 'K', 1245, + 'M', 1245, + 'P', 1245, + 'T', 1245, + 'a', 1289, + 'b', 1682, + 'd', 1251, + 'e', 1216, + 'g', 1244, + 'h', 1252, + 'i', 1291, + 'k', 1244, + 'l', 1279, + 'm', 1246, + 'n', 1302, + 'o', 1214, + 'p', 1244, + 's', 1265, + 't', 1244, + 'u', 1317, + 'w', 1285, + 'x', 1298, + '|', 1480, + 0xb5, 1317, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(629); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); END_STATE(); case 1352: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(1349); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (eof) ADVANCE(671); + ADVANCE_MAP( + '\n', 1476, + '\r', 1, + '!', 1232, + '#', 2216, + '*', 1135, + '+', 1140, + '-', 1141, + '.', 1231, + '/', 1136, + ';', 1479, + '<', 1165, + '=', 319, + '>', 1167, + 'B', 1681, + 'E', 1245, + 'G', 1245, + 'K', 1245, + 'M', 1245, + 'P', 1245, + 'T', 1245, + 'a', 1289, + 'b', 1682, + 'd', 1251, + 'e', 1219, + 'g', 1244, + 'h', 1252, + 'i', 1291, + 'k', 1244, + 'l', 1279, + 'm', 1246, + 'n', 1302, + 'o', 1222, + 'p', 1244, + 's', 1265, + 't', 1244, + 'u', 1317, + 'w', 1285, + 'x', 1298, + '|', 1480, + 0xb5, 1317, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(630); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); END_STATE(); case 1353: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'k') ADVANCE(1659); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (eof) ADVANCE(671); + ADVANCE_MAP( + '\n', 1476, + '\r', 1, + '!', 1232, + '#', 2216, + '*', 1135, + '+', 1140, + '-', 1141, + '.', 1623, + '/', 1136, + ';', 1479, + '<', 1165, + '=', 319, + '>', 1167, + 'B', 1681, + 'E', 1242, + 'G', 1245, + 'K', 1245, + 'M', 1245, + 'P', 1245, + 'T', 1245, + 'a', 1289, + 'b', 1682, + 'd', 1251, + 'e', 1213, + 'g', 1244, + 'h', 1252, + 'i', 1291, + 'k', 1244, + 'l', 1279, + 'm', 1246, + 'n', 1302, + 'o', 1214, + 'p', 1244, + 's', 1265, + 't', 1244, + 'u', 1317, + 'w', 1285, + 'x', 1298, + '|', 1480, + 0xb5, 1317, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(629); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); END_STATE(); case 1354: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(1355); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (eof) ADVANCE(671); + ADVANCE_MAP( + '\n', 1476, + '\r', 1, + '!', 1232, + '#', 2216, + '*', 1135, + '+', 1140, + '-', 1141, + '.', 1623, + '/', 1136, + ';', 1479, + '<', 1165, + '=', 319, + '>', 1167, + 'B', 1681, + 'E', 1242, + 'G', 1245, + 'K', 1245, + 'M', 1245, + 'P', 1245, + 'T', 1245, + 'a', 1289, + 'b', 1682, + 'd', 1251, + 'e', 1221, + 'g', 1244, + 'h', 1252, + 'i', 1291, + 'k', 1244, + 'l', 1279, + 'm', 1246, + 'n', 1302, + 'o', 1222, + 'p', 1244, + 's', 1265, + 't', 1244, + 'u', 1317, + 'w', 1285, + 'x', 1298, + '|', 1480, + 0xb5, 1317, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(630); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); END_STATE(); case 1355: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(1336); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (eof) ADVANCE(671); + ADVANCE_MAP( + '\n', 1476, + '\r', 1, + '!', 1232, + '#', 2216, + '*', 1135, + '+', 1140, + '-', 1141, + '/', 1136, + ';', 1479, + '<', 1165, + '=', 319, + '>', 1167, + 'a', 1289, + 'b', 1278, + 'e', 1217, + 'h', 1253, + 'i', 1291, + 'l', 1279, + 'm', 1299, + 'n', 1303, + 'o', 1214, + 's', 1325, + 'x', 1298, + '|', 1480, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(629); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); 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(1372); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (eof) ADVANCE(671); + ADVANCE_MAP( + '\n', 1476, + '\r', 1, + '!', 1232, + '#', 2216, + '*', 1135, + '+', 1140, + '-', 1141, + '/', 1136, + ';', 1479, + '<', 1165, + '=', 319, + '>', 1167, + 'a', 1289, + 'b', 1278, + 'e', 1220, + 'h', 1253, + 'i', 1291, + 'l', 1279, + 'm', 1299, + 'n', 1303, + 'o', 1222, + 's', 1325, + 'x', 1298, + '|', 1480, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(630); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1346); END_STATE(); case 1357: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(1356); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); + if (lookahead == '+') ADVANCE(1369); + if (lookahead == '-') ADVANCE(2002); + if (lookahead == 'I') ADVANCE(1395); + if (lookahead == '_') ADVANCE(1369); + if (lookahead == 'i') ADVANCE(1395); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1685); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); END_STATE(); case 1358: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'm') ADVANCE(1363); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); + if (lookahead == '+') ADVANCE(1369); + if (lookahead == '-') ADVANCE(2002); + if (lookahead == 'I') ADVANCE(1395); + if (lookahead == '_') ADVANCE(1369); + if (lookahead == 'i') ADVANCE(1372); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1685); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); END_STATE(); case 1359: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(1659); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); + if (lookahead == '+') ADVANCE(1369); + if (lookahead == '-') ADVANCE(2002); + if (lookahead == '_') ADVANCE(1369); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); END_STATE(); case 1360: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(1086); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); + if (lookahead == '-') ADVANCE(452); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); END_STATE(); case 1361: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(1351); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); + if (lookahead == '-') ADVANCE(360); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); END_STATE(); case 1362: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(1364); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); + if (lookahead == '-') ADVANCE(436); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); END_STATE(); case 1363: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(1362); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); + if (lookahead == '-') ADVANCE(453); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); END_STATE(); case 1364: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(1368); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); + if (lookahead == '-') ADVANCE(521); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); END_STATE(); case 1365: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(1659); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); + if (lookahead == 'I') ADVANCE(1395); + if (lookahead == 'i') ADVANCE(1395); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1685); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); END_STATE(); case 1366: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(1340); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); + if (lookahead == 'I') ADVANCE(1395); + if (lookahead == 'i') ADVANCE(1372); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1685); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); END_STATE(); case 1367: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(1659); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); + if (lookahead == 'I') ADVANCE(1395); + if (lookahead == 'i') ADVANCE(1383); + if (lookahead == 's') ADVANCE(1688); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1685); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); END_STATE(); case 1368: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(1339); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); + if (lookahead == '_') ADVANCE(1368); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1638); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); END_STATE(); case 1369: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(1357); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); + if (lookahead == '_') ADVANCE(1369); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); END_STATE(); case 1370: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'y') ADVANCE(1659); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); + if (lookahead == 'a') ADVANCE(1390); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); END_STATE(); case 1371: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); + if (lookahead == 'a') ADVANCE(1394); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); END_STATE(); case 1372: ACCEPT_TOKEN(sym_identifier); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); + if (lookahead == 'b') ADVANCE(1685); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); END_STATE(); case 1373: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(433); - if (lookahead == '>') ADVANCE(517); - if (lookahead == 'r') ADVANCE(1418); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'c') ADVANCE(1688); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); END_STATE(); case 1374: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(375); - if (lookahead == '>') ADVANCE(518); - if (lookahead == 'u') ADVANCE(1431); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(1378); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); END_STATE(); case 1375: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(438); - if (lookahead == '>') ADVANCE(520); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(1362); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); END_STATE(); case 1376: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(379); - if (lookahead == '>') ADVANCE(522); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(1373); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); END_STATE(); case 1377: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N') ADVANCE(1438); - if (lookahead == 'f') ADVANCE(1068); - if (lookahead == 'n') ADVANCE(1085); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'k') ADVANCE(1688); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); END_STATE(); case 1378: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(1378); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1378); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(1379); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); END_STATE(); case 1379: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(1426); - if (lookahead == 'o') ADVANCE(1411); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(1360); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); END_STATE(); case 1380: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(1408); - if (lookahead == 'o') ADVANCE(1417); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(1361); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); END_STATE(); case 1381: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(1421); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(1380); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); END_STATE(); case 1382: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(1432); - if (lookahead == 'o') ADVANCE(1385); - if (lookahead == 'u') ADVANCE(1428); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'm') ADVANCE(1387); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); END_STATE(); case 1383: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'c') ADVANCE(1397); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(1688); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1685); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); 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(1446); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(1110); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); END_STATE(); case 1385: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'd') ADVANCE(1435); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(1375); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); END_STATE(); case 1386: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1396); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(1388); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); END_STATE(); case 1387: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1047); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'p') ADVANCE(1386); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); END_STATE(); case 1388: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1071); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(1392); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); END_STATE(); case 1389: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1089); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(1688); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); END_STATE(); case 1390: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1092); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(1364); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); END_STATE(); case 1391: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1065); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(1688); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); END_STATE(); case 1392: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1056); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(1363); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); END_STATE(); case 1393: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1427); - if (lookahead == 'o') ADVANCE(1412); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'u') ADVANCE(1381); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); END_STATE(); case 1394: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1410); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'y') ADVANCE(1688); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); END_STATE(); case 1395: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1419); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1685); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); END_STATE(); case 1396: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'f') ADVANCE(825); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + ACCEPT_TOKEN(sym_identifier); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); END_STATE(); case 1397: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'h') ADVANCE(1077); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + if (lookahead == '+') ADVANCE(442); + if (lookahead == '>') ADVANCE(528); + if (lookahead == 'r') ADVANCE(1446); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); END_STATE(); case 1398: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'h') ADVANCE(1080); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + if (lookahead == '+') ADVANCE(380); + if (lookahead == '>') ADVANCE(529); + if (lookahead == 'u') ADVANCE(1459); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); END_STATE(); case 1399: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'h') ADVANCE(1401); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + if (lookahead == '+') ADVANCE(447); + if (lookahead == '>') ADVANCE(531); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); END_STATE(); case 1400: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(1381); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + if (lookahead == '+') ADVANCE(383); + if (lookahead == '>') ADVANCE(533); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); END_STATE(); case 1401: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(1405); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + if (lookahead == 'N') ADVANCE(1467); + if (lookahead == 'f') ADVANCE(1089); + if (lookahead == 'n') ADVANCE(1109); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); END_STATE(); case 1402: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1400); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + if (lookahead == '_') ADVANCE(1402); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1402); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); END_STATE(); case 1403: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1095); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + if (lookahead == 'a') ADVANCE(1454); + if (lookahead == 'o') ADVANCE(1438); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); END_STATE(); case 1404: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1403); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + if (lookahead == 'a') ADVANCE(1435); + if (lookahead == 'i') ADVANCE(1439); + if (lookahead == 'o') ADVANCE(1445); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); END_STATE(); case 1405: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1391); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + if (lookahead == 'a') ADVANCE(1449); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); 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(1446); + if (lookahead == 'a') ADVANCE(1431); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); END_STATE(); case 1407: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1423); - if (lookahead == 'x') ADVANCE(1415); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + if (lookahead == 'a') ADVANCE(1460); + if (lookahead == 'o') ADVANCE(1410); + if (lookahead == 'u') ADVANCE(1456); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); END_STATE(); case 1408: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1425); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + if (lookahead == 'c') ADVANCE(1422); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); END_STATE(); case 1409: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(1053); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + if (lookahead == 'c') ADVANCE(1423); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); END_STATE(); case 1410: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(1436); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + if (lookahead == 'd') ADVANCE(1463); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); END_STATE(); case 1411: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(1424); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + if (lookahead == 'e') ADVANCE(1421); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); END_STATE(); case 1412: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(1414); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + if (lookahead == 'e') ADVANCE(1068); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); END_STATE(); case 1413: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(1420); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + if (lookahead == 'e') ADVANCE(1092); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); END_STATE(); case 1414: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'p') ADVANCE(1062); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + if (lookahead == 'e') ADVANCE(1113); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); END_STATE(); case 1415: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'p') ADVANCE(1413); - if (lookahead == 't') ADVANCE(1395); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + if (lookahead == 'e') ADVANCE(1116); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); END_STATE(); case 1416: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1434); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + if (lookahead == 'e') ADVANCE(1086); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); END_STATE(); case 1417: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1059); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + if (lookahead == 'e') ADVANCE(1077); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); END_STATE(); case 1418: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1375); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + if (lookahead == 'e') ADVANCE(1455); + if (lookahead == 'o') ADVANCE(1440); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); END_STATE(); case 1419: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1409); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + if (lookahead == 'e') ADVANCE(1447); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); END_STATE(); case 1420: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1430); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + if (lookahead == 'e') ADVANCE(1437); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); END_STATE(); case 1421: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(670); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + if (lookahead == 'f') ADVANCE(841); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); END_STATE(); case 1422: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(1387); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + if (lookahead == 'h') ADVANCE(1098); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); 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(1446); + if (lookahead == 'h') ADVANCE(1104); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); END_STATE(); case 1424: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(1429); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + if (lookahead == 'h') ADVANCE(1426); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); END_STATE(); case 1425: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(1390); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + if (lookahead == 'i') ADVANCE(1405); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); END_STATE(); case 1426: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(1383); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + if (lookahead == 'i') ADVANCE(1432); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); END_STATE(); case 1427: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(676); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + if (lookahead == 'l') ADVANCE(1425); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); END_STATE(); case 1428: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(679); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + if (lookahead == 'l') ADVANCE(1119); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); END_STATE(); case 1429: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(682); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + if (lookahead == 'l') ADVANCE(1465); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); END_STATE(); case 1430: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(666); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + if (lookahead == 'l') ADVANCE(1428); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); END_STATE(); case 1431: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(1376); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + if (lookahead == 'l') ADVANCE(1429); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); END_STATE(); case 1432: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(1384); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + if (lookahead == 'l') ADVANCE(1416); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); END_STATE(); case 1433: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(1404); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1441); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + if (lookahead == 'l') ADVANCE(1417); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); END_STATE(); case 1434: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(1389); - if (lookahead == 'y') ADVANCE(1074); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + if (lookahead == 'l') ADVANCE(1451); + if (lookahead == 'x') ADVANCE(1443); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); END_STATE(); case 1435: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(1406); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + if (lookahead == 'l') ADVANCE(1453); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); END_STATE(); case 1436: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(1050); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + if (lookahead == 'n') ADVANCE(1074); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); END_STATE(); case 1437: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1441); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + if (lookahead == 'n') ADVANCE(1464); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); END_STATE(); case 1438: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1440); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + if (lookahead == 'n') ADVANCE(1452); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); END_STATE(); case 1439: 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(1446); + if (lookahead == 'n') ADVANCE(1406); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); END_STATE(); case 1440: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1443); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + if (lookahead == 'o') ADVANCE(1442); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); END_STATE(); case 1441: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1446); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + if (lookahead == 'o') ADVANCE(1448); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); END_STATE(); case 1442: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1438); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + if (lookahead == 'p') ADVANCE(1083); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); 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(1446); + if (lookahead == 'p') ADVANCE(1441); + if (lookahead == 't') ADVANCE(1419); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); END_STATE(); case 1444: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1445); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + if (lookahead == 'r') ADVANCE(1462); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); END_STATE(); case 1445: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1446); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + if (lookahead == 'r') ADVANCE(1080); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); END_STATE(); case 1446: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); + if (lookahead == 'r') ADVANCE(1399); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); END_STATE(); case 1447: - ACCEPT_TOKEN(sym__newline); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'r') ADVANCE(1436); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); END_STATE(); case 1448: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'r') ADVANCE(1458); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + END_STATE(); + case 1449: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 's') ADVANCE(681); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + END_STATE(); + case 1450: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 's') ADVANCE(1412); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + END_STATE(); + case 1451: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 's') ADVANCE(1413); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + END_STATE(); + case 1452: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 's') ADVANCE(1457); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + END_STATE(); + case 1453: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 's') ADVANCE(1415); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + END_STATE(); + case 1454: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 't') ADVANCE(1408); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + END_STATE(); + case 1455: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 't') ADVANCE(687); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + END_STATE(); + case 1456: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 't') ADVANCE(690); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + END_STATE(); + case 1457: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 't') ADVANCE(693); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + END_STATE(); + case 1458: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 't') ADVANCE(677); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + END_STATE(); + case 1459: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 't') ADVANCE(1400); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + END_STATE(); + case 1460: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 't') ADVANCE(1409); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + END_STATE(); + case 1461: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'u') ADVANCE(1430); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1470); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + END_STATE(); + case 1462: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'u') ADVANCE(1414); + if (lookahead == 'y') ADVANCE(1095); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + END_STATE(); + case 1463: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'u') ADVANCE(1433); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + END_STATE(); + case 1464: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'v') ADVANCE(1071); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + END_STATE(); + case 1465: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'y') ADVANCE(1101); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + END_STATE(); + case 1466: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1470); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + END_STATE(); + case 1467: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1469); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + END_STATE(); + case 1468: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1473); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + END_STATE(); + case 1469: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1472); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + END_STATE(); + case 1470: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1475); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + END_STATE(); + case 1471: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1467); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + END_STATE(); + case 1472: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1468); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + END_STATE(); + case 1473: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1474); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + END_STATE(); + case 1474: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1475); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + END_STATE(); + case 1475: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1475); + END_STATE(); + case 1476: + ACCEPT_TOKEN(sym__newline); + END_STATE(); + case 1477: ACCEPT_TOKEN(sym__space); - if (lookahead == ':') ADVANCE(1712); + if (lookahead == ':') ADVANCE(1741); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1448); + lookahead == ' ') ADVANCE(1477); END_STATE(); - case 1449: + case 1478: ACCEPT_TOKEN(sym__space); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1449); + lookahead == ' ') ADVANCE(1478); END_STATE(); - case 1450: + case 1479: ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); - case 1451: + case 1480: ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); - case 1452: + case 1481: ACCEPT_TOKEN(anon_sym_err_GT_PIPE); END_STATE(); - case 1453: + case 1482: ACCEPT_TOKEN(anon_sym_out_GT_PIPE); END_STATE(); - case 1454: + case 1483: ACCEPT_TOKEN(anon_sym_e_GT_PIPE); END_STATE(); - case 1455: + case 1484: ACCEPT_TOKEN(anon_sym_o_GT_PIPE); END_STATE(); - case 1456: + case 1485: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_PIPE); END_STATE(); - case 1457: + case 1486: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_PIPE); END_STATE(); - case 1458: + case 1487: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_PIPE); END_STATE(); - case 1459: + case 1488: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_PIPE); END_STATE(); - case 1460: + case 1489: ACCEPT_TOKEN(sym_attribute_identifier); - if (set_contains(sym_attribute_identifier_character_set_2, 801, lookahead)) ADVANCE(1460); + if (set_contains(sym_attribute_identifier_character_set_2, 801, lookahead)) ADVANCE(1489); END_STATE(); - case 1461: + case 1490: ACCEPT_TOKEN(anon_sym_AT); END_STATE(); - case 1462: + case 1491: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 1463: + case 1492: ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); - case 1464: + case 1493: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 1465: + case 1494: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 1466: + case 1495: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 1467: + case 1496: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 1468: + case 1497: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 1469: + case 1498: ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); - case 1470: + case 1499: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '"') ADVANCE(1701); - if (lookahead == '\'') ADVANCE(1700); + if (lookahead == '"') ADVANCE(1730); + if (lookahead == '\'') ADVANCE(1729); END_STATE(); - case 1471: + case 1500: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '"') ADVANCE(1701); - if (lookahead == '\'') ADVANCE(1700); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == '"') ADVANCE(1730); + if (lookahead == '\'') ADVANCE(1729); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); - case 1472: + case 1501: ACCEPT_TOKEN(anon_sym_DOLLAR); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); - case 1473: + case 1502: ACCEPT_TOKEN(anon_sym_cell_DASHpath); END_STATE(); - case 1474: + case 1503: ACCEPT_TOKEN(anon_sym_full_DASHcell_DASHpath); END_STATE(); - case 1475: + case 1504: ACCEPT_TOKEN(anon_sym_import_DASHpattern); END_STATE(); - case 1476: + case 1505: ACCEPT_TOKEN(anon_sym_one_DASHof); END_STATE(); - case 1477: + case 1506: ACCEPT_TOKEN(anon_sym_var_DASHwith_DASHopt_DASHtype); END_STATE(); - case 1478: + case 1507: ACCEPT_TOKEN(anon_sym_GT2); END_STATE(); - case 1479: + case 1508: ACCEPT_TOKEN(anon_sym_GT2); - if (lookahead == '=') ADVANCE(1551); + if (lookahead == '=') ADVANCE(1580); END_STATE(); - case 1480: + case 1509: ACCEPT_TOKEN(anon_sym_AT2); END_STATE(); - case 1481: + case 1510: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); - case 1482: + case 1511: ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); - case 1483: + case 1512: ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); - case 1484: + case 1513: ACCEPT_TOKEN(anon_sym_DASH_DASH); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); - case 1485: + case 1514: ACCEPT_TOKEN(anon_sym_DASH2); END_STATE(); - case 1486: + case 1515: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(1483); + if (lookahead == '-') ADVANCE(1512); END_STATE(); - case 1487: + case 1516: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(1483); - if (lookahead == '.') ADVANCE(335); + if (lookahead == '-') ADVANCE(1512); + if (lookahead == '.') ADVANCE(336); if (lookahead == '_') ADVANCE(309); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(533); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + lookahead == 'i') ADVANCE(544); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); END_STATE(); - case 1488: + case 1517: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(1483); - if (lookahead == '.') ADVANCE(1970); - if (lookahead == '_') ADVANCE(1960); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); + if (lookahead == '-') ADVANCE(1512); + if (lookahead == '.') ADVANCE(1999); + if (lookahead == '_') ADVANCE(1989); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1639); END_STATE(); - case 1489: + case 1518: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(1483); - if (lookahead == '.') ADVANCE(337); + if (lookahead == '-') ADVANCE(1512); + if (lookahead == '.') ADVANCE(338); if (lookahead == '_') ADVANCE(314); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1639); END_STATE(); - case 1490: + case 1519: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(335); + if (lookahead == '.') ADVANCE(336); if (lookahead == '_') ADVANCE(309); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(533); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + lookahead == 'i') ADVANCE(544); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); END_STATE(); - case 1491: + case 1520: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(865); - if (lookahead == '_') ADVANCE(847); + if (lookahead == '.') ADVANCE(881); + if (lookahead == '_') ADVANCE(863); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1024); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(865); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + lookahead == 'i') ADVANCE(1045); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(881); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); - case 1492: + case 1521: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(1813); - if (lookahead == '_') ADVANCE(1790); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); + if (lookahead == '.') ADVANCE(1842); + if (lookahead == '_') ADVANCE(1819); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1639); END_STATE(); - case 1493: + case 1522: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(337); + if (lookahead == '.') ADVANCE(338); if (lookahead == '_') ADVANCE(314); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1639); END_STATE(); - case 1494: + case 1523: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '=') ADVANCE(685); + if (lookahead == '=') ADVANCE(696); END_STATE(); - case 1495: + case 1524: ACCEPT_TOKEN(anon_sym_DASH2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); - case 1496: + case 1525: ACCEPT_TOKEN(sym_param_short_flag_identifier); END_STATE(); - case 1497: + case 1526: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 1498: + case 1527: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 1499: + case 1528: ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); - case 1500: + case 1529: ACCEPT_TOKEN(anon_sym__); - if (lookahead == '_') ADVANCE(2011); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); + if (lookahead == '_') ADVANCE(2040); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); END_STATE(); - case 1501: + case 1530: ACCEPT_TOKEN(anon_sym__); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); END_STATE(); - case 1502: + case 1531: ACCEPT_TOKEN(anon_sym_DOT_DOT); END_STATE(); - case 1503: + case 1532: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(689); - if (lookahead == '<') ADVANCE(1605); - if (lookahead == '=') ADVANCE(1604); + if (lookahead == '.') ADVANCE(700); + if (lookahead == '<') ADVANCE(1634); + if (lookahead == '=') ADVANCE(1633); END_STATE(); - case 1504: + case 1533: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(1987); - if (lookahead == '<') ADVANCE(1605); - if (lookahead == '=') ADVANCE(1604); + if (lookahead == '.') ADVANCE(2016); + if (lookahead == '<') ADVANCE(1634); + if (lookahead == '=') ADVANCE(1633); END_STATE(); - case 1505: + case 1534: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(2077); - if (lookahead == '<') ADVANCE(1605); - if (lookahead == '=') ADVANCE(1604); + if (lookahead == '.') ADVANCE(2106); + if (lookahead == '<') ADVANCE(1634); + if (lookahead == '=') ADVANCE(1633); END_STATE(); - case 1506: + case 1535: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '<') ADVANCE(1605); - if (lookahead == '=') ADVANCE(1604); + if (lookahead == '<') ADVANCE(1634); + if (lookahead == '=') ADVANCE(1633); END_STATE(); - case 1507: + case 1536: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '<') ADVANCE(1605); - if (lookahead == '=') ADVANCE(1604); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1045); + if (lookahead == '<') ADVANCE(1634); + if (lookahead == '=') ADVANCE(1633); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1066); END_STATE(); - case 1508: + case 1537: ACCEPT_TOKEN(anon_sym_DOLLAR2); END_STATE(); - case 1509: + case 1538: ACCEPT_TOKEN(anon_sym_DOLLAR2); - if (lookahead == '"') ADVANCE(1701); - if (lookahead == '\'') ADVANCE(1700); + if (lookahead == '"') ADVANCE(1730); + if (lookahead == '\'') ADVANCE(1729); END_STATE(); - case 1510: + case 1539: ACCEPT_TOKEN(anon_sym_STAR2); END_STATE(); - case 1511: + case 1540: ACCEPT_TOKEN(anon_sym_STAR2); - if (lookahead == '*') ADVANCE(1561); + if (lookahead == '*') ADVANCE(1590); END_STATE(); - case 1512: + case 1541: ACCEPT_TOKEN(anon_sym_STAR2); - if (lookahead == '*') ADVANCE(1561); - if (lookahead == '=') ADVANCE(686); + if (lookahead == '*') ADVANCE(1590); + if (lookahead == '=') ADVANCE(697); END_STATE(); - case 1513: + case 1542: ACCEPT_TOKEN(anon_sym_STAR2); - if (lookahead == '*') ADVANCE(1562); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == '*') ADVANCE(1591); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); - case 1514: + case 1543: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'a') ADVANCE(1517); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1524); + if (lookahead == 'a') ADVANCE(1546); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1553); END_STATE(); - case 1515: + case 1544: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'e') ADVANCE(1088); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1524); + if (lookahead == 'e') ADVANCE(1112); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1553); END_STATE(); - case 1516: + case 1545: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'e') ADVANCE(1091); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1524); + if (lookahead == 'e') ADVANCE(1115); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1553); END_STATE(); - case 1517: + case 1546: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'l') ADVANCE(1520); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1524); + if (lookahead == 'l') ADVANCE(1549); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1553); END_STATE(); - case 1518: + case 1547: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'o') ADVANCE(1521); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1524); + if (lookahead == 'o') ADVANCE(1550); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1553); END_STATE(); - case 1519: + case 1548: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'r') ADVANCE(1522); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1524); + if (lookahead == 'r') ADVANCE(1551); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1553); END_STATE(); - case 1520: + case 1549: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 's') ADVANCE(1516); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1524); + if (lookahead == 's') ADVANCE(1545); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1553); END_STATE(); - case 1521: + case 1550: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 't') ADVANCE(1523); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1524); + if (lookahead == 't') ADVANCE(1552); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1553); END_STATE(); - case 1522: + case 1551: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'u') ADVANCE(1515); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1524); + if (lookahead == 'u') ADVANCE(1544); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1553); END_STATE(); - case 1523: + case 1552: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1559); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1524); + lookahead == ' ') ADVANCE(1588); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1553); END_STATE(); - case 1524: + case 1553: 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(1524); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1553); END_STATE(); - case 1525: + case 1554: ACCEPT_TOKEN(anon_sym_where); END_STATE(); - case 1526: + case 1555: ACCEPT_TOKEN(anon_sym_and2); END_STATE(); - case 1527: + case 1556: ACCEPT_TOKEN(anon_sym_and2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); - case 1528: + case 1557: ACCEPT_TOKEN(anon_sym_xor2); END_STATE(); - case 1529: + case 1558: ACCEPT_TOKEN(anon_sym_xor2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); - case 1530: + case 1559: ACCEPT_TOKEN(anon_sym_or2); END_STATE(); - case 1531: + case 1560: ACCEPT_TOKEN(anon_sym_or2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); - case 1532: + case 1561: ACCEPT_TOKEN(anon_sym_not_DASHin2); END_STATE(); - case 1533: + case 1562: ACCEPT_TOKEN(anon_sym_not_DASHin2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); - case 1534: + case 1563: ACCEPT_TOKEN(anon_sym_has2); END_STATE(); - case 1535: + case 1564: ACCEPT_TOKEN(anon_sym_has2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); - case 1536: + case 1565: ACCEPT_TOKEN(anon_sym_not_DASHhas2); END_STATE(); - case 1537: + case 1566: ACCEPT_TOKEN(anon_sym_not_DASHhas2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); - case 1538: + case 1567: ACCEPT_TOKEN(anon_sym_starts_DASHwith2); END_STATE(); - case 1539: + case 1568: ACCEPT_TOKEN(anon_sym_starts_DASHwith2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); - case 1540: + case 1569: ACCEPT_TOKEN(anon_sym_not_DASHstarts_DASHwith2); END_STATE(); - case 1541: + case 1570: ACCEPT_TOKEN(anon_sym_not_DASHstarts_DASHwith2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); - case 1542: + case 1571: ACCEPT_TOKEN(anon_sym_ends_DASHwith2); END_STATE(); - case 1543: + case 1572: ACCEPT_TOKEN(anon_sym_ends_DASHwith2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); - case 1544: + case 1573: ACCEPT_TOKEN(anon_sym_not_DASHends_DASHwith2); END_STATE(); - case 1545: + case 1574: ACCEPT_TOKEN(anon_sym_not_DASHends_DASHwith2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); - case 1546: + case 1575: ACCEPT_TOKEN(anon_sym_EQ_EQ2); END_STATE(); - case 1547: + case 1576: ACCEPT_TOKEN(anon_sym_BANG_EQ2); END_STATE(); - case 1548: + case 1577: ACCEPT_TOKEN(anon_sym_LT2); END_STATE(); - case 1549: + case 1578: ACCEPT_TOKEN(anon_sym_LT2); - if (lookahead == '=') ADVANCE(1550); + if (lookahead == '=') ADVANCE(1579); END_STATE(); - case 1550: + case 1579: ACCEPT_TOKEN(anon_sym_LT_EQ2); END_STATE(); - case 1551: + case 1580: ACCEPT_TOKEN(anon_sym_GT_EQ2); END_STATE(); - case 1552: + case 1581: ACCEPT_TOKEN(anon_sym_EQ_TILDE2); END_STATE(); - case 1553: + case 1582: ACCEPT_TOKEN(anon_sym_BANG_TILDE2); END_STATE(); - case 1554: + case 1583: ACCEPT_TOKEN(anon_sym_BANG_TILDE2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); - case 1555: + case 1584: ACCEPT_TOKEN(anon_sym_like2); END_STATE(); - case 1556: + case 1585: ACCEPT_TOKEN(anon_sym_like2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); - case 1557: + case 1586: ACCEPT_TOKEN(anon_sym_not_DASHlike2); END_STATE(); - case 1558: + case 1587: ACCEPT_TOKEN(anon_sym_not_DASHlike2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); - case 1559: + case 1588: ACCEPT_TOKEN(aux_sym_expr_unary_token1); END_STATE(); - case 1560: + case 1589: ACCEPT_TOKEN(anon_sym_LPAREN2); END_STATE(); - case 1561: + case 1590: ACCEPT_TOKEN(anon_sym_STAR_STAR2); END_STATE(); - case 1562: + case 1591: ACCEPT_TOKEN(anon_sym_STAR_STAR2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); - case 1563: + case 1592: ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); END_STATE(); - case 1564: + case 1593: ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); - if (lookahead == '=') ADVANCE(688); + if (lookahead == '=') ADVANCE(699); END_STATE(); - case 1565: + case 1594: ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); - case 1566: + case 1595: ACCEPT_TOKEN(anon_sym_SLASH2); - if (lookahead == '/') ADVANCE(1572); + if (lookahead == '/') ADVANCE(1601); END_STATE(); - case 1567: + case 1596: ACCEPT_TOKEN(anon_sym_SLASH2); - if (lookahead == '/') ADVANCE(1572); - if (lookahead == '=') ADVANCE(687); + if (lookahead == '/') ADVANCE(1601); + if (lookahead == '=') ADVANCE(698); END_STATE(); - case 1568: + case 1597: ACCEPT_TOKEN(anon_sym_SLASH2); - if (lookahead == '/') ADVANCE(1573); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == '/') ADVANCE(1602); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); - case 1569: + case 1598: ACCEPT_TOKEN(anon_sym_SLASH2); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); END_STATE(); - case 1570: + case 1599: ACCEPT_TOKEN(anon_sym_mod2); END_STATE(); - case 1571: + case 1600: ACCEPT_TOKEN(anon_sym_mod2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); - case 1572: + case 1601: ACCEPT_TOKEN(anon_sym_SLASH_SLASH2); END_STATE(); - case 1573: + case 1602: ACCEPT_TOKEN(anon_sym_SLASH_SLASH2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); - case 1574: + case 1603: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(1563); + if (lookahead == '+') ADVANCE(1592); END_STATE(); - case 1575: + case 1604: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(1563); - if (lookahead == '.') ADVANCE(1813); - if (lookahead == '_') ADVANCE(1790); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); + if (lookahead == '+') ADVANCE(1592); + if (lookahead == '.') ADVANCE(1842); + if (lookahead == '_') ADVANCE(1819); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1639); END_STATE(); - case 1576: + case 1605: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(1563); - if (lookahead == '.') ADVANCE(337); + if (lookahead == '+') ADVANCE(1592); + if (lookahead == '.') ADVANCE(338); if (lookahead == '_') ADVANCE(314); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1639); END_STATE(); - case 1577: + case 1606: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(1564); - if (lookahead == '=') ADVANCE(684); + if (lookahead == '+') ADVANCE(1593); + if (lookahead == '=') ADVANCE(695); END_STATE(); - case 1578: + case 1607: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(1565); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if (lookahead == '+') ADVANCE(1594); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); - case 1579: + case 1608: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '.') ADVANCE(716); - if (lookahead == '_') ADVANCE(701); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + if (lookahead == '.') ADVANCE(727); + if (lookahead == '_') ADVANCE(712); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); END_STATE(); - case 1580: + case 1609: ACCEPT_TOKEN(anon_sym_bit_DASHshl2); END_STATE(); - case 1581: + case 1610: ACCEPT_TOKEN(anon_sym_bit_DASHshl2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); - case 1582: + case 1611: ACCEPT_TOKEN(anon_sym_bit_DASHshr2); END_STATE(); - case 1583: + case 1612: ACCEPT_TOKEN(anon_sym_bit_DASHshr2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); - case 1584: + case 1613: ACCEPT_TOKEN(anon_sym_bit_DASHand2); END_STATE(); - case 1585: + case 1614: ACCEPT_TOKEN(anon_sym_bit_DASHand2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); - case 1586: + case 1615: ACCEPT_TOKEN(anon_sym_bit_DASHxor2); END_STATE(); - case 1587: + case 1616: ACCEPT_TOKEN(anon_sym_bit_DASHxor2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); - case 1588: + case 1617: ACCEPT_TOKEN(anon_sym_bit_DASHor2); END_STATE(); - case 1589: + case 1618: ACCEPT_TOKEN(anon_sym_bit_DASHor2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); - case 1590: + case 1619: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LPAREN); END_STATE(); - case 1591: + case 1620: ACCEPT_TOKEN(anon_sym_DOT_DOT2); - if (lookahead == '.') ADVANCE(1481); - if (lookahead == '<') ADVANCE(1607); - if (lookahead == '=') ADVANCE(1606); + if (lookahead == '.') ADVANCE(1510); + if (lookahead == '<') ADVANCE(1636); + if (lookahead == '=') ADVANCE(1635); END_STATE(); - case 1592: + case 1621: ACCEPT_TOKEN(anon_sym_DOT_DOT2); - if (lookahead == '<') ADVANCE(1607); - if (lookahead == '=') ADVANCE(1606); + if (lookahead == '<') ADVANCE(1636); + if (lookahead == '=') ADVANCE(1635); END_STATE(); - case 1593: + case 1622: ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); - case 1594: + case 1623: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1592); + if (lookahead == '.') ADVANCE(1621); END_STATE(); - case 1595: + case 1624: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1592); - if (lookahead == '_') ADVANCE(717); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); + if (lookahead == '.') ADVANCE(1621); + if (lookahead == '_') ADVANCE(728); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1674); END_STATE(); - case 1596: + case 1625: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1502); + if (lookahead == '.') ADVANCE(1531); END_STATE(); - case 1597: + case 1626: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1502); - if (lookahead == '_') ADVANCE(1944); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if (lookahead == '.') ADVANCE(1531); + if (lookahead == '_') ADVANCE(1973); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1640); END_STATE(); - case 1598: + case 1627: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1963); + if (lookahead == '.') ADVANCE(1992); END_STATE(); - case 1599: + case 1628: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1963); - if (lookahead == '_') ADVANCE(1971); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if (lookahead == '.') ADVANCE(1992); + if (lookahead == '_') ADVANCE(2000); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1640); END_STATE(); - case 1600: + case 1629: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1591); + if (lookahead == '.') ADVANCE(1620); END_STATE(); - case 1601: + case 1630: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(1971); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if (lookahead == '_') ADVANCE(2000); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1640); END_STATE(); - case 1602: + case 1631: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(1944); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if (lookahead == '_') ADVANCE(1973); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1640); END_STATE(); - case 1603: + case 1632: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(1814); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if (lookahead == '_') ADVANCE(1843); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1640); END_STATE(); - case 1604: + case 1633: ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); END_STATE(); - case 1605: + case 1634: ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); END_STATE(); - case 1606: + case 1635: ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ2); END_STATE(); - case 1607: + case 1636: ACCEPT_TOKEN(anon_sym_DOT_DOT_LT2); END_STATE(); - case 1608: + case 1637: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(1608); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if (lookahead == '_') ADVANCE(1637); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); END_STATE(); - case 1609: + case 1638: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(1609); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); + if (lookahead == '_') ADVANCE(1638); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1638); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); END_STATE(); - case 1610: + case 1639: ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); - if (lookahead == '_') ADVANCE(1610); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); + if (lookahead == '_') ADVANCE(1639); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1639); END_STATE(); - case 1611: + case 1640: ACCEPT_TOKEN(aux_sym__immediate_decimal_token3); - if (lookahead == '_') ADVANCE(1611); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if (lookahead == '_') ADVANCE(1640); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1640); END_STATE(); - case 1612: + case 1641: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(1612); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if (lookahead == '_') ADVANCE(1641); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); END_STATE(); - case 1613: + case 1642: ACCEPT_TOKEN(aux_sym__immediate_decimal_token5); - if (lookahead == '_') ADVANCE(1613); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if (lookahead == '_') ADVANCE(1642); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); END_STATE(); - case 1614: + case 1643: ACCEPT_TOKEN(aux_sym__immediate_decimal_token5); - if (lookahead == '_') ADVANCE(1614); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); + if (lookahead == '_') ADVANCE(1643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); END_STATE(); - case 1615: + case 1644: ACCEPT_TOKEN(anon_sym_RPAREN2); END_STATE(); - case 1616: + case 1645: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_DOLLAR); END_STATE(); - case 1617: + case 1646: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(819); - if (lookahead == '_') ADVANCE(1643); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); + if (lookahead == '-') ADVANCE(835); + if (lookahead == '_') ADVANCE(1672); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); END_STATE(); - case 1618: + case 1647: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(2063); - if (lookahead == '_') ADVANCE(1643); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); + if (lookahead == '-') ADVANCE(2092); + if (lookahead == '_') ADVANCE(1672); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); END_STATE(); - case 1619: + case 1648: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(2117); - if (lookahead == '_') ADVANCE(1643); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); + if (lookahead == '-') ADVANCE(2146); + if (lookahead == '_') ADVANCE(1672); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); END_STATE(); - case 1620: + case 1649: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(2169); - if (lookahead == '_') ADVANCE(1643); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); + if (lookahead == '-') ADVANCE(2198); + if (lookahead == '_') ADVANCE(1672); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); END_STATE(); - case 1621: + case 1650: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(553); - if (lookahead == '_') ADVANCE(1643); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); + if (lookahead == '-') ADVANCE(564); + if (lookahead == '_') ADVANCE(1672); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); END_STATE(); - case 1622: + case 1651: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1643); - if (lookahead == 'b') ADVANCE(1650); - if (lookahead == 'o') ADVANCE(1660); - if (lookahead == 'x') ADVANCE(1662); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1629); + if (lookahead == '_') ADVANCE(1672); + if (lookahead == 'b') ADVANCE(1679); + if (lookahead == 'o') ADVANCE(1689); + if (lookahead == 'x') ADVANCE(1691); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1658); END_STATE(); - case 1623: + case 1652: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1643); - if (lookahead == 'b') ADVANCE(1650); - if (lookahead == 'o') ADVANCE(1660); - if (lookahead == 'x') ADVANCE(1662); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if (lookahead == '_') ADVANCE(1672); + if (lookahead == 'b') ADVANCE(1679); + if (lookahead == 'o') ADVANCE(1689); + if (lookahead == 'x') ADVANCE(1691); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1660); END_STATE(); - case 1624: + case 1653: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1643); - if (lookahead == 'b') ADVANCE(1650); - if (lookahead == 'o') ADVANCE(1660); - if (lookahead == 'x') ADVANCE(1662); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1633); + if (lookahead == '_') ADVANCE(1672); + if (lookahead == 'b') ADVANCE(1679); + if (lookahead == 'o') ADVANCE(1689); + if (lookahead == 'x') ADVANCE(1691); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1662); END_STATE(); - case 1625: + case 1654: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1643); - if (lookahead == 'b') ADVANCE(1650); - if (lookahead == 'o') ADVANCE(1660); - if (lookahead == 'x') ADVANCE(1662); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1635); + if (lookahead == '_') ADVANCE(1672); + if (lookahead == 'b') ADVANCE(1679); + if (lookahead == 'o') ADVANCE(1689); + if (lookahead == 'x') ADVANCE(1691); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1664); END_STATE(); - case 1626: + case 1655: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1643); - if (lookahead == 'b') ADVANCE(1650); - if (lookahead == 'o') ADVANCE(1660); - if (lookahead == 'x') ADVANCE(1662); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if (lookahead == '_') ADVANCE(1672); + if (lookahead == 'b') ADVANCE(1679); + if (lookahead == 'o') ADVANCE(1689); + if (lookahead == 'x') ADVANCE(1691); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1666); END_STATE(); - case 1627: + case 1656: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1643); - if (lookahead == 'b') ADVANCE(813); - if (lookahead == 'o') ADVANCE(815); - if (lookahead == 'x') ADVANCE(822); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); + if (lookahead == '_') ADVANCE(1672); + if (lookahead == 'b') ADVANCE(829); + if (lookahead == 'o') ADVANCE(831); + if (lookahead == 'x') ADVANCE(838); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); END_STATE(); - case 1628: + case 1657: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1643); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); + if (lookahead == '_') ADVANCE(1672); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); END_STATE(); - case 1629: + case 1658: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1643); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1628); + if (lookahead == '_') ADVANCE(1672); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1657); END_STATE(); - case 1630: + case 1659: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1643); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if (lookahead == '_') ADVANCE(1672); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); END_STATE(); - case 1631: + case 1660: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1643); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1630); + if (lookahead == '_') ADVANCE(1672); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1659); END_STATE(); - case 1632: + case 1661: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1643); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1619); + if (lookahead == '_') ADVANCE(1672); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); END_STATE(); - case 1633: + case 1662: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1643); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if (lookahead == '_') ADVANCE(1672); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1661); END_STATE(); - case 1634: + case 1663: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1643); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1621); + if (lookahead == '_') ADVANCE(1672); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1650); END_STATE(); - case 1635: + case 1664: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1643); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1634); + if (lookahead == '_') ADVANCE(1672); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1663); END_STATE(); - case 1636: + case 1665: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1643); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1620); + if (lookahead == '_') ADVANCE(1672); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); END_STATE(); - case 1637: + case 1666: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1643); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if (lookahead == '_') ADVANCE(1672); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1665); END_STATE(); - case 1638: + case 1667: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1643); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1629); + if (lookahead == '_') ADVANCE(1672); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1658); END_STATE(); - case 1639: + case 1668: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1643); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if (lookahead == '_') ADVANCE(1672); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1660); END_STATE(); - case 1640: + case 1669: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1643); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1633); + if (lookahead == '_') ADVANCE(1672); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1662); END_STATE(); - case 1641: + case 1670: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1643); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1635); + if (lookahead == '_') ADVANCE(1672); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1664); END_STATE(); - case 1642: + case 1671: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1643); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if (lookahead == '_') ADVANCE(1672); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1666); END_STATE(); - case 1643: + case 1672: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1643); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); + if (lookahead == '_') ADVANCE(1672); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); END_STATE(); - case 1644: + case 1673: ACCEPT_TOKEN(aux_sym__val_number_decimal_token2); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + if (lookahead == '_') ADVANCE(1673); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); END_STATE(); - case 1645: + case 1674: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(1645); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); + if (lookahead == '_') ADVANCE(1674); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1674); END_STATE(); - case 1646: + case 1675: ACCEPT_TOKEN(aux_sym__val_number_decimal_token4); - if (lookahead == '_') ADVANCE(1646); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); + if (lookahead == '_') ADVANCE(1675); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1675); END_STATE(); - case 1647: + case 1676: ACCEPT_TOKEN(aux_sym__val_number_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1647); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1676); END_STATE(); - case 1648: + case 1677: ACCEPT_TOKEN(aux_sym__val_number_token2); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(1648); + lookahead == '_') ADVANCE(1677); END_STATE(); - case 1649: + case 1678: ACCEPT_TOKEN(aux_sym__val_number_token3); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(1649); + lookahead == '_') ADVANCE(1678); END_STATE(); - case 1650: + case 1679: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(1648); + lookahead == '_') ADVANCE(1677); END_STATE(); - case 1651: + case 1680: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(1028); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + lookahead == '_') ADVANCE(1049); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); - case 1652: + case 1681: ACCEPT_TOKEN(sym_filesize_unit); END_STATE(); - case 1653: + case 1682: ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'i') ADVANCE(1300); + if (lookahead == 'i') ADVANCE(1324); END_STATE(); - case 1654: + case 1683: ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'i') ADVANCE(475); + if (lookahead == 'i') ADVANCE(485); END_STATE(); - case 1655: + case 1684: ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'i') ADVANCE(1897); + if (lookahead == 'i') ADVANCE(1926); END_STATE(); - case 1656: + case 1685: ACCEPT_TOKEN(sym_filesize_unit); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); END_STATE(); - case 1657: + case 1686: ACCEPT_TOKEN(sym_duration_unit); END_STATE(); - case 1658: + case 1687: ACCEPT_TOKEN(sym_duration_unit); - if (lookahead == 'e') ADVANCE(1046); + if (lookahead == 'e') ADVANCE(1067); END_STATE(); - case 1659: + case 1688: ACCEPT_TOKEN(sym_duration_unit); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1396); END_STATE(); - case 1660: + case 1689: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(1649); + lookahead == '_') ADVANCE(1678); END_STATE(); - case 1661: + case 1690: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(1031); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + lookahead == '_') ADVANCE(1052); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); - case 1662: + case 1691: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1647); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1676); END_STATE(); - case 1663: + case 1692: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1044); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1065); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); - case 1664: + case 1693: ACCEPT_TOKEN(anon_sym_LBRACK2); END_STATE(); - case 1665: + case 1694: ACCEPT_TOKEN(sym_hex_digit); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1665); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1694); END_STATE(); - case 1666: + case 1695: ACCEPT_TOKEN(sym_val_date); END_STATE(); - case 1667: + case 1696: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(547); + if (lookahead == '.') ADVANCE(558); if (lookahead == '+' || lookahead == '-') ADVANCE(315); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1666); + lookahead == 'z') ADVANCE(1695); END_STATE(); - case 1668: + case 1697: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(2061); + if (lookahead == '.') ADVANCE(2090); if (lookahead == '+' || - lookahead == '-') ADVANCE(2000); + lookahead == '-') ADVANCE(2029); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1666); + lookahead == 'z') ADVANCE(1695); END_STATE(); - case 1669: + case 1698: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(2120); + if (lookahead == '.') ADVANCE(2149); if (lookahead == '+' || - lookahead == '-') ADVANCE(2083); + lookahead == '-') ADVANCE(2112); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1666); + lookahead == 'z') ADVANCE(1695); END_STATE(); - case 1670: + case 1699: ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(1681); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(546); + if (lookahead == ':') ADVANCE(1710); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(557); END_STATE(); - case 1671: + case 1700: ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(1682); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2056); + if (lookahead == ':') ADVANCE(1711); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2085); END_STATE(); - case 1672: + case 1701: ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(1683); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2114); + if (lookahead == ':') ADVANCE(1712); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2143); END_STATE(); - case 1673: + case 1702: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(821); + if (lookahead == 'T') ADVANCE(837); END_STATE(); - case 1674: + case 1703: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(2065); + if (lookahead == 'T') ADVANCE(2094); END_STATE(); - case 1675: + case 1704: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(2123); + if (lookahead == 'T') ADVANCE(2152); END_STATE(); - case 1676: + case 1705: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(2171); + if (lookahead == 'T') ADVANCE(2200); END_STATE(); - case 1677: + case 1706: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(556); + if (lookahead == 'T') ADVANCE(567); END_STATE(); - case 1678: + case 1707: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || lookahead == '-') ADVANCE(315); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1666); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1678); + lookahead == 'z') ADVANCE(1695); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1707); END_STATE(); - case 1679: + case 1708: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(2000); + lookahead == '-') ADVANCE(2029); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1666); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1679); + lookahead == 'z') ADVANCE(1695); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1708); END_STATE(); - case 1680: + case 1709: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(2083); + lookahead == '-') ADVANCE(2112); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1666); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1680); + lookahead == 'z') ADVANCE(1695); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1709); END_STATE(); - case 1681: + case 1710: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(546); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(557); END_STATE(); - case 1682: + case 1711: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2056); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2085); END_STATE(); - case 1683: + case 1712: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2114); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2143); END_STATE(); - case 1684: + case 1713: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 1685: + case 1714: ACCEPT_TOKEN(sym__escaped_str_content); - if (lookahead == '#') ADVANCE(1686); + if (lookahead == '#') ADVANCE(1715); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1685); + lookahead == ' ') ADVANCE(1714); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && - lookahead != '\\') ADVANCE(1686); + lookahead != '\\') ADVANCE(1715); END_STATE(); - case 1686: + case 1715: ACCEPT_TOKEN(sym__escaped_str_content); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(1686); + lookahead != '\\') ADVANCE(1715); END_STATE(); - case 1687: + case 1716: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 1688: + case 1717: ACCEPT_TOKEN(aux_sym__str_single_quotes_token1); - if (lookahead == '#') ADVANCE(1689); + if (lookahead == '#') ADVANCE(1718); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1688); + lookahead == ' ') ADVANCE(1717); if (lookahead != 0 && - lookahead != '\'') ADVANCE(1689); + lookahead != '\'') ADVANCE(1718); END_STATE(); - case 1689: + case 1718: ACCEPT_TOKEN(aux_sym__str_single_quotes_token1); if (lookahead != 0 && - lookahead != '\'') ADVANCE(1689); + lookahead != '\'') ADVANCE(1718); END_STATE(); - case 1690: + case 1719: ACCEPT_TOKEN(anon_sym_SQUOTE2); END_STATE(); - case 1691: + case 1720: ACCEPT_TOKEN(anon_sym_BQUOTE); END_STATE(); - case 1692: + case 1721: ACCEPT_TOKEN(aux_sym__str_back_ticks_token1); - if (lookahead == '#') ADVANCE(1693); + if (lookahead == '#') ADVANCE(1722); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1692); + lookahead == ' ') ADVANCE(1721); if (lookahead != 0 && - lookahead != '`') ADVANCE(1693); + lookahead != '`') ADVANCE(1722); END_STATE(); - case 1693: + case 1722: ACCEPT_TOKEN(aux_sym__str_back_ticks_token1); if (lookahead != 0 && - lookahead != '`') ADVANCE(1693); + lookahead != '`') ADVANCE(1722); END_STATE(); - case 1694: + case 1723: ACCEPT_TOKEN(anon_sym_BQUOTE2); END_STATE(); - case 1695: + case 1724: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 1696: + case 1725: ACCEPT_TOKEN(sym_escaped_interpolated_content); - if (lookahead == '#') ADVANCE(1697); + if (lookahead == '#') ADVANCE(1726); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1696); + lookahead == ' ') ADVANCE(1725); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && lookahead != '(' && - lookahead != '\\') ADVANCE(1697); + lookahead != '\\') ADVANCE(1726); END_STATE(); - case 1697: + case 1726: ACCEPT_TOKEN(sym_escaped_interpolated_content); if (lookahead != 0 && lookahead != '"' && lookahead != '(' && - lookahead != '\\') ADVANCE(1697); + lookahead != '\\') ADVANCE(1726); END_STATE(); - case 1698: + case 1727: ACCEPT_TOKEN(sym_unescaped_interpolated_content); - if (lookahead == '#') ADVANCE(1699); + if (lookahead == '#') ADVANCE(1728); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1698); + lookahead == ' ') ADVANCE(1727); if (lookahead != 0 && lookahead != '\'' && - lookahead != '(') ADVANCE(1699); + lookahead != '(') ADVANCE(1728); END_STATE(); - case 1699: + case 1728: ACCEPT_TOKEN(sym_unescaped_interpolated_content); if (lookahead != 0 && lookahead != '\'' && - lookahead != '(') ADVANCE(1699); + lookahead != '(') ADVANCE(1728); END_STATE(); - case 1700: + case 1729: ACCEPT_TOKEN(anon_sym_DOLLAR_SQUOTE); END_STATE(); - case 1701: + case 1730: ACCEPT_TOKEN(anon_sym_DOLLAR_DQUOTE); END_STATE(); - case 1702: + case 1731: ACCEPT_TOKEN(anon_sym_DQUOTE2); END_STATE(); - case 1703: + case 1732: ACCEPT_TOKEN(sym_inter_escape_sequence); END_STATE(); - case 1704: + case 1733: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LBRACK); END_STATE(); - case 1705: + case 1734: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LBRACE); END_STATE(); - case 1706: + case 1735: ACCEPT_TOKEN(sym__entry_separator); END_STATE(); - case 1707: + case 1736: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == '\n') ADVANCE(1706); - if (lookahead == '\r') ADVANCE(1706); + if (lookahead == '\n') ADVANCE(1735); + if (lookahead == '\r') ADVANCE(1735); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1707); + lookahead == ' ') ADVANCE(1736); if (lookahead == 0x0b || lookahead == '\f' || - lookahead == ',') ADVANCE(1706); + lookahead == ',') ADVANCE(1735); END_STATE(); - case 1708: + case 1737: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == ',') ADVANCE(1706); + if (lookahead == ',') ADVANCE(1735); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1708); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1706); + lookahead == ' ') ADVANCE(1737); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1735); END_STATE(); - case 1709: + case 1738: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == ',') ADVANCE(1706); + if (lookahead == ',') ADVANCE(1735); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1709); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1710); + lookahead == ' ') ADVANCE(1738); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1739); END_STATE(); - case 1710: + case 1739: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == ';') ADVANCE(1715); + if (lookahead == ';') ADVANCE(1744); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(318); END_STATE(); - case 1711: + case 1740: ACCEPT_TOKEN(sym__entry_separator); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1711); + lookahead == ' ') ADVANCE(1740); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1706); + lookahead == ',') ADVANCE(1735); END_STATE(); - case 1712: + case 1741: ACCEPT_TOKEN(anon_sym_COLON2); END_STATE(); - case 1713: + case 1742: ACCEPT_TOKEN(aux_sym__record_key_token1); - if (lookahead == '#') ADVANCE(2191); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(1714); + if (lookahead == '#') ADVANCE(2220); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(1743); END_STATE(); - case 1714: + case 1743: ACCEPT_TOKEN(aux_sym__record_key_token1); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(1714); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(1743); END_STATE(); - case 1715: + case 1744: ACCEPT_TOKEN(sym__table_head_separator); END_STATE(); - case 1716: + case 1745: ACCEPT_TOKEN(anon_sym_QMARK2); END_STATE(); - case 1717: + case 1746: ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); - case 1718: + case 1747: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(1547); - if (lookahead == '~') ADVANCE(1553); + if (lookahead == '=') ADVANCE(1576); + if (lookahead == '~') ADVANCE(1582); END_STATE(); - case 1719: + case 1748: ACCEPT_TOKEN(anon_sym_DOT2); END_STATE(); - case 1720: + case 1749: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(695); + if (lookahead == '.') ADVANCE(706); END_STATE(); - case 1721: + case 1750: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(1592); + if (lookahead == '.') ADVANCE(1621); END_STATE(); - case 1722: + case 1751: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(1502); + if (lookahead == '.') ADVANCE(1531); END_STATE(); - case 1723: + case 1752: ACCEPT_TOKEN(anon_sym_DOT2); if (lookahead == '.') ADVANCE(311); END_STATE(); - case 1724: + case 1753: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(1591); + if (lookahead == '.') ADVANCE(1620); END_STATE(); - case 1725: + case 1754: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '_') ADVANCE(717); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); + if (lookahead == '_') ADVANCE(728); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1674); END_STATE(); - case 1726: + case 1755: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == '"') ADVANCE(1684); - if (lookahead == '#') ADVANCE(2187); - if (lookahead == '\'') ADVANCE(1687); - if (lookahead == '`') ADVANCE(1691); + if (lookahead == '"') ADVANCE(1713); + if (lookahead == '#') ADVANCE(2216); + if (lookahead == '\'') ADVANCE(1716); + if (lookahead == '`') ADVANCE(1720); if (lookahead == '\t' || lookahead == ' ') SKIP(172); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1727); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1756); END_STATE(); - case 1727: + case 1756: ACCEPT_TOKEN(aux_sym_path_token1); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1727); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1756); END_STATE(); - case 1728: + case 1757: ACCEPT_TOKEN(anon_sym_EQ2); END_STATE(); - case 1729: + case 1758: ACCEPT_TOKEN(aux_sym_env_var_token1); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1729); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1758); END_STATE(); - case 1730: + case 1759: ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); - case 1731: + case 1760: ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == '>') ADVANCE(1747); + if (lookahead == '>') ADVANCE(1776); END_STATE(); - case 1732: + case 1761: ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == '>') ADVANCE(1747); - if (lookahead == '|') ADVANCE(1452); + if (lookahead == '>') ADVANCE(1776); + if (lookahead == '|') ADVANCE(1481); END_STATE(); - case 1733: + case 1762: ACCEPT_TOKEN(anon_sym_out_GT); - if (lookahead == '>') ADVANCE(1748); + if (lookahead == '>') ADVANCE(1777); END_STATE(); - case 1734: + case 1763: ACCEPT_TOKEN(anon_sym_out_GT); - if (lookahead == '>') ADVANCE(1748); - if (lookahead == '|') ADVANCE(1453); + if (lookahead == '>') ADVANCE(1777); + if (lookahead == '|') ADVANCE(1482); END_STATE(); - case 1735: + case 1764: ACCEPT_TOKEN(anon_sym_e_GT); - if (lookahead == '>') ADVANCE(1749); + if (lookahead == '>') ADVANCE(1778); END_STATE(); - case 1736: + case 1765: ACCEPT_TOKEN(anon_sym_e_GT); - if (lookahead == '>') ADVANCE(1749); - if (lookahead == '|') ADVANCE(1454); + if (lookahead == '>') ADVANCE(1778); + if (lookahead == '|') ADVANCE(1483); END_STATE(); - case 1737: + case 1766: ACCEPT_TOKEN(anon_sym_o_GT); - if (lookahead == '>') ADVANCE(1750); + if (lookahead == '>') ADVANCE(1779); END_STATE(); - case 1738: + case 1767: ACCEPT_TOKEN(anon_sym_o_GT); - if (lookahead == '>') ADVANCE(1750); - if (lookahead == '|') ADVANCE(1455); + if (lookahead == '>') ADVANCE(1779); + if (lookahead == '|') ADVANCE(1484); END_STATE(); - case 1739: + case 1768: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if (lookahead == '>') ADVANCE(1751); + if (lookahead == '>') ADVANCE(1780); END_STATE(); - case 1740: + case 1769: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if (lookahead == '>') ADVANCE(1751); - if (lookahead == '|') ADVANCE(1456); + if (lookahead == '>') ADVANCE(1780); + if (lookahead == '|') ADVANCE(1485); END_STATE(); - case 1741: + case 1770: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if (lookahead == '>') ADVANCE(1752); + if (lookahead == '>') ADVANCE(1781); END_STATE(); - case 1742: + case 1771: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if (lookahead == '>') ADVANCE(1752); - if (lookahead == '|') ADVANCE(1457); + if (lookahead == '>') ADVANCE(1781); + if (lookahead == '|') ADVANCE(1486); END_STATE(); - case 1743: + case 1772: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if (lookahead == '>') ADVANCE(1753); + if (lookahead == '>') ADVANCE(1782); END_STATE(); - case 1744: + case 1773: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if (lookahead == '>') ADVANCE(1753); - if (lookahead == '|') ADVANCE(1458); + if (lookahead == '>') ADVANCE(1782); + if (lookahead == '|') ADVANCE(1487); END_STATE(); - case 1745: + case 1774: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == '>') ADVANCE(1754); + if (lookahead == '>') ADVANCE(1783); END_STATE(); - case 1746: + case 1775: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == '>') ADVANCE(1754); - if (lookahead == '|') ADVANCE(1459); + if (lookahead == '>') ADVANCE(1783); + if (lookahead == '|') ADVANCE(1488); END_STATE(); - case 1747: + case 1776: ACCEPT_TOKEN(anon_sym_err_GT_GT); END_STATE(); - case 1748: + case 1777: ACCEPT_TOKEN(anon_sym_out_GT_GT); END_STATE(); - case 1749: + case 1778: ACCEPT_TOKEN(anon_sym_e_GT_GT); END_STATE(); - case 1750: + case 1779: ACCEPT_TOKEN(anon_sym_o_GT_GT); END_STATE(); - case 1751: + case 1780: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_GT); END_STATE(); - case 1752: + case 1781: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_GT); END_STATE(); - case 1753: + case 1782: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_GT); END_STATE(); - case 1754: + case 1783: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_GT); END_STATE(); - case 1755: + case 1784: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(433); - if (lookahead == '>') ADVANCE(517); - if (lookahead == 'r') ADVANCE(1759); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1761); + if (lookahead == '+') ADVANCE(442); + if (lookahead == '>') ADVANCE(528); + if (lookahead == 'r') ADVANCE(1788); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1790); END_STATE(); - case 1756: + case 1785: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(375); - if (lookahead == '>') ADVANCE(518); - if (lookahead == 'u') ADVANCE(1760); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1761); + if (lookahead == '+') ADVANCE(380); + if (lookahead == '>') ADVANCE(529); + if (lookahead == 'u') ADVANCE(1789); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1790); END_STATE(); - case 1757: + case 1786: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(438); - if (lookahead == '>') ADVANCE(520); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1761); + if (lookahead == '+') ADVANCE(447); + if (lookahead == '>') ADVANCE(531); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1790); END_STATE(); - case 1758: + case 1787: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(379); - if (lookahead == '>') ADVANCE(522); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1761); + if (lookahead == '+') ADVANCE(383); + if (lookahead == '>') ADVANCE(533); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1790); END_STATE(); - case 1759: + case 1788: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'r') ADVANCE(1757); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1761); + if (lookahead == 'r') ADVANCE(1786); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1790); END_STATE(); - case 1760: + case 1789: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 't') ADVANCE(1758); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1761); + if (lookahead == 't') ADVANCE(1787); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1790); END_STATE(); - case 1761: + case 1790: ACCEPT_TOKEN(sym_short_flag_identifier); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1761); - END_STATE(); - case 1762: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1839); - if (lookahead == '>') ADVANCE(1738); - if (lookahead == 'r') ADVANCE(1530); - if (lookahead == 'u') ADVANCE(1900); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); - END_STATE(); - case 1763: - ACCEPT_TOKEN(sym__unquoted_pattern); - ADVANCE_MAP( - '+', 1816, - '-', 1819, - '>', 1736, - 'I', 1926, - '_', 1819, - 'i', 1926, - 'n', 1833, - 'r', 1882, - 'B', 1652, - 'b', 1652, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); - END_STATE(); - case 1764: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1816); - if (lookahead == '-') ADVANCE(1819); - if (lookahead == '>') ADVANCE(1736); - if (lookahead == '_') ADVANCE(1819); - if (lookahead == 'n') ADVANCE(1833); - if (lookahead == 'r') ADVANCE(1882); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); - END_STATE(); - case 1765: - ACCEPT_TOKEN(sym__unquoted_pattern); - ADVANCE_MAP( - '+', 1817, - '-', 1819, - '>', 1918, - 'I', 1926, - '_', 1819, - 'i', 1926, - 'n', 1833, - 'r', 1883, - 'B', 1652, - 'b', 1652, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1790); END_STATE(); - case 1766: - ACCEPT_TOKEN(sym__unquoted_pattern); - ADVANCE_MAP( - '+', 1817, - '-', 1819, - '>', 1918, - 'I', 1926, - '_', 1819, - 'i', 1926, - 'r', 1883, - 'B', 1652, - 'b', 1652, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); - END_STATE(); - case 1767: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1817); - if (lookahead == '-') ADVANCE(1819); - if (lookahead == '>') ADVANCE(1918); - if (lookahead == '_') ADVANCE(1819); - if (lookahead == 'n') ADVANCE(1833); - if (lookahead == 'r') ADVANCE(1883); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); - END_STATE(); - case 1768: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1817); - if (lookahead == '-') ADVANCE(1819); - if (lookahead == '>') ADVANCE(1918); - if (lookahead == '_') ADVANCE(1819); - if (lookahead == 'r') ADVANCE(1883); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); - END_STATE(); - case 1769: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1840); - if (lookahead == '>') ADVANCE(1734); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); - END_STATE(); - case 1770: - ACCEPT_TOKEN(sym__unquoted_pattern); - ADVANCE_MAP( - '+', 1868, - '>', 1736, - 'I', 1926, - 'i', 1926, - 'n', 1833, - 'r', 1882, - 'B', 1652, - 'b', 1652, - ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); - END_STATE(); - case 1771: + case 1791: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == '+') ADVANCE(1868); - if (lookahead == '>') ADVANCE(1736); - if (lookahead == 'n') ADVANCE(1833); - if (lookahead == 'r') ADVANCE(1882); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == '>') ADVANCE(1767); + if (lookahead == 'r') ADVANCE(1559); + if (lookahead == 'u') ADVANCE(1929); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); - case 1772: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1869); - if (lookahead == '>') ADVANCE(1732); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); - END_STATE(); - case 1773: + case 1792: ACCEPT_TOKEN(sym__unquoted_pattern); ADVANCE_MAP( - '+', 1874, - '>', 1918, - 'I', 1926, - 'i', 1926, - 'n', 1833, - 'r', 1883, - 'B', 1652, - 'b', 1652, + '+', 1845, + '-', 1848, + '>', 1765, + 'I', 1955, + '_', 1848, + 'i', 1955, + 'n', 1862, + 'r', 1911, + 'B', 1681, + 'b', 1681, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); - END_STATE(); - case 1774: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1874); - if (lookahead == '>') ADVANCE(1918); - if (lookahead == 'I') ADVANCE(1926); - if (lookahead == 'i') ADVANCE(1926); - if (lookahead == 'r') ADVANCE(1883); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1652); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); - END_STATE(); - case 1775: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1874); - if (lookahead == '>') ADVANCE(1918); - if (lookahead == 'n') ADVANCE(1833); - if (lookahead == 'r') ADVANCE(1883); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); - END_STATE(); - case 1776: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1874); - if (lookahead == '>') ADVANCE(1918); - if (lookahead == 'r') ADVANCE(1883); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); - END_STATE(); - case 1777: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1841); - if (lookahead == '>') ADVANCE(1919); - if (lookahead == 'r') ADVANCE(1530); - if (lookahead == 'u') ADVANCE(1904); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); - END_STATE(); - case 1778: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1841); - if (lookahead == '>') ADVANCE(1919); - if (lookahead == 'u') ADVANCE(1904); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); - END_STATE(); - case 1779: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1876); - if (lookahead == '>') ADVANCE(1921); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); - END_STATE(); - case 1780: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1842); - if (lookahead == '>') ADVANCE(1923); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); - END_STATE(); - case 1781: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '-') ADVANCE(1483); - if (lookahead == '.') ADVANCE(1820); - if (lookahead == '_') ADVANCE(1791); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1929); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); - END_STATE(); - case 1782: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '-') ADVANCE(1483); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); - END_STATE(); - case 1783: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '-') ADVANCE(1826); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); - END_STATE(); - case 1784: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '-') ADVANCE(1843); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); - END_STATE(); - case 1785: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '-') ADVANCE(1913); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); - 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(1933); - 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(1933); - 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(1933); - END_STATE(); - case 1789: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '.') ADVANCE(1592); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); - END_STATE(); - case 1790: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '.') ADVANCE(1813); - if (lookahead == '_') ADVANCE(1790); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); - END_STATE(); - case 1791: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '.') ADVANCE(1820); - if (lookahead == '_') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); - END_STATE(); - case 1792: - 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(1933); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1793: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '=') ADVANCE(1546); - if (lookahead == '>') ADVANCE(1499); - if (lookahead == '~') ADVANCE(1552); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == '+') ADVANCE(1845); + if (lookahead == '-') ADVANCE(1848); + if (lookahead == '>') ADVANCE(1765); + if (lookahead == '_') ADVANCE(1848); + if (lookahead == 'n') ADVANCE(1862); + if (lookahead == 'r') ADVANCE(1911); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1794: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '=') ADVANCE(1546); - if (lookahead == '~') ADVANCE(1552); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + ADVANCE_MAP( + '+', 1846, + '-', 1848, + '>', 1947, + 'I', 1955, + '_', 1848, + 'i', 1955, + 'n', 1862, + 'r', 1912, + 'B', 1681, + 'b', 1681, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1795: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1499); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + ADVANCE_MAP( + '+', 1846, + '-', 1848, + '>', 1947, + 'I', 1955, + '_', 1848, + 'i', 1955, + 'r', 1912, + 'B', 1681, + 'b', 1681, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1796: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1746); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == '+') ADVANCE(1846); + if (lookahead == '-') ADVANCE(1848); + if (lookahead == '>') ADVANCE(1947); + if (lookahead == '_') ADVANCE(1848); + if (lookahead == 'n') ADVANCE(1862); + if (lookahead == 'r') ADVANCE(1912); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1797: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1744); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == '+') ADVANCE(1846); + if (lookahead == '-') ADVANCE(1848); + if (lookahead == '>') ADVANCE(1947); + if (lookahead == '_') ADVANCE(1848); + if (lookahead == 'r') ADVANCE(1912); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1798: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1740); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == '+') ADVANCE(1869); + if (lookahead == '>') ADVANCE(1763); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1799: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1742); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + ADVANCE_MAP( + '+', 1897, + '>', 1765, + 'I', 1955, + 'i', 1955, + 'n', 1862, + 'r', 1911, + 'B', 1681, + 'b', 1681, + ); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1800: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1920); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == '+') ADVANCE(1897); + if (lookahead == '>') ADVANCE(1765); + if (lookahead == 'n') ADVANCE(1862); + if (lookahead == 'r') ADVANCE(1911); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1801: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1922); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == '+') ADVANCE(1898); + if (lookahead == '>') ADVANCE(1761); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1802: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1924); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + ADVANCE_MAP( + '+', 1903, + '>', 1947, + 'I', 1955, + 'i', 1955, + 'n', 1862, + 'r', 1912, + 'B', 1681, + 'b', 1681, + ); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); 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(1933); + if (lookahead == '+') ADVANCE(1903); + if (lookahead == '>') ADVANCE(1947); + if (lookahead == 'I') ADVANCE(1955); + if (lookahead == 'i') ADVANCE(1955); + if (lookahead == 'r') ADVANCE(1912); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1681); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1804: ACCEPT_TOKEN(sym__unquoted_pattern); - ADVANCE_MAP( - 'I', 1926, - '_', 1819, - 'i', 1926, - 'n', 1833, - '+', 1819, - '-', 1819, - 'B', 1652, - 'b', 1652, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == '+') ADVANCE(1903); + if (lookahead == '>') ADVANCE(1947); + if (lookahead == 'n') ADVANCE(1862); + if (lookahead == 'r') ADVANCE(1912); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1805: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1926); - if (lookahead == '_') ADVANCE(1819); - if (lookahead == 'i') ADVANCE(1926); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1819); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1652); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == '+') ADVANCE(1903); + if (lookahead == '>') ADVANCE(1947); + if (lookahead == 'r') ADVANCE(1912); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1806: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1926); - if (lookahead == '_') ADVANCE(1819); - if (lookahead == 'i') ADVANCE(1828); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1819); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1652); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == '+') ADVANCE(1870); + if (lookahead == '>') ADVANCE(1948); + if (lookahead == 'r') ADVANCE(1559); + if (lookahead == 'u') ADVANCE(1933); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1807: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1926); - if (lookahead == 'i') ADVANCE(1926); - if (lookahead == 'n') ADVANCE(1833); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1652); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == '+') ADVANCE(1870); + if (lookahead == '>') ADVANCE(1948); + if (lookahead == 'u') ADVANCE(1933); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1808: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1926); - if (lookahead == 'i') ADVANCE(1926); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1652); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == '+') ADVANCE(1905); + if (lookahead == '>') ADVANCE(1950); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1809: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1926); - if (lookahead == 'i') ADVANCE(1828); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1652); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == '+') ADVANCE(1871); + if (lookahead == '>') ADVANCE(1952); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1810: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1926); - if (lookahead == 'i') ADVANCE(1861); - if (lookahead == 'o') ADVANCE(1831); - if (lookahead == 's') ADVANCE(1657); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1652); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == '-') ADVANCE(1512); + if (lookahead == '.') ADVANCE(1849); + if (lookahead == '_') ADVANCE(1820); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1958); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1811: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1926); - if (lookahead == 'i') ADVANCE(1861); - if (lookahead == 's') ADVANCE(1657); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1652); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == '-') ADVANCE(1512); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1812: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1812); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == '-') ADVANCE(1855); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1813: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1813); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == '-') ADVANCE(1872); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1814: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1814); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == '-') ADVANCE(1942); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1815: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1819); - if (lookahead == 'n') ADVANCE(1833); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1819); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == '-') ADVANCE(1943); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1816: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1819); - if (lookahead == 'o') ADVANCE(1796); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == '-') ADVANCE(1944); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1817: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1819); - if (lookahead == 'o') ADVANCE(1800); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == '-') ADVANCE(1945); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1818: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1819); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1819); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == '.') ADVANCE(1621); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1819: ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '.') ADVANCE(1842); if (lookahead == '_') ADVANCE(1819); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1639); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1820: ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '.') ADVANCE(1849); if (lookahead == '_') ADVANCE(1820); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1821: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'a') ADVANCE(1891); - if (lookahead == 'r') ADVANCE(1657); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == '=') ADVANCE(1576); + if (lookahead == '~') ADVANCE(1582); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1822: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'a') ADVANCE(1891); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == '=') ADVANCE(1575); + if (lookahead == '>') ADVANCE(1528); + if (lookahead == '~') ADVANCE(1581); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1823: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'a') ADVANCE(1917); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == '=') ADVANCE(1575); + if (lookahead == '~') ADVANCE(1581); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1824: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'a') ADVANCE(1885); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == '>') ADVANCE(1528); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1825: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'a') ADVANCE(1892); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == '>') ADVANCE(1775); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1826: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'a') ADVANCE(1866); - if (lookahead == 'o') ADVANCE(1880); - if (lookahead == 's') ADVANCE(1849); - if (lookahead == 'x') ADVANCE(1875); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == '>') ADVANCE(1773); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1827: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'a') ADVANCE(1889); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == '>') ADVANCE(1769); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1828: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'b') ADVANCE(1652); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == '>') ADVANCE(1771); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1829: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'c') ADVANCE(1657); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == '>') ADVANCE(1949); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1830: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'd') ADVANCE(1526); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == '>') ADVANCE(1951); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1831: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'd') ADVANCE(1570); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == '>') ADVANCE(1953); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1832: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'd') ADVANCE(1584); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == '>') ADVANCE(1954); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1833: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'd') ADVANCE(1893); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + ADVANCE_MAP( + 'I', 1955, + '_', 1848, + 'i', 1955, + 'n', 1862, + '+', 1848, + '-', 1848, + 'B', 1681, + 'b', 1681, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1834: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'd') ADVANCE(1895); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 'I') ADVANCE(1955); + if (lookahead == '_') ADVANCE(1848); + if (lookahead == 'i') ADVANCE(1955); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1848); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1681); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1835: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1555); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 'I') ADVANCE(1955); + if (lookahead == '_') ADVANCE(1848); + if (lookahead == 'i') ADVANCE(1857); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1848); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1681); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1836: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1557); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 'I') ADVANCE(1955); + if (lookahead == 'i') ADVANCE(1955); + if (lookahead == 'n') ADVANCE(1862); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1681); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1837: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1829); - if (lookahead == 't') ADVANCE(1824); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 'I') ADVANCE(1955); + if (lookahead == 'i') ADVANCE(1955); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1681); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1838: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1829); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 'I') ADVANCE(1955); + if (lookahead == 'i') ADVANCE(1857); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1681); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1839: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1797); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 'I') ADVANCE(1955); + if (lookahead == 'i') ADVANCE(1890); + if (lookahead == 'o') ADVANCE(1860); + if (lookahead == 's') ADVANCE(1686); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1681); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1840: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1886); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 'I') ADVANCE(1955); + if (lookahead == 'i') ADVANCE(1890); + if (lookahead == 's') ADVANCE(1686); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1681); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1841: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1801); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == '_') ADVANCE(1841); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1842: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1887); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == '_') ADVANCE(1842); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1843: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1867); - if (lookahead == 'h') ADVANCE(1825); - if (lookahead == 'i') ADVANCE(1863); - if (lookahead == 'l') ADVANCE(1856); - if (lookahead == 's') ADVANCE(1910); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == '_') ADVANCE(1843); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1640); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1844: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'f') ADVANCE(1067); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == '_') ADVANCE(1848); + if (lookahead == 'n') ADVANCE(1862); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1848); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1845: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'h') ADVANCE(1542); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == '_') ADVANCE(1848); + if (lookahead == 'o') ADVANCE(1825); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1846: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'h') ADVANCE(1538); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == '_') ADVANCE(1848); + if (lookahead == 'o') ADVANCE(1829); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1847: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'h') ADVANCE(1544); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == '_') ADVANCE(1848); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1848); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1848: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'h') ADVANCE(1540); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == '_') ADVANCE(1848); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1849: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'h') ADVANCE(1860); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == '_') ADVANCE(1849); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1675); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1850: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'i') ADVANCE(1858); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 'a') ADVANCE(1920); + if (lookahead == 'r') ADVANCE(1686); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1851: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'i') ADVANCE(1897); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 'a') ADVANCE(1920); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1852: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'i') ADVANCE(1901); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 'a') ADVANCE(1946); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1853: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'i') ADVANCE(1903); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 'a') ADVANCE(1914); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1854: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'i') ADVANCE(1905); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 'a') ADVANCE(1921); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); 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(1933); + if (lookahead == 'a') ADVANCE(1895); + if (lookahead == 'o') ADVANCE(1909); + if (lookahead == 's') ADVANCE(1878); + if (lookahead == 'x') ADVANCE(1904); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1856: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'i') ADVANCE(1859); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 'a') ADVANCE(1918); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1857: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'k') ADVANCE(1657); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 'b') ADVANCE(1681); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1858: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'k') ADVANCE(1835); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 'c') ADVANCE(1686); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); 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(1933); + if (lookahead == 'd') ADVANCE(1555); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1860: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'l') ADVANCE(1580); - if (lookahead == 'r') ADVANCE(1582); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 'd') ADVANCE(1599); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1861: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'n') ADVANCE(1657); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1652); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 'd') ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1862: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'n') ADVANCE(1082); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 'd') ADVANCE(1922); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1863: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'n') ADVANCE(1532); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 'd') ADVANCE(1924); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1864: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'n') ADVANCE(1830); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 'e') ADVANCE(1584); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1865: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'n') ADVANCE(1833); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 'e') ADVANCE(1586); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1866: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'n') ADVANCE(1832); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 'e') ADVANCE(1858); + if (lookahead == 't') ADVANCE(1853); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1867: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'n') ADVANCE(1834); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 'e') ADVANCE(1858); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1868: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1796); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 'e') ADVANCE(1826); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1869: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1911); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 'e') ADVANCE(1915); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1870: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1879); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 'e') ADVANCE(1830); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1871: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1899); - if (lookahead == 's') ADVANCE(1657); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 'e') ADVANCE(1916); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1872: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1899); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 'e') ADVANCE(1896); + if (lookahead == 'h') ADVANCE(1854); + if (lookahead == 'i') ADVANCE(1892); + if (lookahead == 'l') ADVANCE(1885); + if (lookahead == 's') ADVANCE(1939); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1873: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1831); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 'f') ADVANCE(1088); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1874: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1800); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 'h') ADVANCE(1571); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1875: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1881); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 'h') ADVANCE(1567); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1876: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1912); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 'h') ADVANCE(1573); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1877: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1657); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 'h') ADVANCE(1569); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1878: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1530); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 'h') ADVANCE(1889); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1879: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1528); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 'i') ADVANCE(1887); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1880: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1588); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 'i') ADVANCE(1926); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1881: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1586); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 'i') ADVANCE(1930); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1882: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1772); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 'i') ADVANCE(1932); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1883: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1779); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 'i') ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1884: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1799); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 'i') ADVANCE(1935); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1885: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1908); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 'i') ADVANCE(1888); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1886: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1884); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 'k') ADVANCE(1686); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1887: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1888); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 'k') ADVANCE(1864); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1888: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1803); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 'k') ADVANCE(1865); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1889: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1909); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 'l') ADVANCE(1609); + if (lookahead == 'r') ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1890: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 's') ADVANCE(1657); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 'n') ADVANCE(1686); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1681); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1891: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 's') ADVANCE(1534); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 'n') ADVANCE(1106); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1892: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 's') ADVANCE(1536); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 'n') ADVANCE(1561); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1893: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 's') ADVANCE(1785); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 'n') ADVANCE(1859); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); 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(1933); + if (lookahead == 'n') ADVANCE(1862); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); 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(1933); + if (lookahead == 'n') ADVANCE(1861); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); 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(1933); + if (lookahead == 'n') ADVANCE(1863); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1897: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1783); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 'o') ADVANCE(1825); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1898: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1824); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 'o') ADVANCE(1940); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1899: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1784); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 'o') ADVANCE(1908); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1900: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1769); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 'o') ADVANCE(1928); + if (lookahead == 's') ADVANCE(1686); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1901: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1845); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 'o') ADVANCE(1928); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1902: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1798); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 'o') ADVANCE(1860); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1903: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1846); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 'o') ADVANCE(1829); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1904: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1780); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 'o') ADVANCE(1910); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1905: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1847); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 'o') ADVANCE(1941); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); 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(1933); + if (lookahead == 'r') ADVANCE(1686); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1907: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1802); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 'r') ADVANCE(1559); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1908: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1894); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 'r') ADVANCE(1557); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1909: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1896); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 'r') ADVANCE(1617); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1910: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1827); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 'r') ADVANCE(1615); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1911: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'u') ADVANCE(1902); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 'r') ADVANCE(1801); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1912: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'u') ADVANCE(1907); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 'r') ADVANCE(1808); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1913: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'w') ADVANCE(1852); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 'r') ADVANCE(1828); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); 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(1933); + if (lookahead == 'r') ADVANCE(1937); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); 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(1933); + if (lookahead == 'r') ADVANCE(1913); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); 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(1933); + if (lookahead == 'r') ADVANCE(1917); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1917: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'y') ADVANCE(1657); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 'r') ADVANCE(1832); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1918: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '|') ADVANCE(1454); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 'r') ADVANCE(1938); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); 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(1933); + if (lookahead == 's') ADVANCE(1686); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1920: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '|') ADVANCE(1459); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 's') ADVANCE(1563); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1921: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '|') ADVANCE(1452); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 's') ADVANCE(1565); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1922: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '|') ADVANCE(1458); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 's') ADVANCE(1814); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1923: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '|') ADVANCE(1453); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 's') ADVANCE(1815); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1924: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '|') ADVANCE(1456); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 's') ADVANCE(1816); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); 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(1933); + if (lookahead == 's') ADVANCE(1817); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1926: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1652); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 't') ADVANCE(1812); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1927: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1105); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 't') ADVANCE(1853); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1928: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1931); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 't') ADVANCE(1813); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1929: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1927); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 't') ADVANCE(1798); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); 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(1933); + if (lookahead == 't') ADVANCE(1874); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1931: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1932); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 't') ADVANCE(1827); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1932: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1103); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 't') ADVANCE(1875); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1933: ACCEPT_TOKEN(sym__unquoted_pattern); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + if (lookahead == 't') ADVANCE(1809); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1934: - ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '.') ADVANCE(1592); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1958); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 't') ADVANCE(1876); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1935: - ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '.') ADVANCE(1502); - if (lookahead == '_') ADVANCE(1944); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1958); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 't') ADVANCE(1877); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1936: - ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '.') ADVANCE(1502); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1958); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 't') ADVANCE(1831); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1937: - ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '.') ADVANCE(1945); - if (lookahead == '_') ADVANCE(1937); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1958); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 't') ADVANCE(1923); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1938: - ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'I') ADVANCE(1957); - if (lookahead == '_') ADVANCE(1947); - if (lookahead == 'i') ADVANCE(1957); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1947); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1652); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1958); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 't') ADVANCE(1925); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1939: - ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'I') ADVANCE(1957); - if (lookahead == '_') ADVANCE(1947); - if (lookahead == 'i') ADVANCE(1949); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1947); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1652); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1958); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 't') ADVANCE(1856); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1940: - ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'I') ADVANCE(1957); - if (lookahead == 'i') ADVANCE(1957); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1652); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1958); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'u') ADVANCE(1931); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1941: - ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'I') ADVANCE(1957); - if (lookahead == 'i') ADVANCE(1949); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1652); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1958); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'u') ADVANCE(1936); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1942: - ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'I') ADVANCE(1957); - if (lookahead == 'i') ADVANCE(1953); - if (lookahead == 's') ADVANCE(1657); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1652); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1958); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'w') ADVANCE(1881); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1943: - ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '_') ADVANCE(1943); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1958); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'w') ADVANCE(1882); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1944: - ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '_') ADVANCE(1944); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1958); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'w') ADVANCE(1883); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); 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(1958); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'w') ADVANCE(1884); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1946: - ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '_') ADVANCE(1947); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1947); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1958); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'y') ADVANCE(1686); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1947: - ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '_') ADVANCE(1947); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1958); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '|') ADVANCE(1483); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1948: - ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'a') ADVANCE(1956); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1958); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '|') ADVANCE(1484); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1949: - ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'b') ADVANCE(1652); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1958); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '|') ADVANCE(1488); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1950: - ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'c') ADVANCE(1657); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1958); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '|') ADVANCE(1481); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1951: - ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'e') ADVANCE(1950); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1958); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '|') ADVANCE(1487); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1952: - ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'k') ADVANCE(1657); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1958); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '|') ADVANCE(1482); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1953: - ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'n') ADVANCE(1657); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1652); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1958); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '|') ADVANCE(1485); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1954: - ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'r') ADVANCE(1657); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1958); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '|') ADVANCE(1486); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1955: - ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 's') ADVANCE(1657); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1958); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1681); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1956: - ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'y') ADVANCE(1657); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1958); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1129); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1957: - ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1652); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1958); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1960); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1958: - ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1958); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1956); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1959: - 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(1985); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1957); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1960: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '.') ADVANCE(1970); - if (lookahead == '_') ADVANCE(1960); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1961); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1961: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '.') ADVANCE(1963); - if (lookahead == '_') ADVANCE(1971); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1127); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1962: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '.') ADVANCE(1963); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); + ACCEPT_TOKEN(sym__unquoted_pattern); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1963: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '.') ADVANCE(1481); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); + ACCEPT_TOKEN(sym__unquoted_pattern_in_list); + if (lookahead == '.') ADVANCE(1621); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1987); END_STATE(); case 1964: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '.') ADVANCE(1591); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); + ACCEPT_TOKEN(sym__unquoted_pattern_in_list); + if (lookahead == '.') ADVANCE(1531); + if (lookahead == '_') ADVANCE(1973); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1640); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1987); END_STATE(); case 1965: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'I') ADVANCE(1984); - if (lookahead == '_') ADVANCE(1973); - if (lookahead == 'i') ADVANCE(1984); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1973); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1652); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); + ACCEPT_TOKEN(sym__unquoted_pattern_in_list); + if (lookahead == '.') ADVANCE(1531); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1987); END_STATE(); case 1966: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'I') ADVANCE(1984); - if (lookahead == '_') ADVANCE(1973); - if (lookahead == 'i') ADVANCE(1976); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1973); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1652); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); + ACCEPT_TOKEN(sym__unquoted_pattern_in_list); + if (lookahead == '.') ADVANCE(1974); + if (lookahead == '_') ADVANCE(1966); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1639); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1987); END_STATE(); case 1967: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'I') ADVANCE(1984); - if (lookahead == 'i') ADVANCE(1984); + ACCEPT_TOKEN(sym__unquoted_pattern_in_list); + if (lookahead == 'I') ADVANCE(1986); + if (lookahead == '_') ADVANCE(1976); + if (lookahead == 'i') ADVANCE(1986); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1976); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1652); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); + lookahead == 'b') ADVANCE(1681); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1987); END_STATE(); case 1968: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'I') ADVANCE(1984); - if (lookahead == 'i') ADVANCE(1976); + ACCEPT_TOKEN(sym__unquoted_pattern_in_list); + if (lookahead == 'I') ADVANCE(1986); + if (lookahead == '_') ADVANCE(1976); + if (lookahead == 'i') ADVANCE(1978); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1976); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1652); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); + lookahead == 'b') ADVANCE(1681); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1987); END_STATE(); case 1969: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'I') ADVANCE(1984); - if (lookahead == 'i') ADVANCE(1980); - if (lookahead == 's') ADVANCE(1657); + ACCEPT_TOKEN(sym__unquoted_pattern_in_list); + if (lookahead == 'I') ADVANCE(1986); + if (lookahead == 'i') ADVANCE(1986); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1652); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); + lookahead == 'b') ADVANCE(1681); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1987); END_STATE(); case 1970: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '_') ADVANCE(1970); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); + ACCEPT_TOKEN(sym__unquoted_pattern_in_list); + if (lookahead == 'I') ADVANCE(1986); + if (lookahead == 'i') ADVANCE(1978); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1681); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1987); END_STATE(); case 1971: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '_') ADVANCE(1971); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); + ACCEPT_TOKEN(sym__unquoted_pattern_in_list); + if (lookahead == 'I') ADVANCE(1986); + if (lookahead == 'i') ADVANCE(1982); + if (lookahead == 's') ADVANCE(1686); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1681); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1987); END_STATE(); case 1972: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '_') ADVANCE(1973); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1973); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); + ACCEPT_TOKEN(sym__unquoted_pattern_in_list); + if (lookahead == '_') ADVANCE(1972); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1987); END_STATE(); case 1973: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + ACCEPT_TOKEN(sym__unquoted_pattern_in_list); if (lookahead == '_') ADVANCE(1973); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1640); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1987); END_STATE(); case 1974: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + ACCEPT_TOKEN(sym__unquoted_pattern_in_list); if (lookahead == '_') ADVANCE(1974); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1987); END_STATE(); case 1975: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'a') ADVANCE(1983); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); + ACCEPT_TOKEN(sym__unquoted_pattern_in_list); + if (lookahead == '_') ADVANCE(1976); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1976); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1987); END_STATE(); case 1976: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'b') ADVANCE(1652); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); + ACCEPT_TOKEN(sym__unquoted_pattern_in_list); + if (lookahead == '_') ADVANCE(1976); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1987); END_STATE(); case 1977: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'c') ADVANCE(1657); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); + ACCEPT_TOKEN(sym__unquoted_pattern_in_list); + if (lookahead == 'a') ADVANCE(1985); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1987); END_STATE(); case 1978: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'e') ADVANCE(1977); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); + ACCEPT_TOKEN(sym__unquoted_pattern_in_list); + if (lookahead == 'b') ADVANCE(1681); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1987); END_STATE(); case 1979: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'k') ADVANCE(1657); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); + ACCEPT_TOKEN(sym__unquoted_pattern_in_list); + if (lookahead == 'c') ADVANCE(1686); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1987); END_STATE(); case 1980: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'n') ADVANCE(1657); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1652); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); + ACCEPT_TOKEN(sym__unquoted_pattern_in_list); + if (lookahead == 'e') ADVANCE(1979); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1987); END_STATE(); case 1981: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'r') ADVANCE(1657); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); + ACCEPT_TOKEN(sym__unquoted_pattern_in_list); + if (lookahead == 'k') ADVANCE(1686); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1987); END_STATE(); case 1982: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 's') ADVANCE(1657); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); + ACCEPT_TOKEN(sym__unquoted_pattern_in_list); + if (lookahead == 'n') ADVANCE(1686); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1681); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1987); END_STATE(); case 1983: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'y') ADVANCE(1657); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); + ACCEPT_TOKEN(sym__unquoted_pattern_in_list); + if (lookahead == 'r') ADVANCE(1686); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1987); END_STATE(); case 1984: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1652); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); + ACCEPT_TOKEN(sym__unquoted_pattern_in_list); + if (lookahead == 's') ADVANCE(1686); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1987); END_STATE(); case 1985: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); + ACCEPT_TOKEN(sym__unquoted_pattern_in_list); + if (lookahead == 'y') ADVANCE(1686); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1987); END_STATE(); case 1986: - ACCEPT_TOKEN(sym__unquoted_naive); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '(' && - lookahead != ')' && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1986); + ACCEPT_TOKEN(sym__unquoted_pattern_in_list); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1681); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1987); END_STATE(); case 1987: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '$') ADVANCE(1616); - if (lookahead == '(') ADVANCE(1590); - if (lookahead == '[') ADVANCE(1704); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + ACCEPT_TOKEN(sym__unquoted_pattern_in_list); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1987); END_STATE(); case 1988: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2024); - if (lookahead == '>') ADVANCE(1736); - if (lookahead == 'r') ADVANCE(2030); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if (lookahead == '.') ADVANCE(1621); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); END_STATE(); case 1989: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2017); - if (lookahead == '>') ADVANCE(1738); - if (lookahead == 'u') ADVANCE(2038); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if (lookahead == '.') ADVANCE(1999); + if (lookahead == '_') ADVANCE(1989); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1639); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); END_STATE(); case 1990: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2025); - if (lookahead == '>') ADVANCE(1732); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if (lookahead == '.') ADVANCE(1992); + if (lookahead == '_') ADVANCE(2000); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1640); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); END_STATE(); case 1991: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2018); - if (lookahead == '>') ADVANCE(1734); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if (lookahead == '.') ADVANCE(1992); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); END_STATE(); case 1992: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2027); - if (lookahead == '>') ADVANCE(1735); - if (lookahead == 'r') ADVANCE(2031); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if (lookahead == '.') ADVANCE(1510); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); END_STATE(); case 1993: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2019); - if (lookahead == '>') ADVANCE(1737); - if (lookahead == 'u') ADVANCE(2040); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if (lookahead == '.') ADVANCE(1620); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); END_STATE(); case 1994: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2028); - if (lookahead == '>') ADVANCE(1731); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if (lookahead == 'I') ADVANCE(2013); + if (lookahead == '_') ADVANCE(2002); + if (lookahead == 'i') ADVANCE(2013); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2002); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1681); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); END_STATE(); case 1995: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2020); - if (lookahead == '>') ADVANCE(1733); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if (lookahead == 'I') ADVANCE(2013); + if (lookahead == '_') ADVANCE(2002); + if (lookahead == 'i') ADVANCE(2005); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2002); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1681); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); END_STATE(); case 1996: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '-') ADVANCE(2064); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if (lookahead == 'I') ADVANCE(2013); + if (lookahead == 'i') ADVANCE(2013); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1681); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); END_STATE(); case 1997: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(1506); - if (lookahead == '_') ADVANCE(2013); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if (lookahead == 'I') ADVANCE(2013); + if (lookahead == 'i') ADVANCE(2005); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1681); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); END_STATE(); case 1998: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(1504); - if (lookahead == '_') ADVANCE(2013); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if (lookahead == 'I') ADVANCE(2013); + if (lookahead == 'i') ADVANCE(2009); + if (lookahead == 's') ADVANCE(1686); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1681); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); END_STATE(); case 1999: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(2012); + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); if (lookahead == '_') ADVANCE(1999); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); END_STATE(); case 2000: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '2') ADVANCE(2054); - if (lookahead == '0' || - lookahead == '1') ADVANCE(2062); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if (lookahead == '_') ADVANCE(2000); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1640); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); END_STATE(); case 2001: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ':') ADVANCE(2066); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if (lookahead == '_') ADVANCE(2002); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2002); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); END_STATE(); case 2002: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ':') ADVANCE(2068); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if (lookahead == '_') ADVANCE(2002); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); END_STATE(); case 2003: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1746); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if (lookahead == '_') ADVANCE(2003); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); END_STATE(); case 2004: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1744); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if (lookahead == 'a') ADVANCE(2012); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); END_STATE(); case 2005: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1740); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if (lookahead == 'b') ADVANCE(1681); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); END_STATE(); case 2006: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1742); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if (lookahead == 'c') ADVANCE(1686); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); END_STATE(); case 2007: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1745); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if (lookahead == 'e') ADVANCE(2006); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); END_STATE(); case 2008: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1743); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if (lookahead == 'k') ADVANCE(1686); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); END_STATE(); case 2009: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1739); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if (lookahead == 'n') ADVANCE(1686); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1681); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); END_STATE(); case 2010: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1741); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if (lookahead == 'r') ADVANCE(1686); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); END_STATE(); case 2011: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(2011); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if (lookahead == 's') ADVANCE(1686); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); END_STATE(); case 2012: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(2012); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if (lookahead == 'y') ADVANCE(1686); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); END_STATE(); case 2013: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(2013); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1681); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); END_STATE(); case 2014: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'a') ADVANCE(2022); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2014); END_STATE(); case 2015: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(1088); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + ACCEPT_TOKEN(sym__unquoted_naive); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2015); END_STATE(); case 2016: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(1091); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + if (lookahead == '$') ADVANCE(1645); + if (lookahead == '(') ADVANCE(1619); + if (lookahead == '[') ADVANCE(1733); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); END_STATE(); case 2017: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(2004); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + if (lookahead == '+') ADVANCE(2053); + if (lookahead == '>') ADVANCE(1765); + if (lookahead == 'r') ADVANCE(2059); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); END_STATE(); case 2018: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(2032); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + if (lookahead == '+') ADVANCE(2046); + if (lookahead == '>') ADVANCE(1767); + if (lookahead == 'u') ADVANCE(2067); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); END_STATE(); case 2019: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(2008); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + if (lookahead == '+') ADVANCE(2054); + if (lookahead == '>') ADVANCE(1761); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); END_STATE(); case 2020: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(2035); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + if (lookahead == '+') ADVANCE(2047); + if (lookahead == '>') ADVANCE(1763); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); END_STATE(); case 2021: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(1094); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + if (lookahead == '+') ADVANCE(2056); + if (lookahead == '>') ADVANCE(1764); + if (lookahead == 'r') ADVANCE(2060); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); END_STATE(); case 2022: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(2036); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + if (lookahead == '+') ADVANCE(2048); + if (lookahead == '>') ADVANCE(1766); + if (lookahead == 'u') ADVANCE(2069); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); END_STATE(); case 2023: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(2021); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + if (lookahead == '+') ADVANCE(2057); + if (lookahead == '>') ADVANCE(1760); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); END_STATE(); case 2024: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2003); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + if (lookahead == '+') ADVANCE(2049); + if (lookahead == '>') ADVANCE(1762); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); END_STATE(); case 2025: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2044); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + if (lookahead == '-') ADVANCE(2093); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); END_STATE(); case 2026: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2037); - if (lookahead == 'u') ADVANCE(2023); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2049); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + if (lookahead == '.') ADVANCE(1535); + if (lookahead == '_') ADVANCE(2042); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1674); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); END_STATE(); case 2027: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2007); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + if (lookahead == '.') ADVANCE(1533); + if (lookahead == '_') ADVANCE(2042); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1674); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); END_STATE(); case 2028: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2045); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + if (lookahead == '.') ADVANCE(2041); + if (lookahead == '_') ADVANCE(2028); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); END_STATE(); case 2029: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2043); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + if (lookahead == '2') ADVANCE(2083); + if (lookahead == '0' || + lookahead == '1') ADVANCE(2091); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); END_STATE(); case 2030: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(1990); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + if (lookahead == ':') ADVANCE(2095); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); END_STATE(); case 2031: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(1994); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + if (lookahead == ':') ADVANCE(2097); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); END_STATE(); case 2032: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2033); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + if (lookahead == '>') ADVANCE(1775); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); END_STATE(); case 2033: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2006); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + if (lookahead == '>') ADVANCE(1773); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); END_STATE(); case 2034: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2010); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + if (lookahead == '>') ADVANCE(1769); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); END_STATE(); case 2035: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2034); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + if (lookahead == '>') ADVANCE(1771); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); END_STATE(); case 2036: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 's') ADVANCE(2016); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + if (lookahead == '>') ADVANCE(1774); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); END_STATE(); case 2037: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(2055); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + if (lookahead == '>') ADVANCE(1772); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); END_STATE(); case 2038: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(1991); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + if (lookahead == '>') ADVANCE(1768); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); END_STATE(); case 2039: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(2005); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + if (lookahead == '>') ADVANCE(1770); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); END_STATE(); case 2040: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(1995); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + if (lookahead == '_') ADVANCE(2040); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); END_STATE(); case 2041: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(2009); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + if (lookahead == '_') ADVANCE(2041); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1675); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); END_STATE(); case 2042: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(2023); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2049); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + if (lookahead == '_') ADVANCE(2042); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1674); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); END_STATE(); case 2043: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(2015); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + if (lookahead == 'a') ADVANCE(2051); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); END_STATE(); case 2044: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(2039); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + if (lookahead == 'e') ADVANCE(1112); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); END_STATE(); case 2045: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(2041); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + if (lookahead == 'e') ADVANCE(1115); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); END_STATE(); case 2046: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2049); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + if (lookahead == 'e') ADVANCE(2033); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); END_STATE(); case 2047: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1099); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + if (lookahead == 'e') ADVANCE(2061); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); END_STATE(); case 2048: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2052); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + if (lookahead == 'e') ADVANCE(2037); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); END_STATE(); case 2049: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1108); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + if (lookahead == 'e') ADVANCE(2064); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); END_STATE(); case 2050: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2047); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + if (lookahead == 'l') ADVANCE(1118); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); 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(2069); + if (lookahead == 'l') ADVANCE(2065); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); END_STATE(); case 2052: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2053); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + if (lookahead == 'l') ADVANCE(2050); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); END_STATE(); case 2053: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1097); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + if (lookahead == 'o') ADVANCE(2032); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); END_STATE(); case 2054: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1671); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + if (lookahead == 'o') ADVANCE(2073); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); END_STATE(); case 2055: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1559); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + if (lookahead == 'o') ADVANCE(2066); + if (lookahead == 'u') ADVANCE(2052); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2078); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); END_STATE(); case 2056: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1666); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + if (lookahead == 'o') ADVANCE(2036); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); END_STATE(); case 2057: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1996); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + if (lookahead == 'o') ADVANCE(2074); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); END_STATE(); case 2058: 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(2069); + if (lookahead == 'r') ADVANCE(2072); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); END_STATE(); case 2059: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1674); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + if (lookahead == 'r') ADVANCE(2019); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); END_STATE(); case 2060: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1668); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + if (lookahead == 'r') ADVANCE(2023); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); END_STATE(); case 2061: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1679); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + if (lookahead == 'r') ADVANCE(2062); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); END_STATE(); case 2062: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + if (lookahead == 'r') ADVANCE(2035); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); END_STATE(); case 2063: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2057); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + if (lookahead == 'r') ADVANCE(2039); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); END_STATE(); case 2064: 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(2069); + if (lookahead == 'r') ADVANCE(2063); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); END_STATE(); case 2065: 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(2069); + if (lookahead == 's') ADVANCE(2045); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); END_STATE(); case 2066: 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(2069); + if (lookahead == 't') ADVANCE(2084); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); END_STATE(); case 2067: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2001); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + if (lookahead == 't') ADVANCE(2020); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); END_STATE(); case 2068: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2067); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + if (lookahead == 't') ADVANCE(2034); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); END_STATE(); case 2069: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); + if (lookahead == 't') ADVANCE(2024); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); END_STATE(); case 2070: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 't') ADVANCE(2038); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + END_STATE(); + case 2071: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'u') ADVANCE(2052); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2078); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + END_STATE(); + case 2072: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'u') ADVANCE(2044); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + END_STATE(); + case 2073: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'u') ADVANCE(2068); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + END_STATE(); + case 2074: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'u') ADVANCE(2070); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + END_STATE(); + case 2075: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2078); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + END_STATE(); + case 2076: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1123); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + END_STATE(); + case 2077: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2081); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + END_STATE(); + case 2078: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1132); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + END_STATE(); + case 2079: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2076); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + END_STATE(); + case 2080: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2077); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + END_STATE(); + case 2081: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2082); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + END_STATE(); + case 2082: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1121); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + END_STATE(); + case 2083: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1700); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + END_STATE(); + case 2084: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(1588); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + END_STATE(); + case 2085: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1695); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + END_STATE(); + case 2086: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2025); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + END_STATE(); + case 2087: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2031); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + END_STATE(); + case 2088: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1703); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + END_STATE(); + case 2089: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1697); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + END_STATE(); + case 2090: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1708); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + END_STATE(); + case 2091: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1700); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + END_STATE(); + case 2092: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2086); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + END_STATE(); + case 2093: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2088); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + END_STATE(); + case 2094: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2087); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + END_STATE(); + case 2095: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2089); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + END_STATE(); + case 2096: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2030); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + END_STATE(); + case 2097: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2096); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + END_STATE(); + case 2098: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2098); + END_STATE(); + case 2099: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '#') ADVANCE(2187); - if (lookahead == '$') ADVANCE(1469); - if (lookahead == '(') ADVANCE(1560); - if (lookahead == '.') ADVANCE(2073); - if (lookahead == '_') ADVANCE(2074); + if (lookahead == '#') ADVANCE(2216); + if (lookahead == '$') ADVANCE(1498); + if (lookahead == '(') ADVANCE(1589); + if (lookahead == '.') ADVANCE(2102); + if (lookahead == '_') ADVANCE(2103); if (lookahead == '\t' || lookahead == ' ') SKIP(192); if (lookahead == '+' || - lookahead == '-') ADVANCE(2072); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(2076); + lookahead == '-') ADVANCE(2101); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(2105); END_STATE(); - case 2071: + case 2100: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '#') ADVANCE(2187); - if (lookahead == '.') ADVANCE(2073); - if (lookahead == '_') ADVANCE(2074); + if (lookahead == '#') ADVANCE(2216); + if (lookahead == '.') ADVANCE(2102); + if (lookahead == '_') ADVANCE(2103); if (lookahead == '\t' || lookahead == ' ') SKIP(255); if (lookahead == '+' || - lookahead == '-') ADVANCE(2072); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2076); + lookahead == '-') ADVANCE(2101); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2105); END_STATE(); - case 2072: + case 2101: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(2075); - if (lookahead == '_') ADVANCE(2072); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2076); + if (lookahead == '.') ADVANCE(2104); + if (lookahead == '_') ADVANCE(2101); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1639); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2105); END_STATE(); - case 2073: + case 2102: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(2073); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2076); + if (lookahead == '_') ADVANCE(2102); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1640); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2105); END_STATE(); - case 2074: + case 2103: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(2074); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2076); + if (lookahead == '_') ADVANCE(2103); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2105); END_STATE(); - case 2075: + case 2104: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(2075); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2076); + if (lookahead == '_') ADVANCE(2104); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2105); END_STATE(); - case 2076: + case 2105: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2076); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2105); END_STATE(); - case 2077: + case 2106: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '$') ADVANCE(1616); - if (lookahead == '(') ADVANCE(1590); - if (lookahead == '[') ADVANCE(1704); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 12, lookahead))) ADVANCE(2127); + if (lookahead == '$') ADVANCE(1645); + if (lookahead == '(') ADVANCE(1619); + if (lookahead == '[') ADVANCE(1733); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 12, lookahead))) ADVANCE(2156); END_STATE(); - case 2078: + case 2107: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '-') ADVANCE(2122); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); + if (lookahead == '-') ADVANCE(2151); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); END_STATE(); - case 2079: + case 2108: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(1506); - if (lookahead == '_') ADVANCE(2088); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); + if (lookahead == '.') ADVANCE(1535); + if (lookahead == '_') ADVANCE(2117); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1674); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); END_STATE(); - case 2080: + case 2109: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(2087); - if (lookahead == '_') ADVANCE(2081); + if (lookahead == '.') ADVANCE(2116); + if (lookahead == '_') ADVANCE(2110); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2107); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); + lookahead == 'i') ADVANCE(2136); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); END_STATE(); - case 2081: + case 2110: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(2087); - if (lookahead == '_') ADVANCE(2081); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); + if (lookahead == '.') ADVANCE(2116); + if (lookahead == '_') ADVANCE(2110); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); END_STATE(); - case 2082: + case 2111: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(1505); - if (lookahead == '_') ADVANCE(2088); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); + if (lookahead == '.') ADVANCE(1534); + if (lookahead == '_') ADVANCE(2117); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1674); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); END_STATE(); - case 2083: + case 2112: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '2') ADVANCE(2113); + if (lookahead == '2') ADVANCE(2142); if (lookahead == '0' || - lookahead == '1') ADVANCE(2121); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); + lookahead == '1') ADVANCE(2150); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); END_STATE(); - case 2084: + case 2113: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(2124); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); + if (lookahead == ':') ADVANCE(2153); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); END_STATE(); - case 2085: + case 2114: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(2126); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); + if (lookahead == ':') ADVANCE(2155); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); END_STATE(); - case 2086: + case 2115: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(2086); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); + if (lookahead == '_') ADVANCE(2115); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); END_STATE(); - case 2087: + case 2116: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(2087); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); + if (lookahead == '_') ADVANCE(2116); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1675); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); END_STATE(); - case 2088: + case 2117: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(2088); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); + if (lookahead == '_') ADVANCE(2117); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1674); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); END_STATE(); - case 2089: + case 2118: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'a') ADVANCE(2093); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); + if (lookahead == 'a') ADVANCE(2122); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); END_STATE(); - case 2090: + case 2119: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(1088); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); + if (lookahead == 'e') ADVANCE(1112); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); END_STATE(); - case 2091: + case 2120: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(1091); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); + if (lookahead == 'e') ADVANCE(1115); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); END_STATE(); - case 2092: + case 2121: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(1094); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); + if (lookahead == 'l') ADVANCE(1118); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); END_STATE(); - case 2093: + case 2122: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(2096); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); + if (lookahead == 'l') ADVANCE(2125); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); END_STATE(); - case 2094: + case 2123: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(2092); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); + if (lookahead == 'l') ADVANCE(2121); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); END_STATE(); - case 2095: + case 2124: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'r') ADVANCE(2097); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); + if (lookahead == 'r') ADVANCE(2126); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); END_STATE(); - case 2096: + case 2125: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 's') ADVANCE(2091); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); + if (lookahead == 's') ADVANCE(2120); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); END_STATE(); - case 2097: + case 2126: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'u') ADVANCE(2090); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); + if (lookahead == 'u') ADVANCE(2119); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); END_STATE(); - case 2098: + case 2127: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'u') ADVANCE(2094); + if (lookahead == 'u') ADVANCE(2123); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2104); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); + lookahead == 'a') ADVANCE(2133); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); END_STATE(); - case 2099: + case 2128: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2104); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); + lookahead == 'a') ADVANCE(2133); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); END_STATE(); - case 2100: + case 2129: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1106); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); + lookahead == 'f') ADVANCE(1130); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); END_STATE(); - case 2101: + case 2130: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1100); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); + lookahead == 'f') ADVANCE(1124); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); END_STATE(); - case 2102: + case 2131: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2109); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); + lookahead == 'i') ADVANCE(2138); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); END_STATE(); - case 2103: + case 2132: 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(2127); + lookahead == 'i') ADVANCE(2139); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); END_STATE(); - case 2104: + case 2133: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1108); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); + lookahead == 'n') ADVANCE(1132); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); END_STATE(); - case 2105: + case 2134: 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(2127); + lookahead == 'n') ADVANCE(2130); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); END_STATE(); - case 2106: + case 2135: 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(2127); + lookahead == 'n') ADVANCE(2131); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); END_STATE(); - case 2107: + case 2136: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2100); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); + lookahead == 'n') ADVANCE(2129); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); END_STATE(); - case 2108: + case 2137: 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(2127); + lookahead == 'n') ADVANCE(2132); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); END_STATE(); - case 2109: + case 2138: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2111); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); + lookahead == 't') ADVANCE(2140); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); END_STATE(); - case 2110: + case 2139: 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(2127); + lookahead == 't') ADVANCE(2141); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); END_STATE(); - case 2111: + case 2140: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1097); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); + lookahead == 'y') ADVANCE(1121); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); END_STATE(); - case 2112: + case 2141: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1103); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); + lookahead == 'y') ADVANCE(1127); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); END_STATE(); - case 2113: + case 2142: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1672); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1701); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); END_STATE(); - case 2114: + case 2143: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1666); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1695); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); END_STATE(); - case 2115: + case 2144: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2078); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2107); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); END_STATE(); - case 2116: + case 2145: 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(2127); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2114); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); END_STATE(); - case 2117: + case 2146: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2115); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2144); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); END_STATE(); - case 2118: + case 2147: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1675); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1704); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); END_STATE(); - case 2119: + case 2148: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1669); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1698); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); END_STATE(); - case 2120: + case 2149: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1680); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1709); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); END_STATE(); - case 2121: + case 2150: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1701); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); END_STATE(); - case 2122: + case 2151: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2118); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2147); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); END_STATE(); - case 2123: + case 2152: 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(2127); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2145); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); END_STATE(); - case 2124: + case 2153: 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(2127); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2148); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); END_STATE(); - case 2125: + case 2154: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2084); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2113); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); END_STATE(); - case 2126: + case 2155: 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(2127); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2154); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); END_STATE(); - case 2127: + case 2156: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2156); END_STATE(); - case 2128: + case 2157: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '#') ADVANCE(2187); - if (lookahead == '$') ADVANCE(1508); - if (lookahead == '(') ADVANCE(1560); - if (lookahead == '.') ADVANCE(2131); - if (lookahead == ']') ADVANCE(1465); - if (lookahead == '_') ADVANCE(2132); + if (lookahead == '#') ADVANCE(2216); + if (lookahead == '$') ADVANCE(1537); + if (lookahead == '(') ADVANCE(1589); + if (lookahead == '.') ADVANCE(2160); + if (lookahead == ']') ADVANCE(1494); + if (lookahead == '_') ADVANCE(2161); if (lookahead == '\t' || lookahead == ' ') SKIP(190); if (lookahead == '+' || - lookahead == '-') ADVANCE(2130); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 12, lookahead))) ADVANCE(2134); + lookahead == '-') ADVANCE(2159); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 12, lookahead))) ADVANCE(2163); END_STATE(); - case 2129: + case 2158: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '#') ADVANCE(2187); - if (lookahead == '$') ADVANCE(1469); - if (lookahead == '(') ADVANCE(1560); - if (lookahead == '.') ADVANCE(2131); - if (lookahead == '_') ADVANCE(2132); + if (lookahead == '#') ADVANCE(2216); + if (lookahead == '$') ADVANCE(1498); + if (lookahead == '(') ADVANCE(1589); + if (lookahead == '.') ADVANCE(2160); + if (lookahead == '_') ADVANCE(2161); if (lookahead == '\t' || lookahead == ' ') SKIP(192); if (lookahead == '+' || - lookahead == '-') ADVANCE(2130); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 12, lookahead))) ADVANCE(2134); + lookahead == '-') ADVANCE(2159); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 12, lookahead))) ADVANCE(2163); END_STATE(); - case 2130: + case 2159: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(2133); - if (lookahead == '_') ADVANCE(2130); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2134); + if (lookahead == '.') ADVANCE(2162); + if (lookahead == '_') ADVANCE(2159); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1639); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2163); END_STATE(); - case 2131: + case 2160: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - 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(2134); + if (lookahead == '_') ADVANCE(2160); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1640); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2163); END_STATE(); - case 2132: + case 2161: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(2132); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2134); + if (lookahead == '_') ADVANCE(2161); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2163); END_STATE(); - case 2133: + case 2162: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(2133); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2134); + if (lookahead == '_') ADVANCE(2162); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2163); END_STATE(); - case 2134: + case 2163: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2134); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2163); END_STATE(); - case 2135: + case 2164: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '-') ADVANCE(2170); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2173); + if (lookahead == '-') ADVANCE(2199); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); END_STATE(); - case 2136: + case 2165: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '.') ADVANCE(1506); - if (lookahead == '_') ADVANCE(2142); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2173); + if (lookahead == '.') ADVANCE(1535); + if (lookahead == '_') ADVANCE(2171); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1674); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); END_STATE(); - case 2137: + case 2166: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '.') ADVANCE(2141); - if (lookahead == '_') ADVANCE(2138); + if (lookahead == '.') ADVANCE(2170); + if (lookahead == '_') ADVANCE(2167); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2161); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2173); + lookahead == 'i') ADVANCE(2190); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); END_STATE(); - case 2138: + case 2167: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '.') ADVANCE(2141); - if (lookahead == '_') ADVANCE(2138); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2173); + if (lookahead == '.') ADVANCE(2170); + if (lookahead == '_') ADVANCE(2167); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); END_STATE(); - case 2139: + case 2168: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == ':') ADVANCE(549); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2173); + if (lookahead == ':') ADVANCE(560); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); END_STATE(); - case 2140: + case 2169: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '_') ADVANCE(2140); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2173); + if (lookahead == '_') ADVANCE(2169); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); END_STATE(); - case 2141: + case 2170: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '_') ADVANCE(2141); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2173); + if (lookahead == '_') ADVANCE(2170); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1675); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); END_STATE(); - case 2142: + case 2171: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '_') ADVANCE(2142); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2173); + if (lookahead == '_') ADVANCE(2171); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1674); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); END_STATE(); - case 2143: + case 2172: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'a') ADVANCE(2147); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2173); + if (lookahead == 'a') ADVANCE(2176); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); END_STATE(); - case 2144: + case 2173: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'e') ADVANCE(1088); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2173); + if (lookahead == 'e') ADVANCE(1112); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); END_STATE(); - case 2145: + case 2174: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'e') ADVANCE(1091); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2173); + if (lookahead == 'e') ADVANCE(1115); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); END_STATE(); - case 2146: + case 2175: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'l') ADVANCE(1094); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2173); + if (lookahead == 'l') ADVANCE(1118); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); END_STATE(); - case 2147: + case 2176: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'l') ADVANCE(2150); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2173); + if (lookahead == 'l') ADVANCE(2179); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); END_STATE(); - case 2148: + case 2177: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'l') ADVANCE(2146); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2173); + if (lookahead == 'l') ADVANCE(2175); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); END_STATE(); - case 2149: + case 2178: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'r') ADVANCE(2151); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2173); + if (lookahead == 'r') ADVANCE(2180); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); END_STATE(); - case 2150: + case 2179: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 's') ADVANCE(2145); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2173); + if (lookahead == 's') ADVANCE(2174); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); END_STATE(); - case 2151: + case 2180: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'u') ADVANCE(2144); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2173); + if (lookahead == 'u') ADVANCE(2173); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); END_STATE(); - case 2152: + case 2181: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'u') ADVANCE(2148); + if (lookahead == 'u') ADVANCE(2177); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2158); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2173); + lookahead == 'a') ADVANCE(2187); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); END_STATE(); - case 2153: + case 2182: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2158); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2173); + lookahead == 'a') ADVANCE(2187); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); END_STATE(); - case 2154: + case 2183: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1107); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2173); + lookahead == 'f') ADVANCE(1131); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); END_STATE(); - case 2155: + case 2184: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1101); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2173); + lookahead == 'f') ADVANCE(1125); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); END_STATE(); - case 2156: + case 2185: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2163); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2173); + lookahead == 'i') ADVANCE(2192); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); END_STATE(); - case 2157: + case 2186: 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(2173); + lookahead == 'i') ADVANCE(2193); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); END_STATE(); - case 2158: + case 2187: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1108); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2173); + lookahead == 'n') ADVANCE(1132); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); END_STATE(); - case 2159: + case 2188: 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(2173); + lookahead == 'n') ADVANCE(2184); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); END_STATE(); - case 2160: + case 2189: 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(2173); + lookahead == 'n') ADVANCE(2185); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); END_STATE(); - case 2161: + case 2190: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2154); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2173); + lookahead == 'n') ADVANCE(2183); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); END_STATE(); - case 2162: + case 2191: 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(2173); + lookahead == 'n') ADVANCE(2186); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); END_STATE(); - case 2163: + case 2192: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2165); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2173); + lookahead == 't') ADVANCE(2194); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); END_STATE(); - case 2164: + case 2193: 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(2173); + lookahead == 't') ADVANCE(2195); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); END_STATE(); - case 2165: + case 2194: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1097); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2173); + lookahead == 'y') ADVANCE(1121); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); END_STATE(); - case 2166: + case 2195: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1103); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2173); + lookahead == 'y') ADVANCE(1127); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); END_STATE(); - case 2167: + case 2196: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2135); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2173); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2164); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); END_STATE(); - case 2168: + case 2197: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2139); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2173); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2168); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); END_STATE(); - case 2169: + case 2198: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2167); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2173); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2196); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); END_STATE(); - case 2170: + case 2199: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2172); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2173); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2201); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); END_STATE(); - case 2171: + case 2200: 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(2173); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2197); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); END_STATE(); - case 2172: + case 2201: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1676); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2173); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1705); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); END_STATE(); - case 2173: + case 2202: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2173); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2202); END_STATE(); - case 2174: + case 2203: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '#') ADVANCE(2187); - if (lookahead == '$') ADVANCE(1469); - if (lookahead == '(') ADVANCE(1560); - if (lookahead == '.') ADVANCE(2177); - if (lookahead == '_') ADVANCE(2178); + if (lookahead == '#') ADVANCE(2216); + if (lookahead == '$') ADVANCE(1498); + if (lookahead == '(') ADVANCE(1589); + if (lookahead == '.') ADVANCE(2206); + if (lookahead == '_') ADVANCE(2207); if (lookahead == '\t' || lookahead == ' ') SKIP(192); if (lookahead == '+' || - lookahead == '-') ADVANCE(2176); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2180); + lookahead == '-') ADVANCE(2205); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2209); END_STATE(); - case 2175: + case 2204: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '#') ADVANCE(2187); - if (lookahead == '.') ADVANCE(2177); - if (lookahead == '_') ADVANCE(2178); + if (lookahead == '#') ADVANCE(2216); + if (lookahead == '.') ADVANCE(2206); + if (lookahead == '_') ADVANCE(2207); if (lookahead == '\t' || lookahead == ' ') SKIP(255); if (lookahead == '+' || - lookahead == '-') ADVANCE(2176); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2180); + lookahead == '-') ADVANCE(2205); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2209); END_STATE(); - case 2176: + case 2205: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '.') ADVANCE(2179); - if (lookahead == '_') ADVANCE(2176); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2180); + if (lookahead == '.') ADVANCE(2208); + if (lookahead == '_') ADVANCE(2205); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1639); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2209); END_STATE(); - case 2177: + case 2206: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - 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(2180); + if (lookahead == '_') ADVANCE(2206); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1640); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2209); END_STATE(); - case 2178: + case 2207: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(2178); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2180); + if (lookahead == '_') ADVANCE(2207); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2209); END_STATE(); - case 2179: + case 2208: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(2179); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2180); + if (lookahead == '_') ADVANCE(2208); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2209); END_STATE(); - case 2180: + case 2209: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2180); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2209); END_STATE(); - case 2181: + case 2210: ACCEPT_TOKEN(aux_sym__unquoted_with_expr_token1); - if (lookahead == '#') ADVANCE(2194); + if (lookahead == '#') ADVANCE(2223); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && lookahead != '(' && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(2182); + lookahead != '|') ADVANCE(2211); END_STATE(); - case 2182: + case 2211: ACCEPT_TOKEN(aux_sym__unquoted_with_expr_token1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -32689,20 +33182,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(2182); + lookahead != '|') ADVANCE(2211); END_STATE(); - case 2183: + case 2212: ACCEPT_TOKEN(aux_sym__unquoted_in_list_with_expr_token1); - if (lookahead == '#') ADVANCE(2193); - if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(2184); + if (lookahead == '#') ADVANCE(2222); + if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(2213); END_STATE(); - case 2184: + case 2213: 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(2184); + if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(2213); END_STATE(); - case 2185: + case 2214: ACCEPT_TOKEN(aux_sym__unquoted_in_record_with_expr_token1); - if (lookahead == '#') ADVANCE(2192); + if (lookahead == '#') ADVANCE(2221); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -32711,9 +33204,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2186); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2215); END_STATE(); - case 2186: + case 2215: ACCEPT_TOKEN(aux_sym__unquoted_in_record_with_expr_token1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -32723,30 +33216,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2186); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2215); END_STATE(); - case 2187: + case 2216: ACCEPT_TOKEN(anon_sym_POUND); END_STATE(); - case 2188: + case 2217: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '\n') ADVANCE(662); - if (lookahead == '\r') ADVANCE(664); - if (lookahead != 0) ADVANCE(664); + if (lookahead == '\n') ADVANCE(673); + if (lookahead == '\r') ADVANCE(675); + if (lookahead != 0) ADVANCE(675); END_STATE(); - case 2189: + case 2218: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '!') ADVANCE(661); + if (lookahead == '!') ADVANCE(672); END_STATE(); - case 2190: + case 2219: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1066); END_STATE(); - case 2191: + case 2220: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(1714); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(1743); END_STATE(); - case 2192: + case 2221: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -32756,13 +33249,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2186); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2215); END_STATE(); - case 2193: + case 2222: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(2184); + if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(2213); END_STATE(); - case 2194: + case 2223: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -32770,26 +33263,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(2182); + lookahead != '|') ADVANCE(2211); END_STATE(); - case 2195: + case 2224: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2197); + lookahead != '\n') ADVANCE(2226); END_STATE(); - case 2196: + case 2225: ACCEPT_TOKEN(aux_sym_comment_token1); - if (lookahead == '#') ADVANCE(2195); + if (lookahead == '#') ADVANCE(2224); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2196); + lookahead == ' ') ADVANCE(2225); if (lookahead != 0 && lookahead != '\t' && - lookahead != '\n') ADVANCE(2197); + lookahead != '\n') ADVANCE(2226); END_STATE(); - case 2197: + case 2226: ACCEPT_TOKEN(aux_sym_comment_token1); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2197); + lookahead != '\n') ADVANCE(2226); END_STATE(); default: return false; @@ -33337,7 +33830,7 @@ 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 = 628, .external_lex_state = 2}, + [1] = {.lex_state = 639, .external_lex_state = 2}, [2] = {.lex_state = 33, .external_lex_state = 2}, [3] = {.lex_state = 33, .external_lex_state = 2}, [4] = {.lex_state = 33, .external_lex_state = 2}, @@ -33352,184 +33845,184 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [13] = {.lex_state = 33, .external_lex_state = 2}, [14] = {.lex_state = 33, .external_lex_state = 2}, [15] = {.lex_state = 33, .external_lex_state = 2}, - [16] = {.lex_state = 620, .external_lex_state = 2}, - [17] = {.lex_state = 620, .external_lex_state = 2}, - [18] = {.lex_state = 620, .external_lex_state = 2}, - [19] = {.lex_state = 620, .external_lex_state = 2}, - [20] = {.lex_state = 620, .external_lex_state = 2}, - [21] = {.lex_state = 620, .external_lex_state = 2}, - [22] = {.lex_state = 620, .external_lex_state = 2}, - [23] = {.lex_state = 620, .external_lex_state = 2}, - [24] = {.lex_state = 620, .external_lex_state = 2}, - [25] = {.lex_state = 620, .external_lex_state = 2}, - [26] = {.lex_state = 620, .external_lex_state = 2}, - [27] = {.lex_state = 620, .external_lex_state = 2}, - [28] = {.lex_state = 620, .external_lex_state = 2}, - [29] = {.lex_state = 620, .external_lex_state = 2}, - [30] = {.lex_state = 620, .external_lex_state = 2}, - [31] = {.lex_state = 620, .external_lex_state = 2}, - [32] = {.lex_state = 620, .external_lex_state = 2}, - [33] = {.lex_state = 620, .external_lex_state = 2}, - [34] = {.lex_state = 620, .external_lex_state = 2}, + [16] = {.lex_state = 631, .external_lex_state = 2}, + [17] = {.lex_state = 631, .external_lex_state = 2}, + [18] = {.lex_state = 631, .external_lex_state = 2}, + [19] = {.lex_state = 631, .external_lex_state = 2}, + [20] = {.lex_state = 631, .external_lex_state = 2}, + [21] = {.lex_state = 631, .external_lex_state = 2}, + [22] = {.lex_state = 631, .external_lex_state = 2}, + [23] = {.lex_state = 631, .external_lex_state = 2}, + [24] = {.lex_state = 631, .external_lex_state = 2}, + [25] = {.lex_state = 631, .external_lex_state = 2}, + [26] = {.lex_state = 631, .external_lex_state = 2}, + [27] = {.lex_state = 631, .external_lex_state = 2}, + [28] = {.lex_state = 631, .external_lex_state = 2}, + [29] = {.lex_state = 631, .external_lex_state = 2}, + [30] = {.lex_state = 631, .external_lex_state = 2}, + [31] = {.lex_state = 631, .external_lex_state = 2}, + [32] = {.lex_state = 631, .external_lex_state = 2}, + [33] = {.lex_state = 631, .external_lex_state = 2}, + [34] = {.lex_state = 631, .external_lex_state = 2}, [35] = {.lex_state = 31, .external_lex_state = 2}, - [36] = {.lex_state = 620, .external_lex_state = 2}, - [37] = {.lex_state = 31, .external_lex_state = 2}, + [36] = {.lex_state = 31, .external_lex_state = 2}, + [37] = {.lex_state = 631, .external_lex_state = 2}, [38] = {.lex_state = 31, .external_lex_state = 2}, - [39] = {.lex_state = 620, .external_lex_state = 2}, - [40] = {.lex_state = 31, .external_lex_state = 2}, - [41] = {.lex_state = 620, .external_lex_state = 2}, - [42] = {.lex_state = 620, .external_lex_state = 2}, + [39] = {.lex_state = 631, .external_lex_state = 2}, + [40] = {.lex_state = 631, .external_lex_state = 2}, + [41] = {.lex_state = 631, .external_lex_state = 2}, + [42] = {.lex_state = 31, .external_lex_state = 2}, [43] = {.lex_state = 31, .external_lex_state = 2}, - [44] = {.lex_state = 620, .external_lex_state = 2}, - [45] = {.lex_state = 31, .external_lex_state = 2}, + [44] = {.lex_state = 31, .external_lex_state = 2}, + [45] = {.lex_state = 631, .external_lex_state = 2}, [46] = {.lex_state = 31, .external_lex_state = 2}, - [47] = {.lex_state = 620, .external_lex_state = 2}, + [47] = {.lex_state = 631, .external_lex_state = 2}, [48] = {.lex_state = 31, .external_lex_state = 2}, - [49] = {.lex_state = 620, .external_lex_state = 2}, - [50] = {.lex_state = 620, .external_lex_state = 2}, + [49] = {.lex_state = 631, .external_lex_state = 2}, + [50] = {.lex_state = 631, .external_lex_state = 2}, [51] = {.lex_state = 31, .external_lex_state = 2}, - [52] = {.lex_state = 620, .external_lex_state = 2}, + [52] = {.lex_state = 631, .external_lex_state = 2}, [53] = {.lex_state = 31, .external_lex_state = 2}, - [54] = {.lex_state = 620, .external_lex_state = 2}, - [55] = {.lex_state = 31, .external_lex_state = 2}, - [56] = {.lex_state = 620, .external_lex_state = 2}, + [54] = {.lex_state = 31, .external_lex_state = 2}, + [55] = {.lex_state = 631, .external_lex_state = 2}, + [56] = {.lex_state = 631, .external_lex_state = 2}, [57] = {.lex_state = 31, .external_lex_state = 2}, - [58] = {.lex_state = 620, .external_lex_state = 2}, + [58] = {.lex_state = 631, .external_lex_state = 2}, [59] = {.lex_state = 31, .external_lex_state = 2}, - [60] = {.lex_state = 620, .external_lex_state = 2}, + [60] = {.lex_state = 631, .external_lex_state = 2}, [61] = {.lex_state = 31, .external_lex_state = 2}, - [62] = {.lex_state = 620, .external_lex_state = 2}, - [63] = {.lex_state = 31, .external_lex_state = 2}, - [64] = {.lex_state = 620, .external_lex_state = 2}, - [65] = {.lex_state = 620, .external_lex_state = 2}, + [62] = {.lex_state = 631, .external_lex_state = 2}, + [63] = {.lex_state = 631, .external_lex_state = 2}, + [64] = {.lex_state = 31, .external_lex_state = 2}, + [65] = {.lex_state = 631, .external_lex_state = 2}, [66] = {.lex_state = 31, .external_lex_state = 2}, - [67] = {.lex_state = 620, .external_lex_state = 2}, + [67] = {.lex_state = 31, .external_lex_state = 2}, [68] = {.lex_state = 31, .external_lex_state = 2}, [69] = {.lex_state = 31, .external_lex_state = 2}, [70] = {.lex_state = 31, .external_lex_state = 2}, [71] = {.lex_state = 31, .external_lex_state = 2}, [72] = {.lex_state = 31, .external_lex_state = 2}, - [73] = {.lex_state = 31, .external_lex_state = 2}, - [74] = {.lex_state = 31, .external_lex_state = 2}, + [73] = {.lex_state = 631, .external_lex_state = 2}, + [74] = {.lex_state = 631, .external_lex_state = 2}, [75] = {.lex_state = 31, .external_lex_state = 2}, - [76] = {.lex_state = 620, .external_lex_state = 2}, - [77] = {.lex_state = 620, .external_lex_state = 2}, - [78] = {.lex_state = 620, .external_lex_state = 2}, - [79] = {.lex_state = 620, .external_lex_state = 2}, - [80] = {.lex_state = 620, .external_lex_state = 2}, - [81] = {.lex_state = 620, .external_lex_state = 2}, - [82] = {.lex_state = 620, .external_lex_state = 2}, - [83] = {.lex_state = 620, .external_lex_state = 2}, - [84] = {.lex_state = 620, .external_lex_state = 2}, - [85] = {.lex_state = 620, .external_lex_state = 2}, - [86] = {.lex_state = 620, .external_lex_state = 2}, - [87] = {.lex_state = 620, .external_lex_state = 2}, - [88] = {.lex_state = 620, .external_lex_state = 2}, - [89] = {.lex_state = 620, .external_lex_state = 2}, - [90] = {.lex_state = 620, .external_lex_state = 2}, - [91] = {.lex_state = 620, .external_lex_state = 2}, - [92] = {.lex_state = 1155}, - [93] = {.lex_state = 1170}, - [94] = {.lex_state = 1156}, - [95] = {.lex_state = 1158}, - [96] = {.lex_state = 1171}, - [97] = {.lex_state = 1329}, - [98] = {.lex_state = 1145}, - [99] = {.lex_state = 1156}, - [100] = {.lex_state = 1151}, - [101] = {.lex_state = 1323}, - [102] = {.lex_state = 1147}, - [103] = {.lex_state = 1329}, - [104] = {.lex_state = 1323}, - [105] = {.lex_state = 43, .external_lex_state = 2}, - [106] = {.lex_state = 1325}, - [107] = {.lex_state = 1157}, - [108] = {.lex_state = 1157}, - [109] = {.lex_state = 1157}, - [110] = {.lex_state = 1160}, - [111] = {.lex_state = 1147}, - [112] = {.lex_state = 1325}, - [113] = {.lex_state = 1160}, - [114] = {.lex_state = 1157}, - [115] = {.lex_state = 624, .external_lex_state = 2}, - [116] = {.lex_state = 1327}, - [117] = {.lex_state = 1325}, - [118] = {.lex_state = 1149}, - [119] = {.lex_state = 1149}, - [120] = {.lex_state = 1327}, - [121] = {.lex_state = 1325}, - [122] = {.lex_state = 1162}, - [123] = {.lex_state = 1327}, - [124] = {.lex_state = 1149}, - [125] = {.lex_state = 1162}, - [126] = {.lex_state = 1327}, - [127] = {.lex_state = 1162}, - [128] = {.lex_state = 1173}, - [129] = {.lex_state = 624, .external_lex_state = 2}, - [130] = {.lex_state = 624, .external_lex_state = 2}, - [131] = {.lex_state = 1164}, - [132] = {.lex_state = 1149}, - [133] = {.lex_state = 1162}, - [134] = {.lex_state = 1327}, - [135] = {.lex_state = 1327}, - [136] = {.lex_state = 1166}, - [137] = {.lex_state = 1327}, - [138] = {.lex_state = 1166}, - [139] = {.lex_state = 1327}, - [140] = {.lex_state = 1168}, - [141] = {.lex_state = 1168}, - [142] = {.lex_state = 1168}, - [143] = {.lex_state = 1168}, - [144] = {.lex_state = 1175}, - [145] = {.lex_state = 620, .external_lex_state = 2}, - [146] = {.lex_state = 620, .external_lex_state = 2}, - [147] = {.lex_state = 620, .external_lex_state = 2}, - [148] = {.lex_state = 620, .external_lex_state = 2}, - [149] = {.lex_state = 620, .external_lex_state = 2}, - [150] = {.lex_state = 620, .external_lex_state = 2}, - [151] = {.lex_state = 620, .external_lex_state = 2}, - [152] = {.lex_state = 620, .external_lex_state = 2}, - [153] = {.lex_state = 620, .external_lex_state = 2}, - [154] = {.lex_state = 620, .external_lex_state = 2}, - [155] = {.lex_state = 620, .external_lex_state = 2}, - [156] = {.lex_state = 620, .external_lex_state = 2}, - [157] = {.lex_state = 620, .external_lex_state = 2}, - [158] = {.lex_state = 1153}, - [159] = {.lex_state = 620, .external_lex_state = 2}, - [160] = {.lex_state = 1153}, - [161] = {.lex_state = 1331}, - [162] = {.lex_state = 620, .external_lex_state = 2}, - [163] = {.lex_state = 620, .external_lex_state = 2}, - [164] = {.lex_state = 620, .external_lex_state = 2}, - [165] = {.lex_state = 1331}, - [166] = {.lex_state = 620, .external_lex_state = 2}, - [167] = {.lex_state = 620, .external_lex_state = 2}, - [168] = {.lex_state = 620, .external_lex_state = 2}, - [169] = {.lex_state = 620, .external_lex_state = 2}, - [170] = {.lex_state = 620, .external_lex_state = 2}, - [171] = {.lex_state = 1175}, - [172] = {.lex_state = 620, .external_lex_state = 2}, - [173] = {.lex_state = 1175}, - [174] = {.lex_state = 1175}, - [175] = {.lex_state = 620, .external_lex_state = 2}, - [176] = {.lex_state = 620, .external_lex_state = 2}, - [177] = {.lex_state = 620, .external_lex_state = 2}, - [178] = {.lex_state = 620, .external_lex_state = 2}, - [179] = {.lex_state = 620, .external_lex_state = 2}, - [180] = {.lex_state = 620, .external_lex_state = 2}, - [181] = {.lex_state = 620, .external_lex_state = 2}, - [182] = {.lex_state = 620, .external_lex_state = 2}, - [183] = {.lex_state = 620, .external_lex_state = 2}, - [184] = {.lex_state = 620, .external_lex_state = 2}, - [185] = {.lex_state = 620, .external_lex_state = 2}, - [186] = {.lex_state = 620, .external_lex_state = 2}, - [187] = {.lex_state = 1331}, - [188] = {.lex_state = 620, .external_lex_state = 2}, - [189] = {.lex_state = 620, .external_lex_state = 2}, - [190] = {.lex_state = 1331}, - [191] = {.lex_state = 620, .external_lex_state = 2}, - [192] = {.lex_state = 1177}, - [193] = {.lex_state = 1177}, + [76] = {.lex_state = 631, .external_lex_state = 2}, + [77] = {.lex_state = 31, .external_lex_state = 2}, + [78] = {.lex_state = 631, .external_lex_state = 2}, + [79] = {.lex_state = 631, .external_lex_state = 2}, + [80] = {.lex_state = 631, .external_lex_state = 2}, + [81] = {.lex_state = 631, .external_lex_state = 2}, + [82] = {.lex_state = 631, .external_lex_state = 2}, + [83] = {.lex_state = 631, .external_lex_state = 2}, + [84] = {.lex_state = 631, .external_lex_state = 2}, + [85] = {.lex_state = 631, .external_lex_state = 2}, + [86] = {.lex_state = 631, .external_lex_state = 2}, + [87] = {.lex_state = 631, .external_lex_state = 2}, + [88] = {.lex_state = 631, .external_lex_state = 2}, + [89] = {.lex_state = 631, .external_lex_state = 2}, + [90] = {.lex_state = 631, .external_lex_state = 2}, + [91] = {.lex_state = 631, .external_lex_state = 2}, + [92] = {.lex_state = 1179}, + [93] = {.lex_state = 1194}, + [94] = {.lex_state = 1353}, + [95] = {.lex_state = 1175}, + [96] = {.lex_state = 1180}, + [97] = {.lex_state = 1169}, + [98] = {.lex_state = 1180}, + [99] = {.lex_state = 1195}, + [100] = {.lex_state = 1347}, + [101] = {.lex_state = 1182}, + [102] = {.lex_state = 1349}, + [103] = {.lex_state = 1171}, + [104] = {.lex_state = 635, .external_lex_state = 2}, + [105] = {.lex_state = 1171}, + [106] = {.lex_state = 1181}, + [107] = {.lex_state = 1181}, + [108] = {.lex_state = 1181}, + [109] = {.lex_state = 1181}, + [110] = {.lex_state = 1184}, + [111] = {.lex_state = 1353}, + [112] = {.lex_state = 1347}, + [113] = {.lex_state = 1184}, + [114] = {.lex_state = 43, .external_lex_state = 2}, + [115] = {.lex_state = 1349}, + [116] = {.lex_state = 1186}, + [117] = {.lex_state = 1186}, + [118] = {.lex_state = 1173}, + [119] = {.lex_state = 1173}, + [120] = {.lex_state = 1186}, + [121] = {.lex_state = 1197}, + [122] = {.lex_state = 1188}, + [123] = {.lex_state = 1349}, + [124] = {.lex_state = 1173}, + [125] = {.lex_state = 1186}, + [126] = {.lex_state = 1349}, + [127] = {.lex_state = 635, .external_lex_state = 2}, + [128] = {.lex_state = 1351}, + [129] = {.lex_state = 1173}, + [130] = {.lex_state = 1351}, + [131] = {.lex_state = 635, .external_lex_state = 2}, + [132] = {.lex_state = 1351}, + [133] = {.lex_state = 1351}, + [134] = {.lex_state = 1190}, + [135] = {.lex_state = 1190}, + [136] = {.lex_state = 1351}, + [137] = {.lex_state = 1351}, + [138] = {.lex_state = 1351}, + [139] = {.lex_state = 1351}, + [140] = {.lex_state = 1192}, + [141] = {.lex_state = 1192}, + [142] = {.lex_state = 1192}, + [143] = {.lex_state = 1192}, + [144] = {.lex_state = 631, .external_lex_state = 2}, + [145] = {.lex_state = 631, .external_lex_state = 2}, + [146] = {.lex_state = 631, .external_lex_state = 2}, + [147] = {.lex_state = 631, .external_lex_state = 2}, + [148] = {.lex_state = 631, .external_lex_state = 2}, + [149] = {.lex_state = 631, .external_lex_state = 2}, + [150] = {.lex_state = 631, .external_lex_state = 2}, + [151] = {.lex_state = 631, .external_lex_state = 2}, + [152] = {.lex_state = 631, .external_lex_state = 2}, + [153] = {.lex_state = 631, .external_lex_state = 2}, + [154] = {.lex_state = 631, .external_lex_state = 2}, + [155] = {.lex_state = 631, .external_lex_state = 2}, + [156] = {.lex_state = 631, .external_lex_state = 2}, + [157] = {.lex_state = 631, .external_lex_state = 2}, + [158] = {.lex_state = 631, .external_lex_state = 2}, + [159] = {.lex_state = 631, .external_lex_state = 2}, + [160] = {.lex_state = 631, .external_lex_state = 2}, + [161] = {.lex_state = 631, .external_lex_state = 2}, + [162] = {.lex_state = 631, .external_lex_state = 2}, + [163] = {.lex_state = 631, .external_lex_state = 2}, + [164] = {.lex_state = 631, .external_lex_state = 2}, + [165] = {.lex_state = 631, .external_lex_state = 2}, + [166] = {.lex_state = 631, .external_lex_state = 2}, + [167] = {.lex_state = 631, .external_lex_state = 2}, + [168] = {.lex_state = 631, .external_lex_state = 2}, + [169] = {.lex_state = 631, .external_lex_state = 2}, + [170] = {.lex_state = 631, .external_lex_state = 2}, + [171] = {.lex_state = 631, .external_lex_state = 2}, + [172] = {.lex_state = 631, .external_lex_state = 2}, + [173] = {.lex_state = 631, .external_lex_state = 2}, + [174] = {.lex_state = 1177}, + [175] = {.lex_state = 1177}, + [176] = {.lex_state = 631, .external_lex_state = 2}, + [177] = {.lex_state = 631, .external_lex_state = 2}, + [178] = {.lex_state = 631, .external_lex_state = 2}, + [179] = {.lex_state = 631, .external_lex_state = 2}, + [180] = {.lex_state = 631, .external_lex_state = 2}, + [181] = {.lex_state = 631, .external_lex_state = 2}, + [182] = {.lex_state = 1199}, + [183] = {.lex_state = 1199}, + [184] = {.lex_state = 631, .external_lex_state = 2}, + [185] = {.lex_state = 1199}, + [186] = {.lex_state = 1199}, + [187] = {.lex_state = 631, .external_lex_state = 2}, + [188] = {.lex_state = 1355}, + [189] = {.lex_state = 1355}, + [190] = {.lex_state = 1355}, + [191] = {.lex_state = 1355}, + [192] = {.lex_state = 1201}, + [193] = {.lex_state = 1201}, [194] = {.lex_state = 44, .external_lex_state = 2}, [195] = {.lex_state = 36, .external_lex_state = 2}, [196] = {.lex_state = 36, .external_lex_state = 2}, @@ -33603,254 +34096,254 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [264] = {.lex_state = 36, .external_lex_state = 2}, [265] = {.lex_state = 36, .external_lex_state = 2}, [266] = {.lex_state = 36, .external_lex_state = 2}, - [267] = {.lex_state = 1159}, - [268] = {.lex_state = 1330}, - [269] = {.lex_state = 1324}, - [270] = {.lex_state = 1152}, - [271] = {.lex_state = 1146}, - [272] = {.lex_state = 1172}, - [273] = {.lex_state = 1161}, - [274] = {.lex_state = 36, .external_lex_state = 2}, - [275] = {.lex_state = 1326}, - [276] = {.lex_state = 1326}, - [277] = {.lex_state = 1148}, - [278] = {.lex_state = 36, .external_lex_state = 2}, - [279] = {.lex_state = 1148}, + [267] = {.lex_state = 36, .external_lex_state = 2}, + [268] = {.lex_state = 36, .external_lex_state = 2}, + [269] = {.lex_state = 36, .external_lex_state = 2}, + [270] = {.lex_state = 36, .external_lex_state = 2}, + [271] = {.lex_state = 36, .external_lex_state = 2}, + [272] = {.lex_state = 1354}, + [273] = {.lex_state = 1348}, + [274] = {.lex_state = 1176}, + [275] = {.lex_state = 1170}, + [276] = {.lex_state = 36, .external_lex_state = 2}, + [277] = {.lex_state = 36, .external_lex_state = 2}, + [278] = {.lex_state = 1196}, + [279] = {.lex_state = 1183}, [280] = {.lex_state = 36, .external_lex_state = 2}, - [281] = {.lex_state = 1161}, + [281] = {.lex_state = 36, .external_lex_state = 2}, [282] = {.lex_state = 36, .external_lex_state = 2}, [283] = {.lex_state = 36, .external_lex_state = 2}, - [284] = {.lex_state = 1330}, + [284] = {.lex_state = 36, .external_lex_state = 2}, [285] = {.lex_state = 36, .external_lex_state = 2}, - [286] = {.lex_state = 36, .external_lex_state = 2}, - [287] = {.lex_state = 1324}, - [288] = {.lex_state = 36, .external_lex_state = 2}, - [289] = {.lex_state = 36, .external_lex_state = 2}, - [290] = {.lex_state = 36, .external_lex_state = 2}, - [291] = {.lex_state = 36, .external_lex_state = 2}, - [292] = {.lex_state = 36, .external_lex_state = 2}, - [293] = {.lex_state = 36, .external_lex_state = 2}, - [294] = {.lex_state = 1174}, - [295] = {.lex_state = 1326}, - [296] = {.lex_state = 1165}, - [297] = {.lex_state = 1150}, - [298] = {.lex_state = 1150}, - [299] = {.lex_state = 1328}, - [300] = {.lex_state = 1150}, - [301] = {.lex_state = 1328}, - [302] = {.lex_state = 1328}, - [303] = {.lex_state = 1163}, - [304] = {.lex_state = 1326}, - [305] = {.lex_state = 1328}, - [306] = {.lex_state = 1150}, - [307] = {.lex_state = 1163}, - [308] = {.lex_state = 1163}, - [309] = {.lex_state = 1163}, - [310] = {.lex_state = 1167}, - [311] = {.lex_state = 1167}, - [312] = {.lex_state = 1328}, - [313] = {.lex_state = 1328}, - [314] = {.lex_state = 1328}, - [315] = {.lex_state = 1328}, - [316] = {.lex_state = 1169}, - [317] = {.lex_state = 1169}, - [318] = {.lex_state = 1169}, - [319] = {.lex_state = 1169}, + [286] = {.lex_state = 1354}, + [287] = {.lex_state = 1350}, + [288] = {.lex_state = 1172}, + [289] = {.lex_state = 1350}, + [290] = {.lex_state = 1172}, + [291] = {.lex_state = 1185}, + [292] = {.lex_state = 1348}, + [293] = {.lex_state = 1185}, + [294] = {.lex_state = 1352}, + [295] = {.lex_state = 1352}, + [296] = {.lex_state = 1174}, + [297] = {.lex_state = 1352}, + [298] = {.lex_state = 1174}, + [299] = {.lex_state = 1174}, + [300] = {.lex_state = 1187}, + [301] = {.lex_state = 1187}, + [302] = {.lex_state = 1198}, + [303] = {.lex_state = 1189}, + [304] = {.lex_state = 1350}, + [305] = {.lex_state = 1187}, + [306] = {.lex_state = 1350}, + [307] = {.lex_state = 1352}, + [308] = {.lex_state = 1174}, + [309] = {.lex_state = 1187}, + [310] = {.lex_state = 1191}, + [311] = {.lex_state = 1352}, + [312] = {.lex_state = 1352}, + [313] = {.lex_state = 1352}, + [314] = {.lex_state = 1191}, + [315] = {.lex_state = 1352}, + [316] = {.lex_state = 1193}, + [317] = {.lex_state = 1193}, + [318] = {.lex_state = 1193}, + [319] = {.lex_state = 1193}, [320] = {.lex_state = 45, .external_lex_state = 2}, [321] = {.lex_state = 45, .external_lex_state = 2}, [322] = {.lex_state = 45, .external_lex_state = 2}, - [323] = {.lex_state = 1332}, - [324] = {.lex_state = 1332}, - [325] = {.lex_state = 1154}, - [326] = {.lex_state = 1176}, - [327] = {.lex_state = 1154}, - [328] = {.lex_state = 1176}, - [329] = {.lex_state = 1332}, - [330] = {.lex_state = 1332}, - [331] = {.lex_state = 1178}, - [332] = {.lex_state = 1178}, + [323] = {.lex_state = 1356}, + [324] = {.lex_state = 1356}, + [325] = {.lex_state = 1178}, + [326] = {.lex_state = 1178}, + [327] = {.lex_state = 1200}, + [328] = {.lex_state = 1200}, + [329] = {.lex_state = 1356}, + [330] = {.lex_state = 1356}, + [331] = {.lex_state = 1202}, + [332] = {.lex_state = 1202}, [333] = {.lex_state = 123}, - [334] = {.lex_state = 123}, - [335] = {.lex_state = 573}, - [336] = {.lex_state = 573}, + [334] = {.lex_state = 584}, + [335] = {.lex_state = 584}, + [336] = {.lex_state = 123}, [337] = {.lex_state = 123}, - [338] = {.lex_state = 45, .external_lex_state = 2}, - [339] = {.lex_state = 123}, - [340] = {.lex_state = 45, .external_lex_state = 2}, - [341] = {.lex_state = 45, .external_lex_state = 2}, - [342] = {.lex_state = 573}, - [343] = {.lex_state = 573}, + [338] = {.lex_state = 123}, + [339] = {.lex_state = 45, .external_lex_state = 2}, + [340] = {.lex_state = 123}, + [341] = {.lex_state = 123}, + [342] = {.lex_state = 123}, + [343] = {.lex_state = 123}, [344] = {.lex_state = 45, .external_lex_state = 2}, [345] = {.lex_state = 45, .external_lex_state = 2}, - [346] = {.lex_state = 573}, - [347] = {.lex_state = 573}, - [348] = {.lex_state = 573}, - [349] = {.lex_state = 573}, - [350] = {.lex_state = 573}, - [351] = {.lex_state = 573}, - [352] = {.lex_state = 45, .external_lex_state = 2}, - [353] = {.lex_state = 123}, - [354] = {.lex_state = 123}, + [346] = {.lex_state = 123}, + [347] = {.lex_state = 584}, + [348] = {.lex_state = 123}, + [349] = {.lex_state = 584}, + [350] = {.lex_state = 45, .external_lex_state = 2}, + [351] = {.lex_state = 45, .external_lex_state = 2}, + [352] = {.lex_state = 123}, + [353] = {.lex_state = 45, .external_lex_state = 2}, + [354] = {.lex_state = 45, .external_lex_state = 2}, [355] = {.lex_state = 123}, - [356] = {.lex_state = 123}, - [357] = {.lex_state = 123}, + [356] = {.lex_state = 584}, + [357] = {.lex_state = 45, .external_lex_state = 2}, [358] = {.lex_state = 45, .external_lex_state = 2}, - [359] = {.lex_state = 123}, - [360] = {.lex_state = 123}, - [361] = {.lex_state = 45, .external_lex_state = 2}, + [359] = {.lex_state = 45, .external_lex_state = 2}, + [360] = {.lex_state = 584}, + [361] = {.lex_state = 584}, [362] = {.lex_state = 45, .external_lex_state = 2}, - [363] = {.lex_state = 45, .external_lex_state = 2}, - [364] = {.lex_state = 123}, + [363] = {.lex_state = 584}, + [364] = {.lex_state = 584}, [365] = {.lex_state = 123}, - [366] = {.lex_state = 45, .external_lex_state = 2}, - [367] = {.lex_state = 123}, - [368] = {.lex_state = 573}, - [369] = {.lex_state = 573}, - [370] = {.lex_state = 45, .external_lex_state = 2}, - [371] = {.lex_state = 573}, + [366] = {.lex_state = 123}, + [367] = {.lex_state = 584}, + [368] = {.lex_state = 45, .external_lex_state = 2}, + [369] = {.lex_state = 123}, + [370] = {.lex_state = 584}, + [371] = {.lex_state = 584}, [372] = {.lex_state = 123}, - [373] = {.lex_state = 123}, - [374] = {.lex_state = 573}, + [373] = {.lex_state = 584}, + [374] = {.lex_state = 584}, [375] = {.lex_state = 45, .external_lex_state = 2}, - [376] = {.lex_state = 573}, - [377] = {.lex_state = 45, .external_lex_state = 2}, - [378] = {.lex_state = 573}, - [379] = {.lex_state = 573}, - [380] = {.lex_state = 573}, - [381] = {.lex_state = 45, .external_lex_state = 2}, - [382] = {.lex_state = 45, .external_lex_state = 2}, - [383] = {.lex_state = 45, .external_lex_state = 2}, - [384] = {.lex_state = 573}, - [385] = {.lex_state = 45, .external_lex_state = 2}, - [386] = {.lex_state = 573}, - [387] = {.lex_state = 577}, + [376] = {.lex_state = 45, .external_lex_state = 2}, + [377] = {.lex_state = 584}, + [378] = {.lex_state = 45, .external_lex_state = 2}, + [379] = {.lex_state = 584}, + [380] = {.lex_state = 584}, + [381] = {.lex_state = 584}, + [382] = {.lex_state = 584}, + [383] = {.lex_state = 584}, + [384] = {.lex_state = 45, .external_lex_state = 2}, + [385] = {.lex_state = 588}, + [386] = {.lex_state = 45, .external_lex_state = 2}, + [387] = {.lex_state = 123}, [388] = {.lex_state = 45, .external_lex_state = 2}, - [389] = {.lex_state = 573}, - [390] = {.lex_state = 45, .external_lex_state = 2}, - [391] = {.lex_state = 123}, + [389] = {.lex_state = 45, .external_lex_state = 2}, + [390] = {.lex_state = 588}, + [391] = {.lex_state = 588}, [392] = {.lex_state = 45, .external_lex_state = 2}, - [393] = {.lex_state = 45, .external_lex_state = 2}, + [393] = {.lex_state = 584}, [394] = {.lex_state = 45, .external_lex_state = 2}, - [395] = {.lex_state = 573}, - [396] = {.lex_state = 573}, - [397] = {.lex_state = 573}, - [398] = {.lex_state = 577}, + [395] = {.lex_state = 45, .external_lex_state = 2}, + [396] = {.lex_state = 584}, + [397] = {.lex_state = 584}, + [398] = {.lex_state = 584}, [399] = {.lex_state = 45, .external_lex_state = 2}, - [400] = {.lex_state = 577}, - [401] = {.lex_state = 573}, - [402] = {.lex_state = 574}, - [403] = {.lex_state = 577}, - [404] = {.lex_state = 574}, - [405] = {.lex_state = 573}, - [406] = {.lex_state = 573}, - [407] = {.lex_state = 577}, - [408] = {.lex_state = 577}, - [409] = {.lex_state = 574}, - [410] = {.lex_state = 579}, - [411] = {.lex_state = 577}, - [412] = {.lex_state = 577}, - [413] = {.lex_state = 577}, - [414] = {.lex_state = 579}, - [415] = {.lex_state = 573}, - [416] = {.lex_state = 577}, - [417] = {.lex_state = 574}, - [418] = {.lex_state = 579}, - [419] = {.lex_state = 577}, - [420] = {.lex_state = 574}, - [421] = {.lex_state = 574}, - [422] = {.lex_state = 581}, + [400] = {.lex_state = 584}, + [401] = {.lex_state = 45, .external_lex_state = 2}, + [402] = {.lex_state = 584}, + [403] = {.lex_state = 588}, + [404] = {.lex_state = 585}, + [405] = {.lex_state = 585}, + [406] = {.lex_state = 588}, + [407] = {.lex_state = 584}, + [408] = {.lex_state = 588}, + [409] = {.lex_state = 584}, + [410] = {.lex_state = 590}, + [411] = {.lex_state = 588}, + [412] = {.lex_state = 585}, + [413] = {.lex_state = 588}, + [414] = {.lex_state = 588}, + [415] = {.lex_state = 588}, + [416] = {.lex_state = 590}, + [417] = {.lex_state = 584}, + [418] = {.lex_state = 585}, + [419] = {.lex_state = 584}, + [420] = {.lex_state = 585}, + [421] = {.lex_state = 585}, + [422] = {.lex_state = 592}, [423] = {.lex_state = 585}, - [424] = {.lex_state = 573}, - [425] = {.lex_state = 579}, - [426] = {.lex_state = 574}, - [427] = {.lex_state = 574}, - [428] = {.lex_state = 617}, - [429] = {.lex_state = 574}, - [430] = {.lex_state = 574}, - [431] = {.lex_state = 573}, - [432] = {.lex_state = 574}, - [433] = {.lex_state = 573}, - [434] = {.lex_state = 574}, - [435] = {.lex_state = 577}, - [436] = {.lex_state = 573}, - [437] = {.lex_state = 574}, - [438] = {.lex_state = 589}, - [439] = {.lex_state = 573}, - [440] = {.lex_state = 581}, - [441] = {.lex_state = 583}, - [442] = {.lex_state = 574}, + [424] = {.lex_state = 585}, + [425] = {.lex_state = 585}, + [426] = {.lex_state = 588}, + [427] = {.lex_state = 596}, + [428] = {.lex_state = 585}, + [429] = {.lex_state = 585}, + [430] = {.lex_state = 584}, + [431] = {.lex_state = 585}, + [432] = {.lex_state = 628}, + [433] = {.lex_state = 585}, + [434] = {.lex_state = 584}, + [435] = {.lex_state = 590}, + [436] = {.lex_state = 588}, + [437] = {.lex_state = 590}, + [438] = {.lex_state = 584}, + [439] = {.lex_state = 588}, + [440] = {.lex_state = 602}, + [441] = {.lex_state = 592}, + [442] = {.lex_state = 596}, [443] = {.lex_state = 585}, - [444] = {.lex_state = 574}, - [445] = {.lex_state = 577}, - [446] = {.lex_state = 587}, - [447] = {.lex_state = 573}, - [448] = {.lex_state = 574}, - [449] = {.lex_state = 587}, - [450] = {.lex_state = 577}, - [451] = {.lex_state = 573}, - [452] = {.lex_state = 577}, - [453] = {.lex_state = 591}, - [454] = {.lex_state = 573}, - [455] = {.lex_state = 577}, - [456] = {.lex_state = 577}, - [457] = {.lex_state = 577}, - [458] = {.lex_state = 574}, - [459] = {.lex_state = 41, .external_lex_state = 2}, + [444] = {.lex_state = 584}, + [445] = {.lex_state = 41, .external_lex_state = 2}, + [446] = {.lex_state = 584}, + [447] = {.lex_state = 41, .external_lex_state = 2}, + [448] = {.lex_state = 585}, + [449] = {.lex_state = 41, .external_lex_state = 2}, + [450] = {.lex_state = 594}, + [451] = {.lex_state = 584}, + [452] = {.lex_state = 41, .external_lex_state = 2}, + [453] = {.lex_state = 598}, + [454] = {.lex_state = 41, .external_lex_state = 2}, + [455] = {.lex_state = 41, .external_lex_state = 2}, + [456] = {.lex_state = 585}, + [457] = {.lex_state = 588}, + [458] = {.lex_state = 585}, + [459] = {.lex_state = 588}, [460] = {.lex_state = 41, .external_lex_state = 2}, - [461] = {.lex_state = 589}, - [462] = {.lex_state = 41, .external_lex_state = 2}, - [463] = {.lex_state = 589}, - [464] = {.lex_state = 593}, - [465] = {.lex_state = 45, .external_lex_state = 2}, - [466] = {.lex_state = 589}, + [461] = {.lex_state = 588}, + [462] = {.lex_state = 588}, + [463] = {.lex_state = 588}, + [464] = {.lex_state = 41, .external_lex_state = 2}, + [465] = {.lex_state = 41, .external_lex_state = 2}, + [466] = {.lex_state = 598}, [467] = {.lex_state = 41, .external_lex_state = 2}, - [468] = {.lex_state = 589}, - [469] = {.lex_state = 587}, + [468] = {.lex_state = 41, .external_lex_state = 2}, + [469] = {.lex_state = 600}, [470] = {.lex_state = 41, .external_lex_state = 2}, - [471] = {.lex_state = 574}, - [472] = {.lex_state = 41, .external_lex_state = 2}, - [473] = {.lex_state = 41, .external_lex_state = 2}, - [474] = {.lex_state = 587}, + [471] = {.lex_state = 600}, + [472] = {.lex_state = 585}, + [473] = {.lex_state = 598}, + [474] = {.lex_state = 600}, [475] = {.lex_state = 41, .external_lex_state = 2}, - [476] = {.lex_state = 41, .external_lex_state = 2}, - [477] = {.lex_state = 41, .external_lex_state = 2}, - [478] = {.lex_state = 573}, - [479] = {.lex_state = 41, .external_lex_state = 2}, - [480] = {.lex_state = 41, .external_lex_state = 2}, - [481] = {.lex_state = 573}, - [482] = {.lex_state = 593}, - [483] = {.lex_state = 574}, - [484] = {.lex_state = 574}, - [485] = {.lex_state = 574}, - [486] = {.lex_state = 574}, - [487] = {.lex_state = 574}, - [488] = {.lex_state = 595}, - [489] = {.lex_state = 589}, - [490] = {.lex_state = 574}, - [491] = {.lex_state = 574}, - [492] = {.lex_state = 574}, - [493] = {.lex_state = 574}, - [494] = {.lex_state = 574}, - [495] = {.lex_state = 574}, - [496] = {.lex_state = 574}, - [497] = {.lex_state = 595}, - [498] = {.lex_state = 574}, - [499] = {.lex_state = 589}, - [500] = {.lex_state = 574}, - [501] = {.lex_state = 589}, - [502] = {.lex_state = 574}, - [503] = {.lex_state = 574}, - [504] = {.lex_state = 574}, - [505] = {.lex_state = 574}, - [506] = {.lex_state = 574}, - [507] = {.lex_state = 591}, - [508] = {.lex_state = 583}, - [509] = {.lex_state = 574}, - [510] = {.lex_state = 595}, - [511] = {.lex_state = 41, .external_lex_state = 2}, - [512] = {.lex_state = 42, .external_lex_state = 2}, - [513] = {.lex_state = 42, .external_lex_state = 2}, - [514] = {.lex_state = 42, .external_lex_state = 2}, + [476] = {.lex_state = 600}, + [477] = {.lex_state = 604}, + [478] = {.lex_state = 585}, + [479] = {.lex_state = 598}, + [480] = {.lex_state = 584}, + [481] = {.lex_state = 604}, + [482] = {.lex_state = 45, .external_lex_state = 2}, + [483] = {.lex_state = 600}, + [484] = {.lex_state = 584}, + [485] = {.lex_state = 619}, + [486] = {.lex_state = 600}, + [487] = {.lex_state = 585}, + [488] = {.lex_state = 606}, + [489] = {.lex_state = 600}, + [490] = {.lex_state = 585}, + [491] = {.lex_state = 585}, + [492] = {.lex_state = 585}, + [493] = {.lex_state = 606}, + [494] = {.lex_state = 602}, + [495] = {.lex_state = 585}, + [496] = {.lex_state = 585}, + [497] = {.lex_state = 585}, + [498] = {.lex_state = 606}, + [499] = {.lex_state = 41, .external_lex_state = 2}, + [500] = {.lex_state = 594}, + [501] = {.lex_state = 585}, + [502] = {.lex_state = 585}, + [503] = {.lex_state = 585}, + [504] = {.lex_state = 585}, + [505] = {.lex_state = 585}, + [506] = {.lex_state = 585}, + [507] = {.lex_state = 585}, + [508] = {.lex_state = 585}, + [509] = {.lex_state = 585}, + [510] = {.lex_state = 600}, + [511] = {.lex_state = 585}, + [512] = {.lex_state = 585}, + [513] = {.lex_state = 585}, + [514] = {.lex_state = 41, .external_lex_state = 2}, [515] = {.lex_state = 42, .external_lex_state = 2}, [516] = {.lex_state = 42, .external_lex_state = 2}, [517] = {.lex_state = 42, .external_lex_state = 2}, @@ -33860,15 +34353,15 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [521] = {.lex_state = 42, .external_lex_state = 2}, [522] = {.lex_state = 42, .external_lex_state = 2}, [523] = {.lex_state = 42, .external_lex_state = 2}, - [524] = {.lex_state = 42, .external_lex_state = 2}, - [525] = {.lex_state = 42, .external_lex_state = 2}, - [526] = {.lex_state = 595}, - [527] = {.lex_state = 608}, - [528] = {.lex_state = 595}, - [529] = {.lex_state = 41, .external_lex_state = 2}, - [530] = {.lex_state = 45, .external_lex_state = 2}, + [524] = {.lex_state = 604}, + [525] = {.lex_state = 585}, + [526] = {.lex_state = 585}, + [527] = {.lex_state = 619}, + [528] = {.lex_state = 619}, + [529] = {.lex_state = 42, .external_lex_state = 2}, + [530] = {.lex_state = 42, .external_lex_state = 2}, [531] = {.lex_state = 42, .external_lex_state = 2}, - [532] = {.lex_state = 45, .external_lex_state = 2}, + [532] = {.lex_state = 42, .external_lex_state = 2}, [533] = {.lex_state = 42, .external_lex_state = 2}, [534] = {.lex_state = 42, .external_lex_state = 2}, [535] = {.lex_state = 42, .external_lex_state = 2}, @@ -33891,10 +34384,10 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [552] = {.lex_state = 42, .external_lex_state = 2}, [553] = {.lex_state = 42, .external_lex_state = 2}, [554] = {.lex_state = 42, .external_lex_state = 2}, - [555] = {.lex_state = 42, .external_lex_state = 2}, - [556] = {.lex_state = 42, .external_lex_state = 2}, - [557] = {.lex_state = 42, .external_lex_state = 2}, - [558] = {.lex_state = 42, .external_lex_state = 2}, + [555] = {.lex_state = 606}, + [556] = {.lex_state = 606}, + [557] = {.lex_state = 604}, + [558] = {.lex_state = 45, .external_lex_state = 2}, [559] = {.lex_state = 42, .external_lex_state = 2}, [560] = {.lex_state = 42, .external_lex_state = 2}, [561] = {.lex_state = 42, .external_lex_state = 2}, @@ -33919,8 +34412,8 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [580] = {.lex_state = 42, .external_lex_state = 2}, [581] = {.lex_state = 42, .external_lex_state = 2}, [582] = {.lex_state = 42, .external_lex_state = 2}, - [583] = {.lex_state = 608}, - [584] = {.lex_state = 41, .external_lex_state = 2}, + [583] = {.lex_state = 42, .external_lex_state = 2}, + [584] = {.lex_state = 42, .external_lex_state = 2}, [585] = {.lex_state = 42, .external_lex_state = 2}, [586] = {.lex_state = 42, .external_lex_state = 2}, [587] = {.lex_state = 42, .external_lex_state = 2}, @@ -33935,14 +34428,14 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [596] = {.lex_state = 42, .external_lex_state = 2}, [597] = {.lex_state = 42, .external_lex_state = 2}, [598] = {.lex_state = 42, .external_lex_state = 2}, - [599] = {.lex_state = 45, .external_lex_state = 2}, + [599] = {.lex_state = 42, .external_lex_state = 2}, [600] = {.lex_state = 42, .external_lex_state = 2}, - [601] = {.lex_state = 593}, + [601] = {.lex_state = 42, .external_lex_state = 2}, [602] = {.lex_state = 42, .external_lex_state = 2}, [603] = {.lex_state = 42, .external_lex_state = 2}, [604] = {.lex_state = 42, .external_lex_state = 2}, [605] = {.lex_state = 42, .external_lex_state = 2}, - [606] = {.lex_state = 574}, + [606] = {.lex_state = 42, .external_lex_state = 2}, [607] = {.lex_state = 42, .external_lex_state = 2}, [608] = {.lex_state = 42, .external_lex_state = 2}, [609] = {.lex_state = 42, .external_lex_state = 2}, @@ -33958,9 +34451,9 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [619] = {.lex_state = 42, .external_lex_state = 2}, [620] = {.lex_state = 42, .external_lex_state = 2}, [621] = {.lex_state = 42, .external_lex_state = 2}, - [622] = {.lex_state = 574}, + [622] = {.lex_state = 42, .external_lex_state = 2}, [623] = {.lex_state = 42, .external_lex_state = 2}, - [624] = {.lex_state = 42, .external_lex_state = 2}, + [624] = {.lex_state = 45, .external_lex_state = 2}, [625] = {.lex_state = 42, .external_lex_state = 2}, [626] = {.lex_state = 42, .external_lex_state = 2}, [627] = {.lex_state = 42, .external_lex_state = 2}, @@ -34010,147 +34503,147 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [671] = {.lex_state = 42, .external_lex_state = 2}, [672] = {.lex_state = 42, .external_lex_state = 2}, [673] = {.lex_state = 42, .external_lex_state = 2}, - [674] = {.lex_state = 593}, + [674] = {.lex_state = 42, .external_lex_state = 2}, [675] = {.lex_state = 42, .external_lex_state = 2}, - [676] = {.lex_state = 42, .external_lex_state = 2}, + [676] = {.lex_state = 45, .external_lex_state = 2}, [677] = {.lex_state = 42, .external_lex_state = 2}, [678] = {.lex_state = 42, .external_lex_state = 2}, [679] = {.lex_state = 42, .external_lex_state = 2}, [680] = {.lex_state = 42, .external_lex_state = 2}, - [681] = {.lex_state = 574}, - [682] = {.lex_state = 595}, - [683] = {.lex_state = 574}, - [684] = {.lex_state = 574}, - [685] = {.lex_state = 574}, - [686] = {.lex_state = 574}, - [687] = {.lex_state = 574}, - [688] = {.lex_state = 574}, - [689] = {.lex_state = 595}, - [690] = {.lex_state = 574}, - [691] = {.lex_state = 574}, - [692] = {.lex_state = 574}, - [693] = {.lex_state = 597}, - [694] = {.lex_state = 595}, - [695] = {.lex_state = 574}, - [696] = {.lex_state = 608}, - [697] = {.lex_state = 574}, - [698] = {.lex_state = 599}, - [699] = {.lex_state = 574}, - [700] = {.lex_state = 574}, - [701] = {.lex_state = 574}, - [702] = {.lex_state = 608}, - [703] = {.lex_state = 574}, - [704] = {.lex_state = 574}, - [705] = {.lex_state = 574}, - [706] = {.lex_state = 574}, - [707] = {.lex_state = 574}, - [708] = {.lex_state = 574}, - [709] = {.lex_state = 574}, - [710] = {.lex_state = 574}, - [711] = {.lex_state = 574}, - [712] = {.lex_state = 608}, - [713] = {.lex_state = 574}, - [714] = {.lex_state = 574}, - [715] = {.lex_state = 574}, - [716] = {.lex_state = 595}, - [717] = {.lex_state = 574}, - [718] = {.lex_state = 595}, - [719] = {.lex_state = 574}, - [720] = {.lex_state = 608}, - [721] = {.lex_state = 574}, - [722] = {.lex_state = 574}, - [723] = {.lex_state = 574}, - [724] = {.lex_state = 42, .external_lex_state = 2}, - [725] = {.lex_state = 42, .external_lex_state = 2}, - [726] = {.lex_state = 574}, - [727] = {.lex_state = 574}, - [728] = {.lex_state = 574}, - [729] = {.lex_state = 574}, - [730] = {.lex_state = 574}, - [731] = {.lex_state = 574}, - [732] = {.lex_state = 42, .external_lex_state = 2}, - [733] = {.lex_state = 42, .external_lex_state = 2}, - [734] = {.lex_state = 42, .external_lex_state = 2}, - [735] = {.lex_state = 574}, - [736] = {.lex_state = 574}, - [737] = {.lex_state = 574}, - [738] = {.lex_state = 42, .external_lex_state = 2}, - [739] = {.lex_state = 574}, - [740] = {.lex_state = 42, .external_lex_state = 2}, - [741] = {.lex_state = 574}, - [742] = {.lex_state = 574}, - [743] = {.lex_state = 574}, - [744] = {.lex_state = 574}, - [745] = {.lex_state = 574}, - [746] = {.lex_state = 574}, - [747] = {.lex_state = 574}, - [748] = {.lex_state = 574}, - [749] = {.lex_state = 574}, - [750] = {.lex_state = 574}, - [751] = {.lex_state = 574}, - [752] = {.lex_state = 574}, - [753] = {.lex_state = 574}, - [754] = {.lex_state = 42, .external_lex_state = 2}, - [755] = {.lex_state = 42, .external_lex_state = 2}, - [756] = {.lex_state = 42, .external_lex_state = 2}, - [757] = {.lex_state = 42, .external_lex_state = 2}, + [681] = {.lex_state = 42, .external_lex_state = 2}, + [682] = {.lex_state = 619}, + [683] = {.lex_state = 585}, + [684] = {.lex_state = 585}, + [685] = {.lex_state = 585}, + [686] = {.lex_state = 585}, + [687] = {.lex_state = 585}, + [688] = {.lex_state = 585}, + [689] = {.lex_state = 585}, + [690] = {.lex_state = 585}, + [691] = {.lex_state = 585}, + [692] = {.lex_state = 619}, + [693] = {.lex_state = 585}, + [694] = {.lex_state = 585}, + [695] = {.lex_state = 585}, + [696] = {.lex_state = 606}, + [697] = {.lex_state = 585}, + [698] = {.lex_state = 41, .external_lex_state = 2}, + [699] = {.lex_state = 610}, + [700] = {.lex_state = 608}, + [701] = {.lex_state = 585}, + [702] = {.lex_state = 585}, + [703] = {.lex_state = 585}, + [704] = {.lex_state = 585}, + [705] = {.lex_state = 585}, + [706] = {.lex_state = 585}, + [707] = {.lex_state = 585}, + [708] = {.lex_state = 585}, + [709] = {.lex_state = 585}, + [710] = {.lex_state = 585}, + [711] = {.lex_state = 606}, + [712] = {.lex_state = 585}, + [713] = {.lex_state = 585}, + [714] = {.lex_state = 606}, + [715] = {.lex_state = 619}, + [716] = {.lex_state = 585}, + [717] = {.lex_state = 585}, + [718] = {.lex_state = 585}, + [719] = {.lex_state = 41, .external_lex_state = 2}, + [720] = {.lex_state = 606}, + [721] = {.lex_state = 41, .external_lex_state = 2}, + [722] = {.lex_state = 41, .external_lex_state = 2}, + [723] = {.lex_state = 41, .external_lex_state = 2}, + [724] = {.lex_state = 585}, + [725] = {.lex_state = 41, .external_lex_state = 2}, + [726] = {.lex_state = 606}, + [727] = {.lex_state = 632, .external_lex_state = 2}, + [728] = {.lex_state = 632, .external_lex_state = 2}, + [729] = {.lex_state = 585}, + [730] = {.lex_state = 632, .external_lex_state = 2}, + [731] = {.lex_state = 585}, + [732] = {.lex_state = 585}, + [733] = {.lex_state = 585}, + [734] = {.lex_state = 585}, + [735] = {.lex_state = 610}, + [736] = {.lex_state = 585}, + [737] = {.lex_state = 585}, + [738] = {.lex_state = 614}, + [739] = {.lex_state = 585}, + [740] = {.lex_state = 585}, + [741] = {.lex_state = 585}, + [742] = {.lex_state = 585}, + [743] = {.lex_state = 608}, + [744] = {.lex_state = 585}, + [745] = {.lex_state = 585}, + [746] = {.lex_state = 612}, + [747] = {.lex_state = 612}, + [748] = {.lex_state = 585}, + [749] = {.lex_state = 585}, + [750] = {.lex_state = 585}, + [751] = {.lex_state = 42, .external_lex_state = 2}, + [752] = {.lex_state = 585}, + [753] = {.lex_state = 585}, + [754] = {.lex_state = 585}, + [755] = {.lex_state = 585}, + [756] = {.lex_state = 585}, + [757] = {.lex_state = 585}, [758] = {.lex_state = 42, .external_lex_state = 2}, - [759] = {.lex_state = 42, .external_lex_state = 2}, - [760] = {.lex_state = 42, .external_lex_state = 2}, + [759] = {.lex_state = 585}, + [760] = {.lex_state = 585}, [761] = {.lex_state = 42, .external_lex_state = 2}, - [762] = {.lex_state = 42, .external_lex_state = 2}, - [763] = {.lex_state = 42, .external_lex_state = 2}, + [762] = {.lex_state = 585}, + [763] = {.lex_state = 585}, [764] = {.lex_state = 42, .external_lex_state = 2}, [765] = {.lex_state = 42, .external_lex_state = 2}, [766] = {.lex_state = 42, .external_lex_state = 2}, [767] = {.lex_state = 42, .external_lex_state = 2}, - [768] = {.lex_state = 574}, - [769] = {.lex_state = 574}, + [768] = {.lex_state = 42, .external_lex_state = 2}, + [769] = {.lex_state = 42, .external_lex_state = 2}, [770] = {.lex_state = 42, .external_lex_state = 2}, - [771] = {.lex_state = 574}, - [772] = {.lex_state = 574}, + [771] = {.lex_state = 42, .external_lex_state = 2}, + [772] = {.lex_state = 42, .external_lex_state = 2}, [773] = {.lex_state = 42, .external_lex_state = 2}, - [774] = {.lex_state = 574}, - [775] = {.lex_state = 574}, - [776] = {.lex_state = 574}, - [777] = {.lex_state = 574}, - [778] = {.lex_state = 574}, - [779] = {.lex_state = 574}, - [780] = {.lex_state = 574}, - [781] = {.lex_state = 574}, - [782] = {.lex_state = 574}, - [783] = {.lex_state = 574}, - [784] = {.lex_state = 597}, - [785] = {.lex_state = 574}, - [786] = {.lex_state = 574}, - [787] = {.lex_state = 574}, - [788] = {.lex_state = 574}, - [789] = {.lex_state = 574}, - [790] = {.lex_state = 599}, - [791] = {.lex_state = 621, .external_lex_state = 2}, - [792] = {.lex_state = 574}, - [793] = {.lex_state = 41, .external_lex_state = 2}, - [794] = {.lex_state = 574}, - [795] = {.lex_state = 574}, - [796] = {.lex_state = 597}, - [797] = {.lex_state = 574}, - [798] = {.lex_state = 574}, - [799] = {.lex_state = 601}, - [800] = {.lex_state = 601}, - [801] = {.lex_state = 574}, - [802] = {.lex_state = 574}, - [803] = {.lex_state = 574}, - [804] = {.lex_state = 574}, - [805] = {.lex_state = 574}, - [806] = {.lex_state = 574}, - [807] = {.lex_state = 574}, - [808] = {.lex_state = 574}, - [809] = {.lex_state = 574}, - [810] = {.lex_state = 574}, - [811] = {.lex_state = 574}, - [812] = {.lex_state = 574}, - [813] = {.lex_state = 41, .external_lex_state = 2}, - [814] = {.lex_state = 574}, + [774] = {.lex_state = 42, .external_lex_state = 2}, + [775] = {.lex_state = 42, .external_lex_state = 2}, + [776] = {.lex_state = 42, .external_lex_state = 2}, + [777] = {.lex_state = 42, .external_lex_state = 2}, + [778] = {.lex_state = 42, .external_lex_state = 2}, + [779] = {.lex_state = 42, .external_lex_state = 2}, + [780] = {.lex_state = 585}, + [781] = {.lex_state = 42, .external_lex_state = 2}, + [782] = {.lex_state = 42, .external_lex_state = 2}, + [783] = {.lex_state = 585}, + [784] = {.lex_state = 585}, + [785] = {.lex_state = 42, .external_lex_state = 2}, + [786] = {.lex_state = 42, .external_lex_state = 2}, + [787] = {.lex_state = 585}, + [788] = {.lex_state = 585}, + [789] = {.lex_state = 585}, + [790] = {.lex_state = 585}, + [791] = {.lex_state = 585}, + [792] = {.lex_state = 585}, + [793] = {.lex_state = 585}, + [794] = {.lex_state = 585}, + [795] = {.lex_state = 585}, + [796] = {.lex_state = 585}, + [797] = {.lex_state = 42, .external_lex_state = 2}, + [798] = {.lex_state = 585}, + [799] = {.lex_state = 585}, + [800] = {.lex_state = 585}, + [801] = {.lex_state = 585}, + [802] = {.lex_state = 585}, + [803] = {.lex_state = 585}, + [804] = {.lex_state = 585}, + [805] = {.lex_state = 585}, + [806] = {.lex_state = 585}, + [807] = {.lex_state = 585}, + [808] = {.lex_state = 585}, + [809] = {.lex_state = 585}, + [810] = {.lex_state = 585}, + [811] = {.lex_state = 585}, + [812] = {.lex_state = 585}, + [813] = {.lex_state = 42, .external_lex_state = 2}, + [814] = {.lex_state = 42, .external_lex_state = 2}, [815] = {.lex_state = 42, .external_lex_state = 2}, [816] = {.lex_state = 42, .external_lex_state = 2}, [817] = {.lex_state = 42, .external_lex_state = 2}, @@ -34159,23 +34652,23 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [820] = {.lex_state = 42, .external_lex_state = 2}, [821] = {.lex_state = 42, .external_lex_state = 2}, [822] = {.lex_state = 42, .external_lex_state = 2}, - [823] = {.lex_state = 42, .external_lex_state = 2}, - [824] = {.lex_state = 42, .external_lex_state = 2}, - [825] = {.lex_state = 42, .external_lex_state = 2}, + [823] = {.lex_state = 585}, + [824] = {.lex_state = 585}, + [825] = {.lex_state = 585}, [826] = {.lex_state = 42, .external_lex_state = 2}, - [827] = {.lex_state = 42, .external_lex_state = 2}, - [828] = {.lex_state = 574}, - [829] = {.lex_state = 574}, - [830] = {.lex_state = 574}, - [831] = {.lex_state = 574}, - [832] = {.lex_state = 574}, - [833] = {.lex_state = 574}, - [834] = {.lex_state = 574}, - [835] = {.lex_state = 574}, - [836] = {.lex_state = 574}, - [837] = {.lex_state = 574}, - [838] = {.lex_state = 41, .external_lex_state = 2}, - [839] = {.lex_state = 41, .external_lex_state = 2}, + [827] = {.lex_state = 585}, + [828] = {.lex_state = 42, .external_lex_state = 2}, + [829] = {.lex_state = 585}, + [830] = {.lex_state = 42, .external_lex_state = 2}, + [831] = {.lex_state = 42, .external_lex_state = 2}, + [832] = {.lex_state = 585}, + [833] = {.lex_state = 585}, + [834] = {.lex_state = 42, .external_lex_state = 2}, + [835] = {.lex_state = 42, .external_lex_state = 2}, + [836] = {.lex_state = 42, .external_lex_state = 2}, + [837] = {.lex_state = 42, .external_lex_state = 2}, + [838] = {.lex_state = 42, .external_lex_state = 2}, + [839] = {.lex_state = 42, .external_lex_state = 2}, [840] = {.lex_state = 42, .external_lex_state = 2}, [841] = {.lex_state = 42, .external_lex_state = 2}, [842] = {.lex_state = 42, .external_lex_state = 2}, @@ -34184,50 +34677,50 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [845] = {.lex_state = 42, .external_lex_state = 2}, [846] = {.lex_state = 42, .external_lex_state = 2}, [847] = {.lex_state = 42, .external_lex_state = 2}, - [848] = {.lex_state = 42, .external_lex_state = 2}, - [849] = {.lex_state = 42, .external_lex_state = 2}, + [848] = {.lex_state = 585}, + [849] = {.lex_state = 585}, [850] = {.lex_state = 42, .external_lex_state = 2}, [851] = {.lex_state = 42, .external_lex_state = 2}, [852] = {.lex_state = 42, .external_lex_state = 2}, - [853] = {.lex_state = 574}, - [854] = {.lex_state = 574}, - [855] = {.lex_state = 574}, - [856] = {.lex_state = 574}, - [857] = {.lex_state = 574}, - [858] = {.lex_state = 574}, - [859] = {.lex_state = 574}, - [860] = {.lex_state = 574}, - [861] = {.lex_state = 574}, - [862] = {.lex_state = 574}, - [863] = {.lex_state = 574}, - [864] = {.lex_state = 574}, - [865] = {.lex_state = 574}, - [866] = {.lex_state = 574}, - [867] = {.lex_state = 41, .external_lex_state = 2}, + [853] = {.lex_state = 42, .external_lex_state = 2}, + [854] = {.lex_state = 585}, + [855] = {.lex_state = 42, .external_lex_state = 2}, + [856] = {.lex_state = 42, .external_lex_state = 2}, + [857] = {.lex_state = 632, .external_lex_state = 2}, + [858] = {.lex_state = 585}, + [859] = {.lex_state = 585}, + [860] = {.lex_state = 42, .external_lex_state = 2}, + [861] = {.lex_state = 585}, + [862] = {.lex_state = 42, .external_lex_state = 2}, + [863] = {.lex_state = 585}, + [864] = {.lex_state = 42, .external_lex_state = 2}, + [865] = {.lex_state = 585}, + [866] = {.lex_state = 585}, + [867] = {.lex_state = 585}, [868] = {.lex_state = 42, .external_lex_state = 2}, - [869] = {.lex_state = 42, .external_lex_state = 2}, + [869] = {.lex_state = 585}, [870] = {.lex_state = 42, .external_lex_state = 2}, - [871] = {.lex_state = 42, .external_lex_state = 2}, + [871] = {.lex_state = 585}, [872] = {.lex_state = 42, .external_lex_state = 2}, - [873] = {.lex_state = 42, .external_lex_state = 2}, - [874] = {.lex_state = 42, .external_lex_state = 2}, - [875] = {.lex_state = 42, .external_lex_state = 2}, - [876] = {.lex_state = 42, .external_lex_state = 2}, - [877] = {.lex_state = 42, .external_lex_state = 2}, - [878] = {.lex_state = 42, .external_lex_state = 2}, - [879] = {.lex_state = 42, .external_lex_state = 2}, - [880] = {.lex_state = 42, .external_lex_state = 2}, - [881] = {.lex_state = 41, .external_lex_state = 2}, - [882] = {.lex_state = 621, .external_lex_state = 2}, - [883] = {.lex_state = 42, .external_lex_state = 2}, - [884] = {.lex_state = 42, .external_lex_state = 2}, - [885] = {.lex_state = 42, .external_lex_state = 2}, - [886] = {.lex_state = 42, .external_lex_state = 2}, - [887] = {.lex_state = 621, .external_lex_state = 2}, - [888] = {.lex_state = 603}, - [889] = {.lex_state = 574}, - [890] = {.lex_state = 574}, - [891] = {.lex_state = 42, .external_lex_state = 2}, + [873] = {.lex_state = 608}, + [874] = {.lex_state = 585}, + [875] = {.lex_state = 585}, + [876] = {.lex_state = 585}, + [877] = {.lex_state = 585}, + [878] = {.lex_state = 585}, + [879] = {.lex_state = 632, .external_lex_state = 2}, + [880] = {.lex_state = 585}, + [881] = {.lex_state = 585}, + [882] = {.lex_state = 585}, + [883] = {.lex_state = 585}, + [884] = {.lex_state = 585}, + [885] = {.lex_state = 585}, + [886] = {.lex_state = 585}, + [887] = {.lex_state = 585}, + [888] = {.lex_state = 585}, + [889] = {.lex_state = 585}, + [890] = {.lex_state = 585}, + [891] = {.lex_state = 585}, [892] = {.lex_state = 42, .external_lex_state = 2}, [893] = {.lex_state = 42, .external_lex_state = 2}, [894] = {.lex_state = 42, .external_lex_state = 2}, @@ -34239,1269 +34732,1269 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [900] = {.lex_state = 42, .external_lex_state = 2}, [901] = {.lex_state = 42, .external_lex_state = 2}, [902] = {.lex_state = 42, .external_lex_state = 2}, - [903] = {.lex_state = 574}, - [904] = {.lex_state = 574}, - [905] = {.lex_state = 574}, - [906] = {.lex_state = 574}, - [907] = {.lex_state = 574}, - [908] = {.lex_state = 574}, - [909] = {.lex_state = 603}, - [910] = {.lex_state = 574}, - [911] = {.lex_state = 603}, - [912] = {.lex_state = 603}, - [913] = {.lex_state = 574}, - [914] = {.lex_state = 574}, - [915] = {.lex_state = 574}, - [916] = {.lex_state = 621, .external_lex_state = 2}, - [917] = {.lex_state = 574}, - [918] = {.lex_state = 51, .external_lex_state = 2}, - [919] = {.lex_state = 574}, - [920] = {.lex_state = 574}, - [921] = {.lex_state = 574}, - [922] = {.lex_state = 574}, - [923] = {.lex_state = 574}, - [924] = {.lex_state = 574}, - [925] = {.lex_state = 574}, - [926] = {.lex_state = 574}, - [927] = {.lex_state = 574}, - [928] = {.lex_state = 574}, - [929] = {.lex_state = 574}, - [930] = {.lex_state = 574}, - [931] = {.lex_state = 574}, - [932] = {.lex_state = 574}, - [933] = {.lex_state = 574}, - [934] = {.lex_state = 574}, - [935] = {.lex_state = 574}, - [936] = {.lex_state = 574}, - [937] = {.lex_state = 621, .external_lex_state = 2}, - [938] = {.lex_state = 574}, - [939] = {.lex_state = 574}, - [940] = {.lex_state = 574}, - [941] = {.lex_state = 574}, - [942] = {.lex_state = 603}, - [943] = {.lex_state = 601}, - [944] = {.lex_state = 574}, - [945] = {.lex_state = 603}, - [946] = {.lex_state = 574}, - [947] = {.lex_state = 574}, - [948] = {.lex_state = 574}, - [949] = {.lex_state = 574}, - [950] = {.lex_state = 574}, - [951] = {.lex_state = 574}, - [952] = {.lex_state = 574}, - [953] = {.lex_state = 574}, - [954] = {.lex_state = 574}, - [955] = {.lex_state = 574}, - [956] = {.lex_state = 603}, - [957] = {.lex_state = 574}, - [958] = {.lex_state = 603}, - [959] = {.lex_state = 601}, - [960] = {.lex_state = 603}, - [961] = {.lex_state = 603}, - [962] = {.lex_state = 603}, - [963] = {.lex_state = 574}, - [964] = {.lex_state = 51, .external_lex_state = 2}, - [965] = {.lex_state = 603}, - [966] = {.lex_state = 603}, - [967] = {.lex_state = 574}, - [968] = {.lex_state = 574}, - [969] = {.lex_state = 574}, - [970] = {.lex_state = 574}, - [971] = {.lex_state = 51, .external_lex_state = 2}, - [972] = {.lex_state = 574}, - [973] = {.lex_state = 48, .external_lex_state = 2}, - [974] = {.lex_state = 574}, - [975] = {.lex_state = 574}, - [976] = {.lex_state = 51, .external_lex_state = 2}, - [977] = {.lex_state = 42, .external_lex_state = 2}, - [978] = {.lex_state = 603}, - [979] = {.lex_state = 603}, - [980] = {.lex_state = 603}, - [981] = {.lex_state = 574}, - [982] = {.lex_state = 620, .external_lex_state = 2}, - [983] = {.lex_state = 574}, - [984] = {.lex_state = 574}, - [985] = {.lex_state = 574}, - [986] = {.lex_state = 574}, - [987] = {.lex_state = 574}, - [988] = {.lex_state = 574}, - [989] = {.lex_state = 574}, - [990] = {.lex_state = 574}, - [991] = {.lex_state = 620, .external_lex_state = 2}, - [992] = {.lex_state = 574}, - [993] = {.lex_state = 574}, - [994] = {.lex_state = 574}, - [995] = {.lex_state = 574}, - [996] = {.lex_state = 574}, - [997] = {.lex_state = 574}, - [998] = {.lex_state = 574}, - [999] = {.lex_state = 574}, - [1000] = {.lex_state = 574}, - [1001] = {.lex_state = 574}, - [1002] = {.lex_state = 574}, - [1003] = {.lex_state = 574}, - [1004] = {.lex_state = 574}, - [1005] = {.lex_state = 574}, - [1006] = {.lex_state = 574}, - [1007] = {.lex_state = 574}, - [1008] = {.lex_state = 574}, - [1009] = {.lex_state = 574}, - [1010] = {.lex_state = 574}, - [1011] = {.lex_state = 574}, - [1012] = {.lex_state = 574}, - [1013] = {.lex_state = 574}, - [1014] = {.lex_state = 574}, - [1015] = {.lex_state = 574}, - [1016] = {.lex_state = 574}, - [1017] = {.lex_state = 574}, - [1018] = {.lex_state = 574}, - [1019] = {.lex_state = 574}, - [1020] = {.lex_state = 574}, - [1021] = {.lex_state = 574}, - [1022] = {.lex_state = 574}, - [1023] = {.lex_state = 574}, - [1024] = {.lex_state = 603}, - [1025] = {.lex_state = 603}, - [1026] = {.lex_state = 574}, - [1027] = {.lex_state = 603}, - [1028] = {.lex_state = 48, .external_lex_state = 2}, - [1029] = {.lex_state = 574}, - [1030] = {.lex_state = 574}, - [1031] = {.lex_state = 574}, - [1032] = {.lex_state = 574}, - [1033] = {.lex_state = 574}, - [1034] = {.lex_state = 574}, - [1035] = {.lex_state = 574}, - [1036] = {.lex_state = 574}, - [1037] = {.lex_state = 574}, - [1038] = {.lex_state = 574}, - [1039] = {.lex_state = 574}, - [1040] = {.lex_state = 574}, - [1041] = {.lex_state = 574}, - [1042] = {.lex_state = 574}, - [1043] = {.lex_state = 574}, - [1044] = {.lex_state = 574}, - [1045] = {.lex_state = 574}, - [1046] = {.lex_state = 574}, - [1047] = {.lex_state = 574}, - [1048] = {.lex_state = 574}, - [1049] = {.lex_state = 574}, - [1050] = {.lex_state = 605}, - [1051] = {.lex_state = 574}, - [1052] = {.lex_state = 574}, - [1053] = {.lex_state = 603}, - [1054] = {.lex_state = 574}, - [1055] = {.lex_state = 603}, - [1056] = {.lex_state = 603}, - [1057] = {.lex_state = 574}, - [1058] = {.lex_state = 603}, - [1059] = {.lex_state = 574}, - [1060] = {.lex_state = 574}, - [1061] = {.lex_state = 603}, - [1062] = {.lex_state = 603}, - [1063] = {.lex_state = 574}, - [1064] = {.lex_state = 574}, - [1065] = {.lex_state = 574}, - [1066] = {.lex_state = 574}, - [1067] = {.lex_state = 574}, - [1068] = {.lex_state = 574}, - [1069] = {.lex_state = 574}, - [1070] = {.lex_state = 574}, - [1071] = {.lex_state = 574}, - [1072] = {.lex_state = 574}, - [1073] = {.lex_state = 574}, - [1074] = {.lex_state = 603}, - [1075] = {.lex_state = 574}, - [1076] = {.lex_state = 574}, - [1077] = {.lex_state = 574}, - [1078] = {.lex_state = 574}, - [1079] = {.lex_state = 574}, - [1080] = {.lex_state = 574}, - [1081] = {.lex_state = 574}, - [1082] = {.lex_state = 574}, - [1083] = {.lex_state = 603}, - [1084] = {.lex_state = 574}, - [1085] = {.lex_state = 574}, - [1086] = {.lex_state = 574}, - [1087] = {.lex_state = 574}, - [1088] = {.lex_state = 574}, - [1089] = {.lex_state = 574}, - [1090] = {.lex_state = 574}, - [1091] = {.lex_state = 574}, - [1092] = {.lex_state = 574}, - [1093] = {.lex_state = 574}, - [1094] = {.lex_state = 574}, - [1095] = {.lex_state = 574}, - [1096] = {.lex_state = 574}, - [1097] = {.lex_state = 574}, - [1098] = {.lex_state = 574}, - [1099] = {.lex_state = 574}, - [1100] = {.lex_state = 574}, - [1101] = {.lex_state = 574}, - [1102] = {.lex_state = 574}, - [1103] = {.lex_state = 574}, - [1104] = {.lex_state = 574}, - [1105] = {.lex_state = 574}, - [1106] = {.lex_state = 574}, - [1107] = {.lex_state = 574}, - [1108] = {.lex_state = 574}, - [1109] = {.lex_state = 574}, - [1110] = {.lex_state = 574}, - [1111] = {.lex_state = 574}, - [1112] = {.lex_state = 574}, - [1113] = {.lex_state = 574}, - [1114] = {.lex_state = 621, .external_lex_state = 2}, - [1115] = {.lex_state = 42, .external_lex_state = 2}, - [1116] = {.lex_state = 42, .external_lex_state = 2}, - [1117] = {.lex_state = 42, .external_lex_state = 2}, - [1118] = {.lex_state = 574}, - [1119] = {.lex_state = 605}, - [1120] = {.lex_state = 605}, - [1121] = {.lex_state = 605}, - [1122] = {.lex_state = 574}, - [1123] = {.lex_state = 621, .external_lex_state = 2}, - [1124] = {.lex_state = 621, .external_lex_state = 2}, - [1125] = {.lex_state = 574}, - [1126] = {.lex_state = 574}, - [1127] = {.lex_state = 597}, - [1128] = {.lex_state = 574}, - [1129] = {.lex_state = 574}, - [1130] = {.lex_state = 51, .external_lex_state = 2}, - [1131] = {.lex_state = 42, .external_lex_state = 2}, - [1132] = {.lex_state = 621, .external_lex_state = 2}, - [1133] = {.lex_state = 42, .external_lex_state = 2}, - [1134] = {.lex_state = 48, .external_lex_state = 2}, - [1135] = {.lex_state = 574}, - [1136] = {.lex_state = 574}, - [1137] = {.lex_state = 620, .external_lex_state = 2}, - [1138] = {.lex_state = 574}, - [1139] = {.lex_state = 574}, - [1140] = {.lex_state = 574}, - [1141] = {.lex_state = 51, .external_lex_state = 2}, - [1142] = {.lex_state = 51, .external_lex_state = 2}, - [1143] = {.lex_state = 605}, - [1144] = {.lex_state = 574}, - [1145] = {.lex_state = 574}, - [1146] = {.lex_state = 574}, - [1147] = {.lex_state = 574}, - [1148] = {.lex_state = 574}, - [1149] = {.lex_state = 574}, - [1150] = {.lex_state = 574}, - [1151] = {.lex_state = 574}, - [1152] = {.lex_state = 574}, - [1153] = {.lex_state = 574}, - [1154] = {.lex_state = 574}, - [1155] = {.lex_state = 574}, - [1156] = {.lex_state = 574}, - [1157] = {.lex_state = 574}, - [1158] = {.lex_state = 574}, - [1159] = {.lex_state = 574}, - [1160] = {.lex_state = 47, .external_lex_state = 2}, - [1161] = {.lex_state = 47, .external_lex_state = 2}, - [1162] = {.lex_state = 574}, - [1163] = {.lex_state = 574}, - [1164] = {.lex_state = 574}, - [1165] = {.lex_state = 574}, - [1166] = {.lex_state = 574}, - [1167] = {.lex_state = 605}, - [1168] = {.lex_state = 574}, - [1169] = {.lex_state = 574}, - [1170] = {.lex_state = 574}, - [1171] = {.lex_state = 574}, - [1172] = {.lex_state = 574}, - [1173] = {.lex_state = 574}, - [1174] = {.lex_state = 574}, - [1175] = {.lex_state = 574}, - [1176] = {.lex_state = 574}, - [1177] = {.lex_state = 574}, - [1178] = {.lex_state = 574}, - [1179] = {.lex_state = 574}, - [1180] = {.lex_state = 574}, - [1181] = {.lex_state = 574}, - [1182] = {.lex_state = 574}, - [1183] = {.lex_state = 574}, - [1184] = {.lex_state = 574}, - [1185] = {.lex_state = 574}, - [1186] = {.lex_state = 574}, - [1187] = {.lex_state = 574}, - [1188] = {.lex_state = 574}, - [1189] = {.lex_state = 574}, - [1190] = {.lex_state = 574}, - [1191] = {.lex_state = 605}, - [1192] = {.lex_state = 605}, - [1193] = {.lex_state = 574}, - [1194] = {.lex_state = 574}, - [1195] = {.lex_state = 574}, - [1196] = {.lex_state = 574}, - [1197] = {.lex_state = 574}, - [1198] = {.lex_state = 574}, - [1199] = {.lex_state = 574}, - [1200] = {.lex_state = 603}, - [1201] = {.lex_state = 574}, - [1202] = {.lex_state = 574}, - [1203] = {.lex_state = 574}, - [1204] = {.lex_state = 574}, - [1205] = {.lex_state = 574}, - [1206] = {.lex_state = 574}, - [1207] = {.lex_state = 574}, - [1208] = {.lex_state = 574}, - [1209] = {.lex_state = 574}, - [1210] = {.lex_state = 574}, - [1211] = {.lex_state = 574}, - [1212] = {.lex_state = 574}, - [1213] = {.lex_state = 574}, - [1214] = {.lex_state = 574}, - [1215] = {.lex_state = 574}, - [1216] = {.lex_state = 574}, - [1217] = {.lex_state = 574}, - [1218] = {.lex_state = 574}, - [1219] = {.lex_state = 574}, - [1220] = {.lex_state = 574}, - [1221] = {.lex_state = 574}, - [1222] = {.lex_state = 574}, - [1223] = {.lex_state = 574}, - [1224] = {.lex_state = 574}, - [1225] = {.lex_state = 574}, - [1226] = {.lex_state = 574}, - [1227] = {.lex_state = 574}, - [1228] = {.lex_state = 574}, - [1229] = {.lex_state = 51, .external_lex_state = 2}, - [1230] = {.lex_state = 574}, - [1231] = {.lex_state = 574}, - [1232] = {.lex_state = 574}, - [1233] = {.lex_state = 574}, - [1234] = {.lex_state = 574}, - [1235] = {.lex_state = 574}, - [1236] = {.lex_state = 574}, - [1237] = {.lex_state = 574}, - [1238] = {.lex_state = 574}, - [1239] = {.lex_state = 574}, - [1240] = {.lex_state = 574}, - [1241] = {.lex_state = 574}, - [1242] = {.lex_state = 574}, - [1243] = {.lex_state = 574}, - [1244] = {.lex_state = 574}, - [1245] = {.lex_state = 574}, - [1246] = {.lex_state = 574}, - [1247] = {.lex_state = 574}, - [1248] = {.lex_state = 574}, - [1249] = {.lex_state = 574}, - [1250] = {.lex_state = 574}, - [1251] = {.lex_state = 574}, - [1252] = {.lex_state = 574}, - [1253] = {.lex_state = 33, .external_lex_state = 2}, - [1254] = {.lex_state = 574}, - [1255] = {.lex_state = 574}, - [1256] = {.lex_state = 51, .external_lex_state = 2}, - [1257] = {.lex_state = 574}, - [1258] = {.lex_state = 605}, - [1259] = {.lex_state = 574}, - [1260] = {.lex_state = 574}, - [1261] = {.lex_state = 47, .external_lex_state = 2}, - [1262] = {.lex_state = 47, .external_lex_state = 2}, - [1263] = {.lex_state = 574}, - [1264] = {.lex_state = 574}, - [1265] = {.lex_state = 574}, - [1266] = {.lex_state = 574}, - [1267] = {.lex_state = 51, .external_lex_state = 2}, - [1268] = {.lex_state = 51, .external_lex_state = 2}, - [1269] = {.lex_state = 51, .external_lex_state = 2}, - [1270] = {.lex_state = 574}, - [1271] = {.lex_state = 574}, - [1272] = {.lex_state = 46, .external_lex_state = 2}, - [1273] = {.lex_state = 574}, - [1274] = {.lex_state = 574}, - [1275] = {.lex_state = 574}, - [1276] = {.lex_state = 574}, - [1277] = {.lex_state = 574}, - [1278] = {.lex_state = 574}, - [1279] = {.lex_state = 574}, - [1280] = {.lex_state = 574}, - [1281] = {.lex_state = 574}, - [1282] = {.lex_state = 574}, - [1283] = {.lex_state = 574}, - [1284] = {.lex_state = 574}, - [1285] = {.lex_state = 574}, - [1286] = {.lex_state = 574}, - [1287] = {.lex_state = 574}, - [1288] = {.lex_state = 620, .external_lex_state = 2}, - [1289] = {.lex_state = 574}, - [1290] = {.lex_state = 574}, - [1291] = {.lex_state = 574}, - [1292] = {.lex_state = 574}, - [1293] = {.lex_state = 574}, - [1294] = {.lex_state = 574}, - [1295] = {.lex_state = 574}, - [1296] = {.lex_state = 574}, - [1297] = {.lex_state = 574}, - [1298] = {.lex_state = 574}, - [1299] = {.lex_state = 574}, - [1300] = {.lex_state = 574}, - [1301] = {.lex_state = 574}, - [1302] = {.lex_state = 574}, - [1303] = {.lex_state = 574}, - [1304] = {.lex_state = 574}, - [1305] = {.lex_state = 574}, - [1306] = {.lex_state = 574}, - [1307] = {.lex_state = 574}, - [1308] = {.lex_state = 574}, - [1309] = {.lex_state = 574}, - [1310] = {.lex_state = 574}, - [1311] = {.lex_state = 574}, - [1312] = {.lex_state = 574}, - [1313] = {.lex_state = 574}, - [1314] = {.lex_state = 574}, - [1315] = {.lex_state = 574}, - [1316] = {.lex_state = 574}, - [1317] = {.lex_state = 574}, - [1318] = {.lex_state = 574}, - [1319] = {.lex_state = 574}, - [1320] = {.lex_state = 574}, - [1321] = {.lex_state = 574}, - [1322] = {.lex_state = 46, .external_lex_state = 2}, - [1323] = {.lex_state = 574}, - [1324] = {.lex_state = 574}, - [1325] = {.lex_state = 574}, - [1326] = {.lex_state = 46, .external_lex_state = 2}, - [1327] = {.lex_state = 574}, - [1328] = {.lex_state = 574}, - [1329] = {.lex_state = 574}, - [1330] = {.lex_state = 574}, - [1331] = {.lex_state = 574}, - [1332] = {.lex_state = 620, .external_lex_state = 2}, - [1333] = {.lex_state = 574}, - [1334] = {.lex_state = 574}, - [1335] = {.lex_state = 574}, - [1336] = {.lex_state = 574}, - [1337] = {.lex_state = 574}, - [1338] = {.lex_state = 574}, - [1339] = {.lex_state = 574}, - [1340] = {.lex_state = 574}, - [1341] = {.lex_state = 620, .external_lex_state = 2}, - [1342] = {.lex_state = 574}, - [1343] = {.lex_state = 574}, - [1344] = {.lex_state = 574}, - [1345] = {.lex_state = 46, .external_lex_state = 2}, - [1346] = {.lex_state = 574}, - [1347] = {.lex_state = 574}, - [1348] = {.lex_state = 574}, - [1349] = {.lex_state = 574}, - [1350] = {.lex_state = 574}, - [1351] = {.lex_state = 574}, - [1352] = {.lex_state = 574}, - [1353] = {.lex_state = 574}, - [1354] = {.lex_state = 173, .external_lex_state = 2}, - [1355] = {.lex_state = 47, .external_lex_state = 2}, - [1356] = {.lex_state = 620, .external_lex_state = 2}, - [1357] = {.lex_state = 31, .external_lex_state = 2}, - [1358] = {.lex_state = 46, .external_lex_state = 2}, - [1359] = {.lex_state = 46, .external_lex_state = 2}, - [1360] = {.lex_state = 174, .external_lex_state = 2}, - [1361] = {.lex_state = 46, .external_lex_state = 2}, - [1362] = {.lex_state = 31, .external_lex_state = 2}, - [1363] = {.lex_state = 174, .external_lex_state = 2}, - [1364] = {.lex_state = 31, .external_lex_state = 2}, - [1365] = {.lex_state = 31, .external_lex_state = 2}, - [1366] = {.lex_state = 147, .external_lex_state = 2}, - [1367] = {.lex_state = 620, .external_lex_state = 2}, - [1368] = {.lex_state = 47, .external_lex_state = 2}, - [1369] = {.lex_state = 620, .external_lex_state = 2}, - [1370] = {.lex_state = 620, .external_lex_state = 2}, - [1371] = {.lex_state = 31, .external_lex_state = 2}, - [1372] = {.lex_state = 620, .external_lex_state = 2}, - [1373] = {.lex_state = 147, .external_lex_state = 2}, - [1374] = {.lex_state = 620, .external_lex_state = 2}, - [1375] = {.lex_state = 628, .external_lex_state = 2}, - [1376] = {.lex_state = 620, .external_lex_state = 2}, - [1377] = {.lex_state = 147, .external_lex_state = 2}, - [1378] = {.lex_state = 47, .external_lex_state = 2}, - [1379] = {.lex_state = 620, .external_lex_state = 2}, - [1380] = {.lex_state = 47, .external_lex_state = 2}, - [1381] = {.lex_state = 147, .external_lex_state = 2}, - [1382] = {.lex_state = 147, .external_lex_state = 2}, - [1383] = {.lex_state = 620, .external_lex_state = 2}, - [1384] = {.lex_state = 31, .external_lex_state = 2}, - [1385] = {.lex_state = 620, .external_lex_state = 2}, - [1386] = {.lex_state = 620, .external_lex_state = 2}, - [1387] = {.lex_state = 620, .external_lex_state = 2}, - [1388] = {.lex_state = 578}, - [1389] = {.lex_state = 620, .external_lex_state = 2}, - [1390] = {.lex_state = 620, .external_lex_state = 2}, - [1391] = {.lex_state = 620, .external_lex_state = 2}, - [1392] = {.lex_state = 620, .external_lex_state = 2}, - [1393] = {.lex_state = 620, .external_lex_state = 2}, - [1394] = {.lex_state = 580}, - [1395] = {.lex_state = 36, .external_lex_state = 2}, - [1396] = {.lex_state = 620, .external_lex_state = 2}, - [1397] = {.lex_state = 620, .external_lex_state = 2}, - [1398] = {.lex_state = 580}, - [1399] = {.lex_state = 578}, - [1400] = {.lex_state = 36, .external_lex_state = 2}, - [1401] = {.lex_state = 580}, - [1402] = {.lex_state = 48, .external_lex_state = 2}, - [1403] = {.lex_state = 620, .external_lex_state = 2}, - [1404] = {.lex_state = 580}, - [1405] = {.lex_state = 582}, - [1406] = {.lex_state = 35, .external_lex_state = 2}, - [1407] = {.lex_state = 586}, - [1408] = {.lex_state = 35, .external_lex_state = 2}, - [1409] = {.lex_state = 620, .external_lex_state = 2}, - [1410] = {.lex_state = 590}, - [1411] = {.lex_state = 35, .external_lex_state = 2}, - [1412] = {.lex_state = 586}, - [1413] = {.lex_state = 36, .external_lex_state = 2}, - [1414] = {.lex_state = 582}, - [1415] = {.lex_state = 588}, - [1416] = {.lex_state = 35, .external_lex_state = 2}, - [1417] = {.lex_state = 35, .external_lex_state = 2}, - [1418] = {.lex_state = 588}, - [1419] = {.lex_state = 590}, - [1420] = {.lex_state = 588}, - [1421] = {.lex_state = 48, .external_lex_state = 2}, - [1422] = {.lex_state = 36, .external_lex_state = 2}, - [1423] = {.lex_state = 588}, + [903] = {.lex_state = 42, .external_lex_state = 2}, + [904] = {.lex_state = 42, .external_lex_state = 2}, + [905] = {.lex_state = 585}, + [906] = {.lex_state = 585}, + [907] = {.lex_state = 585}, + [908] = {.lex_state = 585}, + [909] = {.lex_state = 585}, + [910] = {.lex_state = 585}, + [911] = {.lex_state = 42, .external_lex_state = 2}, + [912] = {.lex_state = 585}, + [913] = {.lex_state = 585}, + [914] = {.lex_state = 585}, + [915] = {.lex_state = 585}, + [916] = {.lex_state = 612}, + [917] = {.lex_state = 614}, + [918] = {.lex_state = 585}, + [919] = {.lex_state = 585}, + [920] = {.lex_state = 585}, + [921] = {.lex_state = 585}, + [922] = {.lex_state = 614}, + [923] = {.lex_state = 632, .external_lex_state = 2}, + [924] = {.lex_state = 585}, + [925] = {.lex_state = 632, .external_lex_state = 2}, + [926] = {.lex_state = 585}, + [927] = {.lex_state = 585}, + [928] = {.lex_state = 614}, + [929] = {.lex_state = 614}, + [930] = {.lex_state = 51, .external_lex_state = 2}, + [931] = {.lex_state = 614}, + [932] = {.lex_state = 585}, + [933] = {.lex_state = 614}, + [934] = {.lex_state = 585}, + [935] = {.lex_state = 585}, + [936] = {.lex_state = 585}, + [937] = {.lex_state = 585}, + [938] = {.lex_state = 614}, + [939] = {.lex_state = 632, .external_lex_state = 2}, + [940] = {.lex_state = 585}, + [941] = {.lex_state = 614}, + [942] = {.lex_state = 585}, + [943] = {.lex_state = 585}, + [944] = {.lex_state = 585}, + [945] = {.lex_state = 585}, + [946] = {.lex_state = 51, .external_lex_state = 2}, + [947] = {.lex_state = 585}, + [948] = {.lex_state = 585}, + [949] = {.lex_state = 585}, + [950] = {.lex_state = 585}, + [951] = {.lex_state = 585}, + [952] = {.lex_state = 585}, + [953] = {.lex_state = 585}, + [954] = {.lex_state = 632, .external_lex_state = 2}, + [955] = {.lex_state = 585}, + [956] = {.lex_state = 585}, + [957] = {.lex_state = 614}, + [958] = {.lex_state = 585}, + [959] = {.lex_state = 585}, + [960] = {.lex_state = 612}, + [961] = {.lex_state = 585}, + [962] = {.lex_state = 585}, + [963] = {.lex_state = 614}, + [964] = {.lex_state = 585}, + [965] = {.lex_state = 614}, + [966] = {.lex_state = 585}, + [967] = {.lex_state = 585}, + [968] = {.lex_state = 585}, + [969] = {.lex_state = 585}, + [970] = {.lex_state = 585}, + [971] = {.lex_state = 585}, + [972] = {.lex_state = 585}, + [973] = {.lex_state = 585}, + [974] = {.lex_state = 614}, + [975] = {.lex_state = 51, .external_lex_state = 2}, + [976] = {.lex_state = 585}, + [977] = {.lex_state = 585}, + [978] = {.lex_state = 42, .external_lex_state = 2}, + [979] = {.lex_state = 608}, + [980] = {.lex_state = 585}, + [981] = {.lex_state = 585}, + [982] = {.lex_state = 614}, + [983] = {.lex_state = 614}, + [984] = {.lex_state = 614}, + [985] = {.lex_state = 614}, + [986] = {.lex_state = 585}, + [987] = {.lex_state = 585}, + [988] = {.lex_state = 585}, + [989] = {.lex_state = 48, .external_lex_state = 2}, + [990] = {.lex_state = 42, .external_lex_state = 2}, + [991] = {.lex_state = 42, .external_lex_state = 2}, + [992] = {.lex_state = 614}, + [993] = {.lex_state = 42, .external_lex_state = 2}, + [994] = {.lex_state = 614}, + [995] = {.lex_state = 585}, + [996] = {.lex_state = 616}, + [997] = {.lex_state = 614}, + [998] = {.lex_state = 614}, + [999] = {.lex_state = 614}, + [1000] = {.lex_state = 614}, + [1001] = {.lex_state = 616}, + [1002] = {.lex_state = 585}, + [1003] = {.lex_state = 585}, + [1004] = {.lex_state = 51, .external_lex_state = 2}, + [1005] = {.lex_state = 51, .external_lex_state = 2}, + [1006] = {.lex_state = 33, .external_lex_state = 2}, + [1007] = {.lex_state = 585}, + [1008] = {.lex_state = 585}, + [1009] = {.lex_state = 585}, + [1010] = {.lex_state = 614}, + [1011] = {.lex_state = 585}, + [1012] = {.lex_state = 585}, + [1013] = {.lex_state = 614}, + [1014] = {.lex_state = 585}, + [1015] = {.lex_state = 585}, + [1016] = {.lex_state = 585}, + [1017] = {.lex_state = 585}, + [1018] = {.lex_state = 585}, + [1019] = {.lex_state = 585}, + [1020] = {.lex_state = 585}, + [1021] = {.lex_state = 585}, + [1022] = {.lex_state = 614}, + [1023] = {.lex_state = 585}, + [1024] = {.lex_state = 585}, + [1025] = {.lex_state = 585}, + [1026] = {.lex_state = 585}, + [1027] = {.lex_state = 585}, + [1028] = {.lex_state = 616}, + [1029] = {.lex_state = 585}, + [1030] = {.lex_state = 585}, + [1031] = {.lex_state = 614}, + [1032] = {.lex_state = 585}, + [1033] = {.lex_state = 585}, + [1034] = {.lex_state = 585}, + [1035] = {.lex_state = 585}, + [1036] = {.lex_state = 585}, + [1037] = {.lex_state = 585}, + [1038] = {.lex_state = 585}, + [1039] = {.lex_state = 585}, + [1040] = {.lex_state = 585}, + [1041] = {.lex_state = 585}, + [1042] = {.lex_state = 585}, + [1043] = {.lex_state = 585}, + [1044] = {.lex_state = 585}, + [1045] = {.lex_state = 585}, + [1046] = {.lex_state = 585}, + [1047] = {.lex_state = 585}, + [1048] = {.lex_state = 585}, + [1049] = {.lex_state = 585}, + [1050] = {.lex_state = 585}, + [1051] = {.lex_state = 585}, + [1052] = {.lex_state = 585}, + [1053] = {.lex_state = 585}, + [1054] = {.lex_state = 585}, + [1055] = {.lex_state = 585}, + [1056] = {.lex_state = 585}, + [1057] = {.lex_state = 585}, + [1058] = {.lex_state = 585}, + [1059] = {.lex_state = 631, .external_lex_state = 2}, + [1060] = {.lex_state = 585}, + [1061] = {.lex_state = 585}, + [1062] = {.lex_state = 585}, + [1063] = {.lex_state = 585}, + [1064] = {.lex_state = 585}, + [1065] = {.lex_state = 585}, + [1066] = {.lex_state = 616}, + [1067] = {.lex_state = 585}, + [1068] = {.lex_state = 585}, + [1069] = {.lex_state = 42, .external_lex_state = 2}, + [1070] = {.lex_state = 585}, + [1071] = {.lex_state = 585}, + [1072] = {.lex_state = 585}, + [1073] = {.lex_state = 585}, + [1074] = {.lex_state = 585}, + [1075] = {.lex_state = 585}, + [1076] = {.lex_state = 585}, + [1077] = {.lex_state = 585}, + [1078] = {.lex_state = 585}, + [1079] = {.lex_state = 585}, + [1080] = {.lex_state = 585}, + [1081] = {.lex_state = 42, .external_lex_state = 2}, + [1082] = {.lex_state = 585}, + [1083] = {.lex_state = 585}, + [1084] = {.lex_state = 585}, + [1085] = {.lex_state = 585}, + [1086] = {.lex_state = 585}, + [1087] = {.lex_state = 585}, + [1088] = {.lex_state = 585}, + [1089] = {.lex_state = 585}, + [1090] = {.lex_state = 585}, + [1091] = {.lex_state = 585}, + [1092] = {.lex_state = 585}, + [1093] = {.lex_state = 585}, + [1094] = {.lex_state = 585}, + [1095] = {.lex_state = 585}, + [1096] = {.lex_state = 585}, + [1097] = {.lex_state = 585}, + [1098] = {.lex_state = 585}, + [1099] = {.lex_state = 585}, + [1100] = {.lex_state = 585}, + [1101] = {.lex_state = 585}, + [1102] = {.lex_state = 585}, + [1103] = {.lex_state = 585}, + [1104] = {.lex_state = 585}, + [1105] = {.lex_state = 585}, + [1106] = {.lex_state = 585}, + [1107] = {.lex_state = 585}, + [1108] = {.lex_state = 585}, + [1109] = {.lex_state = 585}, + [1110] = {.lex_state = 585}, + [1111] = {.lex_state = 585}, + [1112] = {.lex_state = 585}, + [1113] = {.lex_state = 585}, + [1114] = {.lex_state = 585}, + [1115] = {.lex_state = 585}, + [1116] = {.lex_state = 585}, + [1117] = {.lex_state = 585}, + [1118] = {.lex_state = 585}, + [1119] = {.lex_state = 631, .external_lex_state = 2}, + [1120] = {.lex_state = 585}, + [1121] = {.lex_state = 48, .external_lex_state = 2}, + [1122] = {.lex_state = 585}, + [1123] = {.lex_state = 585}, + [1124] = {.lex_state = 585}, + [1125] = {.lex_state = 585}, + [1126] = {.lex_state = 585}, + [1127] = {.lex_state = 585}, + [1128] = {.lex_state = 585}, + [1129] = {.lex_state = 585}, + [1130] = {.lex_state = 585}, + [1131] = {.lex_state = 48, .external_lex_state = 2}, + [1132] = {.lex_state = 585}, + [1133] = {.lex_state = 585}, + [1134] = {.lex_state = 585}, + [1135] = {.lex_state = 585}, + [1136] = {.lex_state = 585}, + [1137] = {.lex_state = 631, .external_lex_state = 2}, + [1138] = {.lex_state = 585}, + [1139] = {.lex_state = 585}, + [1140] = {.lex_state = 51, .external_lex_state = 2}, + [1141] = {.lex_state = 585}, + [1142] = {.lex_state = 585}, + [1143] = {.lex_state = 585}, + [1144] = {.lex_state = 585}, + [1145] = {.lex_state = 585}, + [1146] = {.lex_state = 585}, + [1147] = {.lex_state = 585}, + [1148] = {.lex_state = 585}, + [1149] = {.lex_state = 585}, + [1150] = {.lex_state = 614}, + [1151] = {.lex_state = 585}, + [1152] = {.lex_state = 585}, + [1153] = {.lex_state = 585}, + [1154] = {.lex_state = 585}, + [1155] = {.lex_state = 585}, + [1156] = {.lex_state = 585}, + [1157] = {.lex_state = 585}, + [1158] = {.lex_state = 585}, + [1159] = {.lex_state = 51, .external_lex_state = 2}, + [1160] = {.lex_state = 585}, + [1161] = {.lex_state = 585}, + [1162] = {.lex_state = 585}, + [1163] = {.lex_state = 585}, + [1164] = {.lex_state = 51, .external_lex_state = 2}, + [1165] = {.lex_state = 585}, + [1166] = {.lex_state = 585}, + [1167] = {.lex_state = 585}, + [1168] = {.lex_state = 585}, + [1169] = {.lex_state = 585}, + [1170] = {.lex_state = 585}, + [1171] = {.lex_state = 585}, + [1172] = {.lex_state = 585}, + [1173] = {.lex_state = 585}, + [1174] = {.lex_state = 585}, + [1175] = {.lex_state = 585}, + [1176] = {.lex_state = 585}, + [1177] = {.lex_state = 585}, + [1178] = {.lex_state = 585}, + [1179] = {.lex_state = 585}, + [1180] = {.lex_state = 585}, + [1181] = {.lex_state = 585}, + [1182] = {.lex_state = 585}, + [1183] = {.lex_state = 585}, + [1184] = {.lex_state = 585}, + [1185] = {.lex_state = 585}, + [1186] = {.lex_state = 585}, + [1187] = {.lex_state = 585}, + [1188] = {.lex_state = 585}, + [1189] = {.lex_state = 585}, + [1190] = {.lex_state = 585}, + [1191] = {.lex_state = 585}, + [1192] = {.lex_state = 585}, + [1193] = {.lex_state = 585}, + [1194] = {.lex_state = 585}, + [1195] = {.lex_state = 585}, + [1196] = {.lex_state = 585}, + [1197] = {.lex_state = 585}, + [1198] = {.lex_state = 585}, + [1199] = {.lex_state = 585}, + [1200] = {.lex_state = 585}, + [1201] = {.lex_state = 585}, + [1202] = {.lex_state = 585}, + [1203] = {.lex_state = 616}, + [1204] = {.lex_state = 585}, + [1205] = {.lex_state = 585}, + [1206] = {.lex_state = 585}, + [1207] = {.lex_state = 585}, + [1208] = {.lex_state = 585}, + [1209] = {.lex_state = 585}, + [1210] = {.lex_state = 585}, + [1211] = {.lex_state = 585}, + [1212] = {.lex_state = 585}, + [1213] = {.lex_state = 616}, + [1214] = {.lex_state = 585}, + [1215] = {.lex_state = 585}, + [1216] = {.lex_state = 585}, + [1217] = {.lex_state = 585}, + [1218] = {.lex_state = 585}, + [1219] = {.lex_state = 585}, + [1220] = {.lex_state = 585}, + [1221] = {.lex_state = 585}, + [1222] = {.lex_state = 585}, + [1223] = {.lex_state = 585}, + [1224] = {.lex_state = 585}, + [1225] = {.lex_state = 585}, + [1226] = {.lex_state = 585}, + [1227] = {.lex_state = 616}, + [1228] = {.lex_state = 585}, + [1229] = {.lex_state = 585}, + [1230] = {.lex_state = 47, .external_lex_state = 2}, + [1231] = {.lex_state = 585}, + [1232] = {.lex_state = 585}, + [1233] = {.lex_state = 47, .external_lex_state = 2}, + [1234] = {.lex_state = 585}, + [1235] = {.lex_state = 585}, + [1236] = {.lex_state = 585}, + [1237] = {.lex_state = 585}, + [1238] = {.lex_state = 585}, + [1239] = {.lex_state = 585}, + [1240] = {.lex_state = 47, .external_lex_state = 2}, + [1241] = {.lex_state = 47, .external_lex_state = 2}, + [1242] = {.lex_state = 585}, + [1243] = {.lex_state = 585}, + [1244] = {.lex_state = 51, .external_lex_state = 2}, + [1245] = {.lex_state = 585}, + [1246] = {.lex_state = 585}, + [1247] = {.lex_state = 585}, + [1248] = {.lex_state = 616}, + [1249] = {.lex_state = 585}, + [1250] = {.lex_state = 585}, + [1251] = {.lex_state = 585}, + [1252] = {.lex_state = 616}, + [1253] = {.lex_state = 585}, + [1254] = {.lex_state = 585}, + [1255] = {.lex_state = 585}, + [1256] = {.lex_state = 585}, + [1257] = {.lex_state = 585}, + [1258] = {.lex_state = 585}, + [1259] = {.lex_state = 585}, + [1260] = {.lex_state = 585}, + [1261] = {.lex_state = 585}, + [1262] = {.lex_state = 585}, + [1263] = {.lex_state = 585}, + [1264] = {.lex_state = 585}, + [1265] = {.lex_state = 585}, + [1266] = {.lex_state = 585}, + [1267] = {.lex_state = 585}, + [1268] = {.lex_state = 585}, + [1269] = {.lex_state = 585}, + [1270] = {.lex_state = 51, .external_lex_state = 2}, + [1271] = {.lex_state = 51, .external_lex_state = 2}, + [1272] = {.lex_state = 51, .external_lex_state = 2}, + [1273] = {.lex_state = 585}, + [1274] = {.lex_state = 585}, + [1275] = {.lex_state = 585}, + [1276] = {.lex_state = 585}, + [1277] = {.lex_state = 585}, + [1278] = {.lex_state = 631, .external_lex_state = 2}, + [1279] = {.lex_state = 585}, + [1280] = {.lex_state = 46, .external_lex_state = 2}, + [1281] = {.lex_state = 46, .external_lex_state = 2}, + [1282] = {.lex_state = 585}, + [1283] = {.lex_state = 585}, + [1284] = {.lex_state = 585}, + [1285] = {.lex_state = 585}, + [1286] = {.lex_state = 585}, + [1287] = {.lex_state = 585}, + [1288] = {.lex_state = 585}, + [1289] = {.lex_state = 585}, + [1290] = {.lex_state = 631, .external_lex_state = 2}, + [1291] = {.lex_state = 585}, + [1292] = {.lex_state = 585}, + [1293] = {.lex_state = 585}, + [1294] = {.lex_state = 585}, + [1295] = {.lex_state = 585}, + [1296] = {.lex_state = 585}, + [1297] = {.lex_state = 585}, + [1298] = {.lex_state = 585}, + [1299] = {.lex_state = 585}, + [1300] = {.lex_state = 585}, + [1301] = {.lex_state = 46, .external_lex_state = 2}, + [1302] = {.lex_state = 585}, + [1303] = {.lex_state = 585}, + [1304] = {.lex_state = 585}, + [1305] = {.lex_state = 585}, + [1306] = {.lex_state = 585}, + [1307] = {.lex_state = 585}, + [1308] = {.lex_state = 46, .external_lex_state = 2}, + [1309] = {.lex_state = 585}, + [1310] = {.lex_state = 585}, + [1311] = {.lex_state = 585}, + [1312] = {.lex_state = 631, .external_lex_state = 2}, + [1313] = {.lex_state = 585}, + [1314] = {.lex_state = 585}, + [1315] = {.lex_state = 585}, + [1316] = {.lex_state = 585}, + [1317] = {.lex_state = 585}, + [1318] = {.lex_state = 585}, + [1319] = {.lex_state = 585}, + [1320] = {.lex_state = 585}, + [1321] = {.lex_state = 585}, + [1322] = {.lex_state = 585}, + [1323] = {.lex_state = 585}, + [1324] = {.lex_state = 585}, + [1325] = {.lex_state = 585}, + [1326] = {.lex_state = 585}, + [1327] = {.lex_state = 585}, + [1328] = {.lex_state = 585}, + [1329] = {.lex_state = 585}, + [1330] = {.lex_state = 585}, + [1331] = {.lex_state = 585}, + [1332] = {.lex_state = 585}, + [1333] = {.lex_state = 585}, + [1334] = {.lex_state = 585}, + [1335] = {.lex_state = 585}, + [1336] = {.lex_state = 585}, + [1337] = {.lex_state = 585}, + [1338] = {.lex_state = 585}, + [1339] = {.lex_state = 585}, + [1340] = {.lex_state = 585}, + [1341] = {.lex_state = 585}, + [1342] = {.lex_state = 585}, + [1343] = {.lex_state = 585}, + [1344] = {.lex_state = 585}, + [1345] = {.lex_state = 585}, + [1346] = {.lex_state = 585}, + [1347] = {.lex_state = 585}, + [1348] = {.lex_state = 585}, + [1349] = {.lex_state = 585}, + [1350] = {.lex_state = 585}, + [1351] = {.lex_state = 585}, + [1352] = {.lex_state = 585}, + [1353] = {.lex_state = 585}, + [1354] = {.lex_state = 31, .external_lex_state = 2}, + [1355] = {.lex_state = 31, .external_lex_state = 2}, + [1356] = {.lex_state = 31, .external_lex_state = 2}, + [1357] = {.lex_state = 47, .external_lex_state = 2}, + [1358] = {.lex_state = 631, .external_lex_state = 2}, + [1359] = {.lex_state = 31, .external_lex_state = 2}, + [1360] = {.lex_state = 173, .external_lex_state = 2}, + [1361] = {.lex_state = 631, .external_lex_state = 2}, + [1362] = {.lex_state = 631, .external_lex_state = 2}, + [1363] = {.lex_state = 31, .external_lex_state = 2}, + [1364] = {.lex_state = 174, .external_lex_state = 2}, + [1365] = {.lex_state = 631, .external_lex_state = 2}, + [1366] = {.lex_state = 639, .external_lex_state = 2}, + [1367] = {.lex_state = 631, .external_lex_state = 2}, + [1368] = {.lex_state = 46, .external_lex_state = 2}, + [1369] = {.lex_state = 46, .external_lex_state = 2}, + [1370] = {.lex_state = 174, .external_lex_state = 2}, + [1371] = {.lex_state = 46, .external_lex_state = 2}, + [1372] = {.lex_state = 631, .external_lex_state = 2}, + [1373] = {.lex_state = 631, .external_lex_state = 2}, + [1374] = {.lex_state = 631, .external_lex_state = 2}, + [1375] = {.lex_state = 631, .external_lex_state = 2}, + [1376] = {.lex_state = 147, .external_lex_state = 2}, + [1377] = {.lex_state = 631, .external_lex_state = 2}, + [1378] = {.lex_state = 147, .external_lex_state = 2}, + [1379] = {.lex_state = 631, .external_lex_state = 2}, + [1380] = {.lex_state = 631, .external_lex_state = 2}, + [1381] = {.lex_state = 47, .external_lex_state = 2}, + [1382] = {.lex_state = 47, .external_lex_state = 2}, + [1383] = {.lex_state = 147, .external_lex_state = 2}, + [1384] = {.lex_state = 631, .external_lex_state = 2}, + [1385] = {.lex_state = 631, .external_lex_state = 2}, + [1386] = {.lex_state = 47, .external_lex_state = 2}, + [1387] = {.lex_state = 631, .external_lex_state = 2}, + [1388] = {.lex_state = 631, .external_lex_state = 2}, + [1389] = {.lex_state = 631, .external_lex_state = 2}, + [1390] = {.lex_state = 147, .external_lex_state = 2}, + [1391] = {.lex_state = 147, .external_lex_state = 2}, + [1392] = {.lex_state = 31, .external_lex_state = 2}, + [1393] = {.lex_state = 589}, + [1394] = {.lex_state = 36, .external_lex_state = 2}, + [1395] = {.lex_state = 631, .external_lex_state = 2}, + [1396] = {.lex_state = 36, .external_lex_state = 2}, + [1397] = {.lex_state = 631, .external_lex_state = 2}, + [1398] = {.lex_state = 591}, + [1399] = {.lex_state = 35, .external_lex_state = 2}, + [1400] = {.lex_state = 35, .external_lex_state = 2}, + [1401] = {.lex_state = 589}, + [1402] = {.lex_state = 591}, + [1403] = {.lex_state = 593}, + [1404] = {.lex_state = 35, .external_lex_state = 2}, + [1405] = {.lex_state = 35, .external_lex_state = 2}, + [1406] = {.lex_state = 631, .external_lex_state = 2}, + [1407] = {.lex_state = 48, .external_lex_state = 2}, + [1408] = {.lex_state = 631, .external_lex_state = 2}, + [1409] = {.lex_state = 591}, + [1410] = {.lex_state = 591}, + [1411] = {.lex_state = 597}, + [1412] = {.lex_state = 36, .external_lex_state = 2}, + [1413] = {.lex_state = 35, .external_lex_state = 2}, + [1414] = {.lex_state = 601}, + [1415] = {.lex_state = 599}, + [1416] = {.lex_state = 593}, + [1417] = {.lex_state = 597}, + [1418] = {.lex_state = 599}, + [1419] = {.lex_state = 36, .external_lex_state = 2}, + [1420] = {.lex_state = 35, .external_lex_state = 2}, + [1421] = {.lex_state = 601}, + [1422] = {.lex_state = 595}, + [1423] = {.lex_state = 157, .external_lex_state = 2}, [1424] = {.lex_state = 48, .external_lex_state = 2}, - [1425] = {.lex_state = 35, .external_lex_state = 2}, - [1426] = {.lex_state = 592}, + [1425] = {.lex_state = 603}, + [1426] = {.lex_state = 48, .external_lex_state = 2}, [1427] = {.lex_state = 157, .external_lex_state = 2}, - [1428] = {.lex_state = 590}, - [1429] = {.lex_state = 584}, - [1430] = {.lex_state = 590}, - [1431] = {.lex_state = 157, .external_lex_state = 2}, - [1432] = {.lex_state = 590}, - [1433] = {.lex_state = 48, .external_lex_state = 2}, - [1434] = {.lex_state = 590}, - [1435] = {.lex_state = 594}, - [1436] = {.lex_state = 590}, - [1437] = {.lex_state = 594}, - [1438] = {.lex_state = 584}, - [1439] = {.lex_state = 590}, - [1440] = {.lex_state = 592}, - [1441] = {.lex_state = 594}, - [1442] = {.lex_state = 596}, - [1443] = {.lex_state = 594}, - [1444] = {.lex_state = 596}, - [1445] = {.lex_state = 596}, - [1446] = {.lex_state = 596}, - [1447] = {.lex_state = 596}, - [1448] = {.lex_state = 596}, - [1449] = {.lex_state = 596}, - [1450] = {.lex_state = 596}, - [1451] = {.lex_state = 598}, - [1452] = {.lex_state = 625, .external_lex_state = 2}, - [1453] = {.lex_state = 596}, - [1454] = {.lex_state = 625, .external_lex_state = 2}, - [1455] = {.lex_state = 574}, - [1456] = {.lex_state = 596}, - [1457] = {.lex_state = 600}, - [1458] = {.lex_state = 38, .external_lex_state = 2}, - [1459] = {.lex_state = 600}, - [1460] = {.lex_state = 598}, - [1461] = {.lex_state = 38, .external_lex_state = 2}, - [1462] = {.lex_state = 602}, - [1463] = {.lex_state = 625, .external_lex_state = 2}, - [1464] = {.lex_state = 38, .external_lex_state = 2}, - [1465] = {.lex_state = 574}, - [1466] = {.lex_state = 602}, - [1467] = {.lex_state = 625, .external_lex_state = 2}, - [1468] = {.lex_state = 604}, - [1469] = {.lex_state = 604}, + [1428] = {.lex_state = 599}, + [1429] = {.lex_state = 599}, + [1430] = {.lex_state = 601}, + [1431] = {.lex_state = 48, .external_lex_state = 2}, + [1432] = {.lex_state = 601}, + [1433] = {.lex_state = 601}, + [1434] = {.lex_state = 601}, + [1435] = {.lex_state = 605}, + [1436] = {.lex_state = 601}, + [1437] = {.lex_state = 605}, + [1438] = {.lex_state = 601}, + [1439] = {.lex_state = 595}, + [1440] = {.lex_state = 603}, + [1441] = {.lex_state = 605}, + [1442] = {.lex_state = 636, .external_lex_state = 2}, + [1443] = {.lex_state = 636, .external_lex_state = 2}, + [1444] = {.lex_state = 607}, + [1445] = {.lex_state = 607}, + [1446] = {.lex_state = 607}, + [1447] = {.lex_state = 607}, + [1448] = {.lex_state = 607}, + [1449] = {.lex_state = 605}, + [1450] = {.lex_state = 38, .external_lex_state = 2}, + [1451] = {.lex_state = 607}, + [1452] = {.lex_state = 636, .external_lex_state = 2}, + [1453] = {.lex_state = 607}, + [1454] = {.lex_state = 607}, + [1455] = {.lex_state = 38, .external_lex_state = 2}, + [1456] = {.lex_state = 636, .external_lex_state = 2}, + [1457] = {.lex_state = 607}, + [1458] = {.lex_state = 609}, + [1459] = {.lex_state = 38, .external_lex_state = 2}, + [1460] = {.lex_state = 585}, + [1461] = {.lex_state = 611}, + [1462] = {.lex_state = 607}, + [1463] = {.lex_state = 148, .external_lex_state = 2}, + [1464] = {.lex_state = 148, .external_lex_state = 2}, + [1465] = {.lex_state = 148, .external_lex_state = 2}, + [1466] = {.lex_state = 148, .external_lex_state = 2}, + [1467] = {.lex_state = 148, .external_lex_state = 2}, + [1468] = {.lex_state = 148, .external_lex_state = 2}, + [1469] = {.lex_state = 148, .external_lex_state = 2}, [1470] = {.lex_state = 148, .external_lex_state = 2}, - [1471] = {.lex_state = 604}, + [1471] = {.lex_state = 148, .external_lex_state = 2}, [1472] = {.lex_state = 148, .external_lex_state = 2}, [1473] = {.lex_state = 148, .external_lex_state = 2}, - [1474] = {.lex_state = 148, .external_lex_state = 2}, - [1475] = {.lex_state = 604}, - [1476] = {.lex_state = 148, .external_lex_state = 2}, - [1477] = {.lex_state = 604}, - [1478] = {.lex_state = 604}, - [1479] = {.lex_state = 604}, + [1474] = {.lex_state = 611}, + [1475] = {.lex_state = 613}, + [1476] = {.lex_state = 613}, + [1477] = {.lex_state = 585}, + [1478] = {.lex_state = 148, .external_lex_state = 2}, + [1479] = {.lex_state = 609}, [1480] = {.lex_state = 148, .external_lex_state = 2}, - [1481] = {.lex_state = 604}, - [1482] = {.lex_state = 148, .external_lex_state = 2}, - [1483] = {.lex_state = 602}, - [1484] = {.lex_state = 148, .external_lex_state = 2}, - [1485] = {.lex_state = 148, .external_lex_state = 2}, - [1486] = {.lex_state = 148, .external_lex_state = 2}, - [1487] = {.lex_state = 148, .external_lex_state = 2}, - [1488] = {.lex_state = 604}, - [1489] = {.lex_state = 604}, - [1490] = {.lex_state = 602}, - [1491] = {.lex_state = 604}, - [1492] = {.lex_state = 148, .external_lex_state = 2}, - [1493] = {.lex_state = 148, .external_lex_state = 2}, - [1494] = {.lex_state = 604}, - [1495] = {.lex_state = 604}, - [1496] = {.lex_state = 604}, - [1497] = {.lex_state = 604}, - [1498] = {.lex_state = 604}, - [1499] = {.lex_state = 148, .external_lex_state = 2}, - [1500] = {.lex_state = 604}, - [1501] = {.lex_state = 604}, - [1502] = {.lex_state = 604}, - [1503] = {.lex_state = 606}, - [1504] = {.lex_state = 606}, - [1505] = {.lex_state = 604}, - [1506] = {.lex_state = 606}, - [1507] = {.lex_state = 604}, - [1508] = {.lex_state = 148, .external_lex_state = 2}, - [1509] = {.lex_state = 604}, - [1510] = {.lex_state = 148, .external_lex_state = 2}, - [1511] = {.lex_state = 604}, - [1512] = {.lex_state = 604}, - [1513] = {.lex_state = 604}, - [1514] = {.lex_state = 604}, - [1515] = {.lex_state = 604}, - [1516] = {.lex_state = 41, .external_lex_state = 2}, - [1517] = {.lex_state = 574}, - [1518] = {.lex_state = 574}, - [1519] = {.lex_state = 606}, - [1520] = {.lex_state = 606}, - [1521] = {.lex_state = 41, .external_lex_state = 2}, - [1522] = {.lex_state = 91}, - [1523] = {.lex_state = 91}, - [1524] = {.lex_state = 91}, - [1525] = {.lex_state = 91}, - [1526] = {.lex_state = 606}, - [1527] = {.lex_state = 8}, - [1528] = {.lex_state = 604}, - [1529] = {.lex_state = 91}, - [1530] = {.lex_state = 91}, - [1531] = {.lex_state = 91}, - [1532] = {.lex_state = 91}, + [1481] = {.lex_state = 148, .external_lex_state = 2}, + [1482] = {.lex_state = 615}, + [1483] = {.lex_state = 615}, + [1484] = {.lex_state = 615}, + [1485] = {.lex_state = 615}, + [1486] = {.lex_state = 613}, + [1487] = {.lex_state = 615}, + [1488] = {.lex_state = 613}, + [1489] = {.lex_state = 615}, + [1490] = {.lex_state = 615}, + [1491] = {.lex_state = 615}, + [1492] = {.lex_state = 615}, + [1493] = {.lex_state = 615}, + [1494] = {.lex_state = 615}, + [1495] = {.lex_state = 615}, + [1496] = {.lex_state = 148, .external_lex_state = 2}, + [1497] = {.lex_state = 615}, + [1498] = {.lex_state = 148, .external_lex_state = 2}, + [1499] = {.lex_state = 41, .external_lex_state = 2}, + [1500] = {.lex_state = 38, .external_lex_state = 2}, + [1501] = {.lex_state = 38, .external_lex_state = 2}, + [1502] = {.lex_state = 617}, + [1503] = {.lex_state = 615}, + [1504] = {.lex_state = 615}, + [1505] = {.lex_state = 38, .external_lex_state = 2}, + [1506] = {.lex_state = 38, .external_lex_state = 2}, + [1507] = {.lex_state = 585}, + [1508] = {.lex_state = 178, .external_lex_state = 2}, + [1509] = {.lex_state = 38, .external_lex_state = 2}, + [1510] = {.lex_state = 38, .external_lex_state = 2}, + [1511] = {.lex_state = 615}, + [1512] = {.lex_state = 615}, + [1513] = {.lex_state = 615}, + [1514] = {.lex_state = 615}, + [1515] = {.lex_state = 615}, + [1516] = {.lex_state = 615}, + [1517] = {.lex_state = 617}, + [1518] = {.lex_state = 617}, + [1519] = {.lex_state = 615}, + [1520] = {.lex_state = 38, .external_lex_state = 2}, + [1521] = {.lex_state = 38, .external_lex_state = 2}, + [1522] = {.lex_state = 38, .external_lex_state = 2}, + [1523] = {.lex_state = 615}, + [1524] = {.lex_state = 615}, + [1525] = {.lex_state = 615}, + [1526] = {.lex_state = 38, .external_lex_state = 2}, + [1527] = {.lex_state = 615}, + [1528] = {.lex_state = 41, .external_lex_state = 2}, + [1529] = {.lex_state = 615}, + [1530] = {.lex_state = 585}, + [1531] = {.lex_state = 585}, + [1532] = {.lex_state = 585}, [1533] = {.lex_state = 91}, [1534] = {.lex_state = 91}, - [1535] = {.lex_state = 91}, + [1535] = {.lex_state = 8}, [1536] = {.lex_state = 91}, [1537] = {.lex_state = 91}, [1538] = {.lex_state = 91}, - [1539] = {.lex_state = 38, .external_lex_state = 2}, + [1539] = {.lex_state = 91}, [1540] = {.lex_state = 91}, - [1541] = {.lex_state = 91}, - [1542] = {.lex_state = 38, .external_lex_state = 2}, - [1543] = {.lex_state = 91}, - [1544] = {.lex_state = 91}, - [1545] = {.lex_state = 91}, - [1546] = {.lex_state = 91}, - [1547] = {.lex_state = 91}, - [1548] = {.lex_state = 91}, - [1549] = {.lex_state = 91}, - [1550] = {.lex_state = 91}, - [1551] = {.lex_state = 91}, - [1552] = {.lex_state = 91}, - [1553] = {.lex_state = 91}, - [1554] = {.lex_state = 91}, - [1555] = {.lex_state = 38, .external_lex_state = 2}, - [1556] = {.lex_state = 91}, - [1557] = {.lex_state = 91}, - [1558] = {.lex_state = 91}, - [1559] = {.lex_state = 91}, - [1560] = {.lex_state = 91}, - [1561] = {.lex_state = 91}, - [1562] = {.lex_state = 91}, - [1563] = {.lex_state = 91}, - [1564] = {.lex_state = 91}, + [1541] = {.lex_state = 585}, + [1542] = {.lex_state = 585}, + [1543] = {.lex_state = 585}, + [1544] = {.lex_state = 585}, + [1545] = {.lex_state = 585}, + [1546] = {.lex_state = 585}, + [1547] = {.lex_state = 585}, + [1548] = {.lex_state = 585}, + [1549] = {.lex_state = 585}, + [1550] = {.lex_state = 585}, + [1551] = {.lex_state = 585}, + [1552] = {.lex_state = 585}, + [1553] = {.lex_state = 585}, + [1554] = {.lex_state = 585}, + [1555] = {.lex_state = 585}, + [1556] = {.lex_state = 585}, + [1557] = {.lex_state = 585}, + [1558] = {.lex_state = 585}, + [1559] = {.lex_state = 585}, + [1560] = {.lex_state = 585}, + [1561] = {.lex_state = 585}, + [1562] = {.lex_state = 585}, + [1563] = {.lex_state = 585}, + [1564] = {.lex_state = 585}, [1565] = {.lex_state = 91}, - [1566] = {.lex_state = 91}, + [1566] = {.lex_state = 585}, [1567] = {.lex_state = 91}, - [1568] = {.lex_state = 574}, - [1569] = {.lex_state = 574}, - [1570] = {.lex_state = 574}, - [1571] = {.lex_state = 574}, - [1572] = {.lex_state = 574}, - [1573] = {.lex_state = 574}, - [1574] = {.lex_state = 574}, - [1575] = {.lex_state = 574}, - [1576] = {.lex_state = 574}, - [1577] = {.lex_state = 574}, - [1578] = {.lex_state = 574}, - [1579] = {.lex_state = 574}, - [1580] = {.lex_state = 38, .external_lex_state = 2}, - [1581] = {.lex_state = 574}, - [1582] = {.lex_state = 574}, - [1583] = {.lex_state = 574}, - [1584] = {.lex_state = 574}, - [1585] = {.lex_state = 574}, - [1586] = {.lex_state = 574}, - [1587] = {.lex_state = 574}, - [1588] = {.lex_state = 574}, - [1589] = {.lex_state = 574}, - [1590] = {.lex_state = 574}, - [1591] = {.lex_state = 574}, - [1592] = {.lex_state = 574}, - [1593] = {.lex_state = 574}, - [1594] = {.lex_state = 574}, - [1595] = {.lex_state = 574}, - [1596] = {.lex_state = 574}, - [1597] = {.lex_state = 574}, - [1598] = {.lex_state = 574}, - [1599] = {.lex_state = 574}, - [1600] = {.lex_state = 574}, - [1601] = {.lex_state = 574}, - [1602] = {.lex_state = 574}, - [1603] = {.lex_state = 574}, - [1604] = {.lex_state = 574}, - [1605] = {.lex_state = 574}, - [1606] = {.lex_state = 574}, - [1607] = {.lex_state = 38, .external_lex_state = 2}, - [1608] = {.lex_state = 574}, - [1609] = {.lex_state = 91}, - [1610] = {.lex_state = 574}, - [1611] = {.lex_state = 574}, - [1612] = {.lex_state = 574}, - [1613] = {.lex_state = 574}, - [1614] = {.lex_state = 574}, - [1615] = {.lex_state = 574}, - [1616] = {.lex_state = 574}, - [1617] = {.lex_state = 574}, - [1618] = {.lex_state = 38, .external_lex_state = 2}, - [1619] = {.lex_state = 574}, - [1620] = {.lex_state = 574}, - [1621] = {.lex_state = 574}, - [1622] = {.lex_state = 574}, - [1623] = {.lex_state = 574}, - [1624] = {.lex_state = 574}, - [1625] = {.lex_state = 574}, - [1626] = {.lex_state = 574}, - [1627] = {.lex_state = 574}, - [1628] = {.lex_state = 574}, - [1629] = {.lex_state = 574}, - [1630] = {.lex_state = 574}, - [1631] = {.lex_state = 574}, - [1632] = {.lex_state = 574}, - [1633] = {.lex_state = 574}, - [1634] = {.lex_state = 574}, - [1635] = {.lex_state = 574}, - [1636] = {.lex_state = 574}, - [1637] = {.lex_state = 574}, - [1638] = {.lex_state = 574}, - [1639] = {.lex_state = 574}, - [1640] = {.lex_state = 574}, - [1641] = {.lex_state = 574}, - [1642] = {.lex_state = 574}, - [1643] = {.lex_state = 574}, - [1644] = {.lex_state = 574}, - [1645] = {.lex_state = 574}, - [1646] = {.lex_state = 574}, - [1647] = {.lex_state = 574}, - [1648] = {.lex_state = 574}, - [1649] = {.lex_state = 574}, - [1650] = {.lex_state = 574}, - [1651] = {.lex_state = 574}, - [1652] = {.lex_state = 574}, - [1653] = {.lex_state = 574}, - [1654] = {.lex_state = 574}, - [1655] = {.lex_state = 574}, - [1656] = {.lex_state = 574}, - [1657] = {.lex_state = 574}, - [1658] = {.lex_state = 574}, - [1659] = {.lex_state = 574}, - [1660] = {.lex_state = 574}, - [1661] = {.lex_state = 574}, - [1662] = {.lex_state = 574}, - [1663] = {.lex_state = 574}, - [1664] = {.lex_state = 574}, - [1665] = {.lex_state = 574}, - [1666] = {.lex_state = 574}, - [1667] = {.lex_state = 178, .external_lex_state = 2}, - [1668] = {.lex_state = 574}, - [1669] = {.lex_state = 574}, - [1670] = {.lex_state = 574}, - [1671] = {.lex_state = 574}, - [1672] = {.lex_state = 574}, - [1673] = {.lex_state = 574}, - [1674] = {.lex_state = 574}, - [1675] = {.lex_state = 574}, - [1676] = {.lex_state = 574}, - [1677] = {.lex_state = 574}, - [1678] = {.lex_state = 574}, - [1679] = {.lex_state = 574}, - [1680] = {.lex_state = 38, .external_lex_state = 2}, + [1568] = {.lex_state = 585}, + [1569] = {.lex_state = 585}, + [1570] = {.lex_state = 585}, + [1571] = {.lex_state = 585}, + [1572] = {.lex_state = 585}, + [1573] = {.lex_state = 91}, + [1574] = {.lex_state = 585}, + [1575] = {.lex_state = 585}, + [1576] = {.lex_state = 91}, + [1577] = {.lex_state = 585}, + [1578] = {.lex_state = 585}, + [1579] = {.lex_state = 585}, + [1580] = {.lex_state = 585}, + [1581] = {.lex_state = 585}, + [1582] = {.lex_state = 585}, + [1583] = {.lex_state = 585}, + [1584] = {.lex_state = 585}, + [1585] = {.lex_state = 585}, + [1586] = {.lex_state = 585}, + [1587] = {.lex_state = 585}, + [1588] = {.lex_state = 585}, + [1589] = {.lex_state = 585}, + [1590] = {.lex_state = 585}, + [1591] = {.lex_state = 585}, + [1592] = {.lex_state = 585}, + [1593] = {.lex_state = 585}, + [1594] = {.lex_state = 585}, + [1595] = {.lex_state = 585}, + [1596] = {.lex_state = 585}, + [1597] = {.lex_state = 585}, + [1598] = {.lex_state = 585}, + [1599] = {.lex_state = 585}, + [1600] = {.lex_state = 585}, + [1601] = {.lex_state = 585}, + [1602] = {.lex_state = 585}, + [1603] = {.lex_state = 585}, + [1604] = {.lex_state = 585}, + [1605] = {.lex_state = 585}, + [1606] = {.lex_state = 585}, + [1607] = {.lex_state = 585}, + [1608] = {.lex_state = 91}, + [1609] = {.lex_state = 585}, + [1610] = {.lex_state = 585}, + [1611] = {.lex_state = 585}, + [1612] = {.lex_state = 585}, + [1613] = {.lex_state = 585}, + [1614] = {.lex_state = 585}, + [1615] = {.lex_state = 585}, + [1616] = {.lex_state = 585}, + [1617] = {.lex_state = 91}, + [1618] = {.lex_state = 91}, + [1619] = {.lex_state = 585}, + [1620] = {.lex_state = 585}, + [1621] = {.lex_state = 585}, + [1622] = {.lex_state = 585}, + [1623] = {.lex_state = 585}, + [1624] = {.lex_state = 585}, + [1625] = {.lex_state = 585}, + [1626] = {.lex_state = 585}, + [1627] = {.lex_state = 585}, + [1628] = {.lex_state = 585}, + [1629] = {.lex_state = 585}, + [1630] = {.lex_state = 585}, + [1631] = {.lex_state = 91}, + [1632] = {.lex_state = 617}, + [1633] = {.lex_state = 617}, + [1634] = {.lex_state = 91}, + [1635] = {.lex_state = 615}, + [1636] = {.lex_state = 91}, + [1637] = {.lex_state = 91}, + [1638] = {.lex_state = 91}, + [1639] = {.lex_state = 91}, + [1640] = {.lex_state = 91}, + [1641] = {.lex_state = 91}, + [1642] = {.lex_state = 91}, + [1643] = {.lex_state = 91}, + [1644] = {.lex_state = 91}, + [1645] = {.lex_state = 91}, + [1646] = {.lex_state = 91}, + [1647] = {.lex_state = 91}, + [1648] = {.lex_state = 585}, + [1649] = {.lex_state = 585}, + [1650] = {.lex_state = 585}, + [1651] = {.lex_state = 585}, + [1652] = {.lex_state = 585}, + [1653] = {.lex_state = 585}, + [1654] = {.lex_state = 585}, + [1655] = {.lex_state = 585}, + [1656] = {.lex_state = 585}, + [1657] = {.lex_state = 585}, + [1658] = {.lex_state = 585}, + [1659] = {.lex_state = 585}, + [1660] = {.lex_state = 91}, + [1661] = {.lex_state = 178, .external_lex_state = 2}, + [1662] = {.lex_state = 91}, + [1663] = {.lex_state = 91}, + [1664] = {.lex_state = 585}, + [1665] = {.lex_state = 91}, + [1666] = {.lex_state = 617}, + [1667] = {.lex_state = 585}, + [1668] = {.lex_state = 585}, + [1669] = {.lex_state = 585}, + [1670] = {.lex_state = 91}, + [1671] = {.lex_state = 91}, + [1672] = {.lex_state = 585}, + [1673] = {.lex_state = 585}, + [1674] = {.lex_state = 91}, + [1675] = {.lex_state = 585}, + [1676] = {.lex_state = 91}, + [1677] = {.lex_state = 91}, + [1678] = {.lex_state = 585}, + [1679] = {.lex_state = 585}, + [1680] = {.lex_state = 91}, [1681] = {.lex_state = 91}, [1682] = {.lex_state = 91}, - [1683] = {.lex_state = 38, .external_lex_state = 2}, - [1684] = {.lex_state = 38, .external_lex_state = 2}, - [1685] = {.lex_state = 38, .external_lex_state = 2}, - [1686] = {.lex_state = 91}, + [1683] = {.lex_state = 585}, + [1684] = {.lex_state = 91}, + [1685] = {.lex_state = 178, .external_lex_state = 2}, + [1686] = {.lex_state = 585}, [1687] = {.lex_state = 91}, [1688] = {.lex_state = 91}, [1689] = {.lex_state = 91}, [1690] = {.lex_state = 91}, - [1691] = {.lex_state = 9}, - [1692] = {.lex_state = 9}, - [1693] = {.lex_state = 178, .external_lex_state = 2}, - [1694] = {.lex_state = 574}, - [1695] = {.lex_state = 574}, - [1696] = {.lex_state = 574}, - [1697] = {.lex_state = 574}, - [1698] = {.lex_state = 574}, - [1699] = {.lex_state = 574}, - [1700] = {.lex_state = 574}, - [1701] = {.lex_state = 574}, - [1702] = {.lex_state = 574}, - [1703] = {.lex_state = 574}, - [1704] = {.lex_state = 91}, - [1705] = {.lex_state = 574}, - [1706] = {.lex_state = 574}, - [1707] = {.lex_state = 574}, - [1708] = {.lex_state = 131}, - [1709] = {.lex_state = 178, .external_lex_state = 2}, - [1710] = {.lex_state = 38, .external_lex_state = 2}, - [1711] = {.lex_state = 38, .external_lex_state = 2}, - [1712] = {.lex_state = 38, .external_lex_state = 2}, - [1713] = {.lex_state = 10}, - [1714] = {.lex_state = 12}, - [1715] = {.lex_state = 38, .external_lex_state = 2}, - [1716] = {.lex_state = 38, .external_lex_state = 2}, - [1717] = {.lex_state = 131}, - [1718] = {.lex_state = 132}, - [1719] = {.lex_state = 132}, - [1720] = {.lex_state = 131}, - [1721] = {.lex_state = 38, .external_lex_state = 2}, - [1722] = {.lex_state = 38, .external_lex_state = 2}, - [1723] = {.lex_state = 38, .external_lex_state = 2}, - [1724] = {.lex_state = 38, .external_lex_state = 2}, - [1725] = {.lex_state = 38, .external_lex_state = 2}, - [1726] = {.lex_state = 38, .external_lex_state = 2}, - [1727] = {.lex_state = 13}, - [1728] = {.lex_state = 91}, - [1729] = {.lex_state = 627, .external_lex_state = 2}, - [1730] = {.lex_state = 131}, - [1731] = {.lex_state = 177, .external_lex_state = 2}, + [1691] = {.lex_state = 91}, + [1692] = {.lex_state = 91}, + [1693] = {.lex_state = 91}, + [1694] = {.lex_state = 38, .external_lex_state = 2}, + [1695] = {.lex_state = 91}, + [1696] = {.lex_state = 38, .external_lex_state = 2}, + [1697] = {.lex_state = 9}, + [1698] = {.lex_state = 131}, + [1699] = {.lex_state = 9}, + [1700] = {.lex_state = 38, .external_lex_state = 2}, + [1701] = {.lex_state = 38, .external_lex_state = 2}, + [1702] = {.lex_state = 38, .external_lex_state = 2}, + [1703] = {.lex_state = 38, .external_lex_state = 2}, + [1704] = {.lex_state = 585}, + [1705] = {.lex_state = 585}, + [1706] = {.lex_state = 585}, + [1707] = {.lex_state = 585}, + [1708] = {.lex_state = 585}, + [1709] = {.lex_state = 585}, + [1710] = {.lex_state = 585}, + [1711] = {.lex_state = 585}, + [1712] = {.lex_state = 585}, + [1713] = {.lex_state = 585}, + [1714] = {.lex_state = 38, .external_lex_state = 2}, + [1715] = {.lex_state = 585}, + [1716] = {.lex_state = 585}, + [1717] = {.lex_state = 38, .external_lex_state = 2}, + [1718] = {.lex_state = 38, .external_lex_state = 2}, + [1719] = {.lex_state = 38, .external_lex_state = 2}, + [1720] = {.lex_state = 38, .external_lex_state = 2}, + [1721] = {.lex_state = 132}, + [1722] = {.lex_state = 638, .external_lex_state = 2}, + [1723] = {.lex_state = 10}, + [1724] = {.lex_state = 177, .external_lex_state = 2}, + [1725] = {.lex_state = 177, .external_lex_state = 2}, + [1726] = {.lex_state = 131}, + [1727] = {.lex_state = 177, .external_lex_state = 2}, + [1728] = {.lex_state = 577, .external_lex_state = 2}, + [1729] = {.lex_state = 638, .external_lex_state = 2}, + [1730] = {.lex_state = 12}, + [1731] = {.lex_state = 638, .external_lex_state = 2}, [1732] = {.lex_state = 131}, - [1733] = {.lex_state = 627, .external_lex_state = 2}, - [1734] = {.lex_state = 627, .external_lex_state = 2}, - [1735] = {.lex_state = 566, .external_lex_state = 2}, + [1733] = {.lex_state = 132}, + [1734] = {.lex_state = 91}, + [1735] = {.lex_state = 131}, [1736] = {.lex_state = 13}, - [1737] = {.lex_state = 91}, - [1738] = {.lex_state = 14}, - [1739] = {.lex_state = 177, .external_lex_state = 2}, - [1740] = {.lex_state = 177, .external_lex_state = 2}, + [1737] = {.lex_state = 131}, + [1738] = {.lex_state = 577, .external_lex_state = 2}, + [1739] = {.lex_state = 638, .external_lex_state = 2}, + [1740] = {.lex_state = 577, .external_lex_state = 2}, [1741] = {.lex_state = 131}, - [1742] = {.lex_state = 133}, - [1743] = {.lex_state = 135}, - [1744] = {.lex_state = 131}, - [1745] = {.lex_state = 131}, - [1746] = {.lex_state = 131}, - [1747] = {.lex_state = 91}, - [1748] = {.lex_state = 91}, - [1749] = {.lex_state = 91}, - [1750] = {.lex_state = 91}, - [1751] = {.lex_state = 169, .external_lex_state = 2}, - [1752] = {.lex_state = 177, .external_lex_state = 2}, - [1753] = {.lex_state = 91}, - [1754] = {.lex_state = 566, .external_lex_state = 2}, - [1755] = {.lex_state = 566, .external_lex_state = 2}, - [1756] = {.lex_state = 566, .external_lex_state = 2}, - [1757] = {.lex_state = 566, .external_lex_state = 2}, - [1758] = {.lex_state = 566, .external_lex_state = 2}, - [1759] = {.lex_state = 566, .external_lex_state = 2}, + [1742] = {.lex_state = 577, .external_lex_state = 2}, + [1743] = {.lex_state = 177, .external_lex_state = 2}, + [1744] = {.lex_state = 177, .external_lex_state = 2}, + [1745] = {.lex_state = 177, .external_lex_state = 2}, + [1746] = {.lex_state = 177, .external_lex_state = 2}, + [1747] = {.lex_state = 131}, + [1748] = {.lex_state = 131}, + [1749] = {.lex_state = 131}, + [1750] = {.lex_state = 577, .external_lex_state = 2}, + [1751] = {.lex_state = 577, .external_lex_state = 2}, + [1752] = {.lex_state = 577, .external_lex_state = 2}, + [1753] = {.lex_state = 166, .external_lex_state = 2}, + [1754] = {.lex_state = 177, .external_lex_state = 2}, + [1755] = {.lex_state = 638, .external_lex_state = 2}, + [1756] = {.lex_state = 638, .external_lex_state = 2}, + [1757] = {.lex_state = 13}, + [1758] = {.lex_state = 169, .external_lex_state = 2}, + [1759] = {.lex_state = 38, .external_lex_state = 2}, [1760] = {.lex_state = 38, .external_lex_state = 2}, - [1761] = {.lex_state = 627, .external_lex_state = 2}, - [1762] = {.lex_state = 177, .external_lex_state = 2}, - [1763] = {.lex_state = 91}, - [1764] = {.lex_state = 627, .external_lex_state = 2}, + [1761] = {.lex_state = 14}, + [1762] = {.lex_state = 638, .external_lex_state = 2}, + [1763] = {.lex_state = 577, .external_lex_state = 2}, + [1764] = {.lex_state = 91}, [1765] = {.lex_state = 177, .external_lex_state = 2}, - [1766] = {.lex_state = 566, .external_lex_state = 2}, + [1766] = {.lex_state = 91}, [1767] = {.lex_state = 177, .external_lex_state = 2}, - [1768] = {.lex_state = 136}, - [1769] = {.lex_state = 177, .external_lex_state = 2}, - [1770] = {.lex_state = 38, .external_lex_state = 2}, - [1771] = {.lex_state = 627, .external_lex_state = 2}, - [1772] = {.lex_state = 177, .external_lex_state = 2}, + [1768] = {.lex_state = 177, .external_lex_state = 2}, + [1769] = {.lex_state = 91}, + [1770] = {.lex_state = 177, .external_lex_state = 2}, + [1771] = {.lex_state = 38, .external_lex_state = 2}, + [1772] = {.lex_state = 133}, [1773] = {.lex_state = 177, .external_lex_state = 2}, - [1774] = {.lex_state = 137}, - [1775] = {.lex_state = 91}, - [1776] = {.lex_state = 15}, - [1777] = {.lex_state = 627, .external_lex_state = 2}, - [1778] = {.lex_state = 177, .external_lex_state = 2}, + [1774] = {.lex_state = 135}, + [1775] = {.lex_state = 638, .external_lex_state = 2}, + [1776] = {.lex_state = 91}, + [1777] = {.lex_state = 38, .external_lex_state = 2}, + [1778] = {.lex_state = 15}, [1779] = {.lex_state = 91}, - [1780] = {.lex_state = 627, .external_lex_state = 2}, - [1781] = {.lex_state = 177, .external_lex_state = 2}, - [1782] = {.lex_state = 166, .external_lex_state = 2}, - [1783] = {.lex_state = 91}, - [1784] = {.lex_state = 14}, - [1785] = {.lex_state = 177, .external_lex_state = 2}, - [1786] = {.lex_state = 11}, - [1787] = {.lex_state = 14}, - [1788] = {.lex_state = 14}, - [1789] = {.lex_state = 38, .external_lex_state = 2}, - [1790] = {.lex_state = 136}, - [1791] = {.lex_state = 566, .external_lex_state = 2}, - [1792] = {.lex_state = 38, .external_lex_state = 2}, - [1793] = {.lex_state = 38, .external_lex_state = 2}, - [1794] = {.lex_state = 91}, - [1795] = {.lex_state = 91}, - [1796] = {.lex_state = 91}, - [1797] = {.lex_state = 134}, - [1798] = {.lex_state = 91}, - [1799] = {.lex_state = 91}, - [1800] = {.lex_state = 627, .external_lex_state = 2}, - [1801] = {.lex_state = 91}, - [1802] = {.lex_state = 91}, - [1803] = {.lex_state = 627, .external_lex_state = 2}, - [1804] = {.lex_state = 91}, - [1805] = {.lex_state = 91}, - [1806] = {.lex_state = 566, .external_lex_state = 2}, - [1807] = {.lex_state = 566, .external_lex_state = 2}, - [1808] = {.lex_state = 566, .external_lex_state = 2}, - [1809] = {.lex_state = 626, .external_lex_state = 2}, - [1810] = {.lex_state = 566, .external_lex_state = 2}, - [1811] = {.lex_state = 566, .external_lex_state = 2}, + [1780] = {.lex_state = 91}, + [1781] = {.lex_state = 91}, + [1782] = {.lex_state = 638, .external_lex_state = 2}, + [1783] = {.lex_state = 38, .external_lex_state = 2}, + [1784] = {.lex_state = 638, .external_lex_state = 2}, + [1785] = {.lex_state = 137}, + [1786] = {.lex_state = 91}, + [1787] = {.lex_state = 38, .external_lex_state = 2}, + [1788] = {.lex_state = 38, .external_lex_state = 2}, + [1789] = {.lex_state = 11}, + [1790] = {.lex_state = 14}, + [1791] = {.lex_state = 577, .external_lex_state = 2}, + [1792] = {.lex_state = 577, .external_lex_state = 2}, + [1793] = {.lex_state = 577, .external_lex_state = 2}, + [1794] = {.lex_state = 577, .external_lex_state = 2}, + [1795] = {.lex_state = 577, .external_lex_state = 2}, + [1796] = {.lex_state = 38, .external_lex_state = 2}, + [1797] = {.lex_state = 38, .external_lex_state = 2}, + [1798] = {.lex_state = 637, .external_lex_state = 2}, + [1799] = {.lex_state = 38, .external_lex_state = 2}, + [1800] = {.lex_state = 91}, + [1801] = {.lex_state = 38, .external_lex_state = 2}, + [1802] = {.lex_state = 38, .external_lex_state = 2}, + [1803] = {.lex_state = 577, .external_lex_state = 2}, + [1804] = {.lex_state = 14}, + [1805] = {.lex_state = 578, .external_lex_state = 2}, + [1806] = {.lex_state = 38, .external_lex_state = 2}, + [1807] = {.lex_state = 136}, + [1808] = {.lex_state = 168, .external_lex_state = 2}, + [1809] = {.lex_state = 136}, + [1810] = {.lex_state = 168, .external_lex_state = 2}, + [1811] = {.lex_state = 38, .external_lex_state = 2}, [1812] = {.lex_state = 91}, - [1813] = {.lex_state = 91}, - [1814] = {.lex_state = 168, .external_lex_state = 2}, + [1813] = {.lex_state = 14}, + [1814] = {.lex_state = 38, .external_lex_state = 2}, [1815] = {.lex_state = 91}, - [1816] = {.lex_state = 567, .external_lex_state = 2}, - [1817] = {.lex_state = 168, .external_lex_state = 2}, - [1818] = {.lex_state = 38, .external_lex_state = 2}, + [1816] = {.lex_state = 170, .external_lex_state = 2}, + [1817] = {.lex_state = 91}, + [1818] = {.lex_state = 91}, [1819] = {.lex_state = 91}, - [1820] = {.lex_state = 91}, + [1820] = {.lex_state = 578, .external_lex_state = 2}, [1821] = {.lex_state = 91}, - [1822] = {.lex_state = 91}, - [1823] = {.lex_state = 137}, + [1822] = {.lex_state = 137}, + [1823] = {.lex_state = 91}, [1824] = {.lex_state = 137}, - [1825] = {.lex_state = 137}, - [1826] = {.lex_state = 91}, - [1827] = {.lex_state = 16}, - [1828] = {.lex_state = 91}, + [1825] = {.lex_state = 91}, + [1826] = {.lex_state = 137}, + [1827] = {.lex_state = 91}, + [1828] = {.lex_state = 16}, [1829] = {.lex_state = 16}, - [1830] = {.lex_state = 91}, + [1830] = {.lex_state = 138}, [1831] = {.lex_state = 91}, - [1832] = {.lex_state = 91}, + [1832] = {.lex_state = 134}, [1833] = {.lex_state = 91}, - [1834] = {.lex_state = 38, .external_lex_state = 2}, - [1835] = {.lex_state = 38, .external_lex_state = 2}, + [1834] = {.lex_state = 638, .external_lex_state = 2}, + [1835] = {.lex_state = 170, .external_lex_state = 2}, [1836] = {.lex_state = 91}, [1837] = {.lex_state = 91}, - [1838] = {.lex_state = 38, .external_lex_state = 2}, - [1839] = {.lex_state = 91}, - [1840] = {.lex_state = 91}, - [1841] = {.lex_state = 38, .external_lex_state = 2}, - [1842] = {.lex_state = 138}, - [1843] = {.lex_state = 38, .external_lex_state = 2}, + [1838] = {.lex_state = 91}, + [1839] = {.lex_state = 637, .external_lex_state = 2}, + [1840] = {.lex_state = 638, .external_lex_state = 2}, + [1841] = {.lex_state = 170, .external_lex_state = 2}, + [1842] = {.lex_state = 91}, + [1843] = {.lex_state = 91}, [1844] = {.lex_state = 91}, - [1845] = {.lex_state = 38, .external_lex_state = 2}, - [1846] = {.lex_state = 38, .external_lex_state = 2}, - [1847] = {.lex_state = 38, .external_lex_state = 2}, + [1845] = {.lex_state = 91}, + [1846] = {.lex_state = 91}, + [1847] = {.lex_state = 638, .external_lex_state = 2}, [1848] = {.lex_state = 91}, [1849] = {.lex_state = 91}, [1850] = {.lex_state = 91}, [1851] = {.lex_state = 91}, - [1852] = {.lex_state = 38, .external_lex_state = 2}, + [1852] = {.lex_state = 91}, [1853] = {.lex_state = 91}, - [1854] = {.lex_state = 91}, - [1855] = {.lex_state = 139}, - [1856] = {.lex_state = 17}, + [1854] = {.lex_state = 170, .external_lex_state = 2}, + [1855] = {.lex_state = 91}, + [1856] = {.lex_state = 91}, [1857] = {.lex_state = 91}, [1858] = {.lex_state = 91}, [1859] = {.lex_state = 91}, - [1860] = {.lex_state = 17}, - [1861] = {.lex_state = 574}, - [1862] = {.lex_state = 17}, - [1863] = {.lex_state = 170, .external_lex_state = 2}, - [1864] = {.lex_state = 17}, - [1865] = {.lex_state = 627, .external_lex_state = 2}, - [1866] = {.lex_state = 627, .external_lex_state = 2}, - [1867] = {.lex_state = 626, .external_lex_state = 2}, - [1868] = {.lex_state = 627, .external_lex_state = 2}, - [1869] = {.lex_state = 17}, + [1860] = {.lex_state = 91}, + [1861] = {.lex_state = 91}, + [1862] = {.lex_state = 91}, + [1863] = {.lex_state = 91}, + [1864] = {.lex_state = 636, .external_lex_state = 2}, + [1865] = {.lex_state = 638, .external_lex_state = 2}, + [1866] = {.lex_state = 17}, + [1867] = {.lex_state = 17}, + [1868] = {.lex_state = 17}, + [1869] = {.lex_state = 139}, [1870] = {.lex_state = 139}, - [1871] = {.lex_state = 170, .external_lex_state = 2}, - [1872] = {.lex_state = 170, .external_lex_state = 2}, - [1873] = {.lex_state = 170, .external_lex_state = 2}, - [1874] = {.lex_state = 567, .external_lex_state = 2}, - [1875] = {.lex_state = 625, .external_lex_state = 2}, - [1876] = {.lex_state = 91}, - [1877] = {.lex_state = 625, .external_lex_state = 2}, - [1878] = {.lex_state = 140}, - [1879] = {.lex_state = 625, .external_lex_state = 2}, - [1880] = {.lex_state = 625, .external_lex_state = 2}, - [1881] = {.lex_state = 267}, - [1882] = {.lex_state = 574}, - [1883] = {.lex_state = 175, .external_lex_state = 2}, - [1884] = {.lex_state = 625, .external_lex_state = 2}, - [1885] = {.lex_state = 19}, - [1886] = {.lex_state = 625, .external_lex_state = 2}, - [1887] = {.lex_state = 91}, - [1888] = {.lex_state = 625, .external_lex_state = 2}, - [1889] = {.lex_state = 627, .external_lex_state = 2}, - [1890] = {.lex_state = 625, .external_lex_state = 2}, - [1891] = {.lex_state = 91}, - [1892] = {.lex_state = 140}, - [1893] = {.lex_state = 625, .external_lex_state = 2}, - [1894] = {.lex_state = 140}, - [1895] = {.lex_state = 625, .external_lex_state = 2}, - [1896] = {.lex_state = 627, .external_lex_state = 2}, - [1897] = {.lex_state = 625, .external_lex_state = 2}, - [1898] = {.lex_state = 627, .external_lex_state = 2}, - [1899] = {.lex_state = 625, .external_lex_state = 2}, - [1900] = {.lex_state = 625, .external_lex_state = 2}, - [1901] = {.lex_state = 18}, - [1902] = {.lex_state = 91}, - [1903] = {.lex_state = 625, .external_lex_state = 2}, - [1904] = {.lex_state = 625, .external_lex_state = 2}, - [1905] = {.lex_state = 1179}, - [1906] = {.lex_state = 625, .external_lex_state = 2}, + [1871] = {.lex_state = 91}, + [1872] = {.lex_state = 636, .external_lex_state = 2}, + [1873] = {.lex_state = 91}, + [1874] = {.lex_state = 91}, + [1875] = {.lex_state = 17}, + [1876] = {.lex_state = 17}, + [1877] = {.lex_state = 636, .external_lex_state = 2}, + [1878] = {.lex_state = 636, .external_lex_state = 2}, + [1879] = {.lex_state = 636, .external_lex_state = 2}, + [1880] = {.lex_state = 636, .external_lex_state = 2}, + [1881] = {.lex_state = 636, .external_lex_state = 2}, + [1882] = {.lex_state = 636, .external_lex_state = 2}, + [1883] = {.lex_state = 636, .external_lex_state = 2}, + [1884] = {.lex_state = 636, .external_lex_state = 2}, + [1885] = {.lex_state = 636, .external_lex_state = 2}, + [1886] = {.lex_state = 585}, + [1887] = {.lex_state = 636, .external_lex_state = 2}, + [1888] = {.lex_state = 636, .external_lex_state = 2}, + [1889] = {.lex_state = 636, .external_lex_state = 2}, + [1890] = {.lex_state = 636, .external_lex_state = 2}, + [1891] = {.lex_state = 638, .external_lex_state = 2}, + [1892] = {.lex_state = 636, .external_lex_state = 2}, + [1893] = {.lex_state = 636, .external_lex_state = 2}, + [1894] = {.lex_state = 638, .external_lex_state = 2}, + [1895] = {.lex_state = 636, .external_lex_state = 2}, + [1896] = {.lex_state = 636, .external_lex_state = 2}, + [1897] = {.lex_state = 91}, + [1898] = {.lex_state = 636, .external_lex_state = 2}, + [1899] = {.lex_state = 636, .external_lex_state = 2}, + [1900] = {.lex_state = 162, .external_lex_state = 2}, + [1901] = {.lex_state = 162, .external_lex_state = 2}, + [1902] = {.lex_state = 175, .external_lex_state = 2}, + [1903] = {.lex_state = 140}, + [1904] = {.lex_state = 1205}, + [1905] = {.lex_state = 636, .external_lex_state = 2}, + [1906] = {.lex_state = 636, .external_lex_state = 2}, [1907] = {.lex_state = 140}, - [1908] = {.lex_state = 140}, - [1909] = {.lex_state = 1181}, - [1910] = {.lex_state = 625, .external_lex_state = 2}, - [1911] = {.lex_state = 625, .external_lex_state = 2}, - [1912] = {.lex_state = 625, .external_lex_state = 2}, - [1913] = {.lex_state = 162, .external_lex_state = 2}, - [1914] = {.lex_state = 126, .external_lex_state = 2}, - [1915] = {.lex_state = 267}, - [1916] = {.lex_state = 162, .external_lex_state = 2}, - [1917] = {.lex_state = 162, .external_lex_state = 2}, - [1918] = {.lex_state = 176, .external_lex_state = 2}, - [1919] = {.lex_state = 1184}, - [1920] = {.lex_state = 1182}, - [1921] = {.lex_state = 625, .external_lex_state = 2}, - [1922] = {.lex_state = 142}, - [1923] = {.lex_state = 1182}, - [1924] = {.lex_state = 162, .external_lex_state = 2}, - [1925] = {.lex_state = 141}, - [1926] = {.lex_state = 625, .external_lex_state = 2}, - [1927] = {.lex_state = 625, .external_lex_state = 2}, - [1928] = {.lex_state = 625, .external_lex_state = 2}, - [1929] = {.lex_state = 625, .external_lex_state = 2}, - [1930] = {.lex_state = 625, .external_lex_state = 2}, - [1931] = {.lex_state = 20}, - [1932] = {.lex_state = 176, .external_lex_state = 2}, - [1933] = {.lex_state = 625, .external_lex_state = 2}, - [1934] = {.lex_state = 1180}, - [1935] = {.lex_state = 625, .external_lex_state = 2}, - [1936] = {.lex_state = 625, .external_lex_state = 2}, - [1937] = {.lex_state = 162, .external_lex_state = 2}, - [1938] = {.lex_state = 20}, - [1939] = {.lex_state = 625, .external_lex_state = 2}, - [1940] = {.lex_state = 162, .external_lex_state = 2}, - [1941] = {.lex_state = 625, .external_lex_state = 2}, - [1942] = {.lex_state = 625, .external_lex_state = 2}, - [1943] = {.lex_state = 162, .external_lex_state = 2}, - [1944] = {.lex_state = 625, .external_lex_state = 2}, - [1945] = {.lex_state = 625, .external_lex_state = 2}, - [1946] = {.lex_state = 625, .external_lex_state = 2}, - [1947] = {.lex_state = 267}, - [1948] = {.lex_state = 143}, - [1949] = {.lex_state = 21}, - [1950] = {.lex_state = 574}, - [1951] = {.lex_state = 91}, - [1952] = {.lex_state = 1183}, - [1953] = {.lex_state = 126, .external_lex_state = 2}, - [1954] = {.lex_state = 1185}, + [1908] = {.lex_state = 162, .external_lex_state = 2}, + [1909] = {.lex_state = 91}, + [1910] = {.lex_state = 636, .external_lex_state = 2}, + [1911] = {.lex_state = 140}, + [1912] = {.lex_state = 636, .external_lex_state = 2}, + [1913] = {.lex_state = 267}, + [1914] = {.lex_state = 162, .external_lex_state = 2}, + [1915] = {.lex_state = 636, .external_lex_state = 2}, + [1916] = {.lex_state = 636, .external_lex_state = 2}, + [1917] = {.lex_state = 636, .external_lex_state = 2}, + [1918] = {.lex_state = 140}, + [1919] = {.lex_state = 126, .external_lex_state = 2}, + [1920] = {.lex_state = 162, .external_lex_state = 2}, + [1921] = {.lex_state = 585}, + [1922] = {.lex_state = 636, .external_lex_state = 2}, + [1923] = {.lex_state = 19}, + [1924] = {.lex_state = 636, .external_lex_state = 2}, + [1925] = {.lex_state = 162, .external_lex_state = 2}, + [1926] = {.lex_state = 636, .external_lex_state = 2}, + [1927] = {.lex_state = 636, .external_lex_state = 2}, + [1928] = {.lex_state = 1203}, + [1929] = {.lex_state = 636, .external_lex_state = 2}, + [1930] = {.lex_state = 162, .external_lex_state = 2}, + [1931] = {.lex_state = 140}, + [1932] = {.lex_state = 91}, + [1933] = {.lex_state = 18}, + [1934] = {.lex_state = 636, .external_lex_state = 2}, + [1935] = {.lex_state = 91}, + [1936] = {.lex_state = 126, .external_lex_state = 2}, + [1937] = {.lex_state = 164, .external_lex_state = 2}, + [1938] = {.lex_state = 126, .external_lex_state = 2}, + [1939] = {.lex_state = 20}, + [1940] = {.lex_state = 126, .external_lex_state = 2}, + [1941] = {.lex_state = 162, .external_lex_state = 2}, + [1942] = {.lex_state = 142}, + [1943] = {.lex_state = 1206}, + [1944] = {.lex_state = 176, .external_lex_state = 2}, + [1945] = {.lex_state = 1208}, + [1946] = {.lex_state = 126, .external_lex_state = 2}, + [1947] = {.lex_state = 1206}, + [1948] = {.lex_state = 126, .external_lex_state = 2}, + [1949] = {.lex_state = 267}, + [1950] = {.lex_state = 162, .external_lex_state = 2}, + [1951] = {.lex_state = 20}, + [1952] = {.lex_state = 176, .external_lex_state = 2}, + [1953] = {.lex_state = 141}, + [1954] = {.lex_state = 1204}, [1955] = {.lex_state = 126, .external_lex_state = 2}, - [1956] = {.lex_state = 267}, - [1957] = {.lex_state = 574}, - [1958] = {.lex_state = 574}, - [1959] = {.lex_state = 574}, - [1960] = {.lex_state = 1185}, - [1961] = {.lex_state = 21}, - [1962] = {.lex_state = 164, .external_lex_state = 2}, - [1963] = {.lex_state = 126, .external_lex_state = 2}, - [1964] = {.lex_state = 153, .external_lex_state = 2}, - [1965] = {.lex_state = 126, .external_lex_state = 2}, - [1966] = {.lex_state = 126, .external_lex_state = 2}, - [1967] = {.lex_state = 21}, - [1968] = {.lex_state = 126, .external_lex_state = 2}, - [1969] = {.lex_state = 574}, - [1970] = {.lex_state = 574}, - [1971] = {.lex_state = 267}, - [1972] = {.lex_state = 574}, - [1973] = {.lex_state = 1183}, - [1974] = {.lex_state = 21}, - [1975] = {.lex_state = 153, .external_lex_state = 2}, - [1976] = {.lex_state = 267}, - [1977] = {.lex_state = 267}, + [1956] = {.lex_state = 585}, + [1957] = {.lex_state = 21}, + [1958] = {.lex_state = 267}, + [1959] = {.lex_state = 267}, + [1960] = {.lex_state = 267}, + [1961] = {.lex_state = 1207}, + [1962] = {.lex_state = 38, .external_lex_state = 2}, + [1963] = {.lex_state = 21}, + [1964] = {.lex_state = 267}, + [1965] = {.lex_state = 21}, + [1966] = {.lex_state = 1209}, + [1967] = {.lex_state = 585}, + [1968] = {.lex_state = 159, .external_lex_state = 2}, + [1969] = {.lex_state = 21}, + [1970] = {.lex_state = 21}, + [1971] = {.lex_state = 159, .external_lex_state = 2}, + [1972] = {.lex_state = 21}, + [1973] = {.lex_state = 267}, + [1974] = {.lex_state = 585}, + [1975] = {.lex_state = 585}, + [1976] = {.lex_state = 21}, + [1977] = {.lex_state = 585}, [1978] = {.lex_state = 21}, - [1979] = {.lex_state = 21}, - [1980] = {.lex_state = 21}, - [1981] = {.lex_state = 267}, - [1982] = {.lex_state = 21}, - [1983] = {.lex_state = 21}, - [1984] = {.lex_state = 1183}, - [1985] = {.lex_state = 267}, - [1986] = {.lex_state = 1183}, - [1987] = {.lex_state = 267}, - [1988] = {.lex_state = 574}, - [1989] = {.lex_state = 21}, - [1990] = {.lex_state = 162, .external_lex_state = 2}, - [1991] = {.lex_state = 21}, - [1992] = {.lex_state = 143}, - [1993] = {.lex_state = 162, .external_lex_state = 2}, - [1994] = {.lex_state = 21}, - [1995] = {.lex_state = 21}, - [1996] = {.lex_state = 574}, - [1997] = {.lex_state = 574}, - [1998] = {.lex_state = 144}, - [1999] = {.lex_state = 144}, - [2000] = {.lex_state = 144}, - [2001] = {.lex_state = 144}, - [2002] = {.lex_state = 144}, - [2003] = {.lex_state = 574}, - [2004] = {.lex_state = 144}, - [2005] = {.lex_state = 144}, - [2006] = {.lex_state = 144}, - [2007] = {.lex_state = 159, .external_lex_state = 2}, - [2008] = {.lex_state = 45, .external_lex_state = 2}, - [2009] = {.lex_state = 144}, - [2010] = {.lex_state = 144}, - [2011] = {.lex_state = 144}, - [2012] = {.lex_state = 91}, - [2013] = {.lex_state = 1186}, - [2014] = {.lex_state = 573}, - [2015] = {.lex_state = 267}, - [2016] = {.lex_state = 154, .external_lex_state = 2}, - [2017] = {.lex_state = 154, .external_lex_state = 2}, - [2018] = {.lex_state = 154, .external_lex_state = 2}, - [2019] = {.lex_state = 574}, - [2020] = {.lex_state = 574}, - [2021] = {.lex_state = 574}, - [2022] = {.lex_state = 574}, - [2023] = {.lex_state = 159, .external_lex_state = 2}, - [2024] = {.lex_state = 574}, - [2025] = {.lex_state = 267}, - [2026] = {.lex_state = 574}, - [2027] = {.lex_state = 574}, - [2028] = {.lex_state = 574}, - [2029] = {.lex_state = 574}, - [2030] = {.lex_state = 574}, - [2031] = {.lex_state = 574}, - [2032] = {.lex_state = 574}, - [2033] = {.lex_state = 159, .external_lex_state = 2}, - [2034] = {.lex_state = 574}, - [2035] = {.lex_state = 574}, - [2036] = {.lex_state = 574}, - [2037] = {.lex_state = 574}, - [2038] = {.lex_state = 574}, - [2039] = {.lex_state = 574}, - [2040] = {.lex_state = 574}, - [2041] = {.lex_state = 574}, - [2042] = {.lex_state = 574}, - [2043] = {.lex_state = 574}, - [2044] = {.lex_state = 574}, - [2045] = {.lex_state = 574}, - [2046] = {.lex_state = 574}, - [2047] = {.lex_state = 574}, - [2048] = {.lex_state = 574}, - [2049] = {.lex_state = 574}, - [2050] = {.lex_state = 574}, - [2051] = {.lex_state = 574}, - [2052] = {.lex_state = 574}, - [2053] = {.lex_state = 574}, - [2054] = {.lex_state = 574}, - [2055] = {.lex_state = 574}, - [2056] = {.lex_state = 574}, - [2057] = {.lex_state = 574}, - [2058] = {.lex_state = 574}, - [2059] = {.lex_state = 574}, - [2060] = {.lex_state = 574}, - [2061] = {.lex_state = 574}, - [2062] = {.lex_state = 574}, - [2063] = {.lex_state = 574}, - [2064] = {.lex_state = 574}, - [2065] = {.lex_state = 574}, - [2066] = {.lex_state = 574}, - [2067] = {.lex_state = 574}, - [2068] = {.lex_state = 574}, - [2069] = {.lex_state = 159, .external_lex_state = 2}, - [2070] = {.lex_state = 574}, - [2071] = {.lex_state = 574}, - [2072] = {.lex_state = 574}, - [2073] = {.lex_state = 574}, - [2074] = {.lex_state = 574}, - [2075] = {.lex_state = 574}, - [2076] = {.lex_state = 574}, - [2077] = {.lex_state = 574}, - [2078] = {.lex_state = 574}, - [2079] = {.lex_state = 574}, - [2080] = {.lex_state = 574}, - [2081] = {.lex_state = 574}, - [2082] = {.lex_state = 574}, - [2083] = {.lex_state = 574}, - [2084] = {.lex_state = 574}, - [2085] = {.lex_state = 144}, - [2086] = {.lex_state = 574}, - [2087] = {.lex_state = 574}, - [2088] = {.lex_state = 574}, - [2089] = {.lex_state = 574}, - [2090] = {.lex_state = 574}, - [2091] = {.lex_state = 574}, - [2092] = {.lex_state = 574}, - [2093] = {.lex_state = 574}, - [2094] = {.lex_state = 574}, - [2095] = {.lex_state = 574}, - [2096] = {.lex_state = 574}, - [2097] = {.lex_state = 574}, - [2098] = {.lex_state = 574}, - [2099] = {.lex_state = 574}, - [2100] = {.lex_state = 574}, - [2101] = {.lex_state = 574}, - [2102] = {.lex_state = 574}, - [2103] = {.lex_state = 574}, - [2104] = {.lex_state = 574}, - [2105] = {.lex_state = 574}, - [2106] = {.lex_state = 45, .external_lex_state = 2}, - [2107] = {.lex_state = 574}, - [2108] = {.lex_state = 574}, - [2109] = {.lex_state = 574}, - [2110] = {.lex_state = 574}, - [2111] = {.lex_state = 574}, - [2112] = {.lex_state = 574}, - [2113] = {.lex_state = 574}, - [2114] = {.lex_state = 574}, - [2115] = {.lex_state = 574}, - [2116] = {.lex_state = 574}, - [2117] = {.lex_state = 574}, - [2118] = {.lex_state = 574}, - [2119] = {.lex_state = 154, .external_lex_state = 2}, - [2120] = {.lex_state = 1186}, - [2121] = {.lex_state = 1186}, - [2122] = {.lex_state = 38, .external_lex_state = 2}, - [2123] = {.lex_state = 159, .external_lex_state = 2}, - [2124] = {.lex_state = 1186}, - [2125] = {.lex_state = 161, .external_lex_state = 2}, - [2126] = {.lex_state = 38, .external_lex_state = 2}, - [2127] = {.lex_state = 1186}, - [2128] = {.lex_state = 127, .external_lex_state = 2}, - [2129] = {.lex_state = 21}, - [2130] = {.lex_state = 574}, - [2131] = {.lex_state = 574}, - [2132] = {.lex_state = 45, .external_lex_state = 2}, - [2133] = {.lex_state = 1186}, - [2134] = {.lex_state = 154, .external_lex_state = 2}, - [2135] = {.lex_state = 91}, - [2136] = {.lex_state = 1186}, - [2137] = {.lex_state = 1186}, - [2138] = {.lex_state = 1186}, - [2139] = {.lex_state = 1186}, - [2140] = {.lex_state = 144}, - [2141] = {.lex_state = 574}, - [2142] = {.lex_state = 167, .external_lex_state = 2}, - [2143] = {.lex_state = 167, .external_lex_state = 2}, - [2144] = {.lex_state = 167, .external_lex_state = 2}, - [2145] = {.lex_state = 574}, - [2146] = {.lex_state = 159, .external_lex_state = 2}, - [2147] = {.lex_state = 154, .external_lex_state = 2}, - [2148] = {.lex_state = 159, .external_lex_state = 2}, - [2149] = {.lex_state = 154, .external_lex_state = 2}, - [2150] = {.lex_state = 167, .external_lex_state = 2}, - [2151] = {.lex_state = 162, .external_lex_state = 2}, - [2152] = {.lex_state = 91}, - [2153] = {.lex_state = 45, .external_lex_state = 2}, - [2154] = {.lex_state = 167, .external_lex_state = 2}, - [2155] = {.lex_state = 167, .external_lex_state = 2}, - [2156] = {.lex_state = 167, .external_lex_state = 2}, - [2157] = {.lex_state = 574}, - [2158] = {.lex_state = 162, .external_lex_state = 2}, + [1979] = {.lex_state = 1207}, + [1980] = {.lex_state = 161, .external_lex_state = 2}, + [1981] = {.lex_state = 21}, + [1982] = {.lex_state = 143}, + [1983] = {.lex_state = 585}, + [1984] = {.lex_state = 38, .external_lex_state = 2}, + [1985] = {.lex_state = 585}, + [1986] = {.lex_state = 585}, + [1987] = {.lex_state = 585}, + [1988] = {.lex_state = 21}, + [1989] = {.lex_state = 153, .external_lex_state = 2}, + [1990] = {.lex_state = 267}, + [1991] = {.lex_state = 267}, + [1992] = {.lex_state = 21}, + [1993] = {.lex_state = 127, .external_lex_state = 2}, + [1994] = {.lex_state = 1209}, + [1995] = {.lex_state = 91}, + [1996] = {.lex_state = 21}, + [1997] = {.lex_state = 159, .external_lex_state = 2}, + [1998] = {.lex_state = 1207}, + [1999] = {.lex_state = 1207}, + [2000] = {.lex_state = 21}, + [2001] = {.lex_state = 267}, + [2002] = {.lex_state = 153, .external_lex_state = 2}, + [2003] = {.lex_state = 143}, + [2004] = {.lex_state = 159, .external_lex_state = 2}, + [2005] = {.lex_state = 159, .external_lex_state = 2}, + [2006] = {.lex_state = 585}, + [2007] = {.lex_state = 144}, + [2008] = {.lex_state = 144}, + [2009] = {.lex_state = 91}, + [2010] = {.lex_state = 1210}, + [2011] = {.lex_state = 1210}, + [2012] = {.lex_state = 159, .external_lex_state = 2}, + [2013] = {.lex_state = 144}, + [2014] = {.lex_state = 38, .external_lex_state = 2}, + [2015] = {.lex_state = 585}, + [2016] = {.lex_state = 45, .external_lex_state = 2}, + [2017] = {.lex_state = 144}, + [2018] = {.lex_state = 1210}, + [2019] = {.lex_state = 584}, + [2020] = {.lex_state = 154, .external_lex_state = 2}, + [2021] = {.lex_state = 144}, + [2022] = {.lex_state = 144}, + [2023] = {.lex_state = 144}, + [2024] = {.lex_state = 144}, + [2025] = {.lex_state = 144}, + [2026] = {.lex_state = 167, .external_lex_state = 2}, + [2027] = {.lex_state = 167, .external_lex_state = 2}, + [2028] = {.lex_state = 154, .external_lex_state = 2}, + [2029] = {.lex_state = 154, .external_lex_state = 2}, + [2030] = {.lex_state = 45, .external_lex_state = 2}, + [2031] = {.lex_state = 91}, + [2032] = {.lex_state = 144}, + [2033] = {.lex_state = 144}, + [2034] = {.lex_state = 585}, + [2035] = {.lex_state = 1210}, + [2036] = {.lex_state = 585}, + [2037] = {.lex_state = 585}, + [2038] = {.lex_state = 144}, + [2039] = {.lex_state = 585}, + [2040] = {.lex_state = 162, .external_lex_state = 2}, + [2041] = {.lex_state = 585}, + [2042] = {.lex_state = 585}, + [2043] = {.lex_state = 267}, + [2044] = {.lex_state = 585}, + [2045] = {.lex_state = 585}, + [2046] = {.lex_state = 585}, + [2047] = {.lex_state = 585}, + [2048] = {.lex_state = 585}, + [2049] = {.lex_state = 585}, + [2050] = {.lex_state = 162, .external_lex_state = 2}, + [2051] = {.lex_state = 167, .external_lex_state = 2}, + [2052] = {.lex_state = 162, .external_lex_state = 2}, + [2053] = {.lex_state = 159, .external_lex_state = 2}, + [2054] = {.lex_state = 585}, + [2055] = {.lex_state = 585}, + [2056] = {.lex_state = 154, .external_lex_state = 2}, + [2057] = {.lex_state = 585}, + [2058] = {.lex_state = 585}, + [2059] = {.lex_state = 585}, + [2060] = {.lex_state = 585}, + [2061] = {.lex_state = 585}, + [2062] = {.lex_state = 585}, + [2063] = {.lex_state = 585}, + [2064] = {.lex_state = 585}, + [2065] = {.lex_state = 585}, + [2066] = {.lex_state = 585}, + [2067] = {.lex_state = 585}, + [2068] = {.lex_state = 585}, + [2069] = {.lex_state = 585}, + [2070] = {.lex_state = 585}, + [2071] = {.lex_state = 585}, + [2072] = {.lex_state = 585}, + [2073] = {.lex_state = 585}, + [2074] = {.lex_state = 585}, + [2075] = {.lex_state = 585}, + [2076] = {.lex_state = 585}, + [2077] = {.lex_state = 585}, + [2078] = {.lex_state = 585}, + [2079] = {.lex_state = 585}, + [2080] = {.lex_state = 585}, + [2081] = {.lex_state = 585}, + [2082] = {.lex_state = 585}, + [2083] = {.lex_state = 267}, + [2084] = {.lex_state = 585}, + [2085] = {.lex_state = 167, .external_lex_state = 2}, + [2086] = {.lex_state = 585}, + [2087] = {.lex_state = 21}, + [2088] = {.lex_state = 585}, + [2089] = {.lex_state = 585}, + [2090] = {.lex_state = 585}, + [2091] = {.lex_state = 585}, + [2092] = {.lex_state = 585}, + [2093] = {.lex_state = 167, .external_lex_state = 2}, + [2094] = {.lex_state = 585}, + [2095] = {.lex_state = 585}, + [2096] = {.lex_state = 585}, + [2097] = {.lex_state = 585}, + [2098] = {.lex_state = 585}, + [2099] = {.lex_state = 1210}, + [2100] = {.lex_state = 585}, + [2101] = {.lex_state = 585}, + [2102] = {.lex_state = 585}, + [2103] = {.lex_state = 1210}, + [2104] = {.lex_state = 585}, + [2105] = {.lex_state = 585}, + [2106] = {.lex_state = 585}, + [2107] = {.lex_state = 585}, + [2108] = {.lex_state = 585}, + [2109] = {.lex_state = 585}, + [2110] = {.lex_state = 585}, + [2111] = {.lex_state = 585}, + [2112] = {.lex_state = 585}, + [2113] = {.lex_state = 1210}, + [2114] = {.lex_state = 585}, + [2115] = {.lex_state = 585}, + [2116] = {.lex_state = 585}, + [2117] = {.lex_state = 585}, + [2118] = {.lex_state = 585}, + [2119] = {.lex_state = 585}, + [2120] = {.lex_state = 1210}, + [2121] = {.lex_state = 585}, + [2122] = {.lex_state = 585}, + [2123] = {.lex_state = 585}, + [2124] = {.lex_state = 585}, + [2125] = {.lex_state = 585}, + [2126] = {.lex_state = 585}, + [2127] = {.lex_state = 1210}, + [2128] = {.lex_state = 585}, + [2129] = {.lex_state = 585}, + [2130] = {.lex_state = 585}, + [2131] = {.lex_state = 585}, + [2132] = {.lex_state = 585}, + [2133] = {.lex_state = 585}, + [2134] = {.lex_state = 167, .external_lex_state = 2}, + [2135] = {.lex_state = 167, .external_lex_state = 2}, + [2136] = {.lex_state = 585}, + [2137] = {.lex_state = 585}, + [2138] = {.lex_state = 585}, + [2139] = {.lex_state = 585}, + [2140] = {.lex_state = 585}, + [2141] = {.lex_state = 585}, + [2142] = {.lex_state = 585}, + [2143] = {.lex_state = 585}, + [2144] = {.lex_state = 585}, + [2145] = {.lex_state = 585}, + [2146] = {.lex_state = 585}, + [2147] = {.lex_state = 585}, + [2148] = {.lex_state = 585}, + [2149] = {.lex_state = 585}, + [2150] = {.lex_state = 1210}, + [2151] = {.lex_state = 45, .external_lex_state = 2}, + [2152] = {.lex_state = 144}, + [2153] = {.lex_state = 154, .external_lex_state = 2}, + [2154] = {.lex_state = 585}, + [2155] = {.lex_state = 38, .external_lex_state = 2}, + [2156] = {.lex_state = 585}, + [2157] = {.lex_state = 38, .external_lex_state = 2}, + [2158] = {.lex_state = 38, .external_lex_state = 2}, [2159] = {.lex_state = 38, .external_lex_state = 2}, - [2160] = {.lex_state = 574}, - [2161] = {.lex_state = 574}, - [2162] = {.lex_state = 144}, - [2163] = {.lex_state = 574}, - [2164] = {.lex_state = 574}, - [2165] = {.lex_state = 162, .external_lex_state = 2}, + [2160] = {.lex_state = 38, .external_lex_state = 2}, + [2161] = {.lex_state = 38, .external_lex_state = 2}, + [2162] = {.lex_state = 38, .external_lex_state = 2}, + [2163] = {.lex_state = 38, .external_lex_state = 2}, + [2164] = {.lex_state = 38, .external_lex_state = 2}, + [2165] = {.lex_state = 38, .external_lex_state = 2}, [2166] = {.lex_state = 38, .external_lex_state = 2}, [2167] = {.lex_state = 38, .external_lex_state = 2}, [2168] = {.lex_state = 38, .external_lex_state = 2}, @@ -35509,143 +36002,143 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2170] = {.lex_state = 38, .external_lex_state = 2}, [2171] = {.lex_state = 38, .external_lex_state = 2}, [2172] = {.lex_state = 38, .external_lex_state = 2}, - [2173] = {.lex_state = 38, .external_lex_state = 2}, - [2174] = {.lex_state = 38, .external_lex_state = 2}, + [2173] = {.lex_state = 91}, + [2174] = {.lex_state = 585}, [2175] = {.lex_state = 38, .external_lex_state = 2}, - [2176] = {.lex_state = 50, .external_lex_state = 2}, + [2176] = {.lex_state = 38, .external_lex_state = 2}, [2177] = {.lex_state = 38, .external_lex_state = 2}, [2178] = {.lex_state = 38, .external_lex_state = 2}, - [2179] = {.lex_state = 574}, - [2180] = {.lex_state = 574}, - [2181] = {.lex_state = 574}, - [2182] = {.lex_state = 574}, - [2183] = {.lex_state = 574}, - [2184] = {.lex_state = 574}, - [2185] = {.lex_state = 574}, - [2186] = {.lex_state = 574}, - [2187] = {.lex_state = 574}, - [2188] = {.lex_state = 574}, - [2189] = {.lex_state = 574}, - [2190] = {.lex_state = 574}, - [2191] = {.lex_state = 38, .external_lex_state = 2}, + [2179] = {.lex_state = 38, .external_lex_state = 2}, + [2180] = {.lex_state = 38, .external_lex_state = 2}, + [2181] = {.lex_state = 38, .external_lex_state = 2}, + [2182] = {.lex_state = 38, .external_lex_state = 2}, + [2183] = {.lex_state = 38, .external_lex_state = 2}, + [2184] = {.lex_state = 144}, + [2185] = {.lex_state = 45, .external_lex_state = 2}, + [2186] = {.lex_state = 38, .external_lex_state = 2}, + [2187] = {.lex_state = 38, .external_lex_state = 2}, + [2188] = {.lex_state = 38, .external_lex_state = 2}, + [2189] = {.lex_state = 38, .external_lex_state = 2}, + [2190] = {.lex_state = 585}, + [2191] = {.lex_state = 585}, [2192] = {.lex_state = 38, .external_lex_state = 2}, - [2193] = {.lex_state = 42, .external_lex_state = 2}, - [2194] = {.lex_state = 1187}, + [2193] = {.lex_state = 38, .external_lex_state = 2}, + [2194] = {.lex_state = 38, .external_lex_state = 2}, [2195] = {.lex_state = 38, .external_lex_state = 2}, - [2196] = {.lex_state = 38, .external_lex_state = 2}, - [2197] = {.lex_state = 38, .external_lex_state = 2}, - [2198] = {.lex_state = 1187}, + [2196] = {.lex_state = 585}, + [2197] = {.lex_state = 585}, + [2198] = {.lex_state = 38, .external_lex_state = 2}, [2199] = {.lex_state = 38, .external_lex_state = 2}, - [2200] = {.lex_state = 45, .external_lex_state = 2}, - [2201] = {.lex_state = 50, .external_lex_state = 2}, - [2202] = {.lex_state = 38, .external_lex_state = 2}, + [2200] = {.lex_state = 38, .external_lex_state = 2}, + [2201] = {.lex_state = 38, .external_lex_state = 2}, + [2202] = {.lex_state = 154, .external_lex_state = 2}, [2203] = {.lex_state = 38, .external_lex_state = 2}, [2204] = {.lex_state = 38, .external_lex_state = 2}, - [2205] = {.lex_state = 38, .external_lex_state = 2}, + [2205] = {.lex_state = 154, .external_lex_state = 2}, [2206] = {.lex_state = 38, .external_lex_state = 2}, [2207] = {.lex_state = 38, .external_lex_state = 2}, - [2208] = {.lex_state = 38, .external_lex_state = 2}, - [2209] = {.lex_state = 38, .external_lex_state = 2}, - [2210] = {.lex_state = 38, .external_lex_state = 2}, - [2211] = {.lex_state = 38, .external_lex_state = 2}, - [2212] = {.lex_state = 574}, - [2213] = {.lex_state = 574}, - [2214] = {.lex_state = 574}, - [2215] = {.lex_state = 574}, - [2216] = {.lex_state = 574}, - [2217] = {.lex_state = 38, .external_lex_state = 2}, - [2218] = {.lex_state = 574}, - [2219] = {.lex_state = 574}, - [2220] = {.lex_state = 38, .external_lex_state = 2}, - [2221] = {.lex_state = 574}, - [2222] = {.lex_state = 574}, - [2223] = {.lex_state = 1187}, - [2224] = {.lex_state = 574}, - [2225] = {.lex_state = 50, .external_lex_state = 2}, - [2226] = {.lex_state = 574}, - [2227] = {.lex_state = 574}, - [2228] = {.lex_state = 1187}, - [2229] = {.lex_state = 38, .external_lex_state = 2}, - [2230] = {.lex_state = 38, .external_lex_state = 2}, - [2231] = {.lex_state = 1187}, - [2232] = {.lex_state = 38, .external_lex_state = 2}, - [2233] = {.lex_state = 38, .external_lex_state = 2}, - [2234] = {.lex_state = 1187}, - [2235] = {.lex_state = 1187}, - [2236] = {.lex_state = 38, .external_lex_state = 2}, - [2237] = {.lex_state = 50, .external_lex_state = 2}, - [2238] = {.lex_state = 38, .external_lex_state = 2}, - [2239] = {.lex_state = 38, .external_lex_state = 2}, - [2240] = {.lex_state = 38, .external_lex_state = 2}, - [2241] = {.lex_state = 38, .external_lex_state = 2}, - [2242] = {.lex_state = 38, .external_lex_state = 2}, - [2243] = {.lex_state = 38, .external_lex_state = 2}, - [2244] = {.lex_state = 38, .external_lex_state = 2}, - [2245] = {.lex_state = 1187}, - [2246] = {.lex_state = 42, .external_lex_state = 2}, - [2247] = {.lex_state = 574}, - [2248] = {.lex_state = 573}, - [2249] = {.lex_state = 574}, - [2250] = {.lex_state = 574}, - [2251] = {.lex_state = 574}, - [2252] = {.lex_state = 574}, - [2253] = {.lex_state = 574}, - [2254] = {.lex_state = 50, .external_lex_state = 2}, + [2208] = {.lex_state = 1211}, + [2209] = {.lex_state = 585}, + [2210] = {.lex_state = 585}, + [2211] = {.lex_state = 50, .external_lex_state = 2}, + [2212] = {.lex_state = 585}, + [2213] = {.lex_state = 585}, + [2214] = {.lex_state = 585}, + [2215] = {.lex_state = 50, .external_lex_state = 2}, + [2216] = {.lex_state = 1211}, + [2217] = {.lex_state = 1211}, + [2218] = {.lex_state = 585}, + [2219] = {.lex_state = 585}, + [2220] = {.lex_state = 585}, + [2221] = {.lex_state = 1211}, + [2222] = {.lex_state = 1211}, + [2223] = {.lex_state = 585}, + [2224] = {.lex_state = 1211}, + [2225] = {.lex_state = 585}, + [2226] = {.lex_state = 1211}, + [2227] = {.lex_state = 585}, + [2228] = {.lex_state = 585}, + [2229] = {.lex_state = 585}, + [2230] = {.lex_state = 585}, + [2231] = {.lex_state = 45, .external_lex_state = 2}, + [2232] = {.lex_state = 585}, + [2233] = {.lex_state = 585}, + [2234] = {.lex_state = 585}, + [2235] = {.lex_state = 585}, + [2236] = {.lex_state = 585}, + [2237] = {.lex_state = 585}, + [2238] = {.lex_state = 50, .external_lex_state = 2}, + [2239] = {.lex_state = 585}, + [2240] = {.lex_state = 585}, + [2241] = {.lex_state = 42, .external_lex_state = 2}, + [2242] = {.lex_state = 585}, + [2243] = {.lex_state = 585}, + [2244] = {.lex_state = 50, .external_lex_state = 2}, + [2245] = {.lex_state = 1211}, + [2246] = {.lex_state = 585}, + [2247] = {.lex_state = 585}, + [2248] = {.lex_state = 585}, + [2249] = {.lex_state = 585}, + [2250] = {.lex_state = 585}, + [2251] = {.lex_state = 585}, + [2252] = {.lex_state = 42, .external_lex_state = 2}, + [2253] = {.lex_state = 584}, + [2254] = {.lex_state = 156, .external_lex_state = 2}, [2255] = {.lex_state = 156, .external_lex_state = 2}, - [2256] = {.lex_state = 156, .external_lex_state = 2}, - [2257] = {.lex_state = 156, .external_lex_state = 2}, - [2258] = {.lex_state = 573}, - [2259] = {.lex_state = 46, .external_lex_state = 2}, + [2256] = {.lex_state = 46, .external_lex_state = 2}, + [2257] = {.lex_state = 50, .external_lex_state = 2}, + [2258] = {.lex_state = 584}, + [2259] = {.lex_state = 156, .external_lex_state = 2}, [2260] = {.lex_state = 156, .external_lex_state = 2}, - [2261] = {.lex_state = 158, .external_lex_state = 2}, - [2262] = {.lex_state = 158, .external_lex_state = 2}, + [2261] = {.lex_state = 5}, + [2262] = {.lex_state = 5}, [2263] = {.lex_state = 158, .external_lex_state = 2}, - [2264] = {.lex_state = 156, .external_lex_state = 2}, - [2265] = {.lex_state = 48, .external_lex_state = 2}, + [2264] = {.lex_state = 158, .external_lex_state = 2}, + [2265] = {.lex_state = 158, .external_lex_state = 2}, [2266] = {.lex_state = 5}, - [2267] = {.lex_state = 156, .external_lex_state = 2}, - [2268] = {.lex_state = 5}, - [2269] = {.lex_state = 158, .external_lex_state = 2}, - [2270] = {.lex_state = 47, .external_lex_state = 2}, - [2271] = {.lex_state = 158, .external_lex_state = 2}, + [2267] = {.lex_state = 158, .external_lex_state = 2}, + [2268] = {.lex_state = 156, .external_lex_state = 2}, + [2269] = {.lex_state = 5}, + [2270] = {.lex_state = 46, .external_lex_state = 2}, + [2271] = {.lex_state = 5}, [2272] = {.lex_state = 158, .external_lex_state = 2}, - [2273] = {.lex_state = 46, .external_lex_state = 2}, + [2273] = {.lex_state = 47, .external_lex_state = 2}, [2274] = {.lex_state = 5}, - [2275] = {.lex_state = 5}, - [2276] = {.lex_state = 158, .external_lex_state = 2}, - [2277] = {.lex_state = 5}, - [2278] = {.lex_state = 5}, - [2279] = {.lex_state = 47, .external_lex_state = 2}, - [2280] = {.lex_state = 50, .external_lex_state = 2}, - [2281] = {.lex_state = 48, .external_lex_state = 2}, - [2282] = {.lex_state = 50, .external_lex_state = 2}, - [2283] = {.lex_state = 158, .external_lex_state = 2}, - [2284] = {.lex_state = 158, .external_lex_state = 2}, + [2275] = {.lex_state = 156, .external_lex_state = 2}, + [2276] = {.lex_state = 48, .external_lex_state = 2}, + [2277] = {.lex_state = 158, .external_lex_state = 2}, + [2278] = {.lex_state = 158, .external_lex_state = 2}, + [2279] = {.lex_state = 158, .external_lex_state = 2}, + [2280] = {.lex_state = 158, .external_lex_state = 2}, + [2281] = {.lex_state = 50, .external_lex_state = 2}, + [2282] = {.lex_state = 48, .external_lex_state = 2}, + [2283] = {.lex_state = 47, .external_lex_state = 2}, + [2284] = {.lex_state = 50, .external_lex_state = 2}, [2285] = {.lex_state = 50, .external_lex_state = 2}, - [2286] = {.lex_state = 573}, - [2287] = {.lex_state = 48, .external_lex_state = 2}, - [2288] = {.lex_state = 573}, - [2289] = {.lex_state = 49, .external_lex_state = 2}, - [2290] = {.lex_state = 573}, - [2291] = {.lex_state = 573}, - [2292] = {.lex_state = 573}, - [2293] = {.lex_state = 571}, - [2294] = {.lex_state = 573}, - [2295] = {.lex_state = 49, .external_lex_state = 2}, + [2286] = {.lex_state = 48, .external_lex_state = 2}, + [2287] = {.lex_state = 584}, + [2288] = {.lex_state = 584}, + [2289] = {.lex_state = 584}, + [2290] = {.lex_state = 584}, + [2291] = {.lex_state = 582}, + [2292] = {.lex_state = 49, .external_lex_state = 2}, + [2293] = {.lex_state = 49, .external_lex_state = 2}, + [2294] = {.lex_state = 584}, + [2295] = {.lex_state = 584}, [2296] = {.lex_state = 7}, [2297] = {.lex_state = 49, .external_lex_state = 2}, - [2298] = {.lex_state = 49, .external_lex_state = 2}, - [2299] = {.lex_state = 49, .external_lex_state = 2}, + [2298] = {.lex_state = 585}, + [2299] = {.lex_state = 585}, [2300] = {.lex_state = 49, .external_lex_state = 2}, - [2301] = {.lex_state = 49, .external_lex_state = 2}, - [2302] = {.lex_state = 574}, - [2303] = {.lex_state = 630}, + [2301] = {.lex_state = 585}, + [2302] = {.lex_state = 585}, + [2303] = {.lex_state = 49, .external_lex_state = 2}, [2304] = {.lex_state = 49, .external_lex_state = 2}, [2305] = {.lex_state = 49, .external_lex_state = 2}, [2306] = {.lex_state = 49, .external_lex_state = 2}, [2307] = {.lex_state = 49, .external_lex_state = 2}, - [2308] = {.lex_state = 49, .external_lex_state = 2}, - [2309] = {.lex_state = 49, .external_lex_state = 2}, + [2308] = {.lex_state = 585}, + [2309] = {.lex_state = 641}, [2310] = {.lex_state = 49, .external_lex_state = 2}, [2311] = {.lex_state = 49, .external_lex_state = 2}, [2312] = {.lex_state = 49, .external_lex_state = 2}, @@ -35659,3063 +36152,3195 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2320] = {.lex_state = 49, .external_lex_state = 2}, [2321] = {.lex_state = 49, .external_lex_state = 2}, [2322] = {.lex_state = 49, .external_lex_state = 2}, - [2323] = {.lex_state = 574}, - [2324] = {.lex_state = 574}, - [2325] = {.lex_state = 574}, - [2326] = {.lex_state = 574}, + [2323] = {.lex_state = 49, .external_lex_state = 2}, + [2324] = {.lex_state = 49, .external_lex_state = 2}, + [2325] = {.lex_state = 49, .external_lex_state = 2}, + [2326] = {.lex_state = 49, .external_lex_state = 2}, [2327] = {.lex_state = 49, .external_lex_state = 2}, [2328] = {.lex_state = 49, .external_lex_state = 2}, - [2329] = {.lex_state = 630}, - [2330] = {.lex_state = 7}, - [2331] = {.lex_state = 631}, - [2332] = {.lex_state = 577}, - [2333] = {.lex_state = 631}, - [2334] = {.lex_state = 577}, - [2335] = {.lex_state = 49, .external_lex_state = 2}, - [2336] = {.lex_state = 634}, + [2329] = {.lex_state = 588}, + [2330] = {.lex_state = 641}, + [2331] = {.lex_state = 642}, + [2332] = {.lex_state = 642}, + [2333] = {.lex_state = 7}, + [2334] = {.lex_state = 588}, + [2335] = {.lex_state = 642}, + [2336] = {.lex_state = 642}, [2337] = {.lex_state = 49, .external_lex_state = 2}, [2338] = {.lex_state = 49, .external_lex_state = 2}, [2339] = {.lex_state = 49, .external_lex_state = 2}, - [2340] = {.lex_state = 638}, + [2340] = {.lex_state = 49, .external_lex_state = 2}, [2341] = {.lex_state = 49, .external_lex_state = 2}, - [2342] = {.lex_state = 631}, - [2343] = {.lex_state = 49, .external_lex_state = 2}, - [2344] = {.lex_state = 631}, - [2345] = {.lex_state = 577}, - [2346] = {.lex_state = 49, .external_lex_state = 2}, - [2347] = {.lex_state = 577}, - [2348] = {.lex_state = 49, .external_lex_state = 2}, - [2349] = {.lex_state = 577}, - [2350] = {.lex_state = 577}, + [2342] = {.lex_state = 49, .external_lex_state = 2}, + [2343] = {.lex_state = 645}, + [2344] = {.lex_state = 649}, + [2345] = {.lex_state = 640}, + [2346] = {.lex_state = 588}, + [2347] = {.lex_state = 588}, + [2348] = {.lex_state = 588}, + [2349] = {.lex_state = 588}, + [2350] = {.lex_state = 49, .external_lex_state = 2}, [2351] = {.lex_state = 49, .external_lex_state = 2}, - [2352] = {.lex_state = 629}, + [2352] = {.lex_state = 49, .external_lex_state = 2}, [2353] = {.lex_state = 49, .external_lex_state = 2}, [2354] = {.lex_state = 49, .external_lex_state = 2}, [2355] = {.lex_state = 49, .external_lex_state = 2}, - [2356] = {.lex_state = 642}, - [2357] = {.lex_state = 638}, - [2358] = {.lex_state = 640}, - [2359] = {.lex_state = 634}, - [2360] = {.lex_state = 640}, - [2361] = {.lex_state = 632}, - [2362] = {.lex_state = 629}, - [2363] = {.lex_state = 577}, - [2364] = {.lex_state = 629}, - [2365] = {.lex_state = 632}, - [2366] = {.lex_state = 577}, - [2367] = {.lex_state = 577}, - [2368] = {.lex_state = 577}, - [2369] = {.lex_state = 635}, - [2370] = {.lex_state = 642}, - [2371] = {.lex_state = 629}, + [2356] = {.lex_state = 649}, + [2357] = {.lex_state = 588}, + [2358] = {.lex_state = 588}, + [2359] = {.lex_state = 588}, + [2360] = {.lex_state = 588}, + [2361] = {.lex_state = 640}, + [2362] = {.lex_state = 651}, + [2363] = {.lex_state = 640}, + [2364] = {.lex_state = 651}, + [2365] = {.lex_state = 645}, + [2366] = {.lex_state = 643}, + [2367] = {.lex_state = 653}, + [2368] = {.lex_state = 643}, + [2369] = {.lex_state = 580}, + [2370] = {.lex_state = 580}, + [2371] = {.lex_state = 580}, [2372] = {.lex_state = 640}, - [2373] = {.lex_state = 632}, - [2374] = {.lex_state = 632}, - [2375] = {.lex_state = 642}, - [2376] = {.lex_state = 644}, - [2377] = {.lex_state = 617}, - [2378] = {.lex_state = 640}, - [2379] = {.lex_state = 569}, - [2380] = {.lex_state = 629}, - [2381] = {.lex_state = 629}, - [2382] = {.lex_state = 629}, - [2383] = {.lex_state = 569}, - [2384] = {.lex_state = 574}, - [2385] = {.lex_state = 569}, - [2386] = {.lex_state = 574}, - [2387] = {.lex_state = 636}, - [2388] = {.lex_state = 569}, - [2389] = {.lex_state = 629}, - [2390] = {.lex_state = 569}, - [2391] = {.lex_state = 571}, - [2392] = {.lex_state = 642}, - [2393] = {.lex_state = 569}, - [2394] = {.lex_state = 569}, - [2395] = {.lex_state = 639}, - [2396] = {.lex_state = 642}, - [2397] = {.lex_state = 569}, - [2398] = {.lex_state = 646}, - [2399] = {.lex_state = 573}, - [2400] = {.lex_state = 171, .external_lex_state = 2}, - [2401] = {.lex_state = 171, .external_lex_state = 2}, - [2402] = {.lex_state = 52}, - [2403] = {.lex_state = 641}, - [2404] = {.lex_state = 171, .external_lex_state = 2}, - [2405] = {.lex_state = 642}, - [2406] = {.lex_state = 644}, - [2407] = {.lex_state = 629}, - [2408] = {.lex_state = 629}, - [2409] = {.lex_state = 643}, - [2410] = {.lex_state = 636}, - [2411] = {.lex_state = 635}, + [2373] = {.lex_state = 640}, + [2374] = {.lex_state = 640}, + [2375] = {.lex_state = 640}, + [2376] = {.lex_state = 643}, + [2377] = {.lex_state = 628}, + [2378] = {.lex_state = 653}, + [2379] = {.lex_state = 580}, + [2380] = {.lex_state = 580}, + [2381] = {.lex_state = 651}, + [2382] = {.lex_state = 580}, + [2383] = {.lex_state = 643}, + [2384] = {.lex_state = 651}, + [2385] = {.lex_state = 653}, + [2386] = {.lex_state = 653}, + [2387] = {.lex_state = 653}, + [2388] = {.lex_state = 655}, + [2389] = {.lex_state = 640}, + [2390] = {.lex_state = 647}, + [2391] = {.lex_state = 585}, + [2392] = {.lex_state = 585}, + [2393] = {.lex_state = 582}, + [2394] = {.lex_state = 580}, + [2395] = {.lex_state = 646}, + [2396] = {.lex_state = 650}, + [2397] = {.lex_state = 652}, + [2398] = {.lex_state = 657}, + [2399] = {.lex_state = 171, .external_lex_state = 2}, + [2400] = {.lex_state = 657}, + [2401] = {.lex_state = 647}, + [2402] = {.lex_state = 653}, + [2403] = {.lex_state = 653}, + [2404] = {.lex_state = 640}, + [2405] = {.lex_state = 52}, + [2406] = {.lex_state = 654}, + [2407] = {.lex_state = 584}, + [2408] = {.lex_state = 646}, + [2409] = {.lex_state = 628}, + [2410] = {.lex_state = 584}, + [2411] = {.lex_state = 655}, [2412] = {.lex_state = 171, .external_lex_state = 2}, - [2413] = {.lex_state = 646}, - [2414] = {.lex_state = 617}, - [2415] = {.lex_state = 573}, - [2416] = {.lex_state = 642}, - [2417] = {.lex_state = 573}, - [2418] = {.lex_state = 171, .external_lex_state = 2}, - [2419] = {.lex_state = 629}, - [2420] = {.lex_state = 641}, - [2421] = {.lex_state = 639}, - [2422] = {.lex_state = 642}, - [2423] = {.lex_state = 629}, - [2424] = {.lex_state = 617}, - [2425] = {.lex_state = 645}, - [2426] = {.lex_state = 54}, - [2427] = {.lex_state = 573}, - [2428] = {.lex_state = 56}, - [2429] = {.lex_state = 641}, - [2430] = {.lex_state = 572}, - [2431] = {.lex_state = 573}, - [2432] = {.lex_state = 648}, - [2433] = {.lex_state = 641}, - [2434] = {.lex_state = 648}, - [2435] = {.lex_state = 171, .external_lex_state = 2}, - [2436] = {.lex_state = 648}, - [2437] = {.lex_state = 572}, - [2438] = {.lex_state = 50, .external_lex_state = 2}, - [2439] = {.lex_state = 572}, - [2440] = {.lex_state = 569}, - [2441] = {.lex_state = 643}, - [2442] = {.lex_state = 646}, - [2443] = {.lex_state = 648}, - [2444] = {.lex_state = 171, .external_lex_state = 2}, - [2445] = {.lex_state = 572}, + [2413] = {.lex_state = 171, .external_lex_state = 2}, + [2414] = {.lex_state = 171, .external_lex_state = 2}, + [2415] = {.lex_state = 171, .external_lex_state = 2}, + [2416] = {.lex_state = 580}, + [2417] = {.lex_state = 584}, + [2418] = {.lex_state = 640}, + [2419] = {.lex_state = 628}, + [2420] = {.lex_state = 650}, + [2421] = {.lex_state = 640}, + [2422] = {.lex_state = 653}, + [2423] = {.lex_state = 652}, + [2424] = {.lex_state = 640}, + [2425] = {.lex_state = 584}, + [2426] = {.lex_state = 580}, + [2427] = {.lex_state = 583}, + [2428] = {.lex_state = 171, .external_lex_state = 2}, + [2429] = {.lex_state = 580}, + [2430] = {.lex_state = 584}, + [2431] = {.lex_state = 654}, + [2432] = {.lex_state = 652}, + [2433] = {.lex_state = 659}, + [2434] = {.lex_state = 654}, + [2435] = {.lex_state = 53}, + [2436] = {.lex_state = 53}, + [2437] = {.lex_state = 656}, + [2438] = {.lex_state = 582}, + [2439] = {.lex_state = 583}, + [2440] = {.lex_state = 584}, + [2441] = {.lex_state = 652}, + [2442] = {.lex_state = 584}, + [2443] = {.lex_state = 654}, + [2444] = {.lex_state = 584}, + [2445] = {.lex_state = 54}, [2446] = {.lex_state = 648}, - [2447] = {.lex_state = 646}, - [2448] = {.lex_state = 643}, - [2449] = {.lex_state = 643}, - [2450] = {.lex_state = 53}, - [2451] = {.lex_state = 52}, - [2452] = {.lex_state = 53}, - [2453] = {.lex_state = 573}, - [2454] = {.lex_state = 573}, - [2455] = {.lex_state = 569}, - [2456] = {.lex_state = 573}, - [2457] = {.lex_state = 573}, - [2458] = {.lex_state = 571}, - [2459] = {.lex_state = 569}, - [2460] = {.lex_state = 569}, - [2461] = {.lex_state = 643}, - [2462] = {.lex_state = 637}, - [2463] = {.lex_state = 648}, - [2464] = {.lex_state = 572}, - [2465] = {.lex_state = 648}, - [2466] = {.lex_state = 572}, - [2467] = {.lex_state = 645}, - [2468] = {.lex_state = 572}, - [2469] = {.lex_state = 572}, - [2470] = {.lex_state = 572}, - [2471] = {.lex_state = 572}, - [2472] = {.lex_state = 572}, - [2473] = {.lex_state = 57}, - [2474] = {.lex_state = 57}, - [2475] = {.lex_state = 650}, - [2476] = {.lex_state = 643}, - [2477] = {.lex_state = 648}, - [2478] = {.lex_state = 52}, - [2479] = {.lex_state = 648}, + [2447] = {.lex_state = 56}, + [2448] = {.lex_state = 657}, + [2449] = {.lex_state = 659}, + [2450] = {.lex_state = 580}, + [2451] = {.lex_state = 580}, + [2452] = {.lex_state = 50, .external_lex_state = 2}, + [2453] = {.lex_state = 659}, + [2454] = {.lex_state = 659}, + [2455] = {.lex_state = 657}, + [2456] = {.lex_state = 583}, + [2457] = {.lex_state = 583}, + [2458] = {.lex_state = 659}, + [2459] = {.lex_state = 654}, + [2460] = {.lex_state = 171, .external_lex_state = 2}, + [2461] = {.lex_state = 52}, + [2462] = {.lex_state = 584}, + [2463] = {.lex_state = 659}, + [2464] = {.lex_state = 654}, + [2465] = {.lex_state = 654}, + [2466] = {.lex_state = 658}, + [2467] = {.lex_state = 50, .external_lex_state = 2}, + [2468] = {.lex_state = 52}, + [2469] = {.lex_state = 52}, + [2470] = {.lex_state = 52}, + [2471] = {.lex_state = 58}, + [2472] = {.lex_state = 654}, + [2473] = {.lex_state = 659}, + [2474] = {.lex_state = 659}, + [2475] = {.lex_state = 656}, + [2476] = {.lex_state = 57}, + [2477] = {.lex_state = 583}, + [2478] = {.lex_state = 648}, + [2479] = {.lex_state = 583}, [2480] = {.lex_state = 52}, - [2481] = {.lex_state = 52}, - [2482] = {.lex_state = 648}, - [2483] = {.lex_state = 572}, - [2484] = {.lex_state = 572}, - [2485] = {.lex_state = 52}, - [2486] = {.lex_state = 643}, - [2487] = {.lex_state = 572}, - [2488] = {.lex_state = 572}, - [2489] = {.lex_state = 50, .external_lex_state = 2}, - [2490] = {.lex_state = 647}, - [2491] = {.lex_state = 643}, - [2492] = {.lex_state = 58}, - [2493] = {.lex_state = 643}, - [2494] = {.lex_state = 647}, - [2495] = {.lex_state = 637}, - [2496] = {.lex_state = 652}, - [2497] = {.lex_state = 569}, - [2498] = {.lex_state = 572}, - [2499] = {.lex_state = 569}, - [2500] = {.lex_state = 569}, - [2501] = {.lex_state = 573}, - [2502] = {.lex_state = 2}, - [2503] = {.lex_state = 573}, - [2504] = {.lex_state = 647}, - [2505] = {.lex_state = 55}, - [2506] = {.lex_state = 569}, - [2507] = {.lex_state = 573}, + [2481] = {.lex_state = 57}, + [2482] = {.lex_state = 583}, + [2483] = {.lex_state = 583}, + [2484] = {.lex_state = 580}, + [2485] = {.lex_state = 580}, + [2486] = {.lex_state = 663}, + [2487] = {.lex_state = 583}, + [2488] = {.lex_state = 654}, + [2489] = {.lex_state = 658}, + [2490] = {.lex_state = 659}, + [2491] = {.lex_state = 583}, + [2492] = {.lex_state = 583}, + [2493] = {.lex_state = 659}, + [2494] = {.lex_state = 583}, + [2495] = {.lex_state = 583}, + [2496] = {.lex_state = 583}, + [2497] = {.lex_state = 661}, + [2498] = {.lex_state = 583}, + [2499] = {.lex_state = 583}, + [2500] = {.lex_state = 580}, + [2501] = {.lex_state = 584}, + [2502] = {.lex_state = 660}, + [2503] = {.lex_state = 660}, + [2504] = {.lex_state = 660}, + [2505] = {.lex_state = 658}, + [2506] = {.lex_state = 580}, + [2507] = {.lex_state = 583}, [2508] = {.lex_state = 2}, - [2509] = {.lex_state = 569}, - [2510] = {.lex_state = 650}, - [2511] = {.lex_state = 569}, - [2512] = {.lex_state = 569}, - [2513] = {.lex_state = 572}, - [2514] = {.lex_state = 58}, + [2509] = {.lex_state = 654}, + [2510] = {.lex_state = 584}, + [2511] = {.lex_state = 2}, + [2512] = {.lex_state = 658}, + [2513] = {.lex_state = 155, .external_lex_state = 2}, + [2514] = {.lex_state = 580}, [2515] = {.lex_state = 2}, - [2516] = {.lex_state = 572}, - [2517] = {.lex_state = 569}, - [2518] = {.lex_state = 573}, - [2519] = {.lex_state = 572}, - [2520] = {.lex_state = 573}, - [2521] = {.lex_state = 652}, - [2522] = {.lex_state = 573}, - [2523] = {.lex_state = 58}, - [2524] = {.lex_state = 572}, - [2525] = {.lex_state = 573}, - [2526] = {.lex_state = 573}, - [2527] = {.lex_state = 2}, - [2528] = {.lex_state = 643}, - [2529] = {.lex_state = 654}, + [2516] = {.lex_state = 583}, + [2517] = {.lex_state = 663}, + [2518] = {.lex_state = 583}, + [2519] = {.lex_state = 583}, + [2520] = {.lex_state = 58}, + [2521] = {.lex_state = 58}, + [2522] = {.lex_state = 58}, + [2523] = {.lex_state = 665}, + [2524] = {.lex_state = 580}, + [2525] = {.lex_state = 665}, + [2526] = {.lex_state = 661}, + [2527] = {.lex_state = 59}, + [2528] = {.lex_state = 660}, + [2529] = {.lex_state = 155, .external_lex_state = 2}, [2530] = {.lex_state = 155, .external_lex_state = 2}, - [2531] = {.lex_state = 572}, - [2532] = {.lex_state = 572}, - [2533] = {.lex_state = 569}, - [2534] = {.lex_state = 569}, + [2531] = {.lex_state = 580}, + [2532] = {.lex_state = 660}, + [2533] = {.lex_state = 583}, + [2534] = {.lex_state = 55}, [2535] = {.lex_state = 155, .external_lex_state = 2}, - [2536] = {.lex_state = 573}, - [2537] = {.lex_state = 649}, - [2538] = {.lex_state = 573}, - [2539] = {.lex_state = 569}, - [2540] = {.lex_state = 649}, - [2541] = {.lex_state = 572}, - [2542] = {.lex_state = 649}, - [2543] = {.lex_state = 649}, - [2544] = {.lex_state = 573}, - [2545] = {.lex_state = 654}, - [2546] = {.lex_state = 59}, - [2547] = {.lex_state = 569}, - [2548] = {.lex_state = 572}, - [2549] = {.lex_state = 573}, - [2550] = {.lex_state = 2}, - [2551] = {.lex_state = 155, .external_lex_state = 2}, - [2552] = {.lex_state = 573}, - [2553] = {.lex_state = 573}, - [2554] = {.lex_state = 572}, - [2555] = {.lex_state = 573}, - [2556] = {.lex_state = 155, .external_lex_state = 2}, - [2557] = {.lex_state = 58}, - [2558] = {.lex_state = 647}, - [2559] = {.lex_state = 649}, - [2560] = {.lex_state = 572}, - [2561] = {.lex_state = 572}, - [2562] = {.lex_state = 656}, - [2563] = {.lex_state = 656}, - [2564] = {.lex_state = 573}, - [2565] = {.lex_state = 569}, - [2566] = {.lex_state = 656}, - [2567] = {.lex_state = 656}, - [2568] = {.lex_state = 2}, - [2569] = {.lex_state = 572}, - [2570] = {.lex_state = 656}, - [2571] = {.lex_state = 569}, - [2572] = {.lex_state = 569}, - [2573] = {.lex_state = 572}, - [2574] = {.lex_state = 649}, - [2575] = {.lex_state = 572}, - [2576] = {.lex_state = 569}, - [2577] = {.lex_state = 651}, - [2578] = {.lex_state = 654}, - [2579] = {.lex_state = 60}, - [2580] = {.lex_state = 569}, - [2581] = {.lex_state = 573}, - [2582] = {.lex_state = 569}, - [2583] = {.lex_state = 572}, - [2584] = {.lex_state = 569}, - [2585] = {.lex_state = 649}, - [2586] = {.lex_state = 569}, - [2587] = {.lex_state = 569}, - [2588] = {.lex_state = 573}, - [2589] = {.lex_state = 649}, - [2590] = {.lex_state = 656}, - [2591] = {.lex_state = 573}, - [2592] = {.lex_state = 572}, - [2593] = {.lex_state = 2}, - [2594] = {.lex_state = 569}, - [2595] = {.lex_state = 569}, - [2596] = {.lex_state = 573}, - [2597] = {.lex_state = 569}, - [2598] = {.lex_state = 572}, - [2599] = {.lex_state = 569}, - [2600] = {.lex_state = 572}, - [2601] = {.lex_state = 60}, - [2602] = {.lex_state = 569}, - [2603] = {.lex_state = 572}, - [2604] = {.lex_state = 654}, - [2605] = {.lex_state = 573}, - [2606] = {.lex_state = 573}, - [2607] = {.lex_state = 656}, - [2608] = {.lex_state = 569}, - [2609] = {.lex_state = 569}, - [2610] = {.lex_state = 656}, - [2611] = {.lex_state = 656}, - [2612] = {.lex_state = 569}, - [2613] = {.lex_state = 656}, - [2614] = {.lex_state = 2}, - [2615] = {.lex_state = 2}, - [2616] = {.lex_state = 573}, - [2617] = {.lex_state = 572}, - [2618] = {.lex_state = 569}, - [2619] = {.lex_state = 649}, - [2620] = {.lex_state = 569}, - [2621] = {.lex_state = 572}, - [2622] = {.lex_state = 2}, - [2623] = {.lex_state = 649}, - [2624] = {.lex_state = 2}, - [2625] = {.lex_state = 2}, + [2536] = {.lex_state = 580}, + [2537] = {.lex_state = 580}, + [2538] = {.lex_state = 580}, + [2539] = {.lex_state = 580}, + [2540] = {.lex_state = 584}, + [2541] = {.lex_state = 584}, + [2542] = {.lex_state = 584}, + [2543] = {.lex_state = 2}, + [2544] = {.lex_state = 583}, + [2545] = {.lex_state = 583}, + [2546] = {.lex_state = 583}, + [2547] = {.lex_state = 583}, + [2548] = {.lex_state = 580}, + [2549] = {.lex_state = 584}, + [2550] = {.lex_state = 584}, + [2551] = {.lex_state = 584}, + [2552] = {.lex_state = 584}, + [2553] = {.lex_state = 584}, + [2554] = {.lex_state = 583}, + [2555] = {.lex_state = 584}, + [2556] = {.lex_state = 584}, + [2557] = {.lex_state = 584}, + [2558] = {.lex_state = 584}, + [2559] = {.lex_state = 584}, + [2560] = {.lex_state = 2}, + [2561] = {.lex_state = 60}, + [2562] = {.lex_state = 660}, + [2563] = {.lex_state = 580}, + [2564] = {.lex_state = 662}, + [2565] = {.lex_state = 665}, + [2566] = {.lex_state = 583}, + [2567] = {.lex_state = 580}, + [2568] = {.lex_state = 580}, + [2569] = {.lex_state = 583}, + [2570] = {.lex_state = 580}, + [2571] = {.lex_state = 580}, + [2572] = {.lex_state = 580}, + [2573] = {.lex_state = 665}, + [2574] = {.lex_state = 583}, + [2575] = {.lex_state = 580}, + [2576] = {.lex_state = 667}, + [2577] = {.lex_state = 580}, + [2578] = {.lex_state = 667}, + [2579] = {.lex_state = 583}, + [2580] = {.lex_state = 583}, + [2581] = {.lex_state = 583}, + [2582] = {.lex_state = 667}, + [2583] = {.lex_state = 667}, + [2584] = {.lex_state = 667}, + [2585] = {.lex_state = 60}, + [2586] = {.lex_state = 2}, + [2587] = {.lex_state = 580}, + [2588] = {.lex_state = 580}, + [2589] = {.lex_state = 583}, + [2590] = {.lex_state = 660}, + [2591] = {.lex_state = 667}, + [2592] = {.lex_state = 584}, + [2593] = {.lex_state = 584}, + [2594] = {.lex_state = 667}, + [2595] = {.lex_state = 583}, + [2596] = {.lex_state = 583}, + [2597] = {.lex_state = 580}, + [2598] = {.lex_state = 660}, + [2599] = {.lex_state = 580}, + [2600] = {.lex_state = 580}, + [2601] = {.lex_state = 580}, + [2602] = {.lex_state = 580}, + [2603] = {.lex_state = 583}, + [2604] = {.lex_state = 580}, + [2605] = {.lex_state = 667}, + [2606] = {.lex_state = 580}, + [2607] = {.lex_state = 583}, + [2608] = {.lex_state = 667}, + [2609] = {.lex_state = 2}, + [2610] = {.lex_state = 580}, + [2611] = {.lex_state = 2}, + [2612] = {.lex_state = 2}, + [2613] = {.lex_state = 667}, + [2614] = {.lex_state = 584}, + [2615] = {.lex_state = 583}, + [2616] = {.lex_state = 667}, + [2617] = {.lex_state = 584}, + [2618] = {.lex_state = 664}, + [2619] = {.lex_state = 584}, + [2620] = {.lex_state = 667}, + [2621] = {.lex_state = 584}, + [2622] = {.lex_state = 660}, + [2623] = {.lex_state = 2}, + [2624] = {.lex_state = 580}, + [2625] = {.lex_state = 583}, [2626] = {.lex_state = 2}, - [2627] = {.lex_state = 653}, - [2628] = {.lex_state = 572}, - [2629] = {.lex_state = 573}, - [2630] = {.lex_state = 572}, - [2631] = {.lex_state = 573}, - [2632] = {.lex_state = 573}, - [2633] = {.lex_state = 573}, - [2634] = {.lex_state = 656}, - [2635] = {.lex_state = 656}, - [2636] = {.lex_state = 572}, - [2637] = {.lex_state = 569}, - [2638] = {.lex_state = 572}, - [2639] = {.lex_state = 573}, - [2640] = {.lex_state = 569}, - [2641] = {.lex_state = 656}, - [2642] = {.lex_state = 572}, - [2643] = {.lex_state = 569}, - [2644] = {.lex_state = 656}, - [2645] = {.lex_state = 635}, + [2627] = {.lex_state = 2}, + [2628] = {.lex_state = 584}, + [2629] = {.lex_state = 580}, + [2630] = {.lex_state = 660}, + [2631] = {.lex_state = 580}, + [2632] = {.lex_state = 580}, + [2633] = {.lex_state = 584}, + [2634] = {.lex_state = 583}, + [2635] = {.lex_state = 584}, + [2636] = {.lex_state = 584}, + [2637] = {.lex_state = 667}, + [2638] = {.lex_state = 584}, + [2639] = {.lex_state = 584}, + [2640] = {.lex_state = 584}, + [2641] = {.lex_state = 583}, + [2642] = {.lex_state = 583}, + [2643] = {.lex_state = 2}, + [2644] = {.lex_state = 583}, + [2645] = {.lex_state = 583}, [2646] = {.lex_state = 61}, - [2647] = {.lex_state = 572}, - [2648] = {.lex_state = 656}, - [2649] = {.lex_state = 573}, - [2650] = {.lex_state = 572}, - [2651] = {.lex_state = 569}, - [2652] = {.lex_state = 651}, - [2653] = {.lex_state = 656}, - [2654] = {.lex_state = 635}, - [2655] = {.lex_state = 635}, - [2656] = {.lex_state = 635}, - [2657] = {.lex_state = 635}, - [2658] = {.lex_state = 635}, - [2659] = {.lex_state = 572}, - [2660] = {.lex_state = 2}, - [2661] = {.lex_state = 656}, - [2662] = {.lex_state = 572}, - [2663] = {.lex_state = 635}, - [2664] = {.lex_state = 572}, - [2665] = {.lex_state = 656}, - [2666] = {.lex_state = 572}, - [2667] = {.lex_state = 635}, - [2668] = {.lex_state = 569}, - [2669] = {.lex_state = 61}, - [2670] = {.lex_state = 61}, - [2671] = {.lex_state = 572}, - [2672] = {.lex_state = 656}, - [2673] = {.lex_state = 572}, - [2674] = {.lex_state = 635}, - [2675] = {.lex_state = 569}, - [2676] = {.lex_state = 572}, - [2677] = {.lex_state = 656}, - [2678] = {.lex_state = 2}, - [2679] = {.lex_state = 111}, - [2680] = {.lex_state = 635}, - [2681] = {.lex_state = 572}, - [2682] = {.lex_state = 573}, - [2683] = {.lex_state = 569}, + [2647] = {.lex_state = 111}, + [2648] = {.lex_state = 2}, + [2649] = {.lex_state = 646}, + [2650] = {.lex_state = 667}, + [2651] = {.lex_state = 646}, + [2652] = {.lex_state = 583}, + [2653] = {.lex_state = 662}, + [2654] = {.lex_state = 580}, + [2655] = {.lex_state = 580}, + [2656] = {.lex_state = 580}, + [2657] = {.lex_state = 2}, + [2658] = {.lex_state = 664}, + [2659] = {.lex_state = 583}, + [2660] = {.lex_state = 583}, + [2661] = {.lex_state = 667}, + [2662] = {.lex_state = 2}, + [2663] = {.lex_state = 667}, + [2664] = {.lex_state = 667}, + [2665] = {.lex_state = 666}, + [2666] = {.lex_state = 646}, + [2667] = {.lex_state = 584}, + [2668] = {.lex_state = 583}, + [2669] = {.lex_state = 584}, + [2670] = {.lex_state = 667}, + [2671] = {.lex_state = 584}, + [2672] = {.lex_state = 2}, + [2673] = {.lex_state = 583}, + [2674] = {.lex_state = 2}, + [2675] = {.lex_state = 667}, + [2676] = {.lex_state = 583}, + [2677] = {.lex_state = 2}, + [2678] = {.lex_state = 667}, + [2679] = {.lex_state = 669}, + [2680] = {.lex_state = 583}, + [2681] = {.lex_state = 61}, + [2682] = {.lex_state = 667}, + [2683] = {.lex_state = 580}, [2684] = {.lex_state = 2}, - [2685] = {.lex_state = 2}, - [2686] = {.lex_state = 573}, - [2687] = {.lex_state = 656}, - [2688] = {.lex_state = 572}, - [2689] = {.lex_state = 572}, - [2690] = {.lex_state = 2}, - [2691] = {.lex_state = 569}, + [2685] = {.lex_state = 583}, + [2686] = {.lex_state = 646}, + [2687] = {.lex_state = 646}, + [2688] = {.lex_state = 646}, + [2689] = {.lex_state = 646}, + [2690] = {.lex_state = 646}, + [2691] = {.lex_state = 580}, [2692] = {.lex_state = 2}, - [2693] = {.lex_state = 656}, - [2694] = {.lex_state = 569}, - [2695] = {.lex_state = 656}, - [2696] = {.lex_state = 2}, - [2697] = {.lex_state = 572}, - [2698] = {.lex_state = 572}, - [2699] = {.lex_state = 655}, - [2700] = {.lex_state = 656}, - [2701] = {.lex_state = 656}, - [2702] = {.lex_state = 61}, - [2703] = {.lex_state = 572}, - [2704] = {.lex_state = 653}, - [2705] = {.lex_state = 573}, - [2706] = {.lex_state = 656}, - [2707] = {.lex_state = 2}, - [2708] = {.lex_state = 635}, + [2693] = {.lex_state = 667}, + [2694] = {.lex_state = 583}, + [2695] = {.lex_state = 584}, + [2696] = {.lex_state = 583}, + [2697] = {.lex_state = 580}, + [2698] = {.lex_state = 667}, + [2699] = {.lex_state = 667}, + [2700] = {.lex_state = 583}, + [2701] = {.lex_state = 580}, + [2702] = {.lex_state = 646}, + [2703] = {.lex_state = 61}, + [2704] = {.lex_state = 646}, + [2705] = {.lex_state = 666}, + [2706] = {.lex_state = 667}, + [2707] = {.lex_state = 61}, + [2708] = {.lex_state = 583}, [2709] = {.lex_state = 2}, - [2710] = {.lex_state = 569}, + [2710] = {.lex_state = 583}, [2711] = {.lex_state = 61}, - [2712] = {.lex_state = 656}, - [2713] = {.lex_state = 658}, - [2714] = {.lex_state = 655}, - [2715] = {.lex_state = 573}, - [2716] = {.lex_state = 573}, - [2717] = {.lex_state = 573}, - [2718] = {.lex_state = 635}, - [2719] = {.lex_state = 569}, - [2720] = {.lex_state = 573}, - [2721] = {.lex_state = 573}, - [2722] = {.lex_state = 635}, - [2723] = {.lex_state = 63}, - [2724] = {.lex_state = 573}, - [2725] = {.lex_state = 573}, - [2726] = {.lex_state = 573}, - [2727] = {.lex_state = 573}, - [2728] = {.lex_state = 573}, - [2729] = {.lex_state = 573}, - [2730] = {.lex_state = 573}, - [2731] = {.lex_state = 573}, - [2732] = {.lex_state = 573}, - [2733] = {.lex_state = 573}, - [2734] = {.lex_state = 573}, - [2735] = {.lex_state = 573}, - [2736] = {.lex_state = 573}, - [2737] = {.lex_state = 573}, - [2738] = {.lex_state = 573}, - [2739] = {.lex_state = 573}, - [2740] = {.lex_state = 573}, - [2741] = {.lex_state = 573}, - [2742] = {.lex_state = 573}, - [2743] = {.lex_state = 573}, - [2744] = {.lex_state = 573}, - [2745] = {.lex_state = 573}, - [2746] = {.lex_state = 573}, - [2747] = {.lex_state = 573}, - [2748] = {.lex_state = 573}, - [2749] = {.lex_state = 573}, - [2750] = {.lex_state = 573}, - [2751] = {.lex_state = 573}, - [2752] = {.lex_state = 573}, - [2753] = {.lex_state = 573}, - [2754] = {.lex_state = 573}, - [2755] = {.lex_state = 573}, - [2756] = {.lex_state = 573}, - [2757] = {.lex_state = 573}, - [2758] = {.lex_state = 573}, - [2759] = {.lex_state = 651}, - [2760] = {.lex_state = 573}, - [2761] = {.lex_state = 62}, - [2762] = {.lex_state = 573}, - [2763] = {.lex_state = 573}, - [2764] = {.lex_state = 573}, - [2765] = {.lex_state = 573}, - [2766] = {.lex_state = 573}, - [2767] = {.lex_state = 573}, - [2768] = {.lex_state = 573}, - [2769] = {.lex_state = 573}, - [2770] = {.lex_state = 573}, - [2771] = {.lex_state = 573}, - [2772] = {.lex_state = 573}, - [2773] = {.lex_state = 573}, - [2774] = {.lex_state = 573}, - [2775] = {.lex_state = 573}, - [2776] = {.lex_state = 573}, - [2777] = {.lex_state = 573}, - [2778] = {.lex_state = 573}, - [2779] = {.lex_state = 573}, - [2780] = {.lex_state = 573}, - [2781] = {.lex_state = 573}, - [2782] = {.lex_state = 573}, - [2783] = {.lex_state = 573}, - [2784] = {.lex_state = 635}, - [2785] = {.lex_state = 573}, - [2786] = {.lex_state = 573}, - [2787] = {.lex_state = 573}, - [2788] = {.lex_state = 573}, - [2789] = {.lex_state = 573}, - [2790] = {.lex_state = 573}, - [2791] = {.lex_state = 573}, - [2792] = {.lex_state = 573}, - [2793] = {.lex_state = 573}, - [2794] = {.lex_state = 657}, - [2795] = {.lex_state = 573}, - [2796] = {.lex_state = 655}, - [2797] = {.lex_state = 573}, - [2798] = {.lex_state = 573}, - [2799] = {.lex_state = 635}, - [2800] = {.lex_state = 573}, - [2801] = {.lex_state = 657}, - [2802] = {.lex_state = 573}, - [2803] = {.lex_state = 573}, - [2804] = {.lex_state = 572}, - [2805] = {.lex_state = 657}, - [2806] = {.lex_state = 657}, - [2807] = {.lex_state = 655}, - [2808] = {.lex_state = 573}, - [2809] = {.lex_state = 657}, - [2810] = {.lex_state = 657}, - [2811] = {.lex_state = 573}, - [2812] = {.lex_state = 572}, - [2813] = {.lex_state = 657}, - [2814] = {.lex_state = 657}, - [2815] = {.lex_state = 573}, - [2816] = {.lex_state = 657}, - [2817] = {.lex_state = 635}, - [2818] = {.lex_state = 635}, - [2819] = {.lex_state = 573}, - [2820] = {.lex_state = 635}, - [2821] = {.lex_state = 635}, - [2822] = {.lex_state = 656}, - [2823] = {.lex_state = 569}, - [2824] = {.lex_state = 621}, - [2825] = {.lex_state = 569}, - [2826] = {.lex_state = 573}, - [2827] = {.lex_state = 573}, - [2828] = {.lex_state = 573}, - [2829] = {.lex_state = 573}, - [2830] = {.lex_state = 573}, - [2831] = {.lex_state = 2}, - [2832] = {.lex_state = 2}, - [2833] = {.lex_state = 2}, - [2834] = {.lex_state = 2}, - [2835] = {.lex_state = 2}, - [2836] = {.lex_state = 2}, - [2837] = {.lex_state = 573}, - [2838] = {.lex_state = 573}, - [2839] = {.lex_state = 573}, - [2840] = {.lex_state = 573}, - [2841] = {.lex_state = 573}, - [2842] = {.lex_state = 629}, - [2843] = {.lex_state = 573}, - [2844] = {.lex_state = 573}, - [2845] = {.lex_state = 629}, - [2846] = {.lex_state = 573}, - [2847] = {.lex_state = 573}, - [2848] = {.lex_state = 573}, - [2849] = {.lex_state = 573}, - [2850] = {.lex_state = 573}, - [2851] = {.lex_state = 573}, - [2852] = {.lex_state = 573}, - [2853] = {.lex_state = 573}, - [2854] = {.lex_state = 629}, - [2855] = {.lex_state = 629}, - [2856] = {.lex_state = 2}, - [2857] = {.lex_state = 573}, - [2858] = {.lex_state = 573}, - [2859] = {.lex_state = 573}, - [2860] = {.lex_state = 2}, - [2861] = {.lex_state = 573}, - [2862] = {.lex_state = 573}, - [2863] = {.lex_state = 635}, - [2864] = {.lex_state = 658}, - [2865] = {.lex_state = 573}, - [2866] = {.lex_state = 573}, - [2867] = {.lex_state = 629}, - [2868] = {.lex_state = 635}, - [2869] = {.lex_state = 573}, - [2870] = {.lex_state = 569}, - [2871] = {.lex_state = 2}, - [2872] = {.lex_state = 621}, - [2873] = {.lex_state = 657}, - [2874] = {.lex_state = 617}, - [2875] = {.lex_state = 635}, - [2876] = {.lex_state = 2}, - [2877] = {.lex_state = 573}, - [2878] = {.lex_state = 657}, - [2879] = {.lex_state = 2}, - [2880] = {.lex_state = 657}, - [2881] = {.lex_state = 573}, - [2882] = {.lex_state = 573}, - [2883] = {.lex_state = 621}, - [2884] = {.lex_state = 572}, - [2885] = {.lex_state = 572}, - [2886] = {.lex_state = 573}, - [2887] = {.lex_state = 573}, - [2888] = {.lex_state = 573}, - [2889] = {.lex_state = 573}, - [2890] = {.lex_state = 573}, - [2891] = {.lex_state = 573}, - [2892] = {.lex_state = 573}, - [2893] = {.lex_state = 573}, - [2894] = {.lex_state = 573}, - [2895] = {.lex_state = 573}, - [2896] = {.lex_state = 621}, - [2897] = {.lex_state = 621}, - [2898] = {.lex_state = 573}, - [2899] = {.lex_state = 621}, - [2900] = {.lex_state = 621}, - [2901] = {.lex_state = 573}, - [2902] = {.lex_state = 621}, - [2903] = {.lex_state = 573}, - [2904] = {.lex_state = 657}, - [2905] = {.lex_state = 624}, - [2906] = {.lex_state = 573}, - [2907] = {.lex_state = 573}, - [2908] = {.lex_state = 621}, - [2909] = {.lex_state = 621}, - [2910] = {.lex_state = 657}, - [2911] = {.lex_state = 2}, - [2912] = {.lex_state = 621}, - [2913] = {.lex_state = 629}, + [2712] = {.lex_state = 667}, + [2713] = {.lex_state = 667}, + [2714] = {.lex_state = 646}, + [2715] = {.lex_state = 666}, + [2716] = {.lex_state = 646}, + [2717] = {.lex_state = 584}, + [2718] = {.lex_state = 646}, + [2719] = {.lex_state = 583}, + [2720] = {.lex_state = 584}, + [2721] = {.lex_state = 584}, + [2722] = {.lex_state = 2}, + [2723] = {.lex_state = 2}, + [2724] = {.lex_state = 2}, + [2725] = {.lex_state = 2}, + [2726] = {.lex_state = 2}, + [2727] = {.lex_state = 2}, + [2728] = {.lex_state = 668}, + [2729] = {.lex_state = 584}, + [2730] = {.lex_state = 583}, + [2731] = {.lex_state = 632}, + [2732] = {.lex_state = 584}, + [2733] = {.lex_state = 63}, + [2734] = {.lex_state = 668}, + [2735] = {.lex_state = 584}, + [2736] = {.lex_state = 584}, + [2737] = {.lex_state = 640}, + [2738] = {.lex_state = 584}, + [2739] = {.lex_state = 584}, + [2740] = {.lex_state = 640}, + [2741] = {.lex_state = 584}, + [2742] = {.lex_state = 640}, + [2743] = {.lex_state = 584}, + [2744] = {.lex_state = 584}, + [2745] = {.lex_state = 584}, + [2746] = {.lex_state = 584}, + [2747] = {.lex_state = 584}, + [2748] = {.lex_state = 584}, + [2749] = {.lex_state = 584}, + [2750] = {.lex_state = 584}, + [2751] = {.lex_state = 584}, + [2752] = {.lex_state = 584}, + [2753] = {.lex_state = 584}, + [2754] = {.lex_state = 584}, + [2755] = {.lex_state = 584}, + [2756] = {.lex_state = 584}, + [2757] = {.lex_state = 584}, + [2758] = {.lex_state = 584}, + [2759] = {.lex_state = 584}, + [2760] = {.lex_state = 668}, + [2761] = {.lex_state = 584}, + [2762] = {.lex_state = 584}, + [2763] = {.lex_state = 668}, + [2764] = {.lex_state = 584}, + [2765] = {.lex_state = 584}, + [2766] = {.lex_state = 584}, + [2767] = {.lex_state = 668}, + [2768] = {.lex_state = 584}, + [2769] = {.lex_state = 668}, + [2770] = {.lex_state = 584}, + [2771] = {.lex_state = 584}, + [2772] = {.lex_state = 662}, + [2773] = {.lex_state = 668}, + [2774] = {.lex_state = 668}, + [2775] = {.lex_state = 584}, + [2776] = {.lex_state = 632}, + [2777] = {.lex_state = 584}, + [2778] = {.lex_state = 580}, + [2779] = {.lex_state = 584}, + [2780] = {.lex_state = 646}, + [2781] = {.lex_state = 646}, + [2782] = {.lex_state = 584}, + [2783] = {.lex_state = 62}, + [2784] = {.lex_state = 584}, + [2785] = {.lex_state = 584}, + [2786] = {.lex_state = 584}, + [2787] = {.lex_state = 632}, + [2788] = {.lex_state = 580}, + [2789] = {.lex_state = 668}, + [2790] = {.lex_state = 668}, + [2791] = {.lex_state = 584}, + [2792] = {.lex_state = 646}, + [2793] = {.lex_state = 584}, + [2794] = {.lex_state = 584}, + [2795] = {.lex_state = 584}, + [2796] = {.lex_state = 584}, + [2797] = {.lex_state = 2}, + [2798] = {.lex_state = 584}, + [2799] = {.lex_state = 584}, + [2800] = {.lex_state = 584}, + [2801] = {.lex_state = 580}, + [2802] = {.lex_state = 584}, + [2803] = {.lex_state = 584}, + [2804] = {.lex_state = 584}, + [2805] = {.lex_state = 646}, + [2806] = {.lex_state = 628}, + [2807] = {.lex_state = 584}, + [2808] = {.lex_state = 584}, + [2809] = {.lex_state = 584}, + [2810] = {.lex_state = 2}, + [2811] = {.lex_state = 584}, + [2812] = {.lex_state = 584}, + [2813] = {.lex_state = 584}, + [2814] = {.lex_state = 584}, + [2815] = {.lex_state = 584}, + [2816] = {.lex_state = 584}, + [2817] = {.lex_state = 584}, + [2818] = {.lex_state = 668}, + [2819] = {.lex_state = 584}, + [2820] = {.lex_state = 584}, + [2821] = {.lex_state = 584}, + [2822] = {.lex_state = 584}, + [2823] = {.lex_state = 584}, + [2824] = {.lex_state = 584}, + [2825] = {.lex_state = 2}, + [2826] = {.lex_state = 584}, + [2827] = {.lex_state = 584}, + [2828] = {.lex_state = 584}, + [2829] = {.lex_state = 584}, + [2830] = {.lex_state = 640}, + [2831] = {.lex_state = 584}, + [2832] = {.lex_state = 584}, + [2833] = {.lex_state = 584}, + [2834] = {.lex_state = 584}, + [2835] = {.lex_state = 584}, + [2836] = {.lex_state = 584}, + [2837] = {.lex_state = 584}, + [2838] = {.lex_state = 584}, + [2839] = {.lex_state = 584}, + [2840] = {.lex_state = 646}, + [2841] = {.lex_state = 668}, + [2842] = {.lex_state = 584}, + [2843] = {.lex_state = 640}, + [2844] = {.lex_state = 580}, + [2845] = {.lex_state = 668}, + [2846] = {.lex_state = 584}, + [2847] = {.lex_state = 584}, + [2848] = {.lex_state = 667}, + [2849] = {.lex_state = 584}, + [2850] = {.lex_state = 632}, + [2851] = {.lex_state = 2}, + [2852] = {.lex_state = 666}, + [2853] = {.lex_state = 584}, + [2854] = {.lex_state = 584}, + [2855] = {.lex_state = 584}, + [2856] = {.lex_state = 584}, + [2857] = {.lex_state = 584}, + [2858] = {.lex_state = 583}, + [2859] = {.lex_state = 584}, + [2860] = {.lex_state = 584}, + [2861] = {.lex_state = 584}, + [2862] = {.lex_state = 2}, + [2863] = {.lex_state = 583}, + [2864] = {.lex_state = 584}, + [2865] = {.lex_state = 584}, + [2866] = {.lex_state = 584}, + [2867] = {.lex_state = 584}, + [2868] = {.lex_state = 584}, + [2869] = {.lex_state = 584}, + [2870] = {.lex_state = 584}, + [2871] = {.lex_state = 584}, + [2872] = {.lex_state = 584}, + [2873] = {.lex_state = 584}, + [2874] = {.lex_state = 584}, + [2875] = {.lex_state = 584}, + [2876] = {.lex_state = 584}, + [2877] = {.lex_state = 584}, + [2878] = {.lex_state = 584}, + [2879] = {.lex_state = 584}, + [2880] = {.lex_state = 584}, + [2881] = {.lex_state = 584}, + [2882] = {.lex_state = 584}, + [2883] = {.lex_state = 584}, + [2884] = {.lex_state = 584}, + [2885] = {.lex_state = 584}, + [2886] = {.lex_state = 584}, + [2887] = {.lex_state = 646}, + [2888] = {.lex_state = 669}, + [2889] = {.lex_state = 584}, + [2890] = {.lex_state = 646}, + [2891] = {.lex_state = 584}, + [2892] = {.lex_state = 632}, + [2893] = {.lex_state = 584}, + [2894] = {.lex_state = 632}, + [2895] = {.lex_state = 632}, + [2896] = {.lex_state = 632}, + [2897] = {.lex_state = 584}, + [2898] = {.lex_state = 584}, + [2899] = {.lex_state = 584}, + [2900] = {.lex_state = 584}, + [2901] = {.lex_state = 584}, + [2902] = {.lex_state = 646}, + [2903] = {.lex_state = 646}, + [2904] = {.lex_state = 584}, + [2905] = {.lex_state = 584}, + [2906] = {.lex_state = 584}, + [2907] = {.lex_state = 583}, + [2908] = {.lex_state = 64}, + [2909] = {.lex_state = 584}, + [2910] = {.lex_state = 632}, + [2911] = {.lex_state = 583}, + [2912] = {.lex_state = 584}, + [2913] = {.lex_state = 2}, [2914] = {.lex_state = 2}, - [2915] = {.lex_state = 2}, - [2916] = {.lex_state = 657}, - [2917] = {.lex_state = 572}, - [2918] = {.lex_state = 657}, - [2919] = {.lex_state = 573}, - [2920] = {.lex_state = 657}, - [2921] = {.lex_state = 2}, - [2922] = {.lex_state = 2}, - [2923] = {.lex_state = 621}, - [2924] = {.lex_state = 573}, - [2925] = {.lex_state = 2}, - [2926] = {.lex_state = 111}, - [2927] = {.lex_state = 2}, - [2928] = {.lex_state = 572}, - [2929] = {.lex_state = 657}, - [2930] = {.lex_state = 111}, - [2931] = {.lex_state = 657}, - [2932] = {.lex_state = 624}, - [2933] = {.lex_state = 2}, - [2934] = {.lex_state = 2}, + [2915] = {.lex_state = 584}, + [2916] = {.lex_state = 668}, + [2917] = {.lex_state = 2}, + [2918] = {.lex_state = 584}, + [2919] = {.lex_state = 111}, + [2920] = {.lex_state = 111}, + [2921] = {.lex_state = 580}, + [2922] = {.lex_state = 640}, + [2923] = {.lex_state = 632}, + [2924] = {.lex_state = 584}, + [2925] = {.lex_state = 584}, + [2926] = {.lex_state = 2}, + [2927] = {.lex_state = 640}, + [2928] = {.lex_state = 584}, + [2929] = {.lex_state = 635}, + [2930] = {.lex_state = 2}, + [2931] = {.lex_state = 2}, + [2932] = {.lex_state = 668}, + [2933] = {.lex_state = 73}, + [2934] = {.lex_state = 584}, [2935] = {.lex_state = 2}, - [2936] = {.lex_state = 569}, - [2937] = {.lex_state = 2}, - [2938] = {.lex_state = 111}, - [2939] = {.lex_state = 2}, - [2940] = {.lex_state = 621}, - [2941] = {.lex_state = 657}, - [2942] = {.lex_state = 572}, - [2943] = {.lex_state = 2}, - [2944] = {.lex_state = 624}, - [2945] = {.lex_state = 657}, - [2946] = {.lex_state = 657}, - [2947] = {.lex_state = 572}, + [2936] = {.lex_state = 668}, + [2937] = {.lex_state = 583}, + [2938] = {.lex_state = 632}, + [2939] = {.lex_state = 668}, + [2940] = {.lex_state = 640}, + [2941] = {.lex_state = 2}, + [2942] = {.lex_state = 584}, + [2943] = {.lex_state = 584}, + [2944] = {.lex_state = 67}, + [2945] = {.lex_state = 584}, + [2946] = {.lex_state = 584}, + [2947] = {.lex_state = 584}, [2948] = {.lex_state = 2}, - [2949] = {.lex_state = 2}, - [2950] = {.lex_state = 657}, - [2951] = {.lex_state = 2}, - [2952] = {.lex_state = 657}, - [2953] = {.lex_state = 657}, - [2954] = {.lex_state = 573}, - [2955] = {.lex_state = 573}, - [2956] = {.lex_state = 573}, - [2957] = {.lex_state = 617}, + [2949] = {.lex_state = 584}, + [2950] = {.lex_state = 668}, + [2951] = {.lex_state = 583}, + [2952] = {.lex_state = 111}, + [2953] = {.lex_state = 584}, + [2954] = {.lex_state = 584}, + [2955] = {.lex_state = 584}, + [2956] = {.lex_state = 111}, + [2957] = {.lex_state = 584}, [2958] = {.lex_state = 2}, - [2959] = {.lex_state = 111}, - [2960] = {.lex_state = 651}, - [2961] = {.lex_state = 111}, - [2962] = {.lex_state = 621}, - [2963] = {.lex_state = 621}, - [2964] = {.lex_state = 621}, - [2965] = {.lex_state = 573}, - [2966] = {.lex_state = 2}, - [2967] = {.lex_state = 573}, - [2968] = {.lex_state = 573}, - [2969] = {.lex_state = 569}, - [2970] = {.lex_state = 573}, - [2971] = {.lex_state = 67}, - [2972] = {.lex_state = 125, .external_lex_state = 2}, - [2973] = {.lex_state = 573}, - [2974] = {.lex_state = 573}, - [2975] = {.lex_state = 573}, - [2976] = {.lex_state = 2}, - [2977] = {.lex_state = 64}, - [2978] = {.lex_state = 572}, - [2979] = {.lex_state = 573}, - [2980] = {.lex_state = 573}, - [2981] = {.lex_state = 569}, - [2982] = {.lex_state = 2}, - [2983] = {.lex_state = 621}, - [2984] = {.lex_state = 111}, - [2985] = {.lex_state = 573}, - [2986] = {.lex_state = 2}, - [2987] = {.lex_state = 572}, - [2988] = {.lex_state = 573}, - [2989] = {.lex_state = 573}, + [2959] = {.lex_state = 668}, + [2960] = {.lex_state = 635}, + [2961] = {.lex_state = 668}, + [2962] = {.lex_state = 2}, + [2963] = {.lex_state = 584}, + [2964] = {.lex_state = 668}, + [2965] = {.lex_state = 668}, + [2966] = {.lex_state = 111}, + [2967] = {.lex_state = 668}, + [2968] = {.lex_state = 2}, + [2969] = {.lex_state = 668}, + [2970] = {.lex_state = 584}, + [2971] = {.lex_state = 632}, + [2972] = {.lex_state = 584}, + [2973] = {.lex_state = 584}, + [2974] = {.lex_state = 668}, + [2975] = {.lex_state = 584}, + [2976] = {.lex_state = 583}, + [2977] = {.lex_state = 584}, + [2978] = {.lex_state = 584}, + [2979] = {.lex_state = 584}, + [2980] = {.lex_state = 584}, + [2981] = {.lex_state = 2}, + [2982] = {.lex_state = 632}, + [2983] = {.lex_state = 584}, + [2984] = {.lex_state = 584}, + [2985] = {.lex_state = 584}, + [2986] = {.lex_state = 635}, + [2987] = {.lex_state = 2}, + [2988] = {.lex_state = 640}, + [2989] = {.lex_state = 2}, [2990] = {.lex_state = 2}, - [2991] = {.lex_state = 573}, - [2992] = {.lex_state = 573}, - [2993] = {.lex_state = 573}, - [2994] = {.lex_state = 629}, - [2995] = {.lex_state = 629}, - [2996] = {.lex_state = 572}, - [2997] = {.lex_state = 573}, - [2998] = {.lex_state = 573}, - [2999] = {.lex_state = 573}, - [3000] = {.lex_state = 629}, - [3001] = {.lex_state = 2}, - [3002] = {.lex_state = 2}, - [3003] = {.lex_state = 621}, - [3004] = {.lex_state = 624}, - [3005] = {.lex_state = 629}, - [3006] = {.lex_state = 629}, + [2991] = {.lex_state = 583}, + [2992] = {.lex_state = 2}, + [2993] = {.lex_state = 111}, + [2994] = {.lex_state = 583}, + [2995] = {.lex_state = 583}, + [2996] = {.lex_state = 580}, + [2997] = {.lex_state = 640}, + [2998] = {.lex_state = 2}, + [2999] = {.lex_state = 2}, + [3000] = {.lex_state = 584}, + [3001] = {.lex_state = 640}, + [3002] = {.lex_state = 584}, + [3003] = {.lex_state = 668}, + [3004] = {.lex_state = 2}, + [3005] = {.lex_state = 584}, + [3006] = {.lex_state = 2}, [3007] = {.lex_state = 2}, - [3008] = {.lex_state = 573}, - [3009] = {.lex_state = 572}, - [3010] = {.lex_state = 629}, + [3008] = {.lex_state = 2}, + [3009] = {.lex_state = 584}, + [3010] = {.lex_state = 635}, [3011] = {.lex_state = 2}, - [3012] = {.lex_state = 572}, - [3013] = {.lex_state = 572}, - [3014] = {.lex_state = 573}, - [3015] = {.lex_state = 573}, - [3016] = {.lex_state = 73}, - [3017] = {.lex_state = 573}, - [3018] = {.lex_state = 629}, - [3019] = {.lex_state = 657}, - [3020] = {.lex_state = 624}, - [3021] = {.lex_state = 657}, - [3022] = {.lex_state = 64}, - [3023] = {.lex_state = 624}, - [3024] = {.lex_state = 2}, - [3025] = {.lex_state = 573}, - [3026] = {.lex_state = 629}, - [3027] = {.lex_state = 2}, - [3028] = {.lex_state = 573}, - [3029] = {.lex_state = 2}, - [3030] = {.lex_state = 2}, - [3031] = {.lex_state = 621}, - [3032] = {.lex_state = 624}, - [3033] = {.lex_state = 624}, - [3034] = {.lex_state = 624}, - [3035] = {.lex_state = 573}, - [3036] = {.lex_state = 49, .external_lex_state = 2}, - [3037] = {.lex_state = 624}, - [3038] = {.lex_state = 573}, - [3039] = {.lex_state = 70}, - [3040] = {.lex_state = 624}, - [3041] = {.lex_state = 629}, - [3042] = {.lex_state = 573}, - [3043] = {.lex_state = 573}, - [3044] = {.lex_state = 621}, - [3045] = {.lex_state = 624}, - [3046] = {.lex_state = 624}, - [3047] = {.lex_state = 2}, - [3048] = {.lex_state = 2}, - [3049] = {.lex_state = 2}, - [3050] = {.lex_state = 624}, - [3051] = {.lex_state = 621}, + [3012] = {.lex_state = 125, .external_lex_state = 2}, + [3013] = {.lex_state = 580}, + [3014] = {.lex_state = 635}, + [3015] = {.lex_state = 668}, + [3016] = {.lex_state = 632}, + [3017] = {.lex_state = 584}, + [3018] = {.lex_state = 2}, + [3019] = {.lex_state = 640}, + [3020] = {.lex_state = 662}, + [3021] = {.lex_state = 632}, + [3022] = {.lex_state = 583}, + [3023] = {.lex_state = 2}, + [3024] = {.lex_state = 584}, + [3025] = {.lex_state = 64}, + [3026] = {.lex_state = 640}, + [3027] = {.lex_state = 632}, + [3028] = {.lex_state = 628}, + [3029] = {.lex_state = 632}, + [3030] = {.lex_state = 584}, + [3031] = {.lex_state = 632}, + [3032] = {.lex_state = 583}, + [3033] = {.lex_state = 584}, + [3034] = {.lex_state = 635}, + [3035] = {.lex_state = 635}, + [3036] = {.lex_state = 635}, + [3037] = {.lex_state = 635}, + [3038] = {.lex_state = 635}, + [3039] = {.lex_state = 635}, + [3040] = {.lex_state = 70}, + [3041] = {.lex_state = 635}, + [3042] = {.lex_state = 635}, + [3043] = {.lex_state = 2}, + [3044] = {.lex_state = 2}, + [3045] = {.lex_state = 584}, + [3046] = {.lex_state = 2}, + [3047] = {.lex_state = 635}, + [3048] = {.lex_state = 635}, + [3049] = {.lex_state = 584}, + [3050] = {.lex_state = 2}, + [3051] = {.lex_state = 584}, [3052] = {.lex_state = 2}, - [3053] = {.lex_state = 2}, - [3054] = {.lex_state = 573}, - [3055] = {.lex_state = 621}, - [3056] = {.lex_state = 70}, + [3053] = {.lex_state = 635}, + [3054] = {.lex_state = 584}, + [3055] = {.lex_state = 66}, + [3056] = {.lex_state = 635}, [3057] = {.lex_state = 2}, [3058] = {.lex_state = 2}, - [3059] = {.lex_state = 624}, - [3060] = {.lex_state = 2}, - [3061] = {.lex_state = 572}, - [3062] = {.lex_state = 573}, - [3063] = {.lex_state = 621}, - [3064] = {.lex_state = 624}, - [3065] = {.lex_state = 624}, - [3066] = {.lex_state = 572}, - [3067] = {.lex_state = 624}, + [3059] = {.lex_state = 2}, + [3060] = {.lex_state = 635}, + [3061] = {.lex_state = 635}, + [3062] = {.lex_state = 635}, + [3063] = {.lex_state = 2}, + [3064] = {.lex_state = 2}, + [3065] = {.lex_state = 2}, + [3066] = {.lex_state = 2}, + [3067] = {.lex_state = 2}, [3068] = {.lex_state = 2}, [3069] = {.lex_state = 2}, - [3070] = {.lex_state = 624}, - [3071] = {.lex_state = 624}, - [3072] = {.lex_state = 624}, - [3073] = {.lex_state = 573}, - [3074] = {.lex_state = 657}, - [3075] = {.lex_state = 573}, - [3076] = {.lex_state = 573}, - [3077] = {.lex_state = 624}, - [3078] = {.lex_state = 67}, - [3079] = {.lex_state = 573}, - [3080] = {.lex_state = 573}, - [3081] = {.lex_state = 621}, - [3082] = {.lex_state = 573}, - [3083] = {.lex_state = 573}, - [3084] = {.lex_state = 621}, - [3085] = {.lex_state = 624}, - [3086] = {.lex_state = 573}, - [3087] = {.lex_state = 2}, - [3088] = {.lex_state = 573}, - [3089] = {.lex_state = 2}, - [3090] = {.lex_state = 573}, - [3091] = {.lex_state = 2}, - [3092] = {.lex_state = 2}, - [3093] = {.lex_state = 61}, - [3094] = {.lex_state = 624}, - [3095] = {.lex_state = 624}, - [3096] = {.lex_state = 621}, - [3097] = {.lex_state = 624}, - [3098] = {.lex_state = 572}, - [3099] = {.lex_state = 573}, - [3100] = {.lex_state = 624}, - [3101] = {.lex_state = 572}, - [3102] = {.lex_state = 2}, - [3103] = {.lex_state = 2}, - [3104] = {.lex_state = 62}, - [3105] = {.lex_state = 2}, - [3106] = {.lex_state = 621}, - [3107] = {.lex_state = 621}, - [3108] = {.lex_state = 61}, - [3109] = {.lex_state = 624}, - [3110] = {.lex_state = 189}, - [3111] = {.lex_state = 573}, - [3112] = {.lex_state = 624}, - [3113] = {.lex_state = 624}, - [3114] = {.lex_state = 624}, - [3115] = {.lex_state = 624}, - [3116] = {.lex_state = 573}, - [3117] = {.lex_state = 61}, - [3118] = {.lex_state = 573}, - [3119] = {.lex_state = 573}, - [3120] = {.lex_state = 624}, - [3121] = {.lex_state = 2}, - [3122] = {.lex_state = 624}, - [3123] = {.lex_state = 624}, - [3124] = {.lex_state = 624}, - [3125] = {.lex_state = 65}, - [3126] = {.lex_state = 621}, - [3127] = {.lex_state = 65}, - [3128] = {.lex_state = 65}, - [3129] = {.lex_state = 624}, - [3130] = {.lex_state = 624}, - [3131] = {.lex_state = 624}, - [3132] = {.lex_state = 624}, - [3133] = {.lex_state = 65}, - [3134] = {.lex_state = 65}, - [3135] = {.lex_state = 65}, - [3136] = {.lex_state = 65}, - [3137] = {.lex_state = 624}, - [3138] = {.lex_state = 624}, - [3139] = {.lex_state = 624}, - [3140] = {.lex_state = 624}, - [3141] = {.lex_state = 624}, - [3142] = {.lex_state = 624}, - [3143] = {.lex_state = 624}, - [3144] = {.lex_state = 61}, - [3145] = {.lex_state = 68}, - [3146] = {.lex_state = 572}, - [3147] = {.lex_state = 624}, - [3148] = {.lex_state = 624}, - [3149] = {.lex_state = 621}, - [3150] = {.lex_state = 572}, - [3151] = {.lex_state = 65}, - [3152] = {.lex_state = 624}, - [3153] = {.lex_state = 573}, - [3154] = {.lex_state = 624}, - [3155] = {.lex_state = 624}, - [3156] = {.lex_state = 66}, - [3157] = {.lex_state = 65}, - [3158] = {.lex_state = 621}, - [3159] = {.lex_state = 624}, - [3160] = {.lex_state = 65}, - [3161] = {.lex_state = 621}, - [3162] = {.lex_state = 621}, - [3163] = {.lex_state = 621}, - [3164] = {.lex_state = 624}, - [3165] = {.lex_state = 624}, - [3166] = {.lex_state = 621}, - [3167] = {.lex_state = 624}, - [3168] = {.lex_state = 621}, - [3169] = {.lex_state = 65}, - [3170] = {.lex_state = 573}, - [3171] = {.lex_state = 624}, - [3172] = {.lex_state = 624}, - [3173] = {.lex_state = 624}, - [3174] = {.lex_state = 2}, + [3070] = {.lex_state = 635}, + [3071] = {.lex_state = 61}, + [3072] = {.lex_state = 635}, + [3073] = {.lex_state = 632}, + [3074] = {.lex_state = 2}, + [3075] = {.lex_state = 2}, + [3076] = {.lex_state = 584}, + [3077] = {.lex_state = 2}, + [3078] = {.lex_state = 2}, + [3079] = {.lex_state = 584}, + [3080] = {.lex_state = 584}, + [3081] = {.lex_state = 584}, + [3082] = {.lex_state = 632}, + [3083] = {.lex_state = 584}, + [3084] = {.lex_state = 2}, + [3085] = {.lex_state = 2}, + [3086] = {.lex_state = 584}, + [3087] = {.lex_state = 584}, + [3088] = {.lex_state = 632}, + [3089] = {.lex_state = 635}, + [3090] = {.lex_state = 632}, + [3091] = {.lex_state = 584}, + [3092] = {.lex_state = 632}, + [3093] = {.lex_state = 584}, + [3094] = {.lex_state = 584}, + [3095] = {.lex_state = 584}, + [3096] = {.lex_state = 584}, + [3097] = {.lex_state = 584}, + [3098] = {.lex_state = 584}, + [3099] = {.lex_state = 584}, + [3100] = {.lex_state = 189}, + [3101] = {.lex_state = 584}, + [3102] = {.lex_state = 635}, + [3103] = {.lex_state = 584}, + [3104] = {.lex_state = 65}, + [3105] = {.lex_state = 65}, + [3106] = {.lex_state = 584}, + [3107] = {.lex_state = 584}, + [3108] = {.lex_state = 635}, + [3109] = {.lex_state = 584}, + [3110] = {.lex_state = 65}, + [3111] = {.lex_state = 584}, + [3112] = {.lex_state = 65}, + [3113] = {.lex_state = 65}, + [3114] = {.lex_state = 65}, + [3115] = {.lex_state = 65}, + [3116] = {.lex_state = 68}, + [3117] = {.lex_state = 65}, + [3118] = {.lex_state = 668}, + [3119] = {.lex_state = 65}, + [3120] = {.lex_state = 65}, + [3121] = {.lex_state = 583}, + [3122] = {.lex_state = 584}, + [3123] = {.lex_state = 583}, + [3124] = {.lex_state = 583}, + [3125] = {.lex_state = 584}, + [3126] = {.lex_state = 632}, + [3127] = {.lex_state = 632}, + [3128] = {.lex_state = 632}, + [3129] = {.lex_state = 635}, + [3130] = {.lex_state = 635}, + [3131] = {.lex_state = 635}, + [3132] = {.lex_state = 635}, + [3133] = {.lex_state = 635}, + [3134] = {.lex_state = 635}, + [3135] = {.lex_state = 635}, + [3136] = {.lex_state = 635}, + [3137] = {.lex_state = 65}, + [3138] = {.lex_state = 65}, + [3139] = {.lex_state = 65}, + [3140] = {.lex_state = 61}, + [3141] = {.lex_state = 584}, + [3142] = {.lex_state = 584}, + [3143] = {.lex_state = 62}, + [3144] = {.lex_state = 632}, + [3145] = {.lex_state = 632}, + [3146] = {.lex_state = 635}, + [3147] = {.lex_state = 632}, + [3148] = {.lex_state = 584}, + [3149] = {.lex_state = 635}, + [3150] = {.lex_state = 584}, + [3151] = {.lex_state = 632}, + [3152] = {.lex_state = 632}, + [3153] = {.lex_state = 61}, + [3154] = {.lex_state = 61}, + [3155] = {.lex_state = 584}, + [3156] = {.lex_state = 632}, + [3157] = {.lex_state = 584}, + [3158] = {.lex_state = 61}, + [3159] = {.lex_state = 61}, + [3160] = {.lex_state = 632}, + [3161] = {.lex_state = 632}, + [3162] = {.lex_state = 632}, + [3163] = {.lex_state = 584}, + [3164] = {.lex_state = 584}, + [3165] = {.lex_state = 584}, + [3166] = {.lex_state = 584}, + [3167] = {.lex_state = 584}, + [3168] = {.lex_state = 584}, + [3169] = {.lex_state = 635}, + [3170] = {.lex_state = 584}, + [3171] = {.lex_state = 584}, + [3172] = {.lex_state = 632}, + [3173] = {.lex_state = 67}, + [3174] = {.lex_state = 632}, [3175] = {.lex_state = 2}, - [3176] = {.lex_state = 573}, - [3177] = {.lex_state = 65}, - [3178] = {.lex_state = 624}, - [3179] = {.lex_state = 624}, - [3180] = {.lex_state = 61}, - [3181] = {.lex_state = 624}, - [3182] = {.lex_state = 624}, - [3183] = {.lex_state = 624}, - [3184] = {.lex_state = 621}, - [3185] = {.lex_state = 624}, - [3186] = {.lex_state = 624}, - [3187] = {.lex_state = 65}, - [3188] = {.lex_state = 624}, - [3189] = {.lex_state = 624}, - [3190] = {.lex_state = 2}, - [3191] = {.lex_state = 621}, - [3192] = {.lex_state = 624}, - [3193] = {.lex_state = 573}, - [3194] = {.lex_state = 621}, - [3195] = {.lex_state = 621}, - [3196] = {.lex_state = 621}, - [3197] = {.lex_state = 621}, - [3198] = {.lex_state = 624}, - [3199] = {.lex_state = 624}, - [3200] = {.lex_state = 573}, - [3201] = {.lex_state = 629}, - [3202] = {.lex_state = 624}, - [3203] = {.lex_state = 624}, - [3204] = {.lex_state = 624}, - [3205] = {.lex_state = 61}, - [3206] = {.lex_state = 2}, - [3207] = {.lex_state = 621}, - [3208] = {.lex_state = 573}, - [3209] = {.lex_state = 621}, - [3210] = {.lex_state = 61}, - [3211] = {.lex_state = 2}, - [3212] = {.lex_state = 624}, - [3213] = {.lex_state = 624}, - [3214] = {.lex_state = 624}, - [3215] = {.lex_state = 183}, - [3216] = {.lex_state = 624}, - [3217] = {.lex_state = 624}, - [3218] = {.lex_state = 2}, - [3219] = {.lex_state = 573}, - [3220] = {.lex_state = 573}, - [3221] = {.lex_state = 624}, - [3222] = {.lex_state = 573}, - [3223] = {.lex_state = 624}, - [3224] = {.lex_state = 624}, - [3225] = {.lex_state = 624}, - [3226] = {.lex_state = 624}, - [3227] = {.lex_state = 189}, - [3228] = {.lex_state = 624}, - [3229] = {.lex_state = 183}, - [3230] = {.lex_state = 624}, - [3231] = {.lex_state = 624}, - [3232] = {.lex_state = 624}, - [3233] = {.lex_state = 573}, - [3234] = {.lex_state = 624}, - [3235] = {.lex_state = 67}, - [3236] = {.lex_state = 67}, - [3237] = {.lex_state = 67}, - [3238] = {.lex_state = 573}, - [3239] = {.lex_state = 624}, - [3240] = {.lex_state = 621}, - [3241] = {.lex_state = 624}, - [3242] = {.lex_state = 573}, - [3243] = {.lex_state = 624}, - [3244] = {.lex_state = 573}, - [3245] = {.lex_state = 624}, - [3246] = {.lex_state = 621}, - [3247] = {.lex_state = 71}, - [3248] = {.lex_state = 624}, - [3249] = {.lex_state = 624}, - [3250] = {.lex_state = 624}, - [3251] = {.lex_state = 624}, - [3252] = {.lex_state = 71}, - [3253] = {.lex_state = 2}, - [3254] = {.lex_state = 624}, - [3255] = {.lex_state = 573}, - [3256] = {.lex_state = 621}, - [3257] = {.lex_state = 573}, - [3258] = {.lex_state = 624}, - [3259] = {.lex_state = 624}, - [3260] = {.lex_state = 624}, - [3261] = {.lex_state = 624}, - [3262] = {.lex_state = 69}, - [3263] = {.lex_state = 621}, - [3264] = {.lex_state = 624}, - [3265] = {.lex_state = 624}, - [3266] = {.lex_state = 61}, - [3267] = {.lex_state = 624}, - [3268] = {.lex_state = 621}, - [3269] = {.lex_state = 621}, - [3270] = {.lex_state = 69}, - [3271] = {.lex_state = 624}, - [3272] = {.lex_state = 2}, - [3273] = {.lex_state = 624}, - [3274] = {.lex_state = 624}, - [3275] = {.lex_state = 624}, - [3276] = {.lex_state = 624}, - [3277] = {.lex_state = 573}, - [3278] = {.lex_state = 573}, - [3279] = {.lex_state = 624}, - [3280] = {.lex_state = 624}, - [3281] = {.lex_state = 624}, - [3282] = {.lex_state = 624}, - [3283] = {.lex_state = 621}, - [3284] = {.lex_state = 624}, - [3285] = {.lex_state = 624}, - [3286] = {.lex_state = 624}, - [3287] = {.lex_state = 621}, - [3288] = {.lex_state = 573}, - [3289] = {.lex_state = 573}, - [3290] = {.lex_state = 624}, - [3291] = {.lex_state = 573}, - [3292] = {.lex_state = 573}, - [3293] = {.lex_state = 624}, - [3294] = {.lex_state = 624}, - [3295] = {.lex_state = 67}, - [3296] = {.lex_state = 624}, - [3297] = {.lex_state = 624}, - [3298] = {.lex_state = 624}, + [3176] = {.lex_state = 584}, + [3177] = {.lex_state = 635}, + [3178] = {.lex_state = 635}, + [3179] = {.lex_state = 635}, + [3180] = {.lex_state = 635}, + [3181] = {.lex_state = 632}, + [3182] = {.lex_state = 2}, + [3183] = {.lex_state = 584}, + [3184] = {.lex_state = 635}, + [3185] = {.lex_state = 635}, + [3186] = {.lex_state = 584}, + [3187] = {.lex_state = 640}, + [3188] = {.lex_state = 640}, + [3189] = {.lex_state = 635}, + [3190] = {.lex_state = 49, .external_lex_state = 2}, + [3191] = {.lex_state = 635}, + [3192] = {.lex_state = 583}, + [3193] = {.lex_state = 635}, + [3194] = {.lex_state = 640}, + [3195] = {.lex_state = 583}, + [3196] = {.lex_state = 584}, + [3197] = {.lex_state = 632}, + [3198] = {.lex_state = 2}, + [3199] = {.lex_state = 2}, + [3200] = {.lex_state = 635}, + [3201] = {.lex_state = 635}, + [3202] = {.lex_state = 635}, + [3203] = {.lex_state = 635}, + [3204] = {.lex_state = 2}, + [3205] = {.lex_state = 2}, + [3206] = {.lex_state = 632}, + [3207] = {.lex_state = 635}, + [3208] = {.lex_state = 61}, + [3209] = {.lex_state = 635}, + [3210] = {.lex_state = 635}, + [3211] = {.lex_state = 635}, + [3212] = {.lex_state = 635}, + [3213] = {.lex_state = 635}, + [3214] = {.lex_state = 635}, + [3215] = {.lex_state = 635}, + [3216] = {.lex_state = 632}, + [3217] = {.lex_state = 632}, + [3218] = {.lex_state = 635}, + [3219] = {.lex_state = 635}, + [3220] = {.lex_state = 635}, + [3221] = {.lex_state = 635}, + [3222] = {.lex_state = 635}, + [3223] = {.lex_state = 635}, + [3224] = {.lex_state = 635}, + [3225] = {.lex_state = 632}, + [3226] = {.lex_state = 635}, + [3227] = {.lex_state = 632}, + [3228] = {.lex_state = 635}, + [3229] = {.lex_state = 635}, + [3230] = {.lex_state = 635}, + [3231] = {.lex_state = 635}, + [3232] = {.lex_state = 70}, + [3233] = {.lex_state = 635}, + [3234] = {.lex_state = 635}, + [3235] = {.lex_state = 635}, + [3236] = {.lex_state = 584}, + [3237] = {.lex_state = 635}, + [3238] = {.lex_state = 584}, + [3239] = {.lex_state = 635}, + [3240] = {.lex_state = 584}, + [3241] = {.lex_state = 583}, + [3242] = {.lex_state = 584}, + [3243] = {.lex_state = 183}, + [3244] = {.lex_state = 2}, + [3245] = {.lex_state = 632}, + [3246] = {.lex_state = 67}, + [3247] = {.lex_state = 632}, + [3248] = {.lex_state = 189}, + [3249] = {.lex_state = 584}, + [3250] = {.lex_state = 635}, + [3251] = {.lex_state = 635}, + [3252] = {.lex_state = 635}, + [3253] = {.lex_state = 635}, + [3254] = {.lex_state = 584}, + [3255] = {.lex_state = 584}, + [3256] = {.lex_state = 69}, + [3257] = {.lex_state = 584}, + [3258] = {.lex_state = 67}, + [3259] = {.lex_state = 67}, + [3260] = {.lex_state = 67}, + [3261] = {.lex_state = 635}, + [3262] = {.lex_state = 584}, + [3263] = {.lex_state = 632}, + [3264] = {.lex_state = 584}, + [3265] = {.lex_state = 584}, + [3266] = {.lex_state = 584}, + [3267] = {.lex_state = 635}, + [3268] = {.lex_state = 635}, + [3269] = {.lex_state = 635}, + [3270] = {.lex_state = 635}, + [3271] = {.lex_state = 635}, + [3272] = {.lex_state = 635}, + [3273] = {.lex_state = 635}, + [3274] = {.lex_state = 635}, + [3275] = {.lex_state = 584}, + [3276] = {.lex_state = 635}, + [3277] = {.lex_state = 635}, + [3278] = {.lex_state = 49, .external_lex_state = 2}, + [3279] = {.lex_state = 73}, + [3280] = {.lex_state = 183}, + [3281] = {.lex_state = 61}, + [3282] = {.lex_state = 71}, + [3283] = {.lex_state = 584}, + [3284] = {.lex_state = 71}, + [3285] = {.lex_state = 635}, + [3286] = {.lex_state = 635}, + [3287] = {.lex_state = 635}, + [3288] = {.lex_state = 635}, + [3289] = {.lex_state = 635}, + [3290] = {.lex_state = 2}, + [3291] = {.lex_state = 635}, + [3292] = {.lex_state = 635}, + [3293] = {.lex_state = 635}, + [3294] = {.lex_state = 584}, + [3295] = {.lex_state = 635}, + [3296] = {.lex_state = 2}, + [3297] = {.lex_state = 632}, + [3298] = {.lex_state = 584}, [3299] = {.lex_state = 2}, - [3300] = {.lex_state = 2}, - [3301] = {.lex_state = 2}, - [3302] = {.lex_state = 624}, - [3303] = {.lex_state = 573}, - [3304] = {.lex_state = 621}, - [3305] = {.lex_state = 624}, - [3306] = {.lex_state = 2}, - [3307] = {.lex_state = 2}, - [3308] = {.lex_state = 573}, - [3309] = {.lex_state = 2}, - [3310] = {.lex_state = 187}, - [3311] = {.lex_state = 621}, - [3312] = {.lex_state = 573}, - [3313] = {.lex_state = 2}, - [3314] = {.lex_state = 2}, - [3315] = {.lex_state = 621}, - [3316] = {.lex_state = 2}, - [3317] = {.lex_state = 2}, - [3318] = {.lex_state = 621}, - [3319] = {.lex_state = 2}, - [3320] = {.lex_state = 624}, - [3321] = {.lex_state = 2}, - [3322] = {.lex_state = 629}, - [3323] = {.lex_state = 73}, - [3324] = {.lex_state = 49, .external_lex_state = 2}, - [3325] = {.lex_state = 61}, - [3326] = {.lex_state = 573}, + [3300] = {.lex_state = 632}, + [3301] = {.lex_state = 632}, + [3302] = {.lex_state = 632}, + [3303] = {.lex_state = 635}, + [3304] = {.lex_state = 635}, + [3305] = {.lex_state = 635}, + [3306] = {.lex_state = 635}, + [3307] = {.lex_state = 635}, + [3308] = {.lex_state = 635}, + [3309] = {.lex_state = 635}, + [3310] = {.lex_state = 635}, + [3311] = {.lex_state = 635}, + [3312] = {.lex_state = 632}, + [3313] = {.lex_state = 584}, + [3314] = {.lex_state = 635}, + [3315] = {.lex_state = 635}, + [3316] = {.lex_state = 635}, + [3317] = {.lex_state = 635}, + [3318] = {.lex_state = 635}, + [3319] = {.lex_state = 635}, + [3320] = {.lex_state = 635}, + [3321] = {.lex_state = 635}, + [3322] = {.lex_state = 635}, + [3323] = {.lex_state = 2}, + [3324] = {.lex_state = 2}, + [3325] = {.lex_state = 635}, + [3326] = {.lex_state = 635}, [3327] = {.lex_state = 2}, - [3328] = {.lex_state = 573}, - [3329] = {.lex_state = 573}, - [3330] = {.lex_state = 573}, - [3331] = {.lex_state = 573}, - [3332] = {.lex_state = 573}, - [3333] = {.lex_state = 573}, - [3334] = {.lex_state = 573}, - [3335] = {.lex_state = 573}, - [3336] = {.lex_state = 573}, - [3337] = {.lex_state = 573}, - [3338] = {.lex_state = 573}, - [3339] = {.lex_state = 186}, - [3340] = {.lex_state = 624}, - [3341] = {.lex_state = 624}, - [3342] = {.lex_state = 624}, - [3343] = {.lex_state = 573}, - [3344] = {.lex_state = 624}, - [3345] = {.lex_state = 573}, - [3346] = {.lex_state = 621}, - [3347] = {.lex_state = 2}, - [3348] = {.lex_state = 573}, - [3349] = {.lex_state = 624}, - [3350] = {.lex_state = 624}, - [3351] = {.lex_state = 621}, - [3352] = {.lex_state = 573}, + [3328] = {.lex_state = 2}, + [3329] = {.lex_state = 2}, + [3330] = {.lex_state = 2}, + [3331] = {.lex_state = 2}, + [3332] = {.lex_state = 2}, + [3333] = {.lex_state = 69}, + [3334] = {.lex_state = 635}, + [3335] = {.lex_state = 635}, + [3336] = {.lex_state = 75}, + [3337] = {.lex_state = 584}, + [3338] = {.lex_state = 635}, + [3339] = {.lex_state = 635}, + [3340] = {.lex_state = 635}, + [3341] = {.lex_state = 2}, + [3342] = {.lex_state = 584}, + [3343] = {.lex_state = 635}, + [3344] = {.lex_state = 635}, + [3345] = {.lex_state = 635}, + [3346] = {.lex_state = 635}, + [3347] = {.lex_state = 61}, + [3348] = {.lex_state = 584}, + [3349] = {.lex_state = 635}, + [3350] = {.lex_state = 632}, + [3351] = {.lex_state = 186}, + [3352] = {.lex_state = 2}, [3353] = {.lex_state = 2}, - [3354] = {.lex_state = 186}, - [3355] = {.lex_state = 624}, - [3356] = {.lex_state = 2}, - [3357] = {.lex_state = 573}, - [3358] = {.lex_state = 573}, - [3359] = {.lex_state = 573}, - [3360] = {.lex_state = 75}, - [3361] = {.lex_state = 573}, - [3362] = {.lex_state = 624}, - [3363] = {.lex_state = 2}, - [3364] = {.lex_state = 624}, - [3365] = {.lex_state = 202}, - [3366] = {.lex_state = 2}, - [3367] = {.lex_state = 573}, - [3368] = {.lex_state = 573}, - [3369] = {.lex_state = 2}, - [3370] = {.lex_state = 573}, - [3371] = {.lex_state = 2}, - [3372] = {.lex_state = 573}, - [3373] = {.lex_state = 573}, - [3374] = {.lex_state = 2}, - [3375] = {.lex_state = 2}, - [3376] = {.lex_state = 185}, - [3377] = {.lex_state = 629}, - [3378] = {.lex_state = 629}, - [3379] = {.lex_state = 573}, - [3380] = {.lex_state = 573}, - [3381] = {.lex_state = 573}, - [3382] = {.lex_state = 2}, - [3383] = {.lex_state = 573}, - [3384] = {.lex_state = 194}, - [3385] = {.lex_state = 2}, - [3386] = {.lex_state = 573}, - [3387] = {.lex_state = 573}, + [3354] = {.lex_state = 632}, + [3355] = {.lex_state = 584}, + [3356] = {.lex_state = 584}, + [3357] = {.lex_state = 186}, + [3358] = {.lex_state = 635}, + [3359] = {.lex_state = 635}, + [3360] = {.lex_state = 632}, + [3361] = {.lex_state = 632}, + [3362] = {.lex_state = 632}, + [3363] = {.lex_state = 584}, + [3364] = {.lex_state = 2}, + [3365] = {.lex_state = 2}, + [3366] = {.lex_state = 584}, + [3367] = {.lex_state = 187}, + [3368] = {.lex_state = 584}, + [3369] = {.lex_state = 632}, + [3370] = {.lex_state = 635}, + [3371] = {.lex_state = 584}, + [3372] = {.lex_state = 640}, + [3373] = {.lex_state = 584}, + [3374] = {.lex_state = 584}, + [3375] = {.lex_state = 584}, + [3376] = {.lex_state = 584}, + [3377] = {.lex_state = 584}, + [3378] = {.lex_state = 584}, + [3379] = {.lex_state = 584}, + [3380] = {.lex_state = 584}, + [3381] = {.lex_state = 584}, + [3382] = {.lex_state = 584}, + [3383] = {.lex_state = 584}, + [3384] = {.lex_state = 584}, + [3385] = {.lex_state = 635}, + [3386] = {.lex_state = 635}, + [3387] = {.lex_state = 584}, [3388] = {.lex_state = 2}, [3389] = {.lex_state = 2}, - [3390] = {.lex_state = 2}, - [3391] = {.lex_state = 2}, - [3392] = {.lex_state = 573}, - [3393] = {.lex_state = 2}, - [3394] = {.lex_state = 573}, + [3390] = {.lex_state = 635}, + [3391] = {.lex_state = 584}, + [3392] = {.lex_state = 584}, + [3393] = {.lex_state = 584}, + [3394] = {.lex_state = 635}, [3395] = {.lex_state = 2}, - [3396] = {.lex_state = 2}, + [3396] = {.lex_state = 584}, [3397] = {.lex_state = 2}, - [3398] = {.lex_state = 2}, - [3399] = {.lex_state = 2}, - [3400] = {.lex_state = 2}, - [3401] = {.lex_state = 573}, - [3402] = {.lex_state = 183}, - [3403] = {.lex_state = 573}, - [3404] = {.lex_state = 573}, - [3405] = {.lex_state = 573}, - [3406] = {.lex_state = 2128}, + [3398] = {.lex_state = 584}, + [3399] = {.lex_state = 584}, + [3400] = {.lex_state = 584}, + [3401] = {.lex_state = 584}, + [3402] = {.lex_state = 584}, + [3403] = {.lex_state = 584}, + [3404] = {.lex_state = 584}, + [3405] = {.lex_state = 584}, + [3406] = {.lex_state = 2}, [3407] = {.lex_state = 2}, - [3408] = {.lex_state = 573}, - [3409] = {.lex_state = 189}, - [3410] = {.lex_state = 2}, - [3411] = {.lex_state = 573}, - [3412] = {.lex_state = 629}, - [3413] = {.lex_state = 2}, - [3414] = {.lex_state = 93}, - [3415] = {.lex_state = 573}, - [3416] = {.lex_state = 185}, - [3417] = {.lex_state = 573}, - [3418] = {.lex_state = 182}, - [3419] = {.lex_state = 97}, - [3420] = {.lex_state = 573}, + [3408] = {.lex_state = 584}, + [3409] = {.lex_state = 584}, + [3410] = {.lex_state = 184}, + [3411] = {.lex_state = 584}, + [3412] = {.lex_state = 584}, + [3413] = {.lex_state = 584}, + [3414] = {.lex_state = 584}, + [3415] = {.lex_state = 184}, + [3416] = {.lex_state = 584}, + [3417] = {.lex_state = 584}, + [3418] = {.lex_state = 584}, + [3419] = {.lex_state = 584}, + [3420] = {.lex_state = 584}, [3421] = {.lex_state = 2}, - [3422] = {.lex_state = 573}, - [3423] = {.lex_state = 2}, - [3424] = {.lex_state = 79}, - [3425] = {.lex_state = 2}, - [3426] = {.lex_state = 2}, - [3427] = {.lex_state = 2}, - [3428] = {.lex_state = 573}, - [3429] = {.lex_state = 573}, - [3430] = {.lex_state = 81}, - [3431] = {.lex_state = 184}, + [3422] = {.lex_state = 584}, + [3423] = {.lex_state = 584}, + [3424] = {.lex_state = 584}, + [3425] = {.lex_state = 584}, + [3426] = {.lex_state = 584}, + [3427] = {.lex_state = 584}, + [3428] = {.lex_state = 584}, + [3429] = {.lex_state = 584}, + [3430] = {.lex_state = 584}, + [3431] = {.lex_state = 584}, [3432] = {.lex_state = 2}, - [3433] = {.lex_state = 2}, - [3434] = {.lex_state = 2}, - [3435] = {.lex_state = 573}, - [3436] = {.lex_state = 573}, - [3437] = {.lex_state = 2}, - [3438] = {.lex_state = 573}, - [3439] = {.lex_state = 573}, - [3440] = {.lex_state = 2}, - [3441] = {.lex_state = 573}, - [3442] = {.lex_state = 2}, - [3443] = {.lex_state = 573}, - [3444] = {.lex_state = 573}, + [3433] = {.lex_state = 185}, + [3434] = {.lex_state = 584}, + [3435] = {.lex_state = 584}, + [3436] = {.lex_state = 584}, + [3437] = {.lex_state = 584}, + [3438] = {.lex_state = 584}, + [3439] = {.lex_state = 584}, + [3440] = {.lex_state = 584}, + [3441] = {.lex_state = 584}, + [3442] = {.lex_state = 584}, + [3443] = {.lex_state = 584}, + [3444] = {.lex_state = 640}, [3445] = {.lex_state = 2}, - [3446] = {.lex_state = 573}, - [3447] = {.lex_state = 2}, - [3448] = {.lex_state = 2}, - [3449] = {.lex_state = 573}, - [3450] = {.lex_state = 573}, - [3451] = {.lex_state = 189}, - [3452] = {.lex_state = 189}, - [3453] = {.lex_state = 189}, - [3454] = {.lex_state = 189}, - [3455] = {.lex_state = 189}, - [3456] = {.lex_state = 189}, - [3457] = {.lex_state = 184}, - [3458] = {.lex_state = 573}, - [3459] = {.lex_state = 621}, - [3460] = {.lex_state = 573}, - [3461] = {.lex_state = 195}, - [3462] = {.lex_state = 189}, - [3463] = {.lex_state = 573}, - [3464] = {.lex_state = 573}, - [3465] = {.lex_state = 573}, - [3466] = {.lex_state = 573}, - [3467] = {.lex_state = 573}, - [3468] = {.lex_state = 573}, - [3469] = {.lex_state = 573}, - [3470] = {.lex_state = 573}, - [3471] = {.lex_state = 573}, - [3472] = {.lex_state = 573}, - [3473] = {.lex_state = 573}, - [3474] = {.lex_state = 573}, - [3475] = {.lex_state = 573}, - [3476] = {.lex_state = 2}, - [3477] = {.lex_state = 573}, + [3446] = {.lex_state = 584}, + [3447] = {.lex_state = 640}, + [3448] = {.lex_state = 584}, + [3449] = {.lex_state = 2157}, + [3450] = {.lex_state = 584}, + [3451] = {.lex_state = 584}, + [3452] = {.lex_state = 584}, + [3453] = {.lex_state = 182}, + [3454] = {.lex_state = 584}, + [3455] = {.lex_state = 584}, + [3456] = {.lex_state = 183}, + [3457] = {.lex_state = 584}, + [3458] = {.lex_state = 584}, + [3459] = {.lex_state = 2157}, + [3460] = {.lex_state = 584}, + [3461] = {.lex_state = 584}, + [3462] = {.lex_state = 584}, + [3463] = {.lex_state = 584}, + [3464] = {.lex_state = 584}, + [3465] = {.lex_state = 584}, + [3466] = {.lex_state = 584}, + [3467] = {.lex_state = 584}, + [3468] = {.lex_state = 584}, + [3469] = {.lex_state = 584}, + [3470] = {.lex_state = 584}, + [3471] = {.lex_state = 584}, + [3472] = {.lex_state = 640}, + [3473] = {.lex_state = 584}, + [3474] = {.lex_state = 584}, + [3475] = {.lex_state = 2}, + [3476] = {.lex_state = 584}, + [3477] = {.lex_state = 584}, [3478] = {.lex_state = 2}, - [3479] = {.lex_state = 2}, - [3480] = {.lex_state = 2}, - [3481] = {.lex_state = 573}, - [3482] = {.lex_state = 573}, - [3483] = {.lex_state = 573}, - [3484] = {.lex_state = 573}, - [3485] = {.lex_state = 2}, - [3486] = {.lex_state = 573}, - [3487] = {.lex_state = 573}, - [3488] = {.lex_state = 573}, - [3489] = {.lex_state = 573}, - [3490] = {.lex_state = 573}, - [3491] = {.lex_state = 573}, - [3492] = {.lex_state = 2128}, - [3493] = {.lex_state = 573}, - [3494] = {.lex_state = 573}, - [3495] = {.lex_state = 573}, - [3496] = {.lex_state = 203}, - [3497] = {.lex_state = 573}, - [3498] = {.lex_state = 629}, - [3499] = {.lex_state = 573}, - [3500] = {.lex_state = 621}, - [3501] = {.lex_state = 573}, - [3502] = {.lex_state = 573}, - [3503] = {.lex_state = 573}, - [3504] = {.lex_state = 573}, - [3505] = {.lex_state = 573}, - [3506] = {.lex_state = 573}, - [3507] = {.lex_state = 573}, - [3508] = {.lex_state = 129}, - [3509] = {.lex_state = 123}, - [3510] = {.lex_state = 573}, - [3511] = {.lex_state = 2}, - [3512] = {.lex_state = 573}, - [3513] = {.lex_state = 573}, - [3514] = {.lex_state = 573}, - [3515] = {.lex_state = 573}, - [3516] = {.lex_state = 573}, - [3517] = {.lex_state = 573}, - [3518] = {.lex_state = 2}, - [3519] = {.lex_state = 577}, - [3520] = {.lex_state = 123}, - [3521] = {.lex_state = 82}, - [3522] = {.lex_state = 2}, - [3523] = {.lex_state = 99}, - [3524] = {.lex_state = 189}, - [3525] = {.lex_state = 608}, + [3479] = {.lex_state = 584}, + [3480] = {.lex_state = 584}, + [3481] = {.lex_state = 189}, + [3482] = {.lex_state = 189}, + [3483] = {.lex_state = 189}, + [3484] = {.lex_state = 189}, + [3485] = {.lex_state = 584}, + [3486] = {.lex_state = 584}, + [3487] = {.lex_state = 2}, + [3488] = {.lex_state = 584}, + [3489] = {.lex_state = 584}, + [3490] = {.lex_state = 2}, + [3491] = {.lex_state = 2}, + [3492] = {.lex_state = 2}, + [3493] = {.lex_state = 2}, + [3494] = {.lex_state = 584}, + [3495] = {.lex_state = 93}, + [3496] = {.lex_state = 584}, + [3497] = {.lex_state = 97}, + [3498] = {.lex_state = 2}, + [3499] = {.lex_state = 2}, + [3500] = {.lex_state = 189}, + [3501] = {.lex_state = 584}, + [3502] = {.lex_state = 79}, + [3503] = {.lex_state = 129}, + [3504] = {.lex_state = 584}, + [3505] = {.lex_state = 81}, + [3506] = {.lex_state = 584}, + [3507] = {.lex_state = 584}, + [3508] = {.lex_state = 2}, + [3509] = {.lex_state = 584}, + [3510] = {.lex_state = 584}, + [3511] = {.lex_state = 584}, + [3512] = {.lex_state = 584}, + [3513] = {.lex_state = 584}, + [3514] = {.lex_state = 584}, + [3515] = {.lex_state = 189}, + [3516] = {.lex_state = 189}, + [3517] = {.lex_state = 189}, + [3518] = {.lex_state = 584}, + [3519] = {.lex_state = 584}, + [3520] = {.lex_state = 2}, + [3521] = {.lex_state = 584}, + [3522] = {.lex_state = 584}, + [3523] = {.lex_state = 2}, + [3524] = {.lex_state = 2}, + [3525] = {.lex_state = 2}, [3526] = {.lex_state = 2}, - [3527] = {.lex_state = 98}, - [3528] = {.lex_state = 83}, - [3529] = {.lex_state = 82}, - [3530] = {.lex_state = 608}, - [3531] = {.lex_state = 123}, + [3527] = {.lex_state = 584}, + [3528] = {.lex_state = 584}, + [3529] = {.lex_state = 2}, + [3530] = {.lex_state = 194}, + [3531] = {.lex_state = 2}, [3532] = {.lex_state = 2}, - [3533] = {.lex_state = 99}, - [3534] = {.lex_state = 204}, - [3535] = {.lex_state = 129}, - [3536] = {.lex_state = 608}, - [3537] = {.lex_state = 573}, - [3538] = {.lex_state = 123}, + [3533] = {.lex_state = 2}, + [3534] = {.lex_state = 2}, + [3535] = {.lex_state = 2}, + [3536] = {.lex_state = 202}, + [3537] = {.lex_state = 2}, + [3538] = {.lex_state = 2}, [3539] = {.lex_state = 2}, - [3540] = {.lex_state = 123}, + [3540] = {.lex_state = 2}, [3541] = {.lex_state = 2}, - [3542] = {.lex_state = 188}, - [3543] = {.lex_state = 205}, - [3544] = {.lex_state = 207}, - [3545] = {.lex_state = 196}, - [3546] = {.lex_state = 573}, - [3547] = {.lex_state = 94}, - [3548] = {.lex_state = 218}, - [3549] = {.lex_state = 233}, - [3550] = {.lex_state = 129}, - [3551] = {.lex_state = 608}, - [3552] = {.lex_state = 188}, - [3553] = {.lex_state = 189}, - [3554] = {.lex_state = 234}, - [3555] = {.lex_state = 129}, - [3556] = {.lex_state = 608}, - [3557] = {.lex_state = 129}, - [3558] = {.lex_state = 204}, - [3559] = {.lex_state = 205}, - [3560] = {.lex_state = 2}, + [3542] = {.lex_state = 2}, + [3543] = {.lex_state = 2}, + [3544] = {.lex_state = 2}, + [3545] = {.lex_state = 185}, + [3546] = {.lex_state = 632}, + [3547] = {.lex_state = 584}, + [3548] = {.lex_state = 584}, + [3549] = {.lex_state = 584}, + [3550] = {.lex_state = 584}, + [3551] = {.lex_state = 584}, + [3552] = {.lex_state = 584}, + [3553] = {.lex_state = 584}, + [3554] = {.lex_state = 584}, + [3555] = {.lex_state = 584}, + [3556] = {.lex_state = 584}, + [3557] = {.lex_state = 584}, + [3558] = {.lex_state = 584}, + [3559] = {.lex_state = 584}, + [3560] = {.lex_state = 584}, [3561] = {.lex_state = 2}, - [3562] = {.lex_state = 129}, - [3563] = {.lex_state = 129}, + [3562] = {.lex_state = 123}, + [3563] = {.lex_state = 195}, [3564] = {.lex_state = 2}, - [3565] = {.lex_state = 2070}, - [3566] = {.lex_state = 2070}, - [3567] = {.lex_state = 2070}, - [3568] = {.lex_state = 1726, .external_lex_state = 2}, - [3569] = {.lex_state = 1726, .external_lex_state = 2}, - [3570] = {.lex_state = 95}, - [3571] = {.lex_state = 83}, - [3572] = {.lex_state = 2070}, - [3573] = {.lex_state = 2070}, - [3574] = {.lex_state = 1726, .external_lex_state = 2}, - [3575] = {.lex_state = 206}, - [3576] = {.lex_state = 207}, - [3577] = {.lex_state = 84}, - [3578] = {.lex_state = 2070}, - [3579] = {.lex_state = 2070}, - [3580] = {.lex_state = 1726, .external_lex_state = 2}, - [3581] = {.lex_state = 83}, - [3582] = {.lex_state = 2174}, - [3583] = {.lex_state = 2070}, - [3584] = {.lex_state = 2070}, - [3585] = {.lex_state = 1726, .external_lex_state = 2}, - [3586] = {.lex_state = 83}, - [3587] = {.lex_state = 2070}, - [3588] = {.lex_state = 2070}, - [3589] = {.lex_state = 1726, .external_lex_state = 2}, - [3590] = {.lex_state = 207}, - [3591] = {.lex_state = 1726, .external_lex_state = 2}, - [3592] = {.lex_state = 2070}, - [3593] = {.lex_state = 2070}, - [3594] = {.lex_state = 1726, .external_lex_state = 2}, - [3595] = {.lex_state = 2070}, - [3596] = {.lex_state = 2070}, - [3597] = {.lex_state = 2070}, - [3598] = {.lex_state = 1726, .external_lex_state = 2}, - [3599] = {.lex_state = 2070}, - [3600] = {.lex_state = 2070}, - [3601] = {.lex_state = 1726, .external_lex_state = 2}, - [3602] = {.lex_state = 2070}, - [3603] = {.lex_state = 1726, .external_lex_state = 2}, - [3604] = {.lex_state = 2070}, - [3605] = {.lex_state = 2070}, - [3606] = {.lex_state = 1726, .external_lex_state = 2}, - [3607] = {.lex_state = 2070}, - [3608] = {.lex_state = 2070}, - [3609] = {.lex_state = 1726, .external_lex_state = 2}, - [3610] = {.lex_state = 1726, .external_lex_state = 2}, - [3611] = {.lex_state = 1726, .external_lex_state = 2}, - [3612] = {.lex_state = 1726, .external_lex_state = 2}, - [3613] = {.lex_state = 207}, - [3614] = {.lex_state = 1726, .external_lex_state = 2}, - [3615] = {.lex_state = 1726, .external_lex_state = 2}, - [3616] = {.lex_state = 1726, .external_lex_state = 2}, - [3617] = {.lex_state = 1726, .external_lex_state = 2}, - [3618] = {.lex_state = 577}, - [3619] = {.lex_state = 206}, - [3620] = {.lex_state = 2174}, - [3621] = {.lex_state = 206}, - [3622] = {.lex_state = 2174}, - [3623] = {.lex_state = 100}, - [3624] = {.lex_state = 197}, - [3625] = {.lex_state = 129}, - [3626] = {.lex_state = 2070}, - [3627] = {.lex_state = 577}, - [3628] = {.lex_state = 219}, - [3629] = {.lex_state = 577}, - [3630] = {.lex_state = 80}, - [3631] = {.lex_state = 577}, - [3632] = {.lex_state = 2070}, - [3633] = {.lex_state = 209}, - [3634] = {.lex_state = 2129}, - [3635] = {.lex_state = 2070}, - [3636] = {.lex_state = 101}, - [3637] = {.lex_state = 2129}, - [3638] = {.lex_state = 198}, - [3639] = {.lex_state = 219}, - [3640] = {.lex_state = 220}, - [3641] = {.lex_state = 2070}, - [3642] = {.lex_state = 2070}, - [3643] = {.lex_state = 2}, - [3644] = {.lex_state = 1726, .external_lex_state = 2}, - [3645] = {.lex_state = 101}, - [3646] = {.lex_state = 208}, - [3647] = {.lex_state = 2174}, - [3648] = {.lex_state = 2129}, - [3649] = {.lex_state = 206}, - [3650] = {.lex_state = 2129}, - [3651] = {.lex_state = 101}, - [3652] = {.lex_state = 235}, - [3653] = {.lex_state = 101}, - [3654] = {.lex_state = 100}, - [3655] = {.lex_state = 103}, - [3656] = {.lex_state = 235}, - [3657] = {.lex_state = 1726, .external_lex_state = 2}, - [3658] = {.lex_state = 96}, - [3659] = {.lex_state = 577}, - [3660] = {.lex_state = 577}, - [3661] = {.lex_state = 210}, - [3662] = {.lex_state = 577}, - [3663] = {.lex_state = 577}, - [3664] = {.lex_state = 577}, - [3665] = {.lex_state = 130}, - [3666] = {.lex_state = 577}, - [3667] = {.lex_state = 577}, - [3668] = {.lex_state = 577}, - [3669] = {.lex_state = 577}, - [3670] = {.lex_state = 577}, - [3671] = {.lex_state = 212}, - [3672] = {.lex_state = 130}, - [3673] = {.lex_state = 577}, - [3674] = {.lex_state = 577}, - [3675] = {.lex_state = 577}, - [3676] = {.lex_state = 85}, - [3677] = {.lex_state = 577}, - [3678] = {.lex_state = 577}, - [3679] = {.lex_state = 577}, - [3680] = {.lex_state = 577}, - [3681] = {.lex_state = 577}, - [3682] = {.lex_state = 130}, - [3683] = {.lex_state = 577}, - [3684] = {.lex_state = 91}, - [3685] = {.lex_state = 210}, - [3686] = {.lex_state = 577}, - [3687] = {.lex_state = 105}, - [3688] = {.lex_state = 577}, - [3689] = {.lex_state = 577}, - [3690] = {.lex_state = 577}, - [3691] = {.lex_state = 577}, - [3692] = {.lex_state = 102}, - [3693] = {.lex_state = 577}, - [3694] = {.lex_state = 91}, - [3695] = {.lex_state = 577}, - [3696] = {.lex_state = 577}, - [3697] = {.lex_state = 577}, - [3698] = {.lex_state = 577}, - [3699] = {.lex_state = 220}, - [3700] = {.lex_state = 83}, - [3701] = {.lex_state = 577}, - [3702] = {.lex_state = 577}, - [3703] = {.lex_state = 102}, - [3704] = {.lex_state = 577}, - [3705] = {.lex_state = 241}, - [3706] = {.lex_state = 104}, - [3707] = {.lex_state = 221}, - [3708] = {.lex_state = 91}, - [3709] = {.lex_state = 220}, - [3710] = {.lex_state = 199}, - [3711] = {.lex_state = 577}, - [3712] = {.lex_state = 220}, - [3713] = {.lex_state = 625}, - [3714] = {.lex_state = 236}, - [3715] = {.lex_state = 102}, - [3716] = {.lex_state = 577}, - [3717] = {.lex_state = 85}, - [3718] = {.lex_state = 577}, - [3719] = {.lex_state = 625}, - [3720] = {.lex_state = 236}, - [3721] = {.lex_state = 577}, - [3722] = {.lex_state = 577}, - [3723] = {.lex_state = 105}, - [3724] = {.lex_state = 577}, - [3725] = {.lex_state = 102}, - [3726] = {.lex_state = 130}, - [3727] = {.lex_state = 207}, - [3728] = {.lex_state = 577}, - [3729] = {.lex_state = 212}, - [3730] = {.lex_state = 130}, - [3731] = {.lex_state = 130}, - [3732] = {.lex_state = 577}, - [3733] = {.lex_state = 577}, - [3734] = {.lex_state = 236}, - [3735] = {.lex_state = 577}, - [3736] = {.lex_state = 247}, - [3737] = {.lex_state = 236}, - [3738] = {.lex_state = 577}, - [3739] = {.lex_state = 242}, - [3740] = {.lex_state = 106}, - [3741] = {.lex_state = 574}, - [3742] = {.lex_state = 213}, - [3743] = {.lex_state = 211}, - [3744] = {.lex_state = 107}, - [3745] = {.lex_state = 106}, - [3746] = {.lex_state = 245}, - [3747] = {.lex_state = 245}, - [3748] = {.lex_state = 222}, - [3749] = {.lex_state = 245}, - [3750] = {.lex_state = 248}, - [3751] = {.lex_state = 86}, - [3752] = {.lex_state = 213}, - [3753] = {.lex_state = 128}, - [3754] = {.lex_state = 245}, - [3755] = {.lex_state = 245}, - [3756] = {.lex_state = 86}, - [3757] = {.lex_state = 106}, - [3758] = {.lex_state = 130}, - [3759] = {.lex_state = 213}, - [3760] = {.lex_state = 86}, - [3761] = {.lex_state = 2}, - [3762] = {.lex_state = 245}, - [3763] = {.lex_state = 259}, - [3764] = {.lex_state = 245}, - [3765] = {.lex_state = 222}, - [3766] = {.lex_state = 574}, - [3767] = {.lex_state = 107}, - [3768] = {.lex_state = 213}, - [3769] = {.lex_state = 211}, - [3770] = {.lex_state = 211}, - [3771] = {.lex_state = 106}, - [3772] = {.lex_state = 245}, - [3773] = {.lex_state = 128}, - [3774] = {.lex_state = 213}, - [3775] = {.lex_state = 245}, - [3776] = {.lex_state = 245}, - [3777] = {.lex_state = 248}, - [3778] = {.lex_state = 245}, - [3779] = {.lex_state = 277}, - [3780] = {.lex_state = 86}, - [3781] = {.lex_state = 130}, - [3782] = {.lex_state = 106}, - [3783] = {.lex_state = 86}, - [3784] = {.lex_state = 245}, - [3785] = {.lex_state = 245}, - [3786] = {.lex_state = 123}, - [3787] = {.lex_state = 47}, - [3788] = {.lex_state = 223}, - [3789] = {.lex_state = 47}, - [3790] = {.lex_state = 277}, - [3791] = {.lex_state = 88}, - [3792] = {.lex_state = 202}, - [3793] = {.lex_state = 130}, - [3794] = {.lex_state = 47}, - [3795] = {.lex_state = 47}, - [3796] = {.lex_state = 116}, - [3797] = {.lex_state = 47}, - [3798] = {.lex_state = 123}, - [3799] = {.lex_state = 33}, - [3800] = {.lex_state = 246}, - [3801] = {.lex_state = 128}, - [3802] = {.lex_state = 33}, - [3803] = {.lex_state = 47}, - [3804] = {.lex_state = 256}, - [3805] = {.lex_state = 223}, - [3806] = {.lex_state = 123}, - [3807] = {.lex_state = 249}, - [3808] = {.lex_state = 574}, - [3809] = {.lex_state = 91}, - [3810] = {.lex_state = 123}, - [3811] = {.lex_state = 217}, - [3812] = {.lex_state = 33}, - [3813] = {.lex_state = 130}, - [3814] = {.lex_state = 214}, - [3815] = {.lex_state = 33}, - [3816] = {.lex_state = 211}, - [3817] = {.lex_state = 108}, - [3818] = {.lex_state = 47}, - [3819] = {.lex_state = 91}, - [3820] = {.lex_state = 47}, - [3821] = {.lex_state = 223}, - [3822] = {.lex_state = 123}, - [3823] = {.lex_state = 47}, - [3824] = {.lex_state = 33}, - [3825] = {.lex_state = 574}, - [3826] = {.lex_state = 47}, - [3827] = {.lex_state = 123}, - [3828] = {.lex_state = 277}, - [3829] = {.lex_state = 123}, - [3830] = {.lex_state = 123}, - [3831] = {.lex_state = 47}, - [3832] = {.lex_state = 91}, - [3833] = {.lex_state = 47}, - [3834] = {.lex_state = 109}, - [3835] = {.lex_state = 260}, - [3836] = {.lex_state = 108}, - [3837] = {.lex_state = 33}, - [3838] = {.lex_state = 223}, - [3839] = {.lex_state = 250}, - [3840] = {.lex_state = 130}, - [3841] = {.lex_state = 33}, - [3842] = {.lex_state = 33}, - [3843] = {.lex_state = 130}, - [3844] = {.lex_state = 123}, - [3845] = {.lex_state = 276}, - [3846] = {.lex_state = 47}, - [3847] = {.lex_state = 87}, - [3848] = {.lex_state = 108}, - [3849] = {.lex_state = 33}, - [3850] = {.lex_state = 123}, - [3851] = {.lex_state = 130}, - [3852] = {.lex_state = 47}, - [3853] = {.lex_state = 223}, + [3565] = {.lex_state = 640}, + [3566] = {.lex_state = 203}, + [3567] = {.lex_state = 632}, + [3568] = {.lex_state = 584}, + [3569] = {.lex_state = 584}, + [3570] = {.lex_state = 584}, + [3571] = {.lex_state = 584}, + [3572] = {.lex_state = 584}, + [3573] = {.lex_state = 584}, + [3574] = {.lex_state = 2}, + [3575] = {.lex_state = 584}, + [3576] = {.lex_state = 2}, + [3577] = {.lex_state = 584}, + [3578] = {.lex_state = 584}, + [3579] = {.lex_state = 2}, + [3580] = {.lex_state = 2}, + [3581] = {.lex_state = 2}, + [3582] = {.lex_state = 584}, + [3583] = {.lex_state = 2}, + [3584] = {.lex_state = 619}, + [3585] = {.lex_state = 189}, + [3586] = {.lex_state = 2}, + [3587] = {.lex_state = 2}, + [3588] = {.lex_state = 94}, + [3589] = {.lex_state = 99}, + [3590] = {.lex_state = 123}, + [3591] = {.lex_state = 98}, + [3592] = {.lex_state = 584}, + [3593] = {.lex_state = 99}, + [3594] = {.lex_state = 123}, + [3595] = {.lex_state = 82}, + [3596] = {.lex_state = 83}, + [3597] = {.lex_state = 207}, + [3598] = {.lex_state = 82}, + [3599] = {.lex_state = 188}, + [3600] = {.lex_state = 196}, + [3601] = {.lex_state = 218}, + [3602] = {.lex_state = 588}, + [3603] = {.lex_state = 619}, + [3604] = {.lex_state = 189}, + [3605] = {.lex_state = 619}, + [3606] = {.lex_state = 2}, + [3607] = {.lex_state = 2}, + [3608] = {.lex_state = 2}, + [3609] = {.lex_state = 2}, + [3610] = {.lex_state = 204}, + [3611] = {.lex_state = 233}, + [3612] = {.lex_state = 129}, + [3613] = {.lex_state = 619}, + [3614] = {.lex_state = 234}, + [3615] = {.lex_state = 129}, + [3616] = {.lex_state = 129}, + [3617] = {.lex_state = 129}, + [3618] = {.lex_state = 129}, + [3619] = {.lex_state = 129}, + [3620] = {.lex_state = 123}, + [3621] = {.lex_state = 123}, + [3622] = {.lex_state = 619}, + [3623] = {.lex_state = 205}, + [3624] = {.lex_state = 205}, + [3625] = {.lex_state = 584}, + [3626] = {.lex_state = 188}, + [3627] = {.lex_state = 2}, + [3628] = {.lex_state = 204}, + [3629] = {.lex_state = 100}, + [3630] = {.lex_state = 100}, + [3631] = {.lex_state = 101}, + [3632] = {.lex_state = 2203}, + [3633] = {.lex_state = 101}, + [3634] = {.lex_state = 2203}, + [3635] = {.lex_state = 588}, + [3636] = {.lex_state = 198}, + [3637] = {.lex_state = 129}, + [3638] = {.lex_state = 101}, + [3639] = {.lex_state = 95}, + [3640] = {.lex_state = 2099}, + [3641] = {.lex_state = 83}, + [3642] = {.lex_state = 2099}, + [3643] = {.lex_state = 2099}, + [3644] = {.lex_state = 2099}, + [3645] = {.lex_state = 588}, + [3646] = {.lex_state = 83}, + [3647] = {.lex_state = 2}, + [3648] = {.lex_state = 2158}, + [3649] = {.lex_state = 2158}, + [3650] = {.lex_state = 83}, + [3651] = {.lex_state = 2203}, + [3652] = {.lex_state = 197}, + [3653] = {.lex_state = 206}, + [3654] = {.lex_state = 2203}, + [3655] = {.lex_state = 220}, + [3656] = {.lex_state = 219}, + [3657] = {.lex_state = 80}, + [3658] = {.lex_state = 588}, + [3659] = {.lex_state = 1755, .external_lex_state = 2}, + [3660] = {.lex_state = 219}, + [3661] = {.lex_state = 206}, + [3662] = {.lex_state = 2099}, + [3663] = {.lex_state = 2099}, + [3664] = {.lex_state = 1755, .external_lex_state = 2}, + [3665] = {.lex_state = 2099}, + [3666] = {.lex_state = 2099}, + [3667] = {.lex_state = 2099}, + [3668] = {.lex_state = 2099}, + [3669] = {.lex_state = 1755, .external_lex_state = 2}, + [3670] = {.lex_state = 2099}, + [3671] = {.lex_state = 2099}, + [3672] = {.lex_state = 1755, .external_lex_state = 2}, + [3673] = {.lex_state = 208}, + [3674] = {.lex_state = 206}, + [3675] = {.lex_state = 2099}, + [3676] = {.lex_state = 2099}, + [3677] = {.lex_state = 1755, .external_lex_state = 2}, + [3678] = {.lex_state = 235}, + [3679] = {.lex_state = 2099}, + [3680] = {.lex_state = 2099}, + [3681] = {.lex_state = 1755, .external_lex_state = 2}, + [3682] = {.lex_state = 2099}, + [3683] = {.lex_state = 2099}, + [3684] = {.lex_state = 1755, .external_lex_state = 2}, + [3685] = {.lex_state = 2099}, + [3686] = {.lex_state = 2099}, + [3687] = {.lex_state = 1755, .external_lex_state = 2}, + [3688] = {.lex_state = 2099}, + [3689] = {.lex_state = 2099}, + [3690] = {.lex_state = 1755, .external_lex_state = 2}, + [3691] = {.lex_state = 2099}, + [3692] = {.lex_state = 2099}, + [3693] = {.lex_state = 1755, .external_lex_state = 2}, + [3694] = {.lex_state = 2099}, + [3695] = {.lex_state = 2099}, + [3696] = {.lex_state = 1755, .external_lex_state = 2}, + [3697] = {.lex_state = 2099}, + [3698] = {.lex_state = 2099}, + [3699] = {.lex_state = 1755, .external_lex_state = 2}, + [3700] = {.lex_state = 1755, .external_lex_state = 2}, + [3701] = {.lex_state = 1755, .external_lex_state = 2}, + [3702] = {.lex_state = 1755, .external_lex_state = 2}, + [3703] = {.lex_state = 1755, .external_lex_state = 2}, + [3704] = {.lex_state = 1755, .external_lex_state = 2}, + [3705] = {.lex_state = 1755, .external_lex_state = 2}, + [3706] = {.lex_state = 1755, .external_lex_state = 2}, + [3707] = {.lex_state = 1755, .external_lex_state = 2}, + [3708] = {.lex_state = 2158}, + [3709] = {.lex_state = 206}, + [3710] = {.lex_state = 2158}, + [3711] = {.lex_state = 1755, .external_lex_state = 2}, + [3712] = {.lex_state = 103}, + [3713] = {.lex_state = 235}, + [3714] = {.lex_state = 84}, + [3715] = {.lex_state = 207}, + [3716] = {.lex_state = 209}, + [3717] = {.lex_state = 101}, + [3718] = {.lex_state = 207}, + [3719] = {.lex_state = 207}, + [3720] = {.lex_state = 1755, .external_lex_state = 2}, + [3721] = {.lex_state = 588}, + [3722] = {.lex_state = 588}, + [3723] = {.lex_state = 588}, + [3724] = {.lex_state = 236}, + [3725] = {.lex_state = 130}, + [3726] = {.lex_state = 588}, + [3727] = {.lex_state = 588}, + [3728] = {.lex_state = 588}, + [3729] = {.lex_state = 130}, + [3730] = {.lex_state = 220}, + [3731] = {.lex_state = 588}, + [3732] = {.lex_state = 588}, + [3733] = {.lex_state = 130}, + [3734] = {.lex_state = 588}, + [3735] = {.lex_state = 588}, + [3736] = {.lex_state = 588}, + [3737] = {.lex_state = 83}, + [3738] = {.lex_state = 102}, + [3739] = {.lex_state = 105}, + [3740] = {.lex_state = 588}, + [3741] = {.lex_state = 130}, + [3742] = {.lex_state = 588}, + [3743] = {.lex_state = 130}, + [3744] = {.lex_state = 130}, + [3745] = {.lex_state = 105}, + [3746] = {.lex_state = 588}, + [3747] = {.lex_state = 588}, + [3748] = {.lex_state = 241}, + [3749] = {.lex_state = 588}, + [3750] = {.lex_state = 588}, + [3751] = {.lex_state = 588}, + [3752] = {.lex_state = 588}, + [3753] = {.lex_state = 588}, + [3754] = {.lex_state = 588}, + [3755] = {.lex_state = 636}, + [3756] = {.lex_state = 96}, + [3757] = {.lex_state = 588}, + [3758] = {.lex_state = 588}, + [3759] = {.lex_state = 102}, + [3760] = {.lex_state = 588}, + [3761] = {.lex_state = 588}, + [3762] = {.lex_state = 588}, + [3763] = {.lex_state = 636}, + [3764] = {.lex_state = 588}, + [3765] = {.lex_state = 588}, + [3766] = {.lex_state = 588}, + [3767] = {.lex_state = 588}, + [3768] = {.lex_state = 247}, + [3769] = {.lex_state = 588}, + [3770] = {.lex_state = 220}, + [3771] = {.lex_state = 588}, + [3772] = {.lex_state = 210}, + [3773] = {.lex_state = 236}, + [3774] = {.lex_state = 588}, + [3775] = {.lex_state = 85}, + [3776] = {.lex_state = 104}, + [3777] = {.lex_state = 588}, + [3778] = {.lex_state = 221}, + [3779] = {.lex_state = 236}, + [3780] = {.lex_state = 236}, + [3781] = {.lex_state = 91}, + [3782] = {.lex_state = 91}, + [3783] = {.lex_state = 588}, + [3784] = {.lex_state = 588}, + [3785] = {.lex_state = 588}, + [3786] = {.lex_state = 85}, + [3787] = {.lex_state = 588}, + [3788] = {.lex_state = 588}, + [3789] = {.lex_state = 588}, + [3790] = {.lex_state = 212}, + [3791] = {.lex_state = 212}, + [3792] = {.lex_state = 220}, + [3793] = {.lex_state = 588}, + [3794] = {.lex_state = 588}, + [3795] = {.lex_state = 207}, + [3796] = {.lex_state = 199}, + [3797] = {.lex_state = 588}, + [3798] = {.lex_state = 102}, + [3799] = {.lex_state = 102}, + [3800] = {.lex_state = 588}, + [3801] = {.lex_state = 91}, + [3802] = {.lex_state = 210}, + [3803] = {.lex_state = 2}, + [3804] = {.lex_state = 245}, + [3805] = {.lex_state = 107}, + [3806] = {.lex_state = 585}, + [3807] = {.lex_state = 211}, + [3808] = {.lex_state = 211}, + [3809] = {.lex_state = 245}, + [3810] = {.lex_state = 245}, + [3811] = {.lex_state = 128}, + [3812] = {.lex_state = 106}, + [3813] = {.lex_state = 245}, + [3814] = {.lex_state = 245}, + [3815] = {.lex_state = 248}, + [3816] = {.lex_state = 213}, + [3817] = {.lex_state = 245}, + [3818] = {.lex_state = 86}, + [3819] = {.lex_state = 222}, + [3820] = {.lex_state = 86}, + [3821] = {.lex_state = 245}, + [3822] = {.lex_state = 277}, + [3823] = {.lex_state = 130}, + [3824] = {.lex_state = 245}, + [3825] = {.lex_state = 86}, + [3826] = {.lex_state = 213}, + [3827] = {.lex_state = 245}, + [3828] = {.lex_state = 245}, + [3829] = {.lex_state = 213}, + [3830] = {.lex_state = 213}, + [3831] = {.lex_state = 213}, + [3832] = {.lex_state = 245}, + [3833] = {.lex_state = 106}, + [3834] = {.lex_state = 585}, + [3835] = {.lex_state = 106}, + [3836] = {.lex_state = 245}, + [3837] = {.lex_state = 86}, + [3838] = {.lex_state = 259}, + [3839] = {.lex_state = 128}, + [3840] = {.lex_state = 106}, + [3841] = {.lex_state = 211}, + [3842] = {.lex_state = 107}, + [3843] = {.lex_state = 222}, + [3844] = {.lex_state = 242}, + [3845] = {.lex_state = 86}, + [3846] = {.lex_state = 248}, + [3847] = {.lex_state = 130}, + [3848] = {.lex_state = 106}, + [3849] = {.lex_state = 245}, + [3850] = {.lex_state = 206}, + [3851] = {.lex_state = 123}, + [3852] = {.lex_state = 123}, + [3853] = {.lex_state = 47}, [3854] = {.lex_state = 47}, [3855] = {.lex_state = 47}, - [3856] = {.lex_state = 211}, - [3857] = {.lex_state = 276}, - [3858] = {.lex_state = 47}, - [3859] = {.lex_state = 130}, - [3860] = {.lex_state = 108}, - [3861] = {.lex_state = 243}, + [3856] = {.lex_state = 277}, + [3857] = {.lex_state = 223}, + [3858] = {.lex_state = 276}, + [3859] = {.lex_state = 47}, + [3860] = {.lex_state = 47}, + [3861] = {.lex_state = 47}, [3862] = {.lex_state = 47}, - [3863] = {.lex_state = 47}, - [3864] = {.lex_state = 249}, - [3865] = {.lex_state = 574}, - [3866] = {.lex_state = 33}, - [3867] = {.lex_state = 276}, - [3868] = {.lex_state = 130}, - [3869] = {.lex_state = 260}, - [3870] = {.lex_state = 108}, - [3871] = {.lex_state = 123}, - [3872] = {.lex_state = 249}, - [3873] = {.lex_state = 128}, + [3863] = {.lex_state = 91}, + [3864] = {.lex_state = 91}, + [3865] = {.lex_state = 47}, + [3866] = {.lex_state = 47}, + [3867] = {.lex_state = 249}, + [3868] = {.lex_state = 108}, + [3869] = {.lex_state = 33}, + [3870] = {.lex_state = 47}, + [3871] = {.lex_state = 47}, + [3872] = {.lex_state = 585}, + [3873] = {.lex_state = 33}, [3874] = {.lex_state = 47}, - [3875] = {.lex_state = 47}, - [3876] = {.lex_state = 574}, - [3877] = {.lex_state = 47}, - [3878] = {.lex_state = 47}, - [3879] = {.lex_state = 574}, - [3880] = {.lex_state = 277}, - [3881] = {.lex_state = 91}, + [3875] = {.lex_state = 33}, + [3876] = {.lex_state = 47}, + [3877] = {.lex_state = 108}, + [3878] = {.lex_state = 217}, + [3879] = {.lex_state = 108}, + [3880] = {.lex_state = 276}, + [3881] = {.lex_state = 249}, [3882] = {.lex_state = 33}, - [3883] = {.lex_state = 277}, - [3884] = {.lex_state = 47}, - [3885] = {.lex_state = 128}, - [3886] = {.lex_state = 277}, - [3887] = {.lex_state = 123}, - [3888] = {.lex_state = 574}, - [3889] = {.lex_state = 206}, - [3890] = {.lex_state = 277}, - [3891] = {.lex_state = 249}, - [3892] = {.lex_state = 123}, - [3893] = {.lex_state = 123}, - [3894] = {.lex_state = 130}, - [3895] = {.lex_state = 276}, - [3896] = {.lex_state = 123}, - [3897] = {.lex_state = 251}, - [3898] = {.lex_state = 33}, - [3899] = {.lex_state = 181}, - [3900] = {.lex_state = 2071}, - [3901] = {.lex_state = 2071}, - [3902] = {.lex_state = 249}, - [3903] = {.lex_state = 181}, - [3904] = {.lex_state = 257}, - [3905] = {.lex_state = 0}, - [3906] = {.lex_state = 276}, - [3907] = {.lex_state = 189}, - [3908] = {.lex_state = 33}, - [3909] = {.lex_state = 33}, - [3910] = {.lex_state = 128}, - [3911] = {.lex_state = 200}, - [3912] = {.lex_state = 123}, + [3883] = {.lex_state = 47}, + [3884] = {.lex_state = 123}, + [3885] = {.lex_state = 130}, + [3886] = {.lex_state = 47}, + [3887] = {.lex_state = 585}, + [3888] = {.lex_state = 123}, + [3889] = {.lex_state = 47}, + [3890] = {.lex_state = 223}, + [3891] = {.lex_state = 91}, + [3892] = {.lex_state = 223}, + [3893] = {.lex_state = 277}, + [3894] = {.lex_state = 33}, + [3895] = {.lex_state = 47}, + [3896] = {.lex_state = 47}, + [3897] = {.lex_state = 585}, + [3898] = {.lex_state = 585}, + [3899] = {.lex_state = 585}, + [3900] = {.lex_state = 250}, + [3901] = {.lex_state = 47}, + [3902] = {.lex_state = 47}, + [3903] = {.lex_state = 130}, + [3904] = {.lex_state = 130}, + [3905] = {.lex_state = 249}, + [3906] = {.lex_state = 277}, + [3907] = {.lex_state = 47}, + [3908] = {.lex_state = 123}, + [3909] = {.lex_state = 130}, + [3910] = {.lex_state = 129}, + [3911] = {.lex_state = 123}, + [3912] = {.lex_state = 33}, [3913] = {.lex_state = 123}, [3914] = {.lex_state = 128}, - [3915] = {.lex_state = 276}, - [3916] = {.lex_state = 91}, - [3917] = {.lex_state = 0}, - [3918] = {.lex_state = 0}, - [3919] = {.lex_state = 0}, - [3920] = {.lex_state = 2071}, - [3921] = {.lex_state = 2071}, - [3922] = {.lex_state = 574}, - [3923] = {.lex_state = 249}, - [3924] = {.lex_state = 123}, - [3925] = {.lex_state = 123}, - [3926] = {.lex_state = 181}, - [3927] = {.lex_state = 276}, - [3928] = {.lex_state = 181}, - [3929] = {.lex_state = 258}, - [3930] = {.lex_state = 123}, - [3931] = {.lex_state = 33}, + [3915] = {.lex_state = 91}, + [3916] = {.lex_state = 33}, + [3917] = {.lex_state = 585}, + [3918] = {.lex_state = 276}, + [3919] = {.lex_state = 123}, + [3920] = {.lex_state = 33}, + [3921] = {.lex_state = 116}, + [3922] = {.lex_state = 123}, + [3923] = {.lex_state = 243}, + [3924] = {.lex_state = 33}, + [3925] = {.lex_state = 88}, + [3926] = {.lex_state = 123}, + [3927] = {.lex_state = 211}, + [3928] = {.lex_state = 108}, + [3929] = {.lex_state = 123}, + [3930] = {.lex_state = 260}, + [3931] = {.lex_state = 223}, [3932] = {.lex_state = 123}, - [3933] = {.lex_state = 123}, - [3934] = {.lex_state = 123}, - [3935] = {.lex_state = 129}, - [3936] = {.lex_state = 129}, - [3937] = {.lex_state = 129}, - [3938] = {.lex_state = 118}, - [3939] = {.lex_state = 181}, - [3940] = {.lex_state = 2071}, - [3941] = {.lex_state = 2071}, - [3942] = {.lex_state = 181}, - [3943] = {.lex_state = 118}, - [3944] = {.lex_state = 128}, - [3945] = {.lex_state = 123}, - [3946] = {.lex_state = 128}, - [3947] = {.lex_state = 128}, - [3948] = {.lex_state = 0}, - [3949] = {.lex_state = 128}, - [3950] = {.lex_state = 128}, - [3951] = {.lex_state = 128}, + [3933] = {.lex_state = 87}, + [3934] = {.lex_state = 108}, + [3935] = {.lex_state = 249}, + [3936] = {.lex_state = 214}, + [3937] = {.lex_state = 128}, + [3938] = {.lex_state = 128}, + [3939] = {.lex_state = 123}, + [3940] = {.lex_state = 33}, + [3941] = {.lex_state = 246}, + [3942] = {.lex_state = 223}, + [3943] = {.lex_state = 211}, + [3944] = {.lex_state = 109}, + [3945] = {.lex_state = 130}, + [3946] = {.lex_state = 47}, + [3947] = {.lex_state = 260}, + [3948] = {.lex_state = 130}, + [3949] = {.lex_state = 47}, + [3950] = {.lex_state = 277}, + [3951] = {.lex_state = 33}, [3952] = {.lex_state = 123}, - [3953] = {.lex_state = 89}, - [3954] = {.lex_state = 129}, - [3955] = {.lex_state = 574}, - [3956] = {.lex_state = 89}, - [3957] = {.lex_state = 113}, - [3958] = {.lex_state = 130}, - [3959] = {.lex_state = 2175}, - [3960] = {.lex_state = 2175}, - [3961] = {.lex_state = 261}, - [3962] = {.lex_state = 276}, - [3963] = {.lex_state = 238}, - [3964] = {.lex_state = 33}, + [3953] = {.lex_state = 277}, + [3954] = {.lex_state = 130}, + [3955] = {.lex_state = 277}, + [3956] = {.lex_state = 130}, + [3957] = {.lex_state = 47}, + [3958] = {.lex_state = 256}, + [3959] = {.lex_state = 0}, + [3960] = {.lex_state = 0}, + [3961] = {.lex_state = 0}, + [3962] = {.lex_state = 123}, + [3963] = {.lex_state = 0}, + [3964] = {.lex_state = 123}, [3965] = {.lex_state = 123}, - [3966] = {.lex_state = 130}, - [3967] = {.lex_state = 181}, - [3968] = {.lex_state = 2071}, - [3969] = {.lex_state = 2071}, - [3970] = {.lex_state = 123}, - [3971] = {.lex_state = 251}, - [3972] = {.lex_state = 123}, - [3973] = {.lex_state = 181}, - [3974] = {.lex_state = 189}, - [3975] = {.lex_state = 181}, - [3976] = {.lex_state = 2071}, - [3977] = {.lex_state = 2071}, - [3978] = {.lex_state = 181}, - [3979] = {.lex_state = 276}, - [3980] = {.lex_state = 227}, - [3981] = {.lex_state = 2071}, - [3982] = {.lex_state = 2071}, - [3983] = {.lex_state = 181}, - [3984] = {.lex_state = 635}, - [3985] = {.lex_state = 181}, - [3986] = {.lex_state = 33}, - [3987] = {.lex_state = 181}, - [3988] = {.lex_state = 635}, - [3989] = {.lex_state = 0}, + [3966] = {.lex_state = 118}, + [3967] = {.lex_state = 244}, + [3968] = {.lex_state = 128}, + [3969] = {.lex_state = 0}, + [3970] = {.lex_state = 110}, + [3971] = {.lex_state = 0}, + [3972] = {.lex_state = 0}, + [3973] = {.lex_state = 276}, + [3974] = {.lex_state = 276}, + [3975] = {.lex_state = 276}, + [3976] = {.lex_state = 0}, + [3977] = {.lex_state = 251}, + [3978] = {.lex_state = 0}, + [3979] = {.lex_state = 181}, + [3980] = {.lex_state = 2100}, + [3981] = {.lex_state = 2100}, + [3982] = {.lex_state = 249}, + [3983] = {.lex_state = 0}, + [3984] = {.lex_state = 0}, + [3985] = {.lex_state = 0}, + [3986] = {.lex_state = 2204}, + [3987] = {.lex_state = 0}, + [3988] = {.lex_state = 2204}, + [3989] = {.lex_state = 261}, [3990] = {.lex_state = 181}, - [3991] = {.lex_state = 257}, - [3992] = {.lex_state = 33}, - [3993] = {.lex_state = 33}, - [3994] = {.lex_state = 181}, - [3995] = {.lex_state = 0}, - [3996] = {.lex_state = 181}, + [3991] = {.lex_state = 118}, + [3992] = {.lex_state = 0}, + [3993] = {.lex_state = 257}, + [3994] = {.lex_state = 0}, + [3995] = {.lex_state = 128}, + [3996] = {.lex_state = 0}, [3997] = {.lex_state = 0}, - [3998] = {.lex_state = 0}, - [3999] = {.lex_state = 181}, - [4000] = {.lex_state = 215}, - [4001] = {.lex_state = 215}, - [4002] = {.lex_state = 635}, - [4003] = {.lex_state = 635}, - [4004] = {.lex_state = 201}, - [4005] = {.lex_state = 635}, - [4006] = {.lex_state = 658}, - [4007] = {.lex_state = 635}, - [4008] = {.lex_state = 261}, - [4009] = {.lex_state = 181}, - [4010] = {.lex_state = 261}, - [4011] = {.lex_state = 261}, - [4012] = {.lex_state = 258}, - [4013] = {.lex_state = 276}, - [4014] = {.lex_state = 276}, - [4015] = {.lex_state = 276}, - [4016] = {.lex_state = 262}, - [4017] = {.lex_state = 109}, - [4018] = {.lex_state = 33}, - [4019] = {.lex_state = 91}, - [4020] = {.lex_state = 123}, - [4021] = {.lex_state = 123}, - [4022] = {.lex_state = 123}, - [4023] = {.lex_state = 123}, - [4024] = {.lex_state = 117}, - [4025] = {.lex_state = 276}, - [4026] = {.lex_state = 276}, - [4027] = {.lex_state = 276}, - [4028] = {.lex_state = 33}, - [4029] = {.lex_state = 33}, - [4030] = {.lex_state = 33}, - [4031] = {.lex_state = 91}, - [4032] = {.lex_state = 224}, - [4033] = {.lex_state = 276}, - [4034] = {.lex_state = 276}, - [4035] = {.lex_state = 276}, - [4036] = {.lex_state = 276}, - [4037] = {.lex_state = 276}, + [3998] = {.lex_state = 33}, + [3999] = {.lex_state = 33}, + [4000] = {.lex_state = 0}, + [4001] = {.lex_state = 128}, + [4002] = {.lex_state = 128}, + [4003] = {.lex_state = 123}, + [4004] = {.lex_state = 91}, + [4005] = {.lex_state = 0}, + [4006] = {.lex_state = 128}, + [4007] = {.lex_state = 128}, + [4008] = {.lex_state = 128}, + [4009] = {.lex_state = 0}, + [4010] = {.lex_state = 123}, + [4011] = {.lex_state = 123}, + [4012] = {.lex_state = 189}, + [4013] = {.lex_state = 123}, + [4014] = {.lex_state = 123}, + [4015] = {.lex_state = 89}, + [4016] = {.lex_state = 123}, + [4017] = {.lex_state = 0}, + [4018] = {.lex_state = 0}, + [4019] = {.lex_state = 0}, + [4020] = {.lex_state = 0}, + [4021] = {.lex_state = 0}, + [4022] = {.lex_state = 0}, + [4023] = {.lex_state = 0}, + [4024] = {.lex_state = 0}, + [4025] = {.lex_state = 0}, + [4026] = {.lex_state = 0}, + [4027] = {.lex_state = 0}, + [4028] = {.lex_state = 0}, + [4029] = {.lex_state = 0}, + [4030] = {.lex_state = 0}, + [4031] = {.lex_state = 0}, + [4032] = {.lex_state = 123}, + [4033] = {.lex_state = 123}, + [4034] = {.lex_state = 123}, + [4035] = {.lex_state = 0}, + [4036] = {.lex_state = 123}, + [4037] = {.lex_state = 89}, [4038] = {.lex_state = 276}, - [4039] = {.lex_state = 276}, - [4040] = {.lex_state = 123}, - [4041] = {.lex_state = 123}, - [4042] = {.lex_state = 244}, - [4043] = {.lex_state = 0}, - [4044] = {.lex_state = 0}, - [4045] = {.lex_state = 0}, - [4046] = {.lex_state = 110}, - [4047] = {.lex_state = 181}, - [4048] = {.lex_state = 2}, - [4049] = {.lex_state = 90}, - [4050] = {.lex_state = 276}, - [4051] = {.lex_state = 200}, - [4052] = {.lex_state = 278}, - [4053] = {.lex_state = 620}, - [4054] = {.lex_state = 179}, - [4055] = {.lex_state = 278}, - [4056] = {.lex_state = 179}, - [4057] = {.lex_state = 620}, - [4058] = {.lex_state = 577}, - [4059] = {.lex_state = 0}, - [4060] = {.lex_state = 216}, + [4039] = {.lex_state = 129}, + [4040] = {.lex_state = 129}, + [4041] = {.lex_state = 129}, + [4042] = {.lex_state = 238}, + [4043] = {.lex_state = 181}, + [4044] = {.lex_state = 2100}, + [4045] = {.lex_state = 2100}, + [4046] = {.lex_state = 130}, + [4047] = {.lex_state = 33}, + [4048] = {.lex_state = 0}, + [4049] = {.lex_state = 181}, + [4050] = {.lex_state = 123}, + [4051] = {.lex_state = 0}, + [4052] = {.lex_state = 0}, + [4053] = {.lex_state = 129}, + [4054] = {.lex_state = 0}, + [4055] = {.lex_state = 276}, + [4056] = {.lex_state = 113}, + [4057] = {.lex_state = 0}, + [4058] = {.lex_state = 585}, + [4059] = {.lex_state = 276}, + [4060] = {.lex_state = 0}, [4061] = {.lex_state = 0}, - [4062] = {.lex_state = 90}, - [4063] = {.lex_state = 125}, - [4064] = {.lex_state = 278}, - [4065] = {.lex_state = 125}, - [4066] = {.lex_state = 620}, - [4067] = {.lex_state = 91}, - [4068] = {.lex_state = 2}, - [4069] = {.lex_state = 179}, - [4070] = {.lex_state = 278}, - [4071] = {.lex_state = 252}, - [4072] = {.lex_state = 90}, - [4073] = {.lex_state = 90}, - [4074] = {.lex_state = 0}, - [4075] = {.lex_state = 123}, - [4076] = {.lex_state = 278}, - [4077] = {.lex_state = 123}, - [4078] = {.lex_state = 123}, - [4079] = {.lex_state = 0}, - [4080] = {.lex_state = 229}, - [4081] = {.lex_state = 179}, - [4082] = {.lex_state = 278}, - [4083] = {.lex_state = 123}, - [4084] = {.lex_state = 119}, - [4085] = {.lex_state = 119}, - [4086] = {.lex_state = 123}, - [4087] = {.lex_state = 276}, - [4088] = {.lex_state = 229}, - [4089] = {.lex_state = 278}, - [4090] = {.lex_state = 123}, + [4062] = {.lex_state = 0}, + [4063] = {.lex_state = 0}, + [4064] = {.lex_state = 0}, + [4065] = {.lex_state = 0}, + [4066] = {.lex_state = 0}, + [4067] = {.lex_state = 0}, + [4068] = {.lex_state = 251}, + [4069] = {.lex_state = 276}, + [4070] = {.lex_state = 0}, + [4071] = {.lex_state = 0}, + [4072] = {.lex_state = 0}, + [4073] = {.lex_state = 0}, + [4074] = {.lex_state = 181}, + [4075] = {.lex_state = 0}, + [4076] = {.lex_state = 0}, + [4077] = {.lex_state = 33}, + [4078] = {.lex_state = 33}, + [4079] = {.lex_state = 585}, + [4080] = {.lex_state = 130}, + [4081] = {.lex_state = 181}, + [4082] = {.lex_state = 33}, + [4083] = {.lex_state = 646}, + [4084] = {.lex_state = 123}, + [4085] = {.lex_state = 646}, + [4086] = {.lex_state = 181}, + [4087] = {.lex_state = 2100}, + [4088] = {.lex_state = 2100}, + [4089] = {.lex_state = 257}, + [4090] = {.lex_state = 181}, [4091] = {.lex_state = 33}, - [4092] = {.lex_state = 90}, - [4093] = {.lex_state = 179}, - [4094] = {.lex_state = 278}, - [4095] = {.lex_state = 90}, - [4096] = {.lex_state = 148}, - [4097] = {.lex_state = 38}, - [4098] = {.lex_state = 47}, - [4099] = {.lex_state = 278}, - [4100] = {.lex_state = 148}, - [4101] = {.lex_state = 216}, - [4102] = {.lex_state = 159}, - [4103] = {.lex_state = 179}, - [4104] = {.lex_state = 278}, - [4105] = {.lex_state = 123}, - [4106] = {.lex_state = 90}, - [4107] = {.lex_state = 179}, - [4108] = {.lex_state = 278}, - [4109] = {.lex_state = 278}, - [4110] = {.lex_state = 278}, - [4111] = {.lex_state = 216}, - [4112] = {.lex_state = 179}, - [4113] = {.lex_state = 278}, - [4114] = {.lex_state = 620}, - [4115] = {.lex_state = 278}, - [4116] = {.lex_state = 35}, - [4117] = {.lex_state = 278}, - [4118] = {.lex_state = 159}, - [4119] = {.lex_state = 179}, - [4120] = {.lex_state = 179}, - [4121] = {.lex_state = 91}, - [4122] = {.lex_state = 179}, - [4123] = {.lex_state = 179}, - [4124] = {.lex_state = 119}, - [4125] = {.lex_state = 179}, - [4126] = {.lex_state = 252}, - [4127] = {.lex_state = 216}, - [4128] = {.lex_state = 278}, - [4129] = {.lex_state = 179}, - [4130] = {.lex_state = 278}, - [4131] = {.lex_state = 179}, - [4132] = {.lex_state = 123}, - [4133] = {.lex_state = 276}, - [4134] = {.lex_state = 179}, - [4135] = {.lex_state = 216}, - [4136] = {.lex_state = 216}, - [4137] = {.lex_state = 179}, - [4138] = {.lex_state = 216}, - [4139] = {.lex_state = 179}, - [4140] = {.lex_state = 179}, - [4141] = {.lex_state = 179}, - [4142] = {.lex_state = 128}, - [4143] = {.lex_state = 119}, - [4144] = {.lex_state = 216}, - [4145] = {.lex_state = 119}, - [4146] = {.lex_state = 216}, - [4147] = {.lex_state = 90}, - [4148] = {.lex_state = 189}, - [4149] = {.lex_state = 620}, - [4150] = {.lex_state = 577}, - [4151] = {.lex_state = 276}, - [4152] = {.lex_state = 119}, - [4153] = {.lex_state = 119}, - [4154] = {.lex_state = 123}, - [4155] = {.lex_state = 263}, - [4156] = {.lex_state = 252}, - [4157] = {.lex_state = 263}, - [4158] = {.lex_state = 91}, - [4159] = {.lex_state = 119}, - [4160] = {.lex_state = 90}, - [4161] = {.lex_state = 225}, - [4162] = {.lex_state = 216}, - [4163] = {.lex_state = 226}, - [4164] = {.lex_state = 122}, - [4165] = {.lex_state = 90}, - [4166] = {.lex_state = 2}, - [4167] = {.lex_state = 128}, - [4168] = {.lex_state = 216}, - [4169] = {.lex_state = 119}, - [4170] = {.lex_state = 573}, - [4171] = {.lex_state = 651}, - [4172] = {.lex_state = 120}, - [4173] = {.lex_state = 216}, - [4174] = {.lex_state = 125}, - [4175] = {.lex_state = 90}, - [4176] = {.lex_state = 252}, - [4177] = {.lex_state = 120}, - [4178] = {.lex_state = 2}, - [4179] = {.lex_state = 179}, - [4180] = {.lex_state = 33}, - [4181] = {.lex_state = 119}, - [4182] = {.lex_state = 90}, - [4183] = {.lex_state = 0}, - [4184] = {.lex_state = 0}, - [4185] = {.lex_state = 90}, - [4186] = {.lex_state = 620}, - [4187] = {.lex_state = 123}, - [4188] = {.lex_state = 130}, - [4189] = {.lex_state = 0}, - [4190] = {.lex_state = 33}, - [4191] = {.lex_state = 119}, - [4192] = {.lex_state = 130}, - [4193] = {.lex_state = 119}, - [4194] = {.lex_state = 2}, - [4195] = {.lex_state = 119}, - [4196] = {.lex_state = 123}, - [4197] = {.lex_state = 130}, - [4198] = {.lex_state = 35}, + [4092] = {.lex_state = 227}, + [4093] = {.lex_state = 33}, + [4094] = {.lex_state = 181}, + [4095] = {.lex_state = 2100}, + [4096] = {.lex_state = 2100}, + [4097] = {.lex_state = 0}, + [4098] = {.lex_state = 181}, + [4099] = {.lex_state = 123}, + [4100] = {.lex_state = 181}, + [4101] = {.lex_state = 2100}, + [4102] = {.lex_state = 2100}, + [4103] = {.lex_state = 181}, + [4104] = {.lex_state = 181}, + [4105] = {.lex_state = 0}, + [4106] = {.lex_state = 276}, + [4107] = {.lex_state = 276}, + [4108] = {.lex_state = 181}, + [4109] = {.lex_state = 646}, + [4110] = {.lex_state = 646}, + [4111] = {.lex_state = 276}, + [4112] = {.lex_state = 0}, + [4113] = {.lex_state = 646}, + [4114] = {.lex_state = 181}, + [4115] = {.lex_state = 181}, + [4116] = {.lex_state = 181}, + [4117] = {.lex_state = 0}, + [4118] = {.lex_state = 0}, + [4119] = {.lex_state = 181}, + [4120] = {.lex_state = 0}, + [4121] = {.lex_state = 0}, + [4122] = {.lex_state = 0}, + [4123] = {.lex_state = 0}, + [4124] = {.lex_state = 215}, + [4125] = {.lex_state = 0}, + [4126] = {.lex_state = 33}, + [4127] = {.lex_state = 215}, + [4128] = {.lex_state = 200}, + [4129] = {.lex_state = 669}, + [4130] = {.lex_state = 646}, + [4131] = {.lex_state = 0}, + [4132] = {.lex_state = 0}, + [4133] = {.lex_state = 128}, + [4134] = {.lex_state = 201}, + [4135] = {.lex_state = 0}, + [4136] = {.lex_state = 181}, + [4137] = {.lex_state = 261}, + [4138] = {.lex_state = 261}, + [4139] = {.lex_state = 261}, + [4140] = {.lex_state = 258}, + [4141] = {.lex_state = 258}, + [4142] = {.lex_state = 0}, + [4143] = {.lex_state = 0}, + [4144] = {.lex_state = 0}, + [4145] = {.lex_state = 262}, + [4146] = {.lex_state = 0}, + [4147] = {.lex_state = 123}, + [4148] = {.lex_state = 123}, + [4149] = {.lex_state = 123}, + [4150] = {.lex_state = 123}, + [4151] = {.lex_state = 91}, + [4152] = {.lex_state = 2100}, + [4153] = {.lex_state = 276}, + [4154] = {.lex_state = 276}, + [4155] = {.lex_state = 276}, + [4156] = {.lex_state = 33}, + [4157] = {.lex_state = 2100}, + [4158] = {.lex_state = 189}, + [4159] = {.lex_state = 109}, + [4160] = {.lex_state = 0}, + [4161] = {.lex_state = 0}, + [4162] = {.lex_state = 276}, + [4163] = {.lex_state = 276}, + [4164] = {.lex_state = 276}, + [4165] = {.lex_state = 91}, + [4166] = {.lex_state = 276}, + [4167] = {.lex_state = 276}, + [4168] = {.lex_state = 276}, + [4169] = {.lex_state = 117}, + [4170] = {.lex_state = 224}, + [4171] = {.lex_state = 0}, + [4172] = {.lex_state = 0}, + [4173] = {.lex_state = 249}, + [4174] = {.lex_state = 33}, + [4175] = {.lex_state = 33}, + [4176] = {.lex_state = 179}, + [4177] = {.lex_state = 119}, + [4178] = {.lex_state = 225}, + [4179] = {.lex_state = 631}, + [4180] = {.lex_state = 2}, + [4181] = {.lex_state = 179}, + [4182] = {.lex_state = 278}, + [4183] = {.lex_state = 119}, + [4184] = {.lex_state = 229}, + [4185] = {.lex_state = 179}, + [4186] = {.lex_state = 278}, + [4187] = {.lex_state = 226}, + [4188] = {.lex_state = 91}, + [4189] = {.lex_state = 278}, + [4190] = {.lex_state = 631}, + [4191] = {.lex_state = 33}, + [4192] = {.lex_state = 278}, + [4193] = {.lex_state = 90}, + [4194] = {.lex_state = 179}, + [4195] = {.lex_state = 278}, + [4196] = {.lex_state = 631}, + [4197] = {.lex_state = 216}, + [4198] = {.lex_state = 123}, [4199] = {.lex_state = 0}, - [4200] = {.lex_state = 226}, - [4201] = {.lex_state = 33}, - [4202] = {.lex_state = 252}, - [4203] = {.lex_state = 278}, - [4204] = {.lex_state = 2}, - [4205] = {.lex_state = 119}, + [4200] = {.lex_state = 0}, + [4201] = {.lex_state = 278}, + [4202] = {.lex_state = 123}, + [4203] = {.lex_state = 179}, + [4204] = {.lex_state = 278}, + [4205] = {.lex_state = 278}, [4206] = {.lex_state = 216}, [4207] = {.lex_state = 33}, - [4208] = {.lex_state = 33}, - [4209] = {.lex_state = 33}, - [4210] = {.lex_state = 189}, - [4211] = {.lex_state = 189}, - [4212] = {.lex_state = 123}, - [4213] = {.lex_state = 33}, - [4214] = {.lex_state = 189}, - [4215] = {.lex_state = 148}, + [4208] = {.lex_state = 130}, + [4209] = {.lex_state = 91}, + [4210] = {.lex_state = 278}, + [4211] = {.lex_state = 123}, + [4212] = {.lex_state = 130}, + [4213] = {.lex_state = 119}, + [4214] = {.lex_state = 216}, + [4215] = {.lex_state = 216}, [4216] = {.lex_state = 0}, - [4217] = {.lex_state = 237}, - [4218] = {.lex_state = 225}, - [4219] = {.lex_state = 121}, - [4220] = {.lex_state = 123}, - [4221] = {.lex_state = 0}, - [4222] = {.lex_state = 245}, - [4223] = {.lex_state = 245}, - [4224] = {.lex_state = 33}, - [4225] = {.lex_state = 33}, - [4226] = {.lex_state = 189}, - [4227] = {.lex_state = 573}, - [4228] = {.lex_state = 148}, - [4229] = {.lex_state = 624}, + [4217] = {.lex_state = 123}, + [4218] = {.lex_state = 179}, + [4219] = {.lex_state = 278}, + [4220] = {.lex_state = 2}, + [4221] = {.lex_state = 122}, + [4222] = {.lex_state = 278}, + [4223] = {.lex_state = 216}, + [4224] = {.lex_state = 90}, + [4225] = {.lex_state = 252}, + [4226] = {.lex_state = 179}, + [4227] = {.lex_state = 278}, + [4228] = {.lex_state = 631}, + [4229] = {.lex_state = 216}, [4230] = {.lex_state = 90}, - [4231] = {.lex_state = 123}, - [4232] = {.lex_state = 189}, - [4233] = {.lex_state = 189}, - [4234] = {.lex_state = 33}, - [4235] = {.lex_state = 189}, - [4236] = {.lex_state = 33}, - [4237] = {.lex_state = 189}, - [4238] = {.lex_state = 624}, - [4239] = {.lex_state = 237}, - [4240] = {.lex_state = 121}, - [4241] = {.lex_state = 189}, - [4242] = {.lex_state = 620}, - [4243] = {.lex_state = 189}, - [4244] = {.lex_state = 189}, - [4245] = {.lex_state = 33}, - [4246] = {.lex_state = 237}, - [4247] = {.lex_state = 237}, - [4248] = {.lex_state = 130}, - [4249] = {.lex_state = 123}, - [4250] = {.lex_state = 189}, - [4251] = {.lex_state = 33}, - [4252] = {.lex_state = 189}, - [4253] = {.lex_state = 189}, - [4254] = {.lex_state = 189}, - [4255] = {.lex_state = 189}, - [4256] = {.lex_state = 189}, - [4257] = {.lex_state = 189}, - [4258] = {.lex_state = 189}, - [4259] = {.lex_state = 148}, - [4260] = {.lex_state = 148}, - [4261] = {.lex_state = 125}, - [4262] = {.lex_state = 33}, - [4263] = {.lex_state = 33}, - [4264] = {.lex_state = 148}, - [4265] = {.lex_state = 148}, - [4266] = {.lex_state = 148}, - [4267] = {.lex_state = 148}, - [4268] = {.lex_state = 33}, - [4269] = {.lex_state = 33}, - [4270] = {.lex_state = 33}, - [4271] = {.lex_state = 148}, - [4272] = {.lex_state = 128}, + [4231] = {.lex_state = 278}, + [4232] = {.lex_state = 125}, + [4233] = {.lex_state = 90}, + [4234] = {.lex_state = 276}, + [4235] = {.lex_state = 90}, + [4236] = {.lex_state = 179}, + [4237] = {.lex_state = 90}, + [4238] = {.lex_state = 179}, + [4239] = {.lex_state = 0}, + [4240] = {.lex_state = 90}, + [4241] = {.lex_state = 179}, + [4242] = {.lex_state = 278}, + [4243] = {.lex_state = 252}, + [4244] = {.lex_state = 179}, + [4245] = {.lex_state = 125}, + [4246] = {.lex_state = 216}, + [4247] = {.lex_state = 252}, + [4248] = {.lex_state = 119}, + [4249] = {.lex_state = 179}, + [4250] = {.lex_state = 128}, + [4251] = {.lex_state = 216}, + [4252] = {.lex_state = 216}, + [4253] = {.lex_state = 179}, + [4254] = {.lex_state = 179}, + [4255] = {.lex_state = 119}, + [4256] = {.lex_state = 179}, + [4257] = {.lex_state = 179}, + [4258] = {.lex_state = 35}, + [4259] = {.lex_state = 123}, + [4260] = {.lex_state = 123}, + [4261] = {.lex_state = 179}, + [4262] = {.lex_state = 252}, + [4263] = {.lex_state = 179}, + [4264] = {.lex_state = 2}, + [4265] = {.lex_state = 179}, + [4266] = {.lex_state = 588}, + [4267] = {.lex_state = 276}, + [4268] = {.lex_state = 119}, + [4269] = {.lex_state = 128}, + [4270] = {.lex_state = 119}, + [4271] = {.lex_state = 631}, + [4272] = {.lex_state = 179}, [4273] = {.lex_state = 125}, - [4274] = {.lex_state = 0}, - [4275] = {.lex_state = 123}, - [4276] = {.lex_state = 43}, - [4277] = {.lex_state = 0}, - [4278] = {.lex_state = 123}, - [4279] = {.lex_state = 0}, - [4280] = {.lex_state = 121}, - [4281] = {.lex_state = 253}, - [4282] = {.lex_state = 33}, - [4283] = {.lex_state = 33}, - [4284] = {.lex_state = 121}, - [4285] = {.lex_state = 33}, - [4286] = {.lex_state = 121}, - [4287] = {.lex_state = 33}, - [4288] = {.lex_state = 33}, - [4289] = {.lex_state = 121}, - [4290] = {.lex_state = 33}, - [4291] = {.lex_state = 121}, - [4292] = {.lex_state = 148}, - [4293] = {.lex_state = 121}, - [4294] = {.lex_state = 148}, - [4295] = {.lex_state = 33}, - [4296] = {.lex_state = 33}, - [4297] = {.lex_state = 33}, - [4298] = {.lex_state = 33}, - [4299] = {.lex_state = 33}, - [4300] = {.lex_state = 189}, - [4301] = {.lex_state = 0}, - [4302] = {.lex_state = 0}, - [4303] = {.lex_state = 33}, - [4304] = {.lex_state = 33}, - [4305] = {.lex_state = 33}, - [4306] = {.lex_state = 125}, - [4307] = {.lex_state = 121}, - [4308] = {.lex_state = 125}, - [4309] = {.lex_state = 125}, - [4310] = {.lex_state = 33}, - [4311] = {.lex_state = 121}, - [4312] = {.lex_state = 121}, - [4313] = {.lex_state = 33}, - [4314] = {.lex_state = 148}, - [4315] = {.lex_state = 125}, - [4316] = {.lex_state = 125}, - [4317] = {.lex_state = 125}, - [4318] = {.lex_state = 225}, - [4319] = {.lex_state = 33}, - [4320] = {.lex_state = 225}, - [4321] = {.lex_state = 216}, - [4322] = {.lex_state = 91}, - [4323] = {.lex_state = 225}, - [4324] = {.lex_state = 0}, - [4325] = {.lex_state = 245}, - [4326] = {.lex_state = 0}, - [4327] = {.lex_state = 33}, + [4274] = {.lex_state = 588}, + [4275] = {.lex_state = 278}, + [4276] = {.lex_state = 278}, + [4277] = {.lex_state = 278}, + [4278] = {.lex_state = 119}, + [4279] = {.lex_state = 263}, + [4280] = {.lex_state = 123}, + [4281] = {.lex_state = 0}, + [4282] = {.lex_state = 276}, + [4283] = {.lex_state = 0}, + [4284] = {.lex_state = 216}, + [4285] = {.lex_state = 263}, + [4286] = {.lex_state = 119}, + [4287] = {.lex_state = 119}, + [4288] = {.lex_state = 35}, + [4289] = {.lex_state = 216}, + [4290] = {.lex_state = 123}, + [4291] = {.lex_state = 148}, + [4292] = {.lex_state = 584}, + [4293] = {.lex_state = 148}, + [4294] = {.lex_state = 159}, + [4295] = {.lex_state = 226}, + [4296] = {.lex_state = 123}, + [4297] = {.lex_state = 0}, + [4298] = {.lex_state = 189}, + [4299] = {.lex_state = 276}, + [4300] = {.lex_state = 2}, + [4301] = {.lex_state = 33}, + [4302] = {.lex_state = 200}, + [4303] = {.lex_state = 90}, + [4304] = {.lex_state = 38}, + [4305] = {.lex_state = 90}, + [4306] = {.lex_state = 119}, + [4307] = {.lex_state = 119}, + [4308] = {.lex_state = 159}, + [4309] = {.lex_state = 662}, + [4310] = {.lex_state = 120}, + [4311] = {.lex_state = 91}, + [4312] = {.lex_state = 47}, + [4313] = {.lex_state = 130}, + [4314] = {.lex_state = 2}, + [4315] = {.lex_state = 179}, + [4316] = {.lex_state = 278}, + [4317] = {.lex_state = 123}, + [4318] = {.lex_state = 631}, + [4319] = {.lex_state = 123}, + [4320] = {.lex_state = 2}, + [4321] = {.lex_state = 90}, + [4322] = {.lex_state = 216}, + [4323] = {.lex_state = 120}, + [4324] = {.lex_state = 252}, + [4325] = {.lex_state = 90}, + [4326] = {.lex_state = 229}, + [4327] = {.lex_state = 90}, [4328] = {.lex_state = 33}, - [4329] = {.lex_state = 33}, - [4330] = {.lex_state = 33}, - [4331] = {.lex_state = 33}, - [4332] = {.lex_state = 33}, - [4333] = {.lex_state = 33}, - [4334] = {.lex_state = 33}, - [4335] = {.lex_state = 33}, - [4336] = {.lex_state = 0}, - [4337] = {.lex_state = 33}, - [4338] = {.lex_state = 189}, + [4329] = {.lex_state = 119}, + [4330] = {.lex_state = 90}, + [4331] = {.lex_state = 216}, + [4332] = {.lex_state = 119}, + [4333] = {.lex_state = 278}, + [4334] = {.lex_state = 0}, + [4335] = {.lex_state = 121}, + [4336] = {.lex_state = 33}, + [4337] = {.lex_state = 189}, + [4338] = {.lex_state = 33}, [4339] = {.lex_state = 189}, [4340] = {.lex_state = 189}, - [4341] = {.lex_state = 33}, + [4341] = {.lex_state = 189}, [4342] = {.lex_state = 33}, [4343] = {.lex_state = 33}, - [4344] = {.lex_state = 43}, + [4344] = {.lex_state = 123}, [4345] = {.lex_state = 123}, - [4346] = {.lex_state = 245}, - [4347] = {.lex_state = 123}, - [4348] = {.lex_state = 128}, - [4349] = {.lex_state = 123}, - [4350] = {.lex_state = 33}, + [4346] = {.lex_state = 635}, + [4347] = {.lex_state = 216}, + [4348] = {.lex_state = 33}, + [4349] = {.lex_state = 33}, + [4350] = {.lex_state = 90}, [4351] = {.lex_state = 33}, - [4352] = {.lex_state = 128}, + [4352] = {.lex_state = 189}, [4353] = {.lex_state = 33}, - [4354] = {.lex_state = 33}, - [4355] = {.lex_state = 33}, - [4356] = {.lex_state = 123}, - [4357] = {.lex_state = 245}, - [4358] = {.lex_state = 230}, - [4359] = {.lex_state = 33}, - [4360] = {.lex_state = 33}, - [4361] = {.lex_state = 123}, - [4362] = {.lex_state = 33}, - [4363] = {.lex_state = 33}, - [4364] = {.lex_state = 33}, + [4354] = {.lex_state = 125}, + [4355] = {.lex_state = 123}, + [4356] = {.lex_state = 189}, + [4357] = {.lex_state = 0}, + [4358] = {.lex_state = 148}, + [4359] = {.lex_state = 268}, + [4360] = {.lex_state = 189}, + [4361] = {.lex_state = 125}, + [4362] = {.lex_state = 245}, + [4363] = {.lex_state = 123}, + [4364] = {.lex_state = 225}, [4365] = {.lex_state = 33}, - [4366] = {.lex_state = 230}, - [4367] = {.lex_state = 33}, - [4368] = {.lex_state = 230}, - [4369] = {.lex_state = 33}, - [4370] = {.lex_state = 33}, - [4371] = {.lex_state = 33}, - [4372] = {.lex_state = 33}, + [4366] = {.lex_state = 584}, + [4367] = {.lex_state = 584}, + [4368] = {.lex_state = 225}, + [4369] = {.lex_state = 123}, + [4370] = {.lex_state = 189}, + [4371] = {.lex_state = 189}, + [4372] = {.lex_state = 189}, [4373] = {.lex_state = 33}, - [4374] = {.lex_state = 33}, - [4375] = {.lex_state = 245}, - [4376] = {.lex_state = 33}, - [4377] = {.lex_state = 264}, - [4378] = {.lex_state = 33}, - [4379] = {.lex_state = 33}, - [4380] = {.lex_state = 33}, - [4381] = {.lex_state = 33}, - [4382] = {.lex_state = 33}, - [4383] = {.lex_state = 189}, - [4384] = {.lex_state = 181}, - [4385] = {.lex_state = 245}, + [4374] = {.lex_state = 189}, + [4375] = {.lex_state = 148}, + [4376] = {.lex_state = 0}, + [4377] = {.lex_state = 179}, + [4378] = {.lex_state = 121}, + [4379] = {.lex_state = 0}, + [4380] = {.lex_state = 584}, + [4381] = {.lex_state = 584}, + [4382] = {.lex_state = 584}, + [4383] = {.lex_state = 123}, + [4384] = {.lex_state = 123}, + [4385] = {.lex_state = 33}, [4386] = {.lex_state = 189}, - [4387] = {.lex_state = 33}, - [4388] = {.lex_state = 245}, - [4389] = {.lex_state = 33}, - [4390] = {.lex_state = 33}, - [4391] = {.lex_state = 225}, - [4392] = {.lex_state = 0}, - [4393] = {.lex_state = 33}, - [4394] = {.lex_state = 245}, - [4395] = {.lex_state = 225}, - [4396] = {.lex_state = 225}, - [4397] = {.lex_state = 123}, - [4398] = {.lex_state = 33}, - [4399] = {.lex_state = 189}, - [4400] = {.lex_state = 245}, + [4387] = {.lex_state = 585}, + [4388] = {.lex_state = 33}, + [4389] = {.lex_state = 148}, + [4390] = {.lex_state = 0}, + [4391] = {.lex_state = 33}, + [4392] = {.lex_state = 148}, + [4393] = {.lex_state = 121}, + [4394] = {.lex_state = 189}, + [4395] = {.lex_state = 189}, + [4396] = {.lex_state = 189}, + [4397] = {.lex_state = 189}, + [4398] = {.lex_state = 245}, + [4399] = {.lex_state = 123}, + [4400] = {.lex_state = 179}, [4401] = {.lex_state = 123}, - [4402] = {.lex_state = 245}, - [4403] = {.lex_state = 179}, - [4404] = {.lex_state = 245}, - [4405] = {.lex_state = 0}, - [4406] = {.lex_state = 33}, - [4407] = {.lex_state = 245}, - [4408] = {.lex_state = 33}, - [4409] = {.lex_state = 0}, - [4410] = {.lex_state = 245}, - [4411] = {.lex_state = 33}, - [4412] = {.lex_state = 33}, + [4402] = {.lex_state = 33}, + [4403] = {.lex_state = 33}, + [4404] = {.lex_state = 121}, + [4405] = {.lex_state = 121}, + [4406] = {.lex_state = 181}, + [4407] = {.lex_state = 189}, + [4408] = {.lex_state = 189}, + [4409] = {.lex_state = 189}, + [4410] = {.lex_state = 189}, + [4411] = {.lex_state = 189}, + [4412] = {.lex_state = 189}, [4413] = {.lex_state = 189}, - [4414] = {.lex_state = 181}, - [4415] = {.lex_state = 33}, - [4416] = {.lex_state = 33}, - [4417] = {.lex_state = 122}, - [4418] = {.lex_state = 179}, - [4419] = {.lex_state = 230}, - [4420] = {.lex_state = 33}, - [4421] = {.lex_state = 230}, - [4422] = {.lex_state = 573}, - [4423] = {.lex_state = 122}, - [4424] = {.lex_state = 181}, - [4425] = {.lex_state = 122}, - [4426] = {.lex_state = 252}, - [4427] = {.lex_state = 624}, - [4428] = {.lex_state = 230}, - [4429] = {.lex_state = 33}, - [4430] = {.lex_state = 252}, - [4431] = {.lex_state = 33}, - [4432] = {.lex_state = 189}, - [4433] = {.lex_state = 264}, - [4434] = {.lex_state = 33}, - [4435] = {.lex_state = 264}, - [4436] = {.lex_state = 264}, - [4437] = {.lex_state = 0}, - [4438] = {.lex_state = 123}, - [4439] = {.lex_state = 0}, - [4440] = {.lex_state = 230}, - [4441] = {.lex_state = 574}, - [4442] = {.lex_state = 230}, - [4443] = {.lex_state = 33}, - [4444] = {.lex_state = 123}, - [4445] = {.lex_state = 33}, + [4414] = {.lex_state = 189}, + [4415] = {.lex_state = 148}, + [4416] = {.lex_state = 148}, + [4417] = {.lex_state = 0}, + [4418] = {.lex_state = 121}, + [4419] = {.lex_state = 225}, + [4420] = {.lex_state = 121}, + [4421] = {.lex_state = 148}, + [4422] = {.lex_state = 148}, + [4423] = {.lex_state = 148}, + [4424] = {.lex_state = 148}, + [4425] = {.lex_state = 148}, + [4426] = {.lex_state = 33}, + [4427] = {.lex_state = 121}, + [4428] = {.lex_state = 225}, + [4429] = {.lex_state = 0}, + [4430] = {.lex_state = 0}, + [4431] = {.lex_state = 225}, + [4432] = {.lex_state = 43}, + [4433] = {.lex_state = 33}, + [4434] = {.lex_state = 216}, + [4435] = {.lex_state = 33}, + [4436] = {.lex_state = 33}, + [4437] = {.lex_state = 253}, + [4438] = {.lex_state = 33}, + [4439] = {.lex_state = 33}, + [4440] = {.lex_state = 33}, + [4441] = {.lex_state = 91}, + [4442] = {.lex_state = 0}, + [4443] = {.lex_state = 0}, + [4444] = {.lex_state = 225}, + [4445] = {.lex_state = 584}, [4446] = {.lex_state = 148}, - [4447] = {.lex_state = 230}, - [4448] = {.lex_state = 33}, - [4449] = {.lex_state = 230}, - [4450] = {.lex_state = 573}, - [4451] = {.lex_state = 121}, - [4452] = {.lex_state = 123}, - [4453] = {.lex_state = 268}, - [4454] = {.lex_state = 237}, - [4455] = {.lex_state = 230}, - [4456] = {.lex_state = 121}, - [4457] = {.lex_state = 121}, - [4458] = {.lex_state = 237}, - [4459] = {.lex_state = 245}, - [4460] = {.lex_state = 573}, + [4447] = {.lex_state = 635}, + [4448] = {.lex_state = 148}, + [4449] = {.lex_state = 122}, + [4450] = {.lex_state = 33}, + [4451] = {.lex_state = 122}, + [4452] = {.lex_state = 0}, + [4453] = {.lex_state = 0}, + [4454] = {.lex_state = 33}, + [4455] = {.lex_state = 33}, + [4456] = {.lex_state = 122}, + [4457] = {.lex_state = 33}, + [4458] = {.lex_state = 33}, + [4459] = {.lex_state = 189}, + [4460] = {.lex_state = 33}, [4461] = {.lex_state = 33}, [4462] = {.lex_state = 33}, - [4463] = {.lex_state = 245}, - [4464] = {.lex_state = 245}, - [4465] = {.lex_state = 123}, - [4466] = {.lex_state = 33}, - [4467] = {.lex_state = 189}, - [4468] = {.lex_state = 33}, + [4463] = {.lex_state = 125}, + [4464] = {.lex_state = 121}, + [4465] = {.lex_state = 33}, + [4466] = {.lex_state = 0}, + [4467] = {.lex_state = 125}, + [4468] = {.lex_state = 125}, [4469] = {.lex_state = 33}, - [4470] = {.lex_state = 33}, + [4470] = {.lex_state = 148}, [4471] = {.lex_state = 33}, - [4472] = {.lex_state = 123}, - [4473] = {.lex_state = 123}, - [4474] = {.lex_state = 123}, - [4475] = {.lex_state = 33}, - [4476] = {.lex_state = 225}, - [4477] = {.lex_state = 0}, - [4478] = {.lex_state = 0}, - [4479] = {.lex_state = 33}, + [4472] = {.lex_state = 0}, + [4473] = {.lex_state = 121}, + [4474] = {.lex_state = 245}, + [4475] = {.lex_state = 181}, + [4476] = {.lex_state = 125}, + [4477] = {.lex_state = 125}, + [4478] = {.lex_state = 125}, + [4479] = {.lex_state = 123}, [4480] = {.lex_state = 33}, - [4481] = {.lex_state = 33}, - [4482] = {.lex_state = 264}, + [4481] = {.lex_state = 0}, + [4482] = {.lex_state = 33}, [4483] = {.lex_state = 33}, - [4484] = {.lex_state = 33}, - [4485] = {.lex_state = 230}, - [4486] = {.lex_state = 230}, - [4487] = {.lex_state = 245}, - [4488] = {.lex_state = 33}, + [4484] = {.lex_state = 230}, + [4485] = {.lex_state = 123}, + [4486] = {.lex_state = 225}, + [4487] = {.lex_state = 0}, + [4488] = {.lex_state = 230}, [4489] = {.lex_state = 33}, - [4490] = {.lex_state = 216}, - [4491] = {.lex_state = 33}, - [4492] = {.lex_state = 33}, - [4493] = {.lex_state = 0}, - [4494] = {.lex_state = 0}, - [4495] = {.lex_state = 148}, - [4496] = {.lex_state = 225}, - [4497] = {.lex_state = 0}, - [4498] = {.lex_state = 0}, - [4499] = {.lex_state = 0}, - [4500] = {.lex_state = 0}, - [4501] = {.lex_state = 225}, - [4502] = {.lex_state = 0}, + [4490] = {.lex_state = 0}, + [4491] = {.lex_state = 631}, + [4492] = {.lex_state = 0}, + [4493] = {.lex_state = 33}, + [4494] = {.lex_state = 237}, + [4495] = {.lex_state = 264}, + [4496] = {.lex_state = 121}, + [4497] = {.lex_state = 33}, + [4498] = {.lex_state = 245}, + [4499] = {.lex_state = 33}, + [4500] = {.lex_state = 33}, + [4501] = {.lex_state = 33}, + [4502] = {.lex_state = 33}, [4503] = {.lex_state = 33}, - [4504] = {.lex_state = 225}, - [4505] = {.lex_state = 33}, - [4506] = {.lex_state = 225}, - [4507] = {.lex_state = 573}, - [4508] = {.lex_state = 573}, - [4509] = {.lex_state = 573}, + [4504] = {.lex_state = 33}, + [4505] = {.lex_state = 123}, + [4506] = {.lex_state = 123}, + [4507] = {.lex_state = 33}, + [4508] = {.lex_state = 33}, + [4509] = {.lex_state = 33}, [4510] = {.lex_state = 0}, - [4511] = {.lex_state = 0}, - [4512] = {.lex_state = 0}, - [4513] = {.lex_state = 0}, - [4514] = {.lex_state = 43}, - [4515] = {.lex_state = 189}, + [4511] = {.lex_state = 230}, + [4512] = {.lex_state = 245}, + [4513] = {.lex_state = 230}, + [4514] = {.lex_state = 230}, + [4515] = {.lex_state = 123}, [4516] = {.lex_state = 123}, - [4517] = {.lex_state = 123}, - [4518] = {.lex_state = 33}, - [4519] = {.lex_state = 0}, - [4520] = {.lex_state = 47}, - [4521] = {.lex_state = 597}, - [4522] = {.lex_state = 47}, - [4523] = {.lex_state = 240}, - [4524] = {.lex_state = 123}, - [4525] = {.lex_state = 240}, - [4526] = {.lex_state = 123}, - [4527] = {.lex_state = 123}, + [4517] = {.lex_state = 33}, + [4518] = {.lex_state = 225}, + [4519] = {.lex_state = 43}, + [4520] = {.lex_state = 225}, + [4521] = {.lex_state = 33}, + [4522] = {.lex_state = 33}, + [4523] = {.lex_state = 33}, + [4524] = {.lex_state = 264}, + [4525] = {.lex_state = 245}, + [4526] = {.lex_state = 225}, + [4527] = {.lex_state = 33}, [4528] = {.lex_state = 33}, - [4529] = {.lex_state = 0}, - [4530] = {.lex_state = 240}, - [4531] = {.lex_state = 122}, - [4532] = {.lex_state = 123}, - [4533] = {.lex_state = 148}, - [4534] = {.lex_state = 148}, + [4529] = {.lex_state = 33}, + [4530] = {.lex_state = 123}, + [4531] = {.lex_state = 33}, + [4532] = {.lex_state = 245}, + [4533] = {.lex_state = 33}, + [4534] = {.lex_state = 33}, [4535] = {.lex_state = 0}, [4536] = {.lex_state = 0}, - [4537] = {.lex_state = 148}, - [4538] = {.lex_state = 123}, - [4539] = {.lex_state = 0}, - [4540] = {.lex_state = 123}, - [4541] = {.lex_state = 148}, - [4542] = {.lex_state = 240}, - [4543] = {.lex_state = 123}, - [4544] = {.lex_state = 148}, - [4545] = {.lex_state = 148}, - [4546] = {.lex_state = 148}, - [4547] = {.lex_state = 33}, - [4548] = {.lex_state = 123}, - [4549] = {.lex_state = 123}, - [4550] = {.lex_state = 189}, - [4551] = {.lex_state = 123}, - [4552] = {.lex_state = 33}, - [4553] = {.lex_state = 36}, - [4554] = {.lex_state = 123}, - [4555] = {.lex_state = 0}, - [4556] = {.lex_state = 148}, - [4557] = {.lex_state = 123}, - [4558] = {.lex_state = 148}, - [4559] = {.lex_state = 33}, - [4560] = {.lex_state = 271}, + [4537] = {.lex_state = 33}, + [4538] = {.lex_state = 33}, + [4539] = {.lex_state = 33}, + [4540] = {.lex_state = 33}, + [4541] = {.lex_state = 33}, + [4542] = {.lex_state = 245}, + [4543] = {.lex_state = 33}, + [4544] = {.lex_state = 230}, + [4545] = {.lex_state = 230}, + [4546] = {.lex_state = 128}, + [4547] = {.lex_state = 245}, + [4548] = {.lex_state = 43}, + [4549] = {.lex_state = 225}, + [4550] = {.lex_state = 123}, + [4551] = {.lex_state = 237}, + [4552] = {.lex_state = 0}, + [4553] = {.lex_state = 33}, + [4554] = {.lex_state = 245}, + [4555] = {.lex_state = 230}, + [4556] = {.lex_state = 230}, + [4557] = {.lex_state = 33}, + [4558] = {.lex_state = 33}, + [4559] = {.lex_state = 245}, + [4560] = {.lex_state = 33}, [4561] = {.lex_state = 33}, - [4562] = {.lex_state = 0}, - [4563] = {.lex_state = 0}, - [4564] = {.lex_state = 240}, - [4565] = {.lex_state = 189}, - [4566] = {.lex_state = 0}, - [4567] = {.lex_state = 0}, - [4568] = {.lex_state = 179}, - [4569] = {.lex_state = 0}, - [4570] = {.lex_state = 0}, - [4571] = {.lex_state = 33}, - [4572] = {.lex_state = 123}, - [4573] = {.lex_state = 0}, - [4574] = {.lex_state = 43}, - [4575] = {.lex_state = 0}, - [4576] = {.lex_state = 0}, - [4577] = {.lex_state = 0}, - [4578] = {.lex_state = 33}, + [4562] = {.lex_state = 237}, + [4563] = {.lex_state = 230}, + [4564] = {.lex_state = 237}, + [4565] = {.lex_state = 33}, + [4566] = {.lex_state = 245}, + [4567] = {.lex_state = 33}, + [4568] = {.lex_state = 33}, + [4569] = {.lex_state = 252}, + [4570] = {.lex_state = 33}, + [4571] = {.lex_state = 245}, + [4572] = {.lex_state = 33}, + [4573] = {.lex_state = 237}, + [4574] = {.lex_state = 130}, + [4575] = {.lex_state = 245}, + [4576] = {.lex_state = 33}, + [4577] = {.lex_state = 33}, + [4578] = {.lex_state = 123}, [4579] = {.lex_state = 0}, - [4580] = {.lex_state = 189}, - [4581] = {.lex_state = 189}, - [4582] = {.lex_state = 47}, - [4583] = {.lex_state = 0}, - [4584] = {.lex_state = 0}, - [4585] = {.lex_state = 0}, - [4586] = {.lex_state = 278}, - [4587] = {.lex_state = 123}, + [4580] = {.lex_state = 33}, + [4581] = {.lex_state = 33}, + [4582] = {.lex_state = 128}, + [4583] = {.lex_state = 584}, + [4584] = {.lex_state = 635}, + [4585] = {.lex_state = 230}, + [4586] = {.lex_state = 230}, + [4587] = {.lex_state = 181}, [4588] = {.lex_state = 0}, - [4589] = {.lex_state = 271}, - [4590] = {.lex_state = 278}, - [4591] = {.lex_state = 0}, - [4592] = {.lex_state = 123}, - [4593] = {.lex_state = 189}, - [4594] = {.lex_state = 33}, - [4595] = {.lex_state = 231}, + [4589] = {.lex_state = 252}, + [4590] = {.lex_state = 123}, + [4591] = {.lex_state = 33}, + [4592] = {.lex_state = 0}, + [4593] = {.lex_state = 33}, + [4594] = {.lex_state = 264}, + [4595] = {.lex_state = 33}, [4596] = {.lex_state = 33}, - [4597] = {.lex_state = 0}, - [4598] = {.lex_state = 240}, - [4599] = {.lex_state = 240}, - [4600] = {.lex_state = 122}, - [4601] = {.lex_state = 231}, + [4597] = {.lex_state = 33}, + [4598] = {.lex_state = 264}, + [4599] = {.lex_state = 264}, + [4600] = {.lex_state = 33}, + [4601] = {.lex_state = 33}, [4602] = {.lex_state = 33}, [4603] = {.lex_state = 123}, - [4604] = {.lex_state = 0}, - [4605] = {.lex_state = 230}, - [4606] = {.lex_state = 36}, - [4607] = {.lex_state = 148}, - [4608] = {.lex_state = 0}, - [4609] = {.lex_state = 0}, - [4610] = {.lex_state = 0}, - [4611] = {.lex_state = 123}, + [4604] = {.lex_state = 33}, + [4605] = {.lex_state = 33}, + [4606] = {.lex_state = 33}, + [4607] = {.lex_state = 33}, + [4608] = {.lex_state = 33}, + [4609] = {.lex_state = 33}, + [4610] = {.lex_state = 33}, + [4611] = {.lex_state = 33}, [4612] = {.lex_state = 33}, - [4613] = {.lex_state = 0}, + [4613] = {.lex_state = 245}, [4614] = {.lex_state = 33}, - [4615] = {.lex_state = 148}, - [4616] = {.lex_state = 240}, - [4617] = {.lex_state = 228}, - [4618] = {.lex_state = 0}, - [4619] = {.lex_state = 228}, - [4620] = {.lex_state = 122}, - [4621] = {.lex_state = 0}, - [4622] = {.lex_state = 36}, - [4623] = {.lex_state = 33}, - [4624] = {.lex_state = 0}, - [4625] = {.lex_state = 0}, - [4626] = {.lex_state = 0}, - [4627] = {.lex_state = 123}, - [4628] = {.lex_state = 0}, - [4629] = {.lex_state = 0}, - [4630] = {.lex_state = 628}, - [4631] = {.lex_state = 0}, + [4615] = {.lex_state = 245}, + [4616] = {.lex_state = 245}, + [4617] = {.lex_state = 33}, + [4618] = {.lex_state = 33}, + [4619] = {.lex_state = 33}, + [4620] = {.lex_state = 33}, + [4621] = {.lex_state = 33}, + [4622] = {.lex_state = 189}, + [4623] = {.lex_state = 189}, + [4624] = {.lex_state = 123}, + [4625] = {.lex_state = 189}, + [4626] = {.lex_state = 33}, + [4627] = {.lex_state = 33}, + [4628] = {.lex_state = 189}, + [4629] = {.lex_state = 123}, + [4630] = {.lex_state = 245}, + [4631] = {.lex_state = 121}, [4632] = {.lex_state = 0}, - [4633] = {.lex_state = 123}, - [4634] = {.lex_state = 0}, - [4635] = {.lex_state = 123}, - [4636] = {.lex_state = 123}, - [4637] = {.lex_state = 33}, - [4638] = {.lex_state = 0}, - [4639] = {.lex_state = 0}, - [4640] = {.lex_state = 0}, - [4641] = {.lex_state = 0}, - [4642] = {.lex_state = 0}, - [4643] = {.lex_state = 33}, + [4633] = {.lex_state = 33}, + [4634] = {.lex_state = 225}, + [4635] = {.lex_state = 0}, + [4636] = {.lex_state = 0}, + [4637] = {.lex_state = 0}, + [4638] = {.lex_state = 121}, + [4639] = {.lex_state = 33}, + [4640] = {.lex_state = 121}, + [4641] = {.lex_state = 128}, + [4642] = {.lex_state = 33}, + [4643] = {.lex_state = 0}, [4644] = {.lex_state = 0}, [4645] = {.lex_state = 0}, - [4646] = {.lex_state = 123}, - [4647] = {.lex_state = 0}, - [4648] = {.lex_state = 91}, - [4649] = {.lex_state = 0}, - [4650] = {.lex_state = 0}, - [4651] = {.lex_state = 125}, + [4646] = {.lex_state = 0}, + [4647] = {.lex_state = 189}, + [4648] = {.lex_state = 237}, + [4649] = {.lex_state = 33}, + [4650] = {.lex_state = 230}, + [4651] = {.lex_state = 0}, [4652] = {.lex_state = 0}, - [4653] = {.lex_state = 0}, + [4653] = {.lex_state = 123}, [4654] = {.lex_state = 0}, - [4655] = {.lex_state = 128}, + [4655] = {.lex_state = 240}, [4656] = {.lex_state = 0}, - [4657] = {.lex_state = 269}, - [4658] = {.lex_state = 0}, + [4657] = {.lex_state = 123}, + [4658] = {.lex_state = 240}, [4659] = {.lex_state = 123}, - [4660] = {.lex_state = 628}, - [4661] = {.lex_state = 33}, - [4662] = {.lex_state = 36}, - [4663] = {.lex_state = 0}, + [4660] = {.lex_state = 123}, + [4661] = {.lex_state = 0}, + [4662] = {.lex_state = 271}, + [4663] = {.lex_state = 123}, [4664] = {.lex_state = 0}, - [4665] = {.lex_state = 0}, - [4666] = {.lex_state = 573}, - [4667] = {.lex_state = 0}, - [4668] = {.lex_state = 33}, - [4669] = {.lex_state = 33}, - [4670] = {.lex_state = 189}, - [4671] = {.lex_state = 189}, - [4672] = {.lex_state = 0}, - [4673] = {.lex_state = 148}, - [4674] = {.lex_state = 240}, - [4675] = {.lex_state = 122}, - [4676] = {.lex_state = 123}, - [4677] = {.lex_state = 123}, + [4665] = {.lex_state = 128}, + [4666] = {.lex_state = 36}, + [4667] = {.lex_state = 148}, + [4668] = {.lex_state = 271}, + [4669] = {.lex_state = 148}, + [4670] = {.lex_state = 47}, + [4671] = {.lex_state = 225}, + [4672] = {.lex_state = 240}, + [4673] = {.lex_state = 0}, + [4674] = {.lex_state = 33}, + [4675] = {.lex_state = 0}, + [4676] = {.lex_state = 0}, + [4677] = {.lex_state = 240}, [4678] = {.lex_state = 123}, - [4679] = {.lex_state = 123}, - [4680] = {.lex_state = 123}, - [4681] = {.lex_state = 148}, - [4682] = {.lex_state = 123}, - [4683] = {.lex_state = 123}, - [4684] = {.lex_state = 240}, - [4685] = {.lex_state = 228}, - [4686] = {.lex_state = 36}, - [4687] = {.lex_state = 123}, - [4688] = {.lex_state = 36}, - [4689] = {.lex_state = 0}, + [4679] = {.lex_state = 36}, + [4680] = {.lex_state = 0}, + [4681] = {.lex_state = 0}, + [4682] = {.lex_state = 0}, + [4683] = {.lex_state = 33}, + [4684] = {.lex_state = 0}, + [4685] = {.lex_state = 148}, + [4686] = {.lex_state = 189}, + [4687] = {.lex_state = 0}, + [4688] = {.lex_state = 0}, + [4689] = {.lex_state = 240}, [4690] = {.lex_state = 36}, - [4691] = {.lex_state = 0}, - [4692] = {.lex_state = 123}, - [4693] = {.lex_state = 232}, - [4694] = {.lex_state = 123}, - [4695] = {.lex_state = 123}, + [4691] = {.lex_state = 584}, + [4692] = {.lex_state = 254}, + [4693] = {.lex_state = 36}, + [4694] = {.lex_state = 240}, + [4695] = {.lex_state = 43}, [4696] = {.lex_state = 0}, - [4697] = {.lex_state = 91}, - [4698] = {.lex_state = 0}, - [4699] = {.lex_state = 0}, - [4700] = {.lex_state = 0}, - [4701] = {.lex_state = 123}, - [4702] = {.lex_state = 189}, - [4703] = {.lex_state = 0}, - [4704] = {.lex_state = 0}, + [4697] = {.lex_state = 278}, + [4698] = {.lex_state = 33}, + [4699] = {.lex_state = 123}, + [4700] = {.lex_state = 91}, + [4701] = {.lex_state = 228}, + [4702] = {.lex_state = 36}, + [4703] = {.lex_state = 148}, + [4704] = {.lex_state = 122}, [4705] = {.lex_state = 0}, - [4706] = {.lex_state = 123}, - [4707] = {.lex_state = 36}, - [4708] = {.lex_state = 240}, + [4706] = {.lex_state = 0}, + [4707] = {.lex_state = 0}, + [4708] = {.lex_state = 0}, [4709] = {.lex_state = 0}, - [4710] = {.lex_state = 123}, - [4711] = {.lex_state = 47}, - [4712] = {.lex_state = 47}, - [4713] = {.lex_state = 0}, - [4714] = {.lex_state = 0}, - [4715] = {.lex_state = 0}, - [4716] = {.lex_state = 47}, - [4717] = {.lex_state = 240}, - [4718] = {.lex_state = 189}, - [4719] = {.lex_state = 0}, - [4720] = {.lex_state = 189}, - [4721] = {.lex_state = 189}, - [4722] = {.lex_state = 240}, - [4723] = {.lex_state = 122}, - [4724] = {.lex_state = 33}, + [4710] = {.lex_state = 0}, + [4711] = {.lex_state = 189}, + [4712] = {.lex_state = 189}, + [4713] = {.lex_state = 123}, + [4714] = {.lex_state = 47}, + [4715] = {.lex_state = 189}, + [4716] = {.lex_state = 148}, + [4717] = {.lex_state = 123}, + [4718] = {.lex_state = 0}, + [4719] = {.lex_state = 123}, + [4720] = {.lex_state = 0}, + [4721] = {.lex_state = 240}, + [4722] = {.lex_state = 123}, + [4723] = {.lex_state = 123}, + [4724] = {.lex_state = 0}, [4725] = {.lex_state = 0}, - [4726] = {.lex_state = 0}, - [4727] = {.lex_state = 123}, - [4728] = {.lex_state = 0}, - [4729] = {.lex_state = 123}, - [4730] = {.lex_state = 624}, - [4731] = {.lex_state = 123}, - [4732] = {.lex_state = 33}, - [4733] = {.lex_state = 33}, - [4734] = {.lex_state = 573}, + [4726] = {.lex_state = 33}, + [4727] = {.lex_state = 47}, + [4728] = {.lex_state = 123}, + [4729] = {.lex_state = 232}, + [4730] = {.lex_state = 33}, + [4731] = {.lex_state = 0}, + [4732] = {.lex_state = 639}, + [4733] = {.lex_state = 0}, + [4734] = {.lex_state = 47}, [4735] = {.lex_state = 123}, - [4736] = {.lex_state = 189}, - [4737] = {.lex_state = 189}, - [4738] = {.lex_state = 122}, - [4739] = {.lex_state = 0}, - [4740] = {.lex_state = 123}, - [4741] = {.lex_state = 128}, - [4742] = {.lex_state = 189}, - [4743] = {.lex_state = 189}, - [4744] = {.lex_state = 228}, - [4745] = {.lex_state = 0}, + [4736] = {.lex_state = 123}, + [4737] = {.lex_state = 123}, + [4738] = {.lex_state = 128}, + [4739] = {.lex_state = 608}, + [4740] = {.lex_state = 33}, + [4741] = {.lex_state = 47}, + [4742] = {.lex_state = 0}, + [4743] = {.lex_state = 123}, + [4744] = {.lex_state = 0}, + [4745] = {.lex_state = 123}, [4746] = {.lex_state = 0}, - [4747] = {.lex_state = 47}, - [4748] = {.lex_state = 33}, - [4749] = {.lex_state = 123}, - [4750] = {.lex_state = 33}, - [4751] = {.lex_state = 33}, - [4752] = {.lex_state = 148}, - [4753] = {.lex_state = 123}, - [4754] = {.lex_state = 240}, - [4755] = {.lex_state = 125}, - [4756] = {.lex_state = 148}, - [4757] = {.lex_state = 33}, - [4758] = {.lex_state = 123}, - [4759] = {.lex_state = 254}, - [4760] = {.lex_state = 225}, - [4761] = {.lex_state = 0}, - [4762] = {.lex_state = 240}, + [4747] = {.lex_state = 231}, + [4748] = {.lex_state = 240}, + [4749] = {.lex_state = 0}, + [4750] = {.lex_state = 230}, + [4751] = {.lex_state = 123}, + [4752] = {.lex_state = 0}, + [4753] = {.lex_state = 228}, + [4754] = {.lex_state = 189}, + [4755] = {.lex_state = 189}, + [4756] = {.lex_state = 0}, + [4757] = {.lex_state = 0}, + [4758] = {.lex_state = 0}, + [4759] = {.lex_state = 0}, + [4760] = {.lex_state = 0}, + [4761] = {.lex_state = 125}, + [4762] = {.lex_state = 0}, [4763] = {.lex_state = 0}, - [4764] = {.lex_state = 33}, - [4765] = {.lex_state = 123}, - [4766] = {.lex_state = 240}, - [4767] = {.lex_state = 278}, - [4768] = {.lex_state = 0}, - [4769] = {.lex_state = 33}, - [4770] = {.lex_state = 123}, - [4771] = {.lex_state = 128}, + [4764] = {.lex_state = 0}, + [4765] = {.lex_state = 189}, + [4766] = {.lex_state = 0}, + [4767] = {.lex_state = 0}, + [4768] = {.lex_state = 231}, + [4769] = {.lex_state = 0}, + [4770] = {.lex_state = 0}, + [4771] = {.lex_state = 0}, [4772] = {.lex_state = 0}, - [4773] = {.lex_state = 148}, - [4774] = {.lex_state = 0}, - [4775] = {.lex_state = 123}, - [4776] = {.lex_state = 33}, - [4777] = {.lex_state = 123}, - [4778] = {.lex_state = 0}, - [4779] = {.lex_state = 228}, - [4780] = {.lex_state = 123}, - [4781] = {.lex_state = 1713}, - [4782] = {.lex_state = 123}, - [4783] = {.lex_state = 123}, - [4784] = {.lex_state = 123}, - [4785] = {.lex_state = 123}, - [4786] = {.lex_state = 624}, - [4787] = {.lex_state = 624}, + [4773] = {.lex_state = 0}, + [4774] = {.lex_state = 33}, + [4775] = {.lex_state = 0}, + [4776] = {.lex_state = 0}, + [4777] = {.lex_state = 189}, + [4778] = {.lex_state = 123}, + [4779] = {.lex_state = 189}, + [4780] = {.lex_state = 0}, + [4781] = {.lex_state = 123}, + [4782] = {.lex_state = 0}, + [4783] = {.lex_state = 0}, + [4784] = {.lex_state = 0}, + [4785] = {.lex_state = 33}, + [4786] = {.lex_state = 148}, + [4787] = {.lex_state = 148}, [4788] = {.lex_state = 123}, - [4789] = {.lex_state = 123}, - [4790] = {.lex_state = 228}, - [4791] = {.lex_state = 0}, - [4792] = {.lex_state = 574}, + [4789] = {.lex_state = 122}, + [4790] = {.lex_state = 0}, + [4791] = {.lex_state = 123}, + [4792] = {.lex_state = 189}, [4793] = {.lex_state = 123}, - [4794] = {.lex_state = 228}, + [4794] = {.lex_state = 635}, [4795] = {.lex_state = 0}, [4796] = {.lex_state = 0}, - [4797] = {.lex_state = 240}, + [4797] = {.lex_state = 123}, [4798] = {.lex_state = 0}, - [4799] = {.lex_state = 0}, - [4800] = {.lex_state = 123}, - [4801] = {.lex_state = 2181}, - [4802] = {.lex_state = 2181}, - [4803] = {.lex_state = 2183}, - [4804] = {.lex_state = 148}, - [4805] = {.lex_state = 148}, - [4806] = {.lex_state = 2181}, - [4807] = {.lex_state = 2181}, - [4808] = {.lex_state = 2181}, - [4809] = {.lex_state = 123}, - [4810] = {.lex_state = 123}, - [4811] = {.lex_state = 2181}, - [4812] = {.lex_state = 125}, - [4813] = {.lex_state = 0}, - [4814] = {.lex_state = 0}, - [4815] = {.lex_state = 0}, - [4816] = {.lex_state = 228}, + [4799] = {.lex_state = 122}, + [4800] = {.lex_state = 33}, + [4801] = {.lex_state = 0}, + [4802] = {.lex_state = 0}, + [4803] = {.lex_state = 91}, + [4804] = {.lex_state = 0}, + [4805] = {.lex_state = 189}, + [4806] = {.lex_state = 179}, + [4807] = {.lex_state = 0}, + [4808] = {.lex_state = 0}, + [4809] = {.lex_state = 148}, + [4810] = {.lex_state = 0}, + [4811] = {.lex_state = 0}, + [4812] = {.lex_state = 33}, + [4813] = {.lex_state = 148}, + [4814] = {.lex_state = 123}, + [4815] = {.lex_state = 148}, + [4816] = {.lex_state = 123}, [4817] = {.lex_state = 0}, - [4818] = {.lex_state = 0}, - [4819] = {.lex_state = 2185}, - [4820] = {.lex_state = 228}, - [4821] = {.lex_state = 0}, - [4822] = {.lex_state = 123}, + [4818] = {.lex_state = 123}, + [4819] = {.lex_state = 189}, + [4820] = {.lex_state = 123}, + [4821] = {.lex_state = 33}, + [4822] = {.lex_state = 0}, [4823] = {.lex_state = 123}, [4824] = {.lex_state = 123}, - [4825] = {.lex_state = 0}, - [4826] = {.lex_state = 148}, - [4827] = {.lex_state = 125}, + [4825] = {.lex_state = 33}, + [4826] = {.lex_state = 0}, + [4827] = {.lex_state = 123}, [4828] = {.lex_state = 123}, - [4829] = {.lex_state = 125}, - [4830] = {.lex_state = 123}, - [4831] = {.lex_state = 0}, - [4832] = {.lex_state = 228}, - [4833] = {.lex_state = 122}, - [4834] = {.lex_state = 0}, - [4835] = {.lex_state = 123}, - [4836] = {.lex_state = 0}, - [4837] = {.lex_state = 0}, - [4838] = {.lex_state = 2181}, - [4839] = {.lex_state = 2181}, + [4829] = {.lex_state = 0}, + [4830] = {.lex_state = 33}, + [4831] = {.lex_state = 269}, + [4832] = {.lex_state = 0}, + [4833] = {.lex_state = 47}, + [4834] = {.lex_state = 36}, + [4835] = {.lex_state = 148}, + [4836] = {.lex_state = 278}, + [4837] = {.lex_state = 122}, + [4838] = {.lex_state = 240}, + [4839] = {.lex_state = 33}, [4840] = {.lex_state = 0}, - [4841] = {.lex_state = 0}, - [4842] = {.lex_state = 0}, - [4843] = {.lex_state = 0}, - [4844] = {.lex_state = 0}, - [4845] = {.lex_state = 0}, + [4841] = {.lex_state = 123}, + [4842] = {.lex_state = 123}, + [4843] = {.lex_state = 125}, + [4844] = {.lex_state = 228}, + [4845] = {.lex_state = 33}, [4846] = {.lex_state = 123}, - [4847] = {.lex_state = 0}, + [4847] = {.lex_state = 123}, [4848] = {.lex_state = 0}, [4849] = {.lex_state = 0}, - [4850] = {.lex_state = 0}, - [4851] = {.lex_state = 123}, - [4852] = {.lex_state = 123}, - [4853] = {.lex_state = 123}, - [4854] = {.lex_state = 2185}, - [4855] = {.lex_state = 2185}, - [4856] = {.lex_state = 2181}, - [4857] = {.lex_state = 2181}, - [4858] = {.lex_state = 0}, - [4859] = {.lex_state = 123}, - [4860] = {.lex_state = 228}, - [4861] = {.lex_state = 123}, - [4862] = {.lex_state = 0}, - [4863] = {.lex_state = 0}, - [4864] = {.lex_state = 0}, - [4865] = {.lex_state = 0}, - [4866] = {.lex_state = 0}, - [4867] = {.lex_state = 2183}, - [4868] = {.lex_state = 0}, - [4869] = {.lex_state = 36}, - [4870] = {.lex_state = 123}, - [4871] = {.lex_state = 2185}, + [4850] = {.lex_state = 33}, + [4851] = {.lex_state = 47}, + [4852] = {.lex_state = 639}, + [4853] = {.lex_state = 189}, + [4854] = {.lex_state = 33}, + [4855] = {.lex_state = 0}, + [4856] = {.lex_state = 148}, + [4857] = {.lex_state = 33}, + [4858] = {.lex_state = 148}, + [4859] = {.lex_state = 33}, + [4860] = {.lex_state = 148}, + [4861] = {.lex_state = 240}, + [4862] = {.lex_state = 123}, + [4863] = {.lex_state = 122}, + [4864] = {.lex_state = 33}, + [4865] = {.lex_state = 33}, + [4866] = {.lex_state = 240}, + [4867] = {.lex_state = 123}, + [4868] = {.lex_state = 33}, + [4869] = {.lex_state = 189}, + [4870] = {.lex_state = 189}, + [4871] = {.lex_state = 33}, [4872] = {.lex_state = 0}, - [4873] = {.lex_state = 0}, - [4874] = {.lex_state = 0}, - [4875] = {.lex_state = 0}, - [4876] = {.lex_state = 573}, - [4877] = {.lex_state = 0}, - [4878] = {.lex_state = 123}, - [4879] = {.lex_state = 123}, - [4880] = {.lex_state = 228}, - [4881] = {.lex_state = 2181}, - [4882] = {.lex_state = 123}, - [4883] = {.lex_state = 123}, - [4884] = {.lex_state = 2181}, - [4885] = {.lex_state = 0}, - [4886] = {.lex_state = 0}, - [4887] = {.lex_state = 0}, - [4888] = {.lex_state = 273}, + [4873] = {.lex_state = 123}, + [4874] = {.lex_state = 584}, + [4875] = {.lex_state = 33}, + [4876] = {.lex_state = 240}, + [4877] = {.lex_state = 278}, + [4878] = {.lex_state = 0}, + [4879] = {.lex_state = 0}, + [4880] = {.lex_state = 0}, + [4881] = {.lex_state = 0}, + [4882] = {.lex_state = 33}, + [4883] = {.lex_state = 122}, + [4884] = {.lex_state = 0}, + [4885] = {.lex_state = 240}, + [4886] = {.lex_state = 228}, + [4887] = {.lex_state = 36}, + [4888] = {.lex_state = 0}, [4889] = {.lex_state = 123}, - [4890] = {.lex_state = 628}, - [4891] = {.lex_state = 273}, + [4890] = {.lex_state = 240}, + [4891] = {.lex_state = 36}, [4892] = {.lex_state = 123}, - [4893] = {.lex_state = 2181}, - [4894] = {.lex_state = 0}, + [4893] = {.lex_state = 123}, + [4894] = {.lex_state = 33}, [4895] = {.lex_state = 0}, - [4896] = {.lex_state = 33}, + [4896] = {.lex_state = 148}, [4897] = {.lex_state = 123}, - [4898] = {.lex_state = 0}, - [4899] = {.lex_state = 228}, - [4900] = {.lex_state = 2185}, - [4901] = {.lex_state = 225}, + [4898] = {.lex_state = 33}, + [4899] = {.lex_state = 123}, + [4900] = {.lex_state = 240}, + [4901] = {.lex_state = 123}, [4902] = {.lex_state = 123}, - [4903] = {.lex_state = 2185}, - [4904] = {.lex_state = 2}, - [4905] = {.lex_state = 0}, - [4906] = {.lex_state = 2185}, - [4907] = {.lex_state = 0}, - [4908] = {.lex_state = 228}, - [4909] = {.lex_state = 0}, - [4910] = {.lex_state = 0}, - [4911] = {.lex_state = 123}, - [4912] = {.lex_state = 123}, - [4913] = {.lex_state = 0}, + [4903] = {.lex_state = 0}, + [4904] = {.lex_state = 123}, + [4905] = {.lex_state = 123}, + [4906] = {.lex_state = 240}, + [4907] = {.lex_state = 148}, + [4908] = {.lex_state = 0}, + [4909] = {.lex_state = 33}, + [4910] = {.lex_state = 128}, + [4911] = {.lex_state = 2214}, + [4912] = {.lex_state = 0}, + [4913] = {.lex_state = 123}, [4914] = {.lex_state = 0}, - [4915] = {.lex_state = 123}, - [4916] = {.lex_state = 2183}, + [4915] = {.lex_state = 2214}, + [4916] = {.lex_state = 125}, [4917] = {.lex_state = 0}, [4918] = {.lex_state = 123}, [4919] = {.lex_state = 0}, - [4920] = {.lex_state = 2183}, + [4920] = {.lex_state = 0}, [4921] = {.lex_state = 0}, - [4922] = {.lex_state = 148}, + [4922] = {.lex_state = 228}, [4923] = {.lex_state = 0}, - [4924] = {.lex_state = 228}, - [4925] = {.lex_state = 2185}, - [4926] = {.lex_state = 2185}, - [4927] = {.lex_state = 33}, - [4928] = {.lex_state = 0}, - [4929] = {.lex_state = 2181}, - [4930] = {.lex_state = 2181}, + [4924] = {.lex_state = 0}, + [4925] = {.lex_state = 228}, + [4926] = {.lex_state = 228}, + [4927] = {.lex_state = 123}, + [4928] = {.lex_state = 2210}, + [4929] = {.lex_state = 123}, + [4930] = {.lex_state = 228}, [4931] = {.lex_state = 0}, - [4932] = {.lex_state = 573}, - [4933] = {.lex_state = 2181}, - [4934] = {.lex_state = 2181}, - [4935] = {.lex_state = 2183}, - [4936] = {.lex_state = 228}, + [4932] = {.lex_state = 0}, + [4933] = {.lex_state = 123}, + [4934] = {.lex_state = 0}, + [4935] = {.lex_state = 2214}, + [4936] = {.lex_state = 0}, [4937] = {.lex_state = 0}, - [4938] = {.lex_state = 0}, - [4939] = {.lex_state = 123}, - [4940] = {.lex_state = 122}, - [4941] = {.lex_state = 123}, - [4942] = {.lex_state = 228}, + [4938] = {.lex_state = 2214}, + [4939] = {.lex_state = 228}, + [4940] = {.lex_state = 0}, + [4941] = {.lex_state = 0}, + [4942] = {.lex_state = 2210}, [4943] = {.lex_state = 123}, [4944] = {.lex_state = 0}, [4945] = {.lex_state = 0}, - [4946] = {.lex_state = 228}, + [4946] = {.lex_state = 122}, [4947] = {.lex_state = 0}, - [4948] = {.lex_state = 33}, - [4949] = {.lex_state = 1188}, + [4948] = {.lex_state = 2210}, + [4949] = {.lex_state = 2210}, [4950] = {.lex_state = 0}, - [4951] = {.lex_state = 0}, - [4952] = {.lex_state = 33}, - [4953] = {.lex_state = 620}, - [4954] = {.lex_state = 33}, - [4955] = {.lex_state = 0}, - [4956] = {.lex_state = 1188}, - [4957] = {.lex_state = 0, .external_lex_state = 3}, - [4958] = {.lex_state = 231}, - [4959] = {.lex_state = 228}, + [4951] = {.lex_state = 1742}, + [4952] = {.lex_state = 0}, + [4953] = {.lex_state = 0}, + [4954] = {.lex_state = 0}, + [4955] = {.lex_state = 228}, + [4956] = {.lex_state = 36}, + [4957] = {.lex_state = 0}, + [4958] = {.lex_state = 0}, + [4959] = {.lex_state = 123}, [4960] = {.lex_state = 0}, - [4961] = {.lex_state = 0}, + [4961] = {.lex_state = 123}, [4962] = {.lex_state = 0}, [4963] = {.lex_state = 0}, - [4964] = {.lex_state = 0}, - [4965] = {.lex_state = 573}, - [4966] = {.lex_state = 573}, - [4967] = {.lex_state = 33}, - [4968] = {.lex_state = 0}, - [4969] = {.lex_state = 147}, + [4964] = {.lex_state = 584}, + [4965] = {.lex_state = 0}, + [4966] = {.lex_state = 2212}, + [4967] = {.lex_state = 225}, + [4968] = {.lex_state = 123}, + [4969] = {.lex_state = 123}, [4970] = {.lex_state = 0}, - [4971] = {.lex_state = 0, .external_lex_state = 3}, - [4972] = {.lex_state = 0}, - [4973] = {.lex_state = 573}, - [4974] = {.lex_state = 33}, + [4971] = {.lex_state = 2210}, + [4972] = {.lex_state = 2210}, + [4973] = {.lex_state = 2210}, + [4974] = {.lex_state = 0}, [4975] = {.lex_state = 0}, - [4976] = {.lex_state = 573}, - [4977] = {.lex_state = 0}, + [4976] = {.lex_state = 0}, + [4977] = {.lex_state = 123}, [4978] = {.lex_state = 0}, - [4979] = {.lex_state = 0}, - [4980] = {.lex_state = 573}, - [4981] = {.lex_state = 573}, - [4982] = {.lex_state = 33}, - [4983] = {.lex_state = 33}, - [4984] = {.lex_state = 33}, - [4985] = {.lex_state = 228}, - [4986] = {.lex_state = 0, .external_lex_state = 3}, - [4987] = {.lex_state = 0, .external_lex_state = 3}, - [4988] = {.lex_state = 573}, - [4989] = {.lex_state = 573}, + [4979] = {.lex_state = 2212}, + [4980] = {.lex_state = 123}, + [4981] = {.lex_state = 123}, + [4982] = {.lex_state = 123}, + [4983] = {.lex_state = 639}, + [4984] = {.lex_state = 228}, + [4985] = {.lex_state = 0}, + [4986] = {.lex_state = 0}, + [4987] = {.lex_state = 123}, + [4988] = {.lex_state = 0}, + [4989] = {.lex_state = 0}, [4990] = {.lex_state = 0}, - [4991] = {.lex_state = 228}, + [4991] = {.lex_state = 2212}, [4992] = {.lex_state = 0}, - [4993] = {.lex_state = 573}, - [4994] = {.lex_state = 573}, - [4995] = {.lex_state = 1188}, - [4996] = {.lex_state = 33}, - [4997] = {.lex_state = 0, .external_lex_state = 3}, + [4993] = {.lex_state = 125}, + [4994] = {.lex_state = 0}, + [4995] = {.lex_state = 0}, + [4996] = {.lex_state = 0}, + [4997] = {.lex_state = 148}, [4998] = {.lex_state = 0}, - [4999] = {.lex_state = 122}, - [5000] = {.lex_state = 147}, - [5001] = {.lex_state = 0}, - [5002] = {.lex_state = 0}, - [5003] = {.lex_state = 0}, - [5004] = {.lex_state = 573}, - [5005] = {.lex_state = 573}, + [4999] = {.lex_state = 123}, + [5000] = {.lex_state = 2210}, + [5001] = {.lex_state = 2212}, + [5002] = {.lex_state = 125}, + [5003] = {.lex_state = 2214}, + [5004] = {.lex_state = 123}, + [5005] = {.lex_state = 0}, [5006] = {.lex_state = 0}, - [5007] = {.lex_state = 0}, - [5008] = {.lex_state = 0, .external_lex_state = 3}, + [5007] = {.lex_state = 123}, + [5008] = {.lex_state = 0}, [5009] = {.lex_state = 0}, - [5010] = {.lex_state = 231}, - [5011] = {.lex_state = 620}, - [5012] = {.lex_state = 231}, - [5013] = {.lex_state = 0}, - [5014] = {.lex_state = 573}, - [5015] = {.lex_state = 573}, - [5016] = {.lex_state = 2181}, - [5017] = {.lex_state = 0}, - [5018] = {.lex_state = 0, .external_lex_state = 3}, - [5019] = {.lex_state = 2196}, - [5020] = {.lex_state = 0}, - [5021] = {.lex_state = 573}, - [5022] = {.lex_state = 573}, - [5023] = {.lex_state = 0}, - [5024] = {.lex_state = 33}, - [5025] = {.lex_state = 0, .external_lex_state = 3}, - [5026] = {.lex_state = 2}, - [5027] = {.lex_state = 0}, - [5028] = {.lex_state = 573}, - [5029] = {.lex_state = 573}, - [5030] = {.lex_state = 1188}, - [5031] = {.lex_state = 0}, - [5032] = {.lex_state = 0, .external_lex_state = 3}, - [5033] = {.lex_state = 231}, - [5034] = {.lex_state = 0}, - [5035] = {.lex_state = 573}, - [5036] = {.lex_state = 573}, - [5037] = {.lex_state = 0}, - [5038] = {.lex_state = 33}, - [5039] = {.lex_state = 0, .external_lex_state = 3}, - [5040] = {.lex_state = 0}, - [5041] = {.lex_state = 0}, - [5042] = {.lex_state = 573}, - [5043] = {.lex_state = 573}, - [5044] = {.lex_state = 0}, - [5045] = {.lex_state = 33}, - [5046] = {.lex_state = 0, .external_lex_state = 3}, - [5047] = {.lex_state = 122}, - [5048] = {.lex_state = 0}, - [5049] = {.lex_state = 573}, - [5050] = {.lex_state = 573}, + [5010] = {.lex_state = 0}, + [5011] = {.lex_state = 123}, + [5012] = {.lex_state = 148}, + [5013] = {.lex_state = 148}, + [5014] = {.lex_state = 148}, + [5015] = {.lex_state = 123}, + [5016] = {.lex_state = 635}, + [5017] = {.lex_state = 585}, + [5018] = {.lex_state = 123}, + [5019] = {.lex_state = 228}, + [5020] = {.lex_state = 123}, + [5021] = {.lex_state = 123}, + [5022] = {.lex_state = 123}, + [5023] = {.lex_state = 2}, + [5024] = {.lex_state = 123}, + [5025] = {.lex_state = 123}, + [5026] = {.lex_state = 0}, + [5027] = {.lex_state = 273}, + [5028] = {.lex_state = 2212}, + [5029] = {.lex_state = 2210}, + [5030] = {.lex_state = 0}, + [5031] = {.lex_state = 123}, + [5032] = {.lex_state = 0}, + [5033] = {.lex_state = 273}, + [5034] = {.lex_state = 122}, + [5035] = {.lex_state = 0}, + [5036] = {.lex_state = 635}, + [5037] = {.lex_state = 228}, + [5038] = {.lex_state = 228}, + [5039] = {.lex_state = 123}, + [5040] = {.lex_state = 228}, + [5041] = {.lex_state = 2214}, + [5042] = {.lex_state = 123}, + [5043] = {.lex_state = 33}, + [5044] = {.lex_state = 123}, + [5045] = {.lex_state = 0}, + [5046] = {.lex_state = 0}, + [5047] = {.lex_state = 0}, + [5048] = {.lex_state = 240}, + [5049] = {.lex_state = 123}, + [5050] = {.lex_state = 2214}, [5051] = {.lex_state = 0}, - [5052] = {.lex_state = 0, .external_lex_state = 3}, - [5053] = {.lex_state = 0}, - [5054] = {.lex_state = 0}, - [5055] = {.lex_state = 573}, - [5056] = {.lex_state = 573}, - [5057] = {.lex_state = 0}, - [5058] = {.lex_state = 0, .external_lex_state = 3}, + [5052] = {.lex_state = 0}, + [5053] = {.lex_state = 123}, + [5054] = {.lex_state = 123}, + [5055] = {.lex_state = 123}, + [5056] = {.lex_state = 2210}, + [5057] = {.lex_state = 2210}, + [5058] = {.lex_state = 2214}, [5059] = {.lex_state = 33}, [5060] = {.lex_state = 0}, - [5061] = {.lex_state = 573}, - [5062] = {.lex_state = 573}, + [5061] = {.lex_state = 2210}, + [5062] = {.lex_state = 2210}, [5063] = {.lex_state = 0}, - [5064] = {.lex_state = 0, .external_lex_state = 4}, - [5065] = {.lex_state = 33}, - [5066] = {.lex_state = 47}, - [5067] = {.lex_state = 33}, - [5068] = {.lex_state = 0}, - [5069] = {.lex_state = 1688}, - [5070] = {.lex_state = 1692}, - [5071] = {.lex_state = 228}, - [5072] = {.lex_state = 1188}, - [5073] = {.lex_state = 0}, - [5074] = {.lex_state = 0}, - [5075] = {.lex_state = 0}, + [5064] = {.lex_state = 228}, + [5065] = {.lex_state = 2210}, + [5066] = {.lex_state = 2210}, + [5067] = {.lex_state = 123}, + [5068] = {.lex_state = 228}, + [5069] = {.lex_state = 228}, + [5070] = {.lex_state = 0}, + [5071] = {.lex_state = 123}, + [5072] = {.lex_state = 2210}, + [5073] = {.lex_state = 2210}, + [5074] = {.lex_state = 123}, + [5075] = {.lex_state = 123}, [5076] = {.lex_state = 0}, - [5077] = {.lex_state = 0, .external_lex_state = 3}, - [5078] = {.lex_state = 0}, - [5079] = {.lex_state = 0}, + [5077] = {.lex_state = 584}, + [5078] = {.lex_state = 2214}, + [5079] = {.lex_state = 123}, [5080] = {.lex_state = 0}, - [5081] = {.lex_state = 0}, - [5082] = {.lex_state = 0}, - [5083] = {.lex_state = 1188}, - [5084] = {.lex_state = 0}, - [5085] = {.lex_state = 33}, - [5086] = {.lex_state = 33}, - [5087] = {.lex_state = 147}, - [5088] = {.lex_state = 0}, - [5089] = {.lex_state = 33}, - [5090] = {.lex_state = 624}, - [5091] = {.lex_state = 0}, - [5092] = {.lex_state = 228}, - [5093] = {.lex_state = 33}, - [5094] = {.lex_state = 0}, + [5081] = {.lex_state = 584}, + [5082] = {.lex_state = 2}, + [5083] = {.lex_state = 0}, + [5084] = {.lex_state = 33}, + [5085] = {.lex_state = 1742}, + [5086] = {.lex_state = 0}, + [5087] = {.lex_state = 0}, + [5088] = {.lex_state = 2212}, + [5089] = {.lex_state = 0, .external_lex_state = 3}, + [5090] = {.lex_state = 0}, + [5091] = {.lex_state = 2214}, + [5092] = {.lex_state = 33}, + [5093] = {.lex_state = 0}, + [5094] = {.lex_state = 33}, [5095] = {.lex_state = 0}, - [5096] = {.lex_state = 0}, - [5097] = {.lex_state = 33}, - [5098] = {.lex_state = 0}, - [5099] = {.lex_state = 0}, - [5100] = {.lex_state = 620}, - [5101] = {.lex_state = 228}, - [5102] = {.lex_state = 33}, - [5103] = {.lex_state = 33}, - [5104] = {.lex_state = 0}, - [5105] = {.lex_state = 0, .external_lex_state = 3}, + [5096] = {.lex_state = 584}, + [5097] = {.lex_state = 0}, + [5098] = {.lex_state = 584}, + [5099] = {.lex_state = 584}, + [5100] = {.lex_state = 33}, + [5101] = {.lex_state = 33}, + [5102] = {.lex_state = 231}, + [5103] = {.lex_state = 2}, + [5104] = {.lex_state = 0, .external_lex_state = 3}, + [5105] = {.lex_state = 0}, [5106] = {.lex_state = 0}, - [5107] = {.lex_state = 33}, + [5107] = {.lex_state = 0}, [5108] = {.lex_state = 0}, - [5109] = {.lex_state = 47}, + [5109] = {.lex_state = 33}, [5110] = {.lex_state = 0}, - [5111] = {.lex_state = 620}, - [5112] = {.lex_state = 228}, - [5113] = {.lex_state = 620}, - [5114] = {.lex_state = 0}, + [5111] = {.lex_state = 1212}, + [5112] = {.lex_state = 0}, + [5113] = {.lex_state = 584}, + [5114] = {.lex_state = 584}, [5115] = {.lex_state = 33}, [5116] = {.lex_state = 0}, - [5117] = {.lex_state = 2}, + [5117] = {.lex_state = 0}, [5118] = {.lex_state = 0}, - [5119] = {.lex_state = 573}, - [5120] = {.lex_state = 0, .external_lex_state = 4}, - [5121] = {.lex_state = 0}, + [5119] = {.lex_state = 0, .external_lex_state = 3}, + [5120] = {.lex_state = 0}, + [5121] = {.lex_state = 147}, [5122] = {.lex_state = 0}, - [5123] = {.lex_state = 2183}, + [5123] = {.lex_state = 0}, [5124] = {.lex_state = 0}, - [5125] = {.lex_state = 228}, - [5126] = {.lex_state = 31}, - [5127] = {.lex_state = 33}, - [5128] = {.lex_state = 0}, - [5129] = {.lex_state = 122}, - [5130] = {.lex_state = 620}, - [5131] = {.lex_state = 0}, - [5132] = {.lex_state = 1188}, + [5125] = {.lex_state = 0}, + [5126] = {.lex_state = 584}, + [5127] = {.lex_state = 584}, + [5128] = {.lex_state = 228}, + [5129] = {.lex_state = 0}, + [5130] = {.lex_state = 0, .external_lex_state = 3}, + [5131] = {.lex_state = 584}, + [5132] = {.lex_state = 584}, [5133] = {.lex_state = 0}, - [5134] = {.lex_state = 573}, - [5135] = {.lex_state = 573}, - [5136] = {.lex_state = 620}, - [5137] = {.lex_state = 0}, - [5138] = {.lex_state = 0}, - [5139] = {.lex_state = 0}, - [5140] = {.lex_state = 232}, - [5141] = {.lex_state = 31}, - [5142] = {.lex_state = 33}, - [5143] = {.lex_state = 0}, - [5144] = {.lex_state = 122}, - [5145] = {.lex_state = 1188}, - [5146] = {.lex_state = 147}, - [5147] = {.lex_state = 0}, - [5148] = {.lex_state = 0}, + [5134] = {.lex_state = 0}, + [5135] = {.lex_state = 584}, + [5136] = {.lex_state = 0}, + [5137] = {.lex_state = 584}, + [5138] = {.lex_state = 584}, + [5139] = {.lex_state = 1212}, + [5140] = {.lex_state = 0}, + [5141] = {.lex_state = 0, .external_lex_state = 3}, + [5142] = {.lex_state = 0}, + [5143] = {.lex_state = 584}, + [5144] = {.lex_state = 2212}, + [5145] = {.lex_state = 0}, + [5146] = {.lex_state = 584}, + [5147] = {.lex_state = 584}, + [5148] = {.lex_state = 33}, [5149] = {.lex_state = 0}, - [5150] = {.lex_state = 0}, - [5151] = {.lex_state = 663}, + [5150] = {.lex_state = 0, .external_lex_state = 3}, + [5151] = {.lex_state = 1212}, [5152] = {.lex_state = 0}, - [5153] = {.lex_state = 231}, - [5154] = {.lex_state = 0}, + [5153] = {.lex_state = 584}, + [5154] = {.lex_state = 584}, [5155] = {.lex_state = 0}, - [5156] = {.lex_state = 231}, - [5157] = {.lex_state = 231}, - [5158] = {.lex_state = 573}, - [5159] = {.lex_state = 231}, - [5160] = {.lex_state = 0}, - [5161] = {.lex_state = 0}, - [5162] = {.lex_state = 33}, - [5163] = {.lex_state = 573}, - [5164] = {.lex_state = 1188}, - [5165] = {.lex_state = 31}, + [5156] = {.lex_state = 31}, + [5157] = {.lex_state = 0, .external_lex_state = 3}, + [5158] = {.lex_state = 631}, + [5159] = {.lex_state = 0}, + [5160] = {.lex_state = 584}, + [5161] = {.lex_state = 584}, + [5162] = {.lex_state = 0}, + [5163] = {.lex_state = 0}, + [5164] = {.lex_state = 0, .external_lex_state = 3}, + [5165] = {.lex_state = 47}, [5166] = {.lex_state = 0}, - [5167] = {.lex_state = 0, .external_lex_state = 3}, - [5168] = {.lex_state = 33}, - [5169] = {.lex_state = 231}, - [5170] = {.lex_state = 231}, - [5171] = {.lex_state = 2181}, - [5172] = {.lex_state = 620}, + [5167] = {.lex_state = 584}, + [5168] = {.lex_state = 584}, + [5169] = {.lex_state = 0}, + [5170] = {.lex_state = 228}, + [5171] = {.lex_state = 0, .external_lex_state = 3}, + [5172] = {.lex_state = 0}, [5173] = {.lex_state = 0}, - [5174] = {.lex_state = 2185}, - [5175] = {.lex_state = 122}, - [5176] = {.lex_state = 228}, - [5177] = {.lex_state = 228}, - [5178] = {.lex_state = 2185}, - [5179] = {.lex_state = 573}, - [5180] = {.lex_state = 2}, - [5181] = {.lex_state = 1688}, - [5182] = {.lex_state = 33}, + [5174] = {.lex_state = 584}, + [5175] = {.lex_state = 584}, + [5176] = {.lex_state = 0}, + [5177] = {.lex_state = 33}, + [5178] = {.lex_state = 0, .external_lex_state = 3}, + [5179] = {.lex_state = 631}, + [5180] = {.lex_state = 0}, + [5181] = {.lex_state = 584}, + [5182] = {.lex_state = 584}, [5183] = {.lex_state = 0}, - [5184] = {.lex_state = 0}, - [5185] = {.lex_state = 1188}, - [5186] = {.lex_state = 620}, - [5187] = {.lex_state = 0}, - [5188] = {.lex_state = 31}, - [5189] = {.lex_state = 2}, - [5190] = {.lex_state = 275}, + [5184] = {.lex_state = 0, .external_lex_state = 3}, + [5185] = {.lex_state = 33}, + [5186] = {.lex_state = 0}, + [5187] = {.lex_state = 584}, + [5188] = {.lex_state = 584}, + [5189] = {.lex_state = 631}, + [5190] = {.lex_state = 0, .external_lex_state = 3}, [5191] = {.lex_state = 0}, - [5192] = {.lex_state = 0, .external_lex_state = 3}, - [5193] = {.lex_state = 33}, - [5194] = {.lex_state = 33}, - [5195] = {.lex_state = 274}, - [5196] = {.lex_state = 33}, + [5192] = {.lex_state = 0}, + [5193] = {.lex_state = 584}, + [5194] = {.lex_state = 584}, + [5195] = {.lex_state = 33}, + [5196] = {.lex_state = 0, .external_lex_state = 4}, [5197] = {.lex_state = 0}, - [5198] = {.lex_state = 122}, - [5199] = {.lex_state = 231}, + [5198] = {.lex_state = 0}, + [5199] = {.lex_state = 33}, [5200] = {.lex_state = 0}, - [5201] = {.lex_state = 0}, - [5202] = {.lex_state = 0}, + [5201] = {.lex_state = 1717}, + [5202] = {.lex_state = 1721}, [5203] = {.lex_state = 0}, - [5204] = {.lex_state = 0}, - [5205] = {.lex_state = 2}, - [5206] = {.lex_state = 0}, - [5207] = {.lex_state = 33}, - [5208] = {.lex_state = 2183}, - [5209] = {.lex_state = 2183}, - [5210] = {.lex_state = 33}, - [5211] = {.lex_state = 0, .external_lex_state = 4}, + [5204] = {.lex_state = 2210}, + [5205] = {.lex_state = 0}, + [5206] = {.lex_state = 33}, + [5207] = {.lex_state = 0}, + [5208] = {.lex_state = 1212}, + [5209] = {.lex_state = 0}, + [5210] = {.lex_state = 0}, + [5211] = {.lex_state = 0}, [5212] = {.lex_state = 0}, - [5213] = {.lex_state = 1688}, - [5214] = {.lex_state = 1692}, - [5215] = {.lex_state = 228}, - [5216] = {.lex_state = 0}, - [5217] = {.lex_state = 624}, - [5218] = {.lex_state = 0, .external_lex_state = 3}, - [5219] = {.lex_state = 33}, + [5213] = {.lex_state = 0}, + [5214] = {.lex_state = 0}, + [5215] = {.lex_state = 0}, + [5216] = {.lex_state = 31}, + [5217] = {.lex_state = 33}, + [5218] = {.lex_state = 122}, + [5219] = {.lex_state = 228}, [5220] = {.lex_state = 0}, - [5221] = {.lex_state = 0, .external_lex_state = 3}, - [5222] = {.lex_state = 620}, - [5223] = {.lex_state = 620}, + [5221] = {.lex_state = 0}, + [5222] = {.lex_state = 635}, + [5223] = {.lex_state = 122}, [5224] = {.lex_state = 0}, - [5225] = {.lex_state = 573}, - [5226] = {.lex_state = 573}, - [5227] = {.lex_state = 228}, - [5228] = {.lex_state = 0}, - [5229] = {.lex_state = 620}, - [5230] = {.lex_state = 573}, - [5231] = {.lex_state = 1188}, - [5232] = {.lex_state = 620}, + [5225] = {.lex_state = 0}, + [5226] = {.lex_state = 1212}, + [5227] = {.lex_state = 33}, + [5228] = {.lex_state = 33}, + [5229] = {.lex_state = 0}, + [5230] = {.lex_state = 0}, + [5231] = {.lex_state = 0}, + [5232] = {.lex_state = 631}, [5233] = {.lex_state = 0}, [5234] = {.lex_state = 0}, - [5235] = {.lex_state = 573}, - [5236] = {.lex_state = 33}, - [5237] = {.lex_state = 620}, - [5238] = {.lex_state = 0}, - [5239] = {.lex_state = 1692}, - [5240] = {.lex_state = 33}, - [5241] = {.lex_state = 0}, + [5235] = {.lex_state = 0}, + [5236] = {.lex_state = 0}, + [5237] = {.lex_state = 33}, + [5238] = {.lex_state = 231}, + [5239] = {.lex_state = 33}, + [5240] = {.lex_state = 0, .external_lex_state = 3}, + [5241] = {.lex_state = 47}, [5242] = {.lex_state = 0}, - [5243] = {.lex_state = 231}, + [5243] = {.lex_state = 631}, [5244] = {.lex_state = 33}, - [5245] = {.lex_state = 0}, - [5246] = {.lex_state = 573}, - [5247] = {.lex_state = 573}, + [5245] = {.lex_state = 631}, + [5246] = {.lex_state = 147}, + [5247] = {.lex_state = 33}, [5248] = {.lex_state = 0}, - [5249] = {.lex_state = 0}, - [5250] = {.lex_state = 1188}, - [5251] = {.lex_state = 620}, + [5249] = {.lex_state = 674}, + [5250] = {.lex_state = 228}, + [5251] = {.lex_state = 1212}, [5252] = {.lex_state = 0}, - [5253] = {.lex_state = 0, .external_lex_state = 4}, - [5254] = {.lex_state = 0}, - [5255] = {.lex_state = 1688}, - [5256] = {.lex_state = 1692}, - [5257] = {.lex_state = 1188}, - [5258] = {.lex_state = 624}, - [5259] = {.lex_state = 620}, - [5260] = {.lex_state = 31}, - [5261] = {.lex_state = 573}, - [5262] = {.lex_state = 0, .external_lex_state = 4}, - [5263] = {.lex_state = 0}, - [5264] = {.lex_state = 1688}, - [5265] = {.lex_state = 1692}, - [5266] = {.lex_state = 0, .external_lex_state = 4}, - [5267] = {.lex_state = 0}, - [5268] = {.lex_state = 1688}, - [5269] = {.lex_state = 1692}, - [5270] = {.lex_state = 0, .external_lex_state = 4}, + [5253] = {.lex_state = 0}, + [5254] = {.lex_state = 33}, + [5255] = {.lex_state = 631}, + [5256] = {.lex_state = 0}, + [5257] = {.lex_state = 31}, + [5258] = {.lex_state = 33}, + [5259] = {.lex_state = 0}, + [5260] = {.lex_state = 2}, + [5261] = {.lex_state = 0}, + [5262] = {.lex_state = 228}, + [5263] = {.lex_state = 31}, + [5264] = {.lex_state = 228}, + [5265] = {.lex_state = 33}, + [5266] = {.lex_state = 2210}, + [5267] = {.lex_state = 0, .external_lex_state = 4}, + [5268] = {.lex_state = 1212}, + [5269] = {.lex_state = 33}, + [5270] = {.lex_state = 0}, [5271] = {.lex_state = 0}, - [5272] = {.lex_state = 1688}, - [5273] = {.lex_state = 1692}, - [5274] = {.lex_state = 0, .external_lex_state = 4}, - [5275] = {.lex_state = 1688}, - [5276] = {.lex_state = 1692}, - [5277] = {.lex_state = 0, .external_lex_state = 4}, - [5278] = {.lex_state = 1688}, - [5279] = {.lex_state = 1692}, - [5280] = {.lex_state = 0, .external_lex_state = 4}, - [5281] = {.lex_state = 1688}, - [5282] = {.lex_state = 1692}, - [5283] = {.lex_state = 0, .external_lex_state = 4}, - [5284] = {.lex_state = 1688}, - [5285] = {.lex_state = 1692}, - [5286] = {.lex_state = 0, .external_lex_state = 4}, - [5287] = {.lex_state = 1688}, - [5288] = {.lex_state = 1692}, - [5289] = {.lex_state = 0, .external_lex_state = 4}, - [5290] = {.lex_state = 1688}, - [5291] = {.lex_state = 1692}, - [5292] = {.lex_state = 0, .external_lex_state = 4}, - [5293] = {.lex_state = 1688}, - [5294] = {.lex_state = 1692}, - [5295] = {.lex_state = 0, .external_lex_state = 4}, - [5296] = {.lex_state = 1688}, - [5297] = {.lex_state = 1692}, - [5298] = {.lex_state = 0, .external_lex_state = 4}, - [5299] = {.lex_state = 1688}, - [5300] = {.lex_state = 1692}, - [5301] = {.lex_state = 0, .external_lex_state = 4}, - [5302] = {.lex_state = 1688}, - [5303] = {.lex_state = 1692}, - [5304] = {.lex_state = 0, .external_lex_state = 4}, - [5305] = {.lex_state = 1688}, - [5306] = {.lex_state = 1692}, - [5307] = {.lex_state = 0, .external_lex_state = 4}, - [5308] = {.lex_state = 1688}, - [5309] = {.lex_state = 1692}, - [5310] = {.lex_state = 0, .external_lex_state = 4}, - [5311] = {.lex_state = 1688}, - [5312] = {.lex_state = 1692}, - [5313] = {.lex_state = 0, .external_lex_state = 4}, - [5314] = {.lex_state = 1688}, - [5315] = {.lex_state = 1692}, - [5316] = {.lex_state = 228}, - [5317] = {.lex_state = 620}, + [5272] = {.lex_state = 0}, + [5273] = {.lex_state = 0}, + [5274] = {.lex_state = 33}, + [5275] = {.lex_state = 1717}, + [5276] = {.lex_state = 0}, + [5277] = {.lex_state = 2214}, + [5278] = {.lex_state = 0}, + [5279] = {.lex_state = 0}, + [5280] = {.lex_state = 33}, + [5281] = {.lex_state = 31}, + [5282] = {.lex_state = 0}, + [5283] = {.lex_state = 231}, + [5284] = {.lex_state = 0}, + [5285] = {.lex_state = 584}, + [5286] = {.lex_state = 584}, + [5287] = {.lex_state = 33}, + [5288] = {.lex_state = 228}, + [5289] = {.lex_state = 0}, + [5290] = {.lex_state = 0}, + [5291] = {.lex_state = 1212}, + [5292] = {.lex_state = 33}, + [5293] = {.lex_state = 584}, + [5294] = {.lex_state = 33}, + [5295] = {.lex_state = 228}, + [5296] = {.lex_state = 31}, + [5297] = {.lex_state = 584}, + [5298] = {.lex_state = 0}, + [5299] = {.lex_state = 228}, + [5300] = {.lex_state = 0}, + [5301] = {.lex_state = 2}, + [5302] = {.lex_state = 1721}, + [5303] = {.lex_state = 0}, + [5304] = {.lex_state = 238}, + [5305] = {.lex_state = 0}, + [5306] = {.lex_state = 0}, + [5307] = {.lex_state = 122}, + [5308] = {.lex_state = 275}, + [5309] = {.lex_state = 33}, + [5310] = {.lex_state = 0, .external_lex_state = 3}, + [5311] = {.lex_state = 1212}, + [5312] = {.lex_state = 147}, + [5313] = {.lex_state = 122}, + [5314] = {.lex_state = 33}, + [5315] = {.lex_state = 0}, + [5316] = {.lex_state = 33}, + [5317] = {.lex_state = 0, .external_lex_state = 3}, [5318] = {.lex_state = 0}, - [5319] = {.lex_state = 0}, - [5320] = {.lex_state = 0}, - [5321] = {.lex_state = 31}, - [5322] = {.lex_state = 573}, + [5319] = {.lex_state = 231}, + [5320] = {.lex_state = 0, .external_lex_state = 3}, + [5321] = {.lex_state = 631}, + [5322] = {.lex_state = 0}, [5323] = {.lex_state = 0}, - [5324] = {.lex_state = 0}, - [5325] = {.lex_state = 33}, - [5326] = {.lex_state = 0}, - [5327] = {.lex_state = 33}, - [5328] = {.lex_state = 31}, - [5329] = {.lex_state = 1188}, - [5330] = {.lex_state = 2}, - [5331] = {.lex_state = 1188}, + [5324] = {.lex_state = 231}, + [5325] = {.lex_state = 1212}, + [5326] = {.lex_state = 33}, + [5327] = {.lex_state = 631}, + [5328] = {.lex_state = 228}, + [5329] = {.lex_state = 0}, + [5330] = {.lex_state = 232}, + [5331] = {.lex_state = 122}, [5332] = {.lex_state = 0}, [5333] = {.lex_state = 0}, [5334] = {.lex_state = 0}, - [5335] = {.lex_state = 2185}, - [5336] = {.lex_state = 1713}, - [5337] = {.lex_state = 33}, - [5338] = {.lex_state = 33}, - [5339] = {.lex_state = 31}, - [5340] = {.lex_state = 0}, - [5341] = {.lex_state = 31}, + [5335] = {.lex_state = 0, .external_lex_state = 3}, + [5336] = {.lex_state = 0}, + [5337] = {.lex_state = 631}, + [5338] = {.lex_state = 0}, + [5339] = {.lex_state = 33}, + [5340] = {.lex_state = 2212}, + [5341] = {.lex_state = 231}, [5342] = {.lex_state = 0}, - [5343] = {.lex_state = 33}, - [5344] = {.lex_state = 624}, - [5345] = {.lex_state = 620}, - [5346] = {.lex_state = 0, .external_lex_state = 3}, - [5347] = {.lex_state = 33}, - [5348] = {.lex_state = 663}, - [5349] = {.lex_state = 33}, - [5350] = {.lex_state = 122}, - [5351] = {.lex_state = 33}, - [5352] = {.lex_state = 0}, - [5353] = {.lex_state = 0}, + [5343] = {.lex_state = 0, .external_lex_state = 4}, + [5344] = {.lex_state = 0}, + [5345] = {.lex_state = 1717}, + [5346] = {.lex_state = 1721}, + [5347] = {.lex_state = 0}, + [5348] = {.lex_state = 231}, + [5349] = {.lex_state = 635}, + [5350] = {.lex_state = 33}, + [5351] = {.lex_state = 231}, + [5352] = {.lex_state = 31}, + [5353] = {.lex_state = 631}, [5354] = {.lex_state = 0}, - [5355] = {.lex_state = 122}, + [5355] = {.lex_state = 231}, [5356] = {.lex_state = 0}, - [5357] = {.lex_state = 238}, - [5358] = {.lex_state = 0}, + [5357] = {.lex_state = 635}, + [5358] = {.lex_state = 147}, [5359] = {.lex_state = 0}, - [5360] = {.lex_state = 33}, - [5361] = {.lex_state = 33}, + [5360] = {.lex_state = 0, .external_lex_state = 3}, + [5361] = {.lex_state = 674}, [5362] = {.lex_state = 0}, - [5363] = {.lex_state = 33}, - [5364] = {.lex_state = 33}, - [5365] = {.lex_state = 0}, - [5366] = {.lex_state = 33}, - [5367] = {.lex_state = 0}, - [5368] = {.lex_state = 33}, - [5369] = {.lex_state = 0, .external_lex_state = 3}, - [5370] = {.lex_state = 0}, - [5371] = {.lex_state = 1188}, - [5372] = {.lex_state = 31}, - [5373] = {.lex_state = 228}, - [5374] = {.lex_state = 0}, - [5375] = {.lex_state = 0}, - [5376] = {.lex_state = 573}, - [5377] = {.lex_state = 573}, - [5378] = {.lex_state = 2181}, - [5379] = {(TSStateId)(-1),}, + [5363] = {.lex_state = 2}, + [5364] = {.lex_state = 228}, + [5365] = {.lex_state = 584}, + [5366] = {.lex_state = 584}, + [5367] = {.lex_state = 631}, + [5368] = {.lex_state = 0}, + [5369] = {.lex_state = 1212}, + [5370] = {.lex_state = 631}, + [5371] = {.lex_state = 122}, + [5372] = {.lex_state = 231}, + [5373] = {.lex_state = 631}, + [5374] = {.lex_state = 274}, + [5375] = {.lex_state = 33}, + [5376] = {.lex_state = 0}, + [5377] = {.lex_state = 0}, + [5378] = {.lex_state = 0}, + [5379] = {.lex_state = 0}, + [5380] = {.lex_state = 0}, + [5381] = {.lex_state = 33}, + [5382] = {.lex_state = 33}, + [5383] = {.lex_state = 2225}, + [5384] = {.lex_state = 0}, + [5385] = {.lex_state = 0, .external_lex_state = 4}, + [5386] = {.lex_state = 0}, + [5387] = {.lex_state = 1717}, + [5388] = {.lex_state = 1721}, + [5389] = {.lex_state = 33}, + [5390] = {.lex_state = 635}, + [5391] = {.lex_state = 0}, + [5392] = {.lex_state = 584}, + [5393] = {.lex_state = 584}, + [5394] = {.lex_state = 0, .external_lex_state = 4}, + [5395] = {.lex_state = 0}, + [5396] = {.lex_state = 1717}, + [5397] = {.lex_state = 1721}, + [5398] = {.lex_state = 0, .external_lex_state = 4}, + [5399] = {.lex_state = 0}, + [5400] = {.lex_state = 1717}, + [5401] = {.lex_state = 1721}, + [5402] = {.lex_state = 0, .external_lex_state = 4}, + [5403] = {.lex_state = 0}, + [5404] = {.lex_state = 1717}, + [5405] = {.lex_state = 1721}, + [5406] = {.lex_state = 0, .external_lex_state = 4}, + [5407] = {.lex_state = 1717}, + [5408] = {.lex_state = 1721}, + [5409] = {.lex_state = 0, .external_lex_state = 4}, + [5410] = {.lex_state = 1717}, + [5411] = {.lex_state = 1721}, + [5412] = {.lex_state = 0, .external_lex_state = 4}, + [5413] = {.lex_state = 1717}, + [5414] = {.lex_state = 1721}, + [5415] = {.lex_state = 0, .external_lex_state = 4}, + [5416] = {.lex_state = 1717}, + [5417] = {.lex_state = 1721}, + [5418] = {.lex_state = 0, .external_lex_state = 4}, + [5419] = {.lex_state = 1717}, + [5420] = {.lex_state = 1721}, + [5421] = {.lex_state = 0, .external_lex_state = 4}, + [5422] = {.lex_state = 1717}, + [5423] = {.lex_state = 1721}, + [5424] = {.lex_state = 0, .external_lex_state = 4}, + [5425] = {.lex_state = 1717}, + [5426] = {.lex_state = 1721}, + [5427] = {.lex_state = 0, .external_lex_state = 4}, + [5428] = {.lex_state = 1717}, + [5429] = {.lex_state = 1721}, + [5430] = {.lex_state = 0, .external_lex_state = 4}, + [5431] = {.lex_state = 1717}, + [5432] = {.lex_state = 1721}, + [5433] = {.lex_state = 0, .external_lex_state = 4}, + [5434] = {.lex_state = 1717}, + [5435] = {.lex_state = 1721}, + [5436] = {.lex_state = 0, .external_lex_state = 4}, + [5437] = {.lex_state = 1717}, + [5438] = {.lex_state = 1721}, + [5439] = {.lex_state = 0, .external_lex_state = 4}, + [5440] = {.lex_state = 1717}, + [5441] = {.lex_state = 1721}, + [5442] = {.lex_state = 0, .external_lex_state = 4}, + [5443] = {.lex_state = 1717}, + [5444] = {.lex_state = 1721}, + [5445] = {.lex_state = 0, .external_lex_state = 4}, + [5446] = {.lex_state = 1717}, + [5447] = {.lex_state = 1721}, + [5448] = {.lex_state = 231}, + [5449] = {.lex_state = 0}, + [5450] = {.lex_state = 0}, + [5451] = {.lex_state = 1212}, + [5452] = {.lex_state = 0}, + [5453] = {.lex_state = 231}, + [5454] = {.lex_state = 584}, + [5455] = {.lex_state = 0}, + [5456] = {.lex_state = 1212}, + [5457] = {.lex_state = 33}, + [5458] = {.lex_state = 0}, + [5459] = {.lex_state = 0}, + [5460] = {.lex_state = 33}, + [5461] = {.lex_state = 1212}, + [5462] = {.lex_state = 0}, + [5463] = {.lex_state = 33}, + [5464] = {.lex_state = 0}, + [5465] = {.lex_state = 33}, + [5466] = {.lex_state = 33}, + [5467] = {.lex_state = 0}, + [5468] = {.lex_state = 33}, + [5469] = {.lex_state = 122}, + [5470] = {.lex_state = 33}, + [5471] = {.lex_state = 33}, + [5472] = {.lex_state = 33}, + [5473] = {.lex_state = 631}, + [5474] = {.lex_state = 584}, + [5475] = {.lex_state = 2}, + [5476] = {.lex_state = 33}, + [5477] = {.lex_state = 228}, + [5478] = {.lex_state = 631}, + [5479] = {.lex_state = 1212}, + [5480] = {.lex_state = 1212}, + [5481] = {.lex_state = 0, .external_lex_state = 3}, + [5482] = {.lex_state = 0, .external_lex_state = 3}, + [5483] = {.lex_state = 2210}, + [5484] = {.lex_state = 122}, + [5485] = {.lex_state = 584}, + [5486] = {.lex_state = 0}, + [5487] = {.lex_state = 0}, + [5488] = {.lex_state = 33}, + [5489] = {.lex_state = 228}, + [5490] = {.lex_state = 0}, + [5491] = {.lex_state = 0}, + [5492] = {.lex_state = 33}, + [5493] = {.lex_state = 2214}, + [5494] = {.lex_state = 31}, + [5495] = {.lex_state = 0}, + [5496] = {.lex_state = 0, .external_lex_state = 3}, + [5497] = {.lex_state = 0}, + [5498] = {.lex_state = 33}, + [5499] = {.lex_state = 31}, + [5500] = {.lex_state = 631}, + [5501] = {.lex_state = 0}, + [5502] = {.lex_state = 228}, + [5503] = {.lex_state = 0}, + [5504] = {.lex_state = 31}, + [5505] = {.lex_state = 0}, + [5506] = {.lex_state = 584}, + [5507] = {.lex_state = 631}, + [5508] = {.lex_state = 584}, + [5509] = {.lex_state = 0}, + [5510] = {.lex_state = 584}, + [5511] = {(TSStateId)(-1),}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -38813,77 +39438,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_end] = ACTIONS(1), }, [STATE(1)] = { - [sym_nu_script] = STATE(5124), - [sym_shebang] = STATE(52), - [sym__block_body_statement] = STATE(4274), - [sym__declaration] = STATE(4535), - [sym_decl_alias] = STATE(4536), - [sym_stmt_let] = STATE(4555), - [sym_stmt_mut] = STATE(4555), - [sym_stmt_const] = STATE(4555), - [sym_assignment] = STATE(4555), - [sym__mutable_assignment_pattern] = STATE(4579), - [sym__statement] = STATE(4535), - [sym_pipeline] = STATE(4555), - [sym__block_body] = STATE(5040), - [sym_cmd_identifier] = STATE(2947), - [aux_sym__repeat_newline] = STATE(4630), - [sym_attribute_list] = STATE(4666), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4536), - [sym_decl_export] = STATE(4536), - [sym_decl_extern] = STATE(4536), - [sym_decl_module] = STATE(4536), - [sym_decl_use] = STATE(4536), - [sym__ctrl_statement] = STATE(4555), - [sym__ctrl_expression] = STATE(3379), - [sym_ctrl_for] = STATE(4772), - [sym_ctrl_loop] = STATE(4772), - [sym_ctrl_while] = STATE(4772), - [sym_ctrl_if] = STATE(3441), - [sym_ctrl_match] = STATE(3441), - [sym_ctrl_try] = STATE(3441), - [sym__stmt_let_shortcut] = STATE(3501), - [sym_pipe_element] = STATE(3200), - [sym_where_command] = STATE(3379), + [sym_nu_script] = STATE(5467), + [sym_shebang] = STATE(39), + [sym__block_body_statement] = STATE(4592), + [sym__declaration] = STATE(4832), + [sym_decl_alias] = STATE(4872), + [sym_stmt_let] = STATE(4884), + [sym_stmt_mut] = STATE(4884), + [sym_stmt_const] = STATE(4884), + [sym_assignment] = STATE(4884), + [sym__mutable_assignment_pattern] = STATE(4708), + [sym__statement] = STATE(4832), + [sym_pipeline] = STATE(4884), + [sym__block_body] = STATE(5248), + [sym_cmd_identifier] = STATE(2951), + [aux_sym__repeat_newline] = STATE(4852), + [sym_attribute_list] = STATE(4691), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4872), + [sym_decl_export] = STATE(4872), + [sym_decl_extern] = STATE(4872), + [sym_decl_module] = STATE(4872), + [sym_decl_use] = STATE(4872), + [sym__ctrl_statement] = STATE(4884), + [sym__ctrl_expression] = STATE(3512), + [sym_ctrl_for] = STATE(4718), + [sym_ctrl_loop] = STATE(4718), + [sym_ctrl_while] = STATE(4718), + [sym_ctrl_if] = STATE(3519), + [sym_ctrl_match] = STATE(3519), + [sym_ctrl_try] = STATE(3519), + [sym__stmt_let_shortcut] = STATE(3521), + [sym_pipe_element] = STATE(3125), + [sym_where_command] = STATE(3512), [sym__expression] = STATE(2294), - [sym_expr_unary] = STATE(1286), - [sym__expr_unary_minus] = STATE(1290), - [sym_expr_binary] = STATE(1286), - [sym__expr_binary_expression] = STATE(2252), - [sym_expr_parenthesized] = STATE(924), - [sym_val_range] = STATE(1286), - [sym__value] = STATE(1286), - [sym_val_nothing] = STATE(1295), - [sym_val_bool] = STATE(1295), - [sym_val_variable] = STATE(447), - [sym_val_cellpath] = STATE(1295), - [sym_val_number] = STATE(1295), - [sym__val_number_decimal] = STATE(123), + [sym_expr_unary] = STATE(1292), + [sym__expr_unary_minus] = STATE(1296), + [sym_expr_binary] = STATE(1292), + [sym__expr_binary_expression] = STATE(2248), + [sym_expr_parenthesized] = STATE(964), + [sym_val_range] = STATE(1292), + [sym__value] = STATE(1292), + [sym_val_nothing] = STATE(1316), + [sym_val_bool] = STATE(1316), + [sym_val_variable] = STATE(444), + [sym_val_cellpath] = STATE(1316), + [sym_val_number] = STATE(1316), + [sym__val_number_decimal] = STATE(132), [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1295), - [sym_val_filesize] = STATE(1295), - [sym_val_binary] = STATE(1295), - [sym_val_string] = STATE(1295), + [sym_val_duration] = STATE(1316), + [sym_val_filesize] = STATE(1316), + [sym_val_binary] = STATE(1316), + [sym_val_string] = STATE(1316), [sym__raw_str] = STATE(502), [sym__str_double_quotes] = STATE(502), [sym__str_single_quotes] = STATE(502), [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1295), - [sym__inter_single_quotes] = STATE(1306), - [sym__inter_double_quotes] = STATE(1317), - [sym_val_list] = STATE(1295), - [sym_val_record] = STATE(1295), - [sym_val_table] = STATE(1295), - [sym_val_closure] = STATE(1295), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3379), + [sym_val_interpolated] = STATE(1316), + [sym__inter_single_quotes] = STATE(1277), + [sym__inter_double_quotes] = STATE(1311), + [sym_val_list] = STATE(1316), + [sym_val_record] = STATE(1316), + [sym_val_table] = STATE(1316), + [sym_val_closure] = STATE(1316), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3512), [sym_comment] = STATE(1), - [aux_sym_pipeline_repeat1] = STATE(189), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym_pipe_element_repeat2] = STATE(291), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym__block_body_repeat2] = STATE(85), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_repeat2] = STATE(284), [ts_builtin_sym_end] = ACTIONS(5), [anon_sym_POUND_BANG] = ACTIONS(7), [anon_sym_export] = ACTIONS(9), @@ -38904,6 +39529,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(39), [anon_sym_try] = ACTIONS(41), [anon_sym_catch] = ACTIONS(39), + [anon_sym_finally] = ACTIONS(39), [anon_sym_match] = ACTIONS(43), [anon_sym_in] = ACTIONS(45), [anon_sym_true] = ACTIONS(47), @@ -38946,86 +39572,86 @@ 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(4201), - [sym__declaration] = STATE(4295), - [sym_decl_alias] = STATE(4296), - [sym_stmt_let] = STATE(4297), - [sym_stmt_mut] = STATE(4297), - [sym_stmt_const] = STATE(4297), - [sym_assignment] = STATE(4297), - [sym__mutable_assignment_pattern] = STATE(4298), - [sym__statement] = STATE(4295), - [sym_pipeline] = STATE(4297), - [sym__block_body] = STATE(5201), - [sym_cmd_identifier] = STATE(2679), - [aux_sym__repeat_newline] = STATE(16), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4296), - [sym_decl_export] = STATE(4296), - [sym_decl_extern] = STATE(4296), - [sym_decl_module] = STATE(4296), - [sym_decl_use] = STATE(4296), - [sym_parameter_pipes] = STATE(47), - [sym__ctrl_statement] = STATE(4297), - [sym__ctrl_expression] = STATE(3348), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if] = STATE(3352), - [sym_ctrl_match] = STATE(3352), - [sym__match_pattern_record_body] = STATE(5370), - [sym_ctrl_try] = STATE(3352), - [sym__stmt_let_shortcut] = STATE(3358), - [sym_pipe_element] = STATE(2956), - [sym_where_command] = STATE(3348), + [sym__block_body_statement] = STATE(4191), + [sym__declaration] = STATE(4507), + [sym_decl_alias] = STATE(4336), + [sym_stmt_let] = STATE(4338), + [sym_stmt_mut] = STATE(4338), + [sym_stmt_const] = STATE(4338), + [sym_assignment] = STATE(4338), + [sym__mutable_assignment_pattern] = STATE(4342), + [sym__statement] = STATE(4507), + [sym_pipeline] = STATE(4338), + [sym__block_body] = STATE(5107), + [sym_cmd_identifier] = STATE(2647), + [aux_sym__repeat_newline] = STATE(22), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4336), + [sym_decl_export] = STATE(4336), + [sym_decl_extern] = STATE(4336), + [sym_decl_module] = STATE(4336), + [sym_decl_use] = STATE(4336), + [sym_parameter_pipes] = STATE(45), + [sym__ctrl_statement] = STATE(4338), + [sym__ctrl_expression] = STATE(3368), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if] = STATE(3392), + [sym_ctrl_match] = STATE(3392), + [sym__match_pattern_record_body] = STATE(5279), + [sym_ctrl_try] = STATE(3392), + [sym__stmt_let_shortcut] = STATE(3393), + [sym_pipe_element] = STATE(2909), + [sym_where_command] = STATE(3368), [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(794), - [sym__spread_parenthesized] = STATE(4883), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym__spread_variable] = STATE(4892), - [sym_val_variable] = STATE(391), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(1144), - [sym__val_number_decimal] = STATE(114), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(1144), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(1144), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym__spread_record] = STATE(4883), - [sym_record_body] = STATE(5216), - [sym_record_entry] = STATE(4740), - [sym__record_key] = STATE(5341), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3348), + [sym_expr_parenthesized] = STATE(737), + [sym__spread_parenthesized] = STATE(5018), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym__spread_variable] = STATE(5020), + [sym_val_variable] = STATE(387), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(1261), + [sym__val_number_decimal] = STATE(106), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(1261), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(1261), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym__spread_record] = STATE(5018), + [sym_record_body] = STATE(5120), + [sym_record_entry] = STATE(4841), + [sym__record_key] = STATE(5156), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3368), [sym_comment] = STATE(2), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(80), - [aux_sym__block_body_repeat2] = STATE(87), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym__types_body_repeat1] = STATE(511), - [aux_sym__match_pattern_record_body_repeat1] = STATE(793), - [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(813), + [aux_sym_pipeline_repeat1] = STATE(176), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym__types_body_repeat1] = STATE(475), + [aux_sym__match_pattern_record_body_repeat1] = STATE(698), + [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_record_body_repeat1] = STATE(721), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -39044,6 +39670,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(137), [anon_sym_try] = ACTIONS(139), [anon_sym_catch] = ACTIONS(137), + [anon_sym_finally] = ACTIONS(137), [anon_sym_match] = ACTIONS(141), [anon_sym_in] = ACTIONS(143), [anon_sym_true] = ACTIONS(145), @@ -39092,84 +39719,84 @@ 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(4201), - [sym__declaration] = STATE(4295), - [sym_decl_alias] = STATE(4296), - [sym_stmt_let] = STATE(4297), - [sym_stmt_mut] = STATE(4297), - [sym_stmt_const] = STATE(4297), - [sym_assignment] = STATE(4297), - [sym__mutable_assignment_pattern] = STATE(4298), - [sym__statement] = STATE(4295), - [sym_pipeline] = STATE(4297), - [sym__block_body] = STATE(5057), - [sym_cmd_identifier] = STATE(2679), - [aux_sym__repeat_newline] = STATE(17), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4296), - [sym_decl_export] = STATE(4296), - [sym_decl_extern] = STATE(4296), - [sym_decl_module] = STATE(4296), - [sym_decl_use] = STATE(4296), - [sym_parameter_pipes] = STATE(50), - [sym__ctrl_statement] = STATE(4297), - [sym__ctrl_expression] = STATE(3348), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if] = STATE(3352), - [sym_ctrl_match] = STATE(3352), - [sym_ctrl_try] = STATE(3352), - [sym__stmt_let_shortcut] = STATE(3358), - [sym_pipe_element] = STATE(2956), - [sym_where_command] = STATE(3348), + [sym__block_body_statement] = STATE(4191), + [sym__declaration] = STATE(4507), + [sym_decl_alias] = STATE(4336), + [sym_stmt_let] = STATE(4338), + [sym_stmt_mut] = STATE(4338), + [sym_stmt_const] = STATE(4338), + [sym_assignment] = STATE(4338), + [sym__mutable_assignment_pattern] = STATE(4342), + [sym__statement] = STATE(4507), + [sym_pipeline] = STATE(4338), + [sym__block_body] = STATE(5117), + [sym_cmd_identifier] = STATE(2647), + [aux_sym__repeat_newline] = STATE(16), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4336), + [sym_decl_export] = STATE(4336), + [sym_decl_extern] = STATE(4336), + [sym_decl_module] = STATE(4336), + [sym_decl_use] = STATE(4336), + [sym_parameter_pipes] = STATE(41), + [sym__ctrl_statement] = STATE(4338), + [sym__ctrl_expression] = STATE(3368), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if] = STATE(3392), + [sym_ctrl_match] = STATE(3392), + [sym_ctrl_try] = STATE(3392), + [sym__stmt_let_shortcut] = STATE(3393), + [sym_pipe_element] = STATE(2909), + [sym_where_command] = STATE(3368), [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(794), - [sym__spread_parenthesized] = STATE(4883), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym__spread_variable] = STATE(4892), - [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(1144), - [sym__val_number_decimal] = STATE(114), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(1144), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(1144), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym__spread_record] = STATE(4883), - [sym_record_body] = STATE(5183), - [sym_record_entry] = STATE(4687), - [sym__record_key] = STATE(5341), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3348), + [sym_expr_parenthesized] = STATE(737), + [sym__spread_parenthesized] = STATE(5018), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym__spread_variable] = STATE(5020), + [sym_val_variable] = STATE(417), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(1261), + [sym__val_number_decimal] = STATE(106), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(1261), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(1261), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym__spread_record] = STATE(5018), + [sym_record_body] = STATE(5490), + [sym_record_entry] = STATE(4653), + [sym__record_key] = STATE(5156), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3368), [sym_comment] = STATE(3), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(80), - [aux_sym__block_body_repeat2] = STATE(87), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym__types_body_repeat1] = STATE(584), - [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(813), + [aux_sym_pipeline_repeat1] = STATE(176), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym__types_body_repeat1] = STATE(514), + [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_record_body_repeat1] = STATE(721), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -39188,6 +39815,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(137), [anon_sym_try] = ACTIONS(139), [anon_sym_catch] = ACTIONS(137), + [anon_sym_finally] = ACTIONS(137), [anon_sym_match] = ACTIONS(141), [anon_sym_in] = ACTIONS(143), [anon_sym_true] = ACTIONS(145), @@ -39236,84 +39864,84 @@ 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(4201), - [sym__declaration] = STATE(4295), - [sym_decl_alias] = STATE(4296), - [sym_stmt_let] = STATE(4297), - [sym_stmt_mut] = STATE(4297), - [sym_stmt_const] = STATE(4297), - [sym_assignment] = STATE(4297), - [sym__mutable_assignment_pattern] = STATE(4298), - [sym__statement] = STATE(4295), - [sym_pipeline] = STATE(4297), - [sym__block_body] = STATE(5076), - [sym_cmd_identifier] = STATE(2679), - [aux_sym__repeat_newline] = STATE(16), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4296), - [sym_decl_export] = STATE(4296), - [sym_decl_extern] = STATE(4296), - [sym_decl_module] = STATE(4296), - [sym_decl_use] = STATE(4296), - [sym_parameter_pipes] = STATE(47), - [sym__ctrl_statement] = STATE(4297), - [sym__ctrl_expression] = STATE(3348), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if] = STATE(3352), - [sym_ctrl_match] = STATE(3352), - [sym_ctrl_try] = STATE(3352), - [sym__stmt_let_shortcut] = STATE(3358), - [sym_pipe_element] = STATE(2956), - [sym_where_command] = STATE(3348), + [sym__block_body_statement] = STATE(4191), + [sym__declaration] = STATE(4507), + [sym_decl_alias] = STATE(4336), + [sym_stmt_let] = STATE(4338), + [sym_stmt_mut] = STATE(4338), + [sym_stmt_const] = STATE(4338), + [sym_assignment] = STATE(4338), + [sym__mutable_assignment_pattern] = STATE(4342), + [sym__statement] = STATE(4507), + [sym_pipeline] = STATE(4338), + [sym__block_body] = STATE(5462), + [sym_cmd_identifier] = STATE(2647), + [aux_sym__repeat_newline] = STATE(18), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4336), + [sym_decl_export] = STATE(4336), + [sym_decl_extern] = STATE(4336), + [sym_decl_module] = STATE(4336), + [sym_decl_use] = STATE(4336), + [sym_parameter_pipes] = STATE(37), + [sym__ctrl_statement] = STATE(4338), + [sym__ctrl_expression] = STATE(3368), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if] = STATE(3392), + [sym_ctrl_match] = STATE(3392), + [sym_ctrl_try] = STATE(3392), + [sym__stmt_let_shortcut] = STATE(3393), + [sym_pipe_element] = STATE(2909), + [sym_where_command] = STATE(3368), [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(794), - [sym__spread_parenthesized] = STATE(4883), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym__spread_variable] = STATE(4892), - [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(1144), - [sym__val_number_decimal] = STATE(114), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(1144), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(1144), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym__spread_record] = STATE(4883), - [sym_record_body] = STATE(5216), - [sym_record_entry] = STATE(4687), - [sym__record_key] = STATE(5341), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3348), + [sym_expr_parenthesized] = STATE(737), + [sym__spread_parenthesized] = STATE(5018), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym__spread_variable] = STATE(5020), + [sym_val_variable] = STATE(417), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(1261), + [sym__val_number_decimal] = STATE(106), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(1261), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(1261), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym__spread_record] = STATE(5018), + [sym_record_body] = STATE(5509), + [sym_record_entry] = STATE(4653), + [sym__record_key] = STATE(5156), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3368), [sym_comment] = STATE(4), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(80), - [aux_sym__block_body_repeat2] = STATE(87), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym__types_body_repeat1] = STATE(584), - [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(813), + [aux_sym_pipeline_repeat1] = STATE(176), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym__types_body_repeat1] = STATE(514), + [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_record_body_repeat1] = STATE(721), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -39332,6 +39960,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(137), [anon_sym_try] = ACTIONS(139), [anon_sym_catch] = ACTIONS(137), + [anon_sym_finally] = ACTIONS(137), [anon_sym_match] = ACTIONS(141), [anon_sym_in] = ACTIONS(143), [anon_sym_true] = ACTIONS(145), @@ -39380,84 +40009,84 @@ 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(4201), - [sym__declaration] = STATE(4295), - [sym_decl_alias] = STATE(4296), - [sym_stmt_let] = STATE(4297), - [sym_stmt_mut] = STATE(4297), - [sym_stmt_const] = STATE(4297), - [sym_assignment] = STATE(4297), - [sym__mutable_assignment_pattern] = STATE(4298), - [sym__statement] = STATE(4295), - [sym_pipeline] = STATE(4297), - [sym__block_body] = STATE(5201), - [sym_cmd_identifier] = STATE(2679), + [sym__block_body_statement] = STATE(4191), + [sym__declaration] = STATE(4507), + [sym_decl_alias] = STATE(4336), + [sym_stmt_let] = STATE(4338), + [sym_stmt_mut] = STATE(4338), + [sym_stmt_const] = STATE(4338), + [sym_assignment] = STATE(4338), + [sym__mutable_assignment_pattern] = STATE(4342), + [sym__statement] = STATE(4507), + [sym_pipeline] = STATE(4338), + [sym__block_body] = STATE(5086), + [sym_cmd_identifier] = STATE(2647), [aux_sym__repeat_newline] = STATE(16), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4296), - [sym_decl_export] = STATE(4296), - [sym_decl_extern] = STATE(4296), - [sym_decl_module] = STATE(4296), - [sym_decl_use] = STATE(4296), - [sym_parameter_pipes] = STATE(47), - [sym__ctrl_statement] = STATE(4297), - [sym__ctrl_expression] = STATE(3348), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if] = STATE(3352), - [sym_ctrl_match] = STATE(3352), - [sym_ctrl_try] = STATE(3352), - [sym__stmt_let_shortcut] = STATE(3358), - [sym_pipe_element] = STATE(2956), - [sym_where_command] = STATE(3348), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4336), + [sym_decl_export] = STATE(4336), + [sym_decl_extern] = STATE(4336), + [sym_decl_module] = STATE(4336), + [sym_decl_use] = STATE(4336), + [sym_parameter_pipes] = STATE(41), + [sym__ctrl_statement] = STATE(4338), + [sym__ctrl_expression] = STATE(3368), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if] = STATE(3392), + [sym_ctrl_match] = STATE(3392), + [sym_ctrl_try] = STATE(3392), + [sym__stmt_let_shortcut] = STATE(3393), + [sym_pipe_element] = STATE(2909), + [sym_where_command] = STATE(3368), [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(794), - [sym__spread_parenthesized] = STATE(4883), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym__spread_variable] = STATE(4892), - [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(1144), - [sym__val_number_decimal] = STATE(114), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(1144), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(1144), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym__spread_record] = STATE(4883), - [sym_record_body] = STATE(5216), - [sym_record_entry] = STATE(4687), - [sym__record_key] = STATE(5341), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3348), + [sym_expr_parenthesized] = STATE(737), + [sym__spread_parenthesized] = STATE(5018), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym__spread_variable] = STATE(5020), + [sym_val_variable] = STATE(417), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(1261), + [sym__val_number_decimal] = STATE(106), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(1261), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(1261), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym__spread_record] = STATE(5018), + [sym_record_body] = STATE(5490), + [sym_record_entry] = STATE(4653), + [sym__record_key] = STATE(5156), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3368), [sym_comment] = STATE(5), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(80), - [aux_sym__block_body_repeat2] = STATE(87), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym__types_body_repeat1] = STATE(584), - [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(813), + [aux_sym_pipeline_repeat1] = STATE(176), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym__types_body_repeat1] = STATE(514), + [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_record_body_repeat1] = STATE(721), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -39476,6 +40105,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(137), [anon_sym_try] = ACTIONS(139), [anon_sym_catch] = ACTIONS(137), + [anon_sym_finally] = ACTIONS(137), [anon_sym_match] = ACTIONS(141), [anon_sym_in] = ACTIONS(143), [anon_sym_true] = ACTIONS(145), @@ -39524,84 +40154,84 @@ 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(4201), - [sym__declaration] = STATE(4295), - [sym_decl_alias] = STATE(4296), - [sym_stmt_let] = STATE(4297), - [sym_stmt_mut] = STATE(4297), - [sym_stmt_const] = STATE(4297), - [sym_assignment] = STATE(4297), - [sym__mutable_assignment_pattern] = STATE(4298), - [sym__statement] = STATE(4295), - [sym_pipeline] = STATE(4297), - [sym__block_body] = STATE(5128), - [sym_cmd_identifier] = STATE(2679), - [aux_sym__repeat_newline] = STATE(17), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4296), - [sym_decl_export] = STATE(4296), - [sym_decl_extern] = STATE(4296), - [sym_decl_module] = STATE(4296), - [sym_decl_use] = STATE(4296), - [sym_parameter_pipes] = STATE(50), - [sym__ctrl_statement] = STATE(4297), - [sym__ctrl_expression] = STATE(3348), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if] = STATE(3352), - [sym_ctrl_match] = STATE(3352), - [sym_ctrl_try] = STATE(3352), - [sym__stmt_let_shortcut] = STATE(3358), - [sym_pipe_element] = STATE(2956), - [sym_where_command] = STATE(3348), + [sym__block_body_statement] = STATE(4191), + [sym__declaration] = STATE(4507), + [sym_decl_alias] = STATE(4336), + [sym_stmt_let] = STATE(4338), + [sym_stmt_mut] = STATE(4338), + [sym_stmt_const] = STATE(4338), + [sym_assignment] = STATE(4338), + [sym__mutable_assignment_pattern] = STATE(4342), + [sym__statement] = STATE(4507), + [sym_pipeline] = STATE(4338), + [sym__block_body] = STATE(5315), + [sym_cmd_identifier] = STATE(2647), + [aux_sym__repeat_newline] = STATE(22), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4336), + [sym_decl_export] = STATE(4336), + [sym_decl_extern] = STATE(4336), + [sym_decl_module] = STATE(4336), + [sym_decl_use] = STATE(4336), + [sym_parameter_pipes] = STATE(45), + [sym__ctrl_statement] = STATE(4338), + [sym__ctrl_expression] = STATE(3368), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if] = STATE(3392), + [sym_ctrl_match] = STATE(3392), + [sym_ctrl_try] = STATE(3392), + [sym__stmt_let_shortcut] = STATE(3393), + [sym_pipe_element] = STATE(2909), + [sym_where_command] = STATE(3368), [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(794), - [sym__spread_parenthesized] = STATE(4883), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym__spread_variable] = STATE(4892), - [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(1144), - [sym__val_number_decimal] = STATE(114), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(1144), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(1144), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym__spread_record] = STATE(4883), - [sym_record_body] = STATE(5183), - [sym_record_entry] = STATE(4687), - [sym__record_key] = STATE(5341), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3348), + [sym_expr_parenthesized] = STATE(737), + [sym__spread_parenthesized] = STATE(5018), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym__spread_variable] = STATE(5020), + [sym_val_variable] = STATE(417), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(1261), + [sym__val_number_decimal] = STATE(106), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(1261), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(1261), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym__spread_record] = STATE(5018), + [sym_record_body] = STATE(5120), + [sym_record_entry] = STATE(4653), + [sym__record_key] = STATE(5156), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3368), [sym_comment] = STATE(6), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(80), - [aux_sym__block_body_repeat2] = STATE(87), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym__types_body_repeat1] = STATE(584), - [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(813), + [aux_sym_pipeline_repeat1] = STATE(176), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym__types_body_repeat1] = STATE(514), + [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_record_body_repeat1] = STATE(721), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -39620,6 +40250,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(137), [anon_sym_try] = ACTIONS(139), [anon_sym_catch] = ACTIONS(137), + [anon_sym_finally] = ACTIONS(137), [anon_sym_match] = ACTIONS(141), [anon_sym_in] = ACTIONS(143), [anon_sym_true] = ACTIONS(145), @@ -39668,84 +40299,84 @@ 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(4201), - [sym__declaration] = STATE(4295), - [sym_decl_alias] = STATE(4296), - [sym_stmt_let] = STATE(4297), - [sym_stmt_mut] = STATE(4297), - [sym_stmt_const] = STATE(4297), - [sym_assignment] = STATE(4297), - [sym__mutable_assignment_pattern] = STATE(4298), - [sym__statement] = STATE(4295), - [sym_pipeline] = STATE(4297), - [sym__block_body] = STATE(5206), - [sym_cmd_identifier] = STATE(2679), - [aux_sym__repeat_newline] = STATE(21), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4296), - [sym_decl_export] = STATE(4296), - [sym_decl_extern] = STATE(4296), - [sym_decl_module] = STATE(4296), - [sym_decl_use] = STATE(4296), - [sym_parameter_pipes] = STATE(42), - [sym__ctrl_statement] = STATE(4297), - [sym__ctrl_expression] = STATE(3348), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if] = STATE(3352), - [sym_ctrl_match] = STATE(3352), - [sym_ctrl_try] = STATE(3352), - [sym__stmt_let_shortcut] = STATE(3358), - [sym_pipe_element] = STATE(2956), - [sym_where_command] = STATE(3348), + [sym__block_body_statement] = STATE(4191), + [sym__declaration] = STATE(4507), + [sym_decl_alias] = STATE(4336), + [sym_stmt_let] = STATE(4338), + [sym_stmt_mut] = STATE(4338), + [sym_stmt_const] = STATE(4338), + [sym_assignment] = STATE(4338), + [sym__mutable_assignment_pattern] = STATE(4342), + [sym__statement] = STATE(4507), + [sym_pipeline] = STATE(4338), + [sym__block_body] = STATE(5107), + [sym_cmd_identifier] = STATE(2647), + [aux_sym__repeat_newline] = STATE(22), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4336), + [sym_decl_export] = STATE(4336), + [sym_decl_extern] = STATE(4336), + [sym_decl_module] = STATE(4336), + [sym_decl_use] = STATE(4336), + [sym_parameter_pipes] = STATE(45), + [sym__ctrl_statement] = STATE(4338), + [sym__ctrl_expression] = STATE(3368), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if] = STATE(3392), + [sym_ctrl_match] = STATE(3392), + [sym_ctrl_try] = STATE(3392), + [sym__stmt_let_shortcut] = STATE(3393), + [sym_pipe_element] = STATE(2909), + [sym_where_command] = STATE(3368), [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(794), - [sym__spread_parenthesized] = STATE(4883), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym__spread_variable] = STATE(4892), - [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(1144), - [sym__val_number_decimal] = STATE(114), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(1144), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(1144), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym__spread_record] = STATE(4883), - [sym_record_body] = STATE(4998), - [sym_record_entry] = STATE(4687), - [sym__record_key] = STATE(5341), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3348), + [sym_expr_parenthesized] = STATE(737), + [sym__spread_parenthesized] = STATE(5018), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym__spread_variable] = STATE(5020), + [sym_val_variable] = STATE(417), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(1261), + [sym__val_number_decimal] = STATE(106), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(1261), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(1261), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym__spread_record] = STATE(5018), + [sym_record_body] = STATE(5120), + [sym_record_entry] = STATE(4653), + [sym__record_key] = STATE(5156), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3368), [sym_comment] = STATE(7), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(80), - [aux_sym__block_body_repeat2] = STATE(87), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym__types_body_repeat1] = STATE(584), - [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(813), + [aux_sym_pipeline_repeat1] = STATE(176), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym__types_body_repeat1] = STATE(514), + [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_record_body_repeat1] = STATE(721), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -39764,6 +40395,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(137), [anon_sym_try] = ACTIONS(139), [anon_sym_catch] = ACTIONS(137), + [anon_sym_finally] = ACTIONS(137), [anon_sym_match] = ACTIONS(141), [anon_sym_in] = ACTIONS(143), [anon_sym_true] = ACTIONS(145), @@ -39812,84 +40444,84 @@ 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(4201), - [sym__declaration] = STATE(4295), - [sym_decl_alias] = STATE(4296), - [sym_stmt_let] = STATE(4297), - [sym_stmt_mut] = STATE(4297), - [sym_stmt_const] = STATE(4297), - [sym_assignment] = STATE(4297), - [sym__mutable_assignment_pattern] = STATE(4298), - [sym__statement] = STATE(4295), - [sym_pipeline] = STATE(4297), - [sym__block_body] = STATE(5249), - [sym_cmd_identifier] = STATE(2679), - [aux_sym__repeat_newline] = STATE(21), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4296), - [sym_decl_export] = STATE(4296), - [sym_decl_extern] = STATE(4296), - [sym_decl_module] = STATE(4296), - [sym_decl_use] = STATE(4296), - [sym_parameter_pipes] = STATE(42), - [sym__ctrl_statement] = STATE(4297), - [sym__ctrl_expression] = STATE(3348), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if] = STATE(3352), - [sym_ctrl_match] = STATE(3352), - [sym_ctrl_try] = STATE(3352), - [sym__stmt_let_shortcut] = STATE(3358), - [sym_pipe_element] = STATE(2956), - [sym_where_command] = STATE(3348), + [sym__block_body_statement] = STATE(4191), + [sym__declaration] = STATE(4507), + [sym_decl_alias] = STATE(4336), + [sym_stmt_let] = STATE(4338), + [sym_stmt_mut] = STATE(4338), + [sym_stmt_const] = STATE(4338), + [sym_assignment] = STATE(4338), + [sym__mutable_assignment_pattern] = STATE(4342), + [sym__statement] = STATE(4507), + [sym_pipeline] = STATE(4338), + [sym__block_body] = STATE(5253), + [sym_cmd_identifier] = STATE(2647), + [aux_sym__repeat_newline] = STATE(18), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4336), + [sym_decl_export] = STATE(4336), + [sym_decl_extern] = STATE(4336), + [sym_decl_module] = STATE(4336), + [sym_decl_use] = STATE(4336), + [sym_parameter_pipes] = STATE(37), + [sym__ctrl_statement] = STATE(4338), + [sym__ctrl_expression] = STATE(3368), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if] = STATE(3392), + [sym_ctrl_match] = STATE(3392), + [sym_ctrl_try] = STATE(3392), + [sym__stmt_let_shortcut] = STATE(3393), + [sym_pipe_element] = STATE(2909), + [sym_where_command] = STATE(3368), [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(794), - [sym__spread_parenthesized] = STATE(4883), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym__spread_variable] = STATE(4892), - [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(1144), - [sym__val_number_decimal] = STATE(114), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(1144), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(1144), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym__spread_record] = STATE(4883), - [sym_record_body] = STATE(4998), - [sym_record_entry] = STATE(4687), - [sym__record_key] = STATE(5341), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3348), + [sym_expr_parenthesized] = STATE(737), + [sym__spread_parenthesized] = STATE(5018), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym__spread_variable] = STATE(5020), + [sym_val_variable] = STATE(417), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(1261), + [sym__val_number_decimal] = STATE(106), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(1261), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(1261), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym__spread_record] = STATE(5018), + [sym_record_body] = STATE(5509), + [sym_record_entry] = STATE(4653), + [sym__record_key] = STATE(5156), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3368), [sym_comment] = STATE(8), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(80), - [aux_sym__block_body_repeat2] = STATE(87), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym__types_body_repeat1] = STATE(584), - [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(813), + [aux_sym_pipeline_repeat1] = STATE(176), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym__types_body_repeat1] = STATE(514), + [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_record_body_repeat1] = STATE(721), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -39908,6 +40540,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(137), [anon_sym_try] = ACTIONS(139), [anon_sym_catch] = ACTIONS(137), + [anon_sym_finally] = ACTIONS(137), [anon_sym_match] = ACTIONS(141), [anon_sym_in] = ACTIONS(143), [anon_sym_true] = ACTIONS(145), @@ -39956,84 +40589,84 @@ 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(4201), - [sym__declaration] = STATE(4295), - [sym_decl_alias] = STATE(4296), - [sym_stmt_let] = STATE(4297), - [sym_stmt_mut] = STATE(4297), - [sym_stmt_const] = STATE(4297), - [sym_assignment] = STATE(4297), - [sym__mutable_assignment_pattern] = STATE(4298), - [sym__statement] = STATE(4295), - [sym_pipeline] = STATE(4297), - [sym__block_body] = STATE(5238), - [sym_cmd_identifier] = STATE(2679), - [aux_sym__repeat_newline] = STATE(22), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4296), - [sym_decl_export] = STATE(4296), - [sym_decl_extern] = STATE(4296), - [sym_decl_module] = STATE(4296), - [sym_decl_use] = STATE(4296), - [sym_parameter_pipes] = STATE(54), - [sym__ctrl_statement] = STATE(4297), - [sym__ctrl_expression] = STATE(3348), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if] = STATE(3352), - [sym_ctrl_match] = STATE(3352), - [sym_ctrl_try] = STATE(3352), - [sym__stmt_let_shortcut] = STATE(3358), - [sym_pipe_element] = STATE(2956), - [sym_where_command] = STATE(3348), + [sym__block_body_statement] = STATE(4191), + [sym__declaration] = STATE(4507), + [sym_decl_alias] = STATE(4336), + [sym_stmt_let] = STATE(4338), + [sym_stmt_mut] = STATE(4338), + [sym_stmt_const] = STATE(4338), + [sym_assignment] = STATE(4338), + [sym__mutable_assignment_pattern] = STATE(4342), + [sym__statement] = STATE(4507), + [sym_pipeline] = STATE(4338), + [sym__block_body] = STATE(5149), + [sym_cmd_identifier] = STATE(2647), + [aux_sym__repeat_newline] = STATE(23), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4336), + [sym_decl_export] = STATE(4336), + [sym_decl_extern] = STATE(4336), + [sym_decl_module] = STATE(4336), + [sym_decl_use] = STATE(4336), + [sym_parameter_pipes] = STATE(56), + [sym__ctrl_statement] = STATE(4338), + [sym__ctrl_expression] = STATE(3368), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if] = STATE(3392), + [sym_ctrl_match] = STATE(3392), + [sym_ctrl_try] = STATE(3392), + [sym__stmt_let_shortcut] = STATE(3393), + [sym_pipe_element] = STATE(2909), + [sym_where_command] = STATE(3368), [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(794), - [sym__spread_parenthesized] = STATE(4883), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym__spread_variable] = STATE(4892), - [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(1144), - [sym__val_number_decimal] = STATE(114), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(1144), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(1144), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym__spread_record] = STATE(4883), - [sym_record_body] = STATE(5241), - [sym_record_entry] = STATE(4687), - [sym__record_key] = STATE(5341), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3348), + [sym_expr_parenthesized] = STATE(737), + [sym__spread_parenthesized] = STATE(5018), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym__spread_variable] = STATE(5020), + [sym_val_variable] = STATE(417), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(1261), + [sym__val_number_decimal] = STATE(106), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(1261), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(1261), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym__spread_record] = STATE(5018), + [sym_record_body] = STATE(5347), + [sym_record_entry] = STATE(4653), + [sym__record_key] = STATE(5156), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3368), [sym_comment] = STATE(9), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(80), - [aux_sym__block_body_repeat2] = STATE(87), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym__types_body_repeat1] = STATE(584), - [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(813), + [aux_sym_pipeline_repeat1] = STATE(176), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym__types_body_repeat1] = STATE(514), + [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_record_body_repeat1] = STATE(721), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -40052,6 +40685,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(137), [anon_sym_try] = ACTIONS(139), [anon_sym_catch] = ACTIONS(137), + [anon_sym_finally] = ACTIONS(137), [anon_sym_match] = ACTIONS(141), [anon_sym_in] = ACTIONS(143), [anon_sym_true] = ACTIONS(145), @@ -40100,84 +40734,84 @@ 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(4201), - [sym__declaration] = STATE(4295), - [sym_decl_alias] = STATE(4296), - [sym_stmt_let] = STATE(4297), - [sym_stmt_mut] = STATE(4297), - [sym_stmt_const] = STATE(4297), - [sym_assignment] = STATE(4297), - [sym__mutable_assignment_pattern] = STATE(4298), - [sym__statement] = STATE(4295), - [sym_pipeline] = STATE(4297), - [sym__block_body] = STATE(4970), - [sym_cmd_identifier] = STATE(2679), - [aux_sym__repeat_newline] = STATE(20), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4296), - [sym_decl_export] = STATE(4296), - [sym_decl_extern] = STATE(4296), - [sym_decl_module] = STATE(4296), - [sym_decl_use] = STATE(4296), - [sym_parameter_pipes] = STATE(58), - [sym__ctrl_statement] = STATE(4297), - [sym__ctrl_expression] = STATE(3348), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if] = STATE(3352), - [sym_ctrl_match] = STATE(3352), - [sym_ctrl_try] = STATE(3352), - [sym__stmt_let_shortcut] = STATE(3358), - [sym_pipe_element] = STATE(2956), - [sym_where_command] = STATE(3348), + [sym__block_body_statement] = STATE(4191), + [sym__declaration] = STATE(4507), + [sym_decl_alias] = STATE(4336), + [sym_stmt_let] = STATE(4338), + [sym_stmt_mut] = STATE(4338), + [sym_stmt_const] = STATE(4338), + [sym_assignment] = STATE(4338), + [sym__mutable_assignment_pattern] = STATE(4342), + [sym__statement] = STATE(4507), + [sym_pipeline] = STATE(4338), + [sym__block_body] = STATE(5354), + [sym_cmd_identifier] = STATE(2647), + [aux_sym__repeat_newline] = STATE(26), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4336), + [sym_decl_export] = STATE(4336), + [sym_decl_extern] = STATE(4336), + [sym_decl_module] = STATE(4336), + [sym_decl_use] = STATE(4336), + [sym_parameter_pipes] = STATE(50), + [sym__ctrl_statement] = STATE(4338), + [sym__ctrl_expression] = STATE(3368), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if] = STATE(3392), + [sym_ctrl_match] = STATE(3392), + [sym_ctrl_try] = STATE(3392), + [sym__stmt_let_shortcut] = STATE(3393), + [sym_pipe_element] = STATE(2909), + [sym_where_command] = STATE(3368), [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(794), - [sym__spread_parenthesized] = STATE(4883), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym__spread_variable] = STATE(4892), - [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(1144), - [sym__val_number_decimal] = STATE(114), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(1144), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(1144), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym__spread_record] = STATE(4883), - [sym_record_body] = STATE(5106), - [sym_record_entry] = STATE(4687), - [sym__record_key] = STATE(5341), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3348), + [sym_expr_parenthesized] = STATE(737), + [sym__spread_parenthesized] = STATE(5018), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym__spread_variable] = STATE(5020), + [sym_val_variable] = STATE(417), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(1261), + [sym__val_number_decimal] = STATE(106), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(1261), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(1261), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym__spread_record] = STATE(5018), + [sym_record_body] = STATE(5359), + [sym_record_entry] = STATE(4653), + [sym__record_key] = STATE(5156), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3368), [sym_comment] = STATE(10), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(80), - [aux_sym__block_body_repeat2] = STATE(87), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym__types_body_repeat1] = STATE(584), - [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(813), + [aux_sym_pipeline_repeat1] = STATE(176), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym__types_body_repeat1] = STATE(514), + [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_record_body_repeat1] = STATE(721), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -40196,6 +40830,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(137), [anon_sym_try] = ACTIONS(139), [anon_sym_catch] = ACTIONS(137), + [anon_sym_finally] = ACTIONS(137), [anon_sym_match] = ACTIONS(141), [anon_sym_in] = ACTIONS(143), [anon_sym_true] = ACTIONS(145), @@ -40244,84 +40879,84 @@ 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(4201), - [sym__declaration] = STATE(4295), - [sym_decl_alias] = STATE(4296), - [sym_stmt_let] = STATE(4297), - [sym_stmt_mut] = STATE(4297), - [sym_stmt_const] = STATE(4297), - [sym_assignment] = STATE(4297), - [sym__mutable_assignment_pattern] = STATE(4298), - [sym__statement] = STATE(4295), - [sym_pipeline] = STATE(4297), - [sym__block_body] = STATE(4950), - [sym_cmd_identifier] = STATE(2679), - [aux_sym__repeat_newline] = STATE(25), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4296), - [sym_decl_export] = STATE(4296), - [sym_decl_extern] = STATE(4296), - [sym_decl_module] = STATE(4296), - [sym_decl_use] = STATE(4296), - [sym_parameter_pipes] = STATE(62), - [sym__ctrl_statement] = STATE(4297), - [sym__ctrl_expression] = STATE(3348), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if] = STATE(3352), - [sym_ctrl_match] = STATE(3352), - [sym_ctrl_try] = STATE(3352), - [sym__stmt_let_shortcut] = STATE(3358), - [sym_pipe_element] = STATE(2956), - [sym_where_command] = STATE(3348), + [sym__block_body_statement] = STATE(4191), + [sym__declaration] = STATE(4507), + [sym_decl_alias] = STATE(4336), + [sym_stmt_let] = STATE(4338), + [sym_stmt_mut] = STATE(4338), + [sym_stmt_const] = STATE(4338), + [sym_assignment] = STATE(4338), + [sym__mutable_assignment_pattern] = STATE(4342), + [sym__statement] = STATE(4507), + [sym_pipeline] = STATE(4338), + [sym__block_body] = STATE(5272), + [sym_cmd_identifier] = STATE(2647), + [aux_sym__repeat_newline] = STATE(24), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4336), + [sym_decl_export] = STATE(4336), + [sym_decl_extern] = STATE(4336), + [sym_decl_module] = STATE(4336), + [sym_decl_use] = STATE(4336), + [sym_parameter_pipes] = STATE(63), + [sym__ctrl_statement] = STATE(4338), + [sym__ctrl_expression] = STATE(3368), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if] = STATE(3392), + [sym_ctrl_match] = STATE(3392), + [sym_ctrl_try] = STATE(3392), + [sym__stmt_let_shortcut] = STATE(3393), + [sym_pipe_element] = STATE(2909), + [sym_where_command] = STATE(3368), [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(794), - [sym__spread_parenthesized] = STATE(4883), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym__spread_variable] = STATE(4892), - [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(1144), - [sym__val_number_decimal] = STATE(114), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(1144), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(1144), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym__spread_record] = STATE(4883), - [sym_record_body] = STATE(4968), - [sym_record_entry] = STATE(4687), - [sym__record_key] = STATE(5341), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3348), + [sym_expr_parenthesized] = STATE(737), + [sym__spread_parenthesized] = STATE(5018), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym__spread_variable] = STATE(5020), + [sym_val_variable] = STATE(417), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(1261), + [sym__val_number_decimal] = STATE(106), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(1261), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(1261), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym__spread_record] = STATE(5018), + [sym_record_body] = STATE(5384), + [sym_record_entry] = STATE(4653), + [sym__record_key] = STATE(5156), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3368), [sym_comment] = STATE(11), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(80), - [aux_sym__block_body_repeat2] = STATE(87), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym__types_body_repeat1] = STATE(584), - [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(813), + [aux_sym_pipeline_repeat1] = STATE(176), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym__types_body_repeat1] = STATE(514), + [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_record_body_repeat1] = STATE(721), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -40340,6 +40975,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(137), [anon_sym_try] = ACTIONS(139), [anon_sym_catch] = ACTIONS(137), + [anon_sym_finally] = ACTIONS(137), [anon_sym_match] = ACTIONS(141), [anon_sym_in] = ACTIONS(143), [anon_sym_true] = ACTIONS(145), @@ -40388,84 +41024,84 @@ 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(4201), - [sym__declaration] = STATE(4295), - [sym_decl_alias] = STATE(4296), - [sym_stmt_let] = STATE(4297), - [sym_stmt_mut] = STATE(4297), - [sym_stmt_const] = STATE(4297), - [sym_assignment] = STATE(4297), - [sym__mutable_assignment_pattern] = STATE(4298), - [sym__statement] = STATE(4295), - [sym_pipeline] = STATE(4297), - [sym__block_body] = STATE(5104), - [sym_cmd_identifier] = STATE(2679), - [aux_sym__repeat_newline] = STATE(26), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4296), - [sym_decl_export] = STATE(4296), - [sym_decl_extern] = STATE(4296), - [sym_decl_module] = STATE(4296), - [sym_decl_use] = STATE(4296), - [sym_parameter_pipes] = STATE(65), - [sym__ctrl_statement] = STATE(4297), - [sym__ctrl_expression] = STATE(3348), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if] = STATE(3352), - [sym_ctrl_match] = STATE(3352), - [sym_ctrl_try] = STATE(3352), - [sym__stmt_let_shortcut] = STATE(3358), - [sym_pipe_element] = STATE(2956), - [sym_where_command] = STATE(3348), + [sym__block_body_statement] = STATE(4191), + [sym__declaration] = STATE(4507), + [sym_decl_alias] = STATE(4336), + [sym_stmt_let] = STATE(4338), + [sym_stmt_mut] = STATE(4338), + [sym_stmt_const] = STATE(4338), + [sym_assignment] = STATE(4338), + [sym__mutable_assignment_pattern] = STATE(4342), + [sym__statement] = STATE(4507), + [sym_pipeline] = STATE(4338), + [sym__block_body] = STATE(5272), + [sym_cmd_identifier] = STATE(2647), + [aux_sym__repeat_newline] = STATE(24), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4336), + [sym_decl_export] = STATE(4336), + [sym_decl_extern] = STATE(4336), + [sym_decl_module] = STATE(4336), + [sym_decl_use] = STATE(4336), + [sym_parameter_pipes] = STATE(63), + [sym__ctrl_statement] = STATE(4338), + [sym__ctrl_expression] = STATE(3368), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if] = STATE(3392), + [sym_ctrl_match] = STATE(3392), + [sym_ctrl_try] = STATE(3392), + [sym__stmt_let_shortcut] = STATE(3393), + [sym_pipe_element] = STATE(2909), + [sym_where_command] = STATE(3368), [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(794), - [sym__spread_parenthesized] = STATE(4883), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym__spread_variable] = STATE(4892), - [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(1144), - [sym__val_number_decimal] = STATE(114), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(1144), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(1144), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym__spread_record] = STATE(4883), - [sym_record_body] = STATE(5116), - [sym_record_entry] = STATE(4687), - [sym__record_key] = STATE(5341), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3348), + [sym_expr_parenthesized] = STATE(737), + [sym__spread_parenthesized] = STATE(5018), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym__spread_variable] = STATE(5020), + [sym_val_variable] = STATE(417), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(1261), + [sym__val_number_decimal] = STATE(106), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(1261), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(1261), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym__spread_record] = STATE(5018), + [sym_record_body] = STATE(5276), + [sym_record_entry] = STATE(4653), + [sym__record_key] = STATE(5156), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3368), [sym_comment] = STATE(12), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(80), - [aux_sym__block_body_repeat2] = STATE(87), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym__types_body_repeat1] = STATE(584), - [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(813), + [aux_sym_pipeline_repeat1] = STATE(176), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym__types_body_repeat1] = STATE(514), + [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_record_body_repeat1] = STATE(721), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -40484,6 +41120,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(137), [anon_sym_try] = ACTIONS(139), [anon_sym_catch] = ACTIONS(137), + [anon_sym_finally] = ACTIONS(137), [anon_sym_match] = ACTIONS(141), [anon_sym_in] = ACTIONS(143), [anon_sym_true] = ACTIONS(145), @@ -40532,84 +41169,84 @@ 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(4201), - [sym__declaration] = STATE(4295), - [sym_decl_alias] = STATE(4296), - [sym_stmt_let] = STATE(4297), - [sym_stmt_mut] = STATE(4297), - [sym_stmt_const] = STATE(4297), - [sym_assignment] = STATE(4297), - [sym__mutable_assignment_pattern] = STATE(4298), - [sym__statement] = STATE(4295), - [sym_pipeline] = STATE(4297), - [sym__block_body] = STATE(5104), - [sym_cmd_identifier] = STATE(2679), - [aux_sym__repeat_newline] = STATE(26), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4296), - [sym_decl_export] = STATE(4296), - [sym_decl_extern] = STATE(4296), - [sym_decl_module] = STATE(4296), - [sym_decl_use] = STATE(4296), - [sym_parameter_pipes] = STATE(65), - [sym__ctrl_statement] = STATE(4297), - [sym__ctrl_expression] = STATE(3348), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if] = STATE(3352), - [sym_ctrl_match] = STATE(3352), - [sym_ctrl_try] = STATE(3352), - [sym__stmt_let_shortcut] = STATE(3358), - [sym_pipe_element] = STATE(2956), - [sym_where_command] = STATE(3348), + [sym__block_body_statement] = STATE(4191), + [sym__declaration] = STATE(4507), + [sym_decl_alias] = STATE(4336), + [sym_stmt_let] = STATE(4338), + [sym_stmt_mut] = STATE(4338), + [sym_stmt_const] = STATE(4338), + [sym_assignment] = STATE(4338), + [sym__mutable_assignment_pattern] = STATE(4342), + [sym__statement] = STATE(4507), + [sym_pipeline] = STATE(4338), + [sym__block_body] = STATE(5117), + [sym_cmd_identifier] = STATE(2647), + [aux_sym__repeat_newline] = STATE(16), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4336), + [sym_decl_export] = STATE(4336), + [sym_decl_extern] = STATE(4336), + [sym_decl_module] = STATE(4336), + [sym_decl_use] = STATE(4336), + [sym_parameter_pipes] = STATE(41), + [sym__ctrl_statement] = STATE(4338), + [sym__ctrl_expression] = STATE(3368), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if] = STATE(3392), + [sym_ctrl_match] = STATE(3392), + [sym_ctrl_try] = STATE(3392), + [sym__stmt_let_shortcut] = STATE(3393), + [sym_pipe_element] = STATE(2909), + [sym_where_command] = STATE(3368), [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(794), - [sym__spread_parenthesized] = STATE(4883), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym__spread_variable] = STATE(4892), - [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(1144), - [sym__val_number_decimal] = STATE(114), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(1144), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(1144), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym__spread_record] = STATE(4883), + [sym_expr_parenthesized] = STATE(737), + [sym__spread_parenthesized] = STATE(5018), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym__spread_variable] = STATE(5020), + [sym_val_variable] = STATE(417), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(1261), + [sym__val_number_decimal] = STATE(106), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(1261), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(1261), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym__spread_record] = STATE(5018), [sym_record_body] = STATE(5220), - [sym_record_entry] = STATE(4687), - [sym__record_key] = STATE(5341), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3348), + [sym_record_entry] = STATE(4653), + [sym__record_key] = STATE(5156), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3368), [sym_comment] = STATE(13), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(80), - [aux_sym__block_body_repeat2] = STATE(87), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym__types_body_repeat1] = STATE(584), - [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(813), + [aux_sym_pipeline_repeat1] = STATE(176), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym__types_body_repeat1] = STATE(514), + [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_record_body_repeat1] = STATE(721), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -40628,6 +41265,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(137), [anon_sym_try] = ACTIONS(139), [anon_sym_catch] = ACTIONS(137), + [anon_sym_finally] = ACTIONS(137), [anon_sym_match] = ACTIONS(141), [anon_sym_in] = ACTIONS(143), [anon_sym_true] = ACTIONS(145), @@ -40676,84 +41314,84 @@ 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(4201), - [sym__declaration] = STATE(4295), - [sym_decl_alias] = STATE(4296), - [sym_stmt_let] = STATE(4297), - [sym_stmt_mut] = STATE(4297), - [sym_stmt_const] = STATE(4297), - [sym_assignment] = STATE(4297), - [sym__mutable_assignment_pattern] = STATE(4298), - [sym__statement] = STATE(4295), - [sym_pipeline] = STATE(4297), - [sym__block_body] = STATE(5057), - [sym_cmd_identifier] = STATE(2679), - [aux_sym__repeat_newline] = STATE(17), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4296), - [sym_decl_export] = STATE(4296), - [sym_decl_extern] = STATE(4296), - [sym_decl_module] = STATE(4296), - [sym_decl_use] = STATE(4296), - [sym_parameter_pipes] = STATE(50), - [sym__ctrl_statement] = STATE(4297), - [sym__ctrl_expression] = STATE(3348), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if] = STATE(3352), - [sym_ctrl_match] = STATE(3352), - [sym_ctrl_try] = STATE(3352), - [sym__stmt_let_shortcut] = STATE(3358), - [sym_pipe_element] = STATE(2956), - [sym_where_command] = STATE(3348), + [sym__block_body_statement] = STATE(4191), + [sym__declaration] = STATE(4507), + [sym_decl_alias] = STATE(4336), + [sym_stmt_let] = STATE(4338), + [sym_stmt_mut] = STATE(4338), + [sym_stmt_const] = STATE(4338), + [sym_assignment] = STATE(4338), + [sym__mutable_assignment_pattern] = STATE(4342), + [sym__statement] = STATE(4507), + [sym_pipeline] = STATE(4338), + [sym__block_body] = STATE(5106), + [sym_cmd_identifier] = STATE(2647), + [aux_sym__repeat_newline] = STATE(25), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4336), + [sym_decl_export] = STATE(4336), + [sym_decl_extern] = STATE(4336), + [sym_decl_module] = STATE(4336), + [sym_decl_use] = STATE(4336), + [sym_parameter_pipes] = STATE(60), + [sym__ctrl_statement] = STATE(4338), + [sym__ctrl_expression] = STATE(3368), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if] = STATE(3392), + [sym_ctrl_match] = STATE(3392), + [sym_ctrl_try] = STATE(3392), + [sym__stmt_let_shortcut] = STATE(3393), + [sym_pipe_element] = STATE(2909), + [sym_where_command] = STATE(3368), [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(794), - [sym__spread_parenthesized] = STATE(4883), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym__spread_variable] = STATE(4892), - [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(1144), - [sym__val_number_decimal] = STATE(114), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(1144), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(1144), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym__spread_record] = STATE(4883), - [sym_record_body] = STATE(5088), - [sym_record_entry] = STATE(4687), - [sym__record_key] = STATE(5341), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3348), + [sym_expr_parenthesized] = STATE(737), + [sym__spread_parenthesized] = STATE(5018), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym__spread_variable] = STATE(5020), + [sym_val_variable] = STATE(417), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(1261), + [sym__val_number_decimal] = STATE(106), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(1261), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(1261), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym__spread_record] = STATE(5018), + [sym_record_body] = STATE(5116), + [sym_record_entry] = STATE(4653), + [sym__record_key] = STATE(5156), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3368), [sym_comment] = STATE(14), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(80), - [aux_sym__block_body_repeat2] = STATE(87), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym__types_body_repeat1] = STATE(584), - [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(813), + [aux_sym_pipeline_repeat1] = STATE(176), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym__types_body_repeat1] = STATE(514), + [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_record_body_repeat1] = STATE(721), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -40772,6 +41410,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(137), [anon_sym_try] = ACTIONS(139), [anon_sym_catch] = ACTIONS(137), + [anon_sym_finally] = ACTIONS(137), [anon_sym_match] = ACTIONS(141), [anon_sym_in] = ACTIONS(143), [anon_sym_true] = ACTIONS(145), @@ -40820,84 +41459,84 @@ 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(4201), - [sym__declaration] = STATE(4295), - [sym_decl_alias] = STATE(4296), - [sym_stmt_let] = STATE(4297), - [sym_stmt_mut] = STATE(4297), - [sym_stmt_const] = STATE(4297), - [sym_assignment] = STATE(4297), - [sym__mutable_assignment_pattern] = STATE(4298), - [sym__statement] = STATE(4295), - [sym_pipeline] = STATE(4297), - [sym__block_body] = STATE(5206), - [sym_cmd_identifier] = STATE(2679), - [aux_sym__repeat_newline] = STATE(21), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4296), - [sym_decl_export] = STATE(4296), - [sym_decl_extern] = STATE(4296), - [sym_decl_module] = STATE(4296), - [sym_decl_use] = STATE(4296), - [sym_parameter_pipes] = STATE(42), - [sym__ctrl_statement] = STATE(4297), - [sym__ctrl_expression] = STATE(3348), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if] = STATE(3352), - [sym_ctrl_match] = STATE(3352), - [sym_ctrl_try] = STATE(3352), - [sym__stmt_let_shortcut] = STATE(3358), - [sym_pipe_element] = STATE(2956), - [sym_where_command] = STATE(3348), + [sym__block_body_statement] = STATE(4191), + [sym__declaration] = STATE(4507), + [sym_decl_alias] = STATE(4336), + [sym_stmt_let] = STATE(4338), + [sym_stmt_mut] = STATE(4338), + [sym_stmt_const] = STATE(4338), + [sym_assignment] = STATE(4338), + [sym__mutable_assignment_pattern] = STATE(4342), + [sym__statement] = STATE(4507), + [sym_pipeline] = STATE(4338), + [sym__block_body] = STATE(5462), + [sym_cmd_identifier] = STATE(2647), + [aux_sym__repeat_newline] = STATE(18), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4336), + [sym_decl_export] = STATE(4336), + [sym_decl_extern] = STATE(4336), + [sym_decl_module] = STATE(4336), + [sym_decl_use] = STATE(4336), + [sym_parameter_pipes] = STATE(37), + [sym__ctrl_statement] = STATE(4338), + [sym__ctrl_expression] = STATE(3368), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if] = STATE(3392), + [sym_ctrl_match] = STATE(3392), + [sym_ctrl_try] = STATE(3392), + [sym__stmt_let_shortcut] = STATE(3393), + [sym_pipe_element] = STATE(2909), + [sym_where_command] = STATE(3368), [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(794), - [sym__spread_parenthesized] = STATE(4883), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym__spread_variable] = STATE(4892), - [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(1144), - [sym__val_number_decimal] = STATE(114), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(1144), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(1144), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym__spread_record] = STATE(4883), - [sym_record_body] = STATE(5202), - [sym_record_entry] = STATE(4687), - [sym__record_key] = STATE(5341), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3348), + [sym_expr_parenthesized] = STATE(737), + [sym__spread_parenthesized] = STATE(5018), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym__spread_variable] = STATE(5020), + [sym_val_variable] = STATE(417), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(1261), + [sym__val_number_decimal] = STATE(106), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(1261), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(1261), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym__spread_record] = STATE(5018), + [sym_record_body] = STATE(5334), + [sym_record_entry] = STATE(4653), + [sym__record_key] = STATE(5156), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3368), [sym_comment] = STATE(15), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(80), - [aux_sym__block_body_repeat2] = STATE(87), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym__types_body_repeat1] = STATE(584), - [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(813), + [aux_sym_pipeline_repeat1] = STATE(176), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym__types_body_repeat1] = STATE(514), + [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_record_body_repeat1] = STATE(721), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -40916,6 +41555,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(137), [anon_sym_try] = ACTIONS(139), [anon_sym_catch] = ACTIONS(137), + [anon_sym_finally] = ACTIONS(137), [anon_sym_match] = ACTIONS(141), [anon_sym_in] = ACTIONS(143), [anon_sym_true] = ACTIONS(145), @@ -40964,76 +41604,76 @@ 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(4201), - [sym__declaration] = STATE(4295), - [sym_decl_alias] = STATE(4296), - [sym_stmt_let] = STATE(4297), - [sym_stmt_mut] = STATE(4297), - [sym_stmt_const] = STATE(4297), - [sym_assignment] = STATE(4297), - [sym__mutable_assignment_pattern] = STATE(4298), - [sym__statement] = STATE(4295), - [sym_pipeline] = STATE(4297), - [sym__block_body] = STATE(5358), - [sym_cmd_identifier] = STATE(2812), - [aux_sym__repeat_newline] = STATE(1356), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4296), - [sym_decl_export] = STATE(4296), - [sym_decl_extern] = STATE(4296), - [sym_decl_module] = STATE(4296), - [sym_decl_use] = STATE(4296), + [sym__block_body_statement] = STATE(4191), + [sym__declaration] = STATE(4507), + [sym_decl_alias] = STATE(4336), + [sym_stmt_let] = STATE(4338), + [sym_stmt_mut] = STATE(4338), + [sym_stmt_const] = STATE(4338), + [sym_assignment] = STATE(4338), + [sym__mutable_assignment_pattern] = STATE(4342), + [sym__statement] = STATE(4507), + [sym_pipeline] = STATE(4338), + [sym__block_body] = STATE(5233), + [sym_cmd_identifier] = STATE(2730), + [aux_sym__repeat_newline] = STATE(1358), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4336), + [sym_decl_export] = STATE(4336), + [sym_decl_extern] = STATE(4336), + [sym_decl_module] = STATE(4336), + [sym_decl_use] = STATE(4336), [sym_parameter_pipes] = STATE(49), - [sym__ctrl_statement] = STATE(4297), - [sym__ctrl_expression] = STATE(3348), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if] = STATE(3352), - [sym_ctrl_match] = STATE(3352), - [sym_ctrl_try] = STATE(3352), - [sym__stmt_let_shortcut] = STATE(3358), - [sym_pipe_element] = STATE(2956), - [sym_where_command] = STATE(3348), + [sym__ctrl_statement] = STATE(4338), + [sym__ctrl_expression] = STATE(3368), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if] = STATE(3392), + [sym_ctrl_match] = STATE(3392), + [sym_ctrl_try] = STATE(3392), + [sym__stmt_let_shortcut] = STATE(3393), + [sym_pipe_element] = STATE(2909), + [sym_where_command] = STATE(3368), [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(704), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), + [sym_expr_parenthesized] = STATE(724), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(133), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3348), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3368), [sym_comment] = STATE(16), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(80), - [aux_sym__block_body_repeat2] = STATE(87), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym_pipeline_repeat1] = STATE(176), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -41052,6 +41692,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -41096,76 +41737,76 @@ 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(4201), - [sym__declaration] = STATE(4295), - [sym_decl_alias] = STATE(4296), - [sym_stmt_let] = STATE(4297), - [sym_stmt_mut] = STATE(4297), - [sym_stmt_const] = STATE(4297), - [sym_assignment] = STATE(4297), - [sym__mutable_assignment_pattern] = STATE(4298), - [sym__statement] = STATE(4295), - [sym_pipeline] = STATE(4297), - [sym__block_body] = STATE(5333), - [sym_cmd_identifier] = STATE(2812), - [aux_sym__repeat_newline] = STATE(1356), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4296), - [sym_decl_export] = STATE(4296), - [sym_decl_extern] = STATE(4296), - [sym_decl_module] = STATE(4296), - [sym_decl_use] = STATE(4296), - [sym_parameter_pipes] = STATE(36), - [sym__ctrl_statement] = STATE(4297), - [sym__ctrl_expression] = STATE(3348), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if] = STATE(3352), - [sym_ctrl_match] = STATE(3352), - [sym_ctrl_try] = STATE(3352), - [sym__stmt_let_shortcut] = STATE(3358), - [sym_pipe_element] = STATE(2956), - [sym_where_command] = STATE(3348), + [sym__block_body_statement] = STATE(4191), + [sym__declaration] = STATE(4507), + [sym_decl_alias] = STATE(4336), + [sym_stmt_let] = STATE(4338), + [sym_stmt_mut] = STATE(4338), + [sym_stmt_const] = STATE(4338), + [sym_assignment] = STATE(4338), + [sym__mutable_assignment_pattern] = STATE(4342), + [sym__statement] = STATE(4507), + [sym_pipeline] = STATE(4338), + [sym__block_body] = STATE(5086), + [sym_cmd_identifier] = STATE(2730), + [aux_sym__repeat_newline] = STATE(16), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4336), + [sym_decl_export] = STATE(4336), + [sym_decl_extern] = STATE(4336), + [sym_decl_module] = STATE(4336), + [sym_decl_use] = STATE(4336), + [sym_parameter_pipes] = STATE(41), + [sym__ctrl_statement] = STATE(4338), + [sym__ctrl_expression] = STATE(3368), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if] = STATE(3392), + [sym_ctrl_match] = STATE(3392), + [sym_ctrl_try] = STATE(3392), + [sym__stmt_let_shortcut] = STATE(3393), + [sym_pipe_element] = STATE(2909), + [sym_where_command] = STATE(3368), [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(704), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), + [sym_expr_parenthesized] = STATE(724), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(133), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3348), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3368), [sym_comment] = STATE(17), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(80), - [aux_sym__block_body_repeat2] = STATE(87), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym_pipeline_repeat1] = STATE(176), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -41184,6 +41825,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -41228,76 +41870,76 @@ 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(4201), - [sym__declaration] = STATE(4295), - [sym_decl_alias] = STATE(4296), - [sym_stmt_let] = STATE(4297), - [sym_stmt_mut] = STATE(4297), - [sym_stmt_const] = STATE(4297), - [sym_assignment] = STATE(4297), - [sym__mutable_assignment_pattern] = STATE(4298), - [sym__statement] = STATE(4295), - [sym_pipeline] = STATE(4297), - [sym__block_body] = STATE(5206), - [sym_cmd_identifier] = STATE(2812), - [aux_sym__repeat_newline] = STATE(21), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4296), - [sym_decl_export] = STATE(4296), - [sym_decl_extern] = STATE(4296), - [sym_decl_module] = STATE(4296), - [sym_decl_use] = STATE(4296), - [sym_parameter_pipes] = STATE(42), - [sym__ctrl_statement] = STATE(4297), - [sym__ctrl_expression] = STATE(3348), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if] = STATE(3352), - [sym_ctrl_match] = STATE(3352), - [sym_ctrl_try] = STATE(3352), - [sym__stmt_let_shortcut] = STATE(3358), - [sym_pipe_element] = STATE(2956), - [sym_where_command] = STATE(3348), + [sym__block_body_statement] = STATE(4191), + [sym__declaration] = STATE(4507), + [sym_decl_alias] = STATE(4336), + [sym_stmt_let] = STATE(4338), + [sym_stmt_mut] = STATE(4338), + [sym_stmt_const] = STATE(4338), + [sym_assignment] = STATE(4338), + [sym__mutable_assignment_pattern] = STATE(4342), + [sym__statement] = STATE(4507), + [sym_pipeline] = STATE(4338), + [sym__block_body] = STATE(5207), + [sym_cmd_identifier] = STATE(2730), + [aux_sym__repeat_newline] = STATE(1358), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4336), + [sym_decl_export] = STATE(4336), + [sym_decl_extern] = STATE(4336), + [sym_decl_module] = STATE(4336), + [sym_decl_use] = STATE(4336), + [sym_parameter_pipes] = STATE(40), + [sym__ctrl_statement] = STATE(4338), + [sym__ctrl_expression] = STATE(3368), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if] = STATE(3392), + [sym_ctrl_match] = STATE(3392), + [sym_ctrl_try] = STATE(3392), + [sym__stmt_let_shortcut] = STATE(3393), + [sym_pipe_element] = STATE(2909), + [sym_where_command] = STATE(3368), [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(704), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), + [sym_expr_parenthesized] = STATE(724), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(133), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3348), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3368), [sym_comment] = STATE(18), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(80), - [aux_sym__block_body_repeat2] = STATE(87), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym_pipeline_repeat1] = STATE(176), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -41316,6 +41958,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -41360,76 +42003,76 @@ 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(4201), - [sym__declaration] = STATE(4295), - [sym_decl_alias] = STATE(4296), - [sym_stmt_let] = STATE(4297), - [sym_stmt_mut] = STATE(4297), - [sym_stmt_const] = STATE(4297), - [sym_assignment] = STATE(4297), - [sym__mutable_assignment_pattern] = STATE(4298), - [sym__statement] = STATE(4295), - [sym_pipeline] = STATE(4297), - [sym__block_body] = STATE(5057), - [sym_cmd_identifier] = STATE(2812), - [aux_sym__repeat_newline] = STATE(17), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4296), - [sym_decl_export] = STATE(4296), - [sym_decl_extern] = STATE(4296), - [sym_decl_module] = STATE(4296), - [sym_decl_use] = STATE(4296), - [sym_parameter_pipes] = STATE(50), - [sym__ctrl_statement] = STATE(4297), - [sym__ctrl_expression] = STATE(3348), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if] = STATE(3352), - [sym_ctrl_match] = STATE(3352), - [sym_ctrl_try] = STATE(3352), - [sym__stmt_let_shortcut] = STATE(3358), - [sym_pipe_element] = STATE(2956), - [sym_where_command] = STATE(3348), + [sym__block_body_statement] = STATE(4191), + [sym__declaration] = STATE(4507), + [sym_decl_alias] = STATE(4336), + [sym_stmt_let] = STATE(4338), + [sym_stmt_mut] = STATE(4338), + [sym_stmt_const] = STATE(4338), + [sym_assignment] = STATE(4338), + [sym__mutable_assignment_pattern] = STATE(4342), + [sym__statement] = STATE(4507), + [sym_pipeline] = STATE(4338), + [sym__block_body] = STATE(5462), + [sym_cmd_identifier] = STATE(2730), + [aux_sym__repeat_newline] = STATE(18), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4336), + [sym_decl_export] = STATE(4336), + [sym_decl_extern] = STATE(4336), + [sym_decl_module] = STATE(4336), + [sym_decl_use] = STATE(4336), + [sym_parameter_pipes] = STATE(37), + [sym__ctrl_statement] = STATE(4338), + [sym__ctrl_expression] = STATE(3368), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if] = STATE(3392), + [sym_ctrl_match] = STATE(3392), + [sym_ctrl_try] = STATE(3392), + [sym__stmt_let_shortcut] = STATE(3393), + [sym_pipe_element] = STATE(2909), + [sym_where_command] = STATE(3368), [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(704), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), + [sym_expr_parenthesized] = STATE(724), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(133), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3348), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3368), [sym_comment] = STATE(19), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(80), - [aux_sym__block_body_repeat2] = STATE(87), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym_pipeline_repeat1] = STATE(176), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -41448,6 +42091,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -41492,76 +42136,76 @@ 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(4201), - [sym__declaration] = STATE(4295), - [sym_decl_alias] = STATE(4296), - [sym_stmt_let] = STATE(4297), - [sym_stmt_mut] = STATE(4297), - [sym_stmt_const] = STATE(4297), - [sym_assignment] = STATE(4297), - [sym__mutable_assignment_pattern] = STATE(4298), - [sym__statement] = STATE(4295), - [sym_pipeline] = STATE(4297), - [sym__block_body] = STATE(5031), - [sym_cmd_identifier] = STATE(2812), - [aux_sym__repeat_newline] = STATE(1356), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4296), - [sym_decl_export] = STATE(4296), - [sym_decl_extern] = STATE(4296), - [sym_decl_module] = STATE(4296), - [sym_decl_use] = STATE(4296), - [sym_parameter_pipes] = STATE(60), - [sym__ctrl_statement] = STATE(4297), - [sym__ctrl_expression] = STATE(3348), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if] = STATE(3352), - [sym_ctrl_match] = STATE(3352), - [sym_ctrl_try] = STATE(3352), - [sym__stmt_let_shortcut] = STATE(3358), - [sym_pipe_element] = STATE(2956), - [sym_where_command] = STATE(3348), + [sym__block_body_statement] = STATE(4191), + [sym__declaration] = STATE(4507), + [sym_decl_alias] = STATE(4336), + [sym_stmt_let] = STATE(4338), + [sym_stmt_mut] = STATE(4338), + [sym_stmt_const] = STATE(4338), + [sym_assignment] = STATE(4338), + [sym__mutable_assignment_pattern] = STATE(4342), + [sym__statement] = STATE(4507), + [sym_pipeline] = STATE(4338), + [sym__block_body] = STATE(5117), + [sym_cmd_identifier] = STATE(2730), + [aux_sym__repeat_newline] = STATE(16), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4336), + [sym_decl_export] = STATE(4336), + [sym_decl_extern] = STATE(4336), + [sym_decl_module] = STATE(4336), + [sym_decl_use] = STATE(4336), + [sym_parameter_pipes] = STATE(41), + [sym__ctrl_statement] = STATE(4338), + [sym__ctrl_expression] = STATE(3368), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if] = STATE(3392), + [sym_ctrl_match] = STATE(3392), + [sym_ctrl_try] = STATE(3392), + [sym__stmt_let_shortcut] = STATE(3393), + [sym_pipe_element] = STATE(2909), + [sym_where_command] = STATE(3368), [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(704), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), + [sym_expr_parenthesized] = STATE(724), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(133), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3348), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3368), [sym_comment] = STATE(20), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(80), - [aux_sym__block_body_repeat2] = STATE(87), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym_pipeline_repeat1] = STATE(176), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -41580,6 +42224,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -41624,76 +42269,76 @@ 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(4201), - [sym__declaration] = STATE(4295), - [sym_decl_alias] = STATE(4296), - [sym_stmt_let] = STATE(4297), - [sym_stmt_mut] = STATE(4297), - [sym_stmt_const] = STATE(4297), - [sym_assignment] = STATE(4297), - [sym__mutable_assignment_pattern] = STATE(4298), - [sym__statement] = STATE(4295), - [sym_pipeline] = STATE(4297), - [sym__block_body] = STATE(5082), - [sym_cmd_identifier] = STATE(2812), - [aux_sym__repeat_newline] = STATE(1356), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4296), - [sym_decl_export] = STATE(4296), - [sym_decl_extern] = STATE(4296), - [sym_decl_module] = STATE(4296), - [sym_decl_use] = STATE(4296), - [sym_parameter_pipes] = STATE(44), - [sym__ctrl_statement] = STATE(4297), - [sym__ctrl_expression] = STATE(3348), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if] = STATE(3352), - [sym_ctrl_match] = STATE(3352), - [sym_ctrl_try] = STATE(3352), - [sym__stmt_let_shortcut] = STATE(3358), - [sym_pipe_element] = STATE(2956), - [sym_where_command] = STATE(3348), + [sym__block_body_statement] = STATE(4191), + [sym__declaration] = STATE(4507), + [sym_decl_alias] = STATE(4336), + [sym_stmt_let] = STATE(4338), + [sym_stmt_mut] = STATE(4338), + [sym_stmt_const] = STATE(4338), + [sym_assignment] = STATE(4338), + [sym__mutable_assignment_pattern] = STATE(4342), + [sym__statement] = STATE(4507), + [sym_pipeline] = STATE(4338), + [sym__block_body] = STATE(5253), + [sym_cmd_identifier] = STATE(2730), + [aux_sym__repeat_newline] = STATE(18), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4336), + [sym_decl_export] = STATE(4336), + [sym_decl_extern] = STATE(4336), + [sym_decl_module] = STATE(4336), + [sym_decl_use] = STATE(4336), + [sym_parameter_pipes] = STATE(37), + [sym__ctrl_statement] = STATE(4338), + [sym__ctrl_expression] = STATE(3368), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if] = STATE(3392), + [sym_ctrl_match] = STATE(3392), + [sym_ctrl_try] = STATE(3392), + [sym__stmt_let_shortcut] = STATE(3393), + [sym_pipe_element] = STATE(2909), + [sym_where_command] = STATE(3368), [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(704), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), + [sym_expr_parenthesized] = STATE(724), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(133), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3348), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3368), [sym_comment] = STATE(21), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(80), - [aux_sym__block_body_repeat2] = STATE(87), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym_pipeline_repeat1] = STATE(176), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -41712,6 +42357,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -41756,76 +42402,76 @@ 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(4201), - [sym__declaration] = STATE(4295), - [sym_decl_alias] = STATE(4296), - [sym_stmt_let] = STATE(4297), - [sym_stmt_mut] = STATE(4297), - [sym_stmt_const] = STATE(4297), - [sym_assignment] = STATE(4297), - [sym__mutable_assignment_pattern] = STATE(4298), - [sym__statement] = STATE(4295), - [sym_pipeline] = STATE(4297), - [sym__block_body] = STATE(5320), - [sym_cmd_identifier] = STATE(2812), - [aux_sym__repeat_newline] = STATE(1356), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4296), - [sym_decl_export] = STATE(4296), - [sym_decl_extern] = STATE(4296), - [sym_decl_module] = STATE(4296), - [sym_decl_use] = STATE(4296), - [sym_parameter_pipes] = STATE(56), - [sym__ctrl_statement] = STATE(4297), - [sym__ctrl_expression] = STATE(3348), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if] = STATE(3352), - [sym_ctrl_match] = STATE(3352), - [sym_ctrl_try] = STATE(3352), - [sym__stmt_let_shortcut] = STATE(3358), - [sym_pipe_element] = STATE(2956), - [sym_where_command] = STATE(3348), + [sym__block_body_statement] = STATE(4191), + [sym__declaration] = STATE(4507), + [sym_decl_alias] = STATE(4336), + [sym_stmt_let] = STATE(4338), + [sym_stmt_mut] = STATE(4338), + [sym_stmt_const] = STATE(4338), + [sym_assignment] = STATE(4338), + [sym__mutable_assignment_pattern] = STATE(4342), + [sym__statement] = STATE(4507), + [sym_pipeline] = STATE(4338), + [sym__block_body] = STATE(5080), + [sym_cmd_identifier] = STATE(2730), + [aux_sym__repeat_newline] = STATE(1358), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4336), + [sym_decl_export] = STATE(4336), + [sym_decl_extern] = STATE(4336), + [sym_decl_module] = STATE(4336), + [sym_decl_use] = STATE(4336), + [sym_parameter_pipes] = STATE(47), + [sym__ctrl_statement] = STATE(4338), + [sym__ctrl_expression] = STATE(3368), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if] = STATE(3392), + [sym_ctrl_match] = STATE(3392), + [sym_ctrl_try] = STATE(3392), + [sym__stmt_let_shortcut] = STATE(3393), + [sym_pipe_element] = STATE(2909), + [sym_where_command] = STATE(3368), [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(704), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), + [sym_expr_parenthesized] = STATE(724), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(133), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3348), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3368), [sym_comment] = STATE(22), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(80), - [aux_sym__block_body_repeat2] = STATE(87), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym_pipeline_repeat1] = STATE(176), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -41844,6 +42490,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -41888,76 +42535,76 @@ 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(4201), - [sym__declaration] = STATE(4295), - [sym_decl_alias] = STATE(4296), - [sym_stmt_let] = STATE(4297), - [sym_stmt_mut] = STATE(4297), - [sym_stmt_const] = STATE(4297), - [sym_assignment] = STATE(4297), - [sym__mutable_assignment_pattern] = STATE(4298), - [sym__statement] = STATE(4295), - [sym_pipeline] = STATE(4297), - [sym__block_body] = STATE(5128), - [sym_cmd_identifier] = STATE(2812), - [aux_sym__repeat_newline] = STATE(17), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4296), - [sym_decl_export] = STATE(4296), - [sym_decl_extern] = STATE(4296), - [sym_decl_module] = STATE(4296), - [sym_decl_use] = STATE(4296), - [sym_parameter_pipes] = STATE(50), - [sym__ctrl_statement] = STATE(4297), - [sym__ctrl_expression] = STATE(3348), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if] = STATE(3352), - [sym_ctrl_match] = STATE(3352), - [sym_ctrl_try] = STATE(3352), - [sym__stmt_let_shortcut] = STATE(3358), - [sym_pipe_element] = STATE(2956), - [sym_where_command] = STATE(3348), + [sym__block_body_statement] = STATE(4191), + [sym__declaration] = STATE(4507), + [sym_decl_alias] = STATE(4336), + [sym_stmt_let] = STATE(4338), + [sym_stmt_mut] = STATE(4338), + [sym_stmt_const] = STATE(4338), + [sym_assignment] = STATE(4338), + [sym__mutable_assignment_pattern] = STATE(4342), + [sym__statement] = STATE(4507), + [sym_pipeline] = STATE(4338), + [sym__block_body] = STATE(5215), + [sym_cmd_identifier] = STATE(2730), + [aux_sym__repeat_newline] = STATE(1358), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4336), + [sym_decl_export] = STATE(4336), + [sym_decl_extern] = STATE(4336), + [sym_decl_module] = STATE(4336), + [sym_decl_use] = STATE(4336), + [sym_parameter_pipes] = STATE(58), + [sym__ctrl_statement] = STATE(4338), + [sym__ctrl_expression] = STATE(3368), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if] = STATE(3392), + [sym_ctrl_match] = STATE(3392), + [sym_ctrl_try] = STATE(3392), + [sym__stmt_let_shortcut] = STATE(3393), + [sym_pipe_element] = STATE(2909), + [sym_where_command] = STATE(3368), [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(704), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), + [sym_expr_parenthesized] = STATE(724), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(133), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3348), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3368), [sym_comment] = STATE(23), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(80), - [aux_sym__block_body_repeat2] = STATE(87), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym_pipeline_repeat1] = STATE(176), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -41976,6 +42623,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -42020,76 +42668,76 @@ 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(4201), - [sym__declaration] = STATE(4295), - [sym_decl_alias] = STATE(4296), - [sym_stmt_let] = STATE(4297), - [sym_stmt_mut] = STATE(4297), - [sym_stmt_const] = STATE(4297), - [sym_assignment] = STATE(4297), - [sym__mutable_assignment_pattern] = STATE(4298), - [sym__statement] = STATE(4295), - [sym_pipeline] = STATE(4297), - [sym__block_body] = STATE(5249), - [sym_cmd_identifier] = STATE(2812), - [aux_sym__repeat_newline] = STATE(21), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4296), - [sym_decl_export] = STATE(4296), - [sym_decl_extern] = STATE(4296), - [sym_decl_module] = STATE(4296), - [sym_decl_use] = STATE(4296), - [sym_parameter_pipes] = STATE(42), - [sym__ctrl_statement] = STATE(4297), - [sym__ctrl_expression] = STATE(3348), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if] = STATE(3352), - [sym_ctrl_match] = STATE(3352), - [sym_ctrl_try] = STATE(3352), - [sym__stmt_let_shortcut] = STATE(3358), - [sym_pipe_element] = STATE(2956), - [sym_where_command] = STATE(3348), + [sym__block_body_statement] = STATE(4191), + [sym__declaration] = STATE(4507), + [sym_decl_alias] = STATE(4336), + [sym_stmt_let] = STATE(4338), + [sym_stmt_mut] = STATE(4338), + [sym_stmt_const] = STATE(4338), + [sym_assignment] = STATE(4338), + [sym__mutable_assignment_pattern] = STATE(4342), + [sym__statement] = STATE(4507), + [sym_pipeline] = STATE(4338), + [sym__block_body] = STATE(5300), + [sym_cmd_identifier] = STATE(2730), + [aux_sym__repeat_newline] = STATE(1358), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4336), + [sym_decl_export] = STATE(4336), + [sym_decl_extern] = STATE(4336), + [sym_decl_module] = STATE(4336), + [sym_decl_use] = STATE(4336), + [sym_parameter_pipes] = STATE(65), + [sym__ctrl_statement] = STATE(4338), + [sym__ctrl_expression] = STATE(3368), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if] = STATE(3392), + [sym_ctrl_match] = STATE(3392), + [sym_ctrl_try] = STATE(3392), + [sym__stmt_let_shortcut] = STATE(3393), + [sym_pipe_element] = STATE(2909), + [sym_where_command] = STATE(3368), [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(704), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), + [sym_expr_parenthesized] = STATE(724), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(133), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3348), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3368), [sym_comment] = STATE(24), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(80), - [aux_sym__block_body_repeat2] = STATE(87), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym_pipeline_repeat1] = STATE(176), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -42108,6 +42756,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -42152,76 +42801,76 @@ 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(4201), - [sym__declaration] = STATE(4295), - [sym_decl_alias] = STATE(4296), - [sym_stmt_let] = STATE(4297), - [sym_stmt_mut] = STATE(4297), - [sym_stmt_const] = STATE(4297), - [sym_assignment] = STATE(4297), - [sym__mutable_assignment_pattern] = STATE(4298), - [sym__statement] = STATE(4295), - [sym_pipeline] = STATE(4297), - [sym__block_body] = STATE(5009), - [sym_cmd_identifier] = STATE(2812), - [aux_sym__repeat_newline] = STATE(1356), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4296), - [sym_decl_export] = STATE(4296), - [sym_decl_extern] = STATE(4296), - [sym_decl_module] = STATE(4296), - [sym_decl_use] = STATE(4296), - [sym_parameter_pipes] = STATE(64), - [sym__ctrl_statement] = STATE(4297), - [sym__ctrl_expression] = STATE(3348), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if] = STATE(3352), - [sym_ctrl_match] = STATE(3352), - [sym_ctrl_try] = STATE(3352), - [sym__stmt_let_shortcut] = STATE(3358), - [sym_pipe_element] = STATE(2956), - [sym_where_command] = STATE(3348), + [sym__block_body_statement] = STATE(4191), + [sym__declaration] = STATE(4507), + [sym_decl_alias] = STATE(4336), + [sym_stmt_let] = STATE(4338), + [sym_stmt_mut] = STATE(4338), + [sym_stmt_const] = STATE(4338), + [sym_assignment] = STATE(4338), + [sym__mutable_assignment_pattern] = STATE(4342), + [sym__statement] = STATE(4507), + [sym_pipeline] = STATE(4338), + [sym__block_body] = STATE(5183), + [sym_cmd_identifier] = STATE(2730), + [aux_sym__repeat_newline] = STATE(1358), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4336), + [sym_decl_export] = STATE(4336), + [sym_decl_extern] = STATE(4336), + [sym_decl_module] = STATE(4336), + [sym_decl_use] = STATE(4336), + [sym_parameter_pipes] = STATE(62), + [sym__ctrl_statement] = STATE(4338), + [sym__ctrl_expression] = STATE(3368), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if] = STATE(3392), + [sym_ctrl_match] = STATE(3392), + [sym_ctrl_try] = STATE(3392), + [sym__stmt_let_shortcut] = STATE(3393), + [sym_pipe_element] = STATE(2909), + [sym_where_command] = STATE(3368), [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(704), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), + [sym_expr_parenthesized] = STATE(724), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(133), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3348), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3368), [sym_comment] = STATE(25), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(80), - [aux_sym__block_body_repeat2] = STATE(87), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym_pipeline_repeat1] = STATE(176), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -42240,6 +42889,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -42284,76 +42934,76 @@ 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(4201), - [sym__declaration] = STATE(4295), - [sym_decl_alias] = STATE(4296), - [sym_stmt_let] = STATE(4297), - [sym_stmt_mut] = STATE(4297), - [sym_stmt_const] = STATE(4297), - [sym_assignment] = STATE(4297), - [sym__mutable_assignment_pattern] = STATE(4298), - [sym__statement] = STATE(4295), - [sym_pipeline] = STATE(4297), - [sym__block_body] = STATE(5154), - [sym_cmd_identifier] = STATE(2812), - [aux_sym__repeat_newline] = STATE(1356), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4296), - [sym_decl_export] = STATE(4296), - [sym_decl_extern] = STATE(4296), - [sym_decl_module] = STATE(4296), - [sym_decl_use] = STATE(4296), - [sym_parameter_pipes] = STATE(67), - [sym__ctrl_statement] = STATE(4297), - [sym__ctrl_expression] = STATE(3348), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if] = STATE(3352), - [sym_ctrl_match] = STATE(3352), - [sym_ctrl_try] = STATE(3352), - [sym__stmt_let_shortcut] = STATE(3358), - [sym_pipe_element] = STATE(2956), - [sym_where_command] = STATE(3348), + [sym__block_body_statement] = STATE(4191), + [sym__declaration] = STATE(4507), + [sym_decl_alias] = STATE(4336), + [sym_stmt_let] = STATE(4338), + [sym_stmt_mut] = STATE(4338), + [sym_stmt_const] = STATE(4338), + [sym_assignment] = STATE(4338), + [sym__mutable_assignment_pattern] = STATE(4342), + [sym__statement] = STATE(4507), + [sym_pipeline] = STATE(4338), + [sym__block_body] = STATE(5378), + [sym_cmd_identifier] = STATE(2730), + [aux_sym__repeat_newline] = STATE(1358), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4336), + [sym_decl_export] = STATE(4336), + [sym_decl_extern] = STATE(4336), + [sym_decl_module] = STATE(4336), + [sym_decl_use] = STATE(4336), + [sym_parameter_pipes] = STATE(52), + [sym__ctrl_statement] = STATE(4338), + [sym__ctrl_expression] = STATE(3368), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if] = STATE(3392), + [sym_ctrl_match] = STATE(3392), + [sym_ctrl_try] = STATE(3392), + [sym__stmt_let_shortcut] = STATE(3393), + [sym_pipe_element] = STATE(2909), + [sym_where_command] = STATE(3368), [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(704), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), + [sym_expr_parenthesized] = STATE(724), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(133), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3348), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3368), [sym_comment] = STATE(26), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(80), - [aux_sym__block_body_repeat2] = STATE(87), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym_pipeline_repeat1] = STATE(176), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -42372,6 +43022,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -42416,74 +43067,74 @@ 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(3898), - [sym__declaration_parenthesized] = STATE(4594), - [sym_decl_alias_parenthesized] = STATE(4614), - [sym_stmt_let_parenthesized] = STATE(4748), - [sym_stmt_mut_parenthesized] = STATE(4748), - [sym_stmt_const_parenthesized] = STATE(4748), - [sym_assignment_parenthesized] = STATE(4748), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), - [sym__statement_parenthesized] = STATE(4594), - [sym_pipeline_parenthesized] = STATE(4748), - [sym_cmd_identifier] = STATE(3009), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4614), - [sym_decl_export] = STATE(4614), - [sym_decl_extern] = STATE(4614), - [sym_decl_module] = STATE(4614), - [sym_decl_use] = STATE(4614), - [sym__ctrl_statement] = STATE(4748), - [sym__ctrl_expression_parenthesized] = STATE(3436), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if_parenthesized] = STATE(3367), - [sym_ctrl_match] = STATE(3367), - [sym_ctrl_try_parenthesized] = STATE(3367), - [sym__stmt_let_shortcut] = STATE(3368), - [sym_pipe_element_parenthesized] = STATE(3116), - [sym_where_command_parenthesized] = STATE(3436), - [sym__expression_parenthesized] = STATE(2290), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2157), - [sym_expr_parenthesized] = STATE(777), - [sym__parenthesized_body] = STATE(5102), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(124), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4730), - [sym__command_parenthesized] = STATE(3373), + [sym__block_body_statement_parenthesized] = STATE(4126), + [sym__declaration_parenthesized] = STATE(4800), + [sym_decl_alias_parenthesized] = STATE(4859), + [sym_stmt_let_parenthesized] = STATE(4864), + [sym_stmt_mut_parenthesized] = STATE(4864), + [sym_stmt_const_parenthesized] = STATE(4864), + [sym_assignment_parenthesized] = STATE(4864), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4865), + [sym__statement_parenthesized] = STATE(4800), + [sym_pipeline_parenthesized] = STATE(4864), + [sym_cmd_identifier] = STATE(2907), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4859), + [sym_decl_export] = STATE(4859), + [sym_decl_extern] = STATE(4859), + [sym_decl_module] = STATE(4859), + [sym_decl_use] = STATE(4859), + [sym__ctrl_statement] = STATE(4864), + [sym__ctrl_expression_parenthesized] = STATE(3454), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if_parenthesized] = STATE(3458), + [sym_ctrl_match] = STATE(3458), + [sym_ctrl_try_parenthesized] = STATE(3458), + [sym__stmt_let_shortcut] = STATE(3471), + [sym_pipe_element_parenthesized] = STATE(3176), + [sym_where_command_parenthesized] = STATE(3454), + [sym__expression_parenthesized] = STATE(2289), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2156), + [sym_expr_parenthesized] = STATE(739), + [sym__parenthesized_body] = STATE(5350), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(446), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(4794), + [sym__command_parenthesized] = STATE(3494), [sym_comment] = STATE(27), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), - [aux_sym__block_body_repeat1] = STATE(74), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), - [aux_sym__parenthesized_body_repeat2] = STATE(85), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), + [aux_sym__parenthesized_body_repeat2] = STATE(90), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -42502,6 +43153,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -42546,74 +43198,74 @@ 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(3898), - [sym__declaration_parenthesized] = STATE(4594), - [sym_decl_alias_parenthesized] = STATE(4614), - [sym_stmt_let_parenthesized] = STATE(4748), - [sym_stmt_mut_parenthesized] = STATE(4748), - [sym_stmt_const_parenthesized] = STATE(4748), - [sym_assignment_parenthesized] = STATE(4748), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), - [sym__statement_parenthesized] = STATE(4594), - [sym_pipeline_parenthesized] = STATE(4748), - [sym_cmd_identifier] = STATE(3009), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4614), - [sym_decl_export] = STATE(4614), - [sym_decl_extern] = STATE(4614), - [sym_decl_module] = STATE(4614), - [sym_decl_use] = STATE(4614), - [sym__ctrl_statement] = STATE(4748), - [sym__ctrl_expression_parenthesized] = STATE(3436), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if_parenthesized] = STATE(3367), - [sym_ctrl_match] = STATE(3367), - [sym_ctrl_try_parenthesized] = STATE(3367), - [sym__stmt_let_shortcut] = STATE(3368), - [sym_pipe_element_parenthesized] = STATE(3116), - [sym_where_command_parenthesized] = STATE(3436), - [sym__expression_parenthesized] = STATE(2290), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2157), - [sym_expr_parenthesized] = STATE(777), - [sym__parenthesized_body] = STATE(5193), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(124), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4730), - [sym__command_parenthesized] = STATE(3373), + [sym__block_body_statement_parenthesized] = STATE(4126), + [sym__declaration_parenthesized] = STATE(4800), + [sym_decl_alias_parenthesized] = STATE(4859), + [sym_stmt_let_parenthesized] = STATE(4864), + [sym_stmt_mut_parenthesized] = STATE(4864), + [sym_stmt_const_parenthesized] = STATE(4864), + [sym_assignment_parenthesized] = STATE(4864), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4865), + [sym__statement_parenthesized] = STATE(4800), + [sym_pipeline_parenthesized] = STATE(4864), + [sym_cmd_identifier] = STATE(2907), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4859), + [sym_decl_export] = STATE(4859), + [sym_decl_extern] = STATE(4859), + [sym_decl_module] = STATE(4859), + [sym_decl_use] = STATE(4859), + [sym__ctrl_statement] = STATE(4864), + [sym__ctrl_expression_parenthesized] = STATE(3454), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if_parenthesized] = STATE(3458), + [sym_ctrl_match] = STATE(3458), + [sym_ctrl_try_parenthesized] = STATE(3458), + [sym__stmt_let_shortcut] = STATE(3471), + [sym_pipe_element_parenthesized] = STATE(3176), + [sym_where_command_parenthesized] = STATE(3454), + [sym__expression_parenthesized] = STATE(2289), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2156), + [sym_expr_parenthesized] = STATE(739), + [sym__parenthesized_body] = STATE(5217), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(446), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(4794), + [sym__command_parenthesized] = STATE(3494), [sym_comment] = STATE(28), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), - [aux_sym__block_body_repeat1] = STATE(74), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), - [aux_sym__parenthesized_body_repeat2] = STATE(85), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), + [aux_sym__parenthesized_body_repeat2] = STATE(90), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -42632,6 +43284,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -42676,74 +43329,74 @@ 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(3898), - [sym__declaration_parenthesized] = STATE(4594), - [sym_decl_alias_parenthesized] = STATE(4614), - [sym_stmt_let_parenthesized] = STATE(4748), - [sym_stmt_mut_parenthesized] = STATE(4748), - [sym_stmt_const_parenthesized] = STATE(4748), - [sym_assignment_parenthesized] = STATE(4748), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), - [sym__statement_parenthesized] = STATE(4594), - [sym_pipeline_parenthesized] = STATE(4748), - [sym_cmd_identifier] = STATE(3009), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4614), - [sym_decl_export] = STATE(4614), - [sym_decl_extern] = STATE(4614), - [sym_decl_module] = STATE(4614), - [sym_decl_use] = STATE(4614), - [sym__ctrl_statement] = STATE(4748), - [sym__ctrl_expression_parenthesized] = STATE(3436), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if_parenthesized] = STATE(3367), - [sym_ctrl_match] = STATE(3367), - [sym_ctrl_try_parenthesized] = STATE(3367), - [sym__stmt_let_shortcut] = STATE(3368), - [sym_pipe_element_parenthesized] = STATE(3116), - [sym_where_command_parenthesized] = STATE(3436), - [sym__expression_parenthesized] = STATE(2290), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2157), - [sym_expr_parenthesized] = STATE(777), - [sym__parenthesized_body] = STATE(5127), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(124), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4730), - [sym__command_parenthesized] = STATE(3373), + [sym__block_body_statement_parenthesized] = STATE(4126), + [sym__declaration_parenthesized] = STATE(4800), + [sym_decl_alias_parenthesized] = STATE(4859), + [sym_stmt_let_parenthesized] = STATE(4864), + [sym_stmt_mut_parenthesized] = STATE(4864), + [sym_stmt_const_parenthesized] = STATE(4864), + [sym_assignment_parenthesized] = STATE(4864), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4865), + [sym__statement_parenthesized] = STATE(4800), + [sym_pipeline_parenthesized] = STATE(4864), + [sym_cmd_identifier] = STATE(2907), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4859), + [sym_decl_export] = STATE(4859), + [sym_decl_extern] = STATE(4859), + [sym_decl_module] = STATE(4859), + [sym_decl_use] = STATE(4859), + [sym__ctrl_statement] = STATE(4864), + [sym__ctrl_expression_parenthesized] = STATE(3454), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if_parenthesized] = STATE(3458), + [sym_ctrl_match] = STATE(3458), + [sym_ctrl_try_parenthesized] = STATE(3458), + [sym__stmt_let_shortcut] = STATE(3471), + [sym_pipe_element_parenthesized] = STATE(3176), + [sym_where_command_parenthesized] = STATE(3454), + [sym__expression_parenthesized] = STATE(2289), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2156), + [sym_expr_parenthesized] = STATE(739), + [sym__parenthesized_body] = STATE(5265), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(446), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(4794), + [sym__command_parenthesized] = STATE(3494), [sym_comment] = STATE(29), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), - [aux_sym__block_body_repeat1] = STATE(74), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), - [aux_sym__parenthesized_body_repeat2] = STATE(85), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), + [aux_sym__parenthesized_body_repeat2] = STATE(90), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -42762,6 +43415,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -42806,74 +43460,74 @@ 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(3898), - [sym__declaration_parenthesized] = STATE(4594), - [sym_decl_alias_parenthesized] = STATE(4614), - [sym_stmt_let_parenthesized] = STATE(4748), - [sym_stmt_mut_parenthesized] = STATE(4748), - [sym_stmt_const_parenthesized] = STATE(4748), - [sym_assignment_parenthesized] = STATE(4748), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), - [sym__statement_parenthesized] = STATE(4594), - [sym_pipeline_parenthesized] = STATE(4748), - [sym_cmd_identifier] = STATE(3009), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4614), - [sym_decl_export] = STATE(4614), - [sym_decl_extern] = STATE(4614), - [sym_decl_module] = STATE(4614), - [sym_decl_use] = STATE(4614), - [sym__ctrl_statement] = STATE(4748), - [sym__ctrl_expression_parenthesized] = STATE(3436), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if_parenthesized] = STATE(3367), - [sym_ctrl_match] = STATE(3367), - [sym_ctrl_try_parenthesized] = STATE(3367), - [sym__stmt_let_shortcut] = STATE(3368), - [sym_pipe_element_parenthesized] = STATE(3116), - [sym_where_command_parenthesized] = STATE(3436), - [sym__expression_parenthesized] = STATE(2290), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2157), - [sym_expr_parenthesized] = STATE(777), - [sym__parenthesized_body] = STATE(5210), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(124), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4730), - [sym__command_parenthesized] = STATE(3373), + [sym__block_body_statement_parenthesized] = STATE(4126), + [sym__declaration_parenthesized] = STATE(4800), + [sym_decl_alias_parenthesized] = STATE(4859), + [sym_stmt_let_parenthesized] = STATE(4864), + [sym_stmt_mut_parenthesized] = STATE(4864), + [sym_stmt_const_parenthesized] = STATE(4864), + [sym_assignment_parenthesized] = STATE(4864), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4865), + [sym__statement_parenthesized] = STATE(4800), + [sym_pipeline_parenthesized] = STATE(4864), + [sym_cmd_identifier] = STATE(2907), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4859), + [sym_decl_export] = STATE(4859), + [sym_decl_extern] = STATE(4859), + [sym_decl_module] = STATE(4859), + [sym_decl_use] = STATE(4859), + [sym__ctrl_statement] = STATE(4864), + [sym__ctrl_expression_parenthesized] = STATE(3454), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if_parenthesized] = STATE(3458), + [sym_ctrl_match] = STATE(3458), + [sym_ctrl_try_parenthesized] = STATE(3458), + [sym__stmt_let_shortcut] = STATE(3471), + [sym_pipe_element_parenthesized] = STATE(3176), + [sym_where_command_parenthesized] = STATE(3454), + [sym__expression_parenthesized] = STATE(2289), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2156), + [sym_expr_parenthesized] = STATE(739), + [sym__parenthesized_body] = STATE(5228), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(446), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(4794), + [sym__command_parenthesized] = STATE(3494), [sym_comment] = STATE(30), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), - [aux_sym__block_body_repeat1] = STATE(74), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), - [aux_sym__parenthesized_body_repeat2] = STATE(85), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), + [aux_sym__parenthesized_body_repeat2] = STATE(90), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -42892,6 +43546,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -42914,7 +43569,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), @@ -42936,74 +43591,74 @@ 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(3898), - [sym__declaration_parenthesized] = STATE(4594), - [sym_decl_alias_parenthesized] = STATE(4614), - [sym_stmt_let_parenthesized] = STATE(4748), - [sym_stmt_mut_parenthesized] = STATE(4748), - [sym_stmt_const_parenthesized] = STATE(4748), - [sym_assignment_parenthesized] = STATE(4748), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), - [sym__statement_parenthesized] = STATE(4594), - [sym_pipeline_parenthesized] = STATE(4748), - [sym_cmd_identifier] = STATE(3009), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4614), - [sym_decl_export] = STATE(4614), - [sym_decl_extern] = STATE(4614), - [sym_decl_module] = STATE(4614), - [sym_decl_use] = STATE(4614), - [sym__ctrl_statement] = STATE(4748), - [sym__ctrl_expression_parenthesized] = STATE(3436), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if_parenthesized] = STATE(3367), - [sym_ctrl_match] = STATE(3367), - [sym_ctrl_try_parenthesized] = STATE(3367), - [sym__stmt_let_shortcut] = STATE(3368), - [sym_pipe_element_parenthesized] = STATE(3116), - [sym_where_command_parenthesized] = STATE(3436), - [sym__expression_parenthesized] = STATE(2290), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2157), - [sym_expr_parenthesized] = STATE(777), - [sym__parenthesized_body] = STATE(5236), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(124), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4730), - [sym__command_parenthesized] = STATE(3373), + [sym__block_body_statement_parenthesized] = STATE(4126), + [sym__declaration_parenthesized] = STATE(4800), + [sym_decl_alias_parenthesized] = STATE(4859), + [sym_stmt_let_parenthesized] = STATE(4864), + [sym_stmt_mut_parenthesized] = STATE(4864), + [sym_stmt_const_parenthesized] = STATE(4864), + [sym_assignment_parenthesized] = STATE(4864), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4865), + [sym__statement_parenthesized] = STATE(4800), + [sym_pipeline_parenthesized] = STATE(4864), + [sym_cmd_identifier] = STATE(2907), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4859), + [sym_decl_export] = STATE(4859), + [sym_decl_extern] = STATE(4859), + [sym_decl_module] = STATE(4859), + [sym_decl_use] = STATE(4859), + [sym__ctrl_statement] = STATE(4864), + [sym__ctrl_expression_parenthesized] = STATE(3454), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if_parenthesized] = STATE(3458), + [sym_ctrl_match] = STATE(3458), + [sym_ctrl_try_parenthesized] = STATE(3458), + [sym__stmt_let_shortcut] = STATE(3471), + [sym_pipe_element_parenthesized] = STATE(3176), + [sym_where_command_parenthesized] = STATE(3454), + [sym__expression_parenthesized] = STATE(2289), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2156), + [sym_expr_parenthesized] = STATE(739), + [sym__parenthesized_body] = STATE(5109), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(446), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(4794), + [sym__command_parenthesized] = STATE(3494), [sym_comment] = STATE(31), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), - [aux_sym__block_body_repeat1] = STATE(74), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), - [aux_sym__parenthesized_body_repeat2] = STATE(85), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), + [aux_sym__parenthesized_body_repeat2] = STATE(90), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -43022,6 +43677,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -43035,7 +43691,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(355), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -43044,7 +43700,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(357), [aux_sym__val_number_decimal_token1] = ACTIONS(337), [aux_sym__val_number_decimal_token2] = ACTIONS(339), [aux_sym__val_number_decimal_token3] = ACTIONS(341), @@ -43066,74 +43722,74 @@ 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(3898), - [sym__declaration_parenthesized] = STATE(4594), - [sym_decl_alias_parenthesized] = STATE(4614), - [sym_stmt_let_parenthesized] = STATE(4748), - [sym_stmt_mut_parenthesized] = STATE(4748), - [sym_stmt_const_parenthesized] = STATE(4748), - [sym_assignment_parenthesized] = STATE(4748), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), - [sym__statement_parenthesized] = STATE(4594), - [sym_pipeline_parenthesized] = STATE(4748), - [sym_cmd_identifier] = STATE(3009), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4614), - [sym_decl_export] = STATE(4614), - [sym_decl_extern] = STATE(4614), - [sym_decl_module] = STATE(4614), - [sym_decl_use] = STATE(4614), - [sym__ctrl_statement] = STATE(4748), - [sym__ctrl_expression_parenthesized] = STATE(3436), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if_parenthesized] = STATE(3367), - [sym_ctrl_match] = STATE(3367), - [sym_ctrl_try_parenthesized] = STATE(3367), - [sym__stmt_let_shortcut] = STATE(3368), - [sym_pipe_element_parenthesized] = STATE(3116), - [sym_where_command_parenthesized] = STATE(3436), - [sym__expression_parenthesized] = STATE(2290), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2157), - [sym_expr_parenthesized] = STATE(777), - [sym__parenthesized_body] = STATE(5085), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(124), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4730), - [sym__command_parenthesized] = STATE(3373), + [sym__block_body_statement_parenthesized] = STATE(4126), + [sym__declaration_parenthesized] = STATE(4800), + [sym_decl_alias_parenthesized] = STATE(4859), + [sym_stmt_let_parenthesized] = STATE(4864), + [sym_stmt_mut_parenthesized] = STATE(4864), + [sym_stmt_const_parenthesized] = STATE(4864), + [sym_assignment_parenthesized] = STATE(4864), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4865), + [sym__statement_parenthesized] = STATE(4800), + [sym_pipeline_parenthesized] = STATE(4864), + [sym_cmd_identifier] = STATE(2907), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4859), + [sym_decl_export] = STATE(4859), + [sym_decl_extern] = STATE(4859), + [sym_decl_module] = STATE(4859), + [sym_decl_use] = STATE(4859), + [sym__ctrl_statement] = STATE(4864), + [sym__ctrl_expression_parenthesized] = STATE(3454), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if_parenthesized] = STATE(3458), + [sym_ctrl_match] = STATE(3458), + [sym_ctrl_try_parenthesized] = STATE(3458), + [sym__stmt_let_shortcut] = STATE(3471), + [sym_pipe_element_parenthesized] = STATE(3176), + [sym_where_command_parenthesized] = STATE(3454), + [sym__expression_parenthesized] = STATE(2289), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2156), + [sym_expr_parenthesized] = STATE(739), + [sym__parenthesized_body] = STATE(5382), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(446), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(4794), + [sym__command_parenthesized] = STATE(3494), [sym_comment] = STATE(32), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), - [aux_sym__block_body_repeat1] = STATE(74), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), - [aux_sym__parenthesized_body_repeat2] = STATE(85), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), + [aux_sym__parenthesized_body_repeat2] = STATE(90), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -43152,6 +43808,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -43165,7 +43822,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(361), + [anon_sym_RPAREN] = ACTIONS(359), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -43174,7 +43831,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), + [anon_sym_RPAREN2] = ACTIONS(361), [aux_sym__val_number_decimal_token1] = ACTIONS(337), [aux_sym__val_number_decimal_token2] = ACTIONS(339), [aux_sym__val_number_decimal_token3] = ACTIONS(341), @@ -43196,74 +43853,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(33)] = { - [sym__block_body_statement_parenthesized] = STATE(3898), - [sym__declaration_parenthesized] = STATE(4594), - [sym_decl_alias_parenthesized] = STATE(4614), - [sym_stmt_let_parenthesized] = STATE(4748), - [sym_stmt_mut_parenthesized] = STATE(4748), - [sym_stmt_const_parenthesized] = STATE(4748), - [sym_assignment_parenthesized] = STATE(4748), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), - [sym__statement_parenthesized] = STATE(4594), - [sym_pipeline_parenthesized] = STATE(4748), - [sym_cmd_identifier] = STATE(3009), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4614), - [sym_decl_export] = STATE(4614), - [sym_decl_extern] = STATE(4614), - [sym_decl_module] = STATE(4614), - [sym_decl_use] = STATE(4614), - [sym__ctrl_statement] = STATE(4748), - [sym__ctrl_expression_parenthesized] = STATE(3436), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if_parenthesized] = STATE(3367), - [sym_ctrl_match] = STATE(3367), - [sym_ctrl_try_parenthesized] = STATE(3367), - [sym__stmt_let_shortcut] = STATE(3368), - [sym_pipe_element_parenthesized] = STATE(3116), - [sym_where_command_parenthesized] = STATE(3436), - [sym__expression_parenthesized] = STATE(2290), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2157), - [sym_expr_parenthesized] = STATE(777), - [sym__parenthesized_body] = STATE(5207), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(124), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4730), - [sym__command_parenthesized] = STATE(3373), + [sym__block_body_statement_parenthesized] = STATE(4126), + [sym__declaration_parenthesized] = STATE(4800), + [sym_decl_alias_parenthesized] = STATE(4859), + [sym_stmt_let_parenthesized] = STATE(4864), + [sym_stmt_mut_parenthesized] = STATE(4864), + [sym_stmt_const_parenthesized] = STATE(4864), + [sym_assignment_parenthesized] = STATE(4864), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4865), + [sym__statement_parenthesized] = STATE(4800), + [sym_pipeline_parenthesized] = STATE(4864), + [sym_cmd_identifier] = STATE(2907), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4859), + [sym_decl_export] = STATE(4859), + [sym_decl_extern] = STATE(4859), + [sym_decl_module] = STATE(4859), + [sym_decl_use] = STATE(4859), + [sym__ctrl_statement] = STATE(4864), + [sym__ctrl_expression_parenthesized] = STATE(3454), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if_parenthesized] = STATE(3458), + [sym_ctrl_match] = STATE(3458), + [sym_ctrl_try_parenthesized] = STATE(3458), + [sym__stmt_let_shortcut] = STATE(3471), + [sym_pipe_element_parenthesized] = STATE(3176), + [sym_where_command_parenthesized] = STATE(3454), + [sym__expression_parenthesized] = STATE(2289), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2156), + [sym_expr_parenthesized] = STATE(739), + [sym__parenthesized_body] = STATE(5339), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(446), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(4794), + [sym__command_parenthesized] = STATE(3494), [sym_comment] = STATE(33), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), - [aux_sym__block_body_repeat1] = STATE(74), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), - [aux_sym__parenthesized_body_repeat2] = STATE(85), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), + [aux_sym__parenthesized_body_repeat2] = STATE(90), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -43282,6 +43939,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -43295,7 +43953,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(365), + [anon_sym_RPAREN] = ACTIONS(363), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -43304,7 +43962,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(347), + [anon_sym_RPAREN2] = ACTIONS(365), [aux_sym__val_number_decimal_token1] = ACTIONS(337), [aux_sym__val_number_decimal_token2] = ACTIONS(339), [aux_sym__val_number_decimal_token3] = ACTIONS(341), @@ -43326,74 +43984,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(34)] = { - [sym__block_body_statement_parenthesized] = STATE(3898), - [sym__declaration_parenthesized] = STATE(4594), - [sym_decl_alias_parenthesized] = STATE(4614), - [sym_stmt_let_parenthesized] = STATE(4748), - [sym_stmt_mut_parenthesized] = STATE(4748), - [sym_stmt_const_parenthesized] = STATE(4748), - [sym_assignment_parenthesized] = STATE(4748), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), - [sym__statement_parenthesized] = STATE(4594), - [sym_pipeline_parenthesized] = STATE(4748), - [sym_cmd_identifier] = STATE(3009), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4614), - [sym_decl_export] = STATE(4614), - [sym_decl_extern] = STATE(4614), - [sym_decl_module] = STATE(4614), - [sym_decl_use] = STATE(4614), - [sym__ctrl_statement] = STATE(4748), - [sym__ctrl_expression_parenthesized] = STATE(3436), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if_parenthesized] = STATE(3367), - [sym_ctrl_match] = STATE(3367), - [sym_ctrl_try_parenthesized] = STATE(3367), - [sym__stmt_let_shortcut] = STATE(3368), - [sym_pipe_element_parenthesized] = STATE(3116), - [sym_where_command_parenthesized] = STATE(3436), - [sym__expression_parenthesized] = STATE(2290), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2157), - [sym_expr_parenthesized] = STATE(777), - [sym__parenthesized_body] = STATE(5045), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(124), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4730), - [sym__command_parenthesized] = STATE(3373), + [sym__block_body_statement_parenthesized] = STATE(4126), + [sym__declaration_parenthesized] = STATE(4800), + [sym_decl_alias_parenthesized] = STATE(4859), + [sym_stmt_let_parenthesized] = STATE(4864), + [sym_stmt_mut_parenthesized] = STATE(4864), + [sym_stmt_const_parenthesized] = STATE(4864), + [sym_assignment_parenthesized] = STATE(4864), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4865), + [sym__statement_parenthesized] = STATE(4800), + [sym_pipeline_parenthesized] = STATE(4864), + [sym_cmd_identifier] = STATE(2907), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4859), + [sym_decl_export] = STATE(4859), + [sym_decl_extern] = STATE(4859), + [sym_decl_module] = STATE(4859), + [sym_decl_use] = STATE(4859), + [sym__ctrl_statement] = STATE(4864), + [sym__ctrl_expression_parenthesized] = STATE(3454), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if_parenthesized] = STATE(3458), + [sym_ctrl_match] = STATE(3458), + [sym_ctrl_try_parenthesized] = STATE(3458), + [sym__stmt_let_shortcut] = STATE(3471), + [sym_pipe_element_parenthesized] = STATE(3176), + [sym_where_command_parenthesized] = STATE(3454), + [sym__expression_parenthesized] = STATE(2289), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2156), + [sym_expr_parenthesized] = STATE(739), + [sym__parenthesized_body] = STATE(5092), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(446), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(4794), + [sym__command_parenthesized] = STATE(3494), [sym_comment] = STATE(34), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), - [aux_sym__block_body_repeat1] = STATE(74), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), - [aux_sym__parenthesized_body_repeat2] = STATE(85), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), + [aux_sym__parenthesized_body_repeat2] = STATE(90), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -43412,6 +44070,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -43434,7 +44093,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), + [anon_sym_RPAREN2] = ACTIONS(365), [aux_sym__val_number_decimal_token1] = ACTIONS(337), [aux_sym__val_number_decimal_token2] = ACTIONS(339), [aux_sym__val_number_decimal_token3] = ACTIONS(341), @@ -43456,74 +44115,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(35)] = { - [sym__block_body_statement_parenthesized] = STATE(3898), - [sym__declaration_parenthesized] = STATE(4594), - [sym_decl_alias_parenthesized] = STATE(4614), - [sym_stmt_let_parenthesized] = STATE(4748), - [sym_stmt_mut_parenthesized] = STATE(4748), - [sym_stmt_const_parenthesized] = STATE(4748), - [sym_assignment_parenthesized] = STATE(4748), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), - [sym__statement_parenthesized] = STATE(4594), - [sym_pipeline_parenthesized] = STATE(4748), - [sym_cmd_identifier] = STATE(3009), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4614), - [sym_decl_export] = STATE(4614), - [sym_decl_extern] = STATE(4614), - [sym_decl_module] = STATE(4614), - [sym_decl_use] = STATE(4614), - [sym__ctrl_statement] = STATE(4748), - [sym__ctrl_expression_parenthesized] = STATE(3436), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if_parenthesized] = STATE(3367), - [sym_ctrl_match] = STATE(3367), - [sym_ctrl_try_parenthesized] = STATE(3367), - [sym__stmt_let_shortcut] = STATE(3368), - [sym_pipe_element_parenthesized] = STATE(3116), - [sym_where_command_parenthesized] = STATE(3436), - [sym__expression_parenthesized] = STATE(2290), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2157), - [sym_expr_parenthesized] = STATE(777), - [sym__parenthesized_body] = STATE(5103), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(124), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4730), - [sym__command_parenthesized] = STATE(3373), + [sym__block_body_statement_parenthesized] = STATE(4126), + [sym__declaration_parenthesized] = STATE(4800), + [sym_decl_alias_parenthesized] = STATE(4859), + [sym_stmt_let_parenthesized] = STATE(4864), + [sym_stmt_mut_parenthesized] = STATE(4864), + [sym_stmt_const_parenthesized] = STATE(4864), + [sym_assignment_parenthesized] = STATE(4864), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4865), + [sym__statement_parenthesized] = STATE(4800), + [sym_pipeline_parenthesized] = STATE(4864), + [sym_cmd_identifier] = STATE(2907), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4859), + [sym_decl_export] = STATE(4859), + [sym_decl_extern] = STATE(4859), + [sym_decl_module] = STATE(4859), + [sym_decl_use] = STATE(4859), + [sym__ctrl_statement] = STATE(4864), + [sym__ctrl_expression_parenthesized] = STATE(3454), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if_parenthesized] = STATE(3458), + [sym_ctrl_match] = STATE(3458), + [sym_ctrl_try_parenthesized] = STATE(3458), + [sym__stmt_let_shortcut] = STATE(3471), + [sym_pipe_element_parenthesized] = STATE(3176), + [sym_where_command_parenthesized] = STATE(3454), + [sym__expression_parenthesized] = STATE(2289), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2156), + [sym_expr_parenthesized] = STATE(739), + [sym__parenthesized_body] = STATE(5309), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(446), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(4794), + [sym__command_parenthesized] = STATE(3494), [sym_comment] = STATE(35), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), - [aux_sym__block_body_repeat1] = STATE(74), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), - [aux_sym__parenthesized_body_repeat2] = STATE(85), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), + [aux_sym__parenthesized_body_repeat2] = STATE(90), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -43542,6 +44201,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -43585,79 +44245,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(36)] = { - [sym__block_body_statement] = STATE(4201), - [sym__declaration] = STATE(4295), - [sym_decl_alias] = STATE(4296), - [sym_stmt_let] = STATE(4297), - [sym_stmt_mut] = STATE(4297), - [sym_stmt_const] = STATE(4297), - [sym_assignment] = STATE(4297), - [sym__mutable_assignment_pattern] = STATE(4298), - [sym__statement] = STATE(4295), - [sym_pipeline] = STATE(4297), - [sym__block_body] = STATE(4955), - [sym_cmd_identifier] = STATE(2812), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4296), - [sym_decl_export] = STATE(4296), - [sym_decl_extern] = STATE(4296), - [sym_decl_module] = STATE(4296), - [sym_decl_use] = STATE(4296), - [sym__ctrl_statement] = STATE(4297), - [sym__ctrl_expression] = STATE(3348), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if] = STATE(3352), - [sym_ctrl_match] = STATE(3352), - [sym_ctrl_try] = STATE(3352), - [sym__stmt_let_shortcut] = STATE(3358), - [sym_pipe_element] = STATE(2956), - [sym_where_command] = STATE(3348), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(704), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(133), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3348), + [sym__block_body_statement_parenthesized] = STATE(4126), + [sym__declaration_parenthesized] = STATE(4800), + [sym_decl_alias_parenthesized] = STATE(4859), + [sym_stmt_let_parenthesized] = STATE(4864), + [sym_stmt_mut_parenthesized] = STATE(4864), + [sym_stmt_const_parenthesized] = STATE(4864), + [sym_assignment_parenthesized] = STATE(4864), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4865), + [sym__statement_parenthesized] = STATE(4800), + [sym_pipeline_parenthesized] = STATE(4864), + [sym_cmd_identifier] = STATE(2907), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4859), + [sym_decl_export] = STATE(4859), + [sym_decl_extern] = STATE(4859), + [sym_decl_module] = STATE(4859), + [sym_decl_use] = STATE(4859), + [sym__ctrl_statement] = STATE(4864), + [sym__ctrl_expression_parenthesized] = STATE(3454), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if_parenthesized] = STATE(3458), + [sym_ctrl_match] = STATE(3458), + [sym_ctrl_try_parenthesized] = STATE(3458), + [sym__stmt_let_shortcut] = STATE(3471), + [sym_pipe_element_parenthesized] = STATE(3176), + [sym_where_command_parenthesized] = STATE(3454), + [sym__expression_parenthesized] = STATE(2289), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2156), + [sym_expr_parenthesized] = STATE(739), + [sym__parenthesized_body] = STATE(5195), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(446), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(4794), + [sym__command_parenthesized] = STATE(3494), [sym_comment] = STATE(36), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(80), - [aux_sym__block_body_repeat2] = STATE(87), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [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_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), + [aux_sym__parenthesized_body_repeat2] = STATE(90), + [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), @@ -43667,10 +44327,11 @@ 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_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -43684,19 +44345,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(371), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(371), [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), @@ -43709,84 +44370,84 @@ 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(37)] = { - [sym__block_body_statement_parenthesized] = STATE(3898), - [sym__declaration_parenthesized] = STATE(4594), - [sym_decl_alias_parenthesized] = STATE(4614), - [sym_stmt_let_parenthesized] = STATE(4748), - [sym_stmt_mut_parenthesized] = STATE(4748), - [sym_stmt_const_parenthesized] = STATE(4748), - [sym_assignment_parenthesized] = STATE(4748), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), - [sym__statement_parenthesized] = STATE(4594), - [sym_pipeline_parenthesized] = STATE(4748), - [sym_cmd_identifier] = STATE(3009), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4614), - [sym_decl_export] = STATE(4614), - [sym_decl_extern] = STATE(4614), - [sym_decl_module] = STATE(4614), - [sym_decl_use] = STATE(4614), - [sym__ctrl_statement] = STATE(4748), - [sym__ctrl_expression_parenthesized] = STATE(3436), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if_parenthesized] = STATE(3367), - [sym_ctrl_match] = STATE(3367), - [sym_ctrl_try_parenthesized] = STATE(3367), - [sym__stmt_let_shortcut] = STATE(3368), - [sym_pipe_element_parenthesized] = STATE(3116), - [sym_where_command_parenthesized] = STATE(3436), - [sym__expression_parenthesized] = STATE(2290), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2157), - [sym_expr_parenthesized] = STATE(777), - [sym__parenthesized_body] = STATE(5196), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(124), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4730), - [sym__command_parenthesized] = STATE(3373), + [sym__block_body_statement] = STATE(4191), + [sym__declaration] = STATE(4507), + [sym_decl_alias] = STATE(4336), + [sym_stmt_let] = STATE(4338), + [sym_stmt_mut] = STATE(4338), + [sym_stmt_const] = STATE(4338), + [sym_assignment] = STATE(4338), + [sym__mutable_assignment_pattern] = STATE(4342), + [sym__statement] = STATE(4507), + [sym_pipeline] = STATE(4338), + [sym__block_body] = STATE(5235), + [sym_cmd_identifier] = STATE(2730), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4336), + [sym_decl_export] = STATE(4336), + [sym_decl_extern] = STATE(4336), + [sym_decl_module] = STATE(4336), + [sym_decl_use] = STATE(4336), + [sym__ctrl_statement] = STATE(4338), + [sym__ctrl_expression] = STATE(3368), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if] = STATE(3392), + [sym_ctrl_match] = STATE(3392), + [sym_ctrl_try] = STATE(3392), + [sym__stmt_let_shortcut] = STATE(3393), + [sym_pipe_element] = STATE(2909), + [sym_where_command] = STATE(3368), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(724), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(451), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3368), [sym_comment] = STATE(37), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), - [aux_sym__block_body_repeat1] = STATE(74), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), - [aux_sym__parenthesized_body_repeat2] = STATE(85), - [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_pipeline_repeat1] = STATE(176), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_repeat2] = STATE(281), + [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), @@ -43796,10 +44457,11 @@ 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_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -43813,19 +44475,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(373), [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(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), @@ -43838,79 +44500,79 @@ 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(38)] = { - [sym__block_body_statement_parenthesized] = STATE(3898), - [sym__declaration_parenthesized] = STATE(4594), - [sym_decl_alias_parenthesized] = STATE(4614), - [sym_stmt_let_parenthesized] = STATE(4748), - [sym_stmt_mut_parenthesized] = STATE(4748), - [sym_stmt_const_parenthesized] = STATE(4748), - [sym_assignment_parenthesized] = STATE(4748), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), - [sym__statement_parenthesized] = STATE(4594), - [sym_pipeline_parenthesized] = STATE(4748), - [sym_cmd_identifier] = STATE(3009), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4614), - [sym_decl_export] = STATE(4614), - [sym_decl_extern] = STATE(4614), - [sym_decl_module] = STATE(4614), - [sym_decl_use] = STATE(4614), - [sym__ctrl_statement] = STATE(4748), - [sym__ctrl_expression_parenthesized] = STATE(3436), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if_parenthesized] = STATE(3367), - [sym_ctrl_match] = STATE(3367), - [sym_ctrl_try_parenthesized] = STATE(3367), - [sym__stmt_let_shortcut] = STATE(3368), - [sym_pipe_element_parenthesized] = STATE(3116), - [sym_where_command_parenthesized] = STATE(3436), - [sym__expression_parenthesized] = STATE(2290), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2157), - [sym_expr_parenthesized] = STATE(777), - [sym__parenthesized_body] = STATE(5045), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(124), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4730), - [sym__command_parenthesized] = STATE(3373), + [sym__block_body_statement_parenthesized] = STATE(4126), + [sym__declaration_parenthesized] = STATE(4800), + [sym_decl_alias_parenthesized] = STATE(4859), + [sym_stmt_let_parenthesized] = STATE(4864), + [sym_stmt_mut_parenthesized] = STATE(4864), + [sym_stmt_const_parenthesized] = STATE(4864), + [sym_assignment_parenthesized] = STATE(4864), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4865), + [sym__statement_parenthesized] = STATE(4800), + [sym_pipeline_parenthesized] = STATE(4864), + [sym_cmd_identifier] = STATE(2907), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4859), + [sym_decl_export] = STATE(4859), + [sym_decl_extern] = STATE(4859), + [sym_decl_module] = STATE(4859), + [sym_decl_use] = STATE(4859), + [sym__ctrl_statement] = STATE(4864), + [sym__ctrl_expression_parenthesized] = STATE(3454), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if_parenthesized] = STATE(3458), + [sym_ctrl_match] = STATE(3458), + [sym_ctrl_try_parenthesized] = STATE(3458), + [sym__stmt_let_shortcut] = STATE(3471), + [sym_pipe_element_parenthesized] = STATE(3176), + [sym_where_command_parenthesized] = STATE(3454), + [sym__expression_parenthesized] = STATE(2289), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2156), + [sym_expr_parenthesized] = STATE(739), + [sym__parenthesized_body] = STATE(5254), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(446), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(4794), + [sym__command_parenthesized] = STATE(3494), [sym_comment] = STATE(38), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), - [aux_sym__block_body_repeat1] = STATE(74), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), - [aux_sym__parenthesized_body_repeat2] = STATE(85), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), + [aux_sym__parenthesized_body_repeat2] = STATE(90), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -43929,6 +44591,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -43972,74 +44635,204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(39)] = { - [sym__block_body_statement] = STATE(4201), - [sym__declaration] = STATE(4295), - [sym_decl_alias] = STATE(4296), - [sym_stmt_let] = STATE(4297), - [sym_stmt_mut] = STATE(4297), - [sym_stmt_const] = STATE(4297), - [sym_assignment] = STATE(4297), - [sym__mutable_assignment_pattern] = STATE(4298), - [sym__statement] = STATE(4295), - [sym_pipeline] = STATE(4297), - [sym__block_body] = STATE(5007), - [sym_cmd_identifier] = STATE(2812), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4296), - [sym_decl_export] = STATE(4296), - [sym_decl_extern] = STATE(4296), - [sym_decl_module] = STATE(4296), - [sym_decl_use] = STATE(4296), - [sym__ctrl_statement] = STATE(4297), - [sym__ctrl_expression] = STATE(3348), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if] = STATE(3352), - [sym_ctrl_match] = STATE(3352), - [sym_ctrl_try] = STATE(3352), - [sym__stmt_let_shortcut] = STATE(3358), - [sym_pipe_element] = STATE(2956), - [sym_where_command] = STATE(3348), + [sym__block_body_statement] = STATE(4592), + [sym__declaration] = STATE(4832), + [sym_decl_alias] = STATE(4872), + [sym_stmt_let] = STATE(4884), + [sym_stmt_mut] = STATE(4884), + [sym_stmt_const] = STATE(4884), + [sym_assignment] = STATE(4884), + [sym__mutable_assignment_pattern] = STATE(4708), + [sym__statement] = STATE(4832), + [sym_pipeline] = STATE(4884), + [sym__block_body] = STATE(5356), + [sym_cmd_identifier] = STATE(2951), + [sym_attribute_list] = STATE(4691), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4872), + [sym_decl_export] = STATE(4872), + [sym_decl_extern] = STATE(4872), + [sym_decl_module] = STATE(4872), + [sym_decl_use] = STATE(4872), + [sym__ctrl_statement] = STATE(4884), + [sym__ctrl_expression] = STATE(3512), + [sym_ctrl_for] = STATE(4718), + [sym_ctrl_loop] = STATE(4718), + [sym_ctrl_while] = STATE(4718), + [sym_ctrl_if] = STATE(3519), + [sym_ctrl_match] = STATE(3519), + [sym_ctrl_try] = STATE(3519), + [sym__stmt_let_shortcut] = STATE(3521), + [sym_pipe_element] = STATE(3125), + [sym_where_command] = STATE(3512), + [sym__expression] = STATE(2294), + [sym_expr_unary] = STATE(1292), + [sym__expr_unary_minus] = STATE(1296), + [sym_expr_binary] = STATE(1292), + [sym__expr_binary_expression] = STATE(2248), + [sym_expr_parenthesized] = STATE(964), + [sym_val_range] = STATE(1292), + [sym__value] = STATE(1292), + [sym_val_nothing] = STATE(1316), + [sym_val_bool] = STATE(1316), + [sym_val_variable] = STATE(444), + [sym_val_cellpath] = STATE(1316), + [sym_val_number] = STATE(1316), + [sym__val_number_decimal] = STATE(132), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1316), + [sym_val_filesize] = STATE(1316), + [sym_val_binary] = STATE(1316), + [sym_val_string] = STATE(1316), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1316), + [sym__inter_single_quotes] = STATE(1277), + [sym__inter_double_quotes] = STATE(1311), + [sym_val_list] = STATE(1316), + [sym_val_record] = STATE(1316), + [sym_val_table] = STATE(1316), + [sym_val_closure] = STATE(1316), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3512), + [sym_comment] = STATE(39), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym__block_body_repeat2] = STATE(85), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_repeat2] = STATE(284), + [ts_builtin_sym_end] = ACTIONS(377), + [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_finally] = 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(40)] = { + [sym__block_body_statement] = STATE(4191), + [sym__declaration] = STATE(4507), + [sym_decl_alias] = STATE(4336), + [sym_stmt_let] = STATE(4338), + [sym_stmt_mut] = STATE(4338), + [sym_stmt_const] = STATE(4338), + [sym_assignment] = STATE(4338), + [sym__mutable_assignment_pattern] = STATE(4342), + [sym__statement] = STATE(4507), + [sym_pipeline] = STATE(4338), + [sym__block_body] = STATE(5140), + [sym_cmd_identifier] = STATE(2730), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4336), + [sym_decl_export] = STATE(4336), + [sym_decl_extern] = STATE(4336), + [sym_decl_module] = STATE(4336), + [sym_decl_use] = STATE(4336), + [sym__ctrl_statement] = STATE(4338), + [sym__ctrl_expression] = STATE(3368), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if] = STATE(3392), + [sym_ctrl_match] = STATE(3392), + [sym_ctrl_try] = STATE(3392), + [sym__stmt_let_shortcut] = STATE(3393), + [sym_pipe_element] = STATE(2909), + [sym_where_command] = STATE(3368), [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(704), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), + [sym_expr_parenthesized] = STATE(724), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(133), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3348), - [sym_comment] = STATE(39), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(80), - [aux_sym__block_body_repeat2] = STATE(87), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym_pipe_element_repeat2] = STATE(292), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3368), + [sym_comment] = STATE(40), + [aux_sym_pipeline_repeat1] = STATE(176), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -44058,6 +44851,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -44074,7 +44868,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(377), + [anon_sym_RBRACE] = ACTIONS(379), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -44100,75 +44894,205 @@ 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_parenthesized] = STATE(3898), - [sym__declaration_parenthesized] = STATE(4594), - [sym_decl_alias_parenthesized] = STATE(4614), - [sym_stmt_let_parenthesized] = STATE(4748), - [sym_stmt_mut_parenthesized] = STATE(4748), - [sym_stmt_const_parenthesized] = STATE(4748), - [sym_assignment_parenthesized] = STATE(4748), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), - [sym__statement_parenthesized] = STATE(4594), - [sym_pipeline_parenthesized] = STATE(4748), - [sym_cmd_identifier] = STATE(3009), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4614), - [sym_decl_export] = STATE(4614), - [sym_decl_extern] = STATE(4614), - [sym_decl_module] = STATE(4614), - [sym_decl_use] = STATE(4614), - [sym__ctrl_statement] = STATE(4748), - [sym__ctrl_expression_parenthesized] = STATE(3436), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if_parenthesized] = STATE(3367), - [sym_ctrl_match] = STATE(3367), - [sym_ctrl_try_parenthesized] = STATE(3367), - [sym__stmt_let_shortcut] = STATE(3368), - [sym_pipe_element_parenthesized] = STATE(3116), - [sym_where_command_parenthesized] = STATE(3436), - [sym__expression_parenthesized] = STATE(2290), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2157), - [sym_expr_parenthesized] = STATE(777), - [sym__parenthesized_body] = STATE(5059), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(124), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4730), - [sym__command_parenthesized] = STATE(3373), - [sym_comment] = STATE(40), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), - [aux_sym__block_body_repeat1] = STATE(74), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), - [aux_sym__parenthesized_body_repeat2] = STATE(85), + [STATE(41)] = { + [sym__block_body_statement] = STATE(4191), + [sym__declaration] = STATE(4507), + [sym_decl_alias] = STATE(4336), + [sym_stmt_let] = STATE(4338), + [sym_stmt_mut] = STATE(4338), + [sym_stmt_const] = STATE(4338), + [sym_assignment] = STATE(4338), + [sym__mutable_assignment_pattern] = STATE(4342), + [sym__statement] = STATE(4507), + [sym_pipeline] = STATE(4338), + [sym__block_body] = STATE(5252), + [sym_cmd_identifier] = STATE(2730), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4336), + [sym_decl_export] = STATE(4336), + [sym_decl_extern] = STATE(4336), + [sym_decl_module] = STATE(4336), + [sym_decl_use] = STATE(4336), + [sym__ctrl_statement] = STATE(4338), + [sym__ctrl_expression] = STATE(3368), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if] = STATE(3392), + [sym_ctrl_match] = STATE(3392), + [sym_ctrl_try] = STATE(3392), + [sym__stmt_let_shortcut] = STATE(3393), + [sym_pipe_element] = STATE(2909), + [sym_where_command] = STATE(3368), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(724), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(451), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3368), + [sym_comment] = STATE(41), + [aux_sym_pipeline_repeat1] = STATE(176), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_repeat2] = STATE(281), + [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_finally] = 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(381), + [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(42)] = { + [sym__block_body_statement_parenthesized] = STATE(4126), + [sym__declaration_parenthesized] = STATE(4800), + [sym_decl_alias_parenthesized] = STATE(4859), + [sym_stmt_let_parenthesized] = STATE(4864), + [sym_stmt_mut_parenthesized] = STATE(4864), + [sym_stmt_const_parenthesized] = STATE(4864), + [sym_assignment_parenthesized] = STATE(4864), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4865), + [sym__statement_parenthesized] = STATE(4800), + [sym_pipeline_parenthesized] = STATE(4864), + [sym_cmd_identifier] = STATE(2907), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4859), + [sym_decl_export] = STATE(4859), + [sym_decl_extern] = STATE(4859), + [sym_decl_module] = STATE(4859), + [sym_decl_use] = STATE(4859), + [sym__ctrl_statement] = STATE(4864), + [sym__ctrl_expression_parenthesized] = STATE(3454), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if_parenthesized] = STATE(3458), + [sym_ctrl_match] = STATE(3458), + [sym_ctrl_try_parenthesized] = STATE(3458), + [sym__stmt_let_shortcut] = STATE(3471), + [sym_pipe_element_parenthesized] = STATE(3176), + [sym_where_command_parenthesized] = STATE(3454), + [sym__expression_parenthesized] = STATE(2289), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2156), + [sym_expr_parenthesized] = STATE(739), + [sym__parenthesized_body] = STATE(5326), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(446), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(4794), + [sym__command_parenthesized] = STATE(3494), + [sym_comment] = STATE(42), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), + [aux_sym__parenthesized_body_repeat2] = STATE(90), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -44187,6 +45111,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -44200,7 +45125,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(379), + [anon_sym_RPAREN] = ACTIONS(383), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -44229,80 +45154,80 @@ 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] = STATE(4201), - [sym__declaration] = STATE(4295), - [sym_decl_alias] = STATE(4296), - [sym_stmt_let] = STATE(4297), - [sym_stmt_mut] = STATE(4297), - [sym_stmt_const] = STATE(4297), - [sym_assignment] = STATE(4297), - [sym__mutable_assignment_pattern] = STATE(4298), - [sym__statement] = STATE(4295), - [sym_pipeline] = STATE(4297), - [sym__block_body] = STATE(5002), - [sym_cmd_identifier] = STATE(2812), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4296), - [sym_decl_export] = STATE(4296), - [sym_decl_extern] = STATE(4296), - [sym_decl_module] = STATE(4296), - [sym_decl_use] = STATE(4296), - [sym__ctrl_statement] = STATE(4297), - [sym__ctrl_expression] = STATE(3348), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if] = STATE(3352), - [sym_ctrl_match] = STATE(3352), - [sym_ctrl_try] = STATE(3352), - [sym__stmt_let_shortcut] = STATE(3358), - [sym_pipe_element] = STATE(2956), - [sym_where_command] = STATE(3348), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(704), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(133), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3348), - [sym_comment] = STATE(41), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(80), - [aux_sym__block_body_repeat2] = STATE(87), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [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(4126), + [sym__declaration_parenthesized] = STATE(4800), + [sym_decl_alias_parenthesized] = STATE(4859), + [sym_stmt_let_parenthesized] = STATE(4864), + [sym_stmt_mut_parenthesized] = STATE(4864), + [sym_stmt_const_parenthesized] = STATE(4864), + [sym_assignment_parenthesized] = STATE(4864), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4865), + [sym__statement_parenthesized] = STATE(4800), + [sym_pipeline_parenthesized] = STATE(4864), + [sym_cmd_identifier] = STATE(2907), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4859), + [sym_decl_export] = STATE(4859), + [sym_decl_extern] = STATE(4859), + [sym_decl_module] = STATE(4859), + [sym_decl_use] = STATE(4859), + [sym__ctrl_statement] = STATE(4864), + [sym__ctrl_expression_parenthesized] = STATE(3454), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if_parenthesized] = STATE(3458), + [sym_ctrl_match] = STATE(3458), + [sym_ctrl_try_parenthesized] = STATE(3458), + [sym__stmt_let_shortcut] = STATE(3471), + [sym_pipe_element_parenthesized] = STATE(3176), + [sym_where_command_parenthesized] = STATE(3454), + [sym__expression_parenthesized] = STATE(2289), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2156), + [sym_expr_parenthesized] = STATE(739), + [sym__parenthesized_body] = STATE(5109), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(446), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(4794), + [sym__command_parenthesized] = STATE(3494), + [sym_comment] = STATE(43), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), + [aux_sym__parenthesized_body_repeat2] = STATE(90), + [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), @@ -44312,10 +45237,11 @@ 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_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -44329,19 +45255,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(381), [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), @@ -44354,79 +45280,209 @@ 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(42)] = { - [sym__block_body_statement] = STATE(4201), - [sym__declaration] = STATE(4295), - [sym_decl_alias] = STATE(4296), - [sym_stmt_let] = STATE(4297), - [sym_stmt_mut] = STATE(4297), - [sym_stmt_const] = STATE(4297), - [sym_assignment] = STATE(4297), - [sym__mutable_assignment_pattern] = STATE(4298), - [sym__statement] = STATE(4295), - [sym_pipeline] = STATE(4297), - [sym__block_body] = STATE(5149), - [sym_cmd_identifier] = STATE(2812), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4296), - [sym_decl_export] = STATE(4296), - [sym_decl_extern] = STATE(4296), - [sym_decl_module] = STATE(4296), - [sym_decl_use] = STATE(4296), - [sym__ctrl_statement] = STATE(4297), - [sym__ctrl_expression] = STATE(3348), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if] = STATE(3352), - [sym_ctrl_match] = STATE(3352), - [sym_ctrl_try] = STATE(3352), - [sym__stmt_let_shortcut] = STATE(3358), - [sym_pipe_element] = STATE(2956), - [sym_where_command] = STATE(3348), + [STATE(44)] = { + [sym__block_body_statement_parenthesized] = STATE(4126), + [sym__declaration_parenthesized] = STATE(4800), + [sym_decl_alias_parenthesized] = STATE(4859), + [sym_stmt_let_parenthesized] = STATE(4864), + [sym_stmt_mut_parenthesized] = STATE(4864), + [sym_stmt_const_parenthesized] = STATE(4864), + [sym_assignment_parenthesized] = STATE(4864), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4865), + [sym__statement_parenthesized] = STATE(4800), + [sym_pipeline_parenthesized] = STATE(4864), + [sym_cmd_identifier] = STATE(2907), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4859), + [sym_decl_export] = STATE(4859), + [sym_decl_extern] = STATE(4859), + [sym_decl_module] = STATE(4859), + [sym_decl_use] = STATE(4859), + [sym__ctrl_statement] = STATE(4864), + [sym__ctrl_expression_parenthesized] = STATE(3454), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if_parenthesized] = STATE(3458), + [sym_ctrl_match] = STATE(3458), + [sym_ctrl_try_parenthesized] = STATE(3458), + [sym__stmt_let_shortcut] = STATE(3471), + [sym_pipe_element_parenthesized] = STATE(3176), + [sym_where_command_parenthesized] = STATE(3454), + [sym__expression_parenthesized] = STATE(2289), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2156), + [sym_expr_parenthesized] = STATE(739), + [sym__parenthesized_body] = STATE(5185), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(446), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(4794), + [sym__command_parenthesized] = STATE(3494), + [sym_comment] = STATE(44), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), + [aux_sym__parenthesized_body_repeat2] = STATE(90), + [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_finally] = 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(387), + [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(45)] = { + [sym__block_body_statement] = STATE(4191), + [sym__declaration] = STATE(4507), + [sym_decl_alias] = STATE(4336), + [sym_stmt_let] = STATE(4338), + [sym_stmt_mut] = STATE(4338), + [sym_stmt_const] = STATE(4338), + [sym_assignment] = STATE(4338), + [sym__mutable_assignment_pattern] = STATE(4342), + [sym__statement] = STATE(4507), + [sym_pipeline] = STATE(4338), + [sym__block_body] = STATE(5256), + [sym_cmd_identifier] = STATE(2730), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4336), + [sym_decl_export] = STATE(4336), + [sym_decl_extern] = STATE(4336), + [sym_decl_module] = STATE(4336), + [sym_decl_use] = STATE(4336), + [sym__ctrl_statement] = STATE(4338), + [sym__ctrl_expression] = STATE(3368), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if] = STATE(3392), + [sym_ctrl_match] = STATE(3392), + [sym_ctrl_try] = STATE(3392), + [sym__stmt_let_shortcut] = STATE(3393), + [sym_pipe_element] = STATE(2909), + [sym_where_command] = STATE(3368), [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(704), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), + [sym_expr_parenthesized] = STATE(724), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(133), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3348), - [sym_comment] = STATE(42), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(80), - [aux_sym__block_body_repeat2] = STATE(87), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym_pipe_element_repeat2] = STATE(292), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3368), + [sym_comment] = STATE(45), + [aux_sym_pipeline_repeat1] = STATE(176), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -44445,6 +45501,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -44461,7 +45518,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(383), + [anon_sym_RBRACE] = ACTIONS(389), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -44487,75 +45544,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(43)] = { - [sym__block_body_statement_parenthesized] = STATE(3898), - [sym__declaration_parenthesized] = STATE(4594), - [sym_decl_alias_parenthesized] = STATE(4614), - [sym_stmt_let_parenthesized] = STATE(4748), - [sym_stmt_mut_parenthesized] = STATE(4748), - [sym_stmt_const_parenthesized] = STATE(4748), - [sym_assignment_parenthesized] = STATE(4748), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), - [sym__statement_parenthesized] = STATE(4594), - [sym_pipeline_parenthesized] = STATE(4748), - [sym_cmd_identifier] = STATE(3009), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4614), - [sym_decl_export] = STATE(4614), - [sym_decl_extern] = STATE(4614), - [sym_decl_module] = STATE(4614), - [sym_decl_use] = STATE(4614), - [sym__ctrl_statement] = STATE(4748), - [sym__ctrl_expression_parenthesized] = STATE(3436), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if_parenthesized] = STATE(3367), - [sym_ctrl_match] = STATE(3367), - [sym_ctrl_try_parenthesized] = STATE(3367), - [sym__stmt_let_shortcut] = STATE(3368), - [sym_pipe_element_parenthesized] = STATE(3116), - [sym_where_command_parenthesized] = STATE(3436), - [sym__expression_parenthesized] = STATE(2290), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2157), - [sym_expr_parenthesized] = STATE(777), - [sym__parenthesized_body] = STATE(5182), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(124), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4730), - [sym__command_parenthesized] = STATE(3373), - [sym_comment] = STATE(43), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), - [aux_sym__block_body_repeat1] = STATE(74), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), - [aux_sym__parenthesized_body_repeat2] = STATE(85), + [STATE(46)] = { + [sym__block_body_statement_parenthesized] = STATE(4126), + [sym__declaration_parenthesized] = STATE(4800), + [sym_decl_alias_parenthesized] = STATE(4859), + [sym_stmt_let_parenthesized] = STATE(4864), + [sym_stmt_mut_parenthesized] = STATE(4864), + [sym_stmt_const_parenthesized] = STATE(4864), + [sym_assignment_parenthesized] = STATE(4864), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4865), + [sym__statement_parenthesized] = STATE(4800), + [sym_pipeline_parenthesized] = STATE(4864), + [sym_cmd_identifier] = STATE(2907), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4859), + [sym_decl_export] = STATE(4859), + [sym_decl_extern] = STATE(4859), + [sym_decl_module] = STATE(4859), + [sym_decl_use] = STATE(4859), + [sym__ctrl_statement] = STATE(4864), + [sym__ctrl_expression_parenthesized] = STATE(3454), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if_parenthesized] = STATE(3458), + [sym_ctrl_match] = STATE(3458), + [sym_ctrl_try_parenthesized] = STATE(3458), + [sym__stmt_let_shortcut] = STATE(3471), + [sym_pipe_element_parenthesized] = STATE(3176), + [sym_where_command_parenthesized] = STATE(3454), + [sym__expression_parenthesized] = STATE(2289), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2156), + [sym_expr_parenthesized] = STATE(739), + [sym__parenthesized_body] = STATE(5258), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(446), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(4794), + [sym__command_parenthesized] = STATE(3494), + [sym_comment] = STATE(46), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), + [aux_sym__parenthesized_body_repeat2] = STATE(90), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -44574,6 +45631,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -44587,7 +45645,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(385), + [anon_sym_RPAREN] = ACTIONS(391), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -44616,75 +45674,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(44)] = { - [sym__block_body_statement] = STATE(4201), - [sym__declaration] = STATE(4295), - [sym_decl_alias] = STATE(4296), - [sym_stmt_let] = STATE(4297), - [sym_stmt_mut] = STATE(4297), - [sym_stmt_const] = STATE(4297), - [sym_assignment] = STATE(4297), - [sym__mutable_assignment_pattern] = STATE(4298), - [sym__statement] = STATE(4295), - [sym_pipeline] = STATE(4297), - [sym__block_body] = STATE(5121), - [sym_cmd_identifier] = STATE(2812), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4296), - [sym_decl_export] = STATE(4296), - [sym_decl_extern] = STATE(4296), - [sym_decl_module] = STATE(4296), - [sym_decl_use] = STATE(4296), - [sym__ctrl_statement] = STATE(4297), - [sym__ctrl_expression] = STATE(3348), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if] = STATE(3352), - [sym_ctrl_match] = STATE(3352), - [sym_ctrl_try] = STATE(3352), - [sym__stmt_let_shortcut] = STATE(3358), - [sym_pipe_element] = STATE(2956), - [sym_where_command] = STATE(3348), + [STATE(47)] = { + [sym__block_body_statement] = STATE(4191), + [sym__declaration] = STATE(4507), + [sym_decl_alias] = STATE(4336), + [sym_stmt_let] = STATE(4338), + [sym_stmt_mut] = STATE(4338), + [sym_stmt_const] = STATE(4338), + [sym_assignment] = STATE(4338), + [sym__mutable_assignment_pattern] = STATE(4342), + [sym__statement] = STATE(4507), + [sym_pipeline] = STATE(4338), + [sym__block_body] = STATE(5487), + [sym_cmd_identifier] = STATE(2730), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4336), + [sym_decl_export] = STATE(4336), + [sym_decl_extern] = STATE(4336), + [sym_decl_module] = STATE(4336), + [sym_decl_use] = STATE(4336), + [sym__ctrl_statement] = STATE(4338), + [sym__ctrl_expression] = STATE(3368), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if] = STATE(3392), + [sym_ctrl_match] = STATE(3392), + [sym_ctrl_try] = STATE(3392), + [sym__stmt_let_shortcut] = STATE(3393), + [sym_pipe_element] = STATE(2909), + [sym_where_command] = STATE(3368), [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(704), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), + [sym_expr_parenthesized] = STATE(724), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(133), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3348), - [sym_comment] = STATE(44), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(80), - [aux_sym__block_body_repeat2] = STATE(87), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym_pipe_element_repeat2] = STATE(292), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3368), + [sym_comment] = STATE(47), + [aux_sym_pipeline_repeat1] = STATE(176), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -44703,6 +45761,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -44719,7 +45778,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(387), + [anon_sym_RBRACE] = ACTIONS(393), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -44745,75 +45804,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(45)] = { - [sym__block_body_statement_parenthesized] = STATE(3898), - [sym__declaration_parenthesized] = STATE(4594), - [sym_decl_alias_parenthesized] = STATE(4614), - [sym_stmt_let_parenthesized] = STATE(4748), - [sym_stmt_mut_parenthesized] = STATE(4748), - [sym_stmt_const_parenthesized] = STATE(4748), - [sym_assignment_parenthesized] = STATE(4748), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), - [sym__statement_parenthesized] = STATE(4594), - [sym_pipeline_parenthesized] = STATE(4748), - [sym_cmd_identifier] = STATE(3009), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4614), - [sym_decl_export] = STATE(4614), - [sym_decl_extern] = STATE(4614), - [sym_decl_module] = STATE(4614), - [sym_decl_use] = STATE(4614), - [sym__ctrl_statement] = STATE(4748), - [sym__ctrl_expression_parenthesized] = STATE(3436), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if_parenthesized] = STATE(3367), - [sym_ctrl_match] = STATE(3367), - [sym_ctrl_try_parenthesized] = STATE(3367), - [sym__stmt_let_shortcut] = STATE(3368), - [sym_pipe_element_parenthesized] = STATE(3116), - [sym_where_command_parenthesized] = STATE(3436), - [sym__expression_parenthesized] = STATE(2290), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2157), - [sym_expr_parenthesized] = STATE(777), - [sym__parenthesized_body] = STATE(5127), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(124), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4730), - [sym__command_parenthesized] = STATE(3373), - [sym_comment] = STATE(45), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), - [aux_sym__block_body_repeat1] = STATE(74), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), - [aux_sym__parenthesized_body_repeat2] = STATE(85), + [STATE(48)] = { + [sym__block_body_statement_parenthesized] = STATE(4126), + [sym__declaration_parenthesized] = STATE(4800), + [sym_decl_alias_parenthesized] = STATE(4859), + [sym_stmt_let_parenthesized] = STATE(4864), + [sym_stmt_mut_parenthesized] = STATE(4864), + [sym_stmt_const_parenthesized] = STATE(4864), + [sym_assignment_parenthesized] = STATE(4864), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4865), + [sym__statement_parenthesized] = STATE(4800), + [sym_pipeline_parenthesized] = STATE(4864), + [sym_cmd_identifier] = STATE(2907), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4859), + [sym_decl_export] = STATE(4859), + [sym_decl_extern] = STATE(4859), + [sym_decl_module] = STATE(4859), + [sym_decl_use] = STATE(4859), + [sym__ctrl_statement] = STATE(4864), + [sym__ctrl_expression_parenthesized] = STATE(3454), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if_parenthesized] = STATE(3458), + [sym_ctrl_match] = STATE(3458), + [sym_ctrl_try_parenthesized] = STATE(3458), + [sym__stmt_let_shortcut] = STATE(3471), + [sym_pipe_element_parenthesized] = STATE(3176), + [sym_where_command_parenthesized] = STATE(3454), + [sym__expression_parenthesized] = STATE(2289), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2156), + [sym_expr_parenthesized] = STATE(739), + [sym__parenthesized_body] = STATE(5092), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(446), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(4794), + [sym__command_parenthesized] = STATE(3494), + [sym_comment] = STATE(48), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), + [aux_sym__parenthesized_body_repeat2] = STATE(90), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -44832,6 +45891,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -44845,7 +45905,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(389), + [anon_sym_RPAREN] = ACTIONS(395), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -44874,80 +45934,80 @@ 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(3898), - [sym__declaration_parenthesized] = STATE(4594), - [sym_decl_alias_parenthesized] = STATE(4614), - [sym_stmt_let_parenthesized] = STATE(4748), - [sym_stmt_mut_parenthesized] = STATE(4748), - [sym_stmt_const_parenthesized] = STATE(4748), - [sym_assignment_parenthesized] = STATE(4748), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), - [sym__statement_parenthesized] = STATE(4594), - [sym_pipeline_parenthesized] = STATE(4748), - [sym_cmd_identifier] = STATE(3009), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4614), - [sym_decl_export] = STATE(4614), - [sym_decl_extern] = STATE(4614), - [sym_decl_module] = STATE(4614), - [sym_decl_use] = STATE(4614), - [sym__ctrl_statement] = STATE(4748), - [sym__ctrl_expression_parenthesized] = STATE(3436), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if_parenthesized] = STATE(3367), - [sym_ctrl_match] = STATE(3367), - [sym_ctrl_try_parenthesized] = STATE(3367), - [sym__stmt_let_shortcut] = STATE(3368), - [sym_pipe_element_parenthesized] = STATE(3116), - [sym_where_command_parenthesized] = STATE(3436), - [sym__expression_parenthesized] = STATE(2290), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2157), - [sym_expr_parenthesized] = STATE(777), - [sym__parenthesized_body] = STATE(5240), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(124), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4730), - [sym__command_parenthesized] = STATE(3373), - [sym_comment] = STATE(46), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), - [aux_sym__block_body_repeat1] = STATE(74), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), - [aux_sym__parenthesized_body_repeat2] = STATE(85), - [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(4191), + [sym__declaration] = STATE(4507), + [sym_decl_alias] = STATE(4336), + [sym_stmt_let] = STATE(4338), + [sym_stmt_mut] = STATE(4338), + [sym_stmt_const] = STATE(4338), + [sym_assignment] = STATE(4338), + [sym__mutable_assignment_pattern] = STATE(4342), + [sym__statement] = STATE(4507), + [sym_pipeline] = STATE(4338), + [sym__block_body] = STATE(5306), + [sym_cmd_identifier] = STATE(2730), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4336), + [sym_decl_export] = STATE(4336), + [sym_decl_extern] = STATE(4336), + [sym_decl_module] = STATE(4336), + [sym_decl_use] = STATE(4336), + [sym__ctrl_statement] = STATE(4338), + [sym__ctrl_expression] = STATE(3368), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if] = STATE(3392), + [sym_ctrl_match] = STATE(3392), + [sym_ctrl_try] = STATE(3392), + [sym__stmt_let_shortcut] = STATE(3393), + [sym_pipe_element] = STATE(2909), + [sym_where_command] = STATE(3368), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(724), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(451), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3368), + [sym_comment] = STATE(49), + [aux_sym_pipeline_repeat1] = STATE(176), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_repeat2] = STATE(281), + [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), @@ -44957,10 +46017,11 @@ 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_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -44974,19 +46035,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(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), @@ -44999,79 +46060,79 @@ 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] = STATE(4201), - [sym__declaration] = STATE(4295), - [sym_decl_alias] = STATE(4296), - [sym_stmt_let] = STATE(4297), - [sym_stmt_mut] = STATE(4297), - [sym_stmt_const] = STATE(4297), - [sym_assignment] = STATE(4297), - [sym__mutable_assignment_pattern] = STATE(4298), - [sym__statement] = STATE(4295), - [sym_pipeline] = STATE(4297), - [sym__block_body] = STATE(5362), - [sym_cmd_identifier] = STATE(2812), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4296), - [sym_decl_export] = STATE(4296), - [sym_decl_extern] = STATE(4296), - [sym_decl_module] = STATE(4296), - [sym_decl_use] = STATE(4296), - [sym__ctrl_statement] = STATE(4297), - [sym__ctrl_expression] = STATE(3348), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if] = STATE(3352), - [sym_ctrl_match] = STATE(3352), - [sym_ctrl_try] = STATE(3352), - [sym__stmt_let_shortcut] = STATE(3358), - [sym_pipe_element] = STATE(2956), - [sym_where_command] = STATE(3348), + [STATE(50)] = { + [sym__block_body_statement] = STATE(4191), + [sym__declaration] = STATE(4507), + [sym_decl_alias] = STATE(4336), + [sym_stmt_let] = STATE(4338), + [sym_stmt_mut] = STATE(4338), + [sym_stmt_const] = STATE(4338), + [sym_assignment] = STATE(4338), + [sym__mutable_assignment_pattern] = STATE(4342), + [sym__statement] = STATE(4507), + [sym_pipeline] = STATE(4338), + [sym__block_body] = STATE(5380), + [sym_cmd_identifier] = STATE(2730), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4336), + [sym_decl_export] = STATE(4336), + [sym_decl_extern] = STATE(4336), + [sym_decl_module] = STATE(4336), + [sym_decl_use] = STATE(4336), + [sym__ctrl_statement] = STATE(4338), + [sym__ctrl_expression] = STATE(3368), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if] = STATE(3392), + [sym_ctrl_match] = STATE(3392), + [sym_ctrl_try] = STATE(3392), + [sym__stmt_let_shortcut] = STATE(3393), + [sym_pipe_element] = STATE(2909), + [sym_where_command] = STATE(3368), [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(704), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), + [sym_expr_parenthesized] = STATE(724), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(133), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3348), - [sym_comment] = STATE(47), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(80), - [aux_sym__block_body_repeat2] = STATE(87), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym_pipe_element_repeat2] = STATE(292), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3368), + [sym_comment] = STATE(50), + [aux_sym_pipeline_repeat1] = STATE(176), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -45090,6 +46151,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -45106,7 +46168,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(393), + [anon_sym_RBRACE] = ACTIONS(399), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -45132,75 +46194,75 @@ 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(3898), - [sym__declaration_parenthesized] = STATE(4594), - [sym_decl_alias_parenthesized] = STATE(4614), - [sym_stmt_let_parenthesized] = STATE(4748), - [sym_stmt_mut_parenthesized] = STATE(4748), - [sym_stmt_const_parenthesized] = STATE(4748), - [sym_assignment_parenthesized] = STATE(4748), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), - [sym__statement_parenthesized] = STATE(4594), - [sym_pipeline_parenthesized] = STATE(4748), - [sym_cmd_identifier] = STATE(3009), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4614), - [sym_decl_export] = STATE(4614), - [sym_decl_extern] = STATE(4614), - [sym_decl_module] = STATE(4614), - [sym_decl_use] = STATE(4614), - [sym__ctrl_statement] = STATE(4748), - [sym__ctrl_expression_parenthesized] = STATE(3436), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if_parenthesized] = STATE(3367), - [sym_ctrl_match] = STATE(3367), - [sym_ctrl_try_parenthesized] = STATE(3367), - [sym__stmt_let_shortcut] = STATE(3368), - [sym_pipe_element_parenthesized] = STATE(3116), - [sym_where_command_parenthesized] = STATE(3436), - [sym__expression_parenthesized] = STATE(2290), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2157), - [sym_expr_parenthesized] = STATE(777), - [sym__parenthesized_body] = STATE(5363), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(124), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4730), - [sym__command_parenthesized] = STATE(3373), - [sym_comment] = STATE(48), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), - [aux_sym__block_body_repeat1] = STATE(74), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), - [aux_sym__parenthesized_body_repeat2] = STATE(85), + [STATE(51)] = { + [sym__block_body_statement_parenthesized] = STATE(4126), + [sym__declaration_parenthesized] = STATE(4800), + [sym_decl_alias_parenthesized] = STATE(4859), + [sym_stmt_let_parenthesized] = STATE(4864), + [sym_stmt_mut_parenthesized] = STATE(4864), + [sym_stmt_const_parenthesized] = STATE(4864), + [sym_assignment_parenthesized] = STATE(4864), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4865), + [sym__statement_parenthesized] = STATE(4800), + [sym_pipeline_parenthesized] = STATE(4864), + [sym_cmd_identifier] = STATE(2907), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4859), + [sym_decl_export] = STATE(4859), + [sym_decl_extern] = STATE(4859), + [sym_decl_module] = STATE(4859), + [sym_decl_use] = STATE(4859), + [sym__ctrl_statement] = STATE(4864), + [sym__ctrl_expression_parenthesized] = STATE(3454), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if_parenthesized] = STATE(3458), + [sym_ctrl_match] = STATE(3458), + [sym_ctrl_try_parenthesized] = STATE(3458), + [sym__stmt_let_shortcut] = STATE(3471), + [sym_pipe_element_parenthesized] = STATE(3176), + [sym_where_command_parenthesized] = STATE(3454), + [sym__expression_parenthesized] = STATE(2289), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2156), + [sym_expr_parenthesized] = STATE(739), + [sym__parenthesized_body] = STATE(5381), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(446), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(4794), + [sym__command_parenthesized] = STATE(3494), + [sym_comment] = STATE(51), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), + [aux_sym__parenthesized_body_repeat2] = STATE(90), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -45219,6 +46281,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -45232,7 +46295,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(401), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -45261,75 +46324,75 @@ 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(4201), - [sym__declaration] = STATE(4295), - [sym_decl_alias] = STATE(4296), - [sym_stmt_let] = STATE(4297), - [sym_stmt_mut] = STATE(4297), - [sym_stmt_const] = STATE(4297), - [sym_assignment] = STATE(4297), - [sym__mutable_assignment_pattern] = STATE(4298), - [sym__statement] = STATE(4295), - [sym_pipeline] = STATE(4297), - [sym__block_body] = STATE(5044), - [sym_cmd_identifier] = STATE(2812), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4296), - [sym_decl_export] = STATE(4296), - [sym_decl_extern] = STATE(4296), - [sym_decl_module] = STATE(4296), - [sym_decl_use] = STATE(4296), - [sym__ctrl_statement] = STATE(4297), - [sym__ctrl_expression] = STATE(3348), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if] = STATE(3352), - [sym_ctrl_match] = STATE(3352), - [sym_ctrl_try] = STATE(3352), - [sym__stmt_let_shortcut] = STATE(3358), - [sym_pipe_element] = STATE(2956), - [sym_where_command] = STATE(3348), + [STATE(52)] = { + [sym__block_body_statement] = STATE(4191), + [sym__declaration] = STATE(4507), + [sym_decl_alias] = STATE(4336), + [sym_stmt_let] = STATE(4338), + [sym_stmt_mut] = STATE(4338), + [sym_stmt_const] = STATE(4338), + [sym_assignment] = STATE(4338), + [sym__mutable_assignment_pattern] = STATE(4342), + [sym__statement] = STATE(4507), + [sym_pipeline] = STATE(4338), + [sym__block_body] = STATE(5455), + [sym_cmd_identifier] = STATE(2730), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4336), + [sym_decl_export] = STATE(4336), + [sym_decl_extern] = STATE(4336), + [sym_decl_module] = STATE(4336), + [sym_decl_use] = STATE(4336), + [sym__ctrl_statement] = STATE(4338), + [sym__ctrl_expression] = STATE(3368), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if] = STATE(3392), + [sym_ctrl_match] = STATE(3392), + [sym_ctrl_try] = STATE(3392), + [sym__stmt_let_shortcut] = STATE(3393), + [sym_pipe_element] = STATE(2909), + [sym_where_command] = STATE(3368), [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(704), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), + [sym_expr_parenthesized] = STATE(724), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(133), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3348), - [sym_comment] = STATE(49), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(80), - [aux_sym__block_body_repeat2] = STATE(87), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym_pipe_element_repeat2] = STATE(292), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3368), + [sym_comment] = STATE(52), + [aux_sym_pipeline_repeat1] = STATE(176), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -45348,6 +46411,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -45364,7 +46428,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(397), + [anon_sym_RBRACE] = ACTIONS(403), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -45390,80 +46454,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(50)] = { - [sym__block_body_statement] = STATE(4201), - [sym__declaration] = STATE(4295), - [sym_decl_alias] = STATE(4296), - [sym_stmt_let] = STATE(4297), - [sym_stmt_mut] = STATE(4297), - [sym_stmt_const] = STATE(4297), - [sym_assignment] = STATE(4297), - [sym__mutable_assignment_pattern] = STATE(4298), - [sym__statement] = STATE(4295), - [sym_pipeline] = STATE(4297), - [sym__block_body] = STATE(5187), - [sym_cmd_identifier] = STATE(2812), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4296), - [sym_decl_export] = STATE(4296), - [sym_decl_extern] = STATE(4296), - [sym_decl_module] = STATE(4296), - [sym_decl_use] = STATE(4296), - [sym__ctrl_statement] = STATE(4297), - [sym__ctrl_expression] = STATE(3348), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if] = STATE(3352), - [sym_ctrl_match] = STATE(3352), - [sym_ctrl_try] = STATE(3352), - [sym__stmt_let_shortcut] = STATE(3358), - [sym_pipe_element] = STATE(2956), - [sym_where_command] = STATE(3348), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(704), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(133), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3348), - [sym_comment] = STATE(50), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(80), - [aux_sym__block_body_repeat2] = STATE(87), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [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(53)] = { + [sym__block_body_statement_parenthesized] = STATE(4126), + [sym__declaration_parenthesized] = STATE(4800), + [sym_decl_alias_parenthesized] = STATE(4859), + [sym_stmt_let_parenthesized] = STATE(4864), + [sym_stmt_mut_parenthesized] = STATE(4864), + [sym_stmt_const_parenthesized] = STATE(4864), + [sym_assignment_parenthesized] = STATE(4864), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4865), + [sym__statement_parenthesized] = STATE(4800), + [sym_pipeline_parenthesized] = STATE(4864), + [sym_cmd_identifier] = STATE(2907), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4859), + [sym_decl_export] = STATE(4859), + [sym_decl_extern] = STATE(4859), + [sym_decl_module] = STATE(4859), + [sym_decl_use] = STATE(4859), + [sym__ctrl_statement] = STATE(4864), + [sym__ctrl_expression_parenthesized] = STATE(3454), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if_parenthesized] = STATE(3458), + [sym_ctrl_match] = STATE(3458), + [sym_ctrl_try_parenthesized] = STATE(3458), + [sym__stmt_let_shortcut] = STATE(3471), + [sym_pipe_element_parenthesized] = STATE(3176), + [sym_where_command_parenthesized] = STATE(3454), + [sym__expression_parenthesized] = STATE(2289), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2156), + [sym_expr_parenthesized] = STATE(739), + [sym__parenthesized_body] = STATE(5237), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(446), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(4794), + [sym__command_parenthesized] = STATE(3494), + [sym_comment] = STATE(53), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), + [aux_sym__parenthesized_body_repeat2] = STATE(90), + [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), @@ -45473,10 +46537,11 @@ 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_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -45490,19 +46555,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(405), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(399), [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), @@ -45515,79 +46580,79 @@ 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(51)] = { - [sym__block_body_statement_parenthesized] = STATE(3898), - [sym__declaration_parenthesized] = STATE(4594), - [sym_decl_alias_parenthesized] = STATE(4614), - [sym_stmt_let_parenthesized] = STATE(4748), - [sym_stmt_mut_parenthesized] = STATE(4748), - [sym_stmt_const_parenthesized] = STATE(4748), - [sym_assignment_parenthesized] = STATE(4748), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), - [sym__statement_parenthesized] = STATE(4594), - [sym_pipeline_parenthesized] = STATE(4748), - [sym_cmd_identifier] = STATE(3009), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4614), - [sym_decl_export] = STATE(4614), - [sym_decl_extern] = STATE(4614), - [sym_decl_module] = STATE(4614), - [sym_decl_use] = STATE(4614), - [sym__ctrl_statement] = STATE(4748), - [sym__ctrl_expression_parenthesized] = STATE(3436), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if_parenthesized] = STATE(3367), - [sym_ctrl_match] = STATE(3367), - [sym_ctrl_try_parenthesized] = STATE(3367), - [sym__stmt_let_shortcut] = STATE(3368), - [sym_pipe_element_parenthesized] = STATE(3116), - [sym_where_command_parenthesized] = STATE(3436), - [sym__expression_parenthesized] = STATE(2290), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2157), - [sym_expr_parenthesized] = STATE(777), - [sym__parenthesized_body] = STATE(5207), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(124), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4730), - [sym__command_parenthesized] = STATE(3373), - [sym_comment] = STATE(51), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), - [aux_sym__block_body_repeat1] = STATE(74), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), - [aux_sym__parenthesized_body_repeat2] = STATE(85), + [STATE(54)] = { + [sym__block_body_statement_parenthesized] = STATE(4126), + [sym__declaration_parenthesized] = STATE(4800), + [sym_decl_alias_parenthesized] = STATE(4859), + [sym_stmt_let_parenthesized] = STATE(4864), + [sym_stmt_mut_parenthesized] = STATE(4864), + [sym_stmt_const_parenthesized] = STATE(4864), + [sym_assignment_parenthesized] = STATE(4864), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4865), + [sym__statement_parenthesized] = STATE(4800), + [sym_pipeline_parenthesized] = STATE(4864), + [sym_cmd_identifier] = STATE(2907), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4859), + [sym_decl_export] = STATE(4859), + [sym_decl_extern] = STATE(4859), + [sym_decl_module] = STATE(4859), + [sym_decl_use] = STATE(4859), + [sym__ctrl_statement] = STATE(4864), + [sym__ctrl_expression_parenthesized] = STATE(3454), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if_parenthesized] = STATE(3458), + [sym_ctrl_match] = STATE(3458), + [sym_ctrl_try_parenthesized] = STATE(3458), + [sym__stmt_let_shortcut] = STATE(3471), + [sym_pipe_element_parenthesized] = STATE(3176), + [sym_where_command_parenthesized] = STATE(3454), + [sym__expression_parenthesized] = STATE(2289), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2156), + [sym_expr_parenthesized] = STATE(739), + [sym__parenthesized_body] = STATE(5094), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(446), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(4794), + [sym__command_parenthesized] = STATE(3494), + [sym_comment] = STATE(54), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), + [aux_sym__parenthesized_body_repeat2] = STATE(90), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -45606,6 +46671,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -45619,7 +46685,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(401), + [anon_sym_RPAREN] = ACTIONS(407), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -45648,209 +46714,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(52)] = { - [sym__block_body_statement] = STATE(4274), - [sym__declaration] = STATE(4535), - [sym_decl_alias] = STATE(4536), - [sym_stmt_let] = STATE(4555), - [sym_stmt_mut] = STATE(4555), - [sym_stmt_const] = STATE(4555), - [sym_assignment] = STATE(4555), - [sym__mutable_assignment_pattern] = STATE(4579), - [sym__statement] = STATE(4535), - [sym_pipeline] = STATE(4555), - [sym__block_body] = STATE(5108), - [sym_cmd_identifier] = STATE(2947), - [sym_attribute_list] = STATE(4666), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4536), - [sym_decl_export] = STATE(4536), - [sym_decl_extern] = STATE(4536), - [sym_decl_module] = STATE(4536), - [sym_decl_use] = STATE(4536), - [sym__ctrl_statement] = STATE(4555), - [sym__ctrl_expression] = STATE(3379), - [sym_ctrl_for] = STATE(4772), - [sym_ctrl_loop] = STATE(4772), - [sym_ctrl_while] = STATE(4772), - [sym_ctrl_if] = STATE(3441), - [sym_ctrl_match] = STATE(3441), - [sym_ctrl_try] = STATE(3441), - [sym__stmt_let_shortcut] = STATE(3501), - [sym_pipe_element] = STATE(3200), - [sym_where_command] = STATE(3379), - [sym__expression] = STATE(2294), - [sym_expr_unary] = STATE(1286), - [sym__expr_unary_minus] = STATE(1290), - [sym_expr_binary] = STATE(1286), - [sym__expr_binary_expression] = STATE(2252), - [sym_expr_parenthesized] = STATE(924), - [sym_val_range] = STATE(1286), - [sym__value] = STATE(1286), - [sym_val_nothing] = STATE(1295), - [sym_val_bool] = STATE(1295), - [sym_val_variable] = STATE(447), - [sym_val_cellpath] = STATE(1295), - [sym_val_number] = STATE(1295), - [sym__val_number_decimal] = STATE(123), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1295), - [sym_val_filesize] = STATE(1295), - [sym_val_binary] = STATE(1295), - [sym_val_string] = STATE(1295), - [sym__raw_str] = STATE(502), - [sym__str_double_quotes] = STATE(502), - [sym__str_single_quotes] = STATE(502), - [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1295), - [sym__inter_single_quotes] = STATE(1306), - [sym__inter_double_quotes] = STATE(1317), - [sym_val_list] = STATE(1295), - [sym_val_record] = STATE(1295), - [sym_val_table] = STATE(1295), - [sym_val_closure] = STATE(1295), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3379), - [sym_comment] = STATE(52), - [aux_sym_pipeline_repeat1] = STATE(189), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym_pipe_element_repeat2] = STATE(291), - [ts_builtin_sym_end] = ACTIONS(403), - [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(53)] = { - [sym__block_body_statement_parenthesized] = STATE(3898), - [sym__declaration_parenthesized] = STATE(4594), - [sym_decl_alias_parenthesized] = STATE(4614), - [sym_stmt_let_parenthesized] = STATE(4748), - [sym_stmt_mut_parenthesized] = STATE(4748), - [sym_stmt_const_parenthesized] = STATE(4748), - [sym_assignment_parenthesized] = STATE(4748), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), - [sym__statement_parenthesized] = STATE(4594), - [sym_pipeline_parenthesized] = STATE(4748), - [sym_cmd_identifier] = STATE(3009), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4614), - [sym_decl_export] = STATE(4614), - [sym_decl_extern] = STATE(4614), - [sym_decl_module] = STATE(4614), - [sym_decl_use] = STATE(4614), - [sym__ctrl_statement] = STATE(4748), - [sym__ctrl_expression_parenthesized] = STATE(3436), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if_parenthesized] = STATE(3367), - [sym_ctrl_match] = STATE(3367), - [sym_ctrl_try_parenthesized] = STATE(3367), - [sym__stmt_let_shortcut] = STATE(3368), - [sym_pipe_element_parenthesized] = STATE(3116), - [sym_where_command_parenthesized] = STATE(3436), - [sym__expression_parenthesized] = STATE(2290), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2157), - [sym_expr_parenthesized] = STATE(777), - [sym__parenthesized_body] = STATE(5193), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(124), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4730), - [sym__command_parenthesized] = STATE(3373), - [sym_comment] = STATE(53), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), - [aux_sym__block_body_repeat1] = STATE(74), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), - [aux_sym__parenthesized_body_repeat2] = STATE(85), - [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(4191), + [sym__declaration] = STATE(4507), + [sym_decl_alias] = STATE(4336), + [sym_stmt_let] = STATE(4338), + [sym_stmt_mut] = STATE(4338), + [sym_stmt_const] = STATE(4338), + [sym_assignment] = STATE(4338), + [sym__mutable_assignment_pattern] = STATE(4342), + [sym__statement] = STATE(4507), + [sym_pipeline] = STATE(4338), + [sym__block_body] = STATE(5271), + [sym_cmd_identifier] = STATE(2730), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4336), + [sym_decl_export] = STATE(4336), + [sym_decl_extern] = STATE(4336), + [sym_decl_module] = STATE(4336), + [sym_decl_use] = STATE(4336), + [sym__ctrl_statement] = STATE(4338), + [sym__ctrl_expression] = STATE(3368), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if] = STATE(3392), + [sym_ctrl_match] = STATE(3392), + [sym_ctrl_try] = STATE(3392), + [sym__stmt_let_shortcut] = STATE(3393), + [sym_pipe_element] = STATE(2909), + [sym_where_command] = STATE(3368), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(724), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(451), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3368), + [sym_comment] = STATE(55), + [aux_sym_pipeline_repeat1] = STATE(176), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_repeat2] = STATE(281), + [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), @@ -45860,10 +46797,11 @@ 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_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -45877,19 +46815,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(405), [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), @@ -45902,79 +46840,79 @@ 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(54)] = { - [sym__block_body_statement] = STATE(4201), - [sym__declaration] = STATE(4295), - [sym_decl_alias] = STATE(4296), - [sym_stmt_let] = STATE(4297), - [sym_stmt_mut] = STATE(4297), - [sym_stmt_const] = STATE(4297), - [sym_assignment] = STATE(4297), - [sym__mutable_assignment_pattern] = STATE(4298), - [sym__statement] = STATE(4295), - [sym_pipeline] = STATE(4297), - [sym__block_body] = STATE(5324), - [sym_cmd_identifier] = STATE(2812), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4296), - [sym_decl_export] = STATE(4296), - [sym_decl_extern] = STATE(4296), - [sym_decl_module] = STATE(4296), - [sym_decl_use] = STATE(4296), - [sym__ctrl_statement] = STATE(4297), - [sym__ctrl_expression] = STATE(3348), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if] = STATE(3352), - [sym_ctrl_match] = STATE(3352), - [sym_ctrl_try] = STATE(3352), - [sym__stmt_let_shortcut] = STATE(3358), - [sym_pipe_element] = STATE(2956), - [sym_where_command] = STATE(3348), + [STATE(56)] = { + [sym__block_body_statement] = STATE(4191), + [sym__declaration] = STATE(4507), + [sym_decl_alias] = STATE(4336), + [sym_stmt_let] = STATE(4338), + [sym_stmt_mut] = STATE(4338), + [sym_stmt_const] = STATE(4338), + [sym_assignment] = STATE(4338), + [sym__mutable_assignment_pattern] = STATE(4342), + [sym__statement] = STATE(4507), + [sym_pipeline] = STATE(4338), + [sym__block_body] = STATE(5224), + [sym_cmd_identifier] = STATE(2730), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4336), + [sym_decl_export] = STATE(4336), + [sym_decl_extern] = STATE(4336), + [sym_decl_module] = STATE(4336), + [sym_decl_use] = STATE(4336), + [sym__ctrl_statement] = STATE(4338), + [sym__ctrl_expression] = STATE(3368), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if] = STATE(3392), + [sym_ctrl_match] = STATE(3392), + [sym_ctrl_try] = STATE(3392), + [sym__stmt_let_shortcut] = STATE(3393), + [sym_pipe_element] = STATE(2909), + [sym_where_command] = STATE(3368), [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(704), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), + [sym_expr_parenthesized] = STATE(724), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(133), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3348), - [sym_comment] = STATE(54), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(80), - [aux_sym__block_body_repeat2] = STATE(87), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym_pipe_element_repeat2] = STATE(292), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3368), + [sym_comment] = STATE(56), + [aux_sym_pipeline_repeat1] = STATE(176), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -45993,6 +46931,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -46009,7 +46948,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(407), + [anon_sym_RBRACE] = ACTIONS(411), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -46035,75 +46974,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(55)] = { - [sym__block_body_statement_parenthesized] = STATE(3898), - [sym__declaration_parenthesized] = STATE(4594), - [sym_decl_alias_parenthesized] = STATE(4614), - [sym_stmt_let_parenthesized] = STATE(4748), - [sym_stmt_mut_parenthesized] = STATE(4748), - [sym_stmt_const_parenthesized] = STATE(4748), - [sym_assignment_parenthesized] = STATE(4748), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), - [sym__statement_parenthesized] = STATE(4594), - [sym_pipeline_parenthesized] = STATE(4748), - [sym_cmd_identifier] = STATE(3009), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4614), - [sym_decl_export] = STATE(4614), - [sym_decl_extern] = STATE(4614), - [sym_decl_module] = STATE(4614), - [sym_decl_use] = STATE(4614), - [sym__ctrl_statement] = STATE(4748), - [sym__ctrl_expression_parenthesized] = STATE(3436), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if_parenthesized] = STATE(3367), - [sym_ctrl_match] = STATE(3367), - [sym_ctrl_try_parenthesized] = STATE(3367), - [sym__stmt_let_shortcut] = STATE(3368), - [sym_pipe_element_parenthesized] = STATE(3116), - [sym_where_command_parenthesized] = STATE(3436), - [sym__expression_parenthesized] = STATE(2290), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2157), - [sym_expr_parenthesized] = STATE(777), - [sym__parenthesized_body] = STATE(5325), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(124), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4730), - [sym__command_parenthesized] = STATE(3373), - [sym_comment] = STATE(55), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), - [aux_sym__block_body_repeat1] = STATE(74), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), - [aux_sym__parenthesized_body_repeat2] = STATE(85), + [STATE(57)] = { + [sym__block_body_statement_parenthesized] = STATE(4126), + [sym__declaration_parenthesized] = STATE(4800), + [sym_decl_alias_parenthesized] = STATE(4859), + [sym_stmt_let_parenthesized] = STATE(4864), + [sym_stmt_mut_parenthesized] = STATE(4864), + [sym_stmt_const_parenthesized] = STATE(4864), + [sym_assignment_parenthesized] = STATE(4864), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4865), + [sym__statement_parenthesized] = STATE(4800), + [sym_pipeline_parenthesized] = STATE(4864), + [sym_cmd_identifier] = STATE(2907), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4859), + [sym_decl_export] = STATE(4859), + [sym_decl_extern] = STATE(4859), + [sym_decl_module] = STATE(4859), + [sym_decl_use] = STATE(4859), + [sym__ctrl_statement] = STATE(4864), + [sym__ctrl_expression_parenthesized] = STATE(3454), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if_parenthesized] = STATE(3458), + [sym_ctrl_match] = STATE(3458), + [sym_ctrl_try_parenthesized] = STATE(3458), + [sym__stmt_let_shortcut] = STATE(3471), + [sym_pipe_element_parenthesized] = STATE(3176), + [sym_where_command_parenthesized] = STATE(3454), + [sym__expression_parenthesized] = STATE(2289), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2156), + [sym_expr_parenthesized] = STATE(739), + [sym__parenthesized_body] = STATE(5239), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(446), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(4794), + [sym__command_parenthesized] = STATE(3494), + [sym_comment] = STATE(57), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), + [aux_sym__parenthesized_body_repeat2] = STATE(90), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -46122,6 +47061,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -46135,7 +47075,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(409), + [anon_sym_RPAREN] = ACTIONS(413), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -46164,75 +47104,75 @@ 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] = STATE(4201), - [sym__declaration] = STATE(4295), - [sym_decl_alias] = STATE(4296), - [sym_stmt_let] = STATE(4297), - [sym_stmt_mut] = STATE(4297), - [sym_stmt_const] = STATE(4297), - [sym_assignment] = STATE(4297), - [sym__mutable_assignment_pattern] = STATE(4298), - [sym__statement] = STATE(4295), - [sym_pipeline] = STATE(4297), - [sym__block_body] = STATE(5334), - [sym_cmd_identifier] = STATE(2812), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4296), - [sym_decl_export] = STATE(4296), - [sym_decl_extern] = STATE(4296), - [sym_decl_module] = STATE(4296), - [sym_decl_use] = STATE(4296), - [sym__ctrl_statement] = STATE(4297), - [sym__ctrl_expression] = STATE(3348), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if] = STATE(3352), - [sym_ctrl_match] = STATE(3352), - [sym_ctrl_try] = STATE(3352), - [sym__stmt_let_shortcut] = STATE(3358), - [sym_pipe_element] = STATE(2956), - [sym_where_command] = STATE(3348), + [STATE(58)] = { + [sym__block_body_statement] = STATE(4191), + [sym__declaration] = STATE(4507), + [sym_decl_alias] = STATE(4336), + [sym_stmt_let] = STATE(4338), + [sym_stmt_mut] = STATE(4338), + [sym_stmt_const] = STATE(4338), + [sym_assignment] = STATE(4338), + [sym__mutable_assignment_pattern] = STATE(4342), + [sym__statement] = STATE(4507), + [sym_pipeline] = STATE(4338), + [sym__block_body] = STATE(5282), + [sym_cmd_identifier] = STATE(2730), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4336), + [sym_decl_export] = STATE(4336), + [sym_decl_extern] = STATE(4336), + [sym_decl_module] = STATE(4336), + [sym_decl_use] = STATE(4336), + [sym__ctrl_statement] = STATE(4338), + [sym__ctrl_expression] = STATE(3368), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if] = STATE(3392), + [sym_ctrl_match] = STATE(3392), + [sym_ctrl_try] = STATE(3392), + [sym__stmt_let_shortcut] = STATE(3393), + [sym_pipe_element] = STATE(2909), + [sym_where_command] = STATE(3368), [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(704), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), + [sym_expr_parenthesized] = STATE(724), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(133), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3348), - [sym_comment] = STATE(56), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(80), - [aux_sym__block_body_repeat2] = STATE(87), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym_pipe_element_repeat2] = STATE(292), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3368), + [sym_comment] = STATE(58), + [aux_sym_pipeline_repeat1] = STATE(176), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -46251,6 +47191,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -46267,7 +47208,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(411), + [anon_sym_RBRACE] = ACTIONS(415), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -46293,75 +47234,75 @@ 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_parenthesized] = STATE(3898), - [sym__declaration_parenthesized] = STATE(4594), - [sym_decl_alias_parenthesized] = STATE(4614), - [sym_stmt_let_parenthesized] = STATE(4748), - [sym_stmt_mut_parenthesized] = STATE(4748), - [sym_stmt_const_parenthesized] = STATE(4748), - [sym_assignment_parenthesized] = STATE(4748), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), - [sym__statement_parenthesized] = STATE(4594), - [sym_pipeline_parenthesized] = STATE(4748), - [sym_cmd_identifier] = STATE(3009), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4614), - [sym_decl_export] = STATE(4614), - [sym_decl_extern] = STATE(4614), - [sym_decl_module] = STATE(4614), - [sym_decl_use] = STATE(4614), - [sym__ctrl_statement] = STATE(4748), - [sym__ctrl_expression_parenthesized] = STATE(3436), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if_parenthesized] = STATE(3367), - [sym_ctrl_match] = STATE(3367), - [sym_ctrl_try_parenthesized] = STATE(3367), - [sym__stmt_let_shortcut] = STATE(3368), - [sym_pipe_element_parenthesized] = STATE(3116), - [sym_where_command_parenthesized] = STATE(3436), - [sym__expression_parenthesized] = STATE(2290), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2157), - [sym_expr_parenthesized] = STATE(777), - [sym__parenthesized_body] = STATE(5361), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(124), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4730), - [sym__command_parenthesized] = STATE(3373), - [sym_comment] = STATE(57), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), - [aux_sym__block_body_repeat1] = STATE(74), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), - [aux_sym__parenthesized_body_repeat2] = STATE(85), + [STATE(59)] = { + [sym__block_body_statement_parenthesized] = STATE(4126), + [sym__declaration_parenthesized] = STATE(4800), + [sym_decl_alias_parenthesized] = STATE(4859), + [sym_stmt_let_parenthesized] = STATE(4864), + [sym_stmt_mut_parenthesized] = STATE(4864), + [sym_stmt_const_parenthesized] = STATE(4864), + [sym_assignment_parenthesized] = STATE(4864), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4865), + [sym__statement_parenthesized] = STATE(4800), + [sym_pipeline_parenthesized] = STATE(4864), + [sym_cmd_identifier] = STATE(2907), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4859), + [sym_decl_export] = STATE(4859), + [sym_decl_extern] = STATE(4859), + [sym_decl_module] = STATE(4859), + [sym_decl_use] = STATE(4859), + [sym__ctrl_statement] = STATE(4864), + [sym__ctrl_expression_parenthesized] = STATE(3454), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if_parenthesized] = STATE(3458), + [sym_ctrl_match] = STATE(3458), + [sym_ctrl_try_parenthesized] = STATE(3458), + [sym__stmt_let_shortcut] = STATE(3471), + [sym_pipe_element_parenthesized] = STATE(3176), + [sym_where_command_parenthesized] = STATE(3454), + [sym__expression_parenthesized] = STATE(2289), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2156), + [sym_expr_parenthesized] = STATE(739), + [sym__parenthesized_body] = STATE(5265), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(446), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(4794), + [sym__command_parenthesized] = STATE(3494), + [sym_comment] = STATE(59), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), + [aux_sym__parenthesized_body_repeat2] = STATE(90), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -46380,6 +47321,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -46393,7 +47335,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(413), + [anon_sym_RPAREN] = ACTIONS(417), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -46422,75 +47364,75 @@ 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] = STATE(4201), - [sym__declaration] = STATE(4295), - [sym_decl_alias] = STATE(4296), - [sym_stmt_let] = STATE(4297), - [sym_stmt_mut] = STATE(4297), - [sym_stmt_const] = STATE(4297), - [sym_assignment] = STATE(4297), - [sym__mutable_assignment_pattern] = STATE(4298), - [sym__statement] = STATE(4295), - [sym_pipeline] = STATE(4297), - [sym__block_body] = STATE(5051), - [sym_cmd_identifier] = STATE(2812), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4296), - [sym_decl_export] = STATE(4296), - [sym_decl_extern] = STATE(4296), - [sym_decl_module] = STATE(4296), - [sym_decl_use] = STATE(4296), - [sym__ctrl_statement] = STATE(4297), - [sym__ctrl_expression] = STATE(3348), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if] = STATE(3352), - [sym_ctrl_match] = STATE(3352), - [sym_ctrl_try] = STATE(3352), - [sym__stmt_let_shortcut] = STATE(3358), - [sym_pipe_element] = STATE(2956), - [sym_where_command] = STATE(3348), + [STATE(60)] = { + [sym__block_body_statement] = STATE(4191), + [sym__declaration] = STATE(4507), + [sym_decl_alias] = STATE(4336), + [sym_stmt_let] = STATE(4338), + [sym_stmt_mut] = STATE(4338), + [sym_stmt_const] = STATE(4338), + [sym_assignment] = STATE(4338), + [sym__mutable_assignment_pattern] = STATE(4342), + [sym__statement] = STATE(4507), + [sym_pipeline] = STATE(4338), + [sym__block_body] = STATE(5197), + [sym_cmd_identifier] = STATE(2730), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4336), + [sym_decl_export] = STATE(4336), + [sym_decl_extern] = STATE(4336), + [sym_decl_module] = STATE(4336), + [sym_decl_use] = STATE(4336), + [sym__ctrl_statement] = STATE(4338), + [sym__ctrl_expression] = STATE(3368), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if] = STATE(3392), + [sym_ctrl_match] = STATE(3392), + [sym_ctrl_try] = STATE(3392), + [sym__stmt_let_shortcut] = STATE(3393), + [sym_pipe_element] = STATE(2909), + [sym_where_command] = STATE(3368), [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(704), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), + [sym_expr_parenthesized] = STATE(724), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(133), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3348), - [sym_comment] = STATE(58), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(80), - [aux_sym__block_body_repeat2] = STATE(87), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym_pipe_element_repeat2] = STATE(292), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3368), + [sym_comment] = STATE(60), + [aux_sym_pipeline_repeat1] = STATE(176), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -46509,6 +47451,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -46525,7 +47468,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(415), + [anon_sym_RBRACE] = ACTIONS(419), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -46551,75 +47494,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(59)] = { - [sym__block_body_statement_parenthesized] = STATE(3898), - [sym__declaration_parenthesized] = STATE(4594), - [sym_decl_alias_parenthesized] = STATE(4614), - [sym_stmt_let_parenthesized] = STATE(4748), - [sym_stmt_mut_parenthesized] = STATE(4748), - [sym_stmt_const_parenthesized] = STATE(4748), - [sym_assignment_parenthesized] = STATE(4748), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), - [sym__statement_parenthesized] = STATE(4594), - [sym_pipeline_parenthesized] = STATE(4748), - [sym_cmd_identifier] = STATE(3009), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4614), - [sym_decl_export] = STATE(4614), - [sym_decl_extern] = STATE(4614), - [sym_decl_module] = STATE(4614), - [sym_decl_use] = STATE(4614), - [sym__ctrl_statement] = STATE(4748), - [sym__ctrl_expression_parenthesized] = STATE(3436), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if_parenthesized] = STATE(3367), - [sym_ctrl_match] = STATE(3367), - [sym_ctrl_try_parenthesized] = STATE(3367), - [sym__stmt_let_shortcut] = STATE(3368), - [sym_pipe_element_parenthesized] = STATE(3116), - [sym_where_command_parenthesized] = STATE(3436), - [sym__expression_parenthesized] = STATE(2290), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2157), - [sym_expr_parenthesized] = STATE(777), - [sym__parenthesized_body] = STATE(5065), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(124), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4730), - [sym__command_parenthesized] = STATE(3373), - [sym_comment] = STATE(59), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), - [aux_sym__block_body_repeat1] = STATE(74), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), - [aux_sym__parenthesized_body_repeat2] = STATE(85), + [STATE(61)] = { + [sym__block_body_statement_parenthesized] = STATE(4126), + [sym__declaration_parenthesized] = STATE(4800), + [sym_decl_alias_parenthesized] = STATE(4859), + [sym_stmt_let_parenthesized] = STATE(4864), + [sym_stmt_mut_parenthesized] = STATE(4864), + [sym_stmt_const_parenthesized] = STATE(4864), + [sym_assignment_parenthesized] = STATE(4864), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4865), + [sym__statement_parenthesized] = STATE(4800), + [sym_pipeline_parenthesized] = STATE(4864), + [sym_cmd_identifier] = STATE(2907), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4859), + [sym_decl_export] = STATE(4859), + [sym_decl_extern] = STATE(4859), + [sym_decl_module] = STATE(4859), + [sym_decl_use] = STATE(4859), + [sym__ctrl_statement] = STATE(4864), + [sym__ctrl_expression_parenthesized] = STATE(3454), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if_parenthesized] = STATE(3458), + [sym_ctrl_match] = STATE(3458), + [sym_ctrl_try_parenthesized] = STATE(3458), + [sym__stmt_let_shortcut] = STATE(3471), + [sym_pipe_element_parenthesized] = STATE(3176), + [sym_where_command_parenthesized] = STATE(3454), + [sym__expression_parenthesized] = STATE(2289), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2156), + [sym_expr_parenthesized] = STATE(739), + [sym__parenthesized_body] = STATE(5199), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(446), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(4794), + [sym__command_parenthesized] = STATE(3494), + [sym_comment] = STATE(61), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), + [aux_sym__parenthesized_body_repeat2] = STATE(90), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -46638,6 +47581,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -46651,7 +47595,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(417), + [anon_sym_RPAREN] = ACTIONS(421), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -46680,75 +47624,205 @@ 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] = STATE(4201), - [sym__declaration] = STATE(4295), - [sym_decl_alias] = STATE(4296), - [sym_stmt_let] = STATE(4297), - [sym_stmt_mut] = STATE(4297), - [sym_stmt_const] = STATE(4297), - [sym_assignment] = STATE(4297), - [sym__mutable_assignment_pattern] = STATE(4298), - [sym__statement] = STATE(4295), - [sym_pipeline] = STATE(4297), - [sym__block_body] = STATE(5095), - [sym_cmd_identifier] = STATE(2812), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4296), - [sym_decl_export] = STATE(4296), - [sym_decl_extern] = STATE(4296), - [sym_decl_module] = STATE(4296), - [sym_decl_use] = STATE(4296), - [sym__ctrl_statement] = STATE(4297), - [sym__ctrl_expression] = STATE(3348), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if] = STATE(3352), - [sym_ctrl_match] = STATE(3352), - [sym_ctrl_try] = STATE(3352), - [sym__stmt_let_shortcut] = STATE(3358), - [sym_pipe_element] = STATE(2956), - [sym_where_command] = STATE(3348), + [STATE(62)] = { + [sym__block_body_statement] = STATE(4191), + [sym__declaration] = STATE(4507), + [sym_decl_alias] = STATE(4336), + [sym_stmt_let] = STATE(4338), + [sym_stmt_mut] = STATE(4338), + [sym_stmt_const] = STATE(4338), + [sym_assignment] = STATE(4338), + [sym__mutable_assignment_pattern] = STATE(4342), + [sym__statement] = STATE(4507), + [sym_pipeline] = STATE(4338), + [sym__block_body] = STATE(5214), + [sym_cmd_identifier] = STATE(2730), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4336), + [sym_decl_export] = STATE(4336), + [sym_decl_extern] = STATE(4336), + [sym_decl_module] = STATE(4336), + [sym_decl_use] = STATE(4336), + [sym__ctrl_statement] = STATE(4338), + [sym__ctrl_expression] = STATE(3368), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if] = STATE(3392), + [sym_ctrl_match] = STATE(3392), + [sym_ctrl_try] = STATE(3392), + [sym__stmt_let_shortcut] = STATE(3393), + [sym_pipe_element] = STATE(2909), + [sym_where_command] = STATE(3368), [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(704), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), + [sym_expr_parenthesized] = STATE(724), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(133), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3348), - [sym_comment] = STATE(60), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(80), - [aux_sym__block_body_repeat2] = STATE(87), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym_pipe_element_repeat2] = STATE(292), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3368), + [sym_comment] = STATE(62), + [aux_sym_pipeline_repeat1] = STATE(176), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_repeat2] = STATE(281), + [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_finally] = 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(423), + [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(63)] = { + [sym__block_body_statement] = STATE(4191), + [sym__declaration] = STATE(4507), + [sym_decl_alias] = STATE(4336), + [sym_stmt_let] = STATE(4338), + [sym_stmt_mut] = STATE(4338), + [sym_stmt_const] = STATE(4338), + [sym_assignment] = STATE(4338), + [sym__mutable_assignment_pattern] = STATE(4342), + [sym__statement] = STATE(4507), + [sym_pipeline] = STATE(4338), + [sym__block_body] = STATE(5305), + [sym_cmd_identifier] = STATE(2730), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4336), + [sym_decl_export] = STATE(4336), + [sym_decl_extern] = STATE(4336), + [sym_decl_module] = STATE(4336), + [sym_decl_use] = STATE(4336), + [sym__ctrl_statement] = STATE(4338), + [sym__ctrl_expression] = STATE(3368), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if] = STATE(3392), + [sym_ctrl_match] = STATE(3392), + [sym_ctrl_try] = STATE(3392), + [sym__stmt_let_shortcut] = STATE(3393), + [sym_pipe_element] = STATE(2909), + [sym_where_command] = STATE(3368), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(724), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(451), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3368), + [sym_comment] = STATE(63), + [aux_sym_pipeline_repeat1] = STATE(176), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -46767,6 +47841,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -46783,7 +47858,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(419), + [anon_sym_RBRACE] = ACTIONS(425), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -46809,75 +47884,75 @@ 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_parenthesized] = STATE(3898), - [sym__declaration_parenthesized] = STATE(4594), - [sym_decl_alias_parenthesized] = STATE(4614), - [sym_stmt_let_parenthesized] = STATE(4748), - [sym_stmt_mut_parenthesized] = STATE(4748), - [sym_stmt_const_parenthesized] = STATE(4748), - [sym_assignment_parenthesized] = STATE(4748), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), - [sym__statement_parenthesized] = STATE(4594), - [sym_pipeline_parenthesized] = STATE(4748), - [sym_cmd_identifier] = STATE(3009), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4614), - [sym_decl_export] = STATE(4614), - [sym_decl_extern] = STATE(4614), - [sym_decl_module] = STATE(4614), - [sym_decl_use] = STATE(4614), - [sym__ctrl_statement] = STATE(4748), - [sym__ctrl_expression_parenthesized] = STATE(3436), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if_parenthesized] = STATE(3367), - [sym_ctrl_match] = STATE(3367), - [sym_ctrl_try_parenthesized] = STATE(3367), - [sym__stmt_let_shortcut] = STATE(3368), - [sym_pipe_element_parenthesized] = STATE(3116), - [sym_where_command_parenthesized] = STATE(3436), - [sym__expression_parenthesized] = STATE(2290), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2157), - [sym_expr_parenthesized] = STATE(777), - [sym__parenthesized_body] = STATE(5102), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(124), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4730), - [sym__command_parenthesized] = STATE(3373), - [sym_comment] = STATE(61), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), - [aux_sym__block_body_repeat1] = STATE(74), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), - [aux_sym__parenthesized_body_repeat2] = STATE(85), + [STATE(64)] = { + [sym__block_body_statement_parenthesized] = STATE(4126), + [sym__declaration_parenthesized] = STATE(4800), + [sym_decl_alias_parenthesized] = STATE(4859), + [sym_stmt_let_parenthesized] = STATE(4864), + [sym_stmt_mut_parenthesized] = STATE(4864), + [sym_stmt_const_parenthesized] = STATE(4864), + [sym_assignment_parenthesized] = STATE(4864), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4865), + [sym__statement_parenthesized] = STATE(4800), + [sym_pipeline_parenthesized] = STATE(4864), + [sym_cmd_identifier] = STATE(2907), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4859), + [sym_decl_export] = STATE(4859), + [sym_decl_extern] = STATE(4859), + [sym_decl_module] = STATE(4859), + [sym_decl_use] = STATE(4859), + [sym__ctrl_statement] = STATE(4864), + [sym__ctrl_expression_parenthesized] = STATE(3454), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if_parenthesized] = STATE(3458), + [sym_ctrl_match] = STATE(3458), + [sym_ctrl_try_parenthesized] = STATE(3458), + [sym__stmt_let_shortcut] = STATE(3471), + [sym_pipe_element_parenthesized] = STATE(3176), + [sym_where_command_parenthesized] = STATE(3454), + [sym__expression_parenthesized] = STATE(2289), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2156), + [sym_expr_parenthesized] = STATE(739), + [sym__parenthesized_body] = STATE(5339), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(446), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(4794), + [sym__command_parenthesized] = STATE(3494), + [sym_comment] = STATE(64), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), + [aux_sym__parenthesized_body_repeat2] = STATE(90), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -46896,6 +47971,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -46909,7 +47985,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(421), + [anon_sym_RPAREN] = ACTIONS(427), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -46938,75 +48014,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(62)] = { - [sym__block_body_statement] = STATE(4201), - [sym__declaration] = STATE(4295), - [sym_decl_alias] = STATE(4296), - [sym_stmt_let] = STATE(4297), - [sym_stmt_mut] = STATE(4297), - [sym_stmt_const] = STATE(4297), - [sym_assignment] = STATE(4297), - [sym__mutable_assignment_pattern] = STATE(4298), - [sym__statement] = STATE(4295), - [sym_pipeline] = STATE(4297), - [sym__block_body] = STATE(5017), - [sym_cmd_identifier] = STATE(2812), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4296), - [sym_decl_export] = STATE(4296), - [sym_decl_extern] = STATE(4296), - [sym_decl_module] = STATE(4296), - [sym_decl_use] = STATE(4296), - [sym__ctrl_statement] = STATE(4297), - [sym__ctrl_expression] = STATE(3348), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if] = STATE(3352), - [sym_ctrl_match] = STATE(3352), - [sym_ctrl_try] = STATE(3352), - [sym__stmt_let_shortcut] = STATE(3358), - [sym_pipe_element] = STATE(2956), - [sym_where_command] = STATE(3348), + [STATE(65)] = { + [sym__block_body_statement] = STATE(4191), + [sym__declaration] = STATE(4507), + [sym_decl_alias] = STATE(4336), + [sym_stmt_let] = STATE(4338), + [sym_stmt_mut] = STATE(4338), + [sym_stmt_const] = STATE(4338), + [sym_assignment] = STATE(4338), + [sym__mutable_assignment_pattern] = STATE(4342), + [sym__statement] = STATE(4507), + [sym_pipeline] = STATE(4338), + [sym__block_body] = STATE(5318), + [sym_cmd_identifier] = STATE(2730), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4336), + [sym_decl_export] = STATE(4336), + [sym_decl_extern] = STATE(4336), + [sym_decl_module] = STATE(4336), + [sym_decl_use] = STATE(4336), + [sym__ctrl_statement] = STATE(4338), + [sym__ctrl_expression] = STATE(3368), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if] = STATE(3392), + [sym_ctrl_match] = STATE(3392), + [sym_ctrl_try] = STATE(3392), + [sym__stmt_let_shortcut] = STATE(3393), + [sym_pipe_element] = STATE(2909), + [sym_where_command] = STATE(3368), [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(704), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), + [sym_expr_parenthesized] = STATE(724), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(133), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3348), - [sym_comment] = STATE(62), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(80), - [aux_sym__block_body_repeat2] = STATE(87), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym_pipe_element_repeat2] = STATE(292), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3368), + [sym_comment] = STATE(65), + [aux_sym_pipeline_repeat1] = STATE(176), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -47025,6 +48101,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -47041,7 +48118,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(423), + [anon_sym_RBRACE] = ACTIONS(429), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -47067,75 +48144,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(63)] = { - [sym__block_body_statement_parenthesized] = STATE(3898), - [sym__declaration_parenthesized] = STATE(4594), - [sym_decl_alias_parenthesized] = STATE(4614), - [sym_stmt_let_parenthesized] = STATE(4748), - [sym_stmt_mut_parenthesized] = STATE(4748), - [sym_stmt_const_parenthesized] = STATE(4748), - [sym_assignment_parenthesized] = STATE(4748), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), - [sym__statement_parenthesized] = STATE(4594), - [sym_pipeline_parenthesized] = STATE(4748), - [sym_cmd_identifier] = STATE(3009), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4614), - [sym_decl_export] = STATE(4614), - [sym_decl_extern] = STATE(4614), - [sym_decl_module] = STATE(4614), - [sym_decl_use] = STATE(4614), - [sym__ctrl_statement] = STATE(4748), - [sym__ctrl_expression_parenthesized] = STATE(3436), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if_parenthesized] = STATE(3367), - [sym_ctrl_match] = STATE(3367), - [sym_ctrl_try_parenthesized] = STATE(3367), - [sym__stmt_let_shortcut] = STATE(3368), - [sym_pipe_element_parenthesized] = STATE(3116), - [sym_where_command_parenthesized] = STATE(3436), - [sym__expression_parenthesized] = STATE(2290), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2157), - [sym_expr_parenthesized] = STATE(777), - [sym__parenthesized_body] = STATE(5024), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(124), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4730), - [sym__command_parenthesized] = STATE(3373), - [sym_comment] = STATE(63), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), - [aux_sym__block_body_repeat1] = STATE(74), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), - [aux_sym__parenthesized_body_repeat2] = STATE(85), + [STATE(66)] = { + [sym__block_body_statement_parenthesized] = STATE(4126), + [sym__declaration_parenthesized] = STATE(4800), + [sym_decl_alias_parenthesized] = STATE(4859), + [sym_stmt_let_parenthesized] = STATE(4864), + [sym_stmt_mut_parenthesized] = STATE(4864), + [sym_stmt_const_parenthesized] = STATE(4864), + [sym_assignment_parenthesized] = STATE(4864), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4865), + [sym__statement_parenthesized] = STATE(4800), + [sym_pipeline_parenthesized] = STATE(4864), + [sym_cmd_identifier] = STATE(2907), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4859), + [sym_decl_export] = STATE(4859), + [sym_decl_extern] = STATE(4859), + [sym_decl_module] = STATE(4859), + [sym_decl_use] = STATE(4859), + [sym__ctrl_statement] = STATE(4864), + [sym__ctrl_expression_parenthesized] = STATE(3454), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if_parenthesized] = STATE(3458), + [sym_ctrl_match] = STATE(3458), + [sym_ctrl_try_parenthesized] = STATE(3458), + [sym__stmt_let_shortcut] = STATE(3471), + [sym_pipe_element_parenthesized] = STATE(3176), + [sym_where_command_parenthesized] = STATE(3454), + [sym__expression_parenthesized] = STATE(2289), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2156), + [sym_expr_parenthesized] = STATE(739), + [sym__parenthesized_body] = STATE(5294), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(446), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(4794), + [sym__command_parenthesized] = STATE(3494), + [sym_comment] = STATE(66), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), + [aux_sym__parenthesized_body_repeat2] = STATE(90), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -47154,6 +48231,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -47167,7 +48245,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(425), + [anon_sym_RPAREN] = ACTIONS(431), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -47196,80 +48274,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(64)] = { - [sym__block_body_statement] = STATE(4201), - [sym__declaration] = STATE(4295), - [sym_decl_alias] = STATE(4296), - [sym_stmt_let] = STATE(4297), - [sym_stmt_mut] = STATE(4297), - [sym_stmt_const] = STATE(4297), - [sym_assignment] = STATE(4297), - [sym__mutable_assignment_pattern] = STATE(4298), - [sym__statement] = STATE(4295), - [sym_pipeline] = STATE(4297), - [sym__block_body] = STATE(5037), - [sym_cmd_identifier] = STATE(2812), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4296), - [sym_decl_export] = STATE(4296), - [sym_decl_extern] = STATE(4296), - [sym_decl_module] = STATE(4296), - [sym_decl_use] = STATE(4296), - [sym__ctrl_statement] = STATE(4297), - [sym__ctrl_expression] = STATE(3348), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if] = STATE(3352), - [sym_ctrl_match] = STATE(3352), - [sym_ctrl_try] = STATE(3352), - [sym__stmt_let_shortcut] = STATE(3358), - [sym_pipe_element] = STATE(2956), - [sym_where_command] = STATE(3348), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(704), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(133), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3348), - [sym_comment] = STATE(64), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(80), - [aux_sym__block_body_repeat2] = STATE(87), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [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(67)] = { + [sym__block_body_statement_parenthesized] = STATE(4126), + [sym__declaration_parenthesized] = STATE(4800), + [sym_decl_alias_parenthesized] = STATE(4859), + [sym_stmt_let_parenthesized] = STATE(4864), + [sym_stmt_mut_parenthesized] = STATE(4864), + [sym_stmt_const_parenthesized] = STATE(4864), + [sym_assignment_parenthesized] = STATE(4864), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4865), + [sym__statement_parenthesized] = STATE(4800), + [sym_pipeline_parenthesized] = STATE(4864), + [sym_cmd_identifier] = STATE(2907), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4859), + [sym_decl_export] = STATE(4859), + [sym_decl_extern] = STATE(4859), + [sym_decl_module] = STATE(4859), + [sym_decl_use] = STATE(4859), + [sym__ctrl_statement] = STATE(4864), + [sym__ctrl_expression_parenthesized] = STATE(3454), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if_parenthesized] = STATE(3458), + [sym_ctrl_match] = STATE(3458), + [sym_ctrl_try_parenthesized] = STATE(3458), + [sym__stmt_let_shortcut] = STATE(3471), + [sym_pipe_element_parenthesized] = STATE(3176), + [sym_where_command_parenthesized] = STATE(3454), + [sym__expression_parenthesized] = STATE(2289), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2156), + [sym_expr_parenthesized] = STATE(739), + [sym__parenthesized_body] = STATE(5460), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(446), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(4794), + [sym__command_parenthesized] = STATE(3494), + [sym_comment] = STATE(67), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), + [aux_sym__parenthesized_body_repeat2] = STATE(90), + [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), @@ -47279,10 +48357,11 @@ 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_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -47296,19 +48375,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(433), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(427), [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), @@ -47321,84 +48400,84 @@ 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(65)] = { - [sym__block_body_statement] = STATE(4201), - [sym__declaration] = STATE(4295), - [sym_decl_alias] = STATE(4296), - [sym_stmt_let] = STATE(4297), - [sym_stmt_mut] = STATE(4297), - [sym_stmt_const] = STATE(4297), - [sym_assignment] = STATE(4297), - [sym__mutable_assignment_pattern] = STATE(4298), - [sym__statement] = STATE(4295), - [sym_pipeline] = STATE(4297), - [sym__block_body] = STATE(5160), - [sym_cmd_identifier] = STATE(2812), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4296), - [sym_decl_export] = STATE(4296), - [sym_decl_extern] = STATE(4296), - [sym_decl_module] = STATE(4296), - [sym_decl_use] = STATE(4296), - [sym__ctrl_statement] = STATE(4297), - [sym__ctrl_expression] = STATE(3348), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if] = STATE(3352), - [sym_ctrl_match] = STATE(3352), - [sym_ctrl_try] = STATE(3352), - [sym__stmt_let_shortcut] = STATE(3358), - [sym_pipe_element] = STATE(2956), - [sym_where_command] = STATE(3348), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(704), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(133), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3348), - [sym_comment] = STATE(65), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(80), - [aux_sym__block_body_repeat2] = STATE(87), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [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(68)] = { + [sym__block_body_statement_parenthesized] = STATE(4126), + [sym__declaration_parenthesized] = STATE(4800), + [sym_decl_alias_parenthesized] = STATE(4859), + [sym_stmt_let_parenthesized] = STATE(4864), + [sym_stmt_mut_parenthesized] = STATE(4864), + [sym_stmt_const_parenthesized] = STATE(4864), + [sym_assignment_parenthesized] = STATE(4864), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4865), + [sym__statement_parenthesized] = STATE(4800), + [sym_pipeline_parenthesized] = STATE(4864), + [sym_cmd_identifier] = STATE(2907), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4859), + [sym_decl_export] = STATE(4859), + [sym_decl_extern] = STATE(4859), + [sym_decl_module] = STATE(4859), + [sym_decl_use] = STATE(4859), + [sym__ctrl_statement] = STATE(4864), + [sym__ctrl_expression_parenthesized] = STATE(3454), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if_parenthesized] = STATE(3458), + [sym_ctrl_match] = STATE(3458), + [sym_ctrl_try_parenthesized] = STATE(3458), + [sym__stmt_let_shortcut] = STATE(3471), + [sym_pipe_element_parenthesized] = STATE(3176), + [sym_where_command_parenthesized] = STATE(3454), + [sym__expression_parenthesized] = STATE(2289), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2156), + [sym_expr_parenthesized] = STATE(739), + [sym__parenthesized_body] = STATE(5084), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(446), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(4794), + [sym__command_parenthesized] = STATE(3494), + [sym_comment] = STATE(68), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), + [aux_sym__parenthesized_body_repeat2] = STATE(90), + [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), @@ -47408,10 +48487,11 @@ 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_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -47425,19 +48505,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(435), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(429), [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), @@ -47450,79 +48530,79 @@ 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(66)] = { - [sym__block_body_statement_parenthesized] = STATE(3898), - [sym__declaration_parenthesized] = STATE(4594), - [sym_decl_alias_parenthesized] = STATE(4614), - [sym_stmt_let_parenthesized] = STATE(4748), - [sym_stmt_mut_parenthesized] = STATE(4748), - [sym_stmt_const_parenthesized] = STATE(4748), - [sym_assignment_parenthesized] = STATE(4748), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), - [sym__statement_parenthesized] = STATE(4594), - [sym_pipeline_parenthesized] = STATE(4748), - [sym_cmd_identifier] = STATE(3009), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4614), - [sym_decl_export] = STATE(4614), - [sym_decl_extern] = STATE(4614), - [sym_decl_module] = STATE(4614), - [sym_decl_use] = STATE(4614), - [sym__ctrl_statement] = STATE(4748), - [sym__ctrl_expression_parenthesized] = STATE(3436), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if_parenthesized] = STATE(3367), - [sym_ctrl_match] = STATE(3367), - [sym_ctrl_try_parenthesized] = STATE(3367), - [sym__stmt_let_shortcut] = STATE(3368), - [sym_pipe_element_parenthesized] = STATE(3116), - [sym_where_command_parenthesized] = STATE(3436), - [sym__expression_parenthesized] = STATE(2290), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2157), - [sym_expr_parenthesized] = STATE(777), - [sym__parenthesized_body] = STATE(5162), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(124), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4730), - [sym__command_parenthesized] = STATE(3373), - [sym_comment] = STATE(66), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), - [aux_sym__block_body_repeat1] = STATE(74), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), - [aux_sym__parenthesized_body_repeat2] = STATE(85), + [STATE(69)] = { + [sym__block_body_statement_parenthesized] = STATE(4126), + [sym__declaration_parenthesized] = STATE(4800), + [sym_decl_alias_parenthesized] = STATE(4859), + [sym_stmt_let_parenthesized] = STATE(4864), + [sym_stmt_mut_parenthesized] = STATE(4864), + [sym_stmt_const_parenthesized] = STATE(4864), + [sym_assignment_parenthesized] = STATE(4864), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4865), + [sym__statement_parenthesized] = STATE(4800), + [sym_pipeline_parenthesized] = STATE(4864), + [sym_cmd_identifier] = STATE(2907), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4859), + [sym_decl_export] = STATE(4859), + [sym_decl_extern] = STATE(4859), + [sym_decl_module] = STATE(4859), + [sym_decl_use] = STATE(4859), + [sym__ctrl_statement] = STATE(4864), + [sym__ctrl_expression_parenthesized] = STATE(3454), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if_parenthesized] = STATE(3458), + [sym_ctrl_match] = STATE(3458), + [sym_ctrl_try_parenthesized] = STATE(3458), + [sym__stmt_let_shortcut] = STATE(3471), + [sym_pipe_element_parenthesized] = STATE(3176), + [sym_where_command_parenthesized] = STATE(3454), + [sym__expression_parenthesized] = STATE(2289), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2156), + [sym_expr_parenthesized] = STATE(739), + [sym__parenthesized_body] = STATE(5100), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(446), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(4794), + [sym__command_parenthesized] = STATE(3494), + [sym_comment] = STATE(69), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), + [aux_sym__parenthesized_body_repeat2] = STATE(90), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -47541,6 +48621,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -47554,7 +48635,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(431), + [anon_sym_RPAREN] = ACTIONS(437), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -47583,80 +48664,80 @@ 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] = STATE(4201), - [sym__declaration] = STATE(4295), - [sym_decl_alias] = STATE(4296), - [sym_stmt_let] = STATE(4297), - [sym_stmt_mut] = STATE(4297), - [sym_stmt_const] = STATE(4297), - [sym_assignment] = STATE(4297), - [sym__mutable_assignment_pattern] = STATE(4298), - [sym__statement] = STATE(4295), - [sym_pipeline] = STATE(4297), - [sym__block_body] = STATE(5166), - [sym_cmd_identifier] = STATE(2812), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4296), - [sym_decl_export] = STATE(4296), - [sym_decl_extern] = STATE(4296), - [sym_decl_module] = STATE(4296), - [sym_decl_use] = STATE(4296), - [sym__ctrl_statement] = STATE(4297), - [sym__ctrl_expression] = STATE(3348), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if] = STATE(3352), - [sym_ctrl_match] = STATE(3352), - [sym_ctrl_try] = STATE(3352), - [sym__stmt_let_shortcut] = STATE(3358), - [sym_pipe_element] = STATE(2956), - [sym_where_command] = STATE(3348), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(704), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(133), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3348), - [sym_comment] = STATE(67), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(80), - [aux_sym__block_body_repeat2] = STATE(87), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [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(70)] = { + [sym__block_body_statement_parenthesized] = STATE(4126), + [sym__declaration_parenthesized] = STATE(4800), + [sym_decl_alias_parenthesized] = STATE(4859), + [sym_stmt_let_parenthesized] = STATE(4864), + [sym_stmt_mut_parenthesized] = STATE(4864), + [sym_stmt_const_parenthesized] = STATE(4864), + [sym_assignment_parenthesized] = STATE(4864), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4865), + [sym__statement_parenthesized] = STATE(4800), + [sym_pipeline_parenthesized] = STATE(4864), + [sym_cmd_identifier] = STATE(2907), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4859), + [sym_decl_export] = STATE(4859), + [sym_decl_extern] = STATE(4859), + [sym_decl_module] = STATE(4859), + [sym_decl_use] = STATE(4859), + [sym__ctrl_statement] = STATE(4864), + [sym__ctrl_expression_parenthesized] = STATE(3454), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if_parenthesized] = STATE(3458), + [sym_ctrl_match] = STATE(3458), + [sym_ctrl_try_parenthesized] = STATE(3458), + [sym__stmt_let_shortcut] = STATE(3471), + [sym_pipe_element_parenthesized] = STATE(3176), + [sym_where_command_parenthesized] = STATE(3454), + [sym__expression_parenthesized] = STATE(2289), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2156), + [sym_expr_parenthesized] = STATE(739), + [sym__parenthesized_body] = STATE(5115), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(446), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(4794), + [sym__command_parenthesized] = STATE(3494), + [sym_comment] = STATE(70), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), + [aux_sym__parenthesized_body_repeat2] = STATE(90), + [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), @@ -47666,10 +48747,11 @@ 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_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -47683,19 +48765,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(433), [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), @@ -47708,79 +48790,79 @@ 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(68)] = { - [sym__block_body_statement_parenthesized] = STATE(3898), - [sym__declaration_parenthesized] = STATE(4594), - [sym_decl_alias_parenthesized] = STATE(4614), - [sym_stmt_let_parenthesized] = STATE(4748), - [sym_stmt_mut_parenthesized] = STATE(4748), - [sym_stmt_const_parenthesized] = STATE(4748), - [sym_assignment_parenthesized] = STATE(4748), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), - [sym__statement_parenthesized] = STATE(4594), - [sym_pipeline_parenthesized] = STATE(4748), - [sym_cmd_identifier] = STATE(3009), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4614), - [sym_decl_export] = STATE(4614), - [sym_decl_extern] = STATE(4614), - [sym_decl_module] = STATE(4614), - [sym_decl_use] = STATE(4614), - [sym__ctrl_statement] = STATE(4748), - [sym__ctrl_expression_parenthesized] = STATE(3436), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if_parenthesized] = STATE(3367), - [sym_ctrl_match] = STATE(3367), - [sym_ctrl_try_parenthesized] = STATE(3367), - [sym__stmt_let_shortcut] = STATE(3368), - [sym_pipe_element_parenthesized] = STATE(3116), - [sym_where_command_parenthesized] = STATE(3436), - [sym__expression_parenthesized] = STATE(2290), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2157), - [sym_expr_parenthesized] = STATE(777), - [sym__parenthesized_body] = STATE(5327), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(124), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4730), - [sym__command_parenthesized] = STATE(3373), - [sym_comment] = STATE(68), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), - [aux_sym__block_body_repeat1] = STATE(74), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), - [aux_sym__parenthesized_body_repeat2] = STATE(85), + [STATE(71)] = { + [sym__block_body_statement_parenthesized] = STATE(4126), + [sym__declaration_parenthesized] = STATE(4800), + [sym_decl_alias_parenthesized] = STATE(4859), + [sym_stmt_let_parenthesized] = STATE(4864), + [sym_stmt_mut_parenthesized] = STATE(4864), + [sym_stmt_const_parenthesized] = STATE(4864), + [sym_assignment_parenthesized] = STATE(4864), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4865), + [sym__statement_parenthesized] = STATE(4800), + [sym_pipeline_parenthesized] = STATE(4864), + [sym_cmd_identifier] = STATE(2907), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4859), + [sym_decl_export] = STATE(4859), + [sym_decl_extern] = STATE(4859), + [sym_decl_module] = STATE(4859), + [sym_decl_use] = STATE(4859), + [sym__ctrl_statement] = STATE(4864), + [sym__ctrl_expression_parenthesized] = STATE(3454), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if_parenthesized] = STATE(3458), + [sym_ctrl_match] = STATE(3458), + [sym_ctrl_try_parenthesized] = STATE(3458), + [sym__stmt_let_shortcut] = STATE(3471), + [sym_pipe_element_parenthesized] = STATE(3176), + [sym_where_command_parenthesized] = STATE(3454), + [sym__expression_parenthesized] = STATE(2289), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2156), + [sym_expr_parenthesized] = STATE(739), + [sym__parenthesized_body] = STATE(5228), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(446), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(4794), + [sym__command_parenthesized] = STATE(3494), + [sym_comment] = STATE(71), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), + [aux_sym__parenthesized_body_repeat2] = STATE(90), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -47799,6 +48881,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -47812,7 +48895,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(441), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -47841,75 +48924,75 @@ 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_parenthesized] = STATE(3898), - [sym__declaration_parenthesized] = STATE(4594), - [sym_decl_alias_parenthesized] = STATE(4614), - [sym_stmt_let_parenthesized] = STATE(4748), - [sym_stmt_mut_parenthesized] = STATE(4748), - [sym_stmt_const_parenthesized] = STATE(4748), - [sym_assignment_parenthesized] = STATE(4748), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), - [sym__statement_parenthesized] = STATE(4594), - [sym_pipeline_parenthesized] = STATE(4748), - [sym_cmd_identifier] = STATE(3009), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4614), - [sym_decl_export] = STATE(4614), - [sym_decl_extern] = STATE(4614), - [sym_decl_module] = STATE(4614), - [sym_decl_use] = STATE(4614), - [sym__ctrl_statement] = STATE(4748), - [sym__ctrl_expression_parenthesized] = STATE(3436), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if_parenthesized] = STATE(3367), - [sym_ctrl_match] = STATE(3367), - [sym_ctrl_try_parenthesized] = STATE(3367), - [sym__stmt_let_shortcut] = STATE(3368), - [sym_pipe_element_parenthesized] = STATE(3116), - [sym_where_command_parenthesized] = STATE(3436), - [sym__expression_parenthesized] = STATE(2290), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2157), - [sym_expr_parenthesized] = STATE(777), - [sym__parenthesized_body] = STATE(4952), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(124), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4730), - [sym__command_parenthesized] = STATE(3373), - [sym_comment] = STATE(69), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), - [aux_sym__block_body_repeat1] = STATE(74), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), - [aux_sym__parenthesized_body_repeat2] = STATE(85), + [STATE(72)] = { + [sym__block_body_statement_parenthesized] = STATE(4126), + [sym__declaration_parenthesized] = STATE(4800), + [sym_decl_alias_parenthesized] = STATE(4859), + [sym_stmt_let_parenthesized] = STATE(4864), + [sym_stmt_mut_parenthesized] = STATE(4864), + [sym_stmt_const_parenthesized] = STATE(4864), + [sym_assignment_parenthesized] = STATE(4864), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4865), + [sym__statement_parenthesized] = STATE(4800), + [sym_pipeline_parenthesized] = STATE(4864), + [sym_cmd_identifier] = STATE(2907), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4859), + [sym_decl_export] = STATE(4859), + [sym_decl_extern] = STATE(4859), + [sym_decl_module] = STATE(4859), + [sym_decl_use] = STATE(4859), + [sym__ctrl_statement] = STATE(4864), + [sym__ctrl_expression_parenthesized] = STATE(3454), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if_parenthesized] = STATE(3458), + [sym_ctrl_match] = STATE(3458), + [sym_ctrl_try_parenthesized] = STATE(3458), + [sym__stmt_let_shortcut] = STATE(3471), + [sym_pipe_element_parenthesized] = STATE(3176), + [sym_where_command_parenthesized] = STATE(3454), + [sym__expression_parenthesized] = STATE(2289), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2156), + [sym_expr_parenthesized] = STATE(739), + [sym__parenthesized_body] = STATE(5217), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(446), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(4794), + [sym__command_parenthesized] = STATE(3494), + [sym_comment] = STATE(72), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), + [aux_sym__parenthesized_body_repeat2] = STATE(90), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -47928,6 +49011,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -47941,7 +49025,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(437), + [anon_sym_RPAREN] = ACTIONS(443), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -47970,80 +49054,80 @@ 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(3898), - [sym__declaration_parenthesized] = STATE(4594), - [sym_decl_alias_parenthesized] = STATE(4614), - [sym_stmt_let_parenthesized] = STATE(4748), - [sym_stmt_mut_parenthesized] = STATE(4748), - [sym_stmt_const_parenthesized] = STATE(4748), - [sym_assignment_parenthesized] = STATE(4748), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), - [sym__statement_parenthesized] = STATE(4594), - [sym_pipeline_parenthesized] = STATE(4748), - [sym_cmd_identifier] = STATE(3009), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4614), - [sym_decl_export] = STATE(4614), - [sym_decl_extern] = STATE(4614), - [sym_decl_module] = STATE(4614), - [sym_decl_use] = STATE(4614), - [sym__ctrl_statement] = STATE(4748), - [sym__ctrl_expression_parenthesized] = STATE(3436), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if_parenthesized] = STATE(3367), - [sym_ctrl_match] = STATE(3367), - [sym_ctrl_try_parenthesized] = STATE(3367), - [sym__stmt_let_shortcut] = STATE(3368), - [sym_pipe_element_parenthesized] = STATE(3116), - [sym_where_command_parenthesized] = STATE(3436), - [sym__expression_parenthesized] = STATE(2290), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2157), - [sym_expr_parenthesized] = STATE(777), - [sym__parenthesized_body] = STATE(4967), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(124), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4730), - [sym__command_parenthesized] = STATE(3373), - [sym_comment] = STATE(70), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), - [aux_sym__block_body_repeat1] = STATE(74), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), - [aux_sym__parenthesized_body_repeat2] = STATE(85), - [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(73)] = { + [sym__block_body_statement] = STATE(4191), + [sym__declaration] = STATE(4507), + [sym_decl_alias] = STATE(4336), + [sym_stmt_let] = STATE(4338), + [sym_stmt_mut] = STATE(4338), + [sym_stmt_const] = STATE(4338), + [sym_assignment] = STATE(4338), + [sym__mutable_assignment_pattern] = STATE(4342), + [sym__statement] = STATE(4507), + [sym_pipeline] = STATE(4338), + [sym__block_body] = STATE(5290), + [sym_cmd_identifier] = STATE(2730), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4336), + [sym_decl_export] = STATE(4336), + [sym_decl_extern] = STATE(4336), + [sym_decl_module] = STATE(4336), + [sym_decl_use] = STATE(4336), + [sym__ctrl_statement] = STATE(4338), + [sym__ctrl_expression] = STATE(3368), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if] = STATE(3392), + [sym_ctrl_match] = STATE(3392), + [sym_ctrl_try] = STATE(3392), + [sym__stmt_let_shortcut] = STATE(3393), + [sym_pipe_element] = STATE(2909), + [sym_where_command] = STATE(3368), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(724), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(451), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3368), + [sym_comment] = STATE(73), + [aux_sym_pipeline_repeat1] = STATE(176), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_repeat2] = STATE(281), + [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), @@ -48053,10 +49137,11 @@ 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_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -48070,19 +49155,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(445), [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), @@ -48095,84 +49180,212 @@ 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_parenthesized] = STATE(3898), - [sym__declaration_parenthesized] = STATE(4594), - [sym_decl_alias_parenthesized] = STATE(4614), - [sym_stmt_let_parenthesized] = STATE(4748), - [sym_stmt_mut_parenthesized] = STATE(4748), - [sym_stmt_const_parenthesized] = STATE(4748), - [sym_assignment_parenthesized] = STATE(4748), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), - [sym__statement_parenthesized] = STATE(4594), - [sym_pipeline_parenthesized] = STATE(4748), - [sym_cmd_identifier] = STATE(3009), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4614), - [sym_decl_export] = STATE(4614), - [sym_decl_extern] = STATE(4614), - [sym_decl_module] = STATE(4614), - [sym_decl_use] = STATE(4614), - [sym__ctrl_statement] = STATE(4748), - [sym__ctrl_expression_parenthesized] = STATE(3436), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if_parenthesized] = STATE(3367), - [sym_ctrl_match] = STATE(3367), - [sym_ctrl_try_parenthesized] = STATE(3367), - [sym__stmt_let_shortcut] = STATE(3368), - [sym_pipe_element_parenthesized] = STATE(3116), - [sym_where_command_parenthesized] = STATE(3436), - [sym__expression_parenthesized] = STATE(2290), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2157), - [sym_expr_parenthesized] = STATE(777), - [sym__parenthesized_body] = STATE(4982), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(124), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4730), - [sym__command_parenthesized] = STATE(3373), - [sym_comment] = STATE(71), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), - [aux_sym__block_body_repeat1] = STATE(74), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), - [aux_sym__parenthesized_body_repeat2] = STATE(85), - [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(74)] = { + [sym__block_body_statement] = STATE(4466), + [sym__declaration] = STATE(4832), + [sym_decl_alias] = STATE(4872), + [sym_stmt_let] = STATE(4884), + [sym_stmt_mut] = STATE(4884), + [sym_stmt_const] = STATE(4884), + [sym_assignment] = STATE(4884), + [sym__mutable_assignment_pattern] = STATE(4708), + [sym__statement] = STATE(4832), + [sym_pipeline] = STATE(4884), + [sym_cmd_identifier] = STATE(2951), + [sym_attribute_list] = STATE(4691), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4872), + [sym_decl_export] = STATE(4872), + [sym_decl_extern] = STATE(4872), + [sym_decl_module] = STATE(4872), + [sym_decl_use] = STATE(4872), + [sym__ctrl_statement] = STATE(4884), + [sym__ctrl_expression] = STATE(3512), + [sym_ctrl_for] = STATE(4718), + [sym_ctrl_loop] = STATE(4718), + [sym_ctrl_while] = STATE(4718), + [sym_ctrl_if] = STATE(3519), + [sym_ctrl_match] = STATE(3519), + [sym_ctrl_try] = STATE(3519), + [sym__stmt_let_shortcut] = STATE(3521), + [sym_pipe_element] = STATE(3125), + [sym_where_command] = STATE(3512), + [sym__expression] = STATE(2294), + [sym_expr_unary] = STATE(1292), + [sym__expr_unary_minus] = STATE(1296), + [sym_expr_binary] = STATE(1292), + [sym__expr_binary_expression] = STATE(2248), + [sym_expr_parenthesized] = STATE(964), + [sym_val_range] = STATE(1292), + [sym__value] = STATE(1292), + [sym_val_nothing] = STATE(1316), + [sym_val_bool] = STATE(1316), + [sym_val_variable] = STATE(444), + [sym_val_cellpath] = STATE(1316), + [sym_val_number] = STATE(1316), + [sym__val_number_decimal] = STATE(132), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1316), + [sym_val_filesize] = STATE(1316), + [sym_val_binary] = STATE(1316), + [sym_val_string] = STATE(1316), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1316), + [sym__inter_single_quotes] = STATE(1277), + [sym__inter_double_quotes] = STATE(1311), + [sym_val_list] = STATE(1316), + [sym_val_record] = STATE(1316), + [sym_val_table] = STATE(1316), + [sym_val_closure] = STATE(1316), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3512), + [sym_comment] = STATE(74), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(1374), + [aux_sym__block_body_repeat2] = STATE(84), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_repeat2] = STATE(284), + [ts_builtin_sym_end] = ACTIONS(447), + [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_finally] = 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(75)] = { + [sym__block_body_statement] = STATE(4301), + [sym__declaration] = STATE(4507), + [sym_decl_alias] = STATE(4336), + [sym_stmt_let] = STATE(4338), + [sym_stmt_mut] = STATE(4338), + [sym_stmt_const] = STATE(4338), + [sym_assignment] = STATE(4338), + [sym__mutable_assignment_pattern] = STATE(4342), + [sym__statement] = STATE(4507), + [sym_pipeline] = STATE(4338), + [sym_cmd_identifier] = STATE(2730), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4336), + [sym_decl_export] = STATE(4336), + [sym_decl_extern] = STATE(4336), + [sym_decl_module] = STATE(4336), + [sym_decl_use] = STATE(4336), + [sym__ctrl_statement] = STATE(4338), + [sym__ctrl_expression] = STATE(3368), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if] = STATE(3392), + [sym_ctrl_match] = STATE(3392), + [sym_ctrl_try] = STATE(3392), + [sym__stmt_let_shortcut] = STATE(3393), + [sym_pipe_element] = STATE(2909), + [sym_where_command] = STATE(3368), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(724), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(438), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3368), + [sym_comment] = STATE(75), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(1355), + [aux_sym__block_body_repeat2] = STATE(86), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_repeat2] = STATE(267), + [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), @@ -48182,10 +49395,11 @@ 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_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -48199,12 +49413,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(441), + [anon_sym_RPAREN] = ACTIONS(447), [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), @@ -48224,84 +49438,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(72)] = { - [sym__block_body_statement_parenthesized] = STATE(3898), - [sym__declaration_parenthesized] = STATE(4594), - [sym_decl_alias_parenthesized] = STATE(4614), - [sym_stmt_let_parenthesized] = STATE(4748), - [sym_stmt_mut_parenthesized] = STATE(4748), - [sym_stmt_const_parenthesized] = STATE(4748), - [sym_assignment_parenthesized] = STATE(4748), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), - [sym__statement_parenthesized] = STATE(4594), - [sym_pipeline_parenthesized] = STATE(4748), - [sym_cmd_identifier] = STATE(3009), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4614), - [sym_decl_export] = STATE(4614), - [sym_decl_extern] = STATE(4614), - [sym_decl_module] = STATE(4614), - [sym_decl_use] = STATE(4614), - [sym__ctrl_statement] = STATE(4748), - [sym__ctrl_expression_parenthesized] = STATE(3436), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if_parenthesized] = STATE(3367), - [sym_ctrl_match] = STATE(3367), - [sym_ctrl_try_parenthesized] = STATE(3367), - [sym__stmt_let_shortcut] = STATE(3368), - [sym_pipe_element_parenthesized] = STATE(3116), - [sym_where_command_parenthesized] = STATE(3436), - [sym__expression_parenthesized] = STATE(2290), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2157), - [sym_expr_parenthesized] = STATE(777), - [sym__parenthesized_body] = STATE(5085), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(124), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4730), - [sym__command_parenthesized] = STATE(3373), - [sym_comment] = STATE(72), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), - [aux_sym__block_body_repeat1] = STATE(74), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), - [aux_sym__parenthesized_body_repeat2] = STATE(85), - [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(76)] = { + [sym__block_body_statement] = STATE(4301), + [sym__declaration] = STATE(4507), + [sym_decl_alias] = STATE(4336), + [sym_stmt_let] = STATE(4338), + [sym_stmt_mut] = STATE(4338), + [sym_stmt_const] = STATE(4338), + [sym_assignment] = STATE(4338), + [sym__mutable_assignment_pattern] = STATE(4342), + [sym__statement] = STATE(4507), + [sym_pipeline] = STATE(4338), + [sym_cmd_identifier] = STATE(2730), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4336), + [sym_decl_export] = STATE(4336), + [sym_decl_extern] = STATE(4336), + [sym_decl_module] = STATE(4336), + [sym_decl_use] = STATE(4336), + [sym__ctrl_statement] = STATE(4338), + [sym__ctrl_expression] = STATE(3368), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if] = STATE(3392), + [sym_ctrl_match] = STATE(3392), + [sym_ctrl_try] = STATE(3392), + [sym__stmt_let_shortcut] = STATE(3393), + [sym_pipe_element] = STATE(2909), + [sym_where_command] = STATE(3368), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(724), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(451), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3368), + [sym_comment] = STATE(76), + [aux_sym_pipeline_repeat1] = STATE(176), + [aux_sym__block_body_repeat1] = STATE(1355), + [aux_sym__block_body_repeat2] = STATE(82), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_repeat2] = STATE(281), + [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), @@ -48311,10 +49524,11 @@ 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_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -48328,19 +49542,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(443), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_RBRACE] = ACTIONS(447), [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), @@ -48353,79 +49567,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(73)] = { - [sym__block_body_statement_parenthesized] = STATE(3898), - [sym__declaration_parenthesized] = STATE(4594), - [sym_decl_alias_parenthesized] = STATE(4614), - [sym_stmt_let_parenthesized] = STATE(4748), - [sym_stmt_mut_parenthesized] = STATE(4748), - [sym_stmt_const_parenthesized] = STATE(4748), - [sym_assignment_parenthesized] = STATE(4748), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), - [sym__statement_parenthesized] = STATE(4594), - [sym_pipeline_parenthesized] = STATE(4748), - [sym_cmd_identifier] = STATE(3009), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4614), - [sym_decl_export] = STATE(4614), - [sym_decl_extern] = STATE(4614), - [sym_decl_module] = STATE(4614), - [sym_decl_use] = STATE(4614), - [sym__ctrl_statement] = STATE(4748), - [sym__ctrl_expression_parenthesized] = STATE(3436), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if_parenthesized] = STATE(3367), - [sym_ctrl_match] = STATE(3367), - [sym_ctrl_try_parenthesized] = STATE(3367), - [sym__stmt_let_shortcut] = STATE(3368), - [sym_pipe_element_parenthesized] = STATE(3116), - [sym_where_command_parenthesized] = STATE(3436), - [sym__expression_parenthesized] = STATE(2290), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2157), - [sym_expr_parenthesized] = STATE(777), - [sym__parenthesized_body] = STATE(4996), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(124), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4730), - [sym__command_parenthesized] = STATE(3373), - [sym_comment] = STATE(73), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), - [aux_sym__block_body_repeat1] = STATE(74), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), - [aux_sym__parenthesized_body_repeat2] = STATE(85), + [STATE(77)] = { + [sym__block_body_statement_parenthesized] = STATE(4175), + [sym__declaration_parenthesized] = STATE(4800), + [sym_decl_alias_parenthesized] = STATE(4859), + [sym_stmt_let_parenthesized] = STATE(4864), + [sym_stmt_mut_parenthesized] = STATE(4864), + [sym_stmt_const_parenthesized] = STATE(4864), + [sym_assignment_parenthesized] = STATE(4864), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4865), + [sym__statement_parenthesized] = STATE(4800), + [sym_pipeline_parenthesized] = STATE(4864), + [sym_cmd_identifier] = STATE(2907), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4859), + [sym_decl_export] = STATE(4859), + [sym_decl_extern] = STATE(4859), + [sym_decl_module] = STATE(4859), + [sym_decl_use] = STATE(4859), + [sym__ctrl_statement] = STATE(4864), + [sym__ctrl_expression_parenthesized] = STATE(3454), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if_parenthesized] = STATE(3458), + [sym_ctrl_match] = STATE(3458), + [sym_ctrl_try_parenthesized] = STATE(3458), + [sym__stmt_let_shortcut] = STATE(3471), + [sym_pipe_element_parenthesized] = STATE(3176), + [sym_where_command_parenthesized] = STATE(3454), + [sym__expression_parenthesized] = STATE(2289), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2156), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(446), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(4794), + [sym__command_parenthesized] = STATE(3494), + [sym_comment] = STATE(77), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(1355), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), + [aux_sym__parenthesized_body_repeat2] = STATE(89), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -48444,6 +49657,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -48457,7 +49671,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(445), + [anon_sym_RPAREN] = ACTIONS(461), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -48486,74 +49700,75 @@ 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_parenthesized] = STATE(4018), - [sym__declaration_parenthesized] = STATE(4594), - [sym_decl_alias_parenthesized] = STATE(4614), - [sym_stmt_let_parenthesized] = STATE(4748), - [sym_stmt_mut_parenthesized] = STATE(4748), - [sym_stmt_const_parenthesized] = STATE(4748), - [sym_assignment_parenthesized] = STATE(4748), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), - [sym__statement_parenthesized] = STATE(4594), - [sym_pipeline_parenthesized] = STATE(4748), - [sym_cmd_identifier] = STATE(3009), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4614), - [sym_decl_export] = STATE(4614), - [sym_decl_extern] = STATE(4614), - [sym_decl_module] = STATE(4614), - [sym_decl_use] = STATE(4614), - [sym__ctrl_statement] = STATE(4748), - [sym__ctrl_expression_parenthesized] = STATE(3436), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if_parenthesized] = STATE(3367), - [sym_ctrl_match] = STATE(3367), - [sym_ctrl_try_parenthesized] = STATE(3367), - [sym__stmt_let_shortcut] = STATE(3368), - [sym_pipe_element_parenthesized] = STATE(3116), - [sym_where_command_parenthesized] = STATE(3436), - [sym__expression_parenthesized] = STATE(2290), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2157), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(124), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4730), - [sym__command_parenthesized] = STATE(3373), - [sym_comment] = STATE(74), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), - [aux_sym__block_body_repeat1] = STATE(1357), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), - [aux_sym__parenthesized_body_repeat2] = STATE(82), + [STATE(78)] = { + [sym__block_body_statement_parenthesized] = STATE(4126), + [sym__declaration_parenthesized] = STATE(4800), + [sym_decl_alias_parenthesized] = STATE(4859), + [sym_stmt_let_parenthesized] = STATE(4864), + [sym_stmt_mut_parenthesized] = STATE(4864), + [sym_stmt_const_parenthesized] = STATE(4864), + [sym_assignment_parenthesized] = STATE(4864), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4865), + [sym__statement_parenthesized] = STATE(4800), + [sym_pipeline_parenthesized] = STATE(4864), + [sym_cmd_identifier] = STATE(2907), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4859), + [sym_decl_export] = STATE(4859), + [sym_decl_extern] = STATE(4859), + [sym_decl_module] = STATE(4859), + [sym_decl_use] = STATE(4859), + [sym__ctrl_statement] = STATE(4864), + [sym__ctrl_expression_parenthesized] = STATE(3454), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if_parenthesized] = STATE(3458), + [sym_ctrl_match] = STATE(3458), + [sym_ctrl_try_parenthesized] = STATE(3458), + [sym__stmt_let_shortcut] = STATE(3471), + [sym_pipe_element_parenthesized] = STATE(3176), + [sym_where_command_parenthesized] = STATE(3454), + [sym__expression_parenthesized] = STATE(2289), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2156), + [sym_expr_parenthesized] = STATE(739), + [sym__parenthesized_body] = STATE(5292), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(446), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(4794), + [sym__command_parenthesized] = STATE(3494), + [sym_comment] = STATE(78), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), + [aux_sym__parenthesized_body_repeat2] = STATE(90), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -48572,6 +49787,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -48585,7 +49801,6 @@ 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), @@ -48614,79 +49829,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(75)] = { - [sym__block_body_statement] = STATE(4091), - [sym__declaration] = STATE(4295), - [sym_decl_alias] = STATE(4296), - [sym_stmt_let] = STATE(4297), - [sym_stmt_mut] = STATE(4297), - [sym_stmt_const] = STATE(4297), - [sym_assignment] = STATE(4297), - [sym__mutable_assignment_pattern] = STATE(4298), - [sym__statement] = STATE(4295), - [sym_pipeline] = STATE(4297), - [sym_cmd_identifier] = STATE(2812), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4296), - [sym_decl_export] = STATE(4296), - [sym_decl_extern] = STATE(4296), - [sym_decl_module] = STATE(4296), - [sym_decl_use] = STATE(4296), - [sym__ctrl_statement] = STATE(4297), - [sym__ctrl_expression] = STATE(3348), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if] = STATE(3352), - [sym_ctrl_match] = STATE(3352), - [sym_ctrl_try] = STATE(3352), - [sym__stmt_let_shortcut] = STATE(3358), - [sym_pipe_element] = STATE(2956), - [sym_where_command] = STATE(3348), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(704), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(454), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(124), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3348), - [sym_comment] = STATE(75), - [aux_sym_pipeline_repeat1] = STATE(182), - [aux_sym__block_body_repeat1] = STATE(1357), - [aux_sym__block_body_repeat2] = STATE(90), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym_pipe_element_repeat2] = STATE(278), - [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), + [STATE(79)] = { + [sym__block_body_statement_parenthesized] = STATE(4126), + [sym__declaration_parenthesized] = STATE(4800), + [sym_decl_alias_parenthesized] = STATE(4859), + [sym_stmt_let_parenthesized] = STATE(4864), + [sym_stmt_mut_parenthesized] = STATE(4864), + [sym_stmt_const_parenthesized] = STATE(4864), + [sym_assignment_parenthesized] = STATE(4864), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4865), + [sym__statement_parenthesized] = STATE(4800), + [sym_pipeline_parenthesized] = STATE(4864), + [sym_cmd_identifier] = STATE(2907), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4859), + [sym_decl_export] = STATE(4859), + [sym_decl_extern] = STATE(4859), + [sym_decl_module] = STATE(4859), + [sym_decl_use] = STATE(4859), + [sym__ctrl_statement] = STATE(4864), + [sym__ctrl_expression_parenthesized] = STATE(3454), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if_parenthesized] = STATE(3458), + [sym_ctrl_match] = STATE(3458), + [sym_ctrl_try_parenthesized] = STATE(3458), + [sym__stmt_let_shortcut] = STATE(3471), + [sym_pipe_element_parenthesized] = STATE(3176), + [sym_where_command_parenthesized] = STATE(3454), + [sym__expression_parenthesized] = STATE(2289), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2156), + [sym_expr_parenthesized] = STATE(739), + [sym__parenthesized_body] = STATE(5316), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(446), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(4794), + [sym__command_parenthesized] = STATE(3494), + [sym_comment] = STATE(79), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), + [aux_sym__parenthesized_body_repeat2] = STATE(90), + [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), @@ -48696,10 +49912,11 @@ 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(459), + [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_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -48713,12 +49930,11 @@ 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(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), @@ -48738,79 +49954,79 @@ 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(4201), - [sym__declaration] = STATE(4295), - [sym_decl_alias] = STATE(4296), - [sym_stmt_let] = STATE(4297), - [sym_stmt_mut] = STATE(4297), - [sym_stmt_const] = STATE(4297), - [sym_assignment] = STATE(4297), - [sym__mutable_assignment_pattern] = STATE(4298), - [sym__statement] = STATE(4295), - [sym_pipeline] = STATE(4297), - [sym__block_body] = STATE(5038), - [sym_cmd_identifier] = STATE(2812), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4296), - [sym_decl_export] = STATE(4296), - [sym_decl_extern] = STATE(4296), - [sym_decl_module] = STATE(4296), - [sym_decl_use] = STATE(4296), - [sym__ctrl_statement] = STATE(4297), - [sym__ctrl_expression] = STATE(3348), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if] = STATE(3352), - [sym_ctrl_match] = STATE(3352), - [sym_ctrl_try] = STATE(3352), - [sym__stmt_let_shortcut] = STATE(3358), - [sym_pipe_element] = STATE(2956), - [sym_where_command] = STATE(3348), + [STATE(80)] = { + [sym__block_body_statement] = STATE(4191), + [sym__declaration] = STATE(4507), + [sym_decl_alias] = STATE(4336), + [sym_stmt_let] = STATE(4338), + [sym_stmt_mut] = STATE(4338), + [sym_stmt_const] = STATE(4338), + [sym_assignment] = STATE(4338), + [sym__mutable_assignment_pattern] = STATE(4342), + [sym__statement] = STATE(4507), + [sym_pipeline] = STATE(4338), + [sym__block_body] = STATE(5206), + [sym_cmd_identifier] = STATE(2730), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4336), + [sym_decl_export] = STATE(4336), + [sym_decl_extern] = STATE(4336), + [sym_decl_module] = STATE(4336), + [sym_decl_use] = STATE(4336), + [sym__ctrl_statement] = STATE(4338), + [sym__ctrl_expression] = STATE(3368), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if] = STATE(3392), + [sym_ctrl_match] = STATE(3392), + [sym_ctrl_try] = STATE(3392), + [sym__stmt_let_shortcut] = STATE(3393), + [sym_pipe_element] = STATE(2909), + [sym_where_command] = STATE(3368), [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(704), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(454), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(124), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3348), - [sym_comment] = STATE(76), - [aux_sym_pipeline_repeat1] = STATE(182), + [sym_expr_parenthesized] = STATE(724), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(438), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3368), + [sym_comment] = STATE(80), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(83), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym_pipe_element_repeat2] = STATE(278), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_repeat2] = STATE(267), [anon_sym_export] = ACTIONS(449), [anon_sym_alias] = ACTIONS(451), [anon_sym_let] = ACTIONS(453), @@ -48829,6 +50045,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -48870,203 +50087,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(77)] = { - [sym__block_body_statement_parenthesized] = STATE(3898), - [sym__declaration_parenthesized] = STATE(4594), - [sym_decl_alias_parenthesized] = STATE(4614), - [sym_stmt_let_parenthesized] = STATE(4748), - [sym_stmt_mut_parenthesized] = STATE(4748), - [sym_stmt_const_parenthesized] = STATE(4748), - [sym_assignment_parenthesized] = STATE(4748), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), - [sym__statement_parenthesized] = STATE(4594), - [sym_pipeline_parenthesized] = STATE(4748), - [sym_cmd_identifier] = STATE(3009), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4614), - [sym_decl_export] = STATE(4614), - [sym_decl_extern] = STATE(4614), - [sym_decl_module] = STATE(4614), - [sym_decl_use] = STATE(4614), - [sym__ctrl_statement] = STATE(4748), - [sym__ctrl_expression_parenthesized] = STATE(3436), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if_parenthesized] = STATE(3367), - [sym_ctrl_match] = STATE(3367), - [sym_ctrl_try_parenthesized] = STATE(3367), - [sym__stmt_let_shortcut] = STATE(3368), - [sym_pipe_element_parenthesized] = STATE(3116), - [sym_where_command_parenthesized] = STATE(3436), - [sym__expression_parenthesized] = STATE(2290), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2157), - [sym_expr_parenthesized] = STATE(777), - [sym__parenthesized_body] = STATE(5219), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(124), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4730), - [sym__command_parenthesized] = STATE(3373), - [sym_comment] = STATE(77), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), - [aux_sym__block_body_repeat1] = STATE(74), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), - [aux_sym__parenthesized_body_repeat2] = STATE(85), - [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_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(78)] = { - [sym__block_body_statement] = STATE(4201), - [sym__declaration] = STATE(4295), - [sym_decl_alias] = STATE(4296), - [sym_stmt_let] = STATE(4297), - [sym_stmt_mut] = STATE(4297), - [sym_stmt_const] = STATE(4297), - [sym_assignment] = STATE(4297), - [sym__mutable_assignment_pattern] = STATE(4298), - [sym__statement] = STATE(4295), - [sym_pipeline] = STATE(4297), - [sym__block_body] = STATE(5364), - [sym_cmd_identifier] = STATE(2812), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4296), - [sym_decl_export] = STATE(4296), - [sym_decl_extern] = STATE(4296), - [sym_decl_module] = STATE(4296), - [sym_decl_use] = STATE(4296), - [sym__ctrl_statement] = STATE(4297), - [sym__ctrl_expression] = STATE(3348), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if] = STATE(3352), - [sym_ctrl_match] = STATE(3352), - [sym_ctrl_try] = STATE(3352), - [sym__stmt_let_shortcut] = STATE(3358), - [sym_pipe_element] = STATE(2956), - [sym_where_command] = STATE(3348), + [STATE(81)] = { + [sym__block_body_statement] = STATE(4191), + [sym__declaration] = STATE(4507), + [sym_decl_alias] = STATE(4336), + [sym_stmt_let] = STATE(4338), + [sym_stmt_mut] = STATE(4338), + [sym_stmt_const] = STATE(4338), + [sym_assignment] = STATE(4338), + [sym__mutable_assignment_pattern] = STATE(4342), + [sym__statement] = STATE(4507), + [sym_pipeline] = STATE(4338), + [sym__block_body] = STATE(5287), + [sym_cmd_identifier] = STATE(2730), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4336), + [sym_decl_export] = STATE(4336), + [sym_decl_extern] = STATE(4336), + [sym_decl_module] = STATE(4336), + [sym_decl_use] = STATE(4336), + [sym__ctrl_statement] = STATE(4338), + [sym__ctrl_expression] = STATE(3368), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if] = STATE(3392), + [sym_ctrl_match] = STATE(3392), + [sym_ctrl_try] = STATE(3392), + [sym__stmt_let_shortcut] = STATE(3393), + [sym_pipe_element] = STATE(2909), + [sym_where_command] = STATE(3368), [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(704), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(454), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(124), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3348), - [sym_comment] = STATE(78), - [aux_sym_pipeline_repeat1] = STATE(182), + [sym_expr_parenthesized] = STATE(724), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(438), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3368), + [sym_comment] = STATE(81), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(83), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym_pipe_element_repeat2] = STATE(278), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_repeat2] = STATE(267), [anon_sym_export] = ACTIONS(449), [anon_sym_alias] = ACTIONS(451), [anon_sym_let] = ACTIONS(453), @@ -49085,6 +50174,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -49126,202 +50216,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(79)] = { - [sym__block_body_statement] = STATE(4392), - [sym__declaration] = STATE(4535), - [sym_decl_alias] = STATE(4536), - [sym_stmt_let] = STATE(4555), - [sym_stmt_mut] = STATE(4555), - [sym_stmt_const] = STATE(4555), - [sym_assignment] = STATE(4555), - [sym__mutable_assignment_pattern] = STATE(4579), - [sym__statement] = STATE(4535), - [sym_pipeline] = STATE(4555), - [sym_cmd_identifier] = STATE(2947), - [sym_attribute_list] = STATE(4666), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4536), - [sym_decl_export] = STATE(4536), - [sym_decl_extern] = STATE(4536), - [sym_decl_module] = STATE(4536), - [sym_decl_use] = STATE(4536), - [sym__ctrl_statement] = STATE(4555), - [sym__ctrl_expression] = STATE(3379), - [sym_ctrl_for] = STATE(4772), - [sym_ctrl_loop] = STATE(4772), - [sym_ctrl_while] = STATE(4772), - [sym_ctrl_if] = STATE(3441), - [sym_ctrl_match] = STATE(3441), - [sym_ctrl_try] = STATE(3441), - [sym__stmt_let_shortcut] = STATE(3501), - [sym_pipe_element] = STATE(3200), - [sym_where_command] = STATE(3379), - [sym__expression] = STATE(2294), - [sym_expr_unary] = STATE(1286), - [sym__expr_unary_minus] = STATE(1290), - [sym_expr_binary] = STATE(1286), - [sym__expr_binary_expression] = STATE(2252), - [sym_expr_parenthesized] = STATE(924), - [sym_val_range] = STATE(1286), - [sym__value] = STATE(1286), - [sym_val_nothing] = STATE(1295), - [sym_val_bool] = STATE(1295), - [sym_val_variable] = STATE(447), - [sym_val_cellpath] = STATE(1295), - [sym_val_number] = STATE(1295), - [sym__val_number_decimal] = STATE(123), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1295), - [sym_val_filesize] = STATE(1295), - [sym_val_binary] = STATE(1295), - [sym_val_string] = STATE(1295), - [sym__raw_str] = STATE(502), - [sym__str_double_quotes] = STATE(502), - [sym__str_single_quotes] = STATE(502), - [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1295), - [sym__inter_single_quotes] = STATE(1306), - [sym__inter_double_quotes] = STATE(1317), - [sym_val_list] = STATE(1295), - [sym_val_record] = STATE(1295), - [sym_val_table] = STATE(1295), - [sym_val_closure] = STATE(1295), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3379), - [sym_comment] = STATE(79), - [aux_sym_pipeline_repeat1] = STATE(189), - [aux_sym__block_body_repeat1] = STATE(1374), - [aux_sym__block_body_repeat2] = STATE(88), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym_pipe_element_repeat2] = STATE(291), - [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(80)] = { - [sym__block_body_statement] = STATE(4091), - [sym__declaration] = STATE(4295), - [sym_decl_alias] = STATE(4296), - [sym_stmt_let] = STATE(4297), - [sym_stmt_mut] = STATE(4297), - [sym_stmt_const] = STATE(4297), - [sym_assignment] = STATE(4297), - [sym__mutable_assignment_pattern] = STATE(4298), - [sym__statement] = STATE(4295), - [sym_pipeline] = STATE(4297), - [sym_cmd_identifier] = STATE(2812), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4296), - [sym_decl_export] = STATE(4296), - [sym_decl_extern] = STATE(4296), - [sym_decl_module] = STATE(4296), - [sym_decl_use] = STATE(4296), - [sym__ctrl_statement] = STATE(4297), - [sym__ctrl_expression] = STATE(3348), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if] = STATE(3352), - [sym_ctrl_match] = STATE(3352), - [sym_ctrl_try] = STATE(3352), - [sym__stmt_let_shortcut] = STATE(3358), - [sym_pipe_element] = STATE(2956), - [sym_where_command] = STATE(3348), + [STATE(82)] = { + [sym__block_body_statement] = STATE(4328), + [sym__declaration] = STATE(4507), + [sym_decl_alias] = STATE(4336), + [sym_stmt_let] = STATE(4338), + [sym_stmt_mut] = STATE(4338), + [sym_stmt_const] = STATE(4338), + [sym_assignment] = STATE(4338), + [sym__mutable_assignment_pattern] = STATE(4342), + [sym__statement] = STATE(4507), + [sym_pipeline] = STATE(4338), + [sym_cmd_identifier] = STATE(2730), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4336), + [sym_decl_export] = STATE(4336), + [sym_decl_extern] = STATE(4336), + [sym_decl_module] = STATE(4336), + [sym_decl_use] = STATE(4336), + [sym__ctrl_statement] = STATE(4338), + [sym__ctrl_expression] = STATE(3368), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if] = STATE(3392), + [sym_ctrl_match] = STATE(3392), + [sym_ctrl_try] = STATE(3392), + [sym__stmt_let_shortcut] = STATE(3393), + [sym_pipe_element] = STATE(2909), + [sym_where_command] = STATE(3368), [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(704), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), + [sym_expr_parenthesized] = STATE(724), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(133), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3348), - [sym_comment] = STATE(80), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(1357), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym_pipe_element_repeat2] = STATE(292), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3368), + [sym_comment] = STATE(82), + [aux_sym_pipeline_repeat1] = STATE(176), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -49340,6 +50301,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -49348,15 +50310,12 @@ 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), [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), @@ -49382,325 +50341,73 @@ 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(3898), - [sym__declaration_parenthesized] = STATE(4594), - [sym_decl_alias_parenthesized] = STATE(4614), - [sym_stmt_let_parenthesized] = STATE(4748), - [sym_stmt_mut_parenthesized] = STATE(4748), - [sym_stmt_const_parenthesized] = STATE(4748), - [sym_assignment_parenthesized] = STATE(4748), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), - [sym__statement_parenthesized] = STATE(4594), - [sym_pipeline_parenthesized] = STATE(4748), - [sym_cmd_identifier] = STATE(3009), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4614), - [sym_decl_export] = STATE(4614), - [sym_decl_extern] = STATE(4614), - [sym_decl_module] = STATE(4614), - [sym_decl_use] = STATE(4614), - [sym__ctrl_statement] = STATE(4748), - [sym__ctrl_expression_parenthesized] = STATE(3436), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if_parenthesized] = STATE(3367), - [sym_ctrl_match] = STATE(3367), - [sym_ctrl_try_parenthesized] = STATE(3367), - [sym__stmt_let_shortcut] = STATE(3368), - [sym_pipe_element_parenthesized] = STATE(3116), - [sym_where_command_parenthesized] = STATE(3436), - [sym__expression_parenthesized] = STATE(2290), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2157), - [sym_expr_parenthesized] = STATE(777), - [sym__parenthesized_body] = STATE(5244), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(124), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4730), - [sym__command_parenthesized] = STATE(3373), - [sym_comment] = STATE(81), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), - [aux_sym__block_body_repeat1] = STATE(74), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), - [aux_sym__parenthesized_body_repeat2] = STATE(85), - [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_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(82)] = { - [sym__block_body_statement_parenthesized] = STATE(3931), - [sym__declaration_parenthesized] = STATE(4594), - [sym_decl_alias_parenthesized] = STATE(4614), - [sym_stmt_let_parenthesized] = STATE(4748), - [sym_stmt_mut_parenthesized] = STATE(4748), - [sym_stmt_const_parenthesized] = STATE(4748), - [sym_assignment_parenthesized] = STATE(4748), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), - [sym__statement_parenthesized] = STATE(4594), - [sym_pipeline_parenthesized] = STATE(4748), - [sym_cmd_identifier] = STATE(3009), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4614), - [sym_decl_export] = STATE(4614), - [sym_decl_extern] = STATE(4614), - [sym_decl_module] = STATE(4614), - [sym_decl_use] = STATE(4614), - [sym__ctrl_statement] = STATE(4748), - [sym__ctrl_expression_parenthesized] = STATE(3436), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if_parenthesized] = STATE(3367), - [sym_ctrl_match] = STATE(3367), - [sym_ctrl_try_parenthesized] = STATE(3367), - [sym__stmt_let_shortcut] = STATE(3368), - [sym_pipe_element_parenthesized] = STATE(3116), - [sym_where_command_parenthesized] = STATE(3436), - [sym__expression_parenthesized] = STATE(2290), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2157), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(124), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4730), - [sym__command_parenthesized] = STATE(3373), - [sym_comment] = STATE(82), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), - [aux_sym__parenthesized_body_repeat2] = STATE(86), - [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), - [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(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(83)] = { - [sym__block_body_statement] = STATE(4091), - [sym__declaration] = STATE(4295), - [sym_decl_alias] = STATE(4296), - [sym_stmt_let] = STATE(4297), - [sym_stmt_mut] = STATE(4297), - [sym_stmt_const] = STATE(4297), - [sym_assignment] = STATE(4297), - [sym__mutable_assignment_pattern] = STATE(4298), - [sym__statement] = STATE(4295), - [sym_pipeline] = STATE(4297), - [sym_cmd_identifier] = STATE(2812), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4296), - [sym_decl_export] = STATE(4296), - [sym_decl_extern] = STATE(4296), - [sym_decl_module] = STATE(4296), - [sym_decl_use] = STATE(4296), - [sym__ctrl_statement] = STATE(4297), - [sym__ctrl_expression] = STATE(3348), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if] = STATE(3352), - [sym_ctrl_match] = STATE(3352), - [sym_ctrl_try] = STATE(3352), - [sym__stmt_let_shortcut] = STATE(3358), - [sym_pipe_element] = STATE(2956), - [sym_where_command] = STATE(3348), + [sym__block_body_statement] = STATE(4301), + [sym__declaration] = STATE(4507), + [sym_decl_alias] = STATE(4336), + [sym_stmt_let] = STATE(4338), + [sym_stmt_mut] = STATE(4338), + [sym_stmt_const] = STATE(4338), + [sym_assignment] = STATE(4338), + [sym__mutable_assignment_pattern] = STATE(4342), + [sym__statement] = STATE(4507), + [sym_pipeline] = STATE(4338), + [sym_cmd_identifier] = STATE(2730), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4336), + [sym_decl_export] = STATE(4336), + [sym_decl_extern] = STATE(4336), + [sym_decl_module] = STATE(4336), + [sym_decl_use] = STATE(4336), + [sym__ctrl_statement] = STATE(4338), + [sym__ctrl_expression] = STATE(3368), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if] = STATE(3392), + [sym_ctrl_match] = STATE(3392), + [sym_ctrl_try] = STATE(3392), + [sym__stmt_let_shortcut] = STATE(3393), + [sym_pipe_element] = STATE(2909), + [sym_where_command] = STATE(3368), [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(704), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(454), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(124), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3348), + [sym_expr_parenthesized] = STATE(724), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(438), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3368), [sym_comment] = STATE(83), - [aux_sym_pipeline_repeat1] = STATE(182), - [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym_pipe_element_repeat2] = STATE(278), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_repeat2] = STATE(267), [anon_sym_export] = ACTIONS(449), [anon_sym_alias] = ACTIONS(451), [anon_sym_let] = ACTIONS(453), @@ -49719,6 +50426,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -49759,72 +50467,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(84)] = { - [sym__block_body_statement] = STATE(4392), - [sym__declaration] = STATE(4535), - [sym_decl_alias] = STATE(4536), - [sym_stmt_let] = STATE(4555), - [sym_stmt_mut] = STATE(4555), - [sym_stmt_const] = STATE(4555), - [sym_assignment] = STATE(4555), - [sym__mutable_assignment_pattern] = STATE(4579), - [sym__statement] = STATE(4535), - [sym_pipeline] = STATE(4555), - [sym_cmd_identifier] = STATE(2947), - [sym_attribute_list] = STATE(4666), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4536), - [sym_decl_export] = STATE(4536), - [sym_decl_extern] = STATE(4536), - [sym_decl_module] = STATE(4536), - [sym_decl_use] = STATE(4536), - [sym__ctrl_statement] = STATE(4555), - [sym__ctrl_expression] = STATE(3379), - [sym_ctrl_for] = STATE(4772), - [sym_ctrl_loop] = STATE(4772), - [sym_ctrl_while] = STATE(4772), - [sym_ctrl_if] = STATE(3441), - [sym_ctrl_match] = STATE(3441), - [sym_ctrl_try] = STATE(3441), - [sym__stmt_let_shortcut] = STATE(3501), - [sym_pipe_element] = STATE(3200), - [sym_where_command] = STATE(3379), + [sym__block_body_statement] = STATE(4487), + [sym__declaration] = STATE(4832), + [sym_decl_alias] = STATE(4872), + [sym_stmt_let] = STATE(4884), + [sym_stmt_mut] = STATE(4884), + [sym_stmt_const] = STATE(4884), + [sym_assignment] = STATE(4884), + [sym__mutable_assignment_pattern] = STATE(4708), + [sym__statement] = STATE(4832), + [sym_pipeline] = STATE(4884), + [sym_cmd_identifier] = STATE(2951), + [sym_attribute_list] = STATE(4691), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4872), + [sym_decl_export] = STATE(4872), + [sym_decl_extern] = STATE(4872), + [sym_decl_module] = STATE(4872), + [sym_decl_use] = STATE(4872), + [sym__ctrl_statement] = STATE(4884), + [sym__ctrl_expression] = STATE(3512), + [sym_ctrl_for] = STATE(4718), + [sym_ctrl_loop] = STATE(4718), + [sym_ctrl_while] = STATE(4718), + [sym_ctrl_if] = STATE(3519), + [sym_ctrl_match] = STATE(3519), + [sym_ctrl_try] = STATE(3519), + [sym__stmt_let_shortcut] = STATE(3521), + [sym_pipe_element] = STATE(3125), + [sym_where_command] = STATE(3512), [sym__expression] = STATE(2294), - [sym_expr_unary] = STATE(1286), - [sym__expr_unary_minus] = STATE(1290), - [sym_expr_binary] = STATE(1286), - [sym__expr_binary_expression] = STATE(2252), - [sym_expr_parenthesized] = STATE(924), - [sym_val_range] = STATE(1286), - [sym__value] = STATE(1286), - [sym_val_nothing] = STATE(1295), - [sym_val_bool] = STATE(1295), - [sym_val_variable] = STATE(447), - [sym_val_cellpath] = STATE(1295), - [sym_val_number] = STATE(1295), - [sym__val_number_decimal] = STATE(123), + [sym_expr_unary] = STATE(1292), + [sym__expr_unary_minus] = STATE(1296), + [sym_expr_binary] = STATE(1292), + [sym__expr_binary_expression] = STATE(2248), + [sym_expr_parenthesized] = STATE(964), + [sym_val_range] = STATE(1292), + [sym__value] = STATE(1292), + [sym_val_nothing] = STATE(1316), + [sym_val_bool] = STATE(1316), + [sym_val_variable] = STATE(444), + [sym_val_cellpath] = STATE(1316), + [sym_val_number] = STATE(1316), + [sym__val_number_decimal] = STATE(132), [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1295), - [sym_val_filesize] = STATE(1295), - [sym_val_binary] = STATE(1295), - [sym_val_string] = STATE(1295), + [sym_val_duration] = STATE(1316), + [sym_val_filesize] = STATE(1316), + [sym_val_binary] = STATE(1316), + [sym_val_string] = STATE(1316), [sym__raw_str] = STATE(502), [sym__str_double_quotes] = STATE(502), [sym__str_single_quotes] = STATE(502), [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1295), - [sym__inter_single_quotes] = STATE(1306), - [sym__inter_double_quotes] = STATE(1317), - [sym_val_list] = STATE(1295), - [sym_val_record] = STATE(1295), - [sym_val_table] = STATE(1295), - [sym_val_closure] = STATE(1295), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3379), + [sym_val_interpolated] = STATE(1316), + [sym__inter_single_quotes] = STATE(1277), + [sym__inter_double_quotes] = STATE(1311), + [sym_val_list] = STATE(1316), + [sym_val_record] = STATE(1316), + [sym_val_table] = STATE(1316), + [sym_val_closure] = STATE(1316), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3512), [sym_comment] = STATE(84), - [aux_sym_pipeline_repeat1] = STATE(189), - [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym_pipe_element_repeat2] = STATE(291), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_repeat2] = STATE(284), [anon_sym_export] = ACTIONS(9), [anon_sym_alias] = ACTIONS(11), [anon_sym_let] = ACTIONS(13), @@ -49843,6 +50551,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(39), [anon_sym_try] = ACTIONS(41), [anon_sym_catch] = ACTIONS(39), + [anon_sym_finally] = ACTIONS(39), [anon_sym_match] = ACTIONS(43), [anon_sym_in] = ACTIONS(45), [anon_sym_true] = ACTIONS(47), @@ -49883,77 +50592,202 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(105), }, [STATE(85)] = { - [sym__block_body_statement_parenthesized] = STATE(4018), - [sym__declaration_parenthesized] = STATE(4594), - [sym_decl_alias_parenthesized] = STATE(4614), - [sym_stmt_let_parenthesized] = STATE(4748), - [sym_stmt_mut_parenthesized] = STATE(4748), - [sym_stmt_const_parenthesized] = STATE(4748), - [sym_assignment_parenthesized] = STATE(4748), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), - [sym__statement_parenthesized] = STATE(4594), - [sym_pipeline_parenthesized] = STATE(4748), - [sym_cmd_identifier] = STATE(3009), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4614), - [sym_decl_export] = STATE(4614), - [sym_decl_extern] = STATE(4614), - [sym_decl_module] = STATE(4614), - [sym_decl_use] = STATE(4614), - [sym__ctrl_statement] = STATE(4748), - [sym__ctrl_expression_parenthesized] = STATE(3436), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if_parenthesized] = STATE(3367), - [sym_ctrl_match] = STATE(3367), - [sym_ctrl_try_parenthesized] = STATE(3367), - [sym__stmt_let_shortcut] = STATE(3368), - [sym_pipe_element_parenthesized] = STATE(3116), - [sym_where_command_parenthesized] = STATE(3436), - [sym__expression_parenthesized] = STATE(2290), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2157), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(124), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4730), - [sym__command_parenthesized] = STATE(3373), + [sym__block_body_statement] = STATE(4466), + [sym__declaration] = STATE(4832), + [sym_decl_alias] = STATE(4872), + [sym_stmt_let] = STATE(4884), + [sym_stmt_mut] = STATE(4884), + [sym_stmt_const] = STATE(4884), + [sym_assignment] = STATE(4884), + [sym__mutable_assignment_pattern] = STATE(4708), + [sym__statement] = STATE(4832), + [sym_pipeline] = STATE(4884), + [sym_cmd_identifier] = STATE(2951), + [sym_attribute_list] = STATE(4691), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4872), + [sym_decl_export] = STATE(4872), + [sym_decl_extern] = STATE(4872), + [sym_decl_module] = STATE(4872), + [sym_decl_use] = STATE(4872), + [sym__ctrl_statement] = STATE(4884), + [sym__ctrl_expression] = STATE(3512), + [sym_ctrl_for] = STATE(4718), + [sym_ctrl_loop] = STATE(4718), + [sym_ctrl_while] = STATE(4718), + [sym_ctrl_if] = STATE(3519), + [sym_ctrl_match] = STATE(3519), + [sym_ctrl_try] = STATE(3519), + [sym__stmt_let_shortcut] = STATE(3521), + [sym_pipe_element] = STATE(3125), + [sym_where_command] = STATE(3512), + [sym__expression] = STATE(2294), + [sym_expr_unary] = STATE(1292), + [sym__expr_unary_minus] = STATE(1296), + [sym_expr_binary] = STATE(1292), + [sym__expr_binary_expression] = STATE(2248), + [sym_expr_parenthesized] = STATE(964), + [sym_val_range] = STATE(1292), + [sym__value] = STATE(1292), + [sym_val_nothing] = STATE(1316), + [sym_val_bool] = STATE(1316), + [sym_val_variable] = STATE(444), + [sym_val_cellpath] = STATE(1316), + [sym_val_number] = STATE(1316), + [sym__val_number_decimal] = STATE(132), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1316), + [sym_val_filesize] = STATE(1316), + [sym_val_binary] = STATE(1316), + [sym_val_string] = STATE(1316), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1316), + [sym__inter_single_quotes] = STATE(1277), + [sym__inter_double_quotes] = STATE(1311), + [sym_val_list] = STATE(1316), + [sym_val_record] = STATE(1316), + [sym_val_table] = STATE(1316), + [sym_val_closure] = STATE(1316), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3512), [sym_comment] = STATE(85), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), - [aux_sym__parenthesized_body_repeat2] = STATE(86), - [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_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_repeat2] = STATE(284), + [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_finally] = 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(86)] = { + [sym__block_body_statement] = STATE(4328), + [sym__declaration] = STATE(4507), + [sym_decl_alias] = STATE(4336), + [sym_stmt_let] = STATE(4338), + [sym_stmt_mut] = STATE(4338), + [sym_stmt_const] = STATE(4338), + [sym_assignment] = STATE(4338), + [sym__mutable_assignment_pattern] = STATE(4342), + [sym__statement] = STATE(4507), + [sym_pipeline] = STATE(4338), + [sym_cmd_identifier] = STATE(2730), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4336), + [sym_decl_export] = STATE(4336), + [sym_decl_extern] = STATE(4336), + [sym_decl_module] = STATE(4336), + [sym_decl_use] = STATE(4336), + [sym__ctrl_statement] = STATE(4338), + [sym__ctrl_expression] = STATE(3368), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if] = STATE(3392), + [sym_ctrl_match] = STATE(3392), + [sym_ctrl_try] = STATE(3392), + [sym__stmt_let_shortcut] = STATE(3393), + [sym_pipe_element] = STATE(2909), + [sym_where_command] = STATE(3368), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(724), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(438), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3368), + [sym_comment] = STATE(86), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_repeat2] = STATE(267), + [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), @@ -49963,10 +50797,11 @@ 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_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -49982,7 +50817,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(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), @@ -50002,77 +50837,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(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(86)] = { - [sym__block_body_statement_parenthesized] = STATE(4502), - [sym__declaration_parenthesized] = STATE(4594), - [sym_decl_alias_parenthesized] = STATE(4614), - [sym_stmt_let_parenthesized] = STATE(4748), - [sym_stmt_mut_parenthesized] = STATE(4748), - [sym_stmt_const_parenthesized] = STATE(4748), - [sym_assignment_parenthesized] = STATE(4748), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), - [sym__statement_parenthesized] = STATE(4594), - [sym_pipeline_parenthesized] = STATE(4748), - [sym_cmd_identifier] = STATE(3009), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4614), - [sym_decl_export] = STATE(4614), - [sym_decl_extern] = STATE(4614), - [sym_decl_module] = STATE(4614), - [sym_decl_use] = STATE(4614), - [sym__ctrl_statement] = STATE(4748), - [sym__ctrl_expression_parenthesized] = STATE(3436), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if_parenthesized] = STATE(3367), - [sym_ctrl_match] = STATE(3367), - [sym_ctrl_try_parenthesized] = STATE(3367), - [sym__stmt_let_shortcut] = STATE(3368), - [sym_pipe_element_parenthesized] = STATE(3116), - [sym_where_command_parenthesized] = STATE(3436), - [sym__expression_parenthesized] = STATE(2290), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2157), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(478), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(135), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4730), - [sym__command_parenthesized] = STATE(3373), - [sym_comment] = STATE(86), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(274), - [aux_sym__parenthesized_body_repeat2] = STATE(86), + [STATE(87)] = { + [sym__block_body_statement] = STATE(4807), + [sym__declaration] = STATE(4507), + [sym_decl_alias] = STATE(4336), + [sym_stmt_let] = STATE(4338), + [sym_stmt_mut] = STATE(4338), + [sym_stmt_const] = STATE(4338), + [sym_assignment] = STATE(4338), + [sym__mutable_assignment_pattern] = STATE(4342), + [sym__statement] = STATE(4507), + [sym_pipeline] = STATE(4338), + [sym_cmd_identifier] = STATE(2730), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4336), + [sym_decl_export] = STATE(4336), + [sym_decl_extern] = STATE(4336), + [sym_decl_module] = STATE(4336), + [sym_decl_use] = STATE(4336), + [sym__ctrl_statement] = STATE(4338), + [sym__ctrl_expression] = STATE(3368), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if] = STATE(3392), + [sym_ctrl_match] = STATE(3392), + [sym_ctrl_try] = STATE(3392), + [sym__stmt_let_shortcut] = STATE(3393), + [sym_pipe_element] = STATE(2909), + [sym_where_command] = STATE(3368), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(724), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(484), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(136), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3368), + [sym_comment] = STATE(87), + [aux_sym_pipeline_repeat1] = STATE(177), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_repeat2] = STATE(270), [anon_sym_export] = ACTIONS(463), [anon_sym_alias] = ACTIONS(466), [anon_sym_let] = ACTIONS(469), @@ -50091,6 +50926,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(508), [anon_sym_try] = ACTIONS(511), [anon_sym_catch] = ACTIONS(508), + [anon_sym_finally] = ACTIONS(508), [anon_sym_match] = ACTIONS(514), [anon_sym_in] = ACTIONS(517), [anon_sym_true] = ACTIONS(520), @@ -50130,78 +50966,203 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(598), }, - [STATE(87)] = { - [sym__block_body_statement] = STATE(4091), - [sym__declaration] = STATE(4295), - [sym_decl_alias] = STATE(4296), - [sym_stmt_let] = STATE(4297), - [sym_stmt_mut] = STATE(4297), - [sym_stmt_const] = STATE(4297), - [sym_assignment] = STATE(4297), - [sym__mutable_assignment_pattern] = STATE(4298), - [sym__statement] = STATE(4295), - [sym_pipeline] = STATE(4297), - [sym_cmd_identifier] = STATE(2812), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4296), - [sym_decl_export] = STATE(4296), - [sym_decl_extern] = STATE(4296), - [sym_decl_module] = STATE(4296), - [sym_decl_use] = STATE(4296), - [sym__ctrl_statement] = STATE(4297), - [sym__ctrl_expression] = STATE(3348), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if] = STATE(3352), - [sym_ctrl_match] = STATE(3352), - [sym_ctrl_try] = STATE(3352), - [sym__stmt_let_shortcut] = STATE(3358), - [sym_pipe_element] = STATE(2956), - [sym_where_command] = STATE(3348), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(704), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(133), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3348), - [sym_comment] = STATE(87), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [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(88)] = { + [sym__block_body_statement_parenthesized] = STATE(4472), + [sym__declaration_parenthesized] = STATE(4800), + [sym_decl_alias_parenthesized] = STATE(4859), + [sym_stmt_let_parenthesized] = STATE(4864), + [sym_stmt_mut_parenthesized] = STATE(4864), + [sym_stmt_const_parenthesized] = STATE(4864), + [sym_assignment_parenthesized] = STATE(4864), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4865), + [sym__statement_parenthesized] = STATE(4800), + [sym_pipeline_parenthesized] = STATE(4864), + [sym_cmd_identifier] = STATE(2907), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4859), + [sym_decl_export] = STATE(4859), + [sym_decl_extern] = STATE(4859), + [sym_decl_module] = STATE(4859), + [sym_decl_use] = STATE(4859), + [sym__ctrl_statement] = STATE(4864), + [sym__ctrl_expression_parenthesized] = STATE(3454), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if_parenthesized] = STATE(3458), + [sym_ctrl_match] = STATE(3458), + [sym_ctrl_try_parenthesized] = STATE(3458), + [sym__stmt_let_shortcut] = STATE(3471), + [sym_pipe_element_parenthesized] = STATE(3176), + [sym_where_command_parenthesized] = STATE(3454), + [sym__expression_parenthesized] = STATE(2289), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2156), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(480), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(136), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(4794), + [sym__command_parenthesized] = STATE(3494), + [sym_comment] = STATE(88), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(180), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(268), + [aux_sym__parenthesized_body_repeat2] = STATE(88), + [anon_sym_export] = ACTIONS(601), + [anon_sym_alias] = ACTIONS(604), + [anon_sym_let] = ACTIONS(607), + [anon_sym_mut] = ACTIONS(610), + [anon_sym_const] = ACTIONS(613), + [aux_sym_cmd_identifier_token1] = ACTIONS(616), + [anon_sym_def] = ACTIONS(619), + [anon_sym_use] = ACTIONS(622), + [anon_sym_export_DASHenv] = ACTIONS(625), + [anon_sym_extern] = ACTIONS(628), + [anon_sym_module] = ACTIONS(631), + [anon_sym_for] = ACTIONS(634), + [anon_sym_loop] = ACTIONS(637), + [anon_sym_while] = ACTIONS(640), + [anon_sym_if] = ACTIONS(643), + [anon_sym_else] = ACTIONS(646), + [anon_sym_try] = ACTIONS(649), + [anon_sym_catch] = ACTIONS(646), + [anon_sym_finally] = ACTIONS(646), + [anon_sym_match] = ACTIONS(652), + [anon_sym_in] = ACTIONS(655), + [anon_sym_true] = ACTIONS(658), + [anon_sym_false] = ACTIONS(658), + [anon_sym_null] = ACTIONS(661), + [aux_sym_cmd_identifier_token3] = ACTIONS(664), + [aux_sym_cmd_identifier_token4] = ACTIONS(664), + [aux_sym_cmd_identifier_token5] = ACTIONS(664), + [anon_sym_AT] = ACTIONS(667), + [anon_sym_LBRACK] = ACTIONS(670), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_DOLLAR] = ACTIONS(676), + [anon_sym_DASH2] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(682), + [anon_sym_DOT_DOT] = ACTIONS(685), + [anon_sym_where] = ACTIONS(688), + [aux_sym_expr_unary_token1] = ACTIONS(691), + [anon_sym_DOT_DOT_EQ] = ACTIONS(694), + [anon_sym_DOT_DOT_LT] = ACTIONS(694), + [aux_sym__val_number_decimal_token1] = ACTIONS(697), + [aux_sym__val_number_decimal_token2] = ACTIONS(700), + [aux_sym__val_number_decimal_token3] = ACTIONS(703), + [aux_sym__val_number_decimal_token4] = ACTIONS(703), + [aux_sym__val_number_token1] = ACTIONS(706), + [aux_sym__val_number_token2] = ACTIONS(706), + [aux_sym__val_number_token3] = ACTIONS(706), + [anon_sym_0b] = ACTIONS(709), + [anon_sym_0o] = ACTIONS(712), + [anon_sym_0x] = ACTIONS(712), + [sym_val_date] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(718), + [anon_sym_SQUOTE] = ACTIONS(721), + [anon_sym_BQUOTE] = ACTIONS(724), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(727), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(730), + [anon_sym_CARET] = ACTIONS(733), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(736), + }, + [STATE(89)] = { + [sym__block_body_statement_parenthesized] = STATE(4077), + [sym__declaration_parenthesized] = STATE(4800), + [sym_decl_alias_parenthesized] = STATE(4859), + [sym_stmt_let_parenthesized] = STATE(4864), + [sym_stmt_mut_parenthesized] = STATE(4864), + [sym_stmt_const_parenthesized] = STATE(4864), + [sym_assignment_parenthesized] = STATE(4864), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4865), + [sym__statement_parenthesized] = STATE(4800), + [sym_pipeline_parenthesized] = STATE(4864), + [sym_cmd_identifier] = STATE(2907), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4859), + [sym_decl_export] = STATE(4859), + [sym_decl_extern] = STATE(4859), + [sym_decl_module] = STATE(4859), + [sym_decl_use] = STATE(4859), + [sym__ctrl_statement] = STATE(4864), + [sym__ctrl_expression_parenthesized] = STATE(3454), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if_parenthesized] = STATE(3458), + [sym_ctrl_match] = STATE(3458), + [sym_ctrl_try_parenthesized] = STATE(3458), + [sym__stmt_let_shortcut] = STATE(3471), + [sym_pipe_element_parenthesized] = STATE(3176), + [sym_where_command_parenthesized] = STATE(3454), + [sym__expression_parenthesized] = STATE(2289), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2156), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(446), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(4794), + [sym__command_parenthesized] = STATE(3494), + [sym_comment] = STATE(89), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), + [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), @@ -50211,10 +51172,11 @@ 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_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -50230,14 +51192,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), @@ -50250,206 +51212,82 @@ 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(88)] = { - [sym__block_body_statement] = STATE(4324), - [sym__declaration] = STATE(4535), - [sym_decl_alias] = STATE(4536), - [sym_stmt_let] = STATE(4555), - [sym_stmt_mut] = STATE(4555), - [sym_stmt_const] = STATE(4555), - [sym_assignment] = STATE(4555), - [sym__mutable_assignment_pattern] = STATE(4579), - [sym__statement] = STATE(4535), - [sym_pipeline] = STATE(4555), - [sym_cmd_identifier] = STATE(2947), - [sym_attribute_list] = STATE(4666), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4536), - [sym_decl_export] = STATE(4536), - [sym_decl_extern] = STATE(4536), - [sym_decl_module] = STATE(4536), - [sym_decl_use] = STATE(4536), - [sym__ctrl_statement] = STATE(4555), - [sym__ctrl_expression] = STATE(3379), - [sym_ctrl_for] = STATE(4772), - [sym_ctrl_loop] = STATE(4772), - [sym_ctrl_while] = STATE(4772), - [sym_ctrl_if] = STATE(3441), - [sym_ctrl_match] = STATE(3441), - [sym_ctrl_try] = STATE(3441), - [sym__stmt_let_shortcut] = STATE(3501), - [sym_pipe_element] = STATE(3200), - [sym_where_command] = STATE(3379), - [sym__expression] = STATE(2294), - [sym_expr_unary] = STATE(1286), - [sym__expr_unary_minus] = STATE(1290), - [sym_expr_binary] = STATE(1286), - [sym__expr_binary_expression] = STATE(2252), - [sym_expr_parenthesized] = STATE(924), - [sym_val_range] = STATE(1286), - [sym__value] = STATE(1286), - [sym_val_nothing] = STATE(1295), - [sym_val_bool] = STATE(1295), - [sym_val_variable] = STATE(447), - [sym_val_cellpath] = STATE(1295), - [sym_val_number] = STATE(1295), - [sym__val_number_decimal] = STATE(123), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1295), - [sym_val_filesize] = STATE(1295), - [sym_val_binary] = STATE(1295), - [sym_val_string] = STATE(1295), - [sym__raw_str] = STATE(502), - [sym__str_double_quotes] = STATE(502), - [sym__str_single_quotes] = STATE(502), - [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1295), - [sym__inter_single_quotes] = STATE(1306), - [sym__inter_double_quotes] = STATE(1317), - [sym_val_list] = STATE(1295), - [sym_val_record] = STATE(1295), - [sym_val_table] = STATE(1295), - [sym_val_closure] = STATE(1295), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3379), - [sym_comment] = STATE(88), - [aux_sym_pipeline_repeat1] = STATE(189), - [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym_pipe_element_repeat2] = STATE(291), - [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(89)] = { - [sym__block_body_statement] = STATE(4180), - [sym__declaration] = STATE(4295), - [sym_decl_alias] = STATE(4296), - [sym_stmt_let] = STATE(4297), - [sym_stmt_mut] = STATE(4297), - [sym_stmt_const] = STATE(4297), - [sym_assignment] = STATE(4297), - [sym__mutable_assignment_pattern] = STATE(4298), - [sym__statement] = STATE(4295), - [sym_pipeline] = STATE(4297), - [sym_cmd_identifier] = STATE(2812), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4296), - [sym_decl_export] = STATE(4296), - [sym_decl_extern] = STATE(4296), - [sym_decl_module] = STATE(4296), - [sym_decl_use] = STATE(4296), - [sym__ctrl_statement] = STATE(4297), - [sym__ctrl_expression] = STATE(3348), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if] = STATE(3352), - [sym_ctrl_match] = STATE(3352), - [sym_ctrl_try] = STATE(3352), - [sym__stmt_let_shortcut] = STATE(3358), - [sym_pipe_element] = STATE(2956), - [sym_where_command] = STATE(3348), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(704), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(133), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3348), - [sym_comment] = STATE(89), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [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(90)] = { + [sym__block_body_statement_parenthesized] = STATE(4175), + [sym__declaration_parenthesized] = STATE(4800), + [sym_decl_alias_parenthesized] = STATE(4859), + [sym_stmt_let_parenthesized] = STATE(4864), + [sym_stmt_mut_parenthesized] = STATE(4864), + [sym_stmt_const_parenthesized] = STATE(4864), + [sym_assignment_parenthesized] = STATE(4864), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4865), + [sym__statement_parenthesized] = STATE(4800), + [sym_pipeline_parenthesized] = STATE(4864), + [sym_cmd_identifier] = STATE(2907), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4859), + [sym_decl_export] = STATE(4859), + [sym_decl_extern] = STATE(4859), + [sym_decl_module] = STATE(4859), + [sym_decl_use] = STATE(4859), + [sym__ctrl_statement] = STATE(4864), + [sym__ctrl_expression_parenthesized] = STATE(3454), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if_parenthesized] = STATE(3458), + [sym_ctrl_match] = STATE(3458), + [sym_ctrl_try_parenthesized] = STATE(3458), + [sym__stmt_let_shortcut] = STATE(3471), + [sym_pipe_element_parenthesized] = STATE(3176), + [sym_where_command_parenthesized] = STATE(3454), + [sym__expression_parenthesized] = STATE(2289), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2156), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(446), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(4794), + [sym__command_parenthesized] = STATE(3494), + [sym_comment] = STATE(90), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), + [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), @@ -50459,10 +51297,11 @@ 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_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -50478,14 +51317,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), @@ -50498,82 +51337,82 @@ 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(90)] = { - [sym__block_body_statement] = STATE(4180), - [sym__declaration] = STATE(4295), - [sym_decl_alias] = STATE(4296), - [sym_stmt_let] = STATE(4297), - [sym_stmt_mut] = STATE(4297), - [sym_stmt_const] = STATE(4297), - [sym_assignment] = STATE(4297), - [sym__mutable_assignment_pattern] = STATE(4298), - [sym__statement] = STATE(4295), - [sym_pipeline] = STATE(4297), - [sym_cmd_identifier] = STATE(2812), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4296), - [sym_decl_export] = STATE(4296), - [sym_decl_extern] = STATE(4296), - [sym_decl_module] = STATE(4296), - [sym_decl_use] = STATE(4296), - [sym__ctrl_statement] = STATE(4297), - [sym__ctrl_expression] = STATE(3348), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if] = STATE(3352), - [sym_ctrl_match] = STATE(3352), - [sym_ctrl_try] = STATE(3352), - [sym__stmt_let_shortcut] = STATE(3358), - [sym_pipe_element] = STATE(2956), - [sym_where_command] = STATE(3348), + [STATE(91)] = { + [sym__block_body_statement] = STATE(4301), + [sym__declaration] = STATE(4507), + [sym_decl_alias] = STATE(4336), + [sym_stmt_let] = STATE(4338), + [sym_stmt_mut] = STATE(4338), + [sym_stmt_const] = STATE(4338), + [sym_assignment] = STATE(4338), + [sym__mutable_assignment_pattern] = STATE(4342), + [sym__statement] = STATE(4507), + [sym_pipeline] = STATE(4338), + [sym_cmd_identifier] = STATE(2730), + [sym_attribute_list] = STATE(4874), + [sym_attribute] = STATE(4941), + [sym_decl_def] = STATE(4336), + [sym_decl_export] = STATE(4336), + [sym_decl_extern] = STATE(4336), + [sym_decl_module] = STATE(4336), + [sym_decl_use] = STATE(4336), + [sym__ctrl_statement] = STATE(4338), + [sym__ctrl_expression] = STATE(3368), + [sym_ctrl_for] = STATE(4349), + [sym_ctrl_loop] = STATE(4349), + [sym_ctrl_while] = STATE(4349), + [sym_ctrl_if] = STATE(3392), + [sym_ctrl_match] = STATE(3392), + [sym_ctrl_try] = STATE(3392), + [sym__stmt_let_shortcut] = STATE(3393), + [sym_pipe_element] = STATE(2909), + [sym_where_command] = STATE(3368), [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(704), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(454), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(124), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3348), - [sym_comment] = STATE(90), - [aux_sym_pipeline_repeat1] = STATE(182), - [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym_pipe_element_repeat2] = STATE(278), - [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), + [sym_expr_parenthesized] = STATE(724), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(451), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3368), + [sym_comment] = STATE(91), + [aux_sym_pipeline_repeat1] = STATE(176), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(4058), + [aux_sym_pipe_element_repeat2] = STATE(281), + [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), @@ -50583,10 +51422,11 @@ 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(459), + [anon_sym_if] = ACTIONS(269), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -50606,10 +51446,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), @@ -50626,130 +51466,6 @@ 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] = STATE(4656), - [sym__declaration] = STATE(4295), - [sym_decl_alias] = STATE(4296), - [sym_stmt_let] = STATE(4297), - [sym_stmt_mut] = STATE(4297), - [sym_stmt_const] = STATE(4297), - [sym_assignment] = STATE(4297), - [sym__mutable_assignment_pattern] = STATE(4298), - [sym__statement] = STATE(4295), - [sym_pipeline] = STATE(4297), - [sym_cmd_identifier] = STATE(2812), - [sym_attribute_list] = STATE(4734), - [sym_attribute] = STATE(4937), - [sym_decl_def] = STATE(4296), - [sym_decl_export] = STATE(4296), - [sym_decl_extern] = STATE(4296), - [sym_decl_module] = STATE(4296), - [sym_decl_use] = STATE(4296), - [sym__ctrl_statement] = STATE(4297), - [sym__ctrl_expression] = STATE(3348), - [sym_ctrl_for] = STATE(4299), - [sym_ctrl_loop] = STATE(4299), - [sym_ctrl_while] = STATE(4299), - [sym_ctrl_if] = STATE(3352), - [sym_ctrl_match] = STATE(3352), - [sym_ctrl_try] = STATE(3352), - [sym__stmt_let_shortcut] = STATE(3358), - [sym_pipe_element] = STATE(2956), - [sym_where_command] = STATE(3348), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(704), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(481), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(135), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3348), - [sym_comment] = STATE(91), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(3955), - [aux_sym_pipe_element_repeat2] = STATE(285), - [anon_sym_export] = ACTIONS(601), - [anon_sym_alias] = ACTIONS(604), - [anon_sym_let] = ACTIONS(607), - [anon_sym_mut] = ACTIONS(610), - [anon_sym_const] = ACTIONS(613), - [aux_sym_cmd_identifier_token1] = ACTIONS(616), - [anon_sym_def] = ACTIONS(619), - [anon_sym_use] = ACTIONS(622), - [anon_sym_export_DASHenv] = ACTIONS(625), - [anon_sym_extern] = ACTIONS(628), - [anon_sym_module] = ACTIONS(631), - [anon_sym_for] = ACTIONS(634), - [anon_sym_loop] = ACTIONS(637), - [anon_sym_while] = ACTIONS(640), - [anon_sym_if] = ACTIONS(643), - [anon_sym_else] = ACTIONS(646), - [anon_sym_try] = ACTIONS(649), - [anon_sym_catch] = ACTIONS(646), - [anon_sym_match] = ACTIONS(652), - [anon_sym_in] = ACTIONS(655), - [anon_sym_true] = ACTIONS(658), - [anon_sym_false] = ACTIONS(658), - [anon_sym_null] = ACTIONS(661), - [aux_sym_cmd_identifier_token3] = ACTIONS(664), - [aux_sym_cmd_identifier_token4] = ACTIONS(664), - [aux_sym_cmd_identifier_token5] = ACTIONS(664), - [anon_sym_AT] = ACTIONS(667), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_LPAREN] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(676), - [anon_sym_DASH2] = ACTIONS(679), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_DOT_DOT] = ACTIONS(685), - [anon_sym_where] = ACTIONS(688), - [aux_sym_expr_unary_token1] = ACTIONS(691), - [anon_sym_DOT_DOT_EQ] = ACTIONS(694), - [anon_sym_DOT_DOT_LT] = ACTIONS(694), - [aux_sym__val_number_decimal_token1] = ACTIONS(697), - [aux_sym__val_number_decimal_token2] = ACTIONS(700), - [aux_sym__val_number_decimal_token3] = ACTIONS(703), - [aux_sym__val_number_decimal_token4] = ACTIONS(703), - [aux_sym__val_number_token1] = ACTIONS(706), - [aux_sym__val_number_token2] = ACTIONS(706), - [aux_sym__val_number_token3] = ACTIONS(706), - [anon_sym_0b] = ACTIONS(709), - [anon_sym_0o] = ACTIONS(712), - [anon_sym_0x] = ACTIONS(712), - [sym_val_date] = ACTIONS(715), - [anon_sym_DQUOTE] = ACTIONS(718), - [anon_sym_SQUOTE] = ACTIONS(721), - [anon_sym_BQUOTE] = ACTIONS(724), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(727), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(730), - [anon_sym_CARET] = ACTIONS(733), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(736), - }, [STATE(92)] = { [sym_comment] = STATE(92), [anon_sym_in] = ACTIONS(739), @@ -50970,6 +51686,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(94)] = { [sym_comment] = STATE(94), + [ts_builtin_sym_end] = ACTIONS(749), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -51019,7 +51736,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), @@ -51052,12 +51768,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(747), [anon_sym_bit_DASHor2] = ACTIONS(747), [anon_sym_DOT_DOT2] = ACTIONS(747), + [anon_sym_DOT] = ACTIONS(755), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token5] = ACTIONS(753), + [aux_sym__immediate_decimal_token5] = ACTIONS(757), [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), @@ -51078,114 +51794,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(95)] = { [sym_comment] = STATE(95), - [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_token1] = ACTIONS(755), - [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), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(96)] = { - [sym_comment] = STATE(96), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -51233,9 +51841,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), @@ -51292,9 +51900,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(96)] = { + [sym_comment] = STATE(96), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -51344,6 +51951,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), @@ -51376,12 +51984,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(747), [anon_sym_bit_DASHor2] = ACTIONS(747), [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT] = ACTIONS(763), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token5] = ACTIONS(765), + [aux_sym__immediate_decimal_token5] = ACTIONS(753), [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), @@ -51400,8 +52008,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(98)] = { - [sym_comment] = STATE(98), + [STATE(97)] = { + [sym_comment] = STATE(97), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -51486,8 +52094,8 @@ 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_token1] = ACTIONS(767), - [aux_sym__immediate_decimal_token5] = ACTIONS(769), + [aux_sym__immediate_decimal_token1] = ACTIONS(763), + [aux_sym__immediate_decimal_token5] = ACTIONS(765), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_err_GT] = ACTIONS(739), @@ -51508,116 +52116,116 @@ 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(99)] = { - [sym_comment] = STATE(99), - [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), + [STATE(98)] = { + [sym_comment] = STATE(98), + [anon_sym_in] = ACTIONS(767), + [anon_sym_STAR_STAR] = ACTIONS(769), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_STAR] = ACTIONS(767), + [anon_sym_SLASH] = ACTIONS(767), + [anon_sym_mod] = ACTIONS(769), + [anon_sym_SLASH_SLASH] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(767), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_bit_DASHshl] = ACTIONS(769), + [anon_sym_bit_DASHshr] = ACTIONS(769), + [anon_sym_EQ_TILDE] = ACTIONS(769), + [anon_sym_BANG_TILDE] = ACTIONS(769), + [anon_sym_like] = ACTIONS(769), + [anon_sym_not_DASHlike] = ACTIONS(769), + [anon_sym_bit_DASHand] = ACTIONS(769), + [anon_sym_bit_DASHxor] = ACTIONS(769), + [anon_sym_bit_DASHor] = ACTIONS(769), + [anon_sym_and] = ACTIONS(769), + [anon_sym_xor] = ACTIONS(769), + [anon_sym_or] = ACTIONS(769), + [anon_sym_in2] = ACTIONS(769), + [anon_sym_not_DASHin] = ACTIONS(769), + [anon_sym_has] = ACTIONS(769), + [anon_sym_not_DASHhas] = ACTIONS(769), + [anon_sym_starts_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(769), + [anon_sym_ends_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(769), + [anon_sym_EQ_EQ] = ACTIONS(769), + [anon_sym_BANG_EQ] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(767), + [anon_sym_LT_EQ] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(767), + [anon_sym_GT_EQ] = ACTIONS(769), + [aux_sym_cmd_identifier_token6] = ACTIONS(767), + [sym__newline] = ACTIONS(767), + [anon_sym_SEMI] = ACTIONS(767), + [anon_sym_PIPE] = ACTIONS(767), + [anon_sym_err_GT_PIPE] = ACTIONS(767), + [anon_sym_out_GT_PIPE] = ACTIONS(767), + [anon_sym_e_GT_PIPE] = ACTIONS(767), + [anon_sym_o_GT_PIPE] = ACTIONS(767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(767), + [anon_sym_GT2] = ACTIONS(767), + [anon_sym_DASH2] = ACTIONS(767), + [anon_sym_RBRACE] = ACTIONS(767), + [anon_sym_STAR2] = ACTIONS(767), + [anon_sym_and2] = ACTIONS(767), + [anon_sym_xor2] = ACTIONS(767), + [anon_sym_or2] = ACTIONS(767), + [anon_sym_not_DASHin2] = ACTIONS(767), + [anon_sym_has2] = ACTIONS(767), + [anon_sym_not_DASHhas2] = ACTIONS(767), + [anon_sym_starts_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(767), + [anon_sym_ends_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(767), + [anon_sym_EQ_EQ2] = ACTIONS(767), + [anon_sym_BANG_EQ2] = ACTIONS(767), + [anon_sym_LT2] = ACTIONS(767), + [anon_sym_LT_EQ2] = ACTIONS(767), + [anon_sym_GT_EQ2] = ACTIONS(767), + [anon_sym_EQ_TILDE2] = ACTIONS(767), + [anon_sym_BANG_TILDE2] = ACTIONS(767), + [anon_sym_like2] = ACTIONS(767), + [anon_sym_not_DASHlike2] = ACTIONS(767), + [anon_sym_STAR_STAR2] = ACTIONS(767), + [anon_sym_PLUS_PLUS2] = ACTIONS(767), + [anon_sym_SLASH2] = ACTIONS(767), + [anon_sym_mod2] = ACTIONS(767), + [anon_sym_SLASH_SLASH2] = ACTIONS(767), + [anon_sym_PLUS2] = ACTIONS(767), + [anon_sym_bit_DASHshl2] = ACTIONS(767), + [anon_sym_bit_DASHshr2] = ACTIONS(767), + [anon_sym_bit_DASHand2] = ACTIONS(767), + [anon_sym_bit_DASHxor2] = ACTIONS(767), + [anon_sym_bit_DASHor2] = ACTIONS(767), + [anon_sym_DOT_DOT2] = ACTIONS(767), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(769), + [aux_sym__immediate_decimal_token5] = ACTIONS(771), + [sym_filesize_unit] = ACTIONS(767), + [sym_duration_unit] = ACTIONS(769), + [anon_sym_COLON2] = ACTIONS(767), + [anon_sym_err_GT] = ACTIONS(767), + [anon_sym_out_GT] = ACTIONS(767), + [anon_sym_e_GT] = ACTIONS(767), + [anon_sym_o_GT] = ACTIONS(767), + [anon_sym_err_PLUSout_GT] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT] = ACTIONS(767), + [anon_sym_o_PLUSe_GT] = ACTIONS(767), + [anon_sym_e_PLUSo_GT] = ACTIONS(767), + [anon_sym_err_GT_GT] = ACTIONS(767), + [anon_sym_out_GT_GT] = ACTIONS(767), + [anon_sym_e_GT_GT] = ACTIONS(767), + [anon_sym_o_GT_GT] = ACTIONS(767), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(767), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(767), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(767), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(100)] = { - [sym_comment] = STATE(100), + [STATE(99)] = { + [sym_comment] = STATE(99), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -51665,9 +52273,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), @@ -51700,10 +52308,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(747), [anon_sym_bit_DASHor2] = ACTIONS(747), [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT] = ACTIONS(777), + [anon_sym_DOT] = ACTIONS(773), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token5] = ACTIONS(779), + [aux_sym__immediate_decimal_token5] = ACTIONS(775), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_err_GT] = ACTIONS(747), @@ -51724,8 +52332,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(101)] = { - [sym_comment] = STATE(101), + [STATE(100)] = { + [sym_comment] = STATE(100), [ts_builtin_sym_end] = ACTIONS(741), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), @@ -51810,329 +52418,8 @@ 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_token1] = ACTIONS(781), - [aux_sym__immediate_decimal_token5] = ACTIONS(783), - [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(102)] = { - [sym_comment] = STATE(102), - [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(785), - [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(103)] = { - [sym_comment] = STATE(103), - [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] = ACTIONS(787), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token5] = ACTIONS(789), - [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(104)] = { - [sym_comment] = STATE(104), - [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_token1] = ACTIONS(791), - [aux_sym__immediate_decimal_token5] = ACTIONS(793), + [aux_sym__immediate_decimal_token1] = ACTIONS(777), + [aux_sym__immediate_decimal_token5] = ACTIONS(779), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_err_GT] = ACTIONS(739), @@ -52153,222 +52440,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(105)] = { - [sym_expr_parenthesized] = STATE(2680), - [sym__spread_parenthesized] = STATE(3130), - [sym_val_range] = STATE(3137), - [sym__val_range] = STATE(4685), - [sym__value] = STATE(3137), - [sym_val_nothing] = STATE(3023), - [sym_val_bool] = STATE(2794), - [sym__spread_variable] = STATE(3138), - [sym_val_variable] = STATE(2654), - [sym_val_cellpath] = STATE(3023), - [sym_val_number] = STATE(3023), - [sym__val_number_decimal] = STATE(2409), - [sym__val_number] = STATE(3192), - [sym_val_duration] = STATE(3023), - [sym_val_filesize] = STATE(3023), - [sym_val_binary] = STATE(3023), - [sym_val_string] = STATE(3023), - [sym__raw_str] = STATE(2483), - [sym__str_double_quotes] = STATE(2483), - [sym__str_single_quotes] = STATE(2483), - [sym__str_back_ticks] = STATE(2483), - [sym_val_interpolated] = STATE(3023), - [sym__inter_single_quotes] = STATE(3094), - [sym__inter_double_quotes] = STATE(3095), - [sym_val_list] = STATE(3023), - [sym__spread_list] = STATE(3130), - [sym_val_record] = STATE(3023), - [sym_val_table] = STATE(3023), - [sym_val_closure] = STATE(3023), - [sym__cmd_arg] = STATE(3139), - [sym_redirection] = STATE(3140), - [sym__flag] = STATE(3141), - [sym_short_flag] = STATE(3142), - [sym_long_flag] = STATE(3142), - [sym_unquoted] = STATE(2867), - [sym__unquoted_with_expr] = STATE(3143), - [sym__unquoted_anonymous_prefix] = STATE(4685), - [sym_comment] = STATE(105), - [anon_sym_true] = ACTIONS(795), - [anon_sym_false] = ACTIONS(795), - [anon_sym_null] = ACTIONS(797), - [aux_sym_cmd_identifier_token3] = ACTIONS(799), - [aux_sym_cmd_identifier_token4] = ACTIONS(799), - [aux_sym_cmd_identifier_token5] = ACTIONS(799), - [sym__newline] = ACTIONS(801), - [sym__space] = ACTIONS(801), - [anon_sym_SEMI] = ACTIONS(804), - [anon_sym_PIPE] = ACTIONS(804), - [anon_sym_err_GT_PIPE] = ACTIONS(804), - [anon_sym_out_GT_PIPE] = ACTIONS(804), - [anon_sym_e_GT_PIPE] = ACTIONS(804), - [anon_sym_o_GT_PIPE] = ACTIONS(804), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(804), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(804), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(804), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(804), - [anon_sym_LBRACK] = ACTIONS(806), - [anon_sym_LPAREN] = ACTIONS(808), - [anon_sym_DOLLAR] = ACTIONS(810), - [anon_sym_DASH_DASH] = ACTIONS(812), - [anon_sym_DASH2] = ACTIONS(814), - [anon_sym_LBRACE] = ACTIONS(816), - [anon_sym_RBRACE] = ACTIONS(804), - [anon_sym_DOT_DOT] = ACTIONS(818), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(820), - [anon_sym_DOT_DOT_EQ] = ACTIONS(822), - [anon_sym_DOT_DOT_LT] = ACTIONS(822), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(824), - [aux_sym__val_number_decimal_token1] = ACTIONS(826), - [aux_sym__val_number_decimal_token2] = ACTIONS(826), - [aux_sym__val_number_decimal_token3] = ACTIONS(828), - [aux_sym__val_number_decimal_token4] = ACTIONS(828), - [aux_sym__val_number_token1] = ACTIONS(830), - [aux_sym__val_number_token2] = ACTIONS(830), - [aux_sym__val_number_token3] = ACTIONS(830), - [anon_sym_0b] = ACTIONS(832), - [anon_sym_0o] = ACTIONS(834), - [anon_sym_0x] = ACTIONS(834), - [sym_val_date] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(838), - [anon_sym_SQUOTE] = ACTIONS(840), - [anon_sym_BQUOTE] = ACTIONS(842), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(846), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(848), - [anon_sym_COLON2] = ACTIONS(850), - [anon_sym_err_GT] = ACTIONS(852), - [anon_sym_out_GT] = ACTIONS(852), - [anon_sym_e_GT] = ACTIONS(852), - [anon_sym_o_GT] = ACTIONS(852), - [anon_sym_err_PLUSout_GT] = ACTIONS(852), - [anon_sym_out_PLUSerr_GT] = ACTIONS(852), - [anon_sym_o_PLUSe_GT] = ACTIONS(852), - [anon_sym_e_PLUSo_GT] = ACTIONS(852), - [anon_sym_err_GT_GT] = ACTIONS(852), - [anon_sym_out_GT_GT] = ACTIONS(852), - [anon_sym_e_GT_GT] = ACTIONS(852), - [anon_sym_o_GT_GT] = ACTIONS(852), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(852), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(852), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(852), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(852), - [aux_sym_unquoted_token1] = ACTIONS(854), - [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(856), - }, - [STATE(106)] = { - [sym_comment] = STATE(106), - [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(858), - [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(107)] = { - [sym_comment] = STATE(107), + [STATE(101)] = { + [sym_comment] = STATE(101), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -52453,9 +52526,10 @@ 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_token1] = ACTIONS(781), + [aux_sym__immediate_decimal_token5] = ACTIONS(783), [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), @@ -52474,222 +52548,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(108)] = { - [sym_comment] = STATE(108), - [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(109)] = { - [sym_comment] = STATE(109), - [anon_sym_in] = ACTIONS(860), - [anon_sym_STAR_STAR] = ACTIONS(862), - [anon_sym_PLUS_PLUS] = ACTIONS(862), - [anon_sym_STAR] = ACTIONS(860), - [anon_sym_SLASH] = ACTIONS(860), - [anon_sym_mod] = ACTIONS(862), - [anon_sym_SLASH_SLASH] = ACTIONS(862), - [anon_sym_PLUS] = ACTIONS(860), - [anon_sym_DASH] = ACTIONS(862), - [anon_sym_bit_DASHshl] = ACTIONS(862), - [anon_sym_bit_DASHshr] = ACTIONS(862), - [anon_sym_EQ_TILDE] = ACTIONS(862), - [anon_sym_BANG_TILDE] = ACTIONS(862), - [anon_sym_like] = ACTIONS(862), - [anon_sym_not_DASHlike] = ACTIONS(862), - [anon_sym_bit_DASHand] = ACTIONS(862), - [anon_sym_bit_DASHxor] = ACTIONS(862), - [anon_sym_bit_DASHor] = ACTIONS(862), - [anon_sym_and] = ACTIONS(862), - [anon_sym_xor] = ACTIONS(862), - [anon_sym_or] = ACTIONS(862), - [anon_sym_in2] = ACTIONS(862), - [anon_sym_not_DASHin] = ACTIONS(862), - [anon_sym_has] = ACTIONS(862), - [anon_sym_not_DASHhas] = ACTIONS(862), - [anon_sym_starts_DASHwith] = ACTIONS(862), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(862), - [anon_sym_ends_DASHwith] = ACTIONS(862), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(862), - [anon_sym_EQ_EQ] = ACTIONS(862), - [anon_sym_BANG_EQ] = ACTIONS(862), - [anon_sym_LT] = ACTIONS(860), - [anon_sym_LT_EQ] = ACTIONS(862), - [anon_sym_GT] = ACTIONS(860), - [anon_sym_GT_EQ] = ACTIONS(862), - [aux_sym_cmd_identifier_token6] = ACTIONS(860), - [sym__newline] = ACTIONS(860), - [anon_sym_SEMI] = ACTIONS(860), - [anon_sym_PIPE] = ACTIONS(860), - [anon_sym_err_GT_PIPE] = ACTIONS(860), - [anon_sym_out_GT_PIPE] = ACTIONS(860), - [anon_sym_e_GT_PIPE] = ACTIONS(860), - [anon_sym_o_GT_PIPE] = ACTIONS(860), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(860), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(860), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(860), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(860), - [anon_sym_GT2] = ACTIONS(860), - [anon_sym_DASH2] = ACTIONS(860), - [anon_sym_RBRACE] = ACTIONS(860), - [anon_sym_STAR2] = ACTIONS(860), - [anon_sym_and2] = ACTIONS(860), - [anon_sym_xor2] = ACTIONS(860), - [anon_sym_or2] = ACTIONS(860), - [anon_sym_not_DASHin2] = ACTIONS(860), - [anon_sym_has2] = ACTIONS(860), - [anon_sym_not_DASHhas2] = ACTIONS(860), - [anon_sym_starts_DASHwith2] = ACTIONS(860), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(860), - [anon_sym_ends_DASHwith2] = ACTIONS(860), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(860), - [anon_sym_EQ_EQ2] = ACTIONS(860), - [anon_sym_BANG_EQ2] = ACTIONS(860), - [anon_sym_LT2] = ACTIONS(860), - [anon_sym_LT_EQ2] = ACTIONS(860), - [anon_sym_GT_EQ2] = ACTIONS(860), - [anon_sym_EQ_TILDE2] = ACTIONS(860), - [anon_sym_BANG_TILDE2] = ACTIONS(860), - [anon_sym_like2] = ACTIONS(860), - [anon_sym_not_DASHlike2] = ACTIONS(860), - [anon_sym_STAR_STAR2] = ACTIONS(860), - [anon_sym_PLUS_PLUS2] = ACTIONS(860), - [anon_sym_SLASH2] = ACTIONS(860), - [anon_sym_mod2] = ACTIONS(860), - [anon_sym_SLASH_SLASH2] = ACTIONS(860), - [anon_sym_PLUS2] = ACTIONS(860), - [anon_sym_bit_DASHshl2] = ACTIONS(860), - [anon_sym_bit_DASHshr2] = ACTIONS(860), - [anon_sym_bit_DASHand2] = ACTIONS(860), - [anon_sym_bit_DASHxor2] = ACTIONS(860), - [anon_sym_bit_DASHor2] = ACTIONS(860), - [anon_sym_DOT_DOT2] = ACTIONS(860), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(862), - [anon_sym_DOT_DOT_LT2] = ACTIONS(862), - [sym_filesize_unit] = ACTIONS(860), - [sym_duration_unit] = ACTIONS(862), - [anon_sym_COLON2] = ACTIONS(860), - [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), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(110)] = { - [sym_comment] = STATE(110), + [STATE(102)] = { + [sym_comment] = STATE(102), + [ts_builtin_sym_end] = ACTIONS(749), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -52739,7 +52600,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), @@ -52774,7 +52634,7 @@ 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_token5] = ACTIONS(761), + [aux_sym__immediate_decimal_token5] = ACTIONS(757), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_err_GT] = ACTIONS(747), @@ -52795,8 +52655,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(111)] = { - [sym_comment] = STATE(111), + [STATE(103)] = { + [sym_comment] = STATE(103), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -52881,7 +52741,7 @@ 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_token5] = ACTIONS(779), + [aux_sym__immediate_decimal_token5] = ACTIONS(761), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_err_GT] = ACTIONS(747), @@ -52902,9 +52762,757 @@ 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(112)] = { - [sym_comment] = STATE(112), - [ts_builtin_sym_end] = ACTIONS(749), + [STATE(104)] = { + [sym_expr_parenthesized] = STATE(2714), + [sym__spread_parenthesized] = STATE(3129), + [sym_val_range] = STATE(3130), + [sym__val_range] = STATE(4886), + [sym__value] = STATE(3130), + [sym_val_nothing] = STATE(3228), + [sym_val_bool] = STATE(2841), + [sym__spread_variable] = STATE(3131), + [sym_val_variable] = STATE(2686), + [sym_val_cellpath] = STATE(3228), + [sym_val_number] = STATE(3228), + [sym__val_number_decimal] = STATE(2406), + [sym__val_number] = STATE(3229), + [sym_val_duration] = STATE(3228), + [sym_val_filesize] = STATE(3228), + [sym_val_binary] = STATE(3228), + [sym_val_string] = STATE(3228), + [sym__raw_str] = STATE(2477), + [sym__str_double_quotes] = STATE(2477), + [sym__str_single_quotes] = STATE(2477), + [sym__str_back_ticks] = STATE(2477), + [sym_val_interpolated] = STATE(3228), + [sym__inter_single_quotes] = STATE(3047), + [sym__inter_double_quotes] = STATE(3048), + [sym_val_list] = STATE(3228), + [sym__spread_list] = STATE(3129), + [sym_val_record] = STATE(3228), + [sym_val_table] = STATE(3228), + [sym_val_closure] = STATE(3228), + [sym__cmd_arg] = STATE(3132), + [sym_redirection] = STATE(3133), + [sym__flag] = STATE(3134), + [sym_short_flag] = STATE(3135), + [sym_long_flag] = STATE(3135), + [sym_unquoted] = STATE(2742), + [sym__unquoted_with_expr] = STATE(3136), + [sym__unquoted_anonymous_prefix] = STATE(4886), + [sym_comment] = STATE(104), + [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(105)] = { + [sym_comment] = STATE(105), + [anon_sym_in] = ACTIONS(767), + [anon_sym_STAR_STAR] = ACTIONS(769), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_STAR] = ACTIONS(767), + [anon_sym_SLASH] = ACTIONS(767), + [anon_sym_mod] = ACTIONS(769), + [anon_sym_SLASH_SLASH] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(767), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_bit_DASHshl] = ACTIONS(769), + [anon_sym_bit_DASHshr] = ACTIONS(769), + [anon_sym_EQ_TILDE] = ACTIONS(769), + [anon_sym_BANG_TILDE] = ACTIONS(769), + [anon_sym_like] = ACTIONS(769), + [anon_sym_not_DASHlike] = ACTIONS(769), + [anon_sym_bit_DASHand] = ACTIONS(769), + [anon_sym_bit_DASHxor] = ACTIONS(769), + [anon_sym_bit_DASHor] = ACTIONS(769), + [anon_sym_and] = ACTIONS(769), + [anon_sym_xor] = ACTIONS(769), + [anon_sym_or] = ACTIONS(769), + [anon_sym_in2] = ACTIONS(769), + [anon_sym_not_DASHin] = ACTIONS(769), + [anon_sym_has] = ACTIONS(769), + [anon_sym_not_DASHhas] = ACTIONS(769), + [anon_sym_starts_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(769), + [anon_sym_ends_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(769), + [anon_sym_EQ_EQ] = ACTIONS(769), + [anon_sym_BANG_EQ] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(767), + [anon_sym_LT_EQ] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(767), + [anon_sym_GT_EQ] = ACTIONS(769), + [aux_sym_cmd_identifier_token6] = ACTIONS(767), + [sym__newline] = ACTIONS(767), + [anon_sym_SEMI] = ACTIONS(767), + [anon_sym_PIPE] = ACTIONS(767), + [anon_sym_err_GT_PIPE] = ACTIONS(767), + [anon_sym_out_GT_PIPE] = ACTIONS(767), + [anon_sym_e_GT_PIPE] = ACTIONS(767), + [anon_sym_o_GT_PIPE] = ACTIONS(767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(767), + [anon_sym_RPAREN] = ACTIONS(767), + [anon_sym_GT2] = ACTIONS(767), + [anon_sym_DASH2] = ACTIONS(767), + [anon_sym_STAR2] = ACTIONS(767), + [anon_sym_and2] = ACTIONS(767), + [anon_sym_xor2] = ACTIONS(767), + [anon_sym_or2] = ACTIONS(767), + [anon_sym_not_DASHin2] = ACTIONS(767), + [anon_sym_has2] = ACTIONS(767), + [anon_sym_not_DASHhas2] = ACTIONS(767), + [anon_sym_starts_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(767), + [anon_sym_ends_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(767), + [anon_sym_EQ_EQ2] = ACTIONS(767), + [anon_sym_BANG_EQ2] = ACTIONS(767), + [anon_sym_LT2] = ACTIONS(767), + [anon_sym_LT_EQ2] = ACTIONS(767), + [anon_sym_GT_EQ2] = ACTIONS(767), + [anon_sym_EQ_TILDE2] = ACTIONS(767), + [anon_sym_BANG_TILDE2] = ACTIONS(767), + [anon_sym_like2] = ACTIONS(767), + [anon_sym_not_DASHlike2] = ACTIONS(767), + [anon_sym_STAR_STAR2] = ACTIONS(767), + [anon_sym_PLUS_PLUS2] = ACTIONS(767), + [anon_sym_SLASH2] = ACTIONS(767), + [anon_sym_mod2] = ACTIONS(767), + [anon_sym_SLASH_SLASH2] = ACTIONS(767), + [anon_sym_PLUS2] = ACTIONS(767), + [anon_sym_bit_DASHshl2] = ACTIONS(767), + [anon_sym_bit_DASHshr2] = ACTIONS(767), + [anon_sym_bit_DASHand2] = ACTIONS(767), + [anon_sym_bit_DASHxor2] = ACTIONS(767), + [anon_sym_bit_DASHor2] = ACTIONS(767), + [anon_sym_DOT_DOT2] = ACTIONS(767), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(769), + [aux_sym__immediate_decimal_token5] = ACTIONS(845), + [sym_filesize_unit] = ACTIONS(767), + [sym_duration_unit] = ACTIONS(769), + [anon_sym_err_GT] = ACTIONS(767), + [anon_sym_out_GT] = ACTIONS(767), + [anon_sym_e_GT] = ACTIONS(767), + [anon_sym_o_GT] = ACTIONS(767), + [anon_sym_err_PLUSout_GT] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT] = ACTIONS(767), + [anon_sym_o_PLUSe_GT] = ACTIONS(767), + [anon_sym_e_PLUSo_GT] = ACTIONS(767), + [anon_sym_err_GT_GT] = ACTIONS(767), + [anon_sym_out_GT_GT] = ACTIONS(767), + [anon_sym_e_GT_GT] = ACTIONS(767), + [anon_sym_o_GT_GT] = ACTIONS(767), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(767), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(767), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(106)] = { + [sym_comment] = STATE(106), + [anon_sym_in] = ACTIONS(847), + [anon_sym_STAR_STAR] = ACTIONS(849), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_STAR] = ACTIONS(851), + [anon_sym_SLASH] = ACTIONS(851), + [anon_sym_mod] = ACTIONS(849), + [anon_sym_SLASH_SLASH] = ACTIONS(849), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(849), + [anon_sym_bit_DASHshl] = ACTIONS(849), + [anon_sym_bit_DASHshr] = ACTIONS(849), + [anon_sym_EQ_TILDE] = ACTIONS(849), + [anon_sym_BANG_TILDE] = ACTIONS(849), + [anon_sym_like] = ACTIONS(849), + [anon_sym_not_DASHlike] = ACTIONS(849), + [anon_sym_bit_DASHand] = ACTIONS(849), + [anon_sym_bit_DASHxor] = ACTIONS(849), + [anon_sym_bit_DASHor] = ACTIONS(849), + [anon_sym_and] = ACTIONS(849), + [anon_sym_xor] = ACTIONS(849), + [anon_sym_or] = ACTIONS(849), + [anon_sym_in2] = ACTIONS(849), + [anon_sym_not_DASHin] = ACTIONS(849), + [anon_sym_has] = ACTIONS(849), + [anon_sym_not_DASHhas] = ACTIONS(849), + [anon_sym_starts_DASHwith] = ACTIONS(849), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(849), + [anon_sym_ends_DASHwith] = ACTIONS(849), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(849), + [anon_sym_EQ_EQ] = ACTIONS(849), + [anon_sym_BANG_EQ] = ACTIONS(849), + [anon_sym_LT] = ACTIONS(851), + [anon_sym_LT_EQ] = ACTIONS(849), + [anon_sym_GT] = ACTIONS(851), + [anon_sym_GT_EQ] = ACTIONS(849), + [aux_sym_cmd_identifier_token6] = ACTIONS(853), + [sym__newline] = ACTIONS(847), + [anon_sym_SEMI] = ACTIONS(847), + [anon_sym_PIPE] = ACTIONS(847), + [anon_sym_err_GT_PIPE] = ACTIONS(847), + [anon_sym_out_GT_PIPE] = ACTIONS(847), + [anon_sym_e_GT_PIPE] = ACTIONS(847), + [anon_sym_o_GT_PIPE] = ACTIONS(847), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(847), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(847), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(847), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(847), + [anon_sym_GT2] = ACTIONS(847), + [anon_sym_DASH2] = ACTIONS(847), + [anon_sym_RBRACE] = ACTIONS(847), + [anon_sym_STAR2] = ACTIONS(847), + [anon_sym_and2] = ACTIONS(847), + [anon_sym_xor2] = ACTIONS(847), + [anon_sym_or2] = ACTIONS(847), + [anon_sym_not_DASHin2] = ACTIONS(847), + [anon_sym_has2] = ACTIONS(847), + [anon_sym_not_DASHhas2] = ACTIONS(847), + [anon_sym_starts_DASHwith2] = ACTIONS(847), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(847), + [anon_sym_ends_DASHwith2] = ACTIONS(847), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(847), + [anon_sym_EQ_EQ2] = ACTIONS(847), + [anon_sym_BANG_EQ2] = ACTIONS(847), + [anon_sym_LT2] = ACTIONS(847), + [anon_sym_LT_EQ2] = ACTIONS(847), + [anon_sym_GT_EQ2] = ACTIONS(847), + [anon_sym_EQ_TILDE2] = ACTIONS(847), + [anon_sym_BANG_TILDE2] = ACTIONS(847), + [anon_sym_like2] = ACTIONS(847), + [anon_sym_not_DASHlike2] = ACTIONS(847), + [anon_sym_STAR_STAR2] = ACTIONS(847), + [anon_sym_PLUS_PLUS2] = ACTIONS(847), + [anon_sym_SLASH2] = ACTIONS(847), + [anon_sym_mod2] = ACTIONS(847), + [anon_sym_SLASH_SLASH2] = ACTIONS(847), + [anon_sym_PLUS2] = ACTIONS(847), + [anon_sym_bit_DASHshl2] = ACTIONS(847), + [anon_sym_bit_DASHshr2] = ACTIONS(847), + [anon_sym_bit_DASHand2] = ACTIONS(847), + [anon_sym_bit_DASHxor2] = ACTIONS(847), + [anon_sym_bit_DASHor2] = ACTIONS(847), + [anon_sym_DOT_DOT2] = ACTIONS(855), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(857), + [anon_sym_DOT_DOT_LT2] = ACTIONS(857), + [sym_filesize_unit] = ACTIONS(859), + [sym_duration_unit] = ACTIONS(861), + [anon_sym_COLON2] = ACTIONS(847), + [anon_sym_err_GT] = ACTIONS(847), + [anon_sym_out_GT] = ACTIONS(847), + [anon_sym_e_GT] = ACTIONS(847), + [anon_sym_o_GT] = ACTIONS(847), + [anon_sym_err_PLUSout_GT] = ACTIONS(847), + [anon_sym_out_PLUSerr_GT] = ACTIONS(847), + [anon_sym_o_PLUSe_GT] = ACTIONS(847), + [anon_sym_e_PLUSo_GT] = ACTIONS(847), + [anon_sym_err_GT_GT] = ACTIONS(847), + [anon_sym_out_GT_GT] = ACTIONS(847), + [anon_sym_e_GT_GT] = ACTIONS(847), + [anon_sym_o_GT_GT] = ACTIONS(847), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(847), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(847), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(847), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(847), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(107)] = { + [sym_comment] = STATE(107), + [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), + [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), + [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(108)] = { + [sym_comment] = STATE(108), + [anon_sym_in] = ACTIONS(863), + [anon_sym_STAR_STAR] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_STAR] = ACTIONS(863), + [anon_sym_SLASH] = ACTIONS(863), + [anon_sym_mod] = ACTIONS(865), + [anon_sym_SLASH_SLASH] = ACTIONS(865), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(865), + [anon_sym_bit_DASHshl] = ACTIONS(865), + [anon_sym_bit_DASHshr] = ACTIONS(865), + [anon_sym_EQ_TILDE] = ACTIONS(865), + [anon_sym_BANG_TILDE] = ACTIONS(865), + [anon_sym_like] = ACTIONS(865), + [anon_sym_not_DASHlike] = ACTIONS(865), + [anon_sym_bit_DASHand] = ACTIONS(865), + [anon_sym_bit_DASHxor] = ACTIONS(865), + [anon_sym_bit_DASHor] = ACTIONS(865), + [anon_sym_and] = ACTIONS(865), + [anon_sym_xor] = ACTIONS(865), + [anon_sym_or] = ACTIONS(865), + [anon_sym_in2] = ACTIONS(865), + [anon_sym_not_DASHin] = ACTIONS(865), + [anon_sym_has] = ACTIONS(865), + [anon_sym_not_DASHhas] = ACTIONS(865), + [anon_sym_starts_DASHwith] = ACTIONS(865), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(865), + [anon_sym_ends_DASHwith] = ACTIONS(865), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(865), + [anon_sym_EQ_EQ] = ACTIONS(865), + [anon_sym_BANG_EQ] = ACTIONS(865), + [anon_sym_LT] = ACTIONS(863), + [anon_sym_LT_EQ] = ACTIONS(865), + [anon_sym_GT] = ACTIONS(863), + [anon_sym_GT_EQ] = ACTIONS(865), + [aux_sym_cmd_identifier_token6] = ACTIONS(863), + [sym__newline] = ACTIONS(863), + [anon_sym_SEMI] = ACTIONS(863), + [anon_sym_PIPE] = ACTIONS(863), + [anon_sym_err_GT_PIPE] = ACTIONS(863), + [anon_sym_out_GT_PIPE] = ACTIONS(863), + [anon_sym_e_GT_PIPE] = ACTIONS(863), + [anon_sym_o_GT_PIPE] = ACTIONS(863), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(863), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(863), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(863), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(863), + [anon_sym_GT2] = ACTIONS(863), + [anon_sym_DASH2] = ACTIONS(863), + [anon_sym_RBRACE] = ACTIONS(863), + [anon_sym_STAR2] = ACTIONS(863), + [anon_sym_and2] = ACTIONS(863), + [anon_sym_xor2] = ACTIONS(863), + [anon_sym_or2] = ACTIONS(863), + [anon_sym_not_DASHin2] = ACTIONS(863), + [anon_sym_has2] = ACTIONS(863), + [anon_sym_not_DASHhas2] = ACTIONS(863), + [anon_sym_starts_DASHwith2] = ACTIONS(863), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(863), + [anon_sym_ends_DASHwith2] = ACTIONS(863), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(863), + [anon_sym_EQ_EQ2] = ACTIONS(863), + [anon_sym_BANG_EQ2] = ACTIONS(863), + [anon_sym_LT2] = ACTIONS(863), + [anon_sym_LT_EQ2] = ACTIONS(863), + [anon_sym_GT_EQ2] = ACTIONS(863), + [anon_sym_EQ_TILDE2] = ACTIONS(863), + [anon_sym_BANG_TILDE2] = ACTIONS(863), + [anon_sym_like2] = ACTIONS(863), + [anon_sym_not_DASHlike2] = ACTIONS(863), + [anon_sym_STAR_STAR2] = ACTIONS(863), + [anon_sym_PLUS_PLUS2] = ACTIONS(863), + [anon_sym_SLASH2] = ACTIONS(863), + [anon_sym_mod2] = ACTIONS(863), + [anon_sym_SLASH_SLASH2] = ACTIONS(863), + [anon_sym_PLUS2] = ACTIONS(863), + [anon_sym_bit_DASHshl2] = ACTIONS(863), + [anon_sym_bit_DASHshr2] = ACTIONS(863), + [anon_sym_bit_DASHand2] = ACTIONS(863), + [anon_sym_bit_DASHxor2] = ACTIONS(863), + [anon_sym_bit_DASHor2] = ACTIONS(863), + [anon_sym_DOT_DOT2] = ACTIONS(863), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(865), + [anon_sym_DOT_DOT_LT2] = ACTIONS(865), + [sym_filesize_unit] = ACTIONS(863), + [sym_duration_unit] = ACTIONS(865), + [anon_sym_COLON2] = ACTIONS(863), + [anon_sym_err_GT] = ACTIONS(863), + [anon_sym_out_GT] = ACTIONS(863), + [anon_sym_e_GT] = ACTIONS(863), + [anon_sym_o_GT] = ACTIONS(863), + [anon_sym_err_PLUSout_GT] = ACTIONS(863), + [anon_sym_out_PLUSerr_GT] = ACTIONS(863), + [anon_sym_o_PLUSe_GT] = ACTIONS(863), + [anon_sym_e_PLUSo_GT] = ACTIONS(863), + [anon_sym_err_GT_GT] = ACTIONS(863), + [anon_sym_out_GT_GT] = ACTIONS(863), + [anon_sym_e_GT_GT] = ACTIONS(863), + [anon_sym_o_GT_GT] = ACTIONS(863), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(863), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(863), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(863), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(863), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(109)] = { + [sym_comment] = STATE(109), + [anon_sym_in] = ACTIONS(767), + [anon_sym_STAR_STAR] = ACTIONS(769), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_STAR] = ACTIONS(767), + [anon_sym_SLASH] = ACTIONS(767), + [anon_sym_mod] = ACTIONS(769), + [anon_sym_SLASH_SLASH] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(767), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_bit_DASHshl] = ACTIONS(769), + [anon_sym_bit_DASHshr] = ACTIONS(769), + [anon_sym_EQ_TILDE] = ACTIONS(769), + [anon_sym_BANG_TILDE] = ACTIONS(769), + [anon_sym_like] = ACTIONS(769), + [anon_sym_not_DASHlike] = ACTIONS(769), + [anon_sym_bit_DASHand] = ACTIONS(769), + [anon_sym_bit_DASHxor] = ACTIONS(769), + [anon_sym_bit_DASHor] = ACTIONS(769), + [anon_sym_and] = ACTIONS(769), + [anon_sym_xor] = ACTIONS(769), + [anon_sym_or] = ACTIONS(769), + [anon_sym_in2] = ACTIONS(769), + [anon_sym_not_DASHin] = ACTIONS(769), + [anon_sym_has] = ACTIONS(769), + [anon_sym_not_DASHhas] = ACTIONS(769), + [anon_sym_starts_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(769), + [anon_sym_ends_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(769), + [anon_sym_EQ_EQ] = ACTIONS(769), + [anon_sym_BANG_EQ] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(767), + [anon_sym_LT_EQ] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(767), + [anon_sym_GT_EQ] = ACTIONS(769), + [aux_sym_cmd_identifier_token6] = ACTIONS(767), + [sym__newline] = ACTIONS(767), + [anon_sym_SEMI] = ACTIONS(767), + [anon_sym_PIPE] = ACTIONS(767), + [anon_sym_err_GT_PIPE] = ACTIONS(767), + [anon_sym_out_GT_PIPE] = ACTIONS(767), + [anon_sym_e_GT_PIPE] = ACTIONS(767), + [anon_sym_o_GT_PIPE] = ACTIONS(767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(767), + [anon_sym_GT2] = ACTIONS(767), + [anon_sym_DASH2] = ACTIONS(767), + [anon_sym_RBRACE] = ACTIONS(767), + [anon_sym_STAR2] = ACTIONS(767), + [anon_sym_and2] = ACTIONS(767), + [anon_sym_xor2] = ACTIONS(767), + [anon_sym_or2] = ACTIONS(767), + [anon_sym_not_DASHin2] = ACTIONS(767), + [anon_sym_has2] = ACTIONS(767), + [anon_sym_not_DASHhas2] = ACTIONS(767), + [anon_sym_starts_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(767), + [anon_sym_ends_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(767), + [anon_sym_EQ_EQ2] = ACTIONS(767), + [anon_sym_BANG_EQ2] = ACTIONS(767), + [anon_sym_LT2] = ACTIONS(767), + [anon_sym_LT_EQ2] = ACTIONS(767), + [anon_sym_GT_EQ2] = ACTIONS(767), + [anon_sym_EQ_TILDE2] = ACTIONS(767), + [anon_sym_BANG_TILDE2] = ACTIONS(767), + [anon_sym_like2] = ACTIONS(767), + [anon_sym_not_DASHlike2] = ACTIONS(767), + [anon_sym_STAR_STAR2] = ACTIONS(767), + [anon_sym_PLUS_PLUS2] = ACTIONS(767), + [anon_sym_SLASH2] = ACTIONS(767), + [anon_sym_mod2] = ACTIONS(767), + [anon_sym_SLASH_SLASH2] = ACTIONS(767), + [anon_sym_PLUS2] = ACTIONS(767), + [anon_sym_bit_DASHshl2] = ACTIONS(767), + [anon_sym_bit_DASHshr2] = ACTIONS(767), + [anon_sym_bit_DASHand2] = ACTIONS(767), + [anon_sym_bit_DASHxor2] = ACTIONS(767), + [anon_sym_bit_DASHor2] = ACTIONS(767), + [anon_sym_DOT_DOT2] = ACTIONS(767), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(769), + [sym_filesize_unit] = ACTIONS(767), + [sym_duration_unit] = ACTIONS(769), + [anon_sym_COLON2] = ACTIONS(767), + [anon_sym_err_GT] = ACTIONS(767), + [anon_sym_out_GT] = ACTIONS(767), + [anon_sym_e_GT] = ACTIONS(767), + [anon_sym_o_GT] = ACTIONS(767), + [anon_sym_err_PLUSout_GT] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT] = ACTIONS(767), + [anon_sym_o_PLUSe_GT] = ACTIONS(767), + [anon_sym_e_PLUSo_GT] = ACTIONS(767), + [anon_sym_err_GT_GT] = ACTIONS(767), + [anon_sym_out_GT_GT] = ACTIONS(767), + [anon_sym_e_GT_GT] = ACTIONS(767), + [anon_sym_o_GT_GT] = ACTIONS(767), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(767), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(767), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(110)] = { + [sym_comment] = STATE(110), + [anon_sym_in] = ACTIONS(767), + [anon_sym_STAR_STAR] = ACTIONS(769), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_STAR] = ACTIONS(767), + [anon_sym_SLASH] = ACTIONS(767), + [anon_sym_mod] = ACTIONS(769), + [anon_sym_SLASH_SLASH] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(767), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_bit_DASHshl] = ACTIONS(769), + [anon_sym_bit_DASHshr] = ACTIONS(769), + [anon_sym_EQ_TILDE] = ACTIONS(769), + [anon_sym_BANG_TILDE] = ACTIONS(769), + [anon_sym_like] = ACTIONS(769), + [anon_sym_not_DASHlike] = ACTIONS(769), + [anon_sym_bit_DASHand] = ACTIONS(769), + [anon_sym_bit_DASHxor] = ACTIONS(769), + [anon_sym_bit_DASHor] = ACTIONS(769), + [anon_sym_and] = ACTIONS(769), + [anon_sym_xor] = ACTIONS(769), + [anon_sym_or] = ACTIONS(769), + [anon_sym_in2] = ACTIONS(769), + [anon_sym_not_DASHin] = ACTIONS(769), + [anon_sym_has] = ACTIONS(769), + [anon_sym_not_DASHhas] = ACTIONS(769), + [anon_sym_starts_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(769), + [anon_sym_ends_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(769), + [anon_sym_EQ_EQ] = ACTIONS(769), + [anon_sym_BANG_EQ] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(767), + [anon_sym_LT_EQ] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(767), + [anon_sym_GT_EQ] = ACTIONS(769), + [aux_sym_cmd_identifier_token6] = ACTIONS(767), + [sym__newline] = ACTIONS(767), + [anon_sym_SEMI] = ACTIONS(767), + [anon_sym_PIPE] = ACTIONS(767), + [anon_sym_err_GT_PIPE] = ACTIONS(767), + [anon_sym_out_GT_PIPE] = ACTIONS(767), + [anon_sym_e_GT_PIPE] = ACTIONS(767), + [anon_sym_o_GT_PIPE] = ACTIONS(767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(767), + [anon_sym_GT2] = ACTIONS(767), + [anon_sym_DASH2] = ACTIONS(767), + [anon_sym_RBRACE] = ACTIONS(767), + [anon_sym_STAR2] = ACTIONS(767), + [anon_sym_and2] = ACTIONS(767), + [anon_sym_xor2] = ACTIONS(767), + [anon_sym_or2] = ACTIONS(767), + [anon_sym_not_DASHin2] = ACTIONS(767), + [anon_sym_has2] = ACTIONS(767), + [anon_sym_not_DASHhas2] = ACTIONS(767), + [anon_sym_starts_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(767), + [anon_sym_ends_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(767), + [anon_sym_EQ_EQ2] = ACTIONS(767), + [anon_sym_BANG_EQ2] = ACTIONS(767), + [anon_sym_LT2] = ACTIONS(767), + [anon_sym_LT_EQ2] = ACTIONS(767), + [anon_sym_GT_EQ2] = ACTIONS(767), + [anon_sym_EQ_TILDE2] = ACTIONS(767), + [anon_sym_BANG_TILDE2] = ACTIONS(767), + [anon_sym_like2] = ACTIONS(767), + [anon_sym_not_DASHlike2] = ACTIONS(767), + [anon_sym_STAR_STAR2] = ACTIONS(767), + [anon_sym_PLUS_PLUS2] = ACTIONS(767), + [anon_sym_SLASH2] = ACTIONS(767), + [anon_sym_mod2] = ACTIONS(767), + [anon_sym_SLASH_SLASH2] = ACTIONS(767), + [anon_sym_PLUS2] = ACTIONS(767), + [anon_sym_bit_DASHshl2] = ACTIONS(767), + [anon_sym_bit_DASHshr2] = ACTIONS(767), + [anon_sym_bit_DASHand2] = ACTIONS(767), + [anon_sym_bit_DASHxor2] = ACTIONS(767), + [anon_sym_bit_DASHor2] = ACTIONS(767), + [anon_sym_DOT_DOT2] = ACTIONS(767), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(769), + [aux_sym__immediate_decimal_token5] = ACTIONS(867), + [sym_filesize_unit] = ACTIONS(767), + [sym_duration_unit] = ACTIONS(769), + [anon_sym_err_GT] = ACTIONS(767), + [anon_sym_out_GT] = ACTIONS(767), + [anon_sym_e_GT] = ACTIONS(767), + [anon_sym_o_GT] = ACTIONS(767), + [anon_sym_err_PLUSout_GT] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT] = ACTIONS(767), + [anon_sym_o_PLUSe_GT] = ACTIONS(767), + [anon_sym_e_PLUSo_GT] = ACTIONS(767), + [anon_sym_err_GT_GT] = ACTIONS(767), + [anon_sym_out_GT_GT] = ACTIONS(767), + [anon_sym_e_GT_GT] = ACTIONS(767), + [anon_sym_o_GT_GT] = ACTIONS(767), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(767), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(767), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(767), + [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), @@ -52986,9 +53594,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(747), [anon_sym_bit_DASHor2] = ACTIONS(747), [anon_sym_DOT_DOT2] = ACTIONS(747), + [anon_sym_DOT] = ACTIONS(869), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token5] = ACTIONS(765), + [aux_sym__immediate_decimal_token5] = ACTIONS(871), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_err_GT] = ACTIONS(747), @@ -53009,435 +53618,115 @@ 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(113)] = { - [sym_comment] = STATE(113), - [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), - [anon_sym_POUND] = ACTIONS(103), - }, - [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(115)] = { - [sym_expr_parenthesized] = STATE(2680), - [sym__spread_parenthesized] = STATE(3130), - [sym_val_range] = STATE(3137), - [sym__val_range] = STATE(4685), - [sym__value] = STATE(3137), - [sym_val_nothing] = STATE(3023), - [sym_val_bool] = STATE(2794), - [sym__spread_variable] = STATE(3138), - [sym_val_variable] = STATE(2654), - [sym_val_cellpath] = STATE(3023), - [sym_val_number] = STATE(3023), - [sym__val_number_decimal] = STATE(2409), - [sym__val_number] = STATE(3192), - [sym_val_duration] = STATE(3023), - [sym_val_filesize] = STATE(3023), - [sym_val_binary] = STATE(3023), - [sym_val_string] = STATE(3023), - [sym__raw_str] = STATE(2483), - [sym__str_double_quotes] = STATE(2483), - [sym__str_single_quotes] = STATE(2483), - [sym__str_back_ticks] = STATE(2483), - [sym_val_interpolated] = STATE(3023), - [sym__inter_single_quotes] = STATE(3094), - [sym__inter_double_quotes] = STATE(3095), - [sym_val_list] = STATE(3023), - [sym__spread_list] = STATE(3130), - [sym_val_record] = STATE(3023), - [sym_val_table] = STATE(3023), - [sym_val_closure] = STATE(3023), - [sym__cmd_arg] = STATE(3139), - [sym_redirection] = STATE(3140), - [sym__flag] = STATE(3141), - [sym_short_flag] = STATE(3142), - [sym_long_flag] = STATE(3142), - [sym_unquoted] = STATE(2867), - [sym__unquoted_with_expr] = STATE(3143), - [sym__unquoted_anonymous_prefix] = STATE(4685), - [sym_comment] = STATE(115), - [anon_sym_true] = ACTIONS(795), - [anon_sym_false] = ACTIONS(795), - [anon_sym_null] = ACTIONS(797), - [aux_sym_cmd_identifier_token3] = ACTIONS(799), - [aux_sym_cmd_identifier_token4] = ACTIONS(799), - [aux_sym_cmd_identifier_token5] = ACTIONS(799), - [sym__newline] = ACTIONS(804), - [sym__space] = ACTIONS(882), - [anon_sym_SEMI] = ACTIONS(804), - [anon_sym_PIPE] = ACTIONS(804), - [anon_sym_err_GT_PIPE] = ACTIONS(804), - [anon_sym_out_GT_PIPE] = ACTIONS(804), - [anon_sym_e_GT_PIPE] = ACTIONS(804), - [anon_sym_o_GT_PIPE] = ACTIONS(804), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(804), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(804), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(804), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(804), - [anon_sym_LBRACK] = ACTIONS(806), - [anon_sym_LPAREN] = ACTIONS(808), - [anon_sym_RPAREN] = ACTIONS(804), - [anon_sym_DOLLAR] = ACTIONS(810), - [anon_sym_DASH_DASH] = ACTIONS(812), - [anon_sym_DASH2] = ACTIONS(814), - [anon_sym_LBRACE] = ACTIONS(816), - [anon_sym_RBRACE] = ACTIONS(804), - [anon_sym_DOT_DOT] = ACTIONS(818), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(820), - [anon_sym_DOT_DOT_EQ] = ACTIONS(822), - [anon_sym_DOT_DOT_LT] = ACTIONS(822), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(824), - [aux_sym__val_number_decimal_token1] = ACTIONS(826), - [aux_sym__val_number_decimal_token2] = ACTIONS(826), - [aux_sym__val_number_decimal_token3] = ACTIONS(828), - [aux_sym__val_number_decimal_token4] = ACTIONS(828), - [aux_sym__val_number_token1] = ACTIONS(830), - [aux_sym__val_number_token2] = ACTIONS(830), - [aux_sym__val_number_token3] = ACTIONS(830), - [anon_sym_0b] = ACTIONS(832), - [anon_sym_0o] = ACTIONS(834), - [anon_sym_0x] = ACTIONS(834), - [sym_val_date] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(838), - [anon_sym_SQUOTE] = ACTIONS(840), - [anon_sym_BQUOTE] = ACTIONS(842), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(846), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(848), - [anon_sym_err_GT] = ACTIONS(852), - [anon_sym_out_GT] = ACTIONS(852), - [anon_sym_e_GT] = ACTIONS(852), - [anon_sym_o_GT] = ACTIONS(852), - [anon_sym_err_PLUSout_GT] = ACTIONS(852), - [anon_sym_out_PLUSerr_GT] = ACTIONS(852), - [anon_sym_o_PLUSe_GT] = ACTIONS(852), - [anon_sym_e_PLUSo_GT] = ACTIONS(852), - [anon_sym_err_GT_GT] = ACTIONS(852), - [anon_sym_out_GT_GT] = ACTIONS(852), - [anon_sym_e_GT_GT] = ACTIONS(852), - [anon_sym_o_GT_GT] = ACTIONS(852), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(852), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(852), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(852), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(852), - [aux_sym_unquoted_token1] = ACTIONS(854), - [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(856), - }, - [STATE(116)] = { - [sym_comment] = STATE(116), - [ts_builtin_sym_end] = ACTIONS(862), - [anon_sym_in] = ACTIONS(860), - [anon_sym_STAR_STAR] = ACTIONS(862), - [anon_sym_PLUS_PLUS] = ACTIONS(862), - [anon_sym_STAR] = ACTIONS(860), - [anon_sym_SLASH] = ACTIONS(860), - [anon_sym_mod] = ACTIONS(862), - [anon_sym_SLASH_SLASH] = ACTIONS(862), - [anon_sym_PLUS] = ACTIONS(860), - [anon_sym_DASH] = ACTIONS(862), - [anon_sym_bit_DASHshl] = ACTIONS(862), - [anon_sym_bit_DASHshr] = ACTIONS(862), - [anon_sym_EQ_TILDE] = ACTIONS(862), - [anon_sym_BANG_TILDE] = ACTIONS(862), - [anon_sym_like] = ACTIONS(862), - [anon_sym_not_DASHlike] = ACTIONS(862), - [anon_sym_bit_DASHand] = ACTIONS(862), - [anon_sym_bit_DASHxor] = ACTIONS(862), - [anon_sym_bit_DASHor] = ACTIONS(862), - [anon_sym_and] = ACTIONS(862), - [anon_sym_xor] = ACTIONS(862), - [anon_sym_or] = ACTIONS(862), - [anon_sym_in2] = ACTIONS(862), - [anon_sym_not_DASHin] = ACTIONS(862), - [anon_sym_has] = ACTIONS(862), - [anon_sym_not_DASHhas] = ACTIONS(862), - [anon_sym_starts_DASHwith] = ACTIONS(862), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(862), - [anon_sym_ends_DASHwith] = ACTIONS(862), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(862), - [anon_sym_EQ_EQ] = ACTIONS(862), - [anon_sym_BANG_EQ] = ACTIONS(862), - [anon_sym_LT] = ACTIONS(860), - [anon_sym_LT_EQ] = ACTIONS(862), - [anon_sym_GT] = ACTIONS(860), - [anon_sym_GT_EQ] = ACTIONS(862), - [aux_sym_cmd_identifier_token6] = ACTIONS(860), - [sym__newline] = ACTIONS(860), - [anon_sym_SEMI] = ACTIONS(860), - [anon_sym_PIPE] = ACTIONS(860), - [anon_sym_err_GT_PIPE] = ACTIONS(860), - [anon_sym_out_GT_PIPE] = ACTIONS(860), - [anon_sym_e_GT_PIPE] = ACTIONS(860), - [anon_sym_o_GT_PIPE] = ACTIONS(860), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(860), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(860), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(860), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(860), - [anon_sym_GT2] = ACTIONS(860), - [anon_sym_DASH2] = ACTIONS(860), - [anon_sym_STAR2] = ACTIONS(860), - [anon_sym_and2] = ACTIONS(860), - [anon_sym_xor2] = ACTIONS(860), - [anon_sym_or2] = ACTIONS(860), - [anon_sym_not_DASHin2] = ACTIONS(860), - [anon_sym_has2] = ACTIONS(860), - [anon_sym_not_DASHhas2] = ACTIONS(860), - [anon_sym_starts_DASHwith2] = ACTIONS(860), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(860), - [anon_sym_ends_DASHwith2] = ACTIONS(860), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(860), - [anon_sym_EQ_EQ2] = ACTIONS(860), - [anon_sym_BANG_EQ2] = ACTIONS(860), - [anon_sym_LT2] = ACTIONS(860), - [anon_sym_LT_EQ2] = ACTIONS(860), - [anon_sym_GT_EQ2] = ACTIONS(860), - [anon_sym_EQ_TILDE2] = ACTIONS(860), - [anon_sym_BANG_TILDE2] = ACTIONS(860), - [anon_sym_like2] = ACTIONS(860), - [anon_sym_not_DASHlike2] = ACTIONS(860), - [anon_sym_STAR_STAR2] = ACTIONS(860), - [anon_sym_PLUS_PLUS2] = ACTIONS(860), - [anon_sym_SLASH2] = ACTIONS(860), - [anon_sym_mod2] = ACTIONS(860), - [anon_sym_SLASH_SLASH2] = ACTIONS(860), - [anon_sym_PLUS2] = ACTIONS(860), - [anon_sym_bit_DASHshl2] = ACTIONS(860), - [anon_sym_bit_DASHshr2] = ACTIONS(860), - [anon_sym_bit_DASHand2] = ACTIONS(860), - [anon_sym_bit_DASHxor2] = ACTIONS(860), - [anon_sym_bit_DASHor2] = ACTIONS(860), - [anon_sym_DOT_DOT2] = ACTIONS(860), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(862), - [anon_sym_DOT_DOT_LT2] = ACTIONS(862), - [sym_filesize_unit] = ACTIONS(860), - [sym_duration_unit] = ACTIONS(862), - [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), + [STATE(112)] = { + [sym_comment] = STATE(112), + [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_token1] = ACTIONS(873), + [aux_sym__immediate_decimal_token5] = ACTIONS(875), + [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(117)] = { - [sym_comment] = STATE(117), + [STATE(113)] = { + [sym_comment] = STATE(113), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -53487,6 +53776,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), @@ -53521,7 +53811,7 @@ 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_token5] = ACTIONS(789), + [aux_sym__immediate_decimal_token5] = ACTIONS(775), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_err_GT] = ACTIONS(747), @@ -53542,114 +53832,328 @@ 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(118)] = { - [sym_comment] = STATE(118), - [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), + [STATE(114)] = { + [sym_expr_parenthesized] = STATE(2714), + [sym__spread_parenthesized] = STATE(3129), + [sym_val_range] = STATE(3130), + [sym__val_range] = STATE(4886), + [sym__value] = STATE(3130), + [sym_val_nothing] = STATE(3228), + [sym_val_bool] = STATE(2841), + [sym__spread_variable] = STATE(3131), + [sym_val_variable] = STATE(2686), + [sym_val_cellpath] = STATE(3228), + [sym_val_number] = STATE(3228), + [sym__val_number_decimal] = STATE(2406), + [sym__val_number] = STATE(3229), + [sym_val_duration] = STATE(3228), + [sym_val_filesize] = STATE(3228), + [sym_val_binary] = STATE(3228), + [sym_val_string] = STATE(3228), + [sym__raw_str] = STATE(2477), + [sym__str_double_quotes] = STATE(2477), + [sym__str_single_quotes] = STATE(2477), + [sym__str_back_ticks] = STATE(2477), + [sym_val_interpolated] = STATE(3228), + [sym__inter_single_quotes] = STATE(3047), + [sym__inter_double_quotes] = STATE(3048), + [sym_val_list] = STATE(3228), + [sym__spread_list] = STATE(3129), + [sym_val_record] = STATE(3228), + [sym_val_table] = STATE(3228), + [sym_val_closure] = STATE(3228), + [sym__cmd_arg] = STATE(3132), + [sym_redirection] = STATE(3133), + [sym__flag] = STATE(3134), + [sym_short_flag] = STATE(3135), + [sym_long_flag] = STATE(3135), + [sym_unquoted] = STATE(2742), + [sym__unquoted_with_expr] = STATE(3136), + [sym__unquoted_anonymous_prefix] = STATE(4886), + [sym_comment] = STATE(114), + [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(877), + [sym__space] = ACTIONS(877), + [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), + [anon_sym_COLON2] = ACTIONS(880), + [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(119)] = { - [sym_comment] = STATE(119), + [STATE(115)] = { + [sym_comment] = STATE(115), + [ts_builtin_sym_end] = ACTIONS(769), + [anon_sym_in] = ACTIONS(767), + [anon_sym_STAR_STAR] = ACTIONS(769), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_STAR] = ACTIONS(767), + [anon_sym_SLASH] = ACTIONS(767), + [anon_sym_mod] = ACTIONS(769), + [anon_sym_SLASH_SLASH] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(767), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_bit_DASHshl] = ACTIONS(769), + [anon_sym_bit_DASHshr] = ACTIONS(769), + [anon_sym_EQ_TILDE] = ACTIONS(769), + [anon_sym_BANG_TILDE] = ACTIONS(769), + [anon_sym_like] = ACTIONS(769), + [anon_sym_not_DASHlike] = ACTIONS(769), + [anon_sym_bit_DASHand] = ACTIONS(769), + [anon_sym_bit_DASHxor] = ACTIONS(769), + [anon_sym_bit_DASHor] = ACTIONS(769), + [anon_sym_and] = ACTIONS(769), + [anon_sym_xor] = ACTIONS(769), + [anon_sym_or] = ACTIONS(769), + [anon_sym_in2] = ACTIONS(769), + [anon_sym_not_DASHin] = ACTIONS(769), + [anon_sym_has] = ACTIONS(769), + [anon_sym_not_DASHhas] = ACTIONS(769), + [anon_sym_starts_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(769), + [anon_sym_ends_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(769), + [anon_sym_EQ_EQ] = ACTIONS(769), + [anon_sym_BANG_EQ] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(767), + [anon_sym_LT_EQ] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(767), + [anon_sym_GT_EQ] = ACTIONS(769), + [aux_sym_cmd_identifier_token6] = ACTIONS(767), + [sym__newline] = ACTIONS(767), + [anon_sym_SEMI] = ACTIONS(767), + [anon_sym_PIPE] = ACTIONS(767), + [anon_sym_err_GT_PIPE] = ACTIONS(767), + [anon_sym_out_GT_PIPE] = ACTIONS(767), + [anon_sym_e_GT_PIPE] = ACTIONS(767), + [anon_sym_o_GT_PIPE] = ACTIONS(767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(767), + [anon_sym_GT2] = ACTIONS(767), + [anon_sym_DASH2] = ACTIONS(767), + [anon_sym_STAR2] = ACTIONS(767), + [anon_sym_and2] = ACTIONS(767), + [anon_sym_xor2] = ACTIONS(767), + [anon_sym_or2] = ACTIONS(767), + [anon_sym_not_DASHin2] = ACTIONS(767), + [anon_sym_has2] = ACTIONS(767), + [anon_sym_not_DASHhas2] = ACTIONS(767), + [anon_sym_starts_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(767), + [anon_sym_ends_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(767), + [anon_sym_EQ_EQ2] = ACTIONS(767), + [anon_sym_BANG_EQ2] = ACTIONS(767), + [anon_sym_LT2] = ACTIONS(767), + [anon_sym_LT_EQ2] = ACTIONS(767), + [anon_sym_GT_EQ2] = ACTIONS(767), + [anon_sym_EQ_TILDE2] = ACTIONS(767), + [anon_sym_BANG_TILDE2] = ACTIONS(767), + [anon_sym_like2] = ACTIONS(767), + [anon_sym_not_DASHlike2] = ACTIONS(767), + [anon_sym_STAR_STAR2] = ACTIONS(767), + [anon_sym_PLUS_PLUS2] = ACTIONS(767), + [anon_sym_SLASH2] = ACTIONS(767), + [anon_sym_mod2] = ACTIONS(767), + [anon_sym_SLASH_SLASH2] = ACTIONS(767), + [anon_sym_PLUS2] = ACTIONS(767), + [anon_sym_bit_DASHshl2] = ACTIONS(767), + [anon_sym_bit_DASHshr2] = ACTIONS(767), + [anon_sym_bit_DASHand2] = ACTIONS(767), + [anon_sym_bit_DASHxor2] = ACTIONS(767), + [anon_sym_bit_DASHor2] = ACTIONS(767), + [anon_sym_DOT_DOT2] = ACTIONS(767), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(769), + [aux_sym__immediate_decimal_token5] = ACTIONS(882), + [sym_filesize_unit] = ACTIONS(767), + [sym_duration_unit] = ACTIONS(769), + [anon_sym_err_GT] = ACTIONS(767), + [anon_sym_out_GT] = ACTIONS(767), + [anon_sym_e_GT] = ACTIONS(767), + [anon_sym_o_GT] = ACTIONS(767), + [anon_sym_err_PLUSout_GT] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT] = ACTIONS(767), + [anon_sym_o_PLUSe_GT] = ACTIONS(767), + [anon_sym_e_PLUSo_GT] = ACTIONS(767), + [anon_sym_err_GT_GT] = ACTIONS(767), + [anon_sym_out_GT_GT] = ACTIONS(767), + [anon_sym_e_GT_GT] = ACTIONS(767), + [anon_sym_o_GT_GT] = ACTIONS(767), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(767), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(767), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(116)] = { + [sym_comment] = STATE(116), + [anon_sym_in] = ACTIONS(767), + [anon_sym_STAR_STAR] = ACTIONS(769), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_STAR] = ACTIONS(767), + [anon_sym_SLASH] = ACTIONS(767), + [anon_sym_mod] = ACTIONS(769), + [anon_sym_SLASH_SLASH] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(767), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_bit_DASHshl] = ACTIONS(769), + [anon_sym_bit_DASHshr] = ACTIONS(769), + [anon_sym_EQ_TILDE] = ACTIONS(769), + [anon_sym_BANG_TILDE] = ACTIONS(769), + [anon_sym_like] = ACTIONS(769), + [anon_sym_not_DASHlike] = ACTIONS(769), + [anon_sym_bit_DASHand] = ACTIONS(769), + [anon_sym_bit_DASHxor] = ACTIONS(769), + [anon_sym_bit_DASHor] = ACTIONS(769), + [anon_sym_and] = ACTIONS(769), + [anon_sym_xor] = ACTIONS(769), + [anon_sym_or] = ACTIONS(769), + [anon_sym_in2] = ACTIONS(769), + [anon_sym_not_DASHin] = ACTIONS(769), + [anon_sym_has] = ACTIONS(769), + [anon_sym_not_DASHhas] = ACTIONS(769), + [anon_sym_starts_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(769), + [anon_sym_ends_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(769), + [anon_sym_EQ_EQ] = ACTIONS(769), + [anon_sym_BANG_EQ] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(767), + [anon_sym_LT_EQ] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(767), + [anon_sym_GT_EQ] = ACTIONS(769), + [aux_sym_cmd_identifier_token6] = ACTIONS(767), + [sym__newline] = ACTIONS(767), + [anon_sym_SEMI] = ACTIONS(767), + [anon_sym_PIPE] = ACTIONS(767), + [anon_sym_err_GT_PIPE] = ACTIONS(767), + [anon_sym_out_GT_PIPE] = ACTIONS(767), + [anon_sym_e_GT_PIPE] = ACTIONS(767), + [anon_sym_o_GT_PIPE] = ACTIONS(767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(767), + [anon_sym_GT2] = ACTIONS(767), + [anon_sym_DASH2] = ACTIONS(767), + [anon_sym_RBRACE] = ACTIONS(767), + [anon_sym_STAR2] = ACTIONS(767), + [anon_sym_and2] = ACTIONS(767), + [anon_sym_xor2] = ACTIONS(767), + [anon_sym_or2] = ACTIONS(767), + [anon_sym_not_DASHin2] = ACTIONS(767), + [anon_sym_has2] = ACTIONS(767), + [anon_sym_not_DASHhas2] = ACTIONS(767), + [anon_sym_starts_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(767), + [anon_sym_ends_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(767), + [anon_sym_EQ_EQ2] = ACTIONS(767), + [anon_sym_BANG_EQ2] = ACTIONS(767), + [anon_sym_LT2] = ACTIONS(767), + [anon_sym_LT_EQ2] = ACTIONS(767), + [anon_sym_GT_EQ2] = ACTIONS(767), + [anon_sym_EQ_TILDE2] = ACTIONS(767), + [anon_sym_BANG_TILDE2] = ACTIONS(767), + [anon_sym_like2] = ACTIONS(767), + [anon_sym_not_DASHlike2] = ACTIONS(767), + [anon_sym_STAR_STAR2] = ACTIONS(767), + [anon_sym_PLUS_PLUS2] = ACTIONS(767), + [anon_sym_SLASH2] = ACTIONS(767), + [anon_sym_mod2] = ACTIONS(767), + [anon_sym_SLASH_SLASH2] = ACTIONS(767), + [anon_sym_PLUS2] = ACTIONS(767), + [anon_sym_bit_DASHshl2] = ACTIONS(767), + [anon_sym_bit_DASHshr2] = ACTIONS(767), + [anon_sym_bit_DASHand2] = ACTIONS(767), + [anon_sym_bit_DASHxor2] = ACTIONS(767), + [anon_sym_bit_DASHor2] = ACTIONS(767), + [anon_sym_DOT_DOT2] = ACTIONS(767), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(769), + [sym_filesize_unit] = ACTIONS(767), + [sym_duration_unit] = ACTIONS(769), + [anon_sym_err_GT] = ACTIONS(767), + [anon_sym_out_GT] = ACTIONS(767), + [anon_sym_e_GT] = ACTIONS(767), + [anon_sym_o_GT] = ACTIONS(767), + [anon_sym_err_PLUSout_GT] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT] = ACTIONS(767), + [anon_sym_o_PLUSe_GT] = ACTIONS(767), + [anon_sym_e_PLUSo_GT] = ACTIONS(767), + [anon_sym_err_GT_GT] = ACTIONS(767), + [anon_sym_out_GT_GT] = ACTIONS(767), + [anon_sym_e_GT_GT] = ACTIONS(767), + [anon_sym_o_GT_GT] = ACTIONS(767), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(767), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(767), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(117)] = { + [sym_comment] = STATE(117), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -53697,9 +54201,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), @@ -53754,220 +54258,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(120)] = { - [sym_comment] = STATE(120), - [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), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(121)] = { - [sym_comment] = STATE(121), - [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(884), - [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(122)] = { - [sym_comment] = STATE(122), + [STATE(118)] = { + [sym_comment] = STATE(118), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -54015,9 +54307,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), @@ -54072,327 +54364,326 @@ 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(123)] = { - [sym_comment] = STATE(123), - [ts_builtin_sym_end] = ACTIONS(886), - [anon_sym_in] = ACTIONS(866), - [anon_sym_STAR_STAR] = ACTIONS(888), - [anon_sym_PLUS_PLUS] = ACTIONS(888), - [anon_sym_STAR] = ACTIONS(890), - [anon_sym_SLASH] = ACTIONS(890), - [anon_sym_mod] = ACTIONS(888), - [anon_sym_SLASH_SLASH] = ACTIONS(888), - [anon_sym_PLUS] = ACTIONS(890), - [anon_sym_DASH] = ACTIONS(888), - [anon_sym_bit_DASHshl] = ACTIONS(888), - [anon_sym_bit_DASHshr] = ACTIONS(888), - [anon_sym_EQ_TILDE] = ACTIONS(888), - [anon_sym_BANG_TILDE] = ACTIONS(888), - [anon_sym_like] = ACTIONS(888), - [anon_sym_not_DASHlike] = ACTIONS(888), - [anon_sym_bit_DASHand] = ACTIONS(888), - [anon_sym_bit_DASHxor] = ACTIONS(888), - [anon_sym_bit_DASHor] = ACTIONS(888), - [anon_sym_and] = ACTIONS(888), - [anon_sym_xor] = ACTIONS(888), - [anon_sym_or] = ACTIONS(888), - [anon_sym_in2] = ACTIONS(888), - [anon_sym_not_DASHin] = ACTIONS(888), - [anon_sym_has] = ACTIONS(888), - [anon_sym_not_DASHhas] = ACTIONS(888), - [anon_sym_starts_DASHwith] = ACTIONS(888), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(888), - [anon_sym_ends_DASHwith] = ACTIONS(888), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(888), - [anon_sym_EQ_EQ] = ACTIONS(888), - [anon_sym_BANG_EQ] = ACTIONS(888), - [anon_sym_LT] = ACTIONS(890), - [anon_sym_LT_EQ] = ACTIONS(888), - [anon_sym_GT] = ACTIONS(890), - [anon_sym_GT_EQ] = ACTIONS(888), - [aux_sym_cmd_identifier_token6] = ACTIONS(892), - [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(894), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(896), - [anon_sym_DOT_DOT_LT2] = ACTIONS(896), - [sym_filesize_unit] = ACTIONS(898), - [sym_duration_unit] = ACTIONS(900), - [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), + [STATE(119)] = { + [sym_comment] = STATE(119), + [anon_sym_in] = ACTIONS(847), + [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(847), + [anon_sym_SEMI] = ACTIONS(847), + [anon_sym_PIPE] = ACTIONS(847), + [anon_sym_err_GT_PIPE] = ACTIONS(847), + [anon_sym_out_GT_PIPE] = ACTIONS(847), + [anon_sym_e_GT_PIPE] = ACTIONS(847), + [anon_sym_o_GT_PIPE] = ACTIONS(847), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(847), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(847), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(847), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(847), + [anon_sym_RPAREN] = ACTIONS(847), + [anon_sym_GT2] = ACTIONS(847), + [anon_sym_DASH2] = ACTIONS(847), + [anon_sym_STAR2] = ACTIONS(847), + [anon_sym_and2] = ACTIONS(847), + [anon_sym_xor2] = ACTIONS(847), + [anon_sym_or2] = ACTIONS(847), + [anon_sym_not_DASHin2] = ACTIONS(847), + [anon_sym_has2] = ACTIONS(847), + [anon_sym_not_DASHhas2] = ACTIONS(847), + [anon_sym_starts_DASHwith2] = ACTIONS(847), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(847), + [anon_sym_ends_DASHwith2] = ACTIONS(847), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(847), + [anon_sym_EQ_EQ2] = ACTIONS(847), + [anon_sym_BANG_EQ2] = ACTIONS(847), + [anon_sym_LT2] = ACTIONS(847), + [anon_sym_LT_EQ2] = ACTIONS(847), + [anon_sym_GT_EQ2] = ACTIONS(847), + [anon_sym_EQ_TILDE2] = ACTIONS(847), + [anon_sym_BANG_TILDE2] = ACTIONS(847), + [anon_sym_like2] = ACTIONS(847), + [anon_sym_not_DASHlike2] = ACTIONS(847), + [anon_sym_STAR_STAR2] = ACTIONS(847), + [anon_sym_PLUS_PLUS2] = ACTIONS(847), + [anon_sym_SLASH2] = ACTIONS(847), + [anon_sym_mod2] = ACTIONS(847), + [anon_sym_SLASH_SLASH2] = ACTIONS(847), + [anon_sym_PLUS2] = ACTIONS(847), + [anon_sym_bit_DASHshl2] = ACTIONS(847), + [anon_sym_bit_DASHshr2] = ACTIONS(847), + [anon_sym_bit_DASHand2] = ACTIONS(847), + [anon_sym_bit_DASHxor2] = ACTIONS(847), + [anon_sym_bit_DASHor2] = ACTIONS(847), + [anon_sym_DOT_DOT2] = ACTIONS(855), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(857), + [anon_sym_DOT_DOT_LT2] = ACTIONS(857), + [sym_filesize_unit] = ACTIONS(890), + [sym_duration_unit] = ACTIONS(892), + [anon_sym_err_GT] = ACTIONS(847), + [anon_sym_out_GT] = ACTIONS(847), + [anon_sym_e_GT] = ACTIONS(847), + [anon_sym_o_GT] = ACTIONS(847), + [anon_sym_err_PLUSout_GT] = ACTIONS(847), + [anon_sym_out_PLUSerr_GT] = ACTIONS(847), + [anon_sym_o_PLUSe_GT] = ACTIONS(847), + [anon_sym_e_PLUSo_GT] = ACTIONS(847), + [anon_sym_err_GT_GT] = ACTIONS(847), + [anon_sym_out_GT_GT] = ACTIONS(847), + [anon_sym_e_GT_GT] = ACTIONS(847), + [anon_sym_o_GT_GT] = ACTIONS(847), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(847), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(847), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(847), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(847), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(124)] = { - [sym_comment] = STATE(124), - [anon_sym_in] = ACTIONS(866), - [anon_sym_STAR_STAR] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_STAR] = ACTIONS(904), - [anon_sym_SLASH] = ACTIONS(904), - [anon_sym_mod] = ACTIONS(902), - [anon_sym_SLASH_SLASH] = ACTIONS(902), - [anon_sym_PLUS] = ACTIONS(904), - [anon_sym_DASH] = ACTIONS(902), - [anon_sym_bit_DASHshl] = ACTIONS(902), - [anon_sym_bit_DASHshr] = ACTIONS(902), - [anon_sym_EQ_TILDE] = ACTIONS(902), - [anon_sym_BANG_TILDE] = ACTIONS(902), - [anon_sym_like] = ACTIONS(902), - [anon_sym_not_DASHlike] = ACTIONS(902), - [anon_sym_bit_DASHand] = ACTIONS(902), - [anon_sym_bit_DASHxor] = ACTIONS(902), - [anon_sym_bit_DASHor] = ACTIONS(902), - [anon_sym_and] = ACTIONS(902), - [anon_sym_xor] = ACTIONS(902), - [anon_sym_or] = ACTIONS(902), - [anon_sym_in2] = ACTIONS(902), - [anon_sym_not_DASHin] = ACTIONS(902), - [anon_sym_has] = ACTIONS(902), - [anon_sym_not_DASHhas] = ACTIONS(902), - [anon_sym_starts_DASHwith] = ACTIONS(902), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(902), - [anon_sym_ends_DASHwith] = ACTIONS(902), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(902), - [anon_sym_EQ_EQ] = ACTIONS(902), - [anon_sym_BANG_EQ] = ACTIONS(902), - [anon_sym_LT] = ACTIONS(904), - [anon_sym_LT_EQ] = ACTIONS(902), - [anon_sym_GT] = ACTIONS(904), - [anon_sym_GT_EQ] = ACTIONS(902), - [aux_sym_cmd_identifier_token6] = ACTIONS(906), - [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(908), - [sym_duration_unit] = ACTIONS(910), - [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), + [STATE(120)] = { + [sym_comment] = STATE(120), + [anon_sym_in] = ACTIONS(863), + [anon_sym_STAR_STAR] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_STAR] = ACTIONS(863), + [anon_sym_SLASH] = ACTIONS(863), + [anon_sym_mod] = ACTIONS(865), + [anon_sym_SLASH_SLASH] = ACTIONS(865), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(865), + [anon_sym_bit_DASHshl] = ACTIONS(865), + [anon_sym_bit_DASHshr] = ACTIONS(865), + [anon_sym_EQ_TILDE] = ACTIONS(865), + [anon_sym_BANG_TILDE] = ACTIONS(865), + [anon_sym_like] = ACTIONS(865), + [anon_sym_not_DASHlike] = ACTIONS(865), + [anon_sym_bit_DASHand] = ACTIONS(865), + [anon_sym_bit_DASHxor] = ACTIONS(865), + [anon_sym_bit_DASHor] = ACTIONS(865), + [anon_sym_and] = ACTIONS(865), + [anon_sym_xor] = ACTIONS(865), + [anon_sym_or] = ACTIONS(865), + [anon_sym_in2] = ACTIONS(865), + [anon_sym_not_DASHin] = ACTIONS(865), + [anon_sym_has] = ACTIONS(865), + [anon_sym_not_DASHhas] = ACTIONS(865), + [anon_sym_starts_DASHwith] = ACTIONS(865), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(865), + [anon_sym_ends_DASHwith] = ACTIONS(865), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(865), + [anon_sym_EQ_EQ] = ACTIONS(865), + [anon_sym_BANG_EQ] = ACTIONS(865), + [anon_sym_LT] = ACTIONS(863), + [anon_sym_LT_EQ] = ACTIONS(865), + [anon_sym_GT] = ACTIONS(863), + [anon_sym_GT_EQ] = ACTIONS(865), + [aux_sym_cmd_identifier_token6] = ACTIONS(863), + [sym__newline] = ACTIONS(863), + [anon_sym_SEMI] = ACTIONS(863), + [anon_sym_PIPE] = ACTIONS(863), + [anon_sym_err_GT_PIPE] = ACTIONS(863), + [anon_sym_out_GT_PIPE] = ACTIONS(863), + [anon_sym_e_GT_PIPE] = ACTIONS(863), + [anon_sym_o_GT_PIPE] = ACTIONS(863), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(863), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(863), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(863), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(863), + [anon_sym_GT2] = ACTIONS(863), + [anon_sym_DASH2] = ACTIONS(863), + [anon_sym_RBRACE] = ACTIONS(863), + [anon_sym_STAR2] = ACTIONS(863), + [anon_sym_and2] = ACTIONS(863), + [anon_sym_xor2] = ACTIONS(863), + [anon_sym_or2] = ACTIONS(863), + [anon_sym_not_DASHin2] = ACTIONS(863), + [anon_sym_has2] = ACTIONS(863), + [anon_sym_not_DASHhas2] = ACTIONS(863), + [anon_sym_starts_DASHwith2] = ACTIONS(863), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(863), + [anon_sym_ends_DASHwith2] = ACTIONS(863), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(863), + [anon_sym_EQ_EQ2] = ACTIONS(863), + [anon_sym_BANG_EQ2] = ACTIONS(863), + [anon_sym_LT2] = ACTIONS(863), + [anon_sym_LT_EQ2] = ACTIONS(863), + [anon_sym_GT_EQ2] = ACTIONS(863), + [anon_sym_EQ_TILDE2] = ACTIONS(863), + [anon_sym_BANG_TILDE2] = ACTIONS(863), + [anon_sym_like2] = ACTIONS(863), + [anon_sym_not_DASHlike2] = ACTIONS(863), + [anon_sym_STAR_STAR2] = ACTIONS(863), + [anon_sym_PLUS_PLUS2] = ACTIONS(863), + [anon_sym_SLASH2] = ACTIONS(863), + [anon_sym_mod2] = ACTIONS(863), + [anon_sym_SLASH_SLASH2] = ACTIONS(863), + [anon_sym_PLUS2] = ACTIONS(863), + [anon_sym_bit_DASHshl2] = ACTIONS(863), + [anon_sym_bit_DASHshr2] = ACTIONS(863), + [anon_sym_bit_DASHand2] = ACTIONS(863), + [anon_sym_bit_DASHxor2] = ACTIONS(863), + [anon_sym_bit_DASHor2] = ACTIONS(863), + [anon_sym_DOT_DOT2] = ACTIONS(863), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(865), + [anon_sym_DOT_DOT_LT2] = ACTIONS(865), + [sym_filesize_unit] = ACTIONS(863), + [sym_duration_unit] = ACTIONS(865), + [anon_sym_err_GT] = ACTIONS(863), + [anon_sym_out_GT] = ACTIONS(863), + [anon_sym_e_GT] = ACTIONS(863), + [anon_sym_o_GT] = ACTIONS(863), + [anon_sym_err_PLUSout_GT] = ACTIONS(863), + [anon_sym_out_PLUSerr_GT] = ACTIONS(863), + [anon_sym_o_PLUSe_GT] = ACTIONS(863), + [anon_sym_e_PLUSo_GT] = ACTIONS(863), + [anon_sym_err_GT_GT] = ACTIONS(863), + [anon_sym_out_GT_GT] = ACTIONS(863), + [anon_sym_e_GT_GT] = ACTIONS(863), + [anon_sym_o_GT_GT] = ACTIONS(863), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(863), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(863), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(863), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(863), [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(121)] = { + [sym_comment] = STATE(121), + [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] = ACTIONS(894), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), + [anon_sym_DOT_DOT_LT2] = ACTIONS(749), + [aux_sym__immediate_decimal_token5] = ACTIONS(896), + [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(126)] = { - [sym_comment] = STATE(126), - [ts_builtin_sym_end] = ACTIONS(741), + [STATE(122)] = { + [sym_comment] = STATE(122), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -54430,7 +54721,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), @@ -54476,6 +54766,8 @@ 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_token1] = ACTIONS(898), + [aux_sym__immediate_decimal_token5] = ACTIONS(900), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_err_GT] = ACTIONS(739), @@ -54496,114 +54788,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(127)] = { - [sym_comment] = STATE(127), - [anon_sym_in] = ACTIONS(860), - [anon_sym_STAR_STAR] = ACTIONS(862), - [anon_sym_PLUS_PLUS] = ACTIONS(862), - [anon_sym_STAR] = ACTIONS(860), - [anon_sym_SLASH] = ACTIONS(860), - [anon_sym_mod] = ACTIONS(862), - [anon_sym_SLASH_SLASH] = ACTIONS(862), - [anon_sym_PLUS] = ACTIONS(860), - [anon_sym_DASH] = ACTIONS(862), - [anon_sym_bit_DASHshl] = ACTIONS(862), - [anon_sym_bit_DASHshr] = ACTIONS(862), - [anon_sym_EQ_TILDE] = ACTIONS(862), - [anon_sym_BANG_TILDE] = ACTIONS(862), - [anon_sym_like] = ACTIONS(862), - [anon_sym_not_DASHlike] = ACTIONS(862), - [anon_sym_bit_DASHand] = ACTIONS(862), - [anon_sym_bit_DASHxor] = ACTIONS(862), - [anon_sym_bit_DASHor] = ACTIONS(862), - [anon_sym_and] = ACTIONS(862), - [anon_sym_xor] = ACTIONS(862), - [anon_sym_or] = ACTIONS(862), - [anon_sym_in2] = ACTIONS(862), - [anon_sym_not_DASHin] = ACTIONS(862), - [anon_sym_has] = ACTIONS(862), - [anon_sym_not_DASHhas] = ACTIONS(862), - [anon_sym_starts_DASHwith] = ACTIONS(862), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(862), - [anon_sym_ends_DASHwith] = ACTIONS(862), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(862), - [anon_sym_EQ_EQ] = ACTIONS(862), - [anon_sym_BANG_EQ] = ACTIONS(862), - [anon_sym_LT] = ACTIONS(860), - [anon_sym_LT_EQ] = ACTIONS(862), - [anon_sym_GT] = ACTIONS(860), - [anon_sym_GT_EQ] = ACTIONS(862), - [aux_sym_cmd_identifier_token6] = ACTIONS(860), - [sym__newline] = ACTIONS(860), - [anon_sym_SEMI] = ACTIONS(860), - [anon_sym_PIPE] = ACTIONS(860), - [anon_sym_err_GT_PIPE] = ACTIONS(860), - [anon_sym_out_GT_PIPE] = ACTIONS(860), - [anon_sym_e_GT_PIPE] = ACTIONS(860), - [anon_sym_o_GT_PIPE] = ACTIONS(860), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(860), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(860), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(860), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(860), - [anon_sym_GT2] = ACTIONS(860), - [anon_sym_DASH2] = ACTIONS(860), - [anon_sym_RBRACE] = ACTIONS(860), - [anon_sym_STAR2] = ACTIONS(860), - [anon_sym_and2] = ACTIONS(860), - [anon_sym_xor2] = ACTIONS(860), - [anon_sym_or2] = ACTIONS(860), - [anon_sym_not_DASHin2] = ACTIONS(860), - [anon_sym_has2] = ACTIONS(860), - [anon_sym_not_DASHhas2] = ACTIONS(860), - [anon_sym_starts_DASHwith2] = ACTIONS(860), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(860), - [anon_sym_ends_DASHwith2] = ACTIONS(860), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(860), - [anon_sym_EQ_EQ2] = ACTIONS(860), - [anon_sym_BANG_EQ2] = ACTIONS(860), - [anon_sym_LT2] = ACTIONS(860), - [anon_sym_LT_EQ2] = ACTIONS(860), - [anon_sym_GT_EQ2] = ACTIONS(860), - [anon_sym_EQ_TILDE2] = ACTIONS(860), - [anon_sym_BANG_TILDE2] = ACTIONS(860), - [anon_sym_like2] = ACTIONS(860), - [anon_sym_not_DASHlike2] = ACTIONS(860), - [anon_sym_STAR_STAR2] = ACTIONS(860), - [anon_sym_PLUS_PLUS2] = ACTIONS(860), - [anon_sym_SLASH2] = ACTIONS(860), - [anon_sym_mod2] = ACTIONS(860), - [anon_sym_SLASH_SLASH2] = ACTIONS(860), - [anon_sym_PLUS2] = ACTIONS(860), - [anon_sym_bit_DASHshl2] = ACTIONS(860), - [anon_sym_bit_DASHshr2] = ACTIONS(860), - [anon_sym_bit_DASHand2] = ACTIONS(860), - [anon_sym_bit_DASHxor2] = ACTIONS(860), - [anon_sym_bit_DASHor2] = ACTIONS(860), - [anon_sym_DOT_DOT2] = ACTIONS(860), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(862), - [anon_sym_DOT_DOT_LT2] = ACTIONS(862), - [sym_filesize_unit] = ACTIONS(860), - [sym_duration_unit] = ACTIONS(862), - [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), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(128)] = { - [sym_comment] = STATE(128), + [STATE(123)] = { + [sym_comment] = STATE(123), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -54641,6 +54827,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), @@ -54684,10 +54871,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(747), [anon_sym_bit_DASHor2] = ACTIONS(747), [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT] = ACTIONS(912), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token5] = ACTIONS(914), + [aux_sym__immediate_decimal_token5] = ACTIONS(871), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_err_GT] = ACTIONS(747), @@ -54708,220 +54894,645 @@ 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), + [anon_sym_in] = ACTIONS(767), + [anon_sym_STAR_STAR] = ACTIONS(769), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_STAR] = ACTIONS(767), + [anon_sym_SLASH] = ACTIONS(767), + [anon_sym_mod] = ACTIONS(769), + [anon_sym_SLASH_SLASH] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(767), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_bit_DASHshl] = ACTIONS(769), + [anon_sym_bit_DASHshr] = ACTIONS(769), + [anon_sym_EQ_TILDE] = ACTIONS(769), + [anon_sym_BANG_TILDE] = ACTIONS(769), + [anon_sym_like] = ACTIONS(769), + [anon_sym_not_DASHlike] = ACTIONS(769), + [anon_sym_bit_DASHand] = ACTIONS(769), + [anon_sym_bit_DASHxor] = ACTIONS(769), + [anon_sym_bit_DASHor] = ACTIONS(769), + [anon_sym_and] = ACTIONS(769), + [anon_sym_xor] = ACTIONS(769), + [anon_sym_or] = ACTIONS(769), + [anon_sym_in2] = ACTIONS(769), + [anon_sym_not_DASHin] = ACTIONS(769), + [anon_sym_has] = ACTIONS(769), + [anon_sym_not_DASHhas] = ACTIONS(769), + [anon_sym_starts_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(769), + [anon_sym_ends_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(769), + [anon_sym_EQ_EQ] = ACTIONS(769), + [anon_sym_BANG_EQ] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(767), + [anon_sym_LT_EQ] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(767), + [anon_sym_GT_EQ] = ACTIONS(769), + [aux_sym_cmd_identifier_token6] = ACTIONS(767), + [sym__newline] = ACTIONS(767), + [anon_sym_SEMI] = ACTIONS(767), + [anon_sym_PIPE] = ACTIONS(767), + [anon_sym_err_GT_PIPE] = ACTIONS(767), + [anon_sym_out_GT_PIPE] = ACTIONS(767), + [anon_sym_e_GT_PIPE] = ACTIONS(767), + [anon_sym_o_GT_PIPE] = ACTIONS(767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(767), + [anon_sym_RPAREN] = ACTIONS(767), + [anon_sym_GT2] = ACTIONS(767), + [anon_sym_DASH2] = ACTIONS(767), + [anon_sym_STAR2] = ACTIONS(767), + [anon_sym_and2] = ACTIONS(767), + [anon_sym_xor2] = ACTIONS(767), + [anon_sym_or2] = ACTIONS(767), + [anon_sym_not_DASHin2] = ACTIONS(767), + [anon_sym_has2] = ACTIONS(767), + [anon_sym_not_DASHhas2] = ACTIONS(767), + [anon_sym_starts_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(767), + [anon_sym_ends_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(767), + [anon_sym_EQ_EQ2] = ACTIONS(767), + [anon_sym_BANG_EQ2] = ACTIONS(767), + [anon_sym_LT2] = ACTIONS(767), + [anon_sym_LT_EQ2] = ACTIONS(767), + [anon_sym_GT_EQ2] = ACTIONS(767), + [anon_sym_EQ_TILDE2] = ACTIONS(767), + [anon_sym_BANG_TILDE2] = ACTIONS(767), + [anon_sym_like2] = ACTIONS(767), + [anon_sym_not_DASHlike2] = ACTIONS(767), + [anon_sym_STAR_STAR2] = ACTIONS(767), + [anon_sym_PLUS_PLUS2] = ACTIONS(767), + [anon_sym_SLASH2] = ACTIONS(767), + [anon_sym_mod2] = ACTIONS(767), + [anon_sym_SLASH_SLASH2] = ACTIONS(767), + [anon_sym_PLUS2] = ACTIONS(767), + [anon_sym_bit_DASHshl2] = ACTIONS(767), + [anon_sym_bit_DASHshr2] = ACTIONS(767), + [anon_sym_bit_DASHand2] = ACTIONS(767), + [anon_sym_bit_DASHxor2] = ACTIONS(767), + [anon_sym_bit_DASHor2] = ACTIONS(767), + [anon_sym_DOT_DOT2] = ACTIONS(767), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(769), + [sym_filesize_unit] = ACTIONS(767), + [sym_duration_unit] = ACTIONS(769), + [anon_sym_err_GT] = ACTIONS(767), + [anon_sym_out_GT] = ACTIONS(767), + [anon_sym_e_GT] = ACTIONS(767), + [anon_sym_o_GT] = ACTIONS(767), + [anon_sym_err_PLUSout_GT] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT] = ACTIONS(767), + [anon_sym_o_PLUSe_GT] = ACTIONS(767), + [anon_sym_e_PLUSo_GT] = ACTIONS(767), + [anon_sym_err_GT_GT] = ACTIONS(767), + [anon_sym_out_GT_GT] = ACTIONS(767), + [anon_sym_e_GT_GT] = ACTIONS(767), + [anon_sym_o_GT_GT] = ACTIONS(767), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(767), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(767), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(125)] = { + [sym_comment] = STATE(125), + [anon_sym_in] = ACTIONS(847), + [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(847), + [anon_sym_SEMI] = ACTIONS(847), + [anon_sym_PIPE] = ACTIONS(847), + [anon_sym_err_GT_PIPE] = ACTIONS(847), + [anon_sym_out_GT_PIPE] = ACTIONS(847), + [anon_sym_e_GT_PIPE] = ACTIONS(847), + [anon_sym_o_GT_PIPE] = ACTIONS(847), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(847), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(847), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(847), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(847), + [anon_sym_GT2] = ACTIONS(847), + [anon_sym_DASH2] = ACTIONS(847), + [anon_sym_RBRACE] = ACTIONS(847), + [anon_sym_STAR2] = ACTIONS(847), + [anon_sym_and2] = ACTIONS(847), + [anon_sym_xor2] = ACTIONS(847), + [anon_sym_or2] = ACTIONS(847), + [anon_sym_not_DASHin2] = ACTIONS(847), + [anon_sym_has2] = ACTIONS(847), + [anon_sym_not_DASHhas2] = ACTIONS(847), + [anon_sym_starts_DASHwith2] = ACTIONS(847), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(847), + [anon_sym_ends_DASHwith2] = ACTIONS(847), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(847), + [anon_sym_EQ_EQ2] = ACTIONS(847), + [anon_sym_BANG_EQ2] = ACTIONS(847), + [anon_sym_LT2] = ACTIONS(847), + [anon_sym_LT_EQ2] = ACTIONS(847), + [anon_sym_GT_EQ2] = ACTIONS(847), + [anon_sym_EQ_TILDE2] = ACTIONS(847), + [anon_sym_BANG_TILDE2] = ACTIONS(847), + [anon_sym_like2] = ACTIONS(847), + [anon_sym_not_DASHlike2] = ACTIONS(847), + [anon_sym_STAR_STAR2] = ACTIONS(847), + [anon_sym_PLUS_PLUS2] = ACTIONS(847), + [anon_sym_SLASH2] = ACTIONS(847), + [anon_sym_mod2] = ACTIONS(847), + [anon_sym_SLASH_SLASH2] = ACTIONS(847), + [anon_sym_PLUS2] = ACTIONS(847), + [anon_sym_bit_DASHshl2] = ACTIONS(847), + [anon_sym_bit_DASHshr2] = ACTIONS(847), + [anon_sym_bit_DASHand2] = ACTIONS(847), + [anon_sym_bit_DASHxor2] = ACTIONS(847), + [anon_sym_bit_DASHor2] = ACTIONS(847), + [anon_sym_DOT_DOT2] = ACTIONS(855), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(857), + [anon_sym_DOT_DOT_LT2] = ACTIONS(857), + [sym_filesize_unit] = ACTIONS(902), + [sym_duration_unit] = ACTIONS(904), + [anon_sym_err_GT] = ACTIONS(847), + [anon_sym_out_GT] = ACTIONS(847), + [anon_sym_e_GT] = ACTIONS(847), + [anon_sym_o_GT] = ACTIONS(847), + [anon_sym_err_PLUSout_GT] = ACTIONS(847), + [anon_sym_out_PLUSerr_GT] = ACTIONS(847), + [anon_sym_o_PLUSe_GT] = ACTIONS(847), + [anon_sym_e_PLUSo_GT] = ACTIONS(847), + [anon_sym_err_GT_GT] = ACTIONS(847), + [anon_sym_out_GT_GT] = ACTIONS(847), + [anon_sym_e_GT_GT] = ACTIONS(847), + [anon_sym_o_GT_GT] = ACTIONS(847), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(847), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(847), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(847), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(847), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(126)] = { + [sym_comment] = STATE(126), + [anon_sym_in] = ACTIONS(767), + [anon_sym_STAR_STAR] = ACTIONS(769), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_STAR] = ACTIONS(767), + [anon_sym_SLASH] = ACTIONS(767), + [anon_sym_mod] = ACTIONS(769), + [anon_sym_SLASH_SLASH] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(767), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_bit_DASHshl] = ACTIONS(769), + [anon_sym_bit_DASHshr] = ACTIONS(769), + [anon_sym_EQ_TILDE] = ACTIONS(769), + [anon_sym_BANG_TILDE] = ACTIONS(769), + [anon_sym_like] = ACTIONS(769), + [anon_sym_not_DASHlike] = ACTIONS(769), + [anon_sym_bit_DASHand] = ACTIONS(769), + [anon_sym_bit_DASHxor] = ACTIONS(769), + [anon_sym_bit_DASHor] = ACTIONS(769), + [anon_sym_and] = ACTIONS(769), + [anon_sym_xor] = ACTIONS(769), + [anon_sym_or] = ACTIONS(769), + [anon_sym_in2] = ACTIONS(769), + [anon_sym_not_DASHin] = ACTIONS(769), + [anon_sym_has] = ACTIONS(769), + [anon_sym_not_DASHhas] = ACTIONS(769), + [anon_sym_starts_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(769), + [anon_sym_ends_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(769), + [anon_sym_EQ_EQ] = ACTIONS(769), + [anon_sym_BANG_EQ] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(767), + [anon_sym_LT_EQ] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(767), + [anon_sym_GT_EQ] = ACTIONS(769), + [aux_sym_cmd_identifier_token6] = ACTIONS(767), + [sym__newline] = ACTIONS(767), + [anon_sym_SEMI] = ACTIONS(767), + [anon_sym_PIPE] = ACTIONS(767), + [anon_sym_err_GT_PIPE] = ACTIONS(767), + [anon_sym_out_GT_PIPE] = ACTIONS(767), + [anon_sym_e_GT_PIPE] = ACTIONS(767), + [anon_sym_o_GT_PIPE] = ACTIONS(767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(767), + [anon_sym_GT2] = ACTIONS(767), + [anon_sym_DASH2] = ACTIONS(767), + [anon_sym_STAR2] = ACTIONS(767), + [anon_sym_and2] = ACTIONS(767), + [anon_sym_xor2] = ACTIONS(767), + [anon_sym_or2] = ACTIONS(767), + [anon_sym_not_DASHin2] = ACTIONS(767), + [anon_sym_has2] = ACTIONS(767), + [anon_sym_not_DASHhas2] = ACTIONS(767), + [anon_sym_starts_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(767), + [anon_sym_ends_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(767), + [anon_sym_EQ_EQ2] = ACTIONS(767), + [anon_sym_BANG_EQ2] = ACTIONS(767), + [anon_sym_LT2] = ACTIONS(767), + [anon_sym_LT_EQ2] = ACTIONS(767), + [anon_sym_GT_EQ2] = ACTIONS(767), + [anon_sym_EQ_TILDE2] = ACTIONS(767), + [anon_sym_BANG_TILDE2] = ACTIONS(767), + [anon_sym_like2] = ACTIONS(767), + [anon_sym_not_DASHlike2] = ACTIONS(767), + [anon_sym_STAR_STAR2] = ACTIONS(767), + [anon_sym_PLUS_PLUS2] = ACTIONS(767), + [anon_sym_SLASH2] = ACTIONS(767), + [anon_sym_mod2] = ACTIONS(767), + [anon_sym_SLASH_SLASH2] = ACTIONS(767), + [anon_sym_PLUS2] = ACTIONS(767), + [anon_sym_bit_DASHshl2] = ACTIONS(767), + [anon_sym_bit_DASHshr2] = ACTIONS(767), + [anon_sym_bit_DASHand2] = ACTIONS(767), + [anon_sym_bit_DASHxor2] = ACTIONS(767), + [anon_sym_bit_DASHor2] = ACTIONS(767), + [anon_sym_DOT_DOT2] = ACTIONS(767), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(769), + [aux_sym__immediate_decimal_token5] = ACTIONS(906), + [sym_filesize_unit] = ACTIONS(767), + [sym_duration_unit] = ACTIONS(769), + [anon_sym_err_GT] = ACTIONS(767), + [anon_sym_out_GT] = ACTIONS(767), + [anon_sym_e_GT] = ACTIONS(767), + [anon_sym_o_GT] = ACTIONS(767), + [anon_sym_err_PLUSout_GT] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT] = ACTIONS(767), + [anon_sym_o_PLUSe_GT] = ACTIONS(767), + [anon_sym_e_PLUSo_GT] = ACTIONS(767), + [anon_sym_err_GT_GT] = ACTIONS(767), + [anon_sym_out_GT_GT] = ACTIONS(767), + [anon_sym_e_GT_GT] = ACTIONS(767), + [anon_sym_o_GT_GT] = ACTIONS(767), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(767), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(767), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(127)] = { + [sym_expr_parenthesized] = STATE(2890), + [sym__spread_parenthesized] = STATE(3326), + [sym_val_range] = STATE(3285), + [sym__val_range] = STATE(4701), + [sym__value] = STATE(3285), + [sym_val_nothing] = STATE(3270), + [sym_val_bool] = STATE(3015), + [sym__spread_variable] = STATE(3358), + [sym_val_variable] = STATE(2780), + [sym_val_cellpath] = STATE(3270), + [sym_val_number] = STATE(3270), + [sym__val_number_decimal] = STATE(2431), + [sym__val_number] = STATE(3271), + [sym_val_duration] = STATE(3270), + [sym_val_filesize] = STATE(3270), + [sym_val_binary] = STATE(3270), + [sym_val_string] = STATE(3270), + [sym__raw_str] = STATE(2547), + [sym__str_double_quotes] = STATE(2547), + [sym__str_single_quotes] = STATE(2547), + [sym__str_back_ticks] = STATE(2547), + [sym_val_interpolated] = STATE(3270), + [sym__inter_single_quotes] = STATE(3334), + [sym__inter_double_quotes] = STATE(3335), + [sym_val_list] = STATE(3270), + [sym__spread_list] = STATE(3326), + [sym_val_record] = STATE(3270), + [sym_val_table] = STATE(3270), + [sym_val_closure] = STATE(3270), + [sym__cmd_arg] = STATE(3359), + [sym_redirection] = STATE(3370), + [sym__flag] = STATE(3385), + [sym_short_flag] = STATE(3394), + [sym_long_flag] = STATE(3394), + [sym_unquoted] = STATE(3019), + [sym__unquoted_with_expr] = STATE(3325), + [sym__unquoted_anonymous_prefix] = STATE(4701), + [sym_comment] = STATE(127), + [ts_builtin_sym_end] = ACTIONS(793), + [anon_sym_true] = ACTIONS(908), + [anon_sym_false] = ACTIONS(908), + [anon_sym_null] = ACTIONS(910), + [aux_sym_cmd_identifier_token3] = ACTIONS(912), + [aux_sym_cmd_identifier_token4] = ACTIONS(912), + [aux_sym_cmd_identifier_token5] = ACTIONS(912), + [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(914), + [anon_sym_LPAREN] = ACTIONS(916), + [anon_sym_DOLLAR] = ACTIONS(918), + [anon_sym_DASH_DASH] = ACTIONS(920), + [anon_sym_DASH2] = ACTIONS(922), + [anon_sym_LBRACE] = ACTIONS(924), + [anon_sym_DOT_DOT] = ACTIONS(926), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(928), + [anon_sym_DOT_DOT_EQ] = ACTIONS(930), + [anon_sym_DOT_DOT_LT] = ACTIONS(930), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(932), + [aux_sym__val_number_decimal_token1] = ACTIONS(934), + [aux_sym__val_number_decimal_token2] = ACTIONS(934), + [aux_sym__val_number_decimal_token3] = ACTIONS(936), + [aux_sym__val_number_decimal_token4] = ACTIONS(936), + [aux_sym__val_number_token1] = ACTIONS(938), + [aux_sym__val_number_token2] = ACTIONS(938), + [aux_sym__val_number_token3] = ACTIONS(938), + [anon_sym_0b] = ACTIONS(940), + [anon_sym_0o] = ACTIONS(942), + [anon_sym_0x] = ACTIONS(942), + [sym_val_date] = ACTIONS(944), + [anon_sym_DQUOTE] = ACTIONS(946), + [anon_sym_SQUOTE] = ACTIONS(948), + [anon_sym_BQUOTE] = ACTIONS(950), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(952), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(954), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(956), + [anon_sym_err_GT] = ACTIONS(958), + [anon_sym_out_GT] = ACTIONS(958), + [anon_sym_e_GT] = ACTIONS(958), + [anon_sym_o_GT] = ACTIONS(958), + [anon_sym_err_PLUSout_GT] = ACTIONS(958), + [anon_sym_out_PLUSerr_GT] = ACTIONS(958), + [anon_sym_o_PLUSe_GT] = ACTIONS(958), + [anon_sym_e_PLUSo_GT] = ACTIONS(958), + [anon_sym_err_GT_GT] = ACTIONS(958), + [anon_sym_out_GT_GT] = ACTIONS(958), + [anon_sym_e_GT_GT] = ACTIONS(958), + [anon_sym_o_GT_GT] = ACTIONS(958), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(958), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(958), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(958), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(958), + [aux_sym_unquoted_token1] = ACTIONS(960), + [anon_sym_POUND] = ACTIONS(103), + [sym_raw_string_begin] = ACTIONS(962), + }, + [STATE(128)] = { + [sym_comment] = STATE(128), + [ts_builtin_sym_end] = ACTIONS(769), + [anon_sym_in] = ACTIONS(767), + [anon_sym_STAR_STAR] = ACTIONS(769), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_STAR] = ACTIONS(767), + [anon_sym_SLASH] = ACTIONS(767), + [anon_sym_mod] = ACTIONS(769), + [anon_sym_SLASH_SLASH] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(767), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_bit_DASHshl] = ACTIONS(769), + [anon_sym_bit_DASHshr] = ACTIONS(769), + [anon_sym_EQ_TILDE] = ACTIONS(769), + [anon_sym_BANG_TILDE] = ACTIONS(769), + [anon_sym_like] = ACTIONS(769), + [anon_sym_not_DASHlike] = ACTIONS(769), + [anon_sym_bit_DASHand] = ACTIONS(769), + [anon_sym_bit_DASHxor] = ACTIONS(769), + [anon_sym_bit_DASHor] = ACTIONS(769), + [anon_sym_and] = ACTIONS(769), + [anon_sym_xor] = ACTIONS(769), + [anon_sym_or] = ACTIONS(769), + [anon_sym_in2] = ACTIONS(769), + [anon_sym_not_DASHin] = ACTIONS(769), + [anon_sym_has] = ACTIONS(769), + [anon_sym_not_DASHhas] = ACTIONS(769), + [anon_sym_starts_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(769), + [anon_sym_ends_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(769), + [anon_sym_EQ_EQ] = ACTIONS(769), + [anon_sym_BANG_EQ] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(767), + [anon_sym_LT_EQ] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(767), + [anon_sym_GT_EQ] = ACTIONS(769), + [aux_sym_cmd_identifier_token6] = ACTIONS(767), + [sym__newline] = ACTIONS(767), + [anon_sym_SEMI] = ACTIONS(767), + [anon_sym_PIPE] = ACTIONS(767), + [anon_sym_err_GT_PIPE] = ACTIONS(767), + [anon_sym_out_GT_PIPE] = ACTIONS(767), + [anon_sym_e_GT_PIPE] = ACTIONS(767), + [anon_sym_o_GT_PIPE] = ACTIONS(767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(767), + [anon_sym_GT2] = ACTIONS(767), + [anon_sym_DASH2] = ACTIONS(767), + [anon_sym_STAR2] = ACTIONS(767), + [anon_sym_and2] = ACTIONS(767), + [anon_sym_xor2] = ACTIONS(767), + [anon_sym_or2] = ACTIONS(767), + [anon_sym_not_DASHin2] = ACTIONS(767), + [anon_sym_has2] = ACTIONS(767), + [anon_sym_not_DASHhas2] = ACTIONS(767), + [anon_sym_starts_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(767), + [anon_sym_ends_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(767), + [anon_sym_EQ_EQ2] = ACTIONS(767), + [anon_sym_BANG_EQ2] = ACTIONS(767), + [anon_sym_LT2] = ACTIONS(767), + [anon_sym_LT_EQ2] = ACTIONS(767), + [anon_sym_GT_EQ2] = ACTIONS(767), + [anon_sym_EQ_TILDE2] = ACTIONS(767), + [anon_sym_BANG_TILDE2] = ACTIONS(767), + [anon_sym_like2] = ACTIONS(767), + [anon_sym_not_DASHlike2] = ACTIONS(767), + [anon_sym_STAR_STAR2] = ACTIONS(767), + [anon_sym_PLUS_PLUS2] = ACTIONS(767), + [anon_sym_SLASH2] = ACTIONS(767), + [anon_sym_mod2] = ACTIONS(767), + [anon_sym_SLASH_SLASH2] = ACTIONS(767), + [anon_sym_PLUS2] = ACTIONS(767), + [anon_sym_bit_DASHshl2] = ACTIONS(767), + [anon_sym_bit_DASHshr2] = ACTIONS(767), + [anon_sym_bit_DASHand2] = ACTIONS(767), + [anon_sym_bit_DASHxor2] = ACTIONS(767), + [anon_sym_bit_DASHor2] = ACTIONS(767), + [anon_sym_DOT_DOT2] = ACTIONS(767), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(769), + [sym_filesize_unit] = ACTIONS(767), + [sym_duration_unit] = ACTIONS(769), + [anon_sym_err_GT] = ACTIONS(767), + [anon_sym_out_GT] = ACTIONS(767), + [anon_sym_e_GT] = ACTIONS(767), + [anon_sym_o_GT] = ACTIONS(767), + [anon_sym_err_PLUSout_GT] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT] = ACTIONS(767), + [anon_sym_o_PLUSe_GT] = ACTIONS(767), + [anon_sym_e_PLUSo_GT] = ACTIONS(767), + [anon_sym_err_GT_GT] = ACTIONS(767), + [anon_sym_out_GT_GT] = ACTIONS(767), + [anon_sym_e_GT_GT] = ACTIONS(767), + [anon_sym_o_GT_GT] = ACTIONS(767), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(767), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(767), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(103), + }, [STATE(129)] = { - [sym_expr_parenthesized] = STATE(2680), - [sym__spread_parenthesized] = STATE(3130), - [sym_val_range] = STATE(3137), - [sym__val_range] = STATE(4685), - [sym__value] = STATE(3137), - [sym_val_nothing] = STATE(3023), - [sym_val_bool] = STATE(2794), - [sym__spread_variable] = STATE(3138), - [sym_val_variable] = STATE(2654), - [sym_val_cellpath] = STATE(3023), - [sym_val_number] = STATE(3023), - [sym__val_number_decimal] = STATE(2409), - [sym__val_number] = STATE(3192), - [sym_val_duration] = STATE(3023), - [sym_val_filesize] = STATE(3023), - [sym_val_binary] = STATE(3023), - [sym_val_string] = STATE(3023), - [sym__raw_str] = STATE(2483), - [sym__str_double_quotes] = STATE(2483), - [sym__str_single_quotes] = STATE(2483), - [sym__str_back_ticks] = STATE(2483), - [sym_val_interpolated] = STATE(3023), - [sym__inter_single_quotes] = STATE(3094), - [sym__inter_double_quotes] = STATE(3095), - [sym_val_list] = STATE(3023), - [sym__spread_list] = STATE(3130), - [sym_val_record] = STATE(3023), - [sym_val_table] = STATE(3023), - [sym_val_closure] = STATE(3023), - [sym__cmd_arg] = STATE(3302), - [sym_redirection] = STATE(3140), - [sym__flag] = STATE(3141), - [sym_short_flag] = STATE(3142), - [sym_long_flag] = STATE(3142), - [sym_unquoted] = STATE(2867), - [sym__unquoted_with_expr] = STATE(3143), - [sym__unquoted_anonymous_prefix] = STATE(4685), [sym_comment] = STATE(129), - [anon_sym_true] = ACTIONS(795), - [anon_sym_false] = ACTIONS(795), - [anon_sym_null] = ACTIONS(797), - [aux_sym_cmd_identifier_token3] = ACTIONS(799), - [aux_sym_cmd_identifier_token4] = ACTIONS(799), - [aux_sym_cmd_identifier_token5] = ACTIONS(799), - [sym__newline] = ACTIONS(916), - [sym__space] = ACTIONS(918), - [anon_sym_SEMI] = ACTIONS(916), - [anon_sym_PIPE] = ACTIONS(916), - [anon_sym_err_GT_PIPE] = ACTIONS(916), - [anon_sym_out_GT_PIPE] = ACTIONS(916), - [anon_sym_e_GT_PIPE] = ACTIONS(916), - [anon_sym_o_GT_PIPE] = ACTIONS(916), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(916), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(916), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(916), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(916), - [anon_sym_LBRACK] = ACTIONS(806), - [anon_sym_LPAREN] = ACTIONS(808), - [anon_sym_RPAREN] = ACTIONS(916), - [anon_sym_DOLLAR] = ACTIONS(810), - [anon_sym_DASH_DASH] = ACTIONS(812), - [anon_sym_DASH2] = ACTIONS(814), - [anon_sym_LBRACE] = ACTIONS(816), - [anon_sym_DOT_DOT] = ACTIONS(818), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(820), - [anon_sym_DOT_DOT_EQ] = ACTIONS(822), - [anon_sym_DOT_DOT_LT] = ACTIONS(822), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(824), - [aux_sym__val_number_decimal_token1] = ACTIONS(826), - [aux_sym__val_number_decimal_token2] = ACTIONS(826), - [aux_sym__val_number_decimal_token3] = ACTIONS(828), - [aux_sym__val_number_decimal_token4] = ACTIONS(828), - [aux_sym__val_number_token1] = ACTIONS(830), - [aux_sym__val_number_token2] = ACTIONS(830), - [aux_sym__val_number_token3] = ACTIONS(830), - [anon_sym_0b] = ACTIONS(832), - [anon_sym_0o] = ACTIONS(834), - [anon_sym_0x] = ACTIONS(834), - [sym_val_date] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(838), - [anon_sym_SQUOTE] = ACTIONS(840), - [anon_sym_BQUOTE] = ACTIONS(842), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(846), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(848), - [anon_sym_err_GT] = ACTIONS(852), - [anon_sym_out_GT] = ACTIONS(852), - [anon_sym_e_GT] = ACTIONS(852), - [anon_sym_o_GT] = ACTIONS(852), - [anon_sym_err_PLUSout_GT] = ACTIONS(852), - [anon_sym_out_PLUSerr_GT] = ACTIONS(852), - [anon_sym_o_PLUSe_GT] = ACTIONS(852), - [anon_sym_e_PLUSo_GT] = ACTIONS(852), - [anon_sym_err_GT_GT] = ACTIONS(852), - [anon_sym_out_GT_GT] = ACTIONS(852), - [anon_sym_e_GT_GT] = ACTIONS(852), - [anon_sym_o_GT_GT] = ACTIONS(852), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(852), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(852), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(852), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(852), - [aux_sym_unquoted_token1] = ACTIONS(854), + [anon_sym_in] = ACTIONS(863), + [anon_sym_STAR_STAR] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_STAR] = ACTIONS(863), + [anon_sym_SLASH] = ACTIONS(863), + [anon_sym_mod] = ACTIONS(865), + [anon_sym_SLASH_SLASH] = ACTIONS(865), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(865), + [anon_sym_bit_DASHshl] = ACTIONS(865), + [anon_sym_bit_DASHshr] = ACTIONS(865), + [anon_sym_EQ_TILDE] = ACTIONS(865), + [anon_sym_BANG_TILDE] = ACTIONS(865), + [anon_sym_like] = ACTIONS(865), + [anon_sym_not_DASHlike] = ACTIONS(865), + [anon_sym_bit_DASHand] = ACTIONS(865), + [anon_sym_bit_DASHxor] = ACTIONS(865), + [anon_sym_bit_DASHor] = ACTIONS(865), + [anon_sym_and] = ACTIONS(865), + [anon_sym_xor] = ACTIONS(865), + [anon_sym_or] = ACTIONS(865), + [anon_sym_in2] = ACTIONS(865), + [anon_sym_not_DASHin] = ACTIONS(865), + [anon_sym_has] = ACTIONS(865), + [anon_sym_not_DASHhas] = ACTIONS(865), + [anon_sym_starts_DASHwith] = ACTIONS(865), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(865), + [anon_sym_ends_DASHwith] = ACTIONS(865), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(865), + [anon_sym_EQ_EQ] = ACTIONS(865), + [anon_sym_BANG_EQ] = ACTIONS(865), + [anon_sym_LT] = ACTIONS(863), + [anon_sym_LT_EQ] = ACTIONS(865), + [anon_sym_GT] = ACTIONS(863), + [anon_sym_GT_EQ] = ACTIONS(865), + [aux_sym_cmd_identifier_token6] = ACTIONS(863), + [sym__newline] = ACTIONS(863), + [anon_sym_SEMI] = ACTIONS(863), + [anon_sym_PIPE] = ACTIONS(863), + [anon_sym_err_GT_PIPE] = ACTIONS(863), + [anon_sym_out_GT_PIPE] = ACTIONS(863), + [anon_sym_e_GT_PIPE] = ACTIONS(863), + [anon_sym_o_GT_PIPE] = ACTIONS(863), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(863), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(863), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(863), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(863), + [anon_sym_RPAREN] = ACTIONS(863), + [anon_sym_GT2] = ACTIONS(863), + [anon_sym_DASH2] = ACTIONS(863), + [anon_sym_STAR2] = ACTIONS(863), + [anon_sym_and2] = ACTIONS(863), + [anon_sym_xor2] = ACTIONS(863), + [anon_sym_or2] = ACTIONS(863), + [anon_sym_not_DASHin2] = ACTIONS(863), + [anon_sym_has2] = ACTIONS(863), + [anon_sym_not_DASHhas2] = ACTIONS(863), + [anon_sym_starts_DASHwith2] = ACTIONS(863), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(863), + [anon_sym_ends_DASHwith2] = ACTIONS(863), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(863), + [anon_sym_EQ_EQ2] = ACTIONS(863), + [anon_sym_BANG_EQ2] = ACTIONS(863), + [anon_sym_LT2] = ACTIONS(863), + [anon_sym_LT_EQ2] = ACTIONS(863), + [anon_sym_GT_EQ2] = ACTIONS(863), + [anon_sym_EQ_TILDE2] = ACTIONS(863), + [anon_sym_BANG_TILDE2] = ACTIONS(863), + [anon_sym_like2] = ACTIONS(863), + [anon_sym_not_DASHlike2] = ACTIONS(863), + [anon_sym_STAR_STAR2] = ACTIONS(863), + [anon_sym_PLUS_PLUS2] = ACTIONS(863), + [anon_sym_SLASH2] = ACTIONS(863), + [anon_sym_mod2] = ACTIONS(863), + [anon_sym_SLASH_SLASH2] = ACTIONS(863), + [anon_sym_PLUS2] = ACTIONS(863), + [anon_sym_bit_DASHshl2] = ACTIONS(863), + [anon_sym_bit_DASHshr2] = ACTIONS(863), + [anon_sym_bit_DASHand2] = ACTIONS(863), + [anon_sym_bit_DASHxor2] = ACTIONS(863), + [anon_sym_bit_DASHor2] = ACTIONS(863), + [anon_sym_DOT_DOT2] = ACTIONS(863), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(865), + [anon_sym_DOT_DOT_LT2] = ACTIONS(865), + [sym_filesize_unit] = ACTIONS(863), + [sym_duration_unit] = ACTIONS(865), + [anon_sym_err_GT] = ACTIONS(863), + [anon_sym_out_GT] = ACTIONS(863), + [anon_sym_e_GT] = ACTIONS(863), + [anon_sym_o_GT] = ACTIONS(863), + [anon_sym_err_PLUSout_GT] = ACTIONS(863), + [anon_sym_out_PLUSerr_GT] = ACTIONS(863), + [anon_sym_o_PLUSe_GT] = ACTIONS(863), + [anon_sym_e_PLUSo_GT] = ACTIONS(863), + [anon_sym_err_GT_GT] = ACTIONS(863), + [anon_sym_out_GT_GT] = ACTIONS(863), + [anon_sym_e_GT_GT] = ACTIONS(863), + [anon_sym_o_GT_GT] = ACTIONS(863), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(863), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(863), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(863), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(863), [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(856), }, [STATE(130)] = { - [sym_expr_parenthesized] = STATE(2868), - [sym__spread_parenthesized] = STATE(3258), - [sym_val_range] = STATE(3264), - [sym__val_range] = STATE(4617), - [sym__value] = STATE(3264), - [sym_val_nothing] = STATE(3355), - [sym_val_bool] = STATE(2950), - [sym__spread_variable] = STATE(3265), - [sym_val_variable] = STATE(2784), - [sym_val_cellpath] = STATE(3355), - [sym_val_number] = STATE(3355), - [sym__val_number_decimal] = STATE(2461), - [sym__val_number] = STATE(3362), - [sym_val_duration] = STATE(3355), - [sym_val_filesize] = STATE(3355), - [sym_val_binary] = STATE(3355), - [sym_val_string] = STATE(3355), - [sym__raw_str] = STATE(2554), - [sym__str_double_quotes] = STATE(2554), - [sym__str_single_quotes] = STATE(2554), - [sym__str_back_ticks] = STATE(2554), - [sym_val_interpolated] = STATE(3355), - [sym__inter_single_quotes] = STATE(3340), - [sym__inter_double_quotes] = STATE(3342), - [sym_val_list] = STATE(3355), - [sym__spread_list] = STATE(3258), - [sym_val_record] = STATE(3355), - [sym_val_table] = STATE(3355), - [sym_val_closure] = STATE(3355), - [sym__cmd_arg] = STATE(3267), - [sym_redirection] = STATE(3280), - [sym__flag] = STATE(3281), - [sym_short_flag] = STATE(3282), - [sym_long_flag] = STATE(3282), - [sym_unquoted] = STATE(3010), - [sym__unquoted_with_expr] = STATE(3241), - [sym__unquoted_anonymous_prefix] = STATE(4617), [sym_comment] = STATE(130), - [ts_builtin_sym_end] = ACTIONS(882), - [anon_sym_true] = ACTIONS(920), - [anon_sym_false] = ACTIONS(920), - [anon_sym_null] = ACTIONS(922), - [aux_sym_cmd_identifier_token3] = ACTIONS(924), - [aux_sym_cmd_identifier_token4] = ACTIONS(924), - [aux_sym_cmd_identifier_token5] = ACTIONS(924), - [sym__newline] = ACTIONS(804), - [sym__space] = ACTIONS(882), - [anon_sym_SEMI] = ACTIONS(804), - [anon_sym_PIPE] = ACTIONS(804), - [anon_sym_err_GT_PIPE] = ACTIONS(804), - [anon_sym_out_GT_PIPE] = ACTIONS(804), - [anon_sym_e_GT_PIPE] = ACTIONS(804), - [anon_sym_o_GT_PIPE] = ACTIONS(804), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(804), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(804), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(804), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(804), - [anon_sym_LBRACK] = ACTIONS(926), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(930), - [anon_sym_DASH_DASH] = ACTIONS(932), - [anon_sym_DASH2] = ACTIONS(934), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(938), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(940), - [anon_sym_DOT_DOT_EQ] = ACTIONS(942), - [anon_sym_DOT_DOT_LT] = ACTIONS(942), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(944), - [aux_sym__val_number_decimal_token1] = ACTIONS(946), - [aux_sym__val_number_decimal_token2] = ACTIONS(946), - [aux_sym__val_number_decimal_token3] = ACTIONS(948), - [aux_sym__val_number_decimal_token4] = ACTIONS(948), - [aux_sym__val_number_token1] = ACTIONS(950), - [aux_sym__val_number_token2] = ACTIONS(950), - [aux_sym__val_number_token3] = ACTIONS(950), - [anon_sym_0b] = ACTIONS(952), - [anon_sym_0o] = ACTIONS(954), - [anon_sym_0x] = ACTIONS(954), - [sym_val_date] = ACTIONS(956), - [anon_sym_DQUOTE] = ACTIONS(958), - [anon_sym_SQUOTE] = ACTIONS(960), - [anon_sym_BQUOTE] = ACTIONS(962), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(964), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(966), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(968), - [anon_sym_err_GT] = ACTIONS(970), - [anon_sym_out_GT] = ACTIONS(970), - [anon_sym_e_GT] = ACTIONS(970), - [anon_sym_o_GT] = ACTIONS(970), - [anon_sym_err_PLUSout_GT] = ACTIONS(970), - [anon_sym_out_PLUSerr_GT] = ACTIONS(970), - [anon_sym_o_PLUSe_GT] = ACTIONS(970), - [anon_sym_e_PLUSo_GT] = ACTIONS(970), - [anon_sym_err_GT_GT] = ACTIONS(970), - [anon_sym_out_GT_GT] = ACTIONS(970), - [anon_sym_e_GT_GT] = ACTIONS(970), - [anon_sym_o_GT_GT] = ACTIONS(970), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(970), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(970), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(970), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(970), - [aux_sym_unquoted_token1] = ACTIONS(972), - [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(974), - }, - [STATE(131)] = { - [sym_comment] = STATE(131), + [ts_builtin_sym_end] = ACTIONS(741), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -54959,6 +55570,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), @@ -55004,8 +55616,6 @@ 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_token1] = ACTIONS(976), - [aux_sym__immediate_decimal_token5] = ACTIONS(978), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_err_GT] = ACTIONS(739), @@ -55026,430 +55636,326 @@ 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_expr_parenthesized] = STATE(2714), + [sym__spread_parenthesized] = STATE(3129), + [sym_val_range] = STATE(3130), + [sym__val_range] = STATE(4886), + [sym__value] = STATE(3130), + [sym_val_nothing] = STATE(3228), + [sym_val_bool] = STATE(2841), + [sym__spread_variable] = STATE(3131), + [sym_val_variable] = STATE(2686), + [sym_val_cellpath] = STATE(3228), + [sym_val_number] = STATE(3228), + [sym__val_number_decimal] = STATE(2406), + [sym__val_number] = STATE(3229), + [sym_val_duration] = STATE(3228), + [sym_val_filesize] = STATE(3228), + [sym_val_binary] = STATE(3228), + [sym_val_string] = STATE(3228), + [sym__raw_str] = STATE(2477), + [sym__str_double_quotes] = STATE(2477), + [sym__str_single_quotes] = STATE(2477), + [sym__str_back_ticks] = STATE(2477), + [sym_val_interpolated] = STATE(3228), + [sym__inter_single_quotes] = STATE(3047), + [sym__inter_double_quotes] = STATE(3048), + [sym_val_list] = STATE(3228), + [sym__spread_list] = STATE(3129), + [sym_val_record] = STATE(3228), + [sym_val_table] = STATE(3228), + [sym_val_closure] = STATE(3228), + [sym__cmd_arg] = STATE(3252), + [sym_redirection] = STATE(3133), + [sym__flag] = STATE(3134), + [sym_short_flag] = STATE(3135), + [sym_long_flag] = STATE(3135), + [sym_unquoted] = STATE(2742), + [sym__unquoted_with_expr] = STATE(3136), + [sym__unquoted_anonymous_prefix] = STATE(4886), + [sym_comment] = STATE(131), + [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(964), + [sym__space] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(964), + [anon_sym_PIPE] = ACTIONS(964), + [anon_sym_err_GT_PIPE] = ACTIONS(964), + [anon_sym_out_GT_PIPE] = ACTIONS(964), + [anon_sym_e_GT_PIPE] = ACTIONS(964), + [anon_sym_o_GT_PIPE] = ACTIONS(964), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(964), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(964), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(964), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(964), + [anon_sym_LBRACK] = ACTIONS(795), + [anon_sym_LPAREN] = ACTIONS(797), + [anon_sym_RPAREN] = ACTIONS(964), + [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(132)] = { [sym_comment] = STATE(132), - [anon_sym_in] = ACTIONS(860), - [anon_sym_STAR_STAR] = ACTIONS(862), - [anon_sym_PLUS_PLUS] = ACTIONS(862), - [anon_sym_STAR] = ACTIONS(860), - [anon_sym_SLASH] = ACTIONS(860), - [anon_sym_mod] = ACTIONS(862), - [anon_sym_SLASH_SLASH] = ACTIONS(862), - [anon_sym_PLUS] = ACTIONS(860), - [anon_sym_DASH] = ACTIONS(862), - [anon_sym_bit_DASHshl] = ACTIONS(862), - [anon_sym_bit_DASHshr] = ACTIONS(862), - [anon_sym_EQ_TILDE] = ACTIONS(862), - [anon_sym_BANG_TILDE] = ACTIONS(862), - [anon_sym_like] = ACTIONS(862), - [anon_sym_not_DASHlike] = ACTIONS(862), - [anon_sym_bit_DASHand] = ACTIONS(862), - [anon_sym_bit_DASHxor] = ACTIONS(862), - [anon_sym_bit_DASHor] = ACTIONS(862), - [anon_sym_and] = ACTIONS(862), - [anon_sym_xor] = ACTIONS(862), - [anon_sym_or] = ACTIONS(862), - [anon_sym_in2] = ACTIONS(862), - [anon_sym_not_DASHin] = ACTIONS(862), - [anon_sym_has] = ACTIONS(862), - [anon_sym_not_DASHhas] = ACTIONS(862), - [anon_sym_starts_DASHwith] = ACTIONS(862), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(862), - [anon_sym_ends_DASHwith] = ACTIONS(862), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(862), - [anon_sym_EQ_EQ] = ACTIONS(862), - [anon_sym_BANG_EQ] = ACTIONS(862), - [anon_sym_LT] = ACTIONS(860), - [anon_sym_LT_EQ] = ACTIONS(862), - [anon_sym_GT] = ACTIONS(860), - [anon_sym_GT_EQ] = ACTIONS(862), - [aux_sym_cmd_identifier_token6] = ACTIONS(860), - [sym__newline] = ACTIONS(860), - [anon_sym_SEMI] = ACTIONS(860), - [anon_sym_PIPE] = ACTIONS(860), - [anon_sym_err_GT_PIPE] = ACTIONS(860), - [anon_sym_out_GT_PIPE] = ACTIONS(860), - [anon_sym_e_GT_PIPE] = ACTIONS(860), - [anon_sym_o_GT_PIPE] = ACTIONS(860), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(860), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(860), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(860), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(860), - [anon_sym_RPAREN] = ACTIONS(860), - [anon_sym_GT2] = ACTIONS(860), - [anon_sym_DASH2] = ACTIONS(860), - [anon_sym_STAR2] = ACTIONS(860), - [anon_sym_and2] = ACTIONS(860), - [anon_sym_xor2] = ACTIONS(860), - [anon_sym_or2] = ACTIONS(860), - [anon_sym_not_DASHin2] = ACTIONS(860), - [anon_sym_has2] = ACTIONS(860), - [anon_sym_not_DASHhas2] = ACTIONS(860), - [anon_sym_starts_DASHwith2] = ACTIONS(860), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(860), - [anon_sym_ends_DASHwith2] = ACTIONS(860), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(860), - [anon_sym_EQ_EQ2] = ACTIONS(860), - [anon_sym_BANG_EQ2] = ACTIONS(860), - [anon_sym_LT2] = ACTIONS(860), - [anon_sym_LT_EQ2] = ACTIONS(860), - [anon_sym_GT_EQ2] = ACTIONS(860), - [anon_sym_EQ_TILDE2] = ACTIONS(860), - [anon_sym_BANG_TILDE2] = ACTIONS(860), - [anon_sym_like2] = ACTIONS(860), - [anon_sym_not_DASHlike2] = ACTIONS(860), - [anon_sym_STAR_STAR2] = ACTIONS(860), - [anon_sym_PLUS_PLUS2] = ACTIONS(860), - [anon_sym_SLASH2] = ACTIONS(860), - [anon_sym_mod2] = ACTIONS(860), - [anon_sym_SLASH_SLASH2] = ACTIONS(860), - [anon_sym_PLUS2] = ACTIONS(860), - [anon_sym_bit_DASHshl2] = ACTIONS(860), - [anon_sym_bit_DASHshr2] = ACTIONS(860), - [anon_sym_bit_DASHand2] = ACTIONS(860), - [anon_sym_bit_DASHxor2] = ACTIONS(860), - [anon_sym_bit_DASHor2] = ACTIONS(860), - [anon_sym_DOT_DOT2] = ACTIONS(860), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(862), - [anon_sym_DOT_DOT_LT2] = ACTIONS(862), - [sym_filesize_unit] = ACTIONS(860), - [sym_duration_unit] = ACTIONS(862), - [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), + [ts_builtin_sym_end] = ACTIONS(968), + [anon_sym_in] = ACTIONS(847), + [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(847), + [anon_sym_SEMI] = ACTIONS(847), + [anon_sym_PIPE] = ACTIONS(847), + [anon_sym_err_GT_PIPE] = ACTIONS(847), + [anon_sym_out_GT_PIPE] = ACTIONS(847), + [anon_sym_e_GT_PIPE] = ACTIONS(847), + [anon_sym_o_GT_PIPE] = ACTIONS(847), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(847), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(847), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(847), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(847), + [anon_sym_GT2] = ACTIONS(847), + [anon_sym_DASH2] = ACTIONS(847), + [anon_sym_STAR2] = ACTIONS(847), + [anon_sym_and2] = ACTIONS(847), + [anon_sym_xor2] = ACTIONS(847), + [anon_sym_or2] = ACTIONS(847), + [anon_sym_not_DASHin2] = ACTIONS(847), + [anon_sym_has2] = ACTIONS(847), + [anon_sym_not_DASHhas2] = ACTIONS(847), + [anon_sym_starts_DASHwith2] = ACTIONS(847), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(847), + [anon_sym_ends_DASHwith2] = ACTIONS(847), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(847), + [anon_sym_EQ_EQ2] = ACTIONS(847), + [anon_sym_BANG_EQ2] = ACTIONS(847), + [anon_sym_LT2] = ACTIONS(847), + [anon_sym_LT_EQ2] = ACTIONS(847), + [anon_sym_GT_EQ2] = ACTIONS(847), + [anon_sym_EQ_TILDE2] = ACTIONS(847), + [anon_sym_BANG_TILDE2] = ACTIONS(847), + [anon_sym_like2] = ACTIONS(847), + [anon_sym_not_DASHlike2] = ACTIONS(847), + [anon_sym_STAR_STAR2] = ACTIONS(847), + [anon_sym_PLUS_PLUS2] = ACTIONS(847), + [anon_sym_SLASH2] = ACTIONS(847), + [anon_sym_mod2] = ACTIONS(847), + [anon_sym_SLASH_SLASH2] = ACTIONS(847), + [anon_sym_PLUS2] = ACTIONS(847), + [anon_sym_bit_DASHshl2] = ACTIONS(847), + [anon_sym_bit_DASHshr2] = ACTIONS(847), + [anon_sym_bit_DASHand2] = ACTIONS(847), + [anon_sym_bit_DASHxor2] = ACTIONS(847), + [anon_sym_bit_DASHor2] = ACTIONS(847), + [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(847), + [anon_sym_out_GT] = ACTIONS(847), + [anon_sym_e_GT] = ACTIONS(847), + [anon_sym_o_GT] = ACTIONS(847), + [anon_sym_err_PLUSout_GT] = ACTIONS(847), + [anon_sym_out_PLUSerr_GT] = ACTIONS(847), + [anon_sym_o_PLUSe_GT] = ACTIONS(847), + [anon_sym_e_PLUSo_GT] = ACTIONS(847), + [anon_sym_err_GT_GT] = ACTIONS(847), + [anon_sym_out_GT_GT] = ACTIONS(847), + [anon_sym_e_GT_GT] = ACTIONS(847), + [anon_sym_o_GT_GT] = ACTIONS(847), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(847), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(847), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(847), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(847), [anon_sym_POUND] = ACTIONS(103), }, [STATE(133)] = { [sym_comment] = STATE(133), - [anon_sym_in] = ACTIONS(866), - [anon_sym_STAR_STAR] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_STAR] = ACTIONS(904), - [anon_sym_SLASH] = ACTIONS(904), - [anon_sym_mod] = ACTIONS(902), - [anon_sym_SLASH_SLASH] = ACTIONS(902), - [anon_sym_PLUS] = ACTIONS(904), - [anon_sym_DASH] = ACTIONS(902), - [anon_sym_bit_DASHshl] = ACTIONS(902), - [anon_sym_bit_DASHshr] = ACTIONS(902), - [anon_sym_EQ_TILDE] = ACTIONS(902), - [anon_sym_BANG_TILDE] = ACTIONS(902), - [anon_sym_like] = ACTIONS(902), - [anon_sym_not_DASHlike] = ACTIONS(902), - [anon_sym_bit_DASHand] = ACTIONS(902), - [anon_sym_bit_DASHxor] = ACTIONS(902), - [anon_sym_bit_DASHor] = ACTIONS(902), - [anon_sym_and] = ACTIONS(902), - [anon_sym_xor] = ACTIONS(902), - [anon_sym_or] = ACTIONS(902), - [anon_sym_in2] = ACTIONS(902), - [anon_sym_not_DASHin] = ACTIONS(902), - [anon_sym_has] = ACTIONS(902), - [anon_sym_not_DASHhas] = ACTIONS(902), - [anon_sym_starts_DASHwith] = ACTIONS(902), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(902), - [anon_sym_ends_DASHwith] = ACTIONS(902), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(902), - [anon_sym_EQ_EQ] = ACTIONS(902), - [anon_sym_BANG_EQ] = ACTIONS(902), - [anon_sym_LT] = ACTIONS(904), - [anon_sym_LT_EQ] = ACTIONS(902), - [anon_sym_GT] = ACTIONS(904), - [anon_sym_GT_EQ] = ACTIONS(902), - [aux_sym_cmd_identifier_token6] = ACTIONS(906), - [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), + [ts_builtin_sym_end] = ACTIONS(865), + [anon_sym_in] = ACTIONS(863), + [anon_sym_STAR_STAR] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_STAR] = ACTIONS(863), + [anon_sym_SLASH] = ACTIONS(863), + [anon_sym_mod] = ACTIONS(865), + [anon_sym_SLASH_SLASH] = ACTIONS(865), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(865), + [anon_sym_bit_DASHshl] = ACTIONS(865), + [anon_sym_bit_DASHshr] = ACTIONS(865), + [anon_sym_EQ_TILDE] = ACTIONS(865), + [anon_sym_BANG_TILDE] = ACTIONS(865), + [anon_sym_like] = ACTIONS(865), + [anon_sym_not_DASHlike] = ACTIONS(865), + [anon_sym_bit_DASHand] = ACTIONS(865), + [anon_sym_bit_DASHxor] = ACTIONS(865), + [anon_sym_bit_DASHor] = ACTIONS(865), + [anon_sym_and] = ACTIONS(865), + [anon_sym_xor] = ACTIONS(865), + [anon_sym_or] = ACTIONS(865), + [anon_sym_in2] = ACTIONS(865), + [anon_sym_not_DASHin] = ACTIONS(865), + [anon_sym_has] = ACTIONS(865), + [anon_sym_not_DASHhas] = ACTIONS(865), + [anon_sym_starts_DASHwith] = ACTIONS(865), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(865), + [anon_sym_ends_DASHwith] = ACTIONS(865), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(865), + [anon_sym_EQ_EQ] = ACTIONS(865), + [anon_sym_BANG_EQ] = ACTIONS(865), + [anon_sym_LT] = ACTIONS(863), + [anon_sym_LT_EQ] = ACTIONS(865), + [anon_sym_GT] = ACTIONS(863), + [anon_sym_GT_EQ] = ACTIONS(865), + [aux_sym_cmd_identifier_token6] = ACTIONS(863), + [sym__newline] = ACTIONS(863), + [anon_sym_SEMI] = ACTIONS(863), + [anon_sym_PIPE] = ACTIONS(863), + [anon_sym_err_GT_PIPE] = ACTIONS(863), + [anon_sym_out_GT_PIPE] = ACTIONS(863), + [anon_sym_e_GT_PIPE] = ACTIONS(863), + [anon_sym_o_GT_PIPE] = ACTIONS(863), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(863), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(863), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(863), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(863), + [anon_sym_GT2] = ACTIONS(863), + [anon_sym_DASH2] = ACTIONS(863), + [anon_sym_STAR2] = ACTIONS(863), + [anon_sym_and2] = ACTIONS(863), + [anon_sym_xor2] = ACTIONS(863), + [anon_sym_or2] = ACTIONS(863), + [anon_sym_not_DASHin2] = ACTIONS(863), + [anon_sym_has2] = ACTIONS(863), + [anon_sym_not_DASHhas2] = ACTIONS(863), + [anon_sym_starts_DASHwith2] = ACTIONS(863), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(863), + [anon_sym_ends_DASHwith2] = ACTIONS(863), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(863), + [anon_sym_EQ_EQ2] = ACTIONS(863), + [anon_sym_BANG_EQ2] = ACTIONS(863), + [anon_sym_LT2] = ACTIONS(863), + [anon_sym_LT_EQ2] = ACTIONS(863), + [anon_sym_GT_EQ2] = ACTIONS(863), + [anon_sym_EQ_TILDE2] = ACTIONS(863), + [anon_sym_BANG_TILDE2] = ACTIONS(863), + [anon_sym_like2] = ACTIONS(863), + [anon_sym_not_DASHlike2] = ACTIONS(863), + [anon_sym_STAR_STAR2] = ACTIONS(863), + [anon_sym_PLUS_PLUS2] = ACTIONS(863), + [anon_sym_SLASH2] = ACTIONS(863), + [anon_sym_mod2] = ACTIONS(863), + [anon_sym_SLASH_SLASH2] = ACTIONS(863), + [anon_sym_PLUS2] = ACTIONS(863), + [anon_sym_bit_DASHshl2] = ACTIONS(863), + [anon_sym_bit_DASHshr2] = ACTIONS(863), + [anon_sym_bit_DASHand2] = ACTIONS(863), + [anon_sym_bit_DASHxor2] = ACTIONS(863), + [anon_sym_bit_DASHor2] = ACTIONS(863), + [anon_sym_DOT_DOT2] = ACTIONS(863), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(865), + [anon_sym_DOT_DOT_LT2] = ACTIONS(865), + [sym_filesize_unit] = ACTIONS(863), + [sym_duration_unit] = ACTIONS(865), + [anon_sym_err_GT] = ACTIONS(863), + [anon_sym_out_GT] = ACTIONS(863), + [anon_sym_e_GT] = ACTIONS(863), + [anon_sym_o_GT] = ACTIONS(863), + [anon_sym_err_PLUSout_GT] = ACTIONS(863), + [anon_sym_out_PLUSerr_GT] = ACTIONS(863), + [anon_sym_o_PLUSe_GT] = ACTIONS(863), + [anon_sym_e_PLUSo_GT] = ACTIONS(863), + [anon_sym_err_GT_GT] = ACTIONS(863), + [anon_sym_out_GT_GT] = ACTIONS(863), + [anon_sym_e_GT_GT] = ACTIONS(863), + [anon_sym_o_GT_GT] = ACTIONS(863), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(863), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(863), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(863), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(863), [anon_sym_POUND] = ACTIONS(103), }, [STATE(134)] = { [sym_comment] = STATE(134), - [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), - [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(135)] = { - [sym_comment] = STATE(135), - [anon_sym_in] = ACTIONS(866), - [anon_sym_STAR_STAR] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_STAR] = ACTIONS(904), - [anon_sym_SLASH] = ACTIONS(904), - [anon_sym_mod] = ACTIONS(902), - [anon_sym_SLASH_SLASH] = ACTIONS(902), - [anon_sym_PLUS] = ACTIONS(904), - [anon_sym_DASH] = ACTIONS(902), - [anon_sym_bit_DASHshl] = ACTIONS(902), - [anon_sym_bit_DASHshr] = ACTIONS(902), - [anon_sym_EQ_TILDE] = ACTIONS(902), - [anon_sym_BANG_TILDE] = ACTIONS(902), - [anon_sym_like] = ACTIONS(902), - [anon_sym_not_DASHlike] = ACTIONS(902), - [anon_sym_bit_DASHand] = ACTIONS(902), - [anon_sym_bit_DASHxor] = ACTIONS(902), - [anon_sym_bit_DASHor] = ACTIONS(902), - [anon_sym_and] = ACTIONS(902), - [anon_sym_xor] = ACTIONS(902), - [anon_sym_or] = ACTIONS(902), - [anon_sym_in2] = ACTIONS(902), - [anon_sym_not_DASHin] = ACTIONS(902), - [anon_sym_has] = ACTIONS(902), - [anon_sym_not_DASHhas] = ACTIONS(902), - [anon_sym_starts_DASHwith] = ACTIONS(902), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(902), - [anon_sym_ends_DASHwith] = ACTIONS(902), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(902), - [anon_sym_EQ_EQ] = ACTIONS(902), - [anon_sym_BANG_EQ] = ACTIONS(902), - [anon_sym_LT] = ACTIONS(904), - [anon_sym_LT_EQ] = ACTIONS(902), - [anon_sym_GT] = ACTIONS(904), - [anon_sym_GT_EQ] = ACTIONS(902), - [aux_sym_cmd_identifier_token6] = ACTIONS(906), - [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(984), - [sym_duration_unit] = ACTIONS(986), - [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(136)] = { - [sym_comment] = STATE(136), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -55532,7 +56038,7 @@ 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_token5] = ACTIONS(914), + [aux_sym__immediate_decimal_token5] = ACTIONS(896), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_err_GT] = ACTIONS(747), @@ -55553,323 +56059,218 @@ 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(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_POUND] = ACTIONS(103), - }, - [STATE(138)] = { - [sym_comment] = STATE(138), - [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(988), - [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(135)] = { + [sym_comment] = STATE(135), + [anon_sym_in] = ACTIONS(767), + [anon_sym_STAR_STAR] = ACTIONS(769), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_STAR] = ACTIONS(767), + [anon_sym_SLASH] = ACTIONS(767), + [anon_sym_mod] = ACTIONS(769), + [anon_sym_SLASH_SLASH] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(767), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_bit_DASHshl] = ACTIONS(769), + [anon_sym_bit_DASHshr] = ACTIONS(769), + [anon_sym_EQ_TILDE] = ACTIONS(769), + [anon_sym_BANG_TILDE] = ACTIONS(769), + [anon_sym_like] = ACTIONS(769), + [anon_sym_not_DASHlike] = ACTIONS(769), + [anon_sym_bit_DASHand] = ACTIONS(769), + [anon_sym_bit_DASHxor] = ACTIONS(769), + [anon_sym_bit_DASHor] = ACTIONS(769), + [anon_sym_and] = ACTIONS(769), + [anon_sym_xor] = ACTIONS(769), + [anon_sym_or] = ACTIONS(769), + [anon_sym_in2] = ACTIONS(769), + [anon_sym_not_DASHin] = ACTIONS(769), + [anon_sym_has] = ACTIONS(769), + [anon_sym_not_DASHhas] = ACTIONS(769), + [anon_sym_starts_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(769), + [anon_sym_ends_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(769), + [anon_sym_EQ_EQ] = ACTIONS(769), + [anon_sym_BANG_EQ] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(767), + [anon_sym_LT_EQ] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(767), + [anon_sym_GT_EQ] = ACTIONS(769), + [aux_sym_cmd_identifier_token6] = ACTIONS(767), + [sym__newline] = ACTIONS(767), + [anon_sym_PIPE] = ACTIONS(767), + [anon_sym_err_GT_PIPE] = ACTIONS(767), + [anon_sym_out_GT_PIPE] = ACTIONS(767), + [anon_sym_e_GT_PIPE] = ACTIONS(767), + [anon_sym_o_GT_PIPE] = ACTIONS(767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(767), + [anon_sym_GT2] = ACTIONS(767), + [anon_sym_DASH2] = ACTIONS(767), + [anon_sym_STAR2] = ACTIONS(767), + [anon_sym_and2] = ACTIONS(767), + [anon_sym_xor2] = ACTIONS(767), + [anon_sym_or2] = ACTIONS(767), + [anon_sym_not_DASHin2] = ACTIONS(767), + [anon_sym_has2] = ACTIONS(767), + [anon_sym_not_DASHhas2] = ACTIONS(767), + [anon_sym_starts_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(767), + [anon_sym_ends_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(767), + [anon_sym_EQ_EQ2] = ACTIONS(767), + [anon_sym_BANG_EQ2] = ACTIONS(767), + [anon_sym_LT2] = ACTIONS(767), + [anon_sym_LT_EQ2] = ACTIONS(767), + [anon_sym_GT_EQ2] = ACTIONS(767), + [anon_sym_EQ_TILDE2] = ACTIONS(767), + [anon_sym_BANG_TILDE2] = ACTIONS(767), + [anon_sym_like2] = ACTIONS(767), + [anon_sym_not_DASHlike2] = ACTIONS(767), + [anon_sym_STAR_STAR2] = ACTIONS(767), + [anon_sym_PLUS_PLUS2] = ACTIONS(767), + [anon_sym_SLASH2] = ACTIONS(767), + [anon_sym_mod2] = ACTIONS(767), + [anon_sym_SLASH_SLASH2] = ACTIONS(767), + [anon_sym_PLUS2] = ACTIONS(767), + [anon_sym_bit_DASHshl2] = ACTIONS(767), + [anon_sym_bit_DASHshr2] = ACTIONS(767), + [anon_sym_bit_DASHand2] = ACTIONS(767), + [anon_sym_bit_DASHxor2] = ACTIONS(767), + [anon_sym_bit_DASHor2] = ACTIONS(767), + [anon_sym_DOT_DOT2] = ACTIONS(767), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(769), + [aux_sym__immediate_decimal_token5] = ACTIONS(984), + [sym_filesize_unit] = ACTIONS(767), + [sym_duration_unit] = ACTIONS(769), + [anon_sym_err_GT] = ACTIONS(767), + [anon_sym_out_GT] = ACTIONS(767), + [anon_sym_e_GT] = ACTIONS(767), + [anon_sym_o_GT] = ACTIONS(767), + [anon_sym_err_PLUSout_GT] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT] = ACTIONS(767), + [anon_sym_o_PLUSe_GT] = ACTIONS(767), + [anon_sym_e_PLUSo_GT] = ACTIONS(767), + [anon_sym_err_GT_GT] = ACTIONS(767), + [anon_sym_out_GT_GT] = ACTIONS(767), + [anon_sym_e_GT_GT] = ACTIONS(767), + [anon_sym_o_GT_GT] = ACTIONS(767), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(767), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(767), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(767), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(139)] = { - [sym_comment] = STATE(139), - [anon_sym_in] = ACTIONS(860), - [anon_sym_STAR_STAR] = ACTIONS(862), - [anon_sym_PLUS_PLUS] = ACTIONS(862), - [anon_sym_STAR] = ACTIONS(860), - [anon_sym_SLASH] = ACTIONS(860), - [anon_sym_mod] = ACTIONS(862), - [anon_sym_SLASH_SLASH] = ACTIONS(862), - [anon_sym_PLUS] = ACTIONS(860), - [anon_sym_DASH] = ACTIONS(862), - [anon_sym_bit_DASHshl] = ACTIONS(862), - [anon_sym_bit_DASHshr] = ACTIONS(862), - [anon_sym_EQ_TILDE] = ACTIONS(862), - [anon_sym_BANG_TILDE] = ACTIONS(862), - [anon_sym_like] = ACTIONS(862), - [anon_sym_not_DASHlike] = ACTIONS(862), - [anon_sym_bit_DASHand] = ACTIONS(862), - [anon_sym_bit_DASHxor] = ACTIONS(862), - [anon_sym_bit_DASHor] = ACTIONS(862), - [anon_sym_and] = ACTIONS(862), - [anon_sym_xor] = ACTIONS(862), - [anon_sym_or] = ACTIONS(862), - [anon_sym_in2] = ACTIONS(862), - [anon_sym_not_DASHin] = ACTIONS(862), - [anon_sym_has] = ACTIONS(862), - [anon_sym_not_DASHhas] = ACTIONS(862), - [anon_sym_starts_DASHwith] = ACTIONS(862), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(862), - [anon_sym_ends_DASHwith] = ACTIONS(862), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(862), - [anon_sym_EQ_EQ] = ACTIONS(862), - [anon_sym_BANG_EQ] = ACTIONS(862), - [anon_sym_LT] = ACTIONS(860), - [anon_sym_LT_EQ] = ACTIONS(862), - [anon_sym_GT] = ACTIONS(860), - [anon_sym_GT_EQ] = ACTIONS(862), - [aux_sym_cmd_identifier_token6] = ACTIONS(860), - [sym__newline] = ACTIONS(860), - [anon_sym_SEMI] = ACTIONS(860), - [anon_sym_PIPE] = ACTIONS(860), - [anon_sym_err_GT_PIPE] = ACTIONS(860), - [anon_sym_out_GT_PIPE] = ACTIONS(860), - [anon_sym_e_GT_PIPE] = ACTIONS(860), - [anon_sym_o_GT_PIPE] = ACTIONS(860), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(860), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(860), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(860), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(860), - [anon_sym_GT2] = ACTIONS(860), - [anon_sym_DASH2] = ACTIONS(860), - [anon_sym_STAR2] = ACTIONS(860), - [anon_sym_and2] = ACTIONS(860), - [anon_sym_xor2] = ACTIONS(860), - [anon_sym_or2] = ACTIONS(860), - [anon_sym_not_DASHin2] = ACTIONS(860), - [anon_sym_has2] = ACTIONS(860), - [anon_sym_not_DASHhas2] = ACTIONS(860), - [anon_sym_starts_DASHwith2] = ACTIONS(860), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(860), - [anon_sym_ends_DASHwith2] = ACTIONS(860), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(860), - [anon_sym_EQ_EQ2] = ACTIONS(860), - [anon_sym_BANG_EQ2] = ACTIONS(860), - [anon_sym_LT2] = ACTIONS(860), - [anon_sym_LT_EQ2] = ACTIONS(860), - [anon_sym_GT_EQ2] = ACTIONS(860), - [anon_sym_EQ_TILDE2] = ACTIONS(860), - [anon_sym_BANG_TILDE2] = ACTIONS(860), - [anon_sym_like2] = ACTIONS(860), - [anon_sym_not_DASHlike2] = ACTIONS(860), - [anon_sym_STAR_STAR2] = ACTIONS(860), - [anon_sym_PLUS_PLUS2] = ACTIONS(860), - [anon_sym_SLASH2] = ACTIONS(860), - [anon_sym_mod2] = ACTIONS(860), - [anon_sym_SLASH_SLASH2] = ACTIONS(860), - [anon_sym_PLUS2] = ACTIONS(860), - [anon_sym_bit_DASHshl2] = ACTIONS(860), - [anon_sym_bit_DASHshr2] = ACTIONS(860), - [anon_sym_bit_DASHand2] = ACTIONS(860), - [anon_sym_bit_DASHxor2] = ACTIONS(860), - [anon_sym_bit_DASHor2] = ACTIONS(860), - [anon_sym_DOT_DOT2] = ACTIONS(860), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(862), - [anon_sym_DOT_DOT_LT2] = ACTIONS(862), - [sym_filesize_unit] = ACTIONS(860), - [sym_duration_unit] = ACTIONS(862), - [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), + [STATE(136)] = { + [sym_comment] = STATE(136), + [anon_sym_in] = ACTIONS(847), + [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(847), + [anon_sym_SEMI] = ACTIONS(847), + [anon_sym_PIPE] = ACTIONS(847), + [anon_sym_err_GT_PIPE] = ACTIONS(847), + [anon_sym_out_GT_PIPE] = ACTIONS(847), + [anon_sym_e_GT_PIPE] = ACTIONS(847), + [anon_sym_o_GT_PIPE] = ACTIONS(847), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(847), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(847), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(847), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(847), + [anon_sym_GT2] = ACTIONS(847), + [anon_sym_DASH2] = ACTIONS(847), + [anon_sym_STAR2] = ACTIONS(847), + [anon_sym_and2] = ACTIONS(847), + [anon_sym_xor2] = ACTIONS(847), + [anon_sym_or2] = ACTIONS(847), + [anon_sym_not_DASHin2] = ACTIONS(847), + [anon_sym_has2] = ACTIONS(847), + [anon_sym_not_DASHhas2] = ACTIONS(847), + [anon_sym_starts_DASHwith2] = ACTIONS(847), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(847), + [anon_sym_ends_DASHwith2] = ACTIONS(847), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(847), + [anon_sym_EQ_EQ2] = ACTIONS(847), + [anon_sym_BANG_EQ2] = ACTIONS(847), + [anon_sym_LT2] = ACTIONS(847), + [anon_sym_LT_EQ2] = ACTIONS(847), + [anon_sym_GT_EQ2] = ACTIONS(847), + [anon_sym_EQ_TILDE2] = ACTIONS(847), + [anon_sym_BANG_TILDE2] = ACTIONS(847), + [anon_sym_like2] = ACTIONS(847), + [anon_sym_not_DASHlike2] = ACTIONS(847), + [anon_sym_STAR_STAR2] = ACTIONS(847), + [anon_sym_PLUS_PLUS2] = ACTIONS(847), + [anon_sym_SLASH2] = ACTIONS(847), + [anon_sym_mod2] = ACTIONS(847), + [anon_sym_SLASH_SLASH2] = ACTIONS(847), + [anon_sym_PLUS2] = ACTIONS(847), + [anon_sym_bit_DASHshl2] = ACTIONS(847), + [anon_sym_bit_DASHshr2] = ACTIONS(847), + [anon_sym_bit_DASHand2] = ACTIONS(847), + [anon_sym_bit_DASHxor2] = ACTIONS(847), + [anon_sym_bit_DASHor2] = ACTIONS(847), + [anon_sym_DOT_DOT2] = ACTIONS(855), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(857), + [anon_sym_DOT_DOT_LT2] = ACTIONS(857), + [sym_filesize_unit] = ACTIONS(986), + [sym_duration_unit] = ACTIONS(988), + [anon_sym_err_GT] = ACTIONS(847), + [anon_sym_out_GT] = ACTIONS(847), + [anon_sym_e_GT] = ACTIONS(847), + [anon_sym_o_GT] = ACTIONS(847), + [anon_sym_err_PLUSout_GT] = ACTIONS(847), + [anon_sym_out_PLUSerr_GT] = ACTIONS(847), + [anon_sym_o_PLUSe_GT] = ACTIONS(847), + [anon_sym_e_PLUSo_GT] = ACTIONS(847), + [anon_sym_err_GT_GT] = ACTIONS(847), + [anon_sym_out_GT_GT] = ACTIONS(847), + [anon_sym_e_GT_GT] = ACTIONS(847), + [anon_sym_o_GT_GT] = ACTIONS(847), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(847), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(847), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(847), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(847), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(140)] = { - [sym_comment] = STATE(140), + [STATE(137)] = { + [sym_comment] = STATE(137), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -55907,6 +56308,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), @@ -55972,669 +56374,680 @@ 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(138)] = { + [sym_comment] = STATE(138), + [anon_sym_in] = ACTIONS(767), + [anon_sym_STAR_STAR] = ACTIONS(769), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_STAR] = ACTIONS(767), + [anon_sym_SLASH] = ACTIONS(767), + [anon_sym_mod] = ACTIONS(769), + [anon_sym_SLASH_SLASH] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(767), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_bit_DASHshl] = ACTIONS(769), + [anon_sym_bit_DASHshr] = ACTIONS(769), + [anon_sym_EQ_TILDE] = ACTIONS(769), + [anon_sym_BANG_TILDE] = ACTIONS(769), + [anon_sym_like] = ACTIONS(769), + [anon_sym_not_DASHlike] = ACTIONS(769), + [anon_sym_bit_DASHand] = ACTIONS(769), + [anon_sym_bit_DASHxor] = ACTIONS(769), + [anon_sym_bit_DASHor] = ACTIONS(769), + [anon_sym_and] = ACTIONS(769), + [anon_sym_xor] = ACTIONS(769), + [anon_sym_or] = ACTIONS(769), + [anon_sym_in2] = ACTIONS(769), + [anon_sym_not_DASHin] = ACTIONS(769), + [anon_sym_has] = ACTIONS(769), + [anon_sym_not_DASHhas] = ACTIONS(769), + [anon_sym_starts_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(769), + [anon_sym_ends_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(769), + [anon_sym_EQ_EQ] = ACTIONS(769), + [anon_sym_BANG_EQ] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(767), + [anon_sym_LT_EQ] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(767), + [anon_sym_GT_EQ] = ACTIONS(769), + [aux_sym_cmd_identifier_token6] = ACTIONS(767), + [sym__newline] = ACTIONS(767), + [anon_sym_SEMI] = ACTIONS(767), + [anon_sym_PIPE] = ACTIONS(767), + [anon_sym_err_GT_PIPE] = ACTIONS(767), + [anon_sym_out_GT_PIPE] = ACTIONS(767), + [anon_sym_e_GT_PIPE] = ACTIONS(767), + [anon_sym_o_GT_PIPE] = ACTIONS(767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(767), + [anon_sym_GT2] = ACTIONS(767), + [anon_sym_DASH2] = ACTIONS(767), + [anon_sym_STAR2] = ACTIONS(767), + [anon_sym_and2] = ACTIONS(767), + [anon_sym_xor2] = ACTIONS(767), + [anon_sym_or2] = ACTIONS(767), + [anon_sym_not_DASHin2] = ACTIONS(767), + [anon_sym_has2] = ACTIONS(767), + [anon_sym_not_DASHhas2] = ACTIONS(767), + [anon_sym_starts_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(767), + [anon_sym_ends_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(767), + [anon_sym_EQ_EQ2] = ACTIONS(767), + [anon_sym_BANG_EQ2] = ACTIONS(767), + [anon_sym_LT2] = ACTIONS(767), + [anon_sym_LT_EQ2] = ACTIONS(767), + [anon_sym_GT_EQ2] = ACTIONS(767), + [anon_sym_EQ_TILDE2] = ACTIONS(767), + [anon_sym_BANG_TILDE2] = ACTIONS(767), + [anon_sym_like2] = ACTIONS(767), + [anon_sym_not_DASHlike2] = ACTIONS(767), + [anon_sym_STAR_STAR2] = ACTIONS(767), + [anon_sym_PLUS_PLUS2] = ACTIONS(767), + [anon_sym_SLASH2] = ACTIONS(767), + [anon_sym_mod2] = ACTIONS(767), + [anon_sym_SLASH_SLASH2] = ACTIONS(767), + [anon_sym_PLUS2] = ACTIONS(767), + [anon_sym_bit_DASHshl2] = ACTIONS(767), + [anon_sym_bit_DASHshr2] = ACTIONS(767), + [anon_sym_bit_DASHand2] = ACTIONS(767), + [anon_sym_bit_DASHxor2] = ACTIONS(767), + [anon_sym_bit_DASHor2] = ACTIONS(767), + [anon_sym_DOT_DOT2] = ACTIONS(767), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(769), + [sym_filesize_unit] = ACTIONS(767), + [sym_duration_unit] = ACTIONS(769), + [anon_sym_err_GT] = ACTIONS(767), + [anon_sym_out_GT] = ACTIONS(767), + [anon_sym_e_GT] = ACTIONS(767), + [anon_sym_o_GT] = ACTIONS(767), + [anon_sym_err_PLUSout_GT] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT] = ACTIONS(767), + [anon_sym_o_PLUSe_GT] = ACTIONS(767), + [anon_sym_e_PLUSo_GT] = ACTIONS(767), + [anon_sym_err_GT_GT] = ACTIONS(767), + [anon_sym_out_GT_GT] = ACTIONS(767), + [anon_sym_e_GT_GT] = ACTIONS(767), + [anon_sym_o_GT_GT] = ACTIONS(767), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(767), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(767), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(139)] = { + [sym_comment] = STATE(139), + [anon_sym_in] = ACTIONS(863), + [anon_sym_STAR_STAR] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_STAR] = ACTIONS(863), + [anon_sym_SLASH] = ACTIONS(863), + [anon_sym_mod] = ACTIONS(865), + [anon_sym_SLASH_SLASH] = ACTIONS(865), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(865), + [anon_sym_bit_DASHshl] = ACTIONS(865), + [anon_sym_bit_DASHshr] = ACTIONS(865), + [anon_sym_EQ_TILDE] = ACTIONS(865), + [anon_sym_BANG_TILDE] = ACTIONS(865), + [anon_sym_like] = ACTIONS(865), + [anon_sym_not_DASHlike] = ACTIONS(865), + [anon_sym_bit_DASHand] = ACTIONS(865), + [anon_sym_bit_DASHxor] = ACTIONS(865), + [anon_sym_bit_DASHor] = ACTIONS(865), + [anon_sym_and] = ACTIONS(865), + [anon_sym_xor] = ACTIONS(865), + [anon_sym_or] = ACTIONS(865), + [anon_sym_in2] = ACTIONS(865), + [anon_sym_not_DASHin] = ACTIONS(865), + [anon_sym_has] = ACTIONS(865), + [anon_sym_not_DASHhas] = ACTIONS(865), + [anon_sym_starts_DASHwith] = ACTIONS(865), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(865), + [anon_sym_ends_DASHwith] = ACTIONS(865), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(865), + [anon_sym_EQ_EQ] = ACTIONS(865), + [anon_sym_BANG_EQ] = ACTIONS(865), + [anon_sym_LT] = ACTIONS(863), + [anon_sym_LT_EQ] = ACTIONS(865), + [anon_sym_GT] = ACTIONS(863), + [anon_sym_GT_EQ] = ACTIONS(865), + [aux_sym_cmd_identifier_token6] = ACTIONS(863), + [sym__newline] = ACTIONS(863), + [anon_sym_SEMI] = ACTIONS(863), + [anon_sym_PIPE] = ACTIONS(863), + [anon_sym_err_GT_PIPE] = ACTIONS(863), + [anon_sym_out_GT_PIPE] = ACTIONS(863), + [anon_sym_e_GT_PIPE] = ACTIONS(863), + [anon_sym_o_GT_PIPE] = ACTIONS(863), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(863), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(863), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(863), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(863), + [anon_sym_GT2] = ACTIONS(863), + [anon_sym_DASH2] = ACTIONS(863), + [anon_sym_STAR2] = ACTIONS(863), + [anon_sym_and2] = ACTIONS(863), + [anon_sym_xor2] = ACTIONS(863), + [anon_sym_or2] = ACTIONS(863), + [anon_sym_not_DASHin2] = ACTIONS(863), + [anon_sym_has2] = ACTIONS(863), + [anon_sym_not_DASHhas2] = ACTIONS(863), + [anon_sym_starts_DASHwith2] = ACTIONS(863), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(863), + [anon_sym_ends_DASHwith2] = ACTIONS(863), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(863), + [anon_sym_EQ_EQ2] = ACTIONS(863), + [anon_sym_BANG_EQ2] = ACTIONS(863), + [anon_sym_LT2] = ACTIONS(863), + [anon_sym_LT_EQ2] = ACTIONS(863), + [anon_sym_GT_EQ2] = ACTIONS(863), + [anon_sym_EQ_TILDE2] = ACTIONS(863), + [anon_sym_BANG_TILDE2] = ACTIONS(863), + [anon_sym_like2] = ACTIONS(863), + [anon_sym_not_DASHlike2] = ACTIONS(863), + [anon_sym_STAR_STAR2] = ACTIONS(863), + [anon_sym_PLUS_PLUS2] = ACTIONS(863), + [anon_sym_SLASH2] = ACTIONS(863), + [anon_sym_mod2] = ACTIONS(863), + [anon_sym_SLASH_SLASH2] = ACTIONS(863), + [anon_sym_PLUS2] = ACTIONS(863), + [anon_sym_bit_DASHshl2] = ACTIONS(863), + [anon_sym_bit_DASHshr2] = ACTIONS(863), + [anon_sym_bit_DASHand2] = ACTIONS(863), + [anon_sym_bit_DASHxor2] = ACTIONS(863), + [anon_sym_bit_DASHor2] = ACTIONS(863), + [anon_sym_DOT_DOT2] = ACTIONS(863), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(865), + [anon_sym_DOT_DOT_LT2] = ACTIONS(865), + [sym_filesize_unit] = ACTIONS(863), + [sym_duration_unit] = ACTIONS(865), + [anon_sym_err_GT] = ACTIONS(863), + [anon_sym_out_GT] = ACTIONS(863), + [anon_sym_e_GT] = ACTIONS(863), + [anon_sym_o_GT] = ACTIONS(863), + [anon_sym_err_PLUSout_GT] = ACTIONS(863), + [anon_sym_out_PLUSerr_GT] = ACTIONS(863), + [anon_sym_o_PLUSe_GT] = ACTIONS(863), + [anon_sym_e_PLUSo_GT] = ACTIONS(863), + [anon_sym_err_GT_GT] = ACTIONS(863), + [anon_sym_out_GT_GT] = ACTIONS(863), + [anon_sym_e_GT_GT] = ACTIONS(863), + [anon_sym_o_GT_GT] = ACTIONS(863), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(863), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(863), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(863), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(863), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(140)] = { + [sym_comment] = STATE(140), + [anon_sym_in] = ACTIONS(767), + [anon_sym_STAR_STAR] = ACTIONS(769), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_STAR] = ACTIONS(767), + [anon_sym_SLASH] = ACTIONS(767), + [anon_sym_mod] = ACTIONS(769), + [anon_sym_SLASH_SLASH] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(767), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_bit_DASHshl] = ACTIONS(769), + [anon_sym_bit_DASHshr] = ACTIONS(769), + [anon_sym_EQ_TILDE] = ACTIONS(769), + [anon_sym_BANG_TILDE] = ACTIONS(769), + [anon_sym_like] = ACTIONS(769), + [anon_sym_not_DASHlike] = ACTIONS(769), + [anon_sym_bit_DASHand] = ACTIONS(769), + [anon_sym_bit_DASHxor] = ACTIONS(769), + [anon_sym_bit_DASHor] = ACTIONS(769), + [anon_sym_and] = ACTIONS(769), + [anon_sym_xor] = ACTIONS(769), + [anon_sym_or] = ACTIONS(769), + [anon_sym_in2] = ACTIONS(769), + [anon_sym_not_DASHin] = ACTIONS(769), + [anon_sym_has] = ACTIONS(769), + [anon_sym_not_DASHhas] = ACTIONS(769), + [anon_sym_starts_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(769), + [anon_sym_ends_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(769), + [anon_sym_EQ_EQ] = ACTIONS(769), + [anon_sym_BANG_EQ] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(767), + [anon_sym_LT_EQ] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(767), + [anon_sym_GT_EQ] = ACTIONS(769), + [aux_sym_cmd_identifier_token6] = ACTIONS(767), + [sym__newline] = ACTIONS(767), + [anon_sym_PIPE] = ACTIONS(767), + [anon_sym_err_GT_PIPE] = ACTIONS(767), + [anon_sym_out_GT_PIPE] = ACTIONS(767), + [anon_sym_e_GT_PIPE] = ACTIONS(767), + [anon_sym_o_GT_PIPE] = ACTIONS(767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(767), + [anon_sym_GT2] = ACTIONS(767), + [anon_sym_DASH2] = ACTIONS(767), + [anon_sym_STAR2] = ACTIONS(767), + [anon_sym_and2] = ACTIONS(767), + [anon_sym_xor2] = ACTIONS(767), + [anon_sym_or2] = ACTIONS(767), + [anon_sym_not_DASHin2] = ACTIONS(767), + [anon_sym_has2] = ACTIONS(767), + [anon_sym_not_DASHhas2] = ACTIONS(767), + [anon_sym_starts_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(767), + [anon_sym_ends_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(767), + [anon_sym_EQ_EQ2] = ACTIONS(767), + [anon_sym_BANG_EQ2] = ACTIONS(767), + [anon_sym_LT2] = ACTIONS(767), + [anon_sym_LT_EQ2] = ACTIONS(767), + [anon_sym_GT_EQ2] = ACTIONS(767), + [anon_sym_EQ_TILDE2] = ACTIONS(767), + [anon_sym_BANG_TILDE2] = ACTIONS(767), + [anon_sym_like2] = ACTIONS(767), + [anon_sym_not_DASHlike2] = ACTIONS(767), + [anon_sym_STAR_STAR2] = ACTIONS(767), + [anon_sym_PLUS_PLUS2] = ACTIONS(767), + [anon_sym_SLASH2] = ACTIONS(767), + [anon_sym_mod2] = ACTIONS(767), + [anon_sym_SLASH_SLASH2] = ACTIONS(767), + [anon_sym_PLUS2] = ACTIONS(767), + [anon_sym_bit_DASHshl2] = ACTIONS(767), + [anon_sym_bit_DASHshr2] = ACTIONS(767), + [anon_sym_bit_DASHand2] = ACTIONS(767), + [anon_sym_bit_DASHxor2] = ACTIONS(767), + [anon_sym_bit_DASHor2] = ACTIONS(767), + [anon_sym_DOT_DOT2] = ACTIONS(767), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(769), + [sym_filesize_unit] = ACTIONS(767), + [sym_duration_unit] = ACTIONS(769), + [anon_sym_err_GT] = ACTIONS(767), + [anon_sym_out_GT] = ACTIONS(767), + [anon_sym_e_GT] = ACTIONS(767), + [anon_sym_o_GT] = ACTIONS(767), + [anon_sym_err_PLUSout_GT] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT] = ACTIONS(767), + [anon_sym_o_PLUSe_GT] = ACTIONS(767), + [anon_sym_e_PLUSo_GT] = ACTIONS(767), + [anon_sym_err_GT_GT] = ACTIONS(767), + [anon_sym_out_GT_GT] = ACTIONS(767), + [anon_sym_e_GT_GT] = ACTIONS(767), + [anon_sym_o_GT_GT] = ACTIONS(767), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(767), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(767), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(767), + [anon_sym_POUND] = ACTIONS(103), + }, [STATE(141)] = { [sym_comment] = STATE(141), - [anon_sym_in] = ACTIONS(866), - [anon_sym_STAR_STAR] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_STAR] = ACTIONS(904), - [anon_sym_SLASH] = ACTIONS(904), - [anon_sym_mod] = ACTIONS(902), - [anon_sym_SLASH_SLASH] = ACTIONS(902), - [anon_sym_PLUS] = ACTIONS(904), - [anon_sym_DASH] = ACTIONS(902), - [anon_sym_bit_DASHshl] = ACTIONS(902), - [anon_sym_bit_DASHshr] = ACTIONS(902), - [anon_sym_EQ_TILDE] = ACTIONS(902), - [anon_sym_BANG_TILDE] = ACTIONS(902), - [anon_sym_like] = ACTIONS(902), - [anon_sym_not_DASHlike] = ACTIONS(902), - [anon_sym_bit_DASHand] = ACTIONS(902), - [anon_sym_bit_DASHxor] = ACTIONS(902), - [anon_sym_bit_DASHor] = ACTIONS(902), - [anon_sym_and] = ACTIONS(902), - [anon_sym_xor] = ACTIONS(902), - [anon_sym_or] = ACTIONS(902), - [anon_sym_in2] = ACTIONS(902), - [anon_sym_not_DASHin] = ACTIONS(902), - [anon_sym_has] = ACTIONS(902), - [anon_sym_not_DASHhas] = ACTIONS(902), - [anon_sym_starts_DASHwith] = ACTIONS(902), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(902), - [anon_sym_ends_DASHwith] = ACTIONS(902), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(902), - [anon_sym_EQ_EQ] = ACTIONS(902), - [anon_sym_BANG_EQ] = ACTIONS(902), - [anon_sym_LT] = ACTIONS(904), - [anon_sym_LT_EQ] = ACTIONS(902), - [anon_sym_GT] = ACTIONS(904), - [anon_sym_GT_EQ] = ACTIONS(902), - [aux_sym_cmd_identifier_token6] = ACTIONS(906), - [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_in] = ACTIONS(863), + [anon_sym_STAR_STAR] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_STAR] = ACTIONS(863), + [anon_sym_SLASH] = ACTIONS(863), + [anon_sym_mod] = ACTIONS(865), + [anon_sym_SLASH_SLASH] = ACTIONS(865), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(865), + [anon_sym_bit_DASHshl] = ACTIONS(865), + [anon_sym_bit_DASHshr] = ACTIONS(865), + [anon_sym_EQ_TILDE] = ACTIONS(865), + [anon_sym_BANG_TILDE] = ACTIONS(865), + [anon_sym_like] = ACTIONS(865), + [anon_sym_not_DASHlike] = ACTIONS(865), + [anon_sym_bit_DASHand] = ACTIONS(865), + [anon_sym_bit_DASHxor] = ACTIONS(865), + [anon_sym_bit_DASHor] = ACTIONS(865), + [anon_sym_and] = ACTIONS(865), + [anon_sym_xor] = ACTIONS(865), + [anon_sym_or] = ACTIONS(865), + [anon_sym_in2] = ACTIONS(865), + [anon_sym_not_DASHin] = ACTIONS(865), + [anon_sym_has] = ACTIONS(865), + [anon_sym_not_DASHhas] = ACTIONS(865), + [anon_sym_starts_DASHwith] = ACTIONS(865), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(865), + [anon_sym_ends_DASHwith] = ACTIONS(865), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(865), + [anon_sym_EQ_EQ] = ACTIONS(865), + [anon_sym_BANG_EQ] = ACTIONS(865), + [anon_sym_LT] = ACTIONS(863), + [anon_sym_LT_EQ] = ACTIONS(865), + [anon_sym_GT] = ACTIONS(863), + [anon_sym_GT_EQ] = ACTIONS(865), + [aux_sym_cmd_identifier_token6] = ACTIONS(863), + [sym__newline] = ACTIONS(863), + [anon_sym_PIPE] = ACTIONS(863), + [anon_sym_err_GT_PIPE] = ACTIONS(863), + [anon_sym_out_GT_PIPE] = ACTIONS(863), + [anon_sym_e_GT_PIPE] = ACTIONS(863), + [anon_sym_o_GT_PIPE] = ACTIONS(863), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(863), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(863), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(863), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(863), + [anon_sym_GT2] = ACTIONS(863), + [anon_sym_DASH2] = ACTIONS(863), + [anon_sym_STAR2] = ACTIONS(863), + [anon_sym_and2] = ACTIONS(863), + [anon_sym_xor2] = ACTIONS(863), + [anon_sym_or2] = ACTIONS(863), + [anon_sym_not_DASHin2] = ACTIONS(863), + [anon_sym_has2] = ACTIONS(863), + [anon_sym_not_DASHhas2] = ACTIONS(863), + [anon_sym_starts_DASHwith2] = ACTIONS(863), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(863), + [anon_sym_ends_DASHwith2] = ACTIONS(863), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(863), + [anon_sym_EQ_EQ2] = ACTIONS(863), + [anon_sym_BANG_EQ2] = ACTIONS(863), + [anon_sym_LT2] = ACTIONS(863), + [anon_sym_LT_EQ2] = ACTIONS(863), + [anon_sym_GT_EQ2] = ACTIONS(863), + [anon_sym_EQ_TILDE2] = ACTIONS(863), + [anon_sym_BANG_TILDE2] = ACTIONS(863), + [anon_sym_like2] = ACTIONS(863), + [anon_sym_not_DASHlike2] = ACTIONS(863), + [anon_sym_STAR_STAR2] = ACTIONS(863), + [anon_sym_PLUS_PLUS2] = ACTIONS(863), + [anon_sym_SLASH2] = ACTIONS(863), + [anon_sym_mod2] = ACTIONS(863), + [anon_sym_SLASH_SLASH2] = ACTIONS(863), + [anon_sym_PLUS2] = ACTIONS(863), + [anon_sym_bit_DASHshl2] = ACTIONS(863), + [anon_sym_bit_DASHshr2] = ACTIONS(863), + [anon_sym_bit_DASHand2] = ACTIONS(863), + [anon_sym_bit_DASHxor2] = ACTIONS(863), + [anon_sym_bit_DASHor2] = ACTIONS(863), + [anon_sym_DOT_DOT2] = ACTIONS(863), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(865), + [anon_sym_DOT_DOT_LT2] = ACTIONS(865), + [sym_filesize_unit] = ACTIONS(863), + [sym_duration_unit] = ACTIONS(865), + [anon_sym_err_GT] = ACTIONS(863), + [anon_sym_out_GT] = ACTIONS(863), + [anon_sym_e_GT] = ACTIONS(863), + [anon_sym_o_GT] = ACTIONS(863), + [anon_sym_err_PLUSout_GT] = ACTIONS(863), + [anon_sym_out_PLUSerr_GT] = ACTIONS(863), + [anon_sym_o_PLUSe_GT] = ACTIONS(863), + [anon_sym_e_PLUSo_GT] = ACTIONS(863), + [anon_sym_err_GT_GT] = ACTIONS(863), + [anon_sym_out_GT_GT] = ACTIONS(863), + [anon_sym_e_GT_GT] = ACTIONS(863), + [anon_sym_o_GT_GT] = ACTIONS(863), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(863), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(863), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(863), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(863), [anon_sym_POUND] = ACTIONS(103), }, [STATE(142)] = { [sym_comment] = STATE(142), - [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(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), + [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(143)] = { [sym_comment] = STATE(143), - [anon_sym_in] = ACTIONS(860), - [anon_sym_STAR_STAR] = ACTIONS(862), - [anon_sym_PLUS_PLUS] = ACTIONS(862), - [anon_sym_STAR] = ACTIONS(860), - [anon_sym_SLASH] = ACTIONS(860), - [anon_sym_mod] = ACTIONS(862), - [anon_sym_SLASH_SLASH] = ACTIONS(862), - [anon_sym_PLUS] = ACTIONS(860), - [anon_sym_DASH] = ACTIONS(862), - [anon_sym_bit_DASHshl] = ACTIONS(862), - [anon_sym_bit_DASHshr] = ACTIONS(862), - [anon_sym_EQ_TILDE] = ACTIONS(862), - [anon_sym_BANG_TILDE] = ACTIONS(862), - [anon_sym_like] = ACTIONS(862), - [anon_sym_not_DASHlike] = ACTIONS(862), - [anon_sym_bit_DASHand] = ACTIONS(862), - [anon_sym_bit_DASHxor] = ACTIONS(862), - [anon_sym_bit_DASHor] = ACTIONS(862), - [anon_sym_and] = ACTIONS(862), - [anon_sym_xor] = ACTIONS(862), - [anon_sym_or] = ACTIONS(862), - [anon_sym_in2] = ACTIONS(862), - [anon_sym_not_DASHin] = ACTIONS(862), - [anon_sym_has] = ACTIONS(862), - [anon_sym_not_DASHhas] = ACTIONS(862), - [anon_sym_starts_DASHwith] = ACTIONS(862), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(862), - [anon_sym_ends_DASHwith] = ACTIONS(862), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(862), - [anon_sym_EQ_EQ] = ACTIONS(862), - [anon_sym_BANG_EQ] = ACTIONS(862), - [anon_sym_LT] = ACTIONS(860), - [anon_sym_LT_EQ] = ACTIONS(862), - [anon_sym_GT] = ACTIONS(860), - [anon_sym_GT_EQ] = ACTIONS(862), - [aux_sym_cmd_identifier_token6] = ACTIONS(860), - [sym__newline] = ACTIONS(860), - [anon_sym_PIPE] = ACTIONS(860), - [anon_sym_err_GT_PIPE] = ACTIONS(860), - [anon_sym_out_GT_PIPE] = ACTIONS(860), - [anon_sym_e_GT_PIPE] = ACTIONS(860), - [anon_sym_o_GT_PIPE] = ACTIONS(860), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(860), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(860), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(860), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(860), - [anon_sym_GT2] = ACTIONS(860), - [anon_sym_DASH2] = ACTIONS(860), - [anon_sym_STAR2] = ACTIONS(860), - [anon_sym_and2] = ACTIONS(860), - [anon_sym_xor2] = ACTIONS(860), - [anon_sym_or2] = ACTIONS(860), - [anon_sym_not_DASHin2] = ACTIONS(860), - [anon_sym_has2] = ACTIONS(860), - [anon_sym_not_DASHhas2] = ACTIONS(860), - [anon_sym_starts_DASHwith2] = ACTIONS(860), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(860), - [anon_sym_ends_DASHwith2] = ACTIONS(860), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(860), - [anon_sym_EQ_EQ2] = ACTIONS(860), - [anon_sym_BANG_EQ2] = ACTIONS(860), - [anon_sym_LT2] = ACTIONS(860), - [anon_sym_LT_EQ2] = ACTIONS(860), - [anon_sym_GT_EQ2] = ACTIONS(860), - [anon_sym_EQ_TILDE2] = ACTIONS(860), - [anon_sym_BANG_TILDE2] = ACTIONS(860), - [anon_sym_like2] = ACTIONS(860), - [anon_sym_not_DASHlike2] = ACTIONS(860), - [anon_sym_STAR_STAR2] = ACTIONS(860), - [anon_sym_PLUS_PLUS2] = ACTIONS(860), - [anon_sym_SLASH2] = ACTIONS(860), - [anon_sym_mod2] = ACTIONS(860), - [anon_sym_SLASH_SLASH2] = ACTIONS(860), - [anon_sym_PLUS2] = ACTIONS(860), - [anon_sym_bit_DASHshl2] = ACTIONS(860), - [anon_sym_bit_DASHshr2] = ACTIONS(860), - [anon_sym_bit_DASHand2] = ACTIONS(860), - [anon_sym_bit_DASHxor2] = ACTIONS(860), - [anon_sym_bit_DASHor2] = ACTIONS(860), - [anon_sym_DOT_DOT2] = ACTIONS(860), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(862), - [anon_sym_DOT_DOT_LT2] = ACTIONS(862), - [sym_filesize_unit] = ACTIONS(860), - [sym_duration_unit] = ACTIONS(862), - [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), + [anon_sym_in] = ACTIONS(847), + [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(847), + [anon_sym_PIPE] = ACTIONS(847), + [anon_sym_err_GT_PIPE] = ACTIONS(847), + [anon_sym_out_GT_PIPE] = ACTIONS(847), + [anon_sym_e_GT_PIPE] = ACTIONS(847), + [anon_sym_o_GT_PIPE] = ACTIONS(847), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(847), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(847), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(847), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(847), + [anon_sym_GT2] = ACTIONS(847), + [anon_sym_DASH2] = ACTIONS(847), + [anon_sym_STAR2] = ACTIONS(847), + [anon_sym_and2] = ACTIONS(847), + [anon_sym_xor2] = ACTIONS(847), + [anon_sym_or2] = ACTIONS(847), + [anon_sym_not_DASHin2] = ACTIONS(847), + [anon_sym_has2] = ACTIONS(847), + [anon_sym_not_DASHhas2] = ACTIONS(847), + [anon_sym_starts_DASHwith2] = ACTIONS(847), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(847), + [anon_sym_ends_DASHwith2] = ACTIONS(847), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(847), + [anon_sym_EQ_EQ2] = ACTIONS(847), + [anon_sym_BANG_EQ2] = ACTIONS(847), + [anon_sym_LT2] = ACTIONS(847), + [anon_sym_LT_EQ2] = ACTIONS(847), + [anon_sym_GT_EQ2] = ACTIONS(847), + [anon_sym_EQ_TILDE2] = ACTIONS(847), + [anon_sym_BANG_TILDE2] = ACTIONS(847), + [anon_sym_like2] = ACTIONS(847), + [anon_sym_not_DASHlike2] = ACTIONS(847), + [anon_sym_STAR_STAR2] = ACTIONS(847), + [anon_sym_PLUS_PLUS2] = ACTIONS(847), + [anon_sym_SLASH2] = ACTIONS(847), + [anon_sym_mod2] = ACTIONS(847), + [anon_sym_SLASH_SLASH2] = ACTIONS(847), + [anon_sym_PLUS2] = ACTIONS(847), + [anon_sym_bit_DASHshl2] = ACTIONS(847), + [anon_sym_bit_DASHshr2] = ACTIONS(847), + [anon_sym_bit_DASHand2] = ACTIONS(847), + [anon_sym_bit_DASHxor2] = ACTIONS(847), + [anon_sym_bit_DASHor2] = ACTIONS(847), + [anon_sym_DOT_DOT2] = ACTIONS(855), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(857), + [anon_sym_DOT_DOT_LT2] = ACTIONS(857), + [sym_filesize_unit] = ACTIONS(990), + [sym_duration_unit] = ACTIONS(992), + [anon_sym_err_GT] = ACTIONS(847), + [anon_sym_out_GT] = ACTIONS(847), + [anon_sym_e_GT] = ACTIONS(847), + [anon_sym_o_GT] = ACTIONS(847), + [anon_sym_err_PLUSout_GT] = ACTIONS(847), + [anon_sym_out_PLUSerr_GT] = ACTIONS(847), + [anon_sym_o_PLUSe_GT] = ACTIONS(847), + [anon_sym_e_PLUSo_GT] = ACTIONS(847), + [anon_sym_err_GT_GT] = ACTIONS(847), + [anon_sym_out_GT_GT] = ACTIONS(847), + [anon_sym_e_GT_GT] = ACTIONS(847), + [anon_sym_o_GT_GT] = ACTIONS(847), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(847), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(847), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(847), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(847), [anon_sym_POUND] = ACTIONS(103), }, [STATE(144)] = { + [sym_pipeline] = STATE(4373), + [sym_cmd_identifier] = STATE(2730), + [sym__ctrl_expression] = STATE(3368), + [sym_ctrl_if] = STATE(3392), + [sym_ctrl_match] = STATE(3392), + [sym_ctrl_try] = STATE(3392), + [sym__stmt_let_shortcut] = STATE(3393), + [sym_pipe_element] = STATE(2909), + [sym_where_command] = STATE(3368), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(724), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(136), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3368), [sym_comment] = STATE(144), - [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(145)] = { - [sym_pipeline_parenthesized] = STATE(4751), - [sym_cmd_identifier] = STATE(3009), - [sym__ctrl_expression_parenthesized] = STATE(3436), - [sym_ctrl_if_parenthesized] = STATE(3367), - [sym_ctrl_match] = STATE(3367), - [sym_ctrl_try_parenthesized] = STATE(3367), - [sym__stmt_let_shortcut] = STATE(3368), - [sym_pipe_element_parenthesized] = STATE(3116), - [sym_where_command_parenthesized] = STATE(3436), - [sym__expression_parenthesized] = STATE(2290), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2157), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(124), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4730), - [sym__command_parenthesized] = STATE(3373), - [sym_comment] = STATE(145), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(1002), - [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(1004), - [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(146)] = { - [sym_pipeline] = STATE(4608), - [sym_cmd_identifier] = STATE(2947), - [sym__ctrl_expression] = STATE(3379), - [sym_ctrl_if] = STATE(3441), - [sym_ctrl_match] = STATE(3441), - [sym_ctrl_try] = STATE(3441), - [sym__stmt_let_shortcut] = STATE(3501), - [sym_pipe_element] = STATE(3200), - [sym_where_command] = STATE(3379), - [sym__expression] = STATE(2294), - [sym_expr_unary] = STATE(1286), - [sym__expr_unary_minus] = STATE(1290), - [sym_expr_binary] = STATE(1286), - [sym__expr_binary_expression] = STATE(2252), - [sym_expr_parenthesized] = STATE(924), - [sym_val_range] = STATE(1286), - [sym__value] = STATE(1286), - [sym_val_nothing] = STATE(1295), - [sym_val_bool] = STATE(1295), - [sym_val_variable] = STATE(933), - [sym_val_cellpath] = STATE(1295), - [sym_val_number] = STATE(1295), - [sym__val_number_decimal] = STATE(123), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1295), - [sym_val_filesize] = STATE(1295), - [sym_val_binary] = STATE(1295), - [sym_val_string] = STATE(1295), - [sym__raw_str] = STATE(502), - [sym__str_double_quotes] = STATE(502), - [sym__str_single_quotes] = STATE(502), - [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1295), - [sym__inter_single_quotes] = STATE(1306), - [sym__inter_double_quotes] = STATE(1317), - [sym_val_list] = STATE(1295), - [sym_val_record] = STATE(1295), - [sym_val_table] = STATE(1295), - [sym_val_closure] = STATE(1295), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3379), - [sym_comment] = STATE(146), - [aux_sym_pipeline_repeat1] = STATE(189), - [aux_sym_pipe_element_repeat2] = STATE(291), - [anon_sym_export] = ACTIONS(45), - [anon_sym_alias] = ACTIONS(39), - [anon_sym_let] = ACTIONS(1006), - [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(1008), - [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(147)] = { - [sym_pipeline_parenthesized] = STATE(4750), - [sym_cmd_identifier] = STATE(3009), - [sym__ctrl_expression_parenthesized] = STATE(3436), - [sym_ctrl_if_parenthesized] = STATE(3367), - [sym_ctrl_match] = STATE(3367), - [sym_ctrl_try_parenthesized] = STATE(3367), - [sym__stmt_let_shortcut] = STATE(3368), - [sym_pipe_element_parenthesized] = STATE(3116), - [sym_where_command_parenthesized] = STATE(3436), - [sym__expression_parenthesized] = STATE(2290), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2157), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(135), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4730), - [sym__command_parenthesized] = STATE(3373), - [sym_comment] = STATE(147), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(274), + [aux_sym_pipeline_repeat1] = STATE(177), + [aux_sym_pipe_element_repeat2] = STATE(270), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(994), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -56646,10 +57059,11 @@ 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(1010), + [anon_sym_if] = ACTIONS(996), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), + [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -56660,18 +57074,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [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(1012), - [aux_sym__val_number_decimal_token2] = ACTIONS(1014), - [aux_sym__val_number_decimal_token3] = ACTIONS(1016), - [aux_sym__val_number_decimal_token4] = ACTIONS(1016), + [aux_sym__val_number_decimal_token1] = ACTIONS(1000), + [aux_sym__val_number_decimal_token2] = ACTIONS(1002), + [aux_sym__val_number_decimal_token3] = ACTIONS(1004), + [aux_sym__val_number_decimal_token4] = ACTIONS(1004), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -56684,58 +57098,58 @@ 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(148)] = { - [sym_pipeline_parenthesized] = STATE(4751), - [sym_cmd_identifier] = STATE(3009), - [sym__ctrl_expression_parenthesized] = STATE(3436), - [sym_ctrl_if_parenthesized] = STATE(3367), - [sym_ctrl_match] = STATE(3367), - [sym_ctrl_try_parenthesized] = STATE(3367), - [sym__stmt_let_shortcut] = STATE(3368), - [sym_pipe_element_parenthesized] = STATE(3116), - [sym_where_command_parenthesized] = STATE(3436), - [sym__expression_parenthesized] = STATE(2290), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2157), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(135), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4730), - [sym__command_parenthesized] = STATE(3373), - [sym_comment] = STATE(148), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(274), + [STATE(145)] = { + [sym_pipeline_parenthesized] = STATE(4683), + [sym_cmd_identifier] = STATE(2907), + [sym__ctrl_expression_parenthesized] = STATE(3454), + [sym_ctrl_if_parenthesized] = STATE(3458), + [sym_ctrl_match] = STATE(3458), + [sym_ctrl_try_parenthesized] = STATE(3458), + [sym__stmt_let_shortcut] = STATE(3471), + [sym_pipe_element_parenthesized] = STATE(3176), + [sym_where_command_parenthesized] = STATE(3454), + [sym__expression_parenthesized] = STATE(2289), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2156), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(4794), + [sym__command_parenthesized] = STATE(3494), + [sym_comment] = STATE(145), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(994), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -56747,10 +57161,11 @@ 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(1010), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -56761,7 +57176,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -56769,10 +57184,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(1012), - [aux_sym__val_number_decimal_token2] = ACTIONS(1014), - [aux_sym__val_number_decimal_token3] = ACTIONS(1016), - [aux_sym__val_number_decimal_token4] = ACTIONS(1016), + [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), @@ -56789,54 +57204,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(149)] = { - [sym_pipeline] = STATE(4443), - [sym_cmd_identifier] = STATE(2812), - [sym__ctrl_expression] = STATE(3348), - [sym_ctrl_if] = STATE(3352), - [sym_ctrl_match] = STATE(3352), - [sym_ctrl_try] = STATE(3352), - [sym__stmt_let_shortcut] = STATE(3358), - [sym_pipe_element] = STATE(2956), - [sym_where_command] = STATE(3348), + [STATE(146)] = { + [sym_pipeline] = STATE(4373), + [sym_cmd_identifier] = STATE(2730), + [sym__ctrl_expression] = STATE(3368), + [sym_ctrl_if] = STATE(3392), + [sym_ctrl_match] = STATE(3392), + [sym_ctrl_try] = STATE(3392), + [sym__stmt_let_shortcut] = STATE(3393), + [sym_pipe_element] = STATE(2909), + [sym_where_command] = STATE(3368), [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(704), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(135), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3348), - [sym_comment] = STATE(149), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym_pipe_element_repeat2] = STATE(285), + [sym_expr_parenthesized] = STATE(724), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3368), + [sym_comment] = STATE(146), + [aux_sym_pipeline_repeat1] = STATE(176), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(994), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -56848,10 +57263,11 @@ 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(1018), + [anon_sym_if] = ACTIONS(269), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -56862,7 +57278,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -56870,10 +57286,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(1012), - [aux_sym__val_number_decimal_token2] = ACTIONS(1014), - [aux_sym__val_number_decimal_token3] = ACTIONS(1016), - [aux_sym__val_number_decimal_token4] = ACTIONS(1016), + [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), @@ -56890,54 +57306,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(150)] = { - [sym_pipeline] = STATE(4469), - [sym_cmd_identifier] = STATE(2812), - [sym__ctrl_expression] = STATE(3348), - [sym_ctrl_if] = STATE(3352), - [sym_ctrl_match] = STATE(3352), - [sym_ctrl_try] = STATE(3352), - [sym__stmt_let_shortcut] = STATE(3358), - [sym_pipe_element] = STATE(2956), - [sym_where_command] = STATE(3348), + [STATE(147)] = { + [sym_pipeline] = STATE(4577), + [sym_cmd_identifier] = STATE(2730), + [sym__ctrl_expression] = STATE(3368), + [sym_ctrl_if] = STATE(3392), + [sym_ctrl_match] = STATE(3392), + [sym_ctrl_try] = STATE(3392), + [sym__stmt_let_shortcut] = STATE(3393), + [sym_pipe_element] = STATE(2909), + [sym_where_command] = STATE(3368), [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(704), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(135), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3348), - [sym_comment] = STATE(150), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym_pipe_element_repeat2] = STATE(285), + [sym_expr_parenthesized] = STATE(724), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3368), + [sym_comment] = STATE(147), + [aux_sym_pipeline_repeat1] = STATE(176), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(994), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -56949,10 +57365,11 @@ 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(1018), + [anon_sym_if] = ACTIONS(269), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -56963,7 +57380,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -56971,10 +57388,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(1012), - [aux_sym__val_number_decimal_token2] = ACTIONS(1014), - [aux_sym__val_number_decimal_token3] = ACTIONS(1016), - [aux_sym__val_number_decimal_token4] = ACTIONS(1016), + [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), @@ -56991,54 +57408,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(151)] = { - [sym_pipeline] = STATE(4470), - [sym_cmd_identifier] = STATE(2812), - [sym__ctrl_expression] = STATE(3348), - [sym_ctrl_if] = STATE(3352), - [sym_ctrl_match] = STATE(3352), - [sym_ctrl_try] = STATE(3352), - [sym__stmt_let_shortcut] = STATE(3358), - [sym_pipe_element] = STATE(2956), - [sym_where_command] = STATE(3348), + [STATE(148)] = { + [sym_pipeline] = STATE(4433), + [sym_cmd_identifier] = STATE(2730), + [sym__ctrl_expression] = STATE(3368), + [sym_ctrl_if] = STATE(3392), + [sym_ctrl_match] = STATE(3392), + [sym_ctrl_try] = STATE(3392), + [sym__stmt_let_shortcut] = STATE(3393), + [sym_pipe_element] = STATE(2909), + [sym_where_command] = STATE(3368), [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(704), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(135), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3348), - [sym_comment] = STATE(151), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym_pipe_element_repeat2] = STATE(285), + [sym_expr_parenthesized] = STATE(724), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3368), + [sym_comment] = STATE(148), + [aux_sym_pipeline_repeat1] = STATE(176), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(994), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -57050,10 +57467,11 @@ 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(1018), + [anon_sym_if] = ACTIONS(269), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -57064,7 +57482,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -57072,10 +57490,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(1012), - [aux_sym__val_number_decimal_token2] = ACTIONS(1014), - [aux_sym__val_number_decimal_token3] = ACTIONS(1016), - [aux_sym__val_number_decimal_token4] = ACTIONS(1016), + [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), @@ -57092,54 +57510,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(152)] = { - [sym_pipeline] = STATE(4406), - [sym_cmd_identifier] = STATE(2812), - [sym__ctrl_expression] = STATE(3348), - [sym_ctrl_if] = STATE(3352), - [sym_ctrl_match] = STATE(3352), - [sym_ctrl_try] = STATE(3352), - [sym__stmt_let_shortcut] = STATE(3358), - [sym_pipe_element] = STATE(2956), - [sym_where_command] = STATE(3348), + [STATE(149)] = { + [sym_pipeline] = STATE(4450), + [sym_cmd_identifier] = STATE(2730), + [sym__ctrl_expression] = STATE(3368), + [sym_ctrl_if] = STATE(3392), + [sym_ctrl_match] = STATE(3392), + [sym_ctrl_try] = STATE(3392), + [sym__stmt_let_shortcut] = STATE(3393), + [sym_pipe_element] = STATE(2909), + [sym_where_command] = STATE(3368), [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(704), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(135), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3348), - [sym_comment] = STATE(152), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym_pipe_element_repeat2] = STATE(285), + [sym_expr_parenthesized] = STATE(724), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3368), + [sym_comment] = STATE(149), + [aux_sym_pipeline_repeat1] = STATE(176), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(994), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -57151,10 +57569,11 @@ 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(1018), + [anon_sym_if] = ACTIONS(269), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -57165,7 +57584,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -57173,10 +57592,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(1012), - [aux_sym__val_number_decimal_token2] = ACTIONS(1014), - [aux_sym__val_number_decimal_token3] = ACTIONS(1016), - [aux_sym__val_number_decimal_token4] = ACTIONS(1016), + [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), @@ -57193,54 +57612,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(153)] = { - [sym_pipeline] = STATE(4434), - [sym_cmd_identifier] = STATE(2812), - [sym__ctrl_expression] = STATE(3348), - [sym_ctrl_if] = STATE(3352), - [sym_ctrl_match] = STATE(3352), - [sym_ctrl_try] = STATE(3352), - [sym__stmt_let_shortcut] = STATE(3358), - [sym_pipe_element] = STATE(2956), - [sym_where_command] = STATE(3348), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(704), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(135), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3348), - [sym_comment] = STATE(153), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym_pipe_element_repeat2] = STATE(285), + [STATE(150)] = { + [sym_pipeline_parenthesized] = STATE(4726), + [sym_cmd_identifier] = STATE(2907), + [sym__ctrl_expression_parenthesized] = STATE(3454), + [sym_ctrl_if_parenthesized] = STATE(3458), + [sym_ctrl_match] = STATE(3458), + [sym_ctrl_try_parenthesized] = STATE(3458), + [sym__stmt_let_shortcut] = STATE(3471), + [sym_pipe_element_parenthesized] = STATE(3176), + [sym_where_command_parenthesized] = STATE(3454), + [sym__expression_parenthesized] = STATE(2289), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2156), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(136), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(4794), + [sym__command_parenthesized] = STATE(3494), + [sym_comment] = STATE(150), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(180), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(268), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(994), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -57252,10 +57671,11 @@ 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(1018), + [anon_sym_if] = ACTIONS(1006), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -57266,18 +57686,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [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(1012), - [aux_sym__val_number_decimal_token2] = ACTIONS(1014), - [aux_sym__val_number_decimal_token3] = ACTIONS(1016), - [aux_sym__val_number_decimal_token4] = ACTIONS(1016), + [aux_sym__val_number_decimal_token1] = ACTIONS(1000), + [aux_sym__val_number_decimal_token2] = ACTIONS(1002), + [aux_sym__val_number_decimal_token3] = ACTIONS(1004), + [aux_sym__val_number_decimal_token4] = ACTIONS(1004), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -57290,58 +57710,58 @@ 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(154)] = { - [sym_pipeline] = STATE(4569), - [sym_cmd_identifier] = STATE(2947), - [sym__ctrl_expression] = STATE(3379), - [sym_ctrl_if] = STATE(3441), - [sym_ctrl_match] = STATE(3441), - [sym_ctrl_try] = STATE(3441), - [sym__stmt_let_shortcut] = STATE(3501), - [sym_pipe_element] = STATE(3200), - [sym_where_command] = STATE(3379), + [STATE(151)] = { + [sym_pipeline] = STATE(4757), + [sym_cmd_identifier] = STATE(2951), + [sym__ctrl_expression] = STATE(3512), + [sym_ctrl_if] = STATE(3519), + [sym_ctrl_match] = STATE(3519), + [sym_ctrl_try] = STATE(3519), + [sym__stmt_let_shortcut] = STATE(3521), + [sym_pipe_element] = STATE(3125), + [sym_where_command] = STATE(3512), [sym__expression] = STATE(2294), - [sym_expr_unary] = STATE(1286), - [sym__expr_unary_minus] = STATE(1290), - [sym_expr_binary] = STATE(1286), - [sym__expr_binary_expression] = STATE(2252), - [sym_expr_parenthesized] = STATE(924), - [sym_val_range] = STATE(1286), - [sym__value] = STATE(1286), - [sym_val_nothing] = STATE(1295), - [sym_val_bool] = STATE(1295), - [sym_val_variable] = STATE(933), - [sym_val_cellpath] = STATE(1295), - [sym_val_number] = STATE(1295), - [sym__val_number_decimal] = STATE(123), + [sym_expr_unary] = STATE(1292), + [sym__expr_unary_minus] = STATE(1296), + [sym_expr_binary] = STATE(1292), + [sym__expr_binary_expression] = STATE(2248), + [sym_expr_parenthesized] = STATE(964), + [sym_val_range] = STATE(1292), + [sym__value] = STATE(1292), + [sym_val_nothing] = STATE(1316), + [sym_val_bool] = STATE(1316), + [sym_val_variable] = STATE(912), + [sym_val_cellpath] = STATE(1316), + [sym_val_number] = STATE(1316), + [sym__val_number_decimal] = STATE(132), [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1295), - [sym_val_filesize] = STATE(1295), - [sym_val_binary] = STATE(1295), - [sym_val_string] = STATE(1295), + [sym_val_duration] = STATE(1316), + [sym_val_filesize] = STATE(1316), + [sym_val_binary] = STATE(1316), + [sym_val_string] = STATE(1316), [sym__raw_str] = STATE(502), [sym__str_double_quotes] = STATE(502), [sym__str_single_quotes] = STATE(502), [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1295), - [sym__inter_single_quotes] = STATE(1306), - [sym__inter_double_quotes] = STATE(1317), - [sym_val_list] = STATE(1295), - [sym_val_record] = STATE(1295), - [sym_val_table] = STATE(1295), - [sym_val_closure] = STATE(1295), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3379), - [sym_comment] = STATE(154), - [aux_sym_pipeline_repeat1] = STATE(189), - [aux_sym_pipe_element_repeat2] = STATE(291), + [sym_val_interpolated] = STATE(1316), + [sym__inter_single_quotes] = STATE(1277), + [sym__inter_double_quotes] = STATE(1311), + [sym_val_list] = STATE(1316), + [sym_val_record] = STATE(1316), + [sym_val_table] = STATE(1316), + [sym_val_closure] = STATE(1316), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3512), + [sym_comment] = STATE(151), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym_pipe_element_repeat2] = STATE(284), [anon_sym_export] = ACTIONS(45), [anon_sym_alias] = ACTIONS(39), - [anon_sym_let] = ACTIONS(1006), + [anon_sym_let] = ACTIONS(1008), [anon_sym_mut] = ACTIONS(39), [anon_sym_const] = ACTIONS(39), [aux_sym_cmd_identifier_token1] = ACTIONS(19), @@ -57357,6 +57777,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(39), [anon_sym_try] = ACTIONS(41), [anon_sym_catch] = ACTIONS(39), + [anon_sym_finally] = ACTIONS(39), [anon_sym_match] = ACTIONS(43), [anon_sym_in] = ACTIONS(45), [anon_sym_true] = ACTIONS(47), @@ -57367,7 +57788,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(1008), + [anon_sym_DOLLAR] = ACTIONS(1010), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_DOT_DOT] = ACTIONS(69), @@ -57395,54 +57816,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(155)] = { - [sym_pipeline_parenthesized] = STATE(4732), - [sym_cmd_identifier] = STATE(3009), - [sym__ctrl_expression_parenthesized] = STATE(3436), - [sym_ctrl_if_parenthesized] = STATE(3367), - [sym_ctrl_match] = STATE(3367), - [sym_ctrl_try_parenthesized] = STATE(3367), - [sym__stmt_let_shortcut] = STATE(3368), - [sym_pipe_element_parenthesized] = STATE(3116), - [sym_where_command_parenthesized] = STATE(3436), - [sym__expression_parenthesized] = STATE(2290), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2157), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(124), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4730), - [sym__command_parenthesized] = STATE(3373), - [sym_comment] = STATE(155), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), + [STATE(152)] = { + [sym_pipeline_parenthesized] = STATE(4882), + [sym_cmd_identifier] = STATE(2907), + [sym__ctrl_expression_parenthesized] = STATE(3454), + [sym_ctrl_if_parenthesized] = STATE(3458), + [sym_ctrl_match] = STATE(3458), + [sym_ctrl_try_parenthesized] = STATE(3458), + [sym__stmt_let_shortcut] = STATE(3471), + [sym_pipe_element_parenthesized] = STATE(3176), + [sym_where_command_parenthesized] = STATE(3454), + [sym__expression_parenthesized] = STATE(2289), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2156), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(136), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(4794), + [sym__command_parenthesized] = STATE(3494), + [sym_comment] = STATE(152), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(180), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(268), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(994), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -57454,10 +57875,11 @@ 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(1006), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -57468,7 +57890,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -57476,10 +57898,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(1000), + [aux_sym__val_number_decimal_token2] = ACTIONS(1002), + [aux_sym__val_number_decimal_token3] = ACTIONS(1004), + [aux_sym__val_number_decimal_token4] = ACTIONS(1004), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -57496,660 +57918,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(156)] = { - [sym_pipeline] = STATE(4443), - [sym_cmd_identifier] = STATE(2812), - [sym__ctrl_expression] = STATE(3348), - [sym_ctrl_if] = STATE(3352), - [sym_ctrl_match] = STATE(3352), - [sym_ctrl_try] = STATE(3352), - [sym__stmt_let_shortcut] = STATE(3358), - [sym_pipe_element] = STATE(2956), - [sym_where_command] = STATE(3348), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(704), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(124), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3348), - [sym_comment] = STATE(156), - [aux_sym_pipeline_repeat1] = STATE(182), - [aux_sym_pipe_element_repeat2] = STATE(278), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(1002), - [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(1004), - [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(157)] = { - [sym_pipeline] = STATE(4443), - [sym_cmd_identifier] = STATE(2812), - [sym__ctrl_expression] = STATE(3348), - [sym_ctrl_if] = STATE(3352), - [sym_ctrl_match] = STATE(3352), - [sym_ctrl_try] = STATE(3352), - [sym__stmt_let_shortcut] = STATE(3358), - [sym_pipe_element] = STATE(2956), - [sym_where_command] = STATE(3348), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(704), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(133), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3348), - [sym_comment] = STATE(157), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(1002), - [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(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(1004), - [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(158)] = { - [sym_comment] = STATE(158), - [anon_sym_in] = ACTIONS(1020), - [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(1020), - [anon_sym_SEMI] = ACTIONS(1020), - [anon_sym_PIPE] = ACTIONS(1020), - [anon_sym_err_GT_PIPE] = ACTIONS(1020), - [anon_sym_out_GT_PIPE] = ACTIONS(1020), - [anon_sym_e_GT_PIPE] = ACTIONS(1020), - [anon_sym_o_GT_PIPE] = ACTIONS(1020), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1020), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1020), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1020), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1020), - [anon_sym_RPAREN] = ACTIONS(1020), - [anon_sym_GT2] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(1020), - [anon_sym_STAR2] = ACTIONS(1020), - [anon_sym_and2] = ACTIONS(1020), - [anon_sym_xor2] = ACTIONS(1020), - [anon_sym_or2] = ACTIONS(1020), - [anon_sym_not_DASHin2] = ACTIONS(1020), - [anon_sym_has2] = ACTIONS(1020), - [anon_sym_not_DASHhas2] = ACTIONS(1020), - [anon_sym_starts_DASHwith2] = ACTIONS(1020), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1020), - [anon_sym_ends_DASHwith2] = ACTIONS(1020), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1020), - [anon_sym_EQ_EQ2] = ACTIONS(1020), - [anon_sym_BANG_EQ2] = ACTIONS(1020), - [anon_sym_LT2] = ACTIONS(1020), - [anon_sym_LT_EQ2] = ACTIONS(1020), - [anon_sym_GT_EQ2] = ACTIONS(1020), - [anon_sym_EQ_TILDE2] = ACTIONS(1020), - [anon_sym_BANG_TILDE2] = ACTIONS(1020), - [anon_sym_like2] = ACTIONS(1020), - [anon_sym_not_DASHlike2] = ACTIONS(1020), - [anon_sym_STAR_STAR2] = ACTIONS(1020), - [anon_sym_PLUS_PLUS2] = ACTIONS(1020), - [anon_sym_SLASH2] = ACTIONS(1020), - [anon_sym_mod2] = ACTIONS(1020), - [anon_sym_SLASH_SLASH2] = ACTIONS(1020), - [anon_sym_PLUS2] = ACTIONS(1020), - [anon_sym_bit_DASHshl2] = ACTIONS(1020), - [anon_sym_bit_DASHshr2] = ACTIONS(1020), - [anon_sym_bit_DASHand2] = ACTIONS(1020), - [anon_sym_bit_DASHxor2] = ACTIONS(1020), - [anon_sym_bit_DASHor2] = ACTIONS(1020), - [anon_sym_err_GT] = ACTIONS(1020), - [anon_sym_out_GT] = ACTIONS(1020), - [anon_sym_e_GT] = ACTIONS(1020), - [anon_sym_o_GT] = ACTIONS(1020), - [anon_sym_err_PLUSout_GT] = ACTIONS(1020), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1020), - [anon_sym_o_PLUSe_GT] = ACTIONS(1020), - [anon_sym_e_PLUSo_GT] = ACTIONS(1020), - [anon_sym_err_GT_GT] = ACTIONS(1020), - [anon_sym_out_GT_GT] = ACTIONS(1020), - [anon_sym_e_GT_GT] = ACTIONS(1020), - [anon_sym_o_GT_GT] = ACTIONS(1020), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1020), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1020), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1020), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1020), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(159)] = { - [sym_pipeline] = STATE(4539), - [sym_cmd_identifier] = STATE(2947), - [sym__ctrl_expression] = STATE(3379), - [sym_ctrl_if] = STATE(3441), - [sym_ctrl_match] = STATE(3441), - [sym_ctrl_try] = STATE(3441), - [sym__stmt_let_shortcut] = STATE(3501), - [sym_pipe_element] = STATE(3200), - [sym_where_command] = STATE(3379), - [sym__expression] = STATE(2294), - [sym_expr_unary] = STATE(1286), - [sym__expr_unary_minus] = STATE(1290), - [sym_expr_binary] = STATE(1286), - [sym__expr_binary_expression] = STATE(2252), - [sym_expr_parenthesized] = STATE(924), - [sym_val_range] = STATE(1286), - [sym__value] = STATE(1286), - [sym_val_nothing] = STATE(1295), - [sym_val_bool] = STATE(1295), - [sym_val_variable] = STATE(933), - [sym_val_cellpath] = STATE(1295), - [sym_val_number] = STATE(1295), - [sym__val_number_decimal] = STATE(123), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1295), - [sym_val_filesize] = STATE(1295), - [sym_val_binary] = STATE(1295), - [sym_val_string] = STATE(1295), - [sym__raw_str] = STATE(502), - [sym__str_double_quotes] = STATE(502), - [sym__str_single_quotes] = STATE(502), - [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1295), - [sym__inter_single_quotes] = STATE(1306), - [sym__inter_double_quotes] = STATE(1317), - [sym_val_list] = STATE(1295), - [sym_val_record] = STATE(1295), - [sym_val_table] = STATE(1295), - [sym_val_closure] = STATE(1295), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3379), - [sym_comment] = STATE(159), - [aux_sym_pipeline_repeat1] = STATE(189), - [aux_sym_pipe_element_repeat2] = STATE(291), - [anon_sym_export] = ACTIONS(45), - [anon_sym_alias] = ACTIONS(39), - [anon_sym_let] = ACTIONS(1006), - [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(1008), - [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(160)] = { - [sym_comment] = STATE(160), - [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(161)] = { - [sym_comment] = STATE(161), - [ts_builtin_sym_end] = ACTIONS(1022), - [anon_sym_in] = ACTIONS(1020), - [anon_sym_STAR_STAR] = ACTIONS(1024), - [anon_sym_PLUS_PLUS] = ACTIONS(1024), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_SLASH] = ACTIONS(1026), - [anon_sym_mod] = ACTIONS(1024), - [anon_sym_SLASH_SLASH] = ACTIONS(1024), - [anon_sym_PLUS] = ACTIONS(1026), - [anon_sym_DASH] = ACTIONS(1024), - [anon_sym_bit_DASHshl] = ACTIONS(1024), - [anon_sym_bit_DASHshr] = ACTIONS(1024), - [anon_sym_EQ_TILDE] = ACTIONS(1024), - [anon_sym_BANG_TILDE] = ACTIONS(1024), - [anon_sym_like] = ACTIONS(1024), - [anon_sym_not_DASHlike] = ACTIONS(1024), - [anon_sym_bit_DASHand] = ACTIONS(1024), - [anon_sym_bit_DASHxor] = ACTIONS(1024), - [anon_sym_bit_DASHor] = ACTIONS(1024), - [anon_sym_and] = ACTIONS(1024), - [anon_sym_xor] = ACTIONS(1024), - [anon_sym_or] = ACTIONS(1024), - [anon_sym_in2] = ACTIONS(1024), - [anon_sym_not_DASHin] = ACTIONS(1024), - [anon_sym_has] = ACTIONS(1024), - [anon_sym_not_DASHhas] = ACTIONS(1024), - [anon_sym_starts_DASHwith] = ACTIONS(1024), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1024), - [anon_sym_ends_DASHwith] = ACTIONS(1024), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1024), - [anon_sym_EQ_EQ] = ACTIONS(1024), - [anon_sym_BANG_EQ] = ACTIONS(1024), - [anon_sym_LT] = ACTIONS(1026), - [anon_sym_LT_EQ] = ACTIONS(1024), - [anon_sym_GT] = ACTIONS(1026), - [anon_sym_GT_EQ] = ACTIONS(1024), - [aux_sym_cmd_identifier_token6] = ACTIONS(1028), - [sym__newline] = ACTIONS(1020), - [anon_sym_SEMI] = ACTIONS(1020), - [anon_sym_PIPE] = ACTIONS(1020), - [anon_sym_err_GT_PIPE] = ACTIONS(1020), - [anon_sym_out_GT_PIPE] = ACTIONS(1020), - [anon_sym_e_GT_PIPE] = ACTIONS(1020), - [anon_sym_o_GT_PIPE] = ACTIONS(1020), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1020), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1020), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1020), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1020), - [anon_sym_GT2] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(1020), - [anon_sym_STAR2] = ACTIONS(1020), - [anon_sym_and2] = ACTIONS(1020), - [anon_sym_xor2] = ACTIONS(1020), - [anon_sym_or2] = ACTIONS(1020), - [anon_sym_not_DASHin2] = ACTIONS(1020), - [anon_sym_has2] = ACTIONS(1020), - [anon_sym_not_DASHhas2] = ACTIONS(1020), - [anon_sym_starts_DASHwith2] = ACTIONS(1020), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1020), - [anon_sym_ends_DASHwith2] = ACTIONS(1020), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1020), - [anon_sym_EQ_EQ2] = ACTIONS(1020), - [anon_sym_BANG_EQ2] = ACTIONS(1020), - [anon_sym_LT2] = ACTIONS(1020), - [anon_sym_LT_EQ2] = ACTIONS(1020), - [anon_sym_GT_EQ2] = ACTIONS(1020), - [anon_sym_EQ_TILDE2] = ACTIONS(1020), - [anon_sym_BANG_TILDE2] = ACTIONS(1020), - [anon_sym_like2] = ACTIONS(1020), - [anon_sym_not_DASHlike2] = ACTIONS(1020), - [anon_sym_STAR_STAR2] = ACTIONS(1020), - [anon_sym_PLUS_PLUS2] = ACTIONS(1020), - [anon_sym_SLASH2] = ACTIONS(1020), - [anon_sym_mod2] = ACTIONS(1020), - [anon_sym_SLASH_SLASH2] = ACTIONS(1020), - [anon_sym_PLUS2] = ACTIONS(1020), - [anon_sym_bit_DASHshl2] = ACTIONS(1020), - [anon_sym_bit_DASHshr2] = ACTIONS(1020), - [anon_sym_bit_DASHand2] = ACTIONS(1020), - [anon_sym_bit_DASHxor2] = ACTIONS(1020), - [anon_sym_bit_DASHor2] = ACTIONS(1020), - [anon_sym_err_GT] = ACTIONS(1020), - [anon_sym_out_GT] = ACTIONS(1020), - [anon_sym_e_GT] = ACTIONS(1020), - [anon_sym_o_GT] = ACTIONS(1020), - [anon_sym_err_PLUSout_GT] = ACTIONS(1020), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1020), - [anon_sym_o_PLUSe_GT] = ACTIONS(1020), - [anon_sym_e_PLUSo_GT] = ACTIONS(1020), - [anon_sym_err_GT_GT] = ACTIONS(1020), - [anon_sym_out_GT_GT] = ACTIONS(1020), - [anon_sym_e_GT_GT] = ACTIONS(1020), - [anon_sym_o_GT_GT] = ACTIONS(1020), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1020), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1020), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1020), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1020), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(162)] = { - [sym_pipeline] = STATE(4469), - [sym_cmd_identifier] = STATE(2812), - [sym__ctrl_expression] = STATE(3348), - [sym_ctrl_if] = STATE(3352), - [sym_ctrl_match] = STATE(3352), - [sym_ctrl_try] = STATE(3352), - [sym__stmt_let_shortcut] = STATE(3358), - [sym_pipe_element] = STATE(2956), - [sym_where_command] = STATE(3348), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(704), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(124), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3348), - [sym_comment] = STATE(162), - [aux_sym_pipeline_repeat1] = STATE(182), - [aux_sym_pipe_element_repeat2] = STATE(278), + [STATE(153)] = { + [sym_pipeline_parenthesized] = STATE(4894), + [sym_cmd_identifier] = STATE(2907), + [sym__ctrl_expression_parenthesized] = STATE(3454), + [sym_ctrl_if_parenthesized] = STATE(3458), + [sym_ctrl_match] = STATE(3458), + [sym_ctrl_try_parenthesized] = STATE(3458), + [sym__stmt_let_shortcut] = STATE(3471), + [sym_pipe_element_parenthesized] = STATE(3176), + [sym_where_command_parenthesized] = STATE(3454), + [sym__expression_parenthesized] = STATE(2289), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2156), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(136), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(4794), + [sym__command_parenthesized] = STATE(3494), + [sym_comment] = STATE(153), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(180), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(268), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(994), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -58161,10 +57977,11 @@ 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(459), + [anon_sym_if] = ACTIONS(1006), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -58175,18 +57992,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [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(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(1000), + [aux_sym__val_number_decimal_token2] = ACTIONS(1002), + [aux_sym__val_number_decimal_token3] = ACTIONS(1004), + [aux_sym__val_number_decimal_token4] = ACTIONS(1004), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -58199,58 +58016,58 @@ 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(163)] = { - [sym_pipeline] = STATE(4469), - [sym_cmd_identifier] = STATE(2812), - [sym__ctrl_expression] = STATE(3348), - [sym_ctrl_if] = STATE(3352), - [sym_ctrl_match] = STATE(3352), - [sym_ctrl_try] = STATE(3352), - [sym__stmt_let_shortcut] = STATE(3358), - [sym_pipe_element] = STATE(2956), - [sym_where_command] = STATE(3348), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(704), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(133), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3348), - [sym_comment] = STATE(163), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym_pipe_element_repeat2] = STATE(292), + [STATE(154)] = { + [sym_pipeline_parenthesized] = STATE(4683), + [sym_cmd_identifier] = STATE(2907), + [sym__ctrl_expression_parenthesized] = STATE(3454), + [sym_ctrl_if_parenthesized] = STATE(3458), + [sym_ctrl_match] = STATE(3458), + [sym_ctrl_try_parenthesized] = STATE(3458), + [sym__stmt_let_shortcut] = STATE(3471), + [sym_pipe_element_parenthesized] = STATE(3176), + [sym_where_command_parenthesized] = STATE(3454), + [sym__expression_parenthesized] = STATE(2289), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2156), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(136), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(4794), + [sym__command_parenthesized] = STATE(3494), + [sym_comment] = STATE(154), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(180), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(268), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(994), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -58262,10 +58079,11 @@ 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(1006), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -58276,18 +58094,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [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(1000), + [aux_sym__val_number_decimal_token2] = ACTIONS(1002), + [aux_sym__val_number_decimal_token3] = ACTIONS(1004), + [aux_sym__val_number_decimal_token4] = ACTIONS(1004), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -58300,58 +58118,58 @@ 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(164)] = { - [sym_pipeline] = STATE(4470), - [sym_cmd_identifier] = STATE(2812), - [sym__ctrl_expression] = STATE(3348), - [sym_ctrl_if] = STATE(3352), - [sym_ctrl_match] = STATE(3352), - [sym_ctrl_try] = STATE(3352), - [sym__stmt_let_shortcut] = STATE(3358), - [sym_pipe_element] = STATE(2956), - [sym_where_command] = STATE(3348), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(704), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(133), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3348), - [sym_comment] = STATE(164), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym_pipe_element_repeat2] = STATE(292), + [STATE(155)] = { + [sym_pipeline_parenthesized] = STATE(4698), + [sym_cmd_identifier] = STATE(2907), + [sym__ctrl_expression_parenthesized] = STATE(3454), + [sym_ctrl_if_parenthesized] = STATE(3458), + [sym_ctrl_match] = STATE(3458), + [sym_ctrl_try_parenthesized] = STATE(3458), + [sym__stmt_let_shortcut] = STATE(3471), + [sym_pipe_element_parenthesized] = STATE(3176), + [sym_where_command_parenthesized] = STATE(3454), + [sym__expression_parenthesized] = STATE(2289), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2156), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(136), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(4794), + [sym__command_parenthesized] = STATE(3494), + [sym_comment] = STATE(155), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(180), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(268), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(994), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -58363,10 +58181,11 @@ 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(1006), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -58377,18 +58196,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [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(1000), + [aux_sym__val_number_decimal_token2] = ACTIONS(1002), + [aux_sym__val_number_decimal_token3] = ACTIONS(1004), + [aux_sym__val_number_decimal_token4] = ACTIONS(1004), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -58401,159 +58220,58 @@ 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(165)] = { - [sym_comment] = STATE(165), - [ts_builtin_sym_end] = ACTIONS(1030), - [anon_sym_in] = ACTIONS(994), - [anon_sym_STAR_STAR] = ACTIONS(1024), - [anon_sym_PLUS_PLUS] = ACTIONS(1024), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_SLASH] = ACTIONS(1026), - [anon_sym_mod] = ACTIONS(1024), - [anon_sym_SLASH_SLASH] = ACTIONS(1024), - [anon_sym_PLUS] = ACTIONS(1026), - [anon_sym_DASH] = ACTIONS(1024), - [anon_sym_bit_DASHshl] = ACTIONS(1024), - [anon_sym_bit_DASHshr] = ACTIONS(1024), - [anon_sym_EQ_TILDE] = ACTIONS(1024), - [anon_sym_BANG_TILDE] = ACTIONS(1024), - [anon_sym_like] = ACTIONS(1024), - [anon_sym_not_DASHlike] = ACTIONS(1024), - [anon_sym_bit_DASHand] = ACTIONS(1024), - [anon_sym_bit_DASHxor] = ACTIONS(1024), - [anon_sym_bit_DASHor] = ACTIONS(1024), - [anon_sym_and] = ACTIONS(1024), - [anon_sym_xor] = ACTIONS(1024), - [anon_sym_or] = ACTIONS(1024), - [anon_sym_in2] = ACTIONS(1024), - [anon_sym_not_DASHin] = ACTIONS(1024), - [anon_sym_has] = ACTIONS(1024), - [anon_sym_not_DASHhas] = ACTIONS(1024), - [anon_sym_starts_DASHwith] = ACTIONS(1024), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1024), - [anon_sym_ends_DASHwith] = ACTIONS(1024), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1024), - [anon_sym_EQ_EQ] = ACTIONS(1024), - [anon_sym_BANG_EQ] = ACTIONS(1024), - [anon_sym_LT] = ACTIONS(1026), - [anon_sym_LT_EQ] = ACTIONS(1024), - [anon_sym_GT] = ACTIONS(1026), - [anon_sym_GT_EQ] = ACTIONS(1024), - [aux_sym_cmd_identifier_token6] = ACTIONS(1028), - [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(166)] = { - [sym_pipeline] = STATE(4406), - [sym_cmd_identifier] = STATE(2812), - [sym__ctrl_expression] = STATE(3348), - [sym_ctrl_if] = STATE(3352), - [sym_ctrl_match] = STATE(3352), - [sym_ctrl_try] = STATE(3352), - [sym__stmt_let_shortcut] = STATE(3358), - [sym_pipe_element] = STATE(2956), - [sym_where_command] = STATE(3348), + [STATE(156)] = { + [sym_pipeline] = STATE(4639), + [sym_cmd_identifier] = STATE(2730), + [sym__ctrl_expression] = STATE(3368), + [sym_ctrl_if] = STATE(3392), + [sym_ctrl_match] = STATE(3392), + [sym_ctrl_try] = STATE(3392), + [sym__stmt_let_shortcut] = STATE(3393), + [sym_pipe_element] = STATE(2909), + [sym_where_command] = STATE(3368), [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(704), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(133), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3348), - [sym_comment] = STATE(166), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym_pipe_element_repeat2] = STATE(292), + [sym_expr_parenthesized] = STATE(724), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3368), + [sym_comment] = STATE(156), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym_pipe_element_repeat2] = STATE(267), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(994), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -58565,10 +58283,11 @@ 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), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -58579,7 +58298,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -58587,10 +58306,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), @@ -58607,54 +58326,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(167)] = { - [sym_pipeline] = STATE(4470), - [sym_cmd_identifier] = STATE(2812), - [sym__ctrl_expression] = STATE(3348), - [sym_ctrl_if] = STATE(3352), - [sym_ctrl_match] = STATE(3352), - [sym_ctrl_try] = STATE(3352), - [sym__stmt_let_shortcut] = STATE(3358), - [sym_pipe_element] = STATE(2956), - [sym_where_command] = STATE(3348), + [STATE(157)] = { + [sym_pipeline] = STATE(4373), + [sym_cmd_identifier] = STATE(2730), + [sym__ctrl_expression] = STATE(3368), + [sym_ctrl_if] = STATE(3392), + [sym_ctrl_match] = STATE(3392), + [sym_ctrl_try] = STATE(3392), + [sym__stmt_let_shortcut] = STATE(3393), + [sym_pipe_element] = STATE(2909), + [sym_where_command] = STATE(3368), [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(704), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(124), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3348), - [sym_comment] = STATE(167), - [aux_sym_pipeline_repeat1] = STATE(182), - [aux_sym_pipe_element_repeat2] = STATE(278), + [sym_expr_parenthesized] = STATE(724), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3368), + [sym_comment] = STATE(157), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym_pipe_element_repeat2] = STATE(267), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(994), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -58670,6 +58389,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -58680,7 +58400,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -58708,54 +58428,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(168)] = { - [sym_pipeline] = STATE(4434), - [sym_cmd_identifier] = STATE(2812), - [sym__ctrl_expression] = STATE(3348), - [sym_ctrl_if] = STATE(3352), - [sym_ctrl_match] = STATE(3352), - [sym_ctrl_try] = STATE(3352), - [sym__stmt_let_shortcut] = STATE(3358), - [sym_pipe_element] = STATE(2956), - [sym_where_command] = STATE(3348), + [STATE(158)] = { + [sym_pipeline] = STATE(4577), + [sym_cmd_identifier] = STATE(2730), + [sym__ctrl_expression] = STATE(3368), + [sym_ctrl_if] = STATE(3392), + [sym_ctrl_match] = STATE(3392), + [sym_ctrl_try] = STATE(3392), + [sym__stmt_let_shortcut] = STATE(3393), + [sym_pipe_element] = STATE(2909), + [sym_where_command] = STATE(3368), [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(704), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(133), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3348), - [sym_comment] = STATE(168), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym_pipe_element_repeat2] = STATE(292), + [sym_expr_parenthesized] = STATE(724), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3368), + [sym_comment] = STATE(158), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym_pipe_element_repeat2] = STATE(267), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(994), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -58767,10 +58487,11 @@ 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), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -58781,7 +58502,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -58789,10 +58510,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), @@ -58809,54 +58530,54 @@ 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(4406), - [sym_cmd_identifier] = STATE(2812), - [sym__ctrl_expression] = STATE(3348), - [sym_ctrl_if] = STATE(3352), - [sym_ctrl_match] = STATE(3352), - [sym_ctrl_try] = STATE(3352), - [sym__stmt_let_shortcut] = STATE(3358), - [sym_pipe_element] = STATE(2956), - [sym_where_command] = STATE(3348), + [STATE(159)] = { + [sym_pipeline] = STATE(4433), + [sym_cmd_identifier] = STATE(2730), + [sym__ctrl_expression] = STATE(3368), + [sym_ctrl_if] = STATE(3392), + [sym_ctrl_match] = STATE(3392), + [sym_ctrl_try] = STATE(3392), + [sym__stmt_let_shortcut] = STATE(3393), + [sym_pipe_element] = STATE(2909), + [sym_where_command] = STATE(3368), [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(704), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(124), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3348), - [sym_comment] = STATE(169), - [aux_sym_pipeline_repeat1] = STATE(182), - [aux_sym_pipe_element_repeat2] = STATE(278), + [sym_expr_parenthesized] = STATE(724), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3368), + [sym_comment] = STATE(159), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym_pipe_element_repeat2] = STATE(267), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(994), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -58872,6 +58593,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -58882,7 +58604,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -58910,54 +58632,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(170)] = { - [sym_pipeline] = STATE(4434), - [sym_cmd_identifier] = STATE(2812), - [sym__ctrl_expression] = STATE(3348), - [sym_ctrl_if] = STATE(3352), - [sym_ctrl_match] = STATE(3352), - [sym_ctrl_try] = STATE(3352), - [sym__stmt_let_shortcut] = STATE(3358), - [sym_pipe_element] = STATE(2956), - [sym_where_command] = STATE(3348), + [STATE(160)] = { + [sym_pipeline] = STATE(4450), + [sym_cmd_identifier] = STATE(2730), + [sym__ctrl_expression] = STATE(3368), + [sym_ctrl_if] = STATE(3392), + [sym_ctrl_match] = STATE(3392), + [sym_ctrl_try] = STATE(3392), + [sym__stmt_let_shortcut] = STATE(3393), + [sym_pipe_element] = STATE(2909), + [sym_where_command] = STATE(3368), [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(704), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(124), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3348), - [sym_comment] = STATE(170), - [aux_sym_pipeline_repeat1] = STATE(182), - [aux_sym_pipe_element_repeat2] = STATE(278), + [sym_expr_parenthesized] = STATE(724), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3368), + [sym_comment] = STATE(160), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym_pipe_element_repeat2] = STATE(267), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(994), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -58973,6 +58695,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -58983,7 +58706,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -59011,155 +58734,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(171)] = { - [sym_comment] = STATE(171), - [anon_sym_in] = ACTIONS(1020), - [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(1020), - [anon_sym_SEMI] = ACTIONS(1020), - [anon_sym_PIPE] = ACTIONS(1020), - [anon_sym_err_GT_PIPE] = ACTIONS(1020), - [anon_sym_out_GT_PIPE] = ACTIONS(1020), - [anon_sym_e_GT_PIPE] = ACTIONS(1020), - [anon_sym_o_GT_PIPE] = ACTIONS(1020), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1020), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1020), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1020), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1020), - [anon_sym_GT2] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(1020), - [anon_sym_RBRACE] = ACTIONS(1020), - [anon_sym_STAR2] = ACTIONS(1020), - [anon_sym_and2] = ACTIONS(1020), - [anon_sym_xor2] = ACTIONS(1020), - [anon_sym_or2] = ACTIONS(1020), - [anon_sym_not_DASHin2] = ACTIONS(1020), - [anon_sym_has2] = ACTIONS(1020), - [anon_sym_not_DASHhas2] = ACTIONS(1020), - [anon_sym_starts_DASHwith2] = ACTIONS(1020), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1020), - [anon_sym_ends_DASHwith2] = ACTIONS(1020), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1020), - [anon_sym_EQ_EQ2] = ACTIONS(1020), - [anon_sym_BANG_EQ2] = ACTIONS(1020), - [anon_sym_LT2] = ACTIONS(1020), - [anon_sym_LT_EQ2] = ACTIONS(1020), - [anon_sym_GT_EQ2] = ACTIONS(1020), - [anon_sym_EQ_TILDE2] = ACTIONS(1020), - [anon_sym_BANG_TILDE2] = ACTIONS(1020), - [anon_sym_like2] = ACTIONS(1020), - [anon_sym_not_DASHlike2] = ACTIONS(1020), - [anon_sym_STAR_STAR2] = ACTIONS(1020), - [anon_sym_PLUS_PLUS2] = ACTIONS(1020), - [anon_sym_SLASH2] = ACTIONS(1020), - [anon_sym_mod2] = ACTIONS(1020), - [anon_sym_SLASH_SLASH2] = ACTIONS(1020), - [anon_sym_PLUS2] = ACTIONS(1020), - [anon_sym_bit_DASHshl2] = ACTIONS(1020), - [anon_sym_bit_DASHshr2] = ACTIONS(1020), - [anon_sym_bit_DASHand2] = ACTIONS(1020), - [anon_sym_bit_DASHxor2] = ACTIONS(1020), - [anon_sym_bit_DASHor2] = ACTIONS(1020), - [anon_sym_err_GT] = ACTIONS(1020), - [anon_sym_out_GT] = ACTIONS(1020), - [anon_sym_e_GT] = ACTIONS(1020), - [anon_sym_o_GT] = ACTIONS(1020), - [anon_sym_err_PLUSout_GT] = ACTIONS(1020), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1020), - [anon_sym_o_PLUSe_GT] = ACTIONS(1020), - [anon_sym_e_PLUSo_GT] = ACTIONS(1020), - [anon_sym_err_GT_GT] = ACTIONS(1020), - [anon_sym_out_GT_GT] = ACTIONS(1020), - [anon_sym_e_GT_GT] = ACTIONS(1020), - [anon_sym_o_GT_GT] = ACTIONS(1020), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1020), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1020), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1020), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1020), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(172)] = { - [sym_pipeline] = STATE(4763), - [sym_cmd_identifier] = STATE(2947), - [sym__ctrl_expression] = STATE(3379), - [sym_ctrl_if] = STATE(3441), - [sym_ctrl_match] = STATE(3441), - [sym_ctrl_try] = STATE(3441), - [sym__stmt_let_shortcut] = STATE(3501), - [sym_pipe_element] = STATE(3200), - [sym_where_command] = STATE(3379), + [STATE(161)] = { + [sym_pipeline] = STATE(4680), + [sym_cmd_identifier] = STATE(2951), + [sym__ctrl_expression] = STATE(3512), + [sym_ctrl_if] = STATE(3519), + [sym_ctrl_match] = STATE(3519), + [sym_ctrl_try] = STATE(3519), + [sym__stmt_let_shortcut] = STATE(3521), + [sym_pipe_element] = STATE(3125), + [sym_where_command] = STATE(3512), [sym__expression] = STATE(2294), - [sym_expr_unary] = STATE(1286), - [sym__expr_unary_minus] = STATE(1290), - [sym_expr_binary] = STATE(1286), - [sym__expr_binary_expression] = STATE(2252), - [sym_expr_parenthesized] = STATE(924), - [sym_val_range] = STATE(1286), - [sym__value] = STATE(1286), - [sym_val_nothing] = STATE(1295), - [sym_val_bool] = STATE(1295), - [sym_val_variable] = STATE(933), - [sym_val_cellpath] = STATE(1295), - [sym_val_number] = STATE(1295), - [sym__val_number_decimal] = STATE(123), + [sym_expr_unary] = STATE(1292), + [sym__expr_unary_minus] = STATE(1296), + [sym_expr_binary] = STATE(1292), + [sym__expr_binary_expression] = STATE(2248), + [sym_expr_parenthesized] = STATE(964), + [sym_val_range] = STATE(1292), + [sym__value] = STATE(1292), + [sym_val_nothing] = STATE(1316), + [sym_val_bool] = STATE(1316), + [sym_val_variable] = STATE(912), + [sym_val_cellpath] = STATE(1316), + [sym_val_number] = STATE(1316), + [sym__val_number_decimal] = STATE(132), [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1295), - [sym_val_filesize] = STATE(1295), - [sym_val_binary] = STATE(1295), - [sym_val_string] = STATE(1295), + [sym_val_duration] = STATE(1316), + [sym_val_filesize] = STATE(1316), + [sym_val_binary] = STATE(1316), + [sym_val_string] = STATE(1316), [sym__raw_str] = STATE(502), [sym__str_double_quotes] = STATE(502), [sym__str_single_quotes] = STATE(502), [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1295), - [sym__inter_single_quotes] = STATE(1306), - [sym__inter_double_quotes] = STATE(1317), - [sym_val_list] = STATE(1295), - [sym_val_record] = STATE(1295), - [sym_val_table] = STATE(1295), - [sym_val_closure] = STATE(1295), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3379), - [sym_comment] = STATE(172), - [aux_sym_pipeline_repeat1] = STATE(189), - [aux_sym_pipe_element_repeat2] = STATE(291), + [sym_val_interpolated] = STATE(1316), + [sym__inter_single_quotes] = STATE(1277), + [sym__inter_double_quotes] = STATE(1311), + [sym_val_list] = STATE(1316), + [sym_val_record] = STATE(1316), + [sym_val_table] = STATE(1316), + [sym_val_closure] = STATE(1316), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3512), + [sym_comment] = STATE(161), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym_pipe_element_repeat2] = STATE(284), [anon_sym_export] = ACTIONS(45), [anon_sym_alias] = ACTIONS(39), - [anon_sym_let] = ACTIONS(1006), + [anon_sym_let] = ACTIONS(1008), [anon_sym_mut] = ACTIONS(39), [anon_sym_const] = ACTIONS(39), [aux_sym_cmd_identifier_token1] = ACTIONS(19), @@ -59175,6 +58797,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(39), [anon_sym_try] = ACTIONS(41), [anon_sym_catch] = ACTIONS(39), + [anon_sym_finally] = ACTIONS(39), [anon_sym_match] = ACTIONS(43), [anon_sym_in] = ACTIONS(45), [anon_sym_true] = ACTIONS(47), @@ -59185,7 +58808,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(1008), + [anon_sym_DOLLAR] = ACTIONS(1010), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_DOT_DOT] = ACTIONS(69), @@ -59213,357 +58836,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(173)] = { - [sym_comment] = STATE(173), - [anon_sym_in] = ACTIONS(1020), - [anon_sym_STAR_STAR] = ACTIONS(1032), - [anon_sym_PLUS_PLUS] = ACTIONS(1032), - [anon_sym_STAR] = ACTIONS(1034), - [anon_sym_SLASH] = ACTIONS(1034), - [anon_sym_mod] = ACTIONS(1032), - [anon_sym_SLASH_SLASH] = ACTIONS(1032), - [anon_sym_PLUS] = ACTIONS(1034), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_bit_DASHshl] = ACTIONS(1032), - [anon_sym_bit_DASHshr] = ACTIONS(1032), - [anon_sym_EQ_TILDE] = ACTIONS(1032), - [anon_sym_BANG_TILDE] = ACTIONS(1032), - [anon_sym_like] = ACTIONS(1032), - [anon_sym_not_DASHlike] = ACTIONS(1032), - [anon_sym_bit_DASHand] = ACTIONS(1032), - [anon_sym_bit_DASHxor] = ACTIONS(1032), - [anon_sym_bit_DASHor] = ACTIONS(1032), - [anon_sym_and] = ACTIONS(1032), - [anon_sym_xor] = ACTIONS(1032), - [anon_sym_or] = ACTIONS(1032), - [anon_sym_in2] = ACTIONS(1032), - [anon_sym_not_DASHin] = ACTIONS(1032), - [anon_sym_has] = ACTIONS(1032), - [anon_sym_not_DASHhas] = ACTIONS(1032), - [anon_sym_starts_DASHwith] = ACTIONS(1032), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1032), - [anon_sym_ends_DASHwith] = ACTIONS(1032), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1032), - [anon_sym_EQ_EQ] = ACTIONS(1032), - [anon_sym_BANG_EQ] = ACTIONS(1032), - [anon_sym_LT] = ACTIONS(1034), - [anon_sym_LT_EQ] = ACTIONS(1032), - [anon_sym_GT] = ACTIONS(1034), - [anon_sym_GT_EQ] = ACTIONS(1032), - [aux_sym_cmd_identifier_token6] = ACTIONS(1036), - [sym__newline] = ACTIONS(1020), - [anon_sym_SEMI] = ACTIONS(1020), - [anon_sym_PIPE] = ACTIONS(1020), - [anon_sym_err_GT_PIPE] = ACTIONS(1020), - [anon_sym_out_GT_PIPE] = ACTIONS(1020), - [anon_sym_e_GT_PIPE] = ACTIONS(1020), - [anon_sym_o_GT_PIPE] = ACTIONS(1020), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1020), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1020), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1020), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1020), - [anon_sym_GT2] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(1020), - [anon_sym_RBRACE] = ACTIONS(1020), - [anon_sym_STAR2] = ACTIONS(1020), - [anon_sym_and2] = ACTIONS(1020), - [anon_sym_xor2] = ACTIONS(1020), - [anon_sym_or2] = ACTIONS(1020), - [anon_sym_not_DASHin2] = ACTIONS(1020), - [anon_sym_has2] = ACTIONS(1020), - [anon_sym_not_DASHhas2] = ACTIONS(1020), - [anon_sym_starts_DASHwith2] = ACTIONS(1020), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1020), - [anon_sym_ends_DASHwith2] = ACTIONS(1020), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1020), - [anon_sym_EQ_EQ2] = ACTIONS(1020), - [anon_sym_BANG_EQ2] = ACTIONS(1020), - [anon_sym_LT2] = ACTIONS(1020), - [anon_sym_LT_EQ2] = ACTIONS(1020), - [anon_sym_GT_EQ2] = ACTIONS(1020), - [anon_sym_EQ_TILDE2] = ACTIONS(1020), - [anon_sym_BANG_TILDE2] = ACTIONS(1020), - [anon_sym_like2] = ACTIONS(1020), - [anon_sym_not_DASHlike2] = ACTIONS(1020), - [anon_sym_STAR_STAR2] = ACTIONS(1020), - [anon_sym_PLUS_PLUS2] = ACTIONS(1020), - [anon_sym_SLASH2] = ACTIONS(1020), - [anon_sym_mod2] = ACTIONS(1020), - [anon_sym_SLASH_SLASH2] = ACTIONS(1020), - [anon_sym_PLUS2] = ACTIONS(1020), - [anon_sym_bit_DASHshl2] = ACTIONS(1020), - [anon_sym_bit_DASHshr2] = ACTIONS(1020), - [anon_sym_bit_DASHand2] = ACTIONS(1020), - [anon_sym_bit_DASHxor2] = ACTIONS(1020), - [anon_sym_bit_DASHor2] = ACTIONS(1020), - [anon_sym_err_GT] = ACTIONS(1020), - [anon_sym_out_GT] = ACTIONS(1020), - [anon_sym_e_GT] = ACTIONS(1020), - [anon_sym_o_GT] = ACTIONS(1020), - [anon_sym_err_PLUSout_GT] = ACTIONS(1020), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1020), - [anon_sym_o_PLUSe_GT] = ACTIONS(1020), - [anon_sym_e_PLUSo_GT] = ACTIONS(1020), - [anon_sym_err_GT_GT] = ACTIONS(1020), - [anon_sym_out_GT_GT] = ACTIONS(1020), - [anon_sym_e_GT_GT] = ACTIONS(1020), - [anon_sym_o_GT_GT] = ACTIONS(1020), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1020), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1020), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1020), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1020), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(174)] = { - [sym_comment] = STATE(174), - [anon_sym_in] = ACTIONS(994), - [anon_sym_STAR_STAR] = ACTIONS(1032), - [anon_sym_PLUS_PLUS] = ACTIONS(1032), - [anon_sym_STAR] = ACTIONS(1034), - [anon_sym_SLASH] = ACTIONS(1034), - [anon_sym_mod] = ACTIONS(1032), - [anon_sym_SLASH_SLASH] = ACTIONS(1032), - [anon_sym_PLUS] = ACTIONS(1034), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_bit_DASHshl] = ACTIONS(1032), - [anon_sym_bit_DASHshr] = ACTIONS(1032), - [anon_sym_EQ_TILDE] = ACTIONS(1032), - [anon_sym_BANG_TILDE] = ACTIONS(1032), - [anon_sym_like] = ACTIONS(1032), - [anon_sym_not_DASHlike] = ACTIONS(1032), - [anon_sym_bit_DASHand] = ACTIONS(1032), - [anon_sym_bit_DASHxor] = ACTIONS(1032), - [anon_sym_bit_DASHor] = ACTIONS(1032), - [anon_sym_and] = ACTIONS(1032), - [anon_sym_xor] = ACTIONS(1032), - [anon_sym_or] = ACTIONS(1032), - [anon_sym_in2] = ACTIONS(1032), - [anon_sym_not_DASHin] = ACTIONS(1032), - [anon_sym_has] = ACTIONS(1032), - [anon_sym_not_DASHhas] = ACTIONS(1032), - [anon_sym_starts_DASHwith] = ACTIONS(1032), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1032), - [anon_sym_ends_DASHwith] = ACTIONS(1032), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1032), - [anon_sym_EQ_EQ] = ACTIONS(1032), - [anon_sym_BANG_EQ] = ACTIONS(1032), - [anon_sym_LT] = ACTIONS(1034), - [anon_sym_LT_EQ] = ACTIONS(1032), - [anon_sym_GT] = ACTIONS(1034), - [anon_sym_GT_EQ] = ACTIONS(1032), - [aux_sym_cmd_identifier_token6] = ACTIONS(1036), - [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(175)] = { - [sym_pipeline_parenthesized] = STATE(4669), - [sym_cmd_identifier] = STATE(3009), - [sym__ctrl_expression_parenthesized] = STATE(3436), - [sym_ctrl_if_parenthesized] = STATE(3367), - [sym_ctrl_match] = STATE(3367), - [sym_ctrl_try_parenthesized] = STATE(3367), - [sym__stmt_let_shortcut] = STATE(3368), - [sym_pipe_element_parenthesized] = STATE(3116), - [sym_where_command_parenthesized] = STATE(3436), - [sym__expression_parenthesized] = STATE(2290), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2157), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(135), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4730), - [sym__command_parenthesized] = STATE(3373), - [sym_comment] = STATE(175), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(274), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(1002), - [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(1010), - [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(1004), - [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(1012), - [aux_sym__val_number_decimal_token2] = ACTIONS(1014), - [aux_sym__val_number_decimal_token3] = ACTIONS(1016), - [aux_sym__val_number_decimal_token4] = ACTIONS(1016), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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(176)] = { - [sym_pipeline] = STATE(4768), - [sym_cmd_identifier] = STATE(2947), - [sym__ctrl_expression] = STATE(3379), - [sym_ctrl_if] = STATE(3441), - [sym_ctrl_match] = STATE(3441), - [sym_ctrl_try] = STATE(3441), - [sym__stmt_let_shortcut] = STATE(3501), - [sym_pipe_element] = STATE(3200), - [sym_where_command] = STATE(3379), + [STATE(162)] = { + [sym_pipeline] = STATE(4681), + [sym_cmd_identifier] = STATE(2951), + [sym__ctrl_expression] = STATE(3512), + [sym_ctrl_if] = STATE(3519), + [sym_ctrl_match] = STATE(3519), + [sym_ctrl_try] = STATE(3519), + [sym__stmt_let_shortcut] = STATE(3521), + [sym_pipe_element] = STATE(3125), + [sym_where_command] = STATE(3512), [sym__expression] = STATE(2294), - [sym_expr_unary] = STATE(1286), - [sym__expr_unary_minus] = STATE(1290), - [sym_expr_binary] = STATE(1286), - [sym__expr_binary_expression] = STATE(2252), - [sym_expr_parenthesized] = STATE(924), - [sym_val_range] = STATE(1286), - [sym__value] = STATE(1286), - [sym_val_nothing] = STATE(1295), - [sym_val_bool] = STATE(1295), - [sym_val_variable] = STATE(933), - [sym_val_cellpath] = STATE(1295), - [sym_val_number] = STATE(1295), - [sym__val_number_decimal] = STATE(123), + [sym_expr_unary] = STATE(1292), + [sym__expr_unary_minus] = STATE(1296), + [sym_expr_binary] = STATE(1292), + [sym__expr_binary_expression] = STATE(2248), + [sym_expr_parenthesized] = STATE(964), + [sym_val_range] = STATE(1292), + [sym__value] = STATE(1292), + [sym_val_nothing] = STATE(1316), + [sym_val_bool] = STATE(1316), + [sym_val_variable] = STATE(912), + [sym_val_cellpath] = STATE(1316), + [sym_val_number] = STATE(1316), + [sym__val_number_decimal] = STATE(132), [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1295), - [sym_val_filesize] = STATE(1295), - [sym_val_binary] = STATE(1295), - [sym_val_string] = STATE(1295), + [sym_val_duration] = STATE(1316), + [sym_val_filesize] = STATE(1316), + [sym_val_binary] = STATE(1316), + [sym_val_string] = STATE(1316), [sym__raw_str] = STATE(502), [sym__str_double_quotes] = STATE(502), [sym__str_single_quotes] = STATE(502), [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1295), - [sym__inter_single_quotes] = STATE(1306), - [sym__inter_double_quotes] = STATE(1317), - [sym_val_list] = STATE(1295), - [sym_val_record] = STATE(1295), - [sym_val_table] = STATE(1295), - [sym_val_closure] = STATE(1295), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3379), - [sym_comment] = STATE(176), - [aux_sym_pipeline_repeat1] = STATE(189), - [aux_sym_pipe_element_repeat2] = STATE(291), + [sym_val_interpolated] = STATE(1316), + [sym__inter_single_quotes] = STATE(1277), + [sym__inter_double_quotes] = STATE(1311), + [sym_val_list] = STATE(1316), + [sym_val_record] = STATE(1316), + [sym_val_table] = STATE(1316), + [sym_val_closure] = STATE(1316), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3512), + [sym_comment] = STATE(162), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym_pipe_element_repeat2] = STATE(284), [anon_sym_export] = ACTIONS(45), [anon_sym_alias] = ACTIONS(39), - [anon_sym_let] = ACTIONS(1006), + [anon_sym_let] = ACTIONS(1008), [anon_sym_mut] = ACTIONS(39), [anon_sym_const] = ACTIONS(39), [aux_sym_cmd_identifier_token1] = ACTIONS(19), @@ -59579,6 +58899,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(39), [anon_sym_try] = ACTIONS(41), [anon_sym_catch] = ACTIONS(39), + [anon_sym_finally] = ACTIONS(39), [anon_sym_match] = ACTIONS(43), [anon_sym_in] = ACTIONS(45), [anon_sym_true] = ACTIONS(47), @@ -59589,7 +58910,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(1008), + [anon_sym_DOLLAR] = ACTIONS(1010), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_DOT_DOT] = ACTIONS(69), @@ -59617,54 +58938,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(177)] = { - [sym_pipeline_parenthesized] = STATE(4733), - [sym_cmd_identifier] = STATE(3009), - [sym__ctrl_expression_parenthesized] = STATE(3436), - [sym_ctrl_if_parenthesized] = STATE(3367), - [sym_ctrl_match] = STATE(3367), - [sym_ctrl_try_parenthesized] = STATE(3367), - [sym__stmt_let_shortcut] = STATE(3368), - [sym_pipe_element_parenthesized] = STATE(3116), - [sym_where_command_parenthesized] = STATE(3436), - [sym__expression_parenthesized] = STATE(2290), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2157), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(124), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4730), - [sym__command_parenthesized] = STATE(3373), - [sym_comment] = STATE(177), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), + [STATE(163)] = { + [sym_pipeline] = STATE(4639), + [sym_cmd_identifier] = STATE(2730), + [sym__ctrl_expression] = STATE(3368), + [sym_ctrl_if] = STATE(3392), + [sym_ctrl_match] = STATE(3392), + [sym_ctrl_try] = STATE(3392), + [sym__stmt_let_shortcut] = STATE(3393), + [sym_pipe_element] = STATE(2909), + [sym_where_command] = STATE(3368), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(724), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3368), + [sym_comment] = STATE(163), + [aux_sym_pipeline_repeat1] = STATE(176), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(994), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -59676,10 +58997,11 @@ 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(269), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), + [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -59690,18 +59012,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [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(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), @@ -59714,58 +59036,58 @@ 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(178)] = { - [sym_pipeline_parenthesized] = STATE(4732), - [sym_cmd_identifier] = STATE(3009), - [sym__ctrl_expression_parenthesized] = STATE(3436), - [sym_ctrl_if_parenthesized] = STATE(3367), - [sym_ctrl_match] = STATE(3367), - [sym_ctrl_try_parenthesized] = STATE(3367), - [sym__stmt_let_shortcut] = STATE(3368), - [sym_pipe_element_parenthesized] = STATE(3116), - [sym_where_command_parenthesized] = STATE(3436), - [sym__expression_parenthesized] = STATE(2290), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2157), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(135), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4730), - [sym__command_parenthesized] = STATE(3373), - [sym_comment] = STATE(178), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(274), + [STATE(164)] = { + [sym_pipeline_parenthesized] = STATE(4726), + [sym_cmd_identifier] = STATE(2907), + [sym__ctrl_expression_parenthesized] = STATE(3454), + [sym_ctrl_if_parenthesized] = STATE(3458), + [sym_ctrl_match] = STATE(3458), + [sym_ctrl_try_parenthesized] = STATE(3458), + [sym__stmt_let_shortcut] = STATE(3471), + [sym_pipe_element_parenthesized] = STATE(3176), + [sym_where_command_parenthesized] = STATE(3454), + [sym__expression_parenthesized] = STATE(2289), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2156), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(4794), + [sym__command_parenthesized] = STATE(3494), + [sym_comment] = STATE(164), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(994), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -59777,10 +59099,11 @@ 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(1010), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -59791,7 +59114,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -59799,10 +59122,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(1012), - [aux_sym__val_number_decimal_token2] = ACTIONS(1014), - [aux_sym__val_number_decimal_token3] = ACTIONS(1016), - [aux_sym__val_number_decimal_token4] = ACTIONS(1016), + [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), @@ -59819,54 +59142,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(179)] = { - [sym_pipeline_parenthesized] = STATE(4669), - [sym_cmd_identifier] = STATE(3009), - [sym__ctrl_expression_parenthesized] = STATE(3436), - [sym_ctrl_if_parenthesized] = STATE(3367), - [sym_ctrl_match] = STATE(3367), - [sym_ctrl_try_parenthesized] = STATE(3367), - [sym__stmt_let_shortcut] = STATE(3368), - [sym_pipe_element_parenthesized] = STATE(3116), - [sym_where_command_parenthesized] = STATE(3436), - [sym__expression_parenthesized] = STATE(2290), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2157), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(124), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4730), - [sym__command_parenthesized] = STATE(3373), - [sym_comment] = STATE(179), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), + [STATE(165)] = { + [sym_pipeline] = STATE(4639), + [sym_cmd_identifier] = STATE(2730), + [sym__ctrl_expression] = STATE(3368), + [sym_ctrl_if] = STATE(3392), + [sym_ctrl_match] = STATE(3392), + [sym_ctrl_try] = STATE(3392), + [sym__stmt_let_shortcut] = STATE(3393), + [sym_pipe_element] = STATE(2909), + [sym_where_command] = STATE(3368), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(724), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(136), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3368), + [sym_comment] = STATE(165), + [aux_sym_pipeline_repeat1] = STATE(177), + [aux_sym_pipe_element_repeat2] = STATE(270), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(994), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -59878,10 +59201,11 @@ 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(996), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), + [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -59892,18 +59216,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [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(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(1000), + [aux_sym__val_number_decimal_token2] = ACTIONS(1002), + [aux_sym__val_number_decimal_token3] = ACTIONS(1004), + [aux_sym__val_number_decimal_token4] = ACTIONS(1004), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -59916,58 +59240,58 @@ 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(180)] = { - [sym_pipeline_parenthesized] = STATE(4733), - [sym_cmd_identifier] = STATE(3009), - [sym__ctrl_expression_parenthesized] = STATE(3436), - [sym_ctrl_if_parenthesized] = STATE(3367), - [sym_ctrl_match] = STATE(3367), - [sym_ctrl_try_parenthesized] = STATE(3367), - [sym__stmt_let_shortcut] = STATE(3368), - [sym_pipe_element_parenthesized] = STATE(3116), - [sym_where_command_parenthesized] = STATE(3436), - [sym__expression_parenthesized] = STATE(2290), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2157), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(135), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4730), - [sym__command_parenthesized] = STATE(3373), - [sym_comment] = STATE(180), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(274), + [STATE(166)] = { + [sym_pipeline_parenthesized] = STATE(4698), + [sym_cmd_identifier] = STATE(2907), + [sym__ctrl_expression_parenthesized] = STATE(3454), + [sym_ctrl_if_parenthesized] = STATE(3458), + [sym_ctrl_match] = STATE(3458), + [sym_ctrl_try_parenthesized] = STATE(3458), + [sym__stmt_let_shortcut] = STATE(3471), + [sym_pipe_element_parenthesized] = STATE(3176), + [sym_where_command_parenthesized] = STATE(3454), + [sym__expression_parenthesized] = STATE(2289), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2156), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(4794), + [sym__command_parenthesized] = STATE(3494), + [sym_comment] = STATE(166), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(994), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -59979,10 +59303,11 @@ 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(1010), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -59993,7 +59318,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -60001,10 +59326,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(1012), - [aux_sym__val_number_decimal_token2] = ACTIONS(1014), - [aux_sym__val_number_decimal_token3] = ACTIONS(1016), - [aux_sym__val_number_decimal_token4] = ACTIONS(1016), + [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), @@ -60021,54 +59346,54 @@ 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(4750), - [sym_cmd_identifier] = STATE(3009), - [sym__ctrl_expression_parenthesized] = STATE(3436), - [sym_ctrl_if_parenthesized] = STATE(3367), - [sym_ctrl_match] = STATE(3367), - [sym_ctrl_try_parenthesized] = STATE(3367), - [sym__stmt_let_shortcut] = STATE(3368), - [sym_pipe_element_parenthesized] = STATE(3116), - [sym_where_command_parenthesized] = STATE(3436), - [sym__expression_parenthesized] = STATE(2290), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2157), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(124), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4730), - [sym__command_parenthesized] = STATE(3373), - [sym_comment] = STATE(181), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), + [STATE(167)] = { + [sym_pipeline] = STATE(4577), + [sym_cmd_identifier] = STATE(2730), + [sym__ctrl_expression] = STATE(3368), + [sym_ctrl_if] = STATE(3392), + [sym_ctrl_match] = STATE(3392), + [sym_ctrl_try] = STATE(3392), + [sym__stmt_let_shortcut] = STATE(3393), + [sym_pipe_element] = STATE(2909), + [sym_where_command] = STATE(3368), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(724), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(136), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3368), + [sym_comment] = STATE(167), + [aux_sym_pipeline_repeat1] = STATE(177), + [aux_sym_pipe_element_repeat2] = STATE(270), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(994), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -60080,10 +59405,11 @@ 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(996), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), + [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -60094,18 +59420,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [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(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(1000), + [aux_sym__val_number_decimal_token2] = ACTIONS(1002), + [aux_sym__val_number_decimal_token3] = ACTIONS(1004), + [aux_sym__val_number_decimal_token4] = ACTIONS(1004), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -60118,57 +59444,58 @@ 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(182)] = { - [sym_cmd_identifier] = STATE(2812), - [sym__ctrl_expression] = STATE(3348), - [sym_ctrl_if] = STATE(3352), - [sym_ctrl_match] = STATE(3352), - [sym_ctrl_try] = STATE(3352), - [sym__stmt_let_shortcut] = STATE(3358), - [sym_pipe_element] = STATE(2919), - [sym_where_command] = STATE(3348), + [STATE(168)] = { + [sym_pipeline] = STATE(4433), + [sym_cmd_identifier] = STATE(2730), + [sym__ctrl_expression] = STATE(3368), + [sym_ctrl_if] = STATE(3392), + [sym_ctrl_match] = STATE(3392), + [sym_ctrl_try] = STATE(3392), + [sym__stmt_let_shortcut] = STATE(3393), + [sym_pipe_element] = STATE(2909), + [sym_where_command] = STATE(3368), [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(704), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(124), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3348), - [sym_comment] = STATE(182), - [aux_sym_pipeline_repeat1] = STATE(186), - [aux_sym_pipe_element_repeat2] = STATE(278), + [sym_expr_parenthesized] = STATE(724), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(136), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3368), + [sym_comment] = STATE(168), + [aux_sym_pipeline_repeat1] = STATE(177), + [aux_sym_pipe_element_repeat2] = STATE(270), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(994), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -60180,10 +59507,11 @@ 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(459), + [anon_sym_if] = ACTIONS(996), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -60194,7 +59522,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -60202,10 +59530,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(1000), + [aux_sym__val_number_decimal_token2] = ACTIONS(1002), + [aux_sym__val_number_decimal_token3] = ACTIONS(1004), + [aux_sym__val_number_decimal_token4] = ACTIONS(1004), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -60222,153 +59550,54 @@ 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_cmd_identifier] = STATE(3009), - [sym__ctrl_expression_parenthesized] = STATE(3436), - [sym_ctrl_if_parenthesized] = STATE(3367), - [sym_ctrl_match] = STATE(3367), - [sym_ctrl_try_parenthesized] = STATE(3367), - [sym__stmt_let_shortcut] = STATE(3368), - [sym_pipe_element_parenthesized] = STATE(3505), - [sym_where_command_parenthesized] = STATE(3436), - [sym__expression_parenthesized] = STATE(2290), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2157), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(141), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4730), - [sym__command_parenthesized] = STATE(3373), - [sym_comment] = STATE(183), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(183), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), - [anon_sym_export] = ACTIONS(1038), - [anon_sym_alias] = ACTIONS(1041), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_mut] = ACTIONS(1041), - [anon_sym_const] = ACTIONS(1041), - [aux_sym_cmd_identifier_token1] = ACTIONS(1047), - [anon_sym_def] = ACTIONS(1041), - [anon_sym_use] = ACTIONS(1041), - [anon_sym_export_DASHenv] = ACTIONS(1041), - [anon_sym_extern] = ACTIONS(1041), - [anon_sym_module] = ACTIONS(1041), - [anon_sym_for] = ACTIONS(1041), - [anon_sym_loop] = ACTIONS(1041), - [anon_sym_while] = ACTIONS(1041), - [anon_sym_if] = ACTIONS(1050), - [anon_sym_else] = ACTIONS(1041), - [anon_sym_try] = ACTIONS(1053), - [anon_sym_catch] = ACTIONS(1041), - [anon_sym_match] = ACTIONS(1056), - [anon_sym_in] = ACTIONS(1038), - [anon_sym_true] = ACTIONS(1059), - [anon_sym_false] = ACTIONS(1059), - [anon_sym_null] = ACTIONS(1062), - [aux_sym_cmd_identifier_token3] = ACTIONS(1065), - [aux_sym_cmd_identifier_token4] = ACTIONS(1065), - [aux_sym_cmd_identifier_token5] = ACTIONS(1065), - [anon_sym_LBRACK] = ACTIONS(1068), - [anon_sym_LPAREN] = ACTIONS(1071), - [anon_sym_DOLLAR] = ACTIONS(1074), - [anon_sym_DASH2] = ACTIONS(1077), - [anon_sym_LBRACE] = ACTIONS(1080), - [anon_sym_DOT_DOT] = ACTIONS(1083), - [anon_sym_where] = ACTIONS(1086), - [aux_sym_expr_unary_token1] = ACTIONS(1089), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1092), - [anon_sym_DOT_DOT_LT] = ACTIONS(1092), - [aux_sym__val_number_decimal_token1] = ACTIONS(1095), - [aux_sym__val_number_decimal_token2] = ACTIONS(1098), - [aux_sym__val_number_decimal_token3] = ACTIONS(1101), - [aux_sym__val_number_decimal_token4] = ACTIONS(1101), - [aux_sym__val_number_token1] = ACTIONS(1104), - [aux_sym__val_number_token2] = ACTIONS(1104), - [aux_sym__val_number_token3] = ACTIONS(1104), - [anon_sym_0b] = ACTIONS(1107), - [anon_sym_0o] = ACTIONS(1110), - [anon_sym_0x] = ACTIONS(1110), - [sym_val_date] = ACTIONS(1113), - [anon_sym_DQUOTE] = ACTIONS(1116), - [anon_sym_SQUOTE] = ACTIONS(1119), - [anon_sym_BQUOTE] = ACTIONS(1122), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1125), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1128), - [anon_sym_CARET] = ACTIONS(1131), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1134), - }, - [STATE(184)] = { - [sym_cmd_identifier] = STATE(2812), - [sym__ctrl_expression] = STATE(3348), - [sym_ctrl_if] = STATE(3352), - [sym_ctrl_match] = STATE(3352), - [sym_ctrl_try] = STATE(3352), - [sym__stmt_let_shortcut] = STATE(3358), - [sym_pipe_element] = STATE(2919), - [sym_where_command] = STATE(3348), + [STATE(169)] = { + [sym_pipeline] = STATE(4450), + [sym_cmd_identifier] = STATE(2730), + [sym__ctrl_expression] = STATE(3368), + [sym_ctrl_if] = STATE(3392), + [sym_ctrl_match] = STATE(3392), + [sym_ctrl_try] = STATE(3392), + [sym__stmt_let_shortcut] = STATE(3393), + [sym_pipe_element] = STATE(2909), + [sym_where_command] = STATE(3368), [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(704), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(133), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3348), - [sym_comment] = STATE(184), - [aux_sym_pipeline_repeat1] = STATE(186), - [aux_sym_pipe_element_repeat2] = STATE(292), + [sym_expr_parenthesized] = STATE(724), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(136), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3368), + [sym_comment] = STATE(169), + [aux_sym_pipeline_repeat1] = STATE(177), + [aux_sym_pipe_element_repeat2] = STATE(270), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(994), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -60380,10 +59609,11 @@ 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(996), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -60394,7 +59624,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -60402,10 +59632,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(1000), + [aux_sym__val_number_decimal_token2] = ACTIONS(1002), + [aux_sym__val_number_decimal_token3] = ACTIONS(1004), + [aux_sym__val_number_decimal_token4] = ACTIONS(1004), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -60422,53 +59652,258 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(185)] = { - [sym_cmd_identifier] = STATE(2812), - [sym__ctrl_expression] = STATE(3348), - [sym_ctrl_if] = STATE(3352), - [sym_ctrl_match] = STATE(3352), - [sym_ctrl_try] = STATE(3352), - [sym__stmt_let_shortcut] = STATE(3358), - [sym_pipe_element] = STATE(2919), - [sym_where_command] = STATE(3348), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(704), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(135), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3348), - [sym_comment] = STATE(185), - [aux_sym_pipeline_repeat1] = STATE(186), - [aux_sym_pipe_element_repeat2] = STATE(285), + [STATE(170)] = { + [sym_pipeline] = STATE(4775), + [sym_cmd_identifier] = STATE(2951), + [sym__ctrl_expression] = STATE(3512), + [sym_ctrl_if] = STATE(3519), + [sym_ctrl_match] = STATE(3519), + [sym_ctrl_try] = STATE(3519), + [sym__stmt_let_shortcut] = STATE(3521), + [sym_pipe_element] = STATE(3125), + [sym_where_command] = STATE(3512), + [sym__expression] = STATE(2294), + [sym_expr_unary] = STATE(1292), + [sym__expr_unary_minus] = STATE(1296), + [sym_expr_binary] = STATE(1292), + [sym__expr_binary_expression] = STATE(2248), + [sym_expr_parenthesized] = STATE(964), + [sym_val_range] = STATE(1292), + [sym__value] = STATE(1292), + [sym_val_nothing] = STATE(1316), + [sym_val_bool] = STATE(1316), + [sym_val_variable] = STATE(912), + [sym_val_cellpath] = STATE(1316), + [sym_val_number] = STATE(1316), + [sym__val_number_decimal] = STATE(132), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1316), + [sym_val_filesize] = STATE(1316), + [sym_val_binary] = STATE(1316), + [sym_val_string] = STATE(1316), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1316), + [sym__inter_single_quotes] = STATE(1277), + [sym__inter_double_quotes] = STATE(1311), + [sym_val_list] = STATE(1316), + [sym_val_record] = STATE(1316), + [sym_val_table] = STATE(1316), + [sym_val_closure] = STATE(1316), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3512), + [sym_comment] = STATE(170), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym_pipe_element_repeat2] = STATE(284), + [anon_sym_export] = ACTIONS(45), + [anon_sym_alias] = ACTIONS(39), + [anon_sym_let] = ACTIONS(1008), + [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_finally] = 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(1010), + [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(171)] = { + [sym_pipeline] = STATE(4696), + [sym_cmd_identifier] = STATE(2951), + [sym__ctrl_expression] = STATE(3512), + [sym_ctrl_if] = STATE(3519), + [sym_ctrl_match] = STATE(3519), + [sym_ctrl_try] = STATE(3519), + [sym__stmt_let_shortcut] = STATE(3521), + [sym_pipe_element] = STATE(3125), + [sym_where_command] = STATE(3512), + [sym__expression] = STATE(2294), + [sym_expr_unary] = STATE(1292), + [sym__expr_unary_minus] = STATE(1296), + [sym_expr_binary] = STATE(1292), + [sym__expr_binary_expression] = STATE(2248), + [sym_expr_parenthesized] = STATE(964), + [sym_val_range] = STATE(1292), + [sym__value] = STATE(1292), + [sym_val_nothing] = STATE(1316), + [sym_val_bool] = STATE(1316), + [sym_val_variable] = STATE(912), + [sym_val_cellpath] = STATE(1316), + [sym_val_number] = STATE(1316), + [sym__val_number_decimal] = STATE(132), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1316), + [sym_val_filesize] = STATE(1316), + [sym_val_binary] = STATE(1316), + [sym_val_string] = STATE(1316), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1316), + [sym__inter_single_quotes] = STATE(1277), + [sym__inter_double_quotes] = STATE(1311), + [sym_val_list] = STATE(1316), + [sym_val_record] = STATE(1316), + [sym_val_table] = STATE(1316), + [sym_val_closure] = STATE(1316), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3512), + [sym_comment] = STATE(171), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym_pipe_element_repeat2] = STATE(284), + [anon_sym_export] = ACTIONS(45), + [anon_sym_alias] = ACTIONS(39), + [anon_sym_let] = ACTIONS(1008), + [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_finally] = 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(1010), + [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(172)] = { + [sym_pipeline_parenthesized] = STATE(4882), + [sym_cmd_identifier] = STATE(2907), + [sym__ctrl_expression_parenthesized] = STATE(3454), + [sym_ctrl_if_parenthesized] = STATE(3458), + [sym_ctrl_match] = STATE(3458), + [sym_ctrl_try_parenthesized] = STATE(3458), + [sym__stmt_let_shortcut] = STATE(3471), + [sym_pipe_element_parenthesized] = STATE(3176), + [sym_where_command_parenthesized] = STATE(3454), + [sym__expression_parenthesized] = STATE(2289), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2156), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(4794), + [sym__command_parenthesized] = STATE(3494), + [sym_comment] = STATE(172), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(994), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -60480,10 +59915,11 @@ 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(1018), + [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_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -60494,18 +59930,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [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(1012), - [aux_sym__val_number_decimal_token2] = ACTIONS(1014), - [aux_sym__val_number_decimal_token3] = ACTIONS(1016), - [aux_sym__val_number_decimal_token4] = ACTIONS(1016), + [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), @@ -60518,148 +59954,251 @@ 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(2812), - [sym__ctrl_expression] = STATE(3348), - [sym_ctrl_if] = STATE(3352), - [sym_ctrl_match] = STATE(3352), - [sym_ctrl_try] = STATE(3352), - [sym__stmt_let_shortcut] = STATE(3358), - [sym_pipe_element] = STATE(3428), - [sym_where_command] = STATE(3348), - [sym__expression] = STATE(2288), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(704), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(141), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3348), - [sym_comment] = STATE(186), - [aux_sym_pipeline_repeat1] = STATE(186), - [aux_sym_pipe_element_repeat2] = STATE(282), - [anon_sym_export] = ACTIONS(1137), - [anon_sym_alias] = ACTIONS(1140), - [anon_sym_let] = ACTIONS(1143), - [anon_sym_mut] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1140), - [aux_sym_cmd_identifier_token1] = ACTIONS(1146), - [anon_sym_def] = ACTIONS(1140), - [anon_sym_use] = ACTIONS(1140), - [anon_sym_export_DASHenv] = ACTIONS(1140), - [anon_sym_extern] = ACTIONS(1140), - [anon_sym_module] = ACTIONS(1140), - [anon_sym_for] = ACTIONS(1140), - [anon_sym_loop] = ACTIONS(1140), - [anon_sym_while] = ACTIONS(1140), - [anon_sym_if] = ACTIONS(1149), - [anon_sym_else] = ACTIONS(1140), - [anon_sym_try] = ACTIONS(1152), - [anon_sym_catch] = ACTIONS(1140), - [anon_sym_match] = ACTIONS(1155), - [anon_sym_in] = ACTIONS(1137), - [anon_sym_true] = ACTIONS(1158), - [anon_sym_false] = ACTIONS(1158), - [anon_sym_null] = ACTIONS(1161), - [aux_sym_cmd_identifier_token3] = ACTIONS(1164), - [aux_sym_cmd_identifier_token4] = ACTIONS(1164), - [aux_sym_cmd_identifier_token5] = ACTIONS(1164), - [anon_sym_LBRACK] = ACTIONS(1167), - [anon_sym_LPAREN] = ACTIONS(1170), - [anon_sym_DOLLAR] = ACTIONS(1173), - [anon_sym_DASH2] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_DOT_DOT] = ACTIONS(1182), - [anon_sym_where] = ACTIONS(1185), - [aux_sym_expr_unary_token1] = ACTIONS(1188), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1191), - [anon_sym_DOT_DOT_LT] = ACTIONS(1191), - [aux_sym__val_number_decimal_token1] = ACTIONS(1194), - [aux_sym__val_number_decimal_token2] = ACTIONS(1197), - [aux_sym__val_number_decimal_token3] = ACTIONS(1200), - [aux_sym__val_number_decimal_token4] = ACTIONS(1200), - [aux_sym__val_number_token1] = ACTIONS(1203), - [aux_sym__val_number_token2] = ACTIONS(1203), - [aux_sym__val_number_token3] = ACTIONS(1203), - [anon_sym_0b] = ACTIONS(1206), - [anon_sym_0o] = ACTIONS(1209), - [anon_sym_0x] = ACTIONS(1209), - [sym_val_date] = ACTIONS(1212), - [anon_sym_DQUOTE] = ACTIONS(1215), - [anon_sym_SQUOTE] = ACTIONS(1218), - [anon_sym_BQUOTE] = ACTIONS(1221), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1224), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1230), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1233), + [STATE(173)] = { + [sym_pipeline_parenthesized] = STATE(4894), + [sym_cmd_identifier] = STATE(2907), + [sym__ctrl_expression_parenthesized] = STATE(3454), + [sym_ctrl_if_parenthesized] = STATE(3458), + [sym_ctrl_match] = STATE(3458), + [sym_ctrl_try_parenthesized] = STATE(3458), + [sym__stmt_let_shortcut] = STATE(3471), + [sym_pipe_element_parenthesized] = STATE(3176), + [sym_where_command_parenthesized] = STATE(3454), + [sym__expression_parenthesized] = STATE(2289), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2156), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(4794), + [sym__command_parenthesized] = STATE(3494), + [sym_comment] = STATE(173), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(271), + [anon_sym_let] = ACTIONS(994), + [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_finally] = 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(998), + [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(187)] = { - [sym_comment] = STATE(187), + [STATE(174)] = { + [sym_comment] = STATE(174), + [anon_sym_in] = ACTIONS(1012), + [anon_sym_STAR_STAR] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1014), + [anon_sym_STAR] = ACTIONS(1016), + [anon_sym_SLASH] = ACTIONS(1016), + [anon_sym_mod] = ACTIONS(1014), + [anon_sym_SLASH_SLASH] = ACTIONS(1014), + [anon_sym_PLUS] = ACTIONS(1016), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_bit_DASHshl] = ACTIONS(1014), + [anon_sym_bit_DASHshr] = ACTIONS(1014), + [anon_sym_EQ_TILDE] = ACTIONS(1014), + [anon_sym_BANG_TILDE] = ACTIONS(1014), + [anon_sym_like] = ACTIONS(1014), + [anon_sym_not_DASHlike] = ACTIONS(1014), + [anon_sym_bit_DASHand] = ACTIONS(1014), + [anon_sym_bit_DASHxor] = ACTIONS(1014), + [anon_sym_bit_DASHor] = ACTIONS(1014), + [anon_sym_and] = ACTIONS(1014), + [anon_sym_xor] = ACTIONS(1014), + [anon_sym_or] = ACTIONS(1014), + [anon_sym_in2] = ACTIONS(1014), + [anon_sym_not_DASHin] = ACTIONS(1014), + [anon_sym_has] = ACTIONS(1014), + [anon_sym_not_DASHhas] = ACTIONS(1014), + [anon_sym_starts_DASHwith] = ACTIONS(1014), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1014), + [anon_sym_ends_DASHwith] = ACTIONS(1014), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1014), + [anon_sym_EQ_EQ] = ACTIONS(1014), + [anon_sym_BANG_EQ] = ACTIONS(1014), + [anon_sym_LT] = ACTIONS(1016), + [anon_sym_LT_EQ] = ACTIONS(1014), + [anon_sym_GT] = ACTIONS(1016), + [anon_sym_GT_EQ] = ACTIONS(1014), + [aux_sym_cmd_identifier_token6] = ACTIONS(1018), + [sym__newline] = ACTIONS(1012), + [anon_sym_SEMI] = ACTIONS(1012), + [anon_sym_PIPE] = ACTIONS(1012), + [anon_sym_err_GT_PIPE] = ACTIONS(1012), + [anon_sym_out_GT_PIPE] = ACTIONS(1012), + [anon_sym_e_GT_PIPE] = ACTIONS(1012), + [anon_sym_o_GT_PIPE] = ACTIONS(1012), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1012), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1012), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1012), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1012), + [anon_sym_RPAREN] = ACTIONS(1012), + [anon_sym_GT2] = ACTIONS(1012), + [anon_sym_DASH2] = ACTIONS(1012), + [anon_sym_STAR2] = ACTIONS(1012), + [anon_sym_and2] = ACTIONS(1012), + [anon_sym_xor2] = ACTIONS(1012), + [anon_sym_or2] = ACTIONS(1012), + [anon_sym_not_DASHin2] = ACTIONS(1012), + [anon_sym_has2] = ACTIONS(1012), + [anon_sym_not_DASHhas2] = ACTIONS(1012), + [anon_sym_starts_DASHwith2] = ACTIONS(1012), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1012), + [anon_sym_ends_DASHwith2] = ACTIONS(1012), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1012), + [anon_sym_EQ_EQ2] = ACTIONS(1012), + [anon_sym_BANG_EQ2] = ACTIONS(1012), + [anon_sym_LT2] = ACTIONS(1012), + [anon_sym_LT_EQ2] = ACTIONS(1012), + [anon_sym_GT_EQ2] = ACTIONS(1012), + [anon_sym_EQ_TILDE2] = ACTIONS(1012), + [anon_sym_BANG_TILDE2] = ACTIONS(1012), + [anon_sym_like2] = ACTIONS(1012), + [anon_sym_not_DASHlike2] = ACTIONS(1012), + [anon_sym_STAR_STAR2] = ACTIONS(1012), + [anon_sym_PLUS_PLUS2] = ACTIONS(1012), + [anon_sym_SLASH2] = ACTIONS(1012), + [anon_sym_mod2] = ACTIONS(1012), + [anon_sym_SLASH_SLASH2] = ACTIONS(1012), + [anon_sym_PLUS2] = ACTIONS(1012), + [anon_sym_bit_DASHshl2] = ACTIONS(1012), + [anon_sym_bit_DASHshr2] = ACTIONS(1012), + [anon_sym_bit_DASHand2] = ACTIONS(1012), + [anon_sym_bit_DASHxor2] = ACTIONS(1012), + [anon_sym_bit_DASHor2] = ACTIONS(1012), + [anon_sym_err_GT] = ACTIONS(1012), + [anon_sym_out_GT] = ACTIONS(1012), + [anon_sym_e_GT] = ACTIONS(1012), + [anon_sym_o_GT] = ACTIONS(1012), + [anon_sym_err_PLUSout_GT] = ACTIONS(1012), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1012), + [anon_sym_o_PLUSe_GT] = ACTIONS(1012), + [anon_sym_e_PLUSo_GT] = ACTIONS(1012), + [anon_sym_err_GT_GT] = ACTIONS(1012), + [anon_sym_out_GT_GT] = ACTIONS(1012), + [anon_sym_e_GT_GT] = ACTIONS(1012), + [anon_sym_o_GT_GT] = ACTIONS(1012), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1012), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1012), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1012), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1012), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(175)] = { + [sym_comment] = STATE(175), [anon_sym_in] = ACTIONS(1020), - [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), + [anon_sym_STAR_STAR] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1014), + [anon_sym_STAR] = ACTIONS(1016), + [anon_sym_SLASH] = ACTIONS(1016), + [anon_sym_mod] = ACTIONS(1014), + [anon_sym_SLASH_SLASH] = ACTIONS(1014), + [anon_sym_PLUS] = ACTIONS(1016), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_bit_DASHshl] = ACTIONS(1014), + [anon_sym_bit_DASHshr] = ACTIONS(1014), + [anon_sym_EQ_TILDE] = ACTIONS(1014), + [anon_sym_BANG_TILDE] = ACTIONS(1014), + [anon_sym_like] = ACTIONS(1014), + [anon_sym_not_DASHlike] = ACTIONS(1014), + [anon_sym_bit_DASHand] = ACTIONS(1014), + [anon_sym_bit_DASHxor] = ACTIONS(1014), + [anon_sym_bit_DASHor] = ACTIONS(1014), + [anon_sym_and] = ACTIONS(1014), + [anon_sym_xor] = ACTIONS(1014), + [anon_sym_or] = ACTIONS(1014), + [anon_sym_in2] = ACTIONS(1014), + [anon_sym_not_DASHin] = ACTIONS(1014), + [anon_sym_has] = ACTIONS(1014), + [anon_sym_not_DASHhas] = ACTIONS(1014), + [anon_sym_starts_DASHwith] = ACTIONS(1014), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1014), + [anon_sym_ends_DASHwith] = ACTIONS(1014), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1014), + [anon_sym_EQ_EQ] = ACTIONS(1014), + [anon_sym_BANG_EQ] = ACTIONS(1014), + [anon_sym_LT] = ACTIONS(1016), + [anon_sym_LT_EQ] = ACTIONS(1014), + [anon_sym_GT] = ACTIONS(1016), + [anon_sym_GT_EQ] = ACTIONS(1014), + [aux_sym_cmd_identifier_token6] = ACTIONS(1018), [sym__newline] = ACTIONS(1020), [anon_sym_SEMI] = ACTIONS(1020), [anon_sym_PIPE] = ACTIONS(1020), @@ -60671,6 +60210,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1020), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1020), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1020), + [anon_sym_RPAREN] = ACTIONS(1020), [anon_sym_GT2] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(1020), [anon_sym_STAR2] = ACTIONS(1020), @@ -60722,53 +60262,558 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1020), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(188)] = { - [sym_cmd_identifier] = STATE(3009), - [sym__ctrl_expression_parenthesized] = STATE(3436), - [sym_ctrl_if_parenthesized] = STATE(3367), - [sym_ctrl_match] = STATE(3367), - [sym_ctrl_try_parenthesized] = STATE(3367), - [sym__stmt_let_shortcut] = STATE(3368), - [sym_pipe_element_parenthesized] = STATE(3075), - [sym_where_command_parenthesized] = STATE(3436), - [sym__expression_parenthesized] = STATE(2290), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2157), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(124), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4730), - [sym__command_parenthesized] = STATE(3373), - [sym_comment] = STATE(188), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(183), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), + [STATE(176)] = { + [sym_cmd_identifier] = STATE(2730), + [sym__ctrl_expression] = STATE(3368), + [sym_ctrl_if] = STATE(3392), + [sym_ctrl_match] = STATE(3392), + [sym_ctrl_try] = STATE(3392), + [sym__stmt_let_shortcut] = STATE(3393), + [sym_pipe_element] = STATE(2945), + [sym_where_command] = STATE(3368), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(724), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3368), + [sym_comment] = STATE(176), + [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym_pipe_element_repeat2] = STATE(281), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(271), + [anon_sym_let] = ACTIONS(994), + [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(273), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = 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(998), + [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(177)] = { + [sym_cmd_identifier] = STATE(2730), + [sym__ctrl_expression] = STATE(3368), + [sym_ctrl_if] = STATE(3392), + [sym_ctrl_match] = STATE(3392), + [sym_ctrl_try] = STATE(3392), + [sym__stmt_let_shortcut] = STATE(3393), + [sym_pipe_element] = STATE(2945), + [sym_where_command] = STATE(3368), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(724), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(136), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3368), + [sym_comment] = STATE(177), + [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym_pipe_element_repeat2] = STATE(270), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(271), + [anon_sym_let] = ACTIONS(994), + [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(996), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = 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(998), + [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(1000), + [aux_sym__val_number_decimal_token2] = ACTIONS(1002), + [aux_sym__val_number_decimal_token3] = ACTIONS(1004), + [aux_sym__val_number_decimal_token4] = ACTIONS(1004), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__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(178)] = { + [sym_cmd_identifier] = STATE(2730), + [sym__ctrl_expression] = STATE(3368), + [sym_ctrl_if] = STATE(3392), + [sym_ctrl_match] = STATE(3392), + [sym_ctrl_try] = STATE(3392), + [sym__stmt_let_shortcut] = STATE(3393), + [sym_pipe_element] = STATE(3522), + [sym_where_command] = STATE(3368), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(724), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(143), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3368), + [sym_comment] = STATE(178), + [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym_pipe_element_repeat2] = STATE(277), + [anon_sym_export] = ACTIONS(1022), + [anon_sym_alias] = ACTIONS(1025), + [anon_sym_let] = ACTIONS(1028), + [anon_sym_mut] = ACTIONS(1025), + [anon_sym_const] = ACTIONS(1025), + [aux_sym_cmd_identifier_token1] = ACTIONS(1031), + [anon_sym_def] = ACTIONS(1025), + [anon_sym_use] = ACTIONS(1025), + [anon_sym_export_DASHenv] = ACTIONS(1025), + [anon_sym_extern] = ACTIONS(1025), + [anon_sym_module] = ACTIONS(1025), + [anon_sym_for] = ACTIONS(1025), + [anon_sym_loop] = ACTIONS(1025), + [anon_sym_while] = ACTIONS(1025), + [anon_sym_if] = ACTIONS(1034), + [anon_sym_else] = ACTIONS(1025), + [anon_sym_try] = ACTIONS(1037), + [anon_sym_catch] = ACTIONS(1025), + [anon_sym_finally] = ACTIONS(1025), + [anon_sym_match] = ACTIONS(1040), + [anon_sym_in] = ACTIONS(1022), + [anon_sym_true] = ACTIONS(1043), + [anon_sym_false] = ACTIONS(1043), + [anon_sym_null] = ACTIONS(1046), + [aux_sym_cmd_identifier_token3] = ACTIONS(1049), + [aux_sym_cmd_identifier_token4] = ACTIONS(1049), + [aux_sym_cmd_identifier_token5] = ACTIONS(1049), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_LPAREN] = ACTIONS(1055), + [anon_sym_DOLLAR] = ACTIONS(1058), + [anon_sym_DASH2] = ACTIONS(1061), + [anon_sym_LBRACE] = ACTIONS(1064), + [anon_sym_DOT_DOT] = ACTIONS(1067), + [anon_sym_where] = ACTIONS(1070), + [aux_sym_expr_unary_token1] = ACTIONS(1073), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1076), + [anon_sym_DOT_DOT_LT] = ACTIONS(1076), + [aux_sym__val_number_decimal_token1] = ACTIONS(1079), + [aux_sym__val_number_decimal_token2] = ACTIONS(1082), + [aux_sym__val_number_decimal_token3] = ACTIONS(1085), + [aux_sym__val_number_decimal_token4] = ACTIONS(1085), + [aux_sym__val_number_token1] = ACTIONS(1088), + [aux_sym__val_number_token2] = ACTIONS(1088), + [aux_sym__val_number_token3] = ACTIONS(1088), + [anon_sym_0b] = ACTIONS(1091), + [anon_sym_0o] = ACTIONS(1094), + [anon_sym_0x] = ACTIONS(1094), + [sym_val_date] = ACTIONS(1097), + [anon_sym_DQUOTE] = ACTIONS(1100), + [anon_sym_SQUOTE] = ACTIONS(1103), + [anon_sym_BQUOTE] = ACTIONS(1106), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1109), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1112), + [anon_sym_CARET] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1118), + }, + [STATE(179)] = { + [sym_cmd_identifier] = STATE(2907), + [sym__ctrl_expression_parenthesized] = STATE(3454), + [sym_ctrl_if_parenthesized] = STATE(3458), + [sym_ctrl_match] = STATE(3458), + [sym_ctrl_try_parenthesized] = STATE(3458), + [sym__stmt_let_shortcut] = STATE(3471), + [sym_pipe_element_parenthesized] = STATE(3510), + [sym_where_command_parenthesized] = STATE(3454), + [sym__expression_parenthesized] = STATE(2289), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2156), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(143), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(4794), + [sym__command_parenthesized] = STATE(3494), + [sym_comment] = STATE(179), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(179), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(285), + [anon_sym_export] = ACTIONS(1121), + [anon_sym_alias] = ACTIONS(1124), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_mut] = ACTIONS(1124), + [anon_sym_const] = ACTIONS(1124), + [aux_sym_cmd_identifier_token1] = ACTIONS(1130), + [anon_sym_def] = ACTIONS(1124), + [anon_sym_use] = ACTIONS(1124), + [anon_sym_export_DASHenv] = ACTIONS(1124), + [anon_sym_extern] = ACTIONS(1124), + [anon_sym_module] = ACTIONS(1124), + [anon_sym_for] = ACTIONS(1124), + [anon_sym_loop] = ACTIONS(1124), + [anon_sym_while] = ACTIONS(1124), + [anon_sym_if] = ACTIONS(1133), + [anon_sym_else] = ACTIONS(1124), + [anon_sym_try] = ACTIONS(1136), + [anon_sym_catch] = ACTIONS(1124), + [anon_sym_finally] = ACTIONS(1124), + [anon_sym_match] = ACTIONS(1139), + [anon_sym_in] = ACTIONS(1121), + [anon_sym_true] = ACTIONS(1142), + [anon_sym_false] = ACTIONS(1142), + [anon_sym_null] = ACTIONS(1145), + [aux_sym_cmd_identifier_token3] = ACTIONS(1148), + [aux_sym_cmd_identifier_token4] = ACTIONS(1148), + [aux_sym_cmd_identifier_token5] = ACTIONS(1148), + [anon_sym_LBRACK] = ACTIONS(1151), + [anon_sym_LPAREN] = ACTIONS(1154), + [anon_sym_DOLLAR] = ACTIONS(1157), + [anon_sym_DASH2] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_DOT_DOT] = ACTIONS(1166), + [anon_sym_where] = ACTIONS(1169), + [aux_sym_expr_unary_token1] = ACTIONS(1172), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1175), + [anon_sym_DOT_DOT_LT] = ACTIONS(1175), + [aux_sym__val_number_decimal_token1] = ACTIONS(1178), + [aux_sym__val_number_decimal_token2] = ACTIONS(1181), + [aux_sym__val_number_decimal_token3] = ACTIONS(1184), + [aux_sym__val_number_decimal_token4] = ACTIONS(1184), + [aux_sym__val_number_token1] = ACTIONS(1187), + [aux_sym__val_number_token2] = ACTIONS(1187), + [aux_sym__val_number_token3] = ACTIONS(1187), + [anon_sym_0b] = ACTIONS(1190), + [anon_sym_0o] = ACTIONS(1193), + [anon_sym_0x] = ACTIONS(1193), + [sym_val_date] = ACTIONS(1196), + [anon_sym_DQUOTE] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1202), + [anon_sym_BQUOTE] = ACTIONS(1205), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1208), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1211), + [anon_sym_CARET] = ACTIONS(1214), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1217), + }, + [STATE(180)] = { + [sym_cmd_identifier] = STATE(2907), + [sym__ctrl_expression_parenthesized] = STATE(3454), + [sym_ctrl_if_parenthesized] = STATE(3458), + [sym_ctrl_match] = STATE(3458), + [sym_ctrl_try_parenthesized] = STATE(3458), + [sym__stmt_let_shortcut] = STATE(3471), + [sym_pipe_element_parenthesized] = STATE(3196), + [sym_where_command_parenthesized] = STATE(3454), + [sym__expression_parenthesized] = STATE(2289), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2156), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(136), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(4794), + [sym__command_parenthesized] = STATE(3494), + [sym_comment] = STATE(180), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(179), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(268), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(271), + [anon_sym_let] = ACTIONS(994), + [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(1006), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(329), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = 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(998), + [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(1000), + [aux_sym__val_number_decimal_token2] = ACTIONS(1002), + [aux_sym__val_number_decimal_token3] = ACTIONS(1004), + [aux_sym__val_number_decimal_token4] = ACTIONS(1004), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__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(181)] = { + [sym_cmd_identifier] = STATE(2907), + [sym__ctrl_expression_parenthesized] = STATE(3454), + [sym_ctrl_if_parenthesized] = STATE(3458), + [sym_ctrl_match] = STATE(3458), + [sym_ctrl_try_parenthesized] = STATE(3458), + [sym__stmt_let_shortcut] = STATE(3471), + [sym_pipe_element_parenthesized] = STATE(3196), + [sym_where_command_parenthesized] = STATE(3454), + [sym__expression_parenthesized] = STATE(2289), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2156), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(4794), + [sym__command_parenthesized] = STATE(3494), + [sym_comment] = STATE(181), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(179), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(269), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(994), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -60784,6 +60829,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -60794,7 +60840,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -60822,53 +60868,255 @@ 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_cmd_identifier] = STATE(2947), - [sym__ctrl_expression] = STATE(3379), - [sym_ctrl_if] = STATE(3441), - [sym_ctrl_match] = STATE(3441), - [sym_ctrl_try] = STATE(3441), - [sym__stmt_let_shortcut] = STATE(3501), - [sym_pipe_element] = STATE(3062), - [sym_where_command] = STATE(3379), + [STATE(182)] = { + [sym_comment] = STATE(182), + [anon_sym_in] = ACTIONS(1012), + [anon_sym_STAR_STAR] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1220), + [anon_sym_STAR] = ACTIONS(1222), + [anon_sym_SLASH] = ACTIONS(1222), + [anon_sym_mod] = ACTIONS(1220), + [anon_sym_SLASH_SLASH] = ACTIONS(1220), + [anon_sym_PLUS] = ACTIONS(1222), + [anon_sym_DASH] = ACTIONS(1220), + [anon_sym_bit_DASHshl] = ACTIONS(1220), + [anon_sym_bit_DASHshr] = ACTIONS(1220), + [anon_sym_EQ_TILDE] = ACTIONS(1220), + [anon_sym_BANG_TILDE] = ACTIONS(1220), + [anon_sym_like] = ACTIONS(1220), + [anon_sym_not_DASHlike] = ACTIONS(1220), + [anon_sym_bit_DASHand] = ACTIONS(1220), + [anon_sym_bit_DASHxor] = ACTIONS(1220), + [anon_sym_bit_DASHor] = ACTIONS(1220), + [anon_sym_and] = ACTIONS(1220), + [anon_sym_xor] = ACTIONS(1220), + [anon_sym_or] = ACTIONS(1220), + [anon_sym_in2] = ACTIONS(1220), + [anon_sym_not_DASHin] = ACTIONS(1220), + [anon_sym_has] = ACTIONS(1220), + [anon_sym_not_DASHhas] = ACTIONS(1220), + [anon_sym_starts_DASHwith] = ACTIONS(1220), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1220), + [anon_sym_ends_DASHwith] = ACTIONS(1220), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1220), + [anon_sym_EQ_EQ] = ACTIONS(1220), + [anon_sym_BANG_EQ] = ACTIONS(1220), + [anon_sym_LT] = ACTIONS(1222), + [anon_sym_LT_EQ] = ACTIONS(1220), + [anon_sym_GT] = ACTIONS(1222), + [anon_sym_GT_EQ] = ACTIONS(1220), + [aux_sym_cmd_identifier_token6] = ACTIONS(1224), + [sym__newline] = ACTIONS(1012), + [anon_sym_SEMI] = ACTIONS(1012), + [anon_sym_PIPE] = ACTIONS(1012), + [anon_sym_err_GT_PIPE] = ACTIONS(1012), + [anon_sym_out_GT_PIPE] = ACTIONS(1012), + [anon_sym_e_GT_PIPE] = ACTIONS(1012), + [anon_sym_o_GT_PIPE] = ACTIONS(1012), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1012), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1012), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1012), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1012), + [anon_sym_GT2] = ACTIONS(1012), + [anon_sym_DASH2] = ACTIONS(1012), + [anon_sym_RBRACE] = ACTIONS(1012), + [anon_sym_STAR2] = ACTIONS(1012), + [anon_sym_and2] = ACTIONS(1012), + [anon_sym_xor2] = ACTIONS(1012), + [anon_sym_or2] = ACTIONS(1012), + [anon_sym_not_DASHin2] = ACTIONS(1012), + [anon_sym_has2] = ACTIONS(1012), + [anon_sym_not_DASHhas2] = ACTIONS(1012), + [anon_sym_starts_DASHwith2] = ACTIONS(1012), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1012), + [anon_sym_ends_DASHwith2] = ACTIONS(1012), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1012), + [anon_sym_EQ_EQ2] = ACTIONS(1012), + [anon_sym_BANG_EQ2] = ACTIONS(1012), + [anon_sym_LT2] = ACTIONS(1012), + [anon_sym_LT_EQ2] = ACTIONS(1012), + [anon_sym_GT_EQ2] = ACTIONS(1012), + [anon_sym_EQ_TILDE2] = ACTIONS(1012), + [anon_sym_BANG_TILDE2] = ACTIONS(1012), + [anon_sym_like2] = ACTIONS(1012), + [anon_sym_not_DASHlike2] = ACTIONS(1012), + [anon_sym_STAR_STAR2] = ACTIONS(1012), + [anon_sym_PLUS_PLUS2] = ACTIONS(1012), + [anon_sym_SLASH2] = ACTIONS(1012), + [anon_sym_mod2] = ACTIONS(1012), + [anon_sym_SLASH_SLASH2] = ACTIONS(1012), + [anon_sym_PLUS2] = ACTIONS(1012), + [anon_sym_bit_DASHshl2] = ACTIONS(1012), + [anon_sym_bit_DASHshr2] = ACTIONS(1012), + [anon_sym_bit_DASHand2] = ACTIONS(1012), + [anon_sym_bit_DASHxor2] = ACTIONS(1012), + [anon_sym_bit_DASHor2] = ACTIONS(1012), + [anon_sym_err_GT] = ACTIONS(1012), + [anon_sym_out_GT] = ACTIONS(1012), + [anon_sym_e_GT] = ACTIONS(1012), + [anon_sym_o_GT] = ACTIONS(1012), + [anon_sym_err_PLUSout_GT] = ACTIONS(1012), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1012), + [anon_sym_o_PLUSe_GT] = ACTIONS(1012), + [anon_sym_e_PLUSo_GT] = ACTIONS(1012), + [anon_sym_err_GT_GT] = ACTIONS(1012), + [anon_sym_out_GT_GT] = ACTIONS(1012), + [anon_sym_e_GT_GT] = ACTIONS(1012), + [anon_sym_o_GT_GT] = ACTIONS(1012), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1012), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1012), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1012), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1012), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(183)] = { + [sym_comment] = STATE(183), + [anon_sym_in] = ACTIONS(1020), + [anon_sym_STAR_STAR] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1220), + [anon_sym_STAR] = ACTIONS(1222), + [anon_sym_SLASH] = ACTIONS(1222), + [anon_sym_mod] = ACTIONS(1220), + [anon_sym_SLASH_SLASH] = ACTIONS(1220), + [anon_sym_PLUS] = ACTIONS(1222), + [anon_sym_DASH] = ACTIONS(1220), + [anon_sym_bit_DASHshl] = ACTIONS(1220), + [anon_sym_bit_DASHshr] = ACTIONS(1220), + [anon_sym_EQ_TILDE] = ACTIONS(1220), + [anon_sym_BANG_TILDE] = ACTIONS(1220), + [anon_sym_like] = ACTIONS(1220), + [anon_sym_not_DASHlike] = ACTIONS(1220), + [anon_sym_bit_DASHand] = ACTIONS(1220), + [anon_sym_bit_DASHxor] = ACTIONS(1220), + [anon_sym_bit_DASHor] = ACTIONS(1220), + [anon_sym_and] = ACTIONS(1220), + [anon_sym_xor] = ACTIONS(1220), + [anon_sym_or] = ACTIONS(1220), + [anon_sym_in2] = ACTIONS(1220), + [anon_sym_not_DASHin] = ACTIONS(1220), + [anon_sym_has] = ACTIONS(1220), + [anon_sym_not_DASHhas] = ACTIONS(1220), + [anon_sym_starts_DASHwith] = ACTIONS(1220), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1220), + [anon_sym_ends_DASHwith] = ACTIONS(1220), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1220), + [anon_sym_EQ_EQ] = ACTIONS(1220), + [anon_sym_BANG_EQ] = ACTIONS(1220), + [anon_sym_LT] = ACTIONS(1222), + [anon_sym_LT_EQ] = ACTIONS(1220), + [anon_sym_GT] = ACTIONS(1222), + [anon_sym_GT_EQ] = ACTIONS(1220), + [aux_sym_cmd_identifier_token6] = ACTIONS(1224), + [sym__newline] = ACTIONS(1020), + [anon_sym_SEMI] = ACTIONS(1020), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_err_GT_PIPE] = ACTIONS(1020), + [anon_sym_out_GT_PIPE] = ACTIONS(1020), + [anon_sym_e_GT_PIPE] = ACTIONS(1020), + [anon_sym_o_GT_PIPE] = ACTIONS(1020), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1020), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1020), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1020), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1020), + [anon_sym_GT2] = ACTIONS(1020), + [anon_sym_DASH2] = ACTIONS(1020), + [anon_sym_RBRACE] = ACTIONS(1020), + [anon_sym_STAR2] = ACTIONS(1020), + [anon_sym_and2] = ACTIONS(1020), + [anon_sym_xor2] = ACTIONS(1020), + [anon_sym_or2] = ACTIONS(1020), + [anon_sym_not_DASHin2] = ACTIONS(1020), + [anon_sym_has2] = ACTIONS(1020), + [anon_sym_not_DASHhas2] = ACTIONS(1020), + [anon_sym_starts_DASHwith2] = ACTIONS(1020), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1020), + [anon_sym_ends_DASHwith2] = ACTIONS(1020), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1020), + [anon_sym_EQ_EQ2] = ACTIONS(1020), + [anon_sym_BANG_EQ2] = ACTIONS(1020), + [anon_sym_LT2] = ACTIONS(1020), + [anon_sym_LT_EQ2] = ACTIONS(1020), + [anon_sym_GT_EQ2] = ACTIONS(1020), + [anon_sym_EQ_TILDE2] = ACTIONS(1020), + [anon_sym_BANG_TILDE2] = ACTIONS(1020), + [anon_sym_like2] = ACTIONS(1020), + [anon_sym_not_DASHlike2] = ACTIONS(1020), + [anon_sym_STAR_STAR2] = ACTIONS(1020), + [anon_sym_PLUS_PLUS2] = ACTIONS(1020), + [anon_sym_SLASH2] = ACTIONS(1020), + [anon_sym_mod2] = ACTIONS(1020), + [anon_sym_SLASH_SLASH2] = ACTIONS(1020), + [anon_sym_PLUS2] = ACTIONS(1020), + [anon_sym_bit_DASHshl2] = ACTIONS(1020), + [anon_sym_bit_DASHshr2] = ACTIONS(1020), + [anon_sym_bit_DASHand2] = ACTIONS(1020), + [anon_sym_bit_DASHxor2] = ACTIONS(1020), + [anon_sym_bit_DASHor2] = ACTIONS(1020), + [anon_sym_err_GT] = ACTIONS(1020), + [anon_sym_out_GT] = ACTIONS(1020), + [anon_sym_e_GT] = ACTIONS(1020), + [anon_sym_o_GT] = ACTIONS(1020), + [anon_sym_err_PLUSout_GT] = ACTIONS(1020), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1020), + [anon_sym_o_PLUSe_GT] = ACTIONS(1020), + [anon_sym_e_PLUSo_GT] = ACTIONS(1020), + [anon_sym_err_GT_GT] = ACTIONS(1020), + [anon_sym_out_GT_GT] = ACTIONS(1020), + [anon_sym_e_GT_GT] = ACTIONS(1020), + [anon_sym_o_GT_GT] = ACTIONS(1020), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1020), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1020), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1020), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1020), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(184)] = { + [sym_cmd_identifier] = STATE(2951), + [sym__ctrl_expression] = STATE(3512), + [sym_ctrl_if] = STATE(3519), + [sym_ctrl_match] = STATE(3519), + [sym_ctrl_try] = STATE(3519), + [sym__stmt_let_shortcut] = STATE(3521), + [sym_pipe_element] = STATE(3122), + [sym_where_command] = STATE(3512), [sym__expression] = STATE(2294), - [sym_expr_unary] = STATE(1286), - [sym__expr_unary_minus] = STATE(1290), - [sym_expr_binary] = STATE(1286), - [sym__expr_binary_expression] = STATE(2252), - [sym_expr_parenthesized] = STATE(924), - [sym_val_range] = STATE(1286), - [sym__value] = STATE(1286), - [sym_val_nothing] = STATE(1295), - [sym_val_bool] = STATE(1295), - [sym_val_variable] = STATE(933), - [sym_val_cellpath] = STATE(1295), - [sym_val_number] = STATE(1295), - [sym__val_number_decimal] = STATE(123), + [sym_expr_unary] = STATE(1292), + [sym__expr_unary_minus] = STATE(1296), + [sym_expr_binary] = STATE(1292), + [sym__expr_binary_expression] = STATE(2248), + [sym_expr_parenthesized] = STATE(964), + [sym_val_range] = STATE(1292), + [sym__value] = STATE(1292), + [sym_val_nothing] = STATE(1316), + [sym_val_bool] = STATE(1316), + [sym_val_variable] = STATE(912), + [sym_val_cellpath] = STATE(1316), + [sym_val_number] = STATE(1316), + [sym__val_number_decimal] = STATE(132), [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1295), - [sym_val_filesize] = STATE(1295), - [sym_val_binary] = STATE(1295), - [sym_val_string] = STATE(1295), + [sym_val_duration] = STATE(1316), + [sym_val_filesize] = STATE(1316), + [sym_val_binary] = STATE(1316), + [sym_val_string] = STATE(1316), [sym__raw_str] = STATE(502), [sym__str_double_quotes] = STATE(502), [sym__str_single_quotes] = STATE(502), [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1295), - [sym__inter_single_quotes] = STATE(1306), - [sym__inter_double_quotes] = STATE(1317), - [sym_val_list] = STATE(1295), - [sym_val_record] = STATE(1295), - [sym_val_table] = STATE(1295), - [sym_val_closure] = STATE(1295), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3379), - [sym_comment] = STATE(189), - [aux_sym_pipeline_repeat1] = STATE(186), - [aux_sym_pipe_element_repeat2] = STATE(291), + [sym_val_interpolated] = STATE(1316), + [sym__inter_single_quotes] = STATE(1277), + [sym__inter_double_quotes] = STATE(1311), + [sym_val_list] = STATE(1316), + [sym_val_record] = STATE(1316), + [sym_val_table] = STATE(1316), + [sym_val_closure] = STATE(1316), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3512), + [sym_comment] = STATE(184), + [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym_pipe_element_repeat2] = STATE(284), [anon_sym_export] = ACTIONS(45), [anon_sym_alias] = ACTIONS(39), - [anon_sym_let] = ACTIONS(1006), + [anon_sym_let] = ACTIONS(1008), [anon_sym_mut] = ACTIONS(39), [anon_sym_const] = ACTIONS(39), [aux_sym_cmd_identifier_token1] = ACTIONS(19), @@ -60884,6 +61132,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(39), [anon_sym_try] = ACTIONS(41), [anon_sym_catch] = ACTIONS(39), + [anon_sym_finally] = ACTIONS(39), [anon_sym_match] = ACTIONS(43), [anon_sym_in] = ACTIONS(45), [anon_sym_true] = ACTIONS(47), @@ -60894,7 +61143,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(1008), + [anon_sym_DOLLAR] = ACTIONS(1010), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_DOT_DOT] = ACTIONS(69), @@ -60922,153 +61171,255 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(190)] = { - [sym_comment] = STATE(190), - [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), + [STATE(185)] = { + [sym_comment] = STATE(185), + [anon_sym_in] = ACTIONS(1012), + [anon_sym_STAR_STAR] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1014), + [anon_sym_STAR] = ACTIONS(1016), + [anon_sym_SLASH] = ACTIONS(1016), + [anon_sym_mod] = ACTIONS(1014), + [anon_sym_SLASH_SLASH] = ACTIONS(1014), + [anon_sym_PLUS] = ACTIONS(1016), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_bit_DASHshl] = ACTIONS(1014), + [anon_sym_bit_DASHshr] = ACTIONS(1014), + [anon_sym_EQ_TILDE] = ACTIONS(1014), + [anon_sym_BANG_TILDE] = ACTIONS(1014), + [anon_sym_like] = ACTIONS(1014), + [anon_sym_not_DASHlike] = ACTIONS(1014), + [anon_sym_bit_DASHand] = ACTIONS(1014), + [anon_sym_bit_DASHxor] = ACTIONS(1014), + [anon_sym_bit_DASHor] = ACTIONS(1014), + [anon_sym_and] = ACTIONS(1014), + [anon_sym_xor] = ACTIONS(1014), + [anon_sym_or] = ACTIONS(1014), + [anon_sym_in2] = ACTIONS(1014), + [anon_sym_not_DASHin] = ACTIONS(1014), + [anon_sym_has] = ACTIONS(1014), + [anon_sym_not_DASHhas] = ACTIONS(1014), + [anon_sym_starts_DASHwith] = ACTIONS(1014), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1014), + [anon_sym_ends_DASHwith] = ACTIONS(1014), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1014), + [anon_sym_EQ_EQ] = ACTIONS(1014), + [anon_sym_BANG_EQ] = ACTIONS(1014), + [anon_sym_LT] = ACTIONS(1016), + [anon_sym_LT_EQ] = ACTIONS(1014), + [anon_sym_GT] = ACTIONS(1016), + [anon_sym_GT_EQ] = ACTIONS(1014), + [aux_sym_cmd_identifier_token6] = ACTIONS(1018), + [sym__newline] = ACTIONS(1012), + [anon_sym_SEMI] = ACTIONS(1012), + [anon_sym_PIPE] = ACTIONS(1012), + [anon_sym_err_GT_PIPE] = ACTIONS(1012), + [anon_sym_out_GT_PIPE] = ACTIONS(1012), + [anon_sym_e_GT_PIPE] = ACTIONS(1012), + [anon_sym_o_GT_PIPE] = ACTIONS(1012), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1012), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1012), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1012), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1012), + [anon_sym_GT2] = ACTIONS(1012), + [anon_sym_DASH2] = ACTIONS(1012), + [anon_sym_RBRACE] = ACTIONS(1012), + [anon_sym_STAR2] = ACTIONS(1012), + [anon_sym_and2] = ACTIONS(1012), + [anon_sym_xor2] = ACTIONS(1012), + [anon_sym_or2] = ACTIONS(1012), + [anon_sym_not_DASHin2] = ACTIONS(1012), + [anon_sym_has2] = ACTIONS(1012), + [anon_sym_not_DASHhas2] = ACTIONS(1012), + [anon_sym_starts_DASHwith2] = ACTIONS(1012), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1012), + [anon_sym_ends_DASHwith2] = ACTIONS(1012), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1012), + [anon_sym_EQ_EQ2] = ACTIONS(1012), + [anon_sym_BANG_EQ2] = ACTIONS(1012), + [anon_sym_LT2] = ACTIONS(1012), + [anon_sym_LT_EQ2] = ACTIONS(1012), + [anon_sym_GT_EQ2] = ACTIONS(1012), + [anon_sym_EQ_TILDE2] = ACTIONS(1012), + [anon_sym_BANG_TILDE2] = ACTIONS(1012), + [anon_sym_like2] = ACTIONS(1012), + [anon_sym_not_DASHlike2] = ACTIONS(1012), + [anon_sym_STAR_STAR2] = ACTIONS(1012), + [anon_sym_PLUS_PLUS2] = ACTIONS(1012), + [anon_sym_SLASH2] = ACTIONS(1012), + [anon_sym_mod2] = ACTIONS(1012), + [anon_sym_SLASH_SLASH2] = ACTIONS(1012), + [anon_sym_PLUS2] = ACTIONS(1012), + [anon_sym_bit_DASHshl2] = ACTIONS(1012), + [anon_sym_bit_DASHshr2] = ACTIONS(1012), + [anon_sym_bit_DASHand2] = ACTIONS(1012), + [anon_sym_bit_DASHxor2] = ACTIONS(1012), + [anon_sym_bit_DASHor2] = ACTIONS(1012), + [anon_sym_err_GT] = ACTIONS(1012), + [anon_sym_out_GT] = ACTIONS(1012), + [anon_sym_e_GT] = ACTIONS(1012), + [anon_sym_o_GT] = ACTIONS(1012), + [anon_sym_err_PLUSout_GT] = ACTIONS(1012), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1012), + [anon_sym_o_PLUSe_GT] = ACTIONS(1012), + [anon_sym_e_PLUSo_GT] = ACTIONS(1012), + [anon_sym_err_GT_GT] = ACTIONS(1012), + [anon_sym_out_GT_GT] = ACTIONS(1012), + [anon_sym_e_GT_GT] = ACTIONS(1012), + [anon_sym_o_GT_GT] = ACTIONS(1012), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1012), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1012), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1012), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1012), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(191)] = { - [sym_cmd_identifier] = STATE(3009), - [sym__ctrl_expression_parenthesized] = STATE(3436), - [sym_ctrl_if_parenthesized] = STATE(3367), - [sym_ctrl_match] = STATE(3367), - [sym_ctrl_try_parenthesized] = STATE(3367), - [sym__stmt_let_shortcut] = STATE(3368), - [sym_pipe_element_parenthesized] = STATE(3075), - [sym_where_command_parenthesized] = STATE(3436), - [sym__expression_parenthesized] = STATE(2290), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2157), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(135), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4730), - [sym__command_parenthesized] = STATE(3373), - [sym_comment] = STATE(191), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(183), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(274), + [STATE(186)] = { + [sym_comment] = STATE(186), + [anon_sym_in] = ACTIONS(1020), + [anon_sym_STAR_STAR] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1014), + [anon_sym_STAR] = ACTIONS(1016), + [anon_sym_SLASH] = ACTIONS(1016), + [anon_sym_mod] = ACTIONS(1014), + [anon_sym_SLASH_SLASH] = ACTIONS(1014), + [anon_sym_PLUS] = ACTIONS(1016), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_bit_DASHshl] = ACTIONS(1014), + [anon_sym_bit_DASHshr] = ACTIONS(1014), + [anon_sym_EQ_TILDE] = ACTIONS(1014), + [anon_sym_BANG_TILDE] = ACTIONS(1014), + [anon_sym_like] = ACTIONS(1014), + [anon_sym_not_DASHlike] = ACTIONS(1014), + [anon_sym_bit_DASHand] = ACTIONS(1014), + [anon_sym_bit_DASHxor] = ACTIONS(1014), + [anon_sym_bit_DASHor] = ACTIONS(1014), + [anon_sym_and] = ACTIONS(1014), + [anon_sym_xor] = ACTIONS(1014), + [anon_sym_or] = ACTIONS(1014), + [anon_sym_in2] = ACTIONS(1014), + [anon_sym_not_DASHin] = ACTIONS(1014), + [anon_sym_has] = ACTIONS(1014), + [anon_sym_not_DASHhas] = ACTIONS(1014), + [anon_sym_starts_DASHwith] = ACTIONS(1014), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1014), + [anon_sym_ends_DASHwith] = ACTIONS(1014), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1014), + [anon_sym_EQ_EQ] = ACTIONS(1014), + [anon_sym_BANG_EQ] = ACTIONS(1014), + [anon_sym_LT] = ACTIONS(1016), + [anon_sym_LT_EQ] = ACTIONS(1014), + [anon_sym_GT] = ACTIONS(1016), + [anon_sym_GT_EQ] = ACTIONS(1014), + [aux_sym_cmd_identifier_token6] = ACTIONS(1018), + [sym__newline] = ACTIONS(1020), + [anon_sym_SEMI] = ACTIONS(1020), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_err_GT_PIPE] = ACTIONS(1020), + [anon_sym_out_GT_PIPE] = ACTIONS(1020), + [anon_sym_e_GT_PIPE] = ACTIONS(1020), + [anon_sym_o_GT_PIPE] = ACTIONS(1020), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1020), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1020), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1020), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1020), + [anon_sym_GT2] = ACTIONS(1020), + [anon_sym_DASH2] = ACTIONS(1020), + [anon_sym_RBRACE] = ACTIONS(1020), + [anon_sym_STAR2] = ACTIONS(1020), + [anon_sym_and2] = ACTIONS(1020), + [anon_sym_xor2] = ACTIONS(1020), + [anon_sym_or2] = ACTIONS(1020), + [anon_sym_not_DASHin2] = ACTIONS(1020), + [anon_sym_has2] = ACTIONS(1020), + [anon_sym_not_DASHhas2] = ACTIONS(1020), + [anon_sym_starts_DASHwith2] = ACTIONS(1020), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1020), + [anon_sym_ends_DASHwith2] = ACTIONS(1020), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1020), + [anon_sym_EQ_EQ2] = ACTIONS(1020), + [anon_sym_BANG_EQ2] = ACTIONS(1020), + [anon_sym_LT2] = ACTIONS(1020), + [anon_sym_LT_EQ2] = ACTIONS(1020), + [anon_sym_GT_EQ2] = ACTIONS(1020), + [anon_sym_EQ_TILDE2] = ACTIONS(1020), + [anon_sym_BANG_TILDE2] = ACTIONS(1020), + [anon_sym_like2] = ACTIONS(1020), + [anon_sym_not_DASHlike2] = ACTIONS(1020), + [anon_sym_STAR_STAR2] = ACTIONS(1020), + [anon_sym_PLUS_PLUS2] = ACTIONS(1020), + [anon_sym_SLASH2] = ACTIONS(1020), + [anon_sym_mod2] = ACTIONS(1020), + [anon_sym_SLASH_SLASH2] = ACTIONS(1020), + [anon_sym_PLUS2] = ACTIONS(1020), + [anon_sym_bit_DASHshl2] = ACTIONS(1020), + [anon_sym_bit_DASHshr2] = ACTIONS(1020), + [anon_sym_bit_DASHand2] = ACTIONS(1020), + [anon_sym_bit_DASHxor2] = ACTIONS(1020), + [anon_sym_bit_DASHor2] = ACTIONS(1020), + [anon_sym_err_GT] = ACTIONS(1020), + [anon_sym_out_GT] = ACTIONS(1020), + [anon_sym_e_GT] = ACTIONS(1020), + [anon_sym_o_GT] = ACTIONS(1020), + [anon_sym_err_PLUSout_GT] = ACTIONS(1020), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1020), + [anon_sym_o_PLUSe_GT] = ACTIONS(1020), + [anon_sym_e_PLUSo_GT] = ACTIONS(1020), + [anon_sym_err_GT_GT] = ACTIONS(1020), + [anon_sym_out_GT_GT] = ACTIONS(1020), + [anon_sym_e_GT_GT] = ACTIONS(1020), + [anon_sym_o_GT_GT] = ACTIONS(1020), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1020), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1020), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1020), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1020), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(187)] = { + [sym_cmd_identifier] = STATE(2730), + [sym__ctrl_expression] = STATE(3368), + [sym_ctrl_if] = STATE(3392), + [sym_ctrl_match] = STATE(3392), + [sym_ctrl_try] = STATE(3392), + [sym__stmt_let_shortcut] = STATE(3393), + [sym_pipe_element] = STATE(2945), + [sym_where_command] = STATE(3368), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(724), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3368), + [sym_comment] = STATE(187), + [aux_sym_pipeline_repeat1] = STATE(178), + [aux_sym_pipe_element_repeat2] = STATE(267), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(994), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -61080,10 +61431,11 @@ 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(1010), + [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_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -61094,18 +61446,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [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(1012), - [aux_sym__val_number_decimal_token2] = ACTIONS(1014), - [aux_sym__val_number_decimal_token3] = ACTIONS(1016), - [aux_sym__val_number_decimal_token4] = ACTIONS(1016), + [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), @@ -61118,48 +61470,450 @@ 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(188)] = { + [sym_comment] = STATE(188), + [ts_builtin_sym_end] = ACTIONS(1226), + [anon_sym_in] = ACTIONS(1012), + [anon_sym_STAR_STAR] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1228), + [anon_sym_STAR] = ACTIONS(1230), + [anon_sym_SLASH] = ACTIONS(1230), + [anon_sym_mod] = ACTIONS(1228), + [anon_sym_SLASH_SLASH] = ACTIONS(1228), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_DASH] = ACTIONS(1228), + [anon_sym_bit_DASHshl] = ACTIONS(1228), + [anon_sym_bit_DASHshr] = ACTIONS(1228), + [anon_sym_EQ_TILDE] = ACTIONS(1228), + [anon_sym_BANG_TILDE] = ACTIONS(1228), + [anon_sym_like] = ACTIONS(1228), + [anon_sym_not_DASHlike] = ACTIONS(1228), + [anon_sym_bit_DASHand] = ACTIONS(1228), + [anon_sym_bit_DASHxor] = ACTIONS(1228), + [anon_sym_bit_DASHor] = ACTIONS(1228), + [anon_sym_and] = ACTIONS(1228), + [anon_sym_xor] = ACTIONS(1228), + [anon_sym_or] = ACTIONS(1228), + [anon_sym_in2] = ACTIONS(1228), + [anon_sym_not_DASHin] = ACTIONS(1228), + [anon_sym_has] = ACTIONS(1228), + [anon_sym_not_DASHhas] = ACTIONS(1228), + [anon_sym_starts_DASHwith] = ACTIONS(1228), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1228), + [anon_sym_ends_DASHwith] = ACTIONS(1228), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1228), + [anon_sym_EQ_EQ] = ACTIONS(1228), + [anon_sym_BANG_EQ] = ACTIONS(1228), + [anon_sym_LT] = ACTIONS(1230), + [anon_sym_LT_EQ] = ACTIONS(1228), + [anon_sym_GT] = ACTIONS(1230), + [anon_sym_GT_EQ] = ACTIONS(1228), + [aux_sym_cmd_identifier_token6] = ACTIONS(1232), + [sym__newline] = ACTIONS(1012), + [anon_sym_SEMI] = ACTIONS(1012), + [anon_sym_PIPE] = ACTIONS(1012), + [anon_sym_err_GT_PIPE] = ACTIONS(1012), + [anon_sym_out_GT_PIPE] = ACTIONS(1012), + [anon_sym_e_GT_PIPE] = ACTIONS(1012), + [anon_sym_o_GT_PIPE] = ACTIONS(1012), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1012), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1012), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1012), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1012), + [anon_sym_GT2] = ACTIONS(1012), + [anon_sym_DASH2] = ACTIONS(1012), + [anon_sym_STAR2] = ACTIONS(1012), + [anon_sym_and2] = ACTIONS(1012), + [anon_sym_xor2] = ACTIONS(1012), + [anon_sym_or2] = ACTIONS(1012), + [anon_sym_not_DASHin2] = ACTIONS(1012), + [anon_sym_has2] = ACTIONS(1012), + [anon_sym_not_DASHhas2] = ACTIONS(1012), + [anon_sym_starts_DASHwith2] = ACTIONS(1012), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1012), + [anon_sym_ends_DASHwith2] = ACTIONS(1012), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1012), + [anon_sym_EQ_EQ2] = ACTIONS(1012), + [anon_sym_BANG_EQ2] = ACTIONS(1012), + [anon_sym_LT2] = ACTIONS(1012), + [anon_sym_LT_EQ2] = ACTIONS(1012), + [anon_sym_GT_EQ2] = ACTIONS(1012), + [anon_sym_EQ_TILDE2] = ACTIONS(1012), + [anon_sym_BANG_TILDE2] = ACTIONS(1012), + [anon_sym_like2] = ACTIONS(1012), + [anon_sym_not_DASHlike2] = ACTIONS(1012), + [anon_sym_STAR_STAR2] = ACTIONS(1012), + [anon_sym_PLUS_PLUS2] = ACTIONS(1012), + [anon_sym_SLASH2] = ACTIONS(1012), + [anon_sym_mod2] = ACTIONS(1012), + [anon_sym_SLASH_SLASH2] = ACTIONS(1012), + [anon_sym_PLUS2] = ACTIONS(1012), + [anon_sym_bit_DASHshl2] = ACTIONS(1012), + [anon_sym_bit_DASHshr2] = ACTIONS(1012), + [anon_sym_bit_DASHand2] = ACTIONS(1012), + [anon_sym_bit_DASHxor2] = ACTIONS(1012), + [anon_sym_bit_DASHor2] = ACTIONS(1012), + [anon_sym_err_GT] = ACTIONS(1012), + [anon_sym_out_GT] = ACTIONS(1012), + [anon_sym_e_GT] = ACTIONS(1012), + [anon_sym_o_GT] = ACTIONS(1012), + [anon_sym_err_PLUSout_GT] = ACTIONS(1012), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1012), + [anon_sym_o_PLUSe_GT] = ACTIONS(1012), + [anon_sym_e_PLUSo_GT] = ACTIONS(1012), + [anon_sym_err_GT_GT] = ACTIONS(1012), + [anon_sym_out_GT_GT] = ACTIONS(1012), + [anon_sym_e_GT_GT] = ACTIONS(1012), + [anon_sym_o_GT_GT] = ACTIONS(1012), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1012), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1012), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1012), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1012), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(189)] = { + [sym_comment] = STATE(189), + [ts_builtin_sym_end] = ACTIONS(1234), + [anon_sym_in] = ACTIONS(1020), + [anon_sym_STAR_STAR] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1228), + [anon_sym_STAR] = ACTIONS(1230), + [anon_sym_SLASH] = ACTIONS(1230), + [anon_sym_mod] = ACTIONS(1228), + [anon_sym_SLASH_SLASH] = ACTIONS(1228), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_DASH] = ACTIONS(1228), + [anon_sym_bit_DASHshl] = ACTIONS(1228), + [anon_sym_bit_DASHshr] = ACTIONS(1228), + [anon_sym_EQ_TILDE] = ACTIONS(1228), + [anon_sym_BANG_TILDE] = ACTIONS(1228), + [anon_sym_like] = ACTIONS(1228), + [anon_sym_not_DASHlike] = ACTIONS(1228), + [anon_sym_bit_DASHand] = ACTIONS(1228), + [anon_sym_bit_DASHxor] = ACTIONS(1228), + [anon_sym_bit_DASHor] = ACTIONS(1228), + [anon_sym_and] = ACTIONS(1228), + [anon_sym_xor] = ACTIONS(1228), + [anon_sym_or] = ACTIONS(1228), + [anon_sym_in2] = ACTIONS(1228), + [anon_sym_not_DASHin] = ACTIONS(1228), + [anon_sym_has] = ACTIONS(1228), + [anon_sym_not_DASHhas] = ACTIONS(1228), + [anon_sym_starts_DASHwith] = ACTIONS(1228), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1228), + [anon_sym_ends_DASHwith] = ACTIONS(1228), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1228), + [anon_sym_EQ_EQ] = ACTIONS(1228), + [anon_sym_BANG_EQ] = ACTIONS(1228), + [anon_sym_LT] = ACTIONS(1230), + [anon_sym_LT_EQ] = ACTIONS(1228), + [anon_sym_GT] = ACTIONS(1230), + [anon_sym_GT_EQ] = ACTIONS(1228), + [aux_sym_cmd_identifier_token6] = ACTIONS(1232), + [sym__newline] = ACTIONS(1020), + [anon_sym_SEMI] = ACTIONS(1020), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_err_GT_PIPE] = ACTIONS(1020), + [anon_sym_out_GT_PIPE] = ACTIONS(1020), + [anon_sym_e_GT_PIPE] = ACTIONS(1020), + [anon_sym_o_GT_PIPE] = ACTIONS(1020), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1020), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1020), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1020), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1020), + [anon_sym_GT2] = ACTIONS(1020), + [anon_sym_DASH2] = ACTIONS(1020), + [anon_sym_STAR2] = ACTIONS(1020), + [anon_sym_and2] = ACTIONS(1020), + [anon_sym_xor2] = ACTIONS(1020), + [anon_sym_or2] = ACTIONS(1020), + [anon_sym_not_DASHin2] = ACTIONS(1020), + [anon_sym_has2] = ACTIONS(1020), + [anon_sym_not_DASHhas2] = ACTIONS(1020), + [anon_sym_starts_DASHwith2] = ACTIONS(1020), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1020), + [anon_sym_ends_DASHwith2] = ACTIONS(1020), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1020), + [anon_sym_EQ_EQ2] = ACTIONS(1020), + [anon_sym_BANG_EQ2] = ACTIONS(1020), + [anon_sym_LT2] = ACTIONS(1020), + [anon_sym_LT_EQ2] = ACTIONS(1020), + [anon_sym_GT_EQ2] = ACTIONS(1020), + [anon_sym_EQ_TILDE2] = ACTIONS(1020), + [anon_sym_BANG_TILDE2] = ACTIONS(1020), + [anon_sym_like2] = ACTIONS(1020), + [anon_sym_not_DASHlike2] = ACTIONS(1020), + [anon_sym_STAR_STAR2] = ACTIONS(1020), + [anon_sym_PLUS_PLUS2] = ACTIONS(1020), + [anon_sym_SLASH2] = ACTIONS(1020), + [anon_sym_mod2] = ACTIONS(1020), + [anon_sym_SLASH_SLASH2] = ACTIONS(1020), + [anon_sym_PLUS2] = ACTIONS(1020), + [anon_sym_bit_DASHshl2] = ACTIONS(1020), + [anon_sym_bit_DASHshr2] = ACTIONS(1020), + [anon_sym_bit_DASHand2] = ACTIONS(1020), + [anon_sym_bit_DASHxor2] = ACTIONS(1020), + [anon_sym_bit_DASHor2] = ACTIONS(1020), + [anon_sym_err_GT] = ACTIONS(1020), + [anon_sym_out_GT] = ACTIONS(1020), + [anon_sym_e_GT] = ACTIONS(1020), + [anon_sym_o_GT] = ACTIONS(1020), + [anon_sym_err_PLUSout_GT] = ACTIONS(1020), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1020), + [anon_sym_o_PLUSe_GT] = ACTIONS(1020), + [anon_sym_e_PLUSo_GT] = ACTIONS(1020), + [anon_sym_err_GT_GT] = ACTIONS(1020), + [anon_sym_out_GT_GT] = ACTIONS(1020), + [anon_sym_e_GT_GT] = ACTIONS(1020), + [anon_sym_o_GT_GT] = ACTIONS(1020), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1020), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1020), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1020), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1020), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(190)] = { + [sym_comment] = STATE(190), + [anon_sym_in] = ACTIONS(1012), + [anon_sym_STAR_STAR] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1014), + [anon_sym_STAR] = ACTIONS(1016), + [anon_sym_SLASH] = ACTIONS(1016), + [anon_sym_mod] = ACTIONS(1014), + [anon_sym_SLASH_SLASH] = ACTIONS(1014), + [anon_sym_PLUS] = ACTIONS(1016), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_bit_DASHshl] = ACTIONS(1014), + [anon_sym_bit_DASHshr] = ACTIONS(1014), + [anon_sym_EQ_TILDE] = ACTIONS(1014), + [anon_sym_BANG_TILDE] = ACTIONS(1014), + [anon_sym_like] = ACTIONS(1014), + [anon_sym_not_DASHlike] = ACTIONS(1014), + [anon_sym_bit_DASHand] = ACTIONS(1014), + [anon_sym_bit_DASHxor] = ACTIONS(1014), + [anon_sym_bit_DASHor] = ACTIONS(1014), + [anon_sym_and] = ACTIONS(1014), + [anon_sym_xor] = ACTIONS(1014), + [anon_sym_or] = ACTIONS(1014), + [anon_sym_in2] = ACTIONS(1014), + [anon_sym_not_DASHin] = ACTIONS(1014), + [anon_sym_has] = ACTIONS(1014), + [anon_sym_not_DASHhas] = ACTIONS(1014), + [anon_sym_starts_DASHwith] = ACTIONS(1014), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1014), + [anon_sym_ends_DASHwith] = ACTIONS(1014), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1014), + [anon_sym_EQ_EQ] = ACTIONS(1014), + [anon_sym_BANG_EQ] = ACTIONS(1014), + [anon_sym_LT] = ACTIONS(1016), + [anon_sym_LT_EQ] = ACTIONS(1014), + [anon_sym_GT] = ACTIONS(1016), + [anon_sym_GT_EQ] = ACTIONS(1014), + [aux_sym_cmd_identifier_token6] = ACTIONS(1018), + [sym__newline] = ACTIONS(1012), + [anon_sym_SEMI] = ACTIONS(1012), + [anon_sym_PIPE] = ACTIONS(1012), + [anon_sym_err_GT_PIPE] = ACTIONS(1012), + [anon_sym_out_GT_PIPE] = ACTIONS(1012), + [anon_sym_e_GT_PIPE] = ACTIONS(1012), + [anon_sym_o_GT_PIPE] = ACTIONS(1012), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1012), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1012), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1012), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1012), + [anon_sym_GT2] = ACTIONS(1012), + [anon_sym_DASH2] = ACTIONS(1012), + [anon_sym_STAR2] = ACTIONS(1012), + [anon_sym_and2] = ACTIONS(1012), + [anon_sym_xor2] = ACTIONS(1012), + [anon_sym_or2] = ACTIONS(1012), + [anon_sym_not_DASHin2] = ACTIONS(1012), + [anon_sym_has2] = ACTIONS(1012), + [anon_sym_not_DASHhas2] = ACTIONS(1012), + [anon_sym_starts_DASHwith2] = ACTIONS(1012), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1012), + [anon_sym_ends_DASHwith2] = ACTIONS(1012), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1012), + [anon_sym_EQ_EQ2] = ACTIONS(1012), + [anon_sym_BANG_EQ2] = ACTIONS(1012), + [anon_sym_LT2] = ACTIONS(1012), + [anon_sym_LT_EQ2] = ACTIONS(1012), + [anon_sym_GT_EQ2] = ACTIONS(1012), + [anon_sym_EQ_TILDE2] = ACTIONS(1012), + [anon_sym_BANG_TILDE2] = ACTIONS(1012), + [anon_sym_like2] = ACTIONS(1012), + [anon_sym_not_DASHlike2] = ACTIONS(1012), + [anon_sym_STAR_STAR2] = ACTIONS(1012), + [anon_sym_PLUS_PLUS2] = ACTIONS(1012), + [anon_sym_SLASH2] = ACTIONS(1012), + [anon_sym_mod2] = ACTIONS(1012), + [anon_sym_SLASH_SLASH2] = ACTIONS(1012), + [anon_sym_PLUS2] = ACTIONS(1012), + [anon_sym_bit_DASHshl2] = ACTIONS(1012), + [anon_sym_bit_DASHshr2] = ACTIONS(1012), + [anon_sym_bit_DASHand2] = ACTIONS(1012), + [anon_sym_bit_DASHxor2] = ACTIONS(1012), + [anon_sym_bit_DASHor2] = ACTIONS(1012), + [anon_sym_err_GT] = ACTIONS(1012), + [anon_sym_out_GT] = ACTIONS(1012), + [anon_sym_e_GT] = ACTIONS(1012), + [anon_sym_o_GT] = ACTIONS(1012), + [anon_sym_err_PLUSout_GT] = ACTIONS(1012), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1012), + [anon_sym_o_PLUSe_GT] = ACTIONS(1012), + [anon_sym_e_PLUSo_GT] = ACTIONS(1012), + [anon_sym_err_GT_GT] = ACTIONS(1012), + [anon_sym_out_GT_GT] = ACTIONS(1012), + [anon_sym_e_GT_GT] = ACTIONS(1012), + [anon_sym_o_GT_GT] = ACTIONS(1012), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1012), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1012), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1012), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1012), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(191)] = { + [sym_comment] = STATE(191), + [anon_sym_in] = ACTIONS(1020), + [anon_sym_STAR_STAR] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1014), + [anon_sym_STAR] = ACTIONS(1016), + [anon_sym_SLASH] = ACTIONS(1016), + [anon_sym_mod] = ACTIONS(1014), + [anon_sym_SLASH_SLASH] = ACTIONS(1014), + [anon_sym_PLUS] = ACTIONS(1016), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_bit_DASHshl] = ACTIONS(1014), + [anon_sym_bit_DASHshr] = ACTIONS(1014), + [anon_sym_EQ_TILDE] = ACTIONS(1014), + [anon_sym_BANG_TILDE] = ACTIONS(1014), + [anon_sym_like] = ACTIONS(1014), + [anon_sym_not_DASHlike] = ACTIONS(1014), + [anon_sym_bit_DASHand] = ACTIONS(1014), + [anon_sym_bit_DASHxor] = ACTIONS(1014), + [anon_sym_bit_DASHor] = ACTIONS(1014), + [anon_sym_and] = ACTIONS(1014), + [anon_sym_xor] = ACTIONS(1014), + [anon_sym_or] = ACTIONS(1014), + [anon_sym_in2] = ACTIONS(1014), + [anon_sym_not_DASHin] = ACTIONS(1014), + [anon_sym_has] = ACTIONS(1014), + [anon_sym_not_DASHhas] = ACTIONS(1014), + [anon_sym_starts_DASHwith] = ACTIONS(1014), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1014), + [anon_sym_ends_DASHwith] = ACTIONS(1014), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1014), + [anon_sym_EQ_EQ] = ACTIONS(1014), + [anon_sym_BANG_EQ] = ACTIONS(1014), + [anon_sym_LT] = ACTIONS(1016), + [anon_sym_LT_EQ] = ACTIONS(1014), + [anon_sym_GT] = ACTIONS(1016), + [anon_sym_GT_EQ] = ACTIONS(1014), + [aux_sym_cmd_identifier_token6] = ACTIONS(1018), + [sym__newline] = ACTIONS(1020), + [anon_sym_SEMI] = ACTIONS(1020), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_err_GT_PIPE] = ACTIONS(1020), + [anon_sym_out_GT_PIPE] = ACTIONS(1020), + [anon_sym_e_GT_PIPE] = ACTIONS(1020), + [anon_sym_o_GT_PIPE] = ACTIONS(1020), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1020), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1020), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1020), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1020), + [anon_sym_GT2] = ACTIONS(1020), + [anon_sym_DASH2] = ACTIONS(1020), + [anon_sym_STAR2] = ACTIONS(1020), + [anon_sym_and2] = ACTIONS(1020), + [anon_sym_xor2] = ACTIONS(1020), + [anon_sym_or2] = ACTIONS(1020), + [anon_sym_not_DASHin2] = ACTIONS(1020), + [anon_sym_has2] = ACTIONS(1020), + [anon_sym_not_DASHhas2] = ACTIONS(1020), + [anon_sym_starts_DASHwith2] = ACTIONS(1020), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1020), + [anon_sym_ends_DASHwith2] = ACTIONS(1020), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1020), + [anon_sym_EQ_EQ2] = ACTIONS(1020), + [anon_sym_BANG_EQ2] = ACTIONS(1020), + [anon_sym_LT2] = ACTIONS(1020), + [anon_sym_LT_EQ2] = ACTIONS(1020), + [anon_sym_GT_EQ2] = ACTIONS(1020), + [anon_sym_EQ_TILDE2] = ACTIONS(1020), + [anon_sym_BANG_TILDE2] = ACTIONS(1020), + [anon_sym_like2] = ACTIONS(1020), + [anon_sym_not_DASHlike2] = ACTIONS(1020), + [anon_sym_STAR_STAR2] = ACTIONS(1020), + [anon_sym_PLUS_PLUS2] = ACTIONS(1020), + [anon_sym_SLASH2] = ACTIONS(1020), + [anon_sym_mod2] = ACTIONS(1020), + [anon_sym_SLASH_SLASH2] = ACTIONS(1020), + [anon_sym_PLUS2] = ACTIONS(1020), + [anon_sym_bit_DASHshl2] = ACTIONS(1020), + [anon_sym_bit_DASHshr2] = ACTIONS(1020), + [anon_sym_bit_DASHand2] = ACTIONS(1020), + [anon_sym_bit_DASHxor2] = ACTIONS(1020), + [anon_sym_bit_DASHor2] = ACTIONS(1020), + [anon_sym_err_GT] = ACTIONS(1020), + [anon_sym_out_GT] = ACTIONS(1020), + [anon_sym_e_GT] = ACTIONS(1020), + [anon_sym_o_GT] = ACTIONS(1020), + [anon_sym_err_PLUSout_GT] = ACTIONS(1020), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1020), + [anon_sym_o_PLUSe_GT] = ACTIONS(1020), + [anon_sym_e_PLUSo_GT] = ACTIONS(1020), + [anon_sym_err_GT_GT] = ACTIONS(1020), + [anon_sym_out_GT_GT] = ACTIONS(1020), + [anon_sym_e_GT_GT] = ACTIONS(1020), + [anon_sym_o_GT_GT] = ACTIONS(1020), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1020), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1020), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1020), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1020), + [anon_sym_POUND] = ACTIONS(103), + }, [STATE(192)] = { [sym_comment] = STATE(192), [anon_sym_in] = ACTIONS(1020), - [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), + [anon_sym_STAR_STAR] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1014), + [anon_sym_STAR] = ACTIONS(1016), + [anon_sym_SLASH] = ACTIONS(1016), + [anon_sym_mod] = ACTIONS(1014), + [anon_sym_SLASH_SLASH] = ACTIONS(1014), + [anon_sym_PLUS] = ACTIONS(1016), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_bit_DASHshl] = ACTIONS(1014), + [anon_sym_bit_DASHshr] = ACTIONS(1014), + [anon_sym_EQ_TILDE] = ACTIONS(1014), + [anon_sym_BANG_TILDE] = ACTIONS(1014), + [anon_sym_like] = ACTIONS(1014), + [anon_sym_not_DASHlike] = ACTIONS(1014), + [anon_sym_bit_DASHand] = ACTIONS(1014), + [anon_sym_bit_DASHxor] = ACTIONS(1014), + [anon_sym_bit_DASHor] = ACTIONS(1014), + [anon_sym_and] = ACTIONS(1014), + [anon_sym_xor] = ACTIONS(1014), + [anon_sym_or] = ACTIONS(1014), + [anon_sym_in2] = ACTIONS(1014), + [anon_sym_not_DASHin] = ACTIONS(1014), + [anon_sym_has] = ACTIONS(1014), + [anon_sym_not_DASHhas] = ACTIONS(1014), + [anon_sym_starts_DASHwith] = ACTIONS(1014), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1014), + [anon_sym_ends_DASHwith] = ACTIONS(1014), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1014), + [anon_sym_EQ_EQ] = ACTIONS(1014), + [anon_sym_BANG_EQ] = ACTIONS(1014), + [anon_sym_LT] = ACTIONS(1016), + [anon_sym_LT_EQ] = ACTIONS(1014), + [anon_sym_GT] = ACTIONS(1016), + [anon_sym_GT_EQ] = ACTIONS(1014), + [aux_sym_cmd_identifier_token6] = ACTIONS(1018), [sym__newline] = ACTIONS(1020), [anon_sym_PIPE] = ACTIONS(1020), [anon_sym_err_GT_PIPE] = ACTIONS(1020), @@ -61223,141 +61977,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(193)] = { [sym_comment] = STATE(193), - [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_in] = ACTIONS(1012), + [anon_sym_STAR_STAR] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1014), + [anon_sym_STAR] = ACTIONS(1016), + [anon_sym_SLASH] = ACTIONS(1016), + [anon_sym_mod] = ACTIONS(1014), + [anon_sym_SLASH_SLASH] = ACTIONS(1014), + [anon_sym_PLUS] = ACTIONS(1016), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_bit_DASHshl] = ACTIONS(1014), + [anon_sym_bit_DASHshr] = ACTIONS(1014), + [anon_sym_EQ_TILDE] = ACTIONS(1014), + [anon_sym_BANG_TILDE] = ACTIONS(1014), + [anon_sym_like] = ACTIONS(1014), + [anon_sym_not_DASHlike] = ACTIONS(1014), + [anon_sym_bit_DASHand] = ACTIONS(1014), + [anon_sym_bit_DASHxor] = ACTIONS(1014), + [anon_sym_bit_DASHor] = ACTIONS(1014), + [anon_sym_and] = ACTIONS(1014), + [anon_sym_xor] = ACTIONS(1014), + [anon_sym_or] = ACTIONS(1014), + [anon_sym_in2] = ACTIONS(1014), + [anon_sym_not_DASHin] = ACTIONS(1014), + [anon_sym_has] = ACTIONS(1014), + [anon_sym_not_DASHhas] = ACTIONS(1014), + [anon_sym_starts_DASHwith] = ACTIONS(1014), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1014), + [anon_sym_ends_DASHwith] = ACTIONS(1014), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1014), + [anon_sym_EQ_EQ] = ACTIONS(1014), + [anon_sym_BANG_EQ] = ACTIONS(1014), + [anon_sym_LT] = ACTIONS(1016), + [anon_sym_LT_EQ] = ACTIONS(1014), + [anon_sym_GT] = ACTIONS(1016), + [anon_sym_GT_EQ] = ACTIONS(1014), + [aux_sym_cmd_identifier_token6] = ACTIONS(1018), + [sym__newline] = ACTIONS(1012), + [anon_sym_PIPE] = ACTIONS(1012), + [anon_sym_err_GT_PIPE] = ACTIONS(1012), + [anon_sym_out_GT_PIPE] = ACTIONS(1012), + [anon_sym_e_GT_PIPE] = ACTIONS(1012), + [anon_sym_o_GT_PIPE] = ACTIONS(1012), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1012), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1012), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1012), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1012), + [anon_sym_GT2] = ACTIONS(1012), + [anon_sym_DASH2] = ACTIONS(1012), + [anon_sym_STAR2] = ACTIONS(1012), + [anon_sym_and2] = ACTIONS(1012), + [anon_sym_xor2] = ACTIONS(1012), + [anon_sym_or2] = ACTIONS(1012), + [anon_sym_not_DASHin2] = ACTIONS(1012), + [anon_sym_has2] = ACTIONS(1012), + [anon_sym_not_DASHhas2] = ACTIONS(1012), + [anon_sym_starts_DASHwith2] = ACTIONS(1012), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1012), + [anon_sym_ends_DASHwith2] = ACTIONS(1012), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1012), + [anon_sym_EQ_EQ2] = ACTIONS(1012), + [anon_sym_BANG_EQ2] = ACTIONS(1012), + [anon_sym_LT2] = ACTIONS(1012), + [anon_sym_LT_EQ2] = ACTIONS(1012), + [anon_sym_GT_EQ2] = ACTIONS(1012), + [anon_sym_EQ_TILDE2] = ACTIONS(1012), + [anon_sym_BANG_TILDE2] = ACTIONS(1012), + [anon_sym_like2] = ACTIONS(1012), + [anon_sym_not_DASHlike2] = ACTIONS(1012), + [anon_sym_STAR_STAR2] = ACTIONS(1012), + [anon_sym_PLUS_PLUS2] = ACTIONS(1012), + [anon_sym_SLASH2] = ACTIONS(1012), + [anon_sym_mod2] = ACTIONS(1012), + [anon_sym_SLASH_SLASH2] = ACTIONS(1012), + [anon_sym_PLUS2] = ACTIONS(1012), + [anon_sym_bit_DASHshl2] = ACTIONS(1012), + [anon_sym_bit_DASHshr2] = ACTIONS(1012), + [anon_sym_bit_DASHand2] = ACTIONS(1012), + [anon_sym_bit_DASHxor2] = ACTIONS(1012), + [anon_sym_bit_DASHor2] = ACTIONS(1012), + [anon_sym_err_GT] = ACTIONS(1012), + [anon_sym_out_GT] = ACTIONS(1012), + [anon_sym_e_GT] = ACTIONS(1012), + [anon_sym_o_GT] = ACTIONS(1012), + [anon_sym_err_PLUSout_GT] = ACTIONS(1012), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1012), + [anon_sym_o_PLUSe_GT] = ACTIONS(1012), + [anon_sym_e_PLUSo_GT] = ACTIONS(1012), + [anon_sym_err_GT_GT] = ACTIONS(1012), + [anon_sym_out_GT_GT] = ACTIONS(1012), + [anon_sym_e_GT_GT] = ACTIONS(1012), + [anon_sym_o_GT_GT] = ACTIONS(1012), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1012), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1012), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1012), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1012), [anon_sym_POUND] = ACTIONS(103), }, [STATE(194)] = { - [sym_expr_parenthesized] = STATE(4007), - [sym__spread_parenthesized] = STATE(3130), - [sym_val_range] = STATE(3137), - [sym__val_range] = STATE(4685), - [sym__value] = STATE(3137), - [sym_val_nothing] = STATE(3023), - [sym_val_bool] = STATE(4092), - [sym__spread_variable] = STATE(3138), - [sym_val_variable] = STATE(3984), - [sym_val_cellpath] = STATE(3023), - [sym_val_number] = STATE(3023), - [sym__val_number_decimal] = STATE(3528), - [sym__val_number] = STATE(3192), - [sym_val_duration] = STATE(3023), - [sym_val_filesize] = STATE(3023), - [sym_val_binary] = STATE(3023), - [sym_val_string] = STATE(3023), - [sym__raw_str] = STATE(2483), - [sym__str_double_quotes] = STATE(2483), - [sym__str_single_quotes] = STATE(2483), - [sym__str_back_ticks] = STATE(2483), - [sym_val_interpolated] = STATE(3023), - [sym__inter_single_quotes] = STATE(3094), - [sym__inter_double_quotes] = STATE(3095), - [sym_val_list] = STATE(3023), - [sym__spread_list] = STATE(3130), - [sym_val_record] = STATE(3023), - [sym_val_table] = STATE(3023), - [sym_val_closure] = STATE(3023), - [sym__cmd_arg] = STATE(3139), - [sym_redirection] = STATE(3140), - [sym__flag] = STATE(3141), - [sym_short_flag] = STATE(3142), - [sym_long_flag] = STATE(3142), - [sym_unquoted] = STATE(2867), - [sym__unquoted_with_expr] = STATE(3143), - [sym__unquoted_anonymous_prefix] = STATE(4685), + [sym_expr_parenthesized] = STATE(4130), + [sym__spread_parenthesized] = STATE(3129), + [sym_val_range] = STATE(3130), + [sym__val_range] = STATE(4886), + [sym__value] = STATE(3130), + [sym_val_nothing] = STATE(3228), + [sym_val_bool] = STATE(4233), + [sym__spread_variable] = STATE(3131), + [sym_val_variable] = STATE(4083), + [sym_val_cellpath] = STATE(3228), + [sym_val_number] = STATE(3228), + [sym__val_number_decimal] = STATE(3596), + [sym__val_number] = STATE(3229), + [sym_val_duration] = STATE(3228), + [sym_val_filesize] = STATE(3228), + [sym_val_binary] = STATE(3228), + [sym_val_string] = STATE(3228), + [sym__raw_str] = STATE(2477), + [sym__str_double_quotes] = STATE(2477), + [sym__str_single_quotes] = STATE(2477), + [sym__str_back_ticks] = STATE(2477), + [sym_val_interpolated] = STATE(3228), + [sym__inter_single_quotes] = STATE(3047), + [sym__inter_double_quotes] = STATE(3048), + [sym_val_list] = STATE(3228), + [sym__spread_list] = STATE(3129), + [sym_val_record] = STATE(3228), + [sym_val_table] = STATE(3228), + [sym_val_closure] = STATE(3228), + [sym__cmd_arg] = STATE(3132), + [sym_redirection] = STATE(3133), + [sym__flag] = STATE(3134), + [sym_short_flag] = STATE(3135), + [sym_long_flag] = STATE(3135), + [sym_unquoted] = STATE(2742), + [sym__unquoted_with_expr] = STATE(3136), + [sym__unquoted_anonymous_prefix] = STATE(4886), [sym_comment] = STATE(194), [anon_sym_true] = ACTIONS(1236), [anon_sym_false] = ACTIONS(1236), @@ -61365,93 +62119,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token3] = ACTIONS(1240), [aux_sym_cmd_identifier_token4] = ACTIONS(1240), [aux_sym_cmd_identifier_token5] = ACTIONS(1240), - [sym__newline] = ACTIONS(804), - [sym__space] = ACTIONS(882), - [anon_sym_SEMI] = ACTIONS(804), - [anon_sym_LBRACK] = ACTIONS(806), - [anon_sym_LPAREN] = ACTIONS(808), - [anon_sym_DOLLAR] = ACTIONS(810), + [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), [anon_sym_DASH_DASH] = ACTIONS(1242), [anon_sym_DASH2] = ACTIONS(1244), - [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(805), [anon_sym_DOT_DOT] = ACTIONS(1246), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(820), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(809), [anon_sym_DOT_DOT_EQ] = ACTIONS(1248), [anon_sym_DOT_DOT_LT] = ACTIONS(1248), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(824), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(813), [aux_sym__val_number_decimal_token1] = ACTIONS(1250), [aux_sym__val_number_decimal_token2] = ACTIONS(1250), [aux_sym__val_number_decimal_token3] = ACTIONS(1252), [aux_sym__val_number_decimal_token4] = ACTIONS(1252), - [aux_sym__val_number_token1] = ACTIONS(830), - [aux_sym__val_number_token2] = ACTIONS(830), - [aux_sym__val_number_token3] = ACTIONS(830), - [anon_sym_0b] = ACTIONS(832), - [anon_sym_0o] = ACTIONS(834), - [anon_sym_0x] = ACTIONS(834), + [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(1254), - [anon_sym_DQUOTE] = ACTIONS(838), - [anon_sym_SQUOTE] = ACTIONS(840), - [anon_sym_BQUOTE] = ACTIONS(842), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(846), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(848), - [anon_sym_err_GT] = ACTIONS(852), - [anon_sym_out_GT] = ACTIONS(852), - [anon_sym_e_GT] = ACTIONS(852), - [anon_sym_o_GT] = ACTIONS(852), - [anon_sym_err_PLUSout_GT] = ACTIONS(852), - [anon_sym_out_PLUSerr_GT] = ACTIONS(852), - [anon_sym_o_PLUSe_GT] = ACTIONS(852), - [anon_sym_e_PLUSo_GT] = ACTIONS(852), - [anon_sym_err_GT_GT] = ACTIONS(852), - [anon_sym_out_GT_GT] = ACTIONS(852), - [anon_sym_e_GT_GT] = ACTIONS(852), - [anon_sym_o_GT_GT] = ACTIONS(852), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(852), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(852), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(852), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(852), - [aux_sym_unquoted_token1] = ACTIONS(854), + [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(856), + [sym_raw_string_begin] = ACTIONS(843), }, [STATE(195)] = { - [sym_cmd_identifier] = STATE(2932), - [aux_sym__repeat_newline] = STATE(234), - [sym_ctrl_if_parenthesized] = STATE(3482), - [sym_block] = STATE(3483), - [sym__expression_parenthesized] = STATE(3483), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2163), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(315), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3483), + [sym_cmd_identifier] = STATE(3010), + [aux_sym__repeat_newline] = STATE(207), + [sym_ctrl_if_parenthesized] = STATE(3479), + [sym_block] = STATE(3485), + [sym__expression_parenthesized] = STATE(3485), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3485), [sym_comment] = STATE(195), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -61467,32 +62221,33 @@ 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(1010), + [anon_sym_if] = ACTIONS(1256), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [sym__newline] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [sym__newline] = ACTIONS(1264), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), [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(1266), - [aux_sym__val_number_decimal_token2] = ACTIONS(1268), - [aux_sym__val_number_decimal_token3] = ACTIONS(1270), - [aux_sym__val_number_decimal_token4] = ACTIONS(1270), + [aux_sym__val_number_decimal_token1] = ACTIONS(1268), + [aux_sym__val_number_decimal_token2] = ACTIONS(1270), + [aux_sym__val_number_decimal_token3] = ACTIONS(1272), + [aux_sym__val_number_decimal_token4] = ACTIONS(1272), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -61510,41 +62265,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(2932), - [aux_sym__repeat_newline] = STATE(1413), - [sym_ctrl_if_parenthesized] = STATE(3405), - [sym_block] = STATE(3408), - [sym__expression_parenthesized] = STATE(3408), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2163), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(306), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3408), + [sym_cmd_identifier] = STATE(3010), + [aux_sym__repeat_newline] = STATE(203), + [sym_ctrl_if_parenthesized] = STATE(3473), + [sym_block] = STATE(3474), + [sym__expression_parenthesized] = STATE(3474), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3474), [sym_comment] = STATE(196), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -61560,32 +62315,33 @@ 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(1256), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [sym__newline] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [sym__newline] = ACTIONS(1264), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), [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(1272), - [aux_sym__val_number_decimal_token2] = ACTIONS(1274), - [aux_sym__val_number_decimal_token3] = ACTIONS(1276), - [aux_sym__val_number_decimal_token4] = ACTIONS(1276), + [aux_sym__val_number_decimal_token1] = ACTIONS(1268), + [aux_sym__val_number_decimal_token2] = ACTIONS(1270), + [aux_sym__val_number_decimal_token3] = ACTIONS(1272), + [aux_sym__val_number_decimal_token4] = ACTIONS(1272), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -61603,41 +62359,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(2932), - [aux_sym__repeat_newline] = STATE(200), - [sym_ctrl_if_parenthesized] = STATE(3370), - [sym_block] = STATE(3383), - [sym__expression_parenthesized] = STATE(3383), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2163), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(316), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3383), + [sym_cmd_identifier] = STATE(3010), + [aux_sym__repeat_newline] = STATE(1412), + [sym_ctrl_if_parenthesized] = STATE(3476), + [sym_block] = STATE(3477), + [sym__expression_parenthesized] = STATE(3477), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3477), [sym_comment] = STATE(197), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -61653,32 +62409,33 @@ 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(1278), + [anon_sym_if] = ACTIONS(1256), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [sym__newline] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [sym__newline] = ACTIONS(1264), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), [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(1280), - [aux_sym__val_number_decimal_token2] = ACTIONS(1282), - [aux_sym__val_number_decimal_token3] = ACTIONS(1284), - [aux_sym__val_number_decimal_token4] = ACTIONS(1284), + [aux_sym__val_number_decimal_token1] = ACTIONS(1268), + [aux_sym__val_number_decimal_token2] = ACTIONS(1270), + [aux_sym__val_number_decimal_token3] = ACTIONS(1272), + [aux_sym__val_number_decimal_token4] = ACTIONS(1272), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -61696,41 +62453,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(2932), - [aux_sym__repeat_newline] = STATE(203), - [sym_ctrl_if_parenthesized] = STATE(3475), - [sym_block] = STATE(3484), - [sym__expression_parenthesized] = STATE(3484), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2163), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(316), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3484), + [sym_cmd_identifier] = STATE(3010), + [aux_sym__repeat_newline] = STATE(205), + [sym_ctrl_if_parenthesized] = STATE(3476), + [sym_block] = STATE(3477), + [sym__expression_parenthesized] = STATE(3477), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3477), [sym_comment] = STATE(198), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -61746,32 +62503,33 @@ 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(1278), + [anon_sym_if] = ACTIONS(1256), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [sym__newline] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [sym__newline] = ACTIONS(1264), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), [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(1280), - [aux_sym__val_number_decimal_token2] = ACTIONS(1282), - [aux_sym__val_number_decimal_token3] = ACTIONS(1284), - [aux_sym__val_number_decimal_token4] = ACTIONS(1284), + [aux_sym__val_number_decimal_token1] = ACTIONS(1268), + [aux_sym__val_number_decimal_token2] = ACTIONS(1270), + [aux_sym__val_number_decimal_token3] = ACTIONS(1272), + [aux_sym__val_number_decimal_token4] = ACTIONS(1272), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -61789,41 +62547,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(2932), - [aux_sym__repeat_newline] = STATE(205), - [sym_ctrl_if_parenthesized] = STATE(3503), - [sym_block] = STATE(3504), - [sym__expression_parenthesized] = STATE(3504), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2163), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(316), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3504), + [sym_cmd_identifier] = STATE(3010), + [aux_sym__repeat_newline] = STATE(1412), + [sym_ctrl_if_parenthesized] = STATE(3479), + [sym_block] = STATE(3485), + [sym__expression_parenthesized] = STATE(3485), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3485), [sym_comment] = STATE(199), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -61839,32 +62597,33 @@ 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(1278), + [anon_sym_if] = ACTIONS(1256), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [sym__newline] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [sym__newline] = ACTIONS(1264), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), [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(1280), - [aux_sym__val_number_decimal_token2] = ACTIONS(1282), - [aux_sym__val_number_decimal_token3] = ACTIONS(1284), - [aux_sym__val_number_decimal_token4] = ACTIONS(1284), + [aux_sym__val_number_decimal_token1] = ACTIONS(1268), + [aux_sym__val_number_decimal_token2] = ACTIONS(1270), + [aux_sym__val_number_decimal_token3] = ACTIONS(1272), + [aux_sym__val_number_decimal_token4] = ACTIONS(1272), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -61882,41 +62641,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(2932), - [aux_sym__repeat_newline] = STATE(1413), - [sym_ctrl_if_parenthesized] = STATE(3415), - [sym_block] = STATE(3435), - [sym__expression_parenthesized] = STATE(3435), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2163), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(316), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3435), + [sym_cmd_identifier] = STATE(3010), + [aux_sym__repeat_newline] = STATE(217), + [sym_ctrl_if_parenthesized] = STATE(3396), + [sym_block] = STATE(3575), + [sym__expression_parenthesized] = STATE(3575), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(308), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3575), [sym_comment] = STATE(200), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -61932,32 +62691,33 @@ 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(1278), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [sym__newline] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [sym__newline] = ACTIONS(1264), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), [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(1280), - [aux_sym__val_number_decimal_token2] = ACTIONS(1282), - [aux_sym__val_number_decimal_token3] = ACTIONS(1284), - [aux_sym__val_number_decimal_token4] = ACTIONS(1284), + [aux_sym__val_number_decimal_token1] = ACTIONS(1274), + [aux_sym__val_number_decimal_token2] = ACTIONS(1276), + [aux_sym__val_number_decimal_token3] = ACTIONS(1278), + [aux_sym__val_number_decimal_token4] = ACTIONS(1278), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -61975,41 +62735,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(2932), - [aux_sym__repeat_newline] = STATE(207), - [sym_ctrl_if_parenthesized] = STATE(3415), - [sym_block] = STATE(3435), - [sym__expression_parenthesized] = STATE(3435), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2163), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(316), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3435), + [sym_cmd_identifier] = STATE(3010), + [aux_sym__repeat_newline] = STATE(1412), + [sym_ctrl_if_parenthesized] = STATE(3488), + [sym_block] = STATE(3489), + [sym__expression_parenthesized] = STATE(3489), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3489), [sym_comment] = STATE(201), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -62025,32 +62785,33 @@ 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(1278), + [anon_sym_if] = ACTIONS(1256), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [sym__newline] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [sym__newline] = ACTIONS(1264), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), [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(1280), - [aux_sym__val_number_decimal_token2] = ACTIONS(1282), - [aux_sym__val_number_decimal_token3] = ACTIONS(1284), - [aux_sym__val_number_decimal_token4] = ACTIONS(1284), + [aux_sym__val_number_decimal_token1] = ACTIONS(1268), + [aux_sym__val_number_decimal_token2] = ACTIONS(1270), + [aux_sym__val_number_decimal_token3] = ACTIONS(1272), + [aux_sym__val_number_decimal_token4] = ACTIONS(1272), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62068,41 +62829,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(2932), + [sym_cmd_identifier] = STATE(3010), [aux_sym__repeat_newline] = STATE(209), - [sym_ctrl_if_parenthesized] = STATE(3449), - [sym_block] = STATE(3450), - [sym__expression_parenthesized] = STATE(3450), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2163), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(316), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3450), + [sym_ctrl_if_parenthesized] = STATE(3488), + [sym_block] = STATE(3489), + [sym__expression_parenthesized] = STATE(3489), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3489), [sym_comment] = STATE(202), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -62118,32 +62879,33 @@ 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(1278), + [anon_sym_if] = ACTIONS(1256), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [sym__newline] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [sym__newline] = ACTIONS(1264), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), [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(1280), - [aux_sym__val_number_decimal_token2] = ACTIONS(1282), - [aux_sym__val_number_decimal_token3] = ACTIONS(1284), - [aux_sym__val_number_decimal_token4] = ACTIONS(1284), + [aux_sym__val_number_decimal_token1] = ACTIONS(1268), + [aux_sym__val_number_decimal_token2] = ACTIONS(1270), + [aux_sym__val_number_decimal_token3] = ACTIONS(1272), + [aux_sym__val_number_decimal_token4] = ACTIONS(1272), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62161,41 +62923,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(2932), - [aux_sym__repeat_newline] = STATE(1413), - [sym_ctrl_if_parenthesized] = STATE(3482), - [sym_block] = STATE(3483), - [sym__expression_parenthesized] = STATE(3483), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2163), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(316), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3483), + [sym_cmd_identifier] = STATE(3010), + [aux_sym__repeat_newline] = STATE(1412), + [sym_ctrl_if_parenthesized] = STATE(3571), + [sym_block] = STATE(3496), + [sym__expression_parenthesized] = STATE(3496), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3496), [sym_comment] = STATE(203), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -62211,32 +62973,33 @@ 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(1278), + [anon_sym_if] = ACTIONS(1256), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [sym__newline] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [sym__newline] = ACTIONS(1264), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), [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(1280), - [aux_sym__val_number_decimal_token2] = ACTIONS(1282), - [aux_sym__val_number_decimal_token3] = ACTIONS(1284), - [aux_sym__val_number_decimal_token4] = ACTIONS(1284), + [aux_sym__val_number_decimal_token1] = ACTIONS(1268), + [aux_sym__val_number_decimal_token2] = ACTIONS(1270), + [aux_sym__val_number_decimal_token3] = ACTIONS(1272), + [aux_sym__val_number_decimal_token4] = ACTIONS(1272), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62254,41 +63017,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(2932), - [aux_sym__repeat_newline] = STATE(211), - [sym_ctrl_if_parenthesized] = STATE(3482), - [sym_block] = STATE(3483), - [sym__expression_parenthesized] = STATE(3483), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2163), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(316), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3483), + [sym_cmd_identifier] = STATE(3010), + [aux_sym__repeat_newline] = STATE(210), + [sym_ctrl_if_parenthesized] = STATE(3571), + [sym_block] = STATE(3496), + [sym__expression_parenthesized] = STATE(3496), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3496), [sym_comment] = STATE(204), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -62304,32 +63067,33 @@ 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(1278), + [anon_sym_if] = ACTIONS(1256), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [sym__newline] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [sym__newline] = ACTIONS(1264), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), [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(1280), - [aux_sym__val_number_decimal_token2] = ACTIONS(1282), - [aux_sym__val_number_decimal_token3] = ACTIONS(1284), - [aux_sym__val_number_decimal_token4] = ACTIONS(1284), + [aux_sym__val_number_decimal_token1] = ACTIONS(1268), + [aux_sym__val_number_decimal_token2] = ACTIONS(1270), + [aux_sym__val_number_decimal_token3] = ACTIONS(1272), + [aux_sym__val_number_decimal_token4] = ACTIONS(1272), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62347,41 +63111,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(2932), - [aux_sym__repeat_newline] = STATE(1413), - [sym_ctrl_if_parenthesized] = STATE(3486), - [sym_block] = STATE(3487), - [sym__expression_parenthesized] = STATE(3487), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2163), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(316), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3487), + [sym_cmd_identifier] = STATE(3010), + [aux_sym__repeat_newline] = STATE(1412), + [sym_ctrl_if_parenthesized] = STATE(3398), + [sym_block] = STATE(3399), + [sym__expression_parenthesized] = STATE(3399), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3399), [sym_comment] = STATE(205), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -62397,32 +63161,33 @@ 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(1278), + [anon_sym_if] = ACTIONS(1256), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [sym__newline] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [sym__newline] = ACTIONS(1264), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), [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(1280), - [aux_sym__val_number_decimal_token2] = ACTIONS(1282), - [aux_sym__val_number_decimal_token3] = ACTIONS(1284), - [aux_sym__val_number_decimal_token4] = ACTIONS(1284), + [aux_sym__val_number_decimal_token1] = ACTIONS(1268), + [aux_sym__val_number_decimal_token2] = ACTIONS(1270), + [aux_sym__val_number_decimal_token3] = ACTIONS(1272), + [aux_sym__val_number_decimal_token4] = ACTIONS(1272), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62440,41 +63205,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(2932), - [aux_sym__repeat_newline] = STATE(266), - [sym_ctrl_if_parenthesized] = STATE(3486), - [sym_block] = STATE(3487), - [sym__expression_parenthesized] = STATE(3487), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2163), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(316), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3487), + [sym_cmd_identifier] = STATE(3010), + [aux_sym__repeat_newline] = STATE(212), + [sym_ctrl_if_parenthesized] = STATE(3398), + [sym_block] = STATE(3399), + [sym__expression_parenthesized] = STATE(3399), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3399), [sym_comment] = STATE(206), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -62490,32 +63255,33 @@ 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(1278), + [anon_sym_if] = ACTIONS(1256), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [sym__newline] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [sym__newline] = ACTIONS(1264), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), [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(1280), - [aux_sym__val_number_decimal_token2] = ACTIONS(1282), - [aux_sym__val_number_decimal_token3] = ACTIONS(1284), - [aux_sym__val_number_decimal_token4] = ACTIONS(1284), + [aux_sym__val_number_decimal_token1] = ACTIONS(1268), + [aux_sym__val_number_decimal_token2] = ACTIONS(1270), + [aux_sym__val_number_decimal_token3] = ACTIONS(1272), + [aux_sym__val_number_decimal_token4] = ACTIONS(1272), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62533,41 +63299,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(2932), - [aux_sym__repeat_newline] = STATE(1413), - [sym_ctrl_if_parenthesized] = STATE(3489), - [sym_block] = STATE(3490), - [sym__expression_parenthesized] = STATE(3490), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2163), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(316), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3490), + [sym_cmd_identifier] = STATE(3010), + [aux_sym__repeat_newline] = STATE(1412), + [sym_ctrl_if_parenthesized] = STATE(3400), + [sym_block] = STATE(3401), + [sym__expression_parenthesized] = STATE(3401), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3401), [sym_comment] = STATE(207), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -62583,32 +63349,33 @@ 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(1278), + [anon_sym_if] = ACTIONS(1256), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [sym__newline] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [sym__newline] = ACTIONS(1264), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), [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(1280), - [aux_sym__val_number_decimal_token2] = ACTIONS(1282), - [aux_sym__val_number_decimal_token3] = ACTIONS(1284), - [aux_sym__val_number_decimal_token4] = ACTIONS(1284), + [aux_sym__val_number_decimal_token1] = ACTIONS(1268), + [aux_sym__val_number_decimal_token2] = ACTIONS(1270), + [aux_sym__val_number_decimal_token3] = ACTIONS(1272), + [aux_sym__val_number_decimal_token4] = ACTIONS(1272), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62626,41 +63393,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(2932), - [aux_sym__repeat_newline] = STATE(214), - [sym_ctrl_if_parenthesized] = STATE(3489), - [sym_block] = STATE(3490), - [sym__expression_parenthesized] = STATE(3490), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2163), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(316), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3490), + [sym_cmd_identifier] = STATE(3010), + [aux_sym__repeat_newline] = STATE(213), + [sym_ctrl_if_parenthesized] = STATE(3400), + [sym_block] = STATE(3401), + [sym__expression_parenthesized] = STATE(3401), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3401), [sym_comment] = STATE(208), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -62676,32 +63443,33 @@ 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(1278), + [anon_sym_if] = ACTIONS(1256), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [sym__newline] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [sym__newline] = ACTIONS(1264), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), [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(1280), - [aux_sym__val_number_decimal_token2] = ACTIONS(1282), - [aux_sym__val_number_decimal_token3] = ACTIONS(1284), - [aux_sym__val_number_decimal_token4] = ACTIONS(1284), + [aux_sym__val_number_decimal_token1] = ACTIONS(1268), + [aux_sym__val_number_decimal_token2] = ACTIONS(1270), + [aux_sym__val_number_decimal_token3] = ACTIONS(1272), + [aux_sym__val_number_decimal_token4] = ACTIONS(1272), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62719,41 +63487,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(2932), - [aux_sym__repeat_newline] = STATE(1413), - [sym_ctrl_if_parenthesized] = STATE(3438), - [sym_block] = STATE(3443), - [sym__expression_parenthesized] = STATE(3443), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2163), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(316), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3443), + [sym_cmd_identifier] = STATE(3010), + [aux_sym__repeat_newline] = STATE(1412), + [sym_ctrl_if_parenthesized] = STATE(3402), + [sym_block] = STATE(3403), + [sym__expression_parenthesized] = STATE(3403), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3403), [sym_comment] = STATE(209), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -62769,32 +63537,33 @@ 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(1278), + [anon_sym_if] = ACTIONS(1256), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [sym__newline] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [sym__newline] = ACTIONS(1264), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), [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(1280), - [aux_sym__val_number_decimal_token2] = ACTIONS(1282), - [aux_sym__val_number_decimal_token3] = ACTIONS(1284), - [aux_sym__val_number_decimal_token4] = ACTIONS(1284), + [aux_sym__val_number_decimal_token1] = ACTIONS(1268), + [aux_sym__val_number_decimal_token2] = ACTIONS(1270), + [aux_sym__val_number_decimal_token3] = ACTIONS(1272), + [aux_sym__val_number_decimal_token4] = ACTIONS(1272), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62812,41 +63581,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(2932), - [aux_sym__repeat_newline] = STATE(215), - [sym_ctrl_if_parenthesized] = STATE(3438), - [sym_block] = STATE(3443), - [sym__expression_parenthesized] = STATE(3443), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2163), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(316), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3443), + [sym_cmd_identifier] = STATE(3010), + [aux_sym__repeat_newline] = STATE(1412), + [sym_ctrl_if_parenthesized] = STATE(3423), + [sym_block] = STATE(3424), + [sym__expression_parenthesized] = STATE(3424), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3424), [sym_comment] = STATE(210), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -62862,32 +63631,33 @@ 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(1278), + [anon_sym_if] = ACTIONS(1256), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [sym__newline] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [sym__newline] = ACTIONS(1264), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), [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(1280), - [aux_sym__val_number_decimal_token2] = ACTIONS(1282), - [aux_sym__val_number_decimal_token3] = ACTIONS(1284), - [aux_sym__val_number_decimal_token4] = ACTIONS(1284), + [aux_sym__val_number_decimal_token1] = ACTIONS(1268), + [aux_sym__val_number_decimal_token2] = ACTIONS(1270), + [aux_sym__val_number_decimal_token3] = ACTIONS(1272), + [aux_sym__val_number_decimal_token4] = ACTIONS(1272), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62905,41 +63675,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(2932), - [aux_sym__repeat_newline] = STATE(1413), - [sym_ctrl_if_parenthesized] = STATE(3493), - [sym_block] = STATE(3495), - [sym__expression_parenthesized] = STATE(3495), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2163), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(316), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3495), + [sym_cmd_identifier] = STATE(3010), + [aux_sym__repeat_newline] = STATE(214), + [sym_ctrl_if_parenthesized] = STATE(3423), + [sym_block] = STATE(3424), + [sym__expression_parenthesized] = STATE(3424), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3424), [sym_comment] = STATE(211), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -62955,32 +63725,33 @@ 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(1278), + [anon_sym_if] = ACTIONS(1256), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [sym__newline] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [sym__newline] = ACTIONS(1264), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), [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(1280), - [aux_sym__val_number_decimal_token2] = ACTIONS(1282), - [aux_sym__val_number_decimal_token3] = ACTIONS(1284), - [aux_sym__val_number_decimal_token4] = ACTIONS(1284), + [aux_sym__val_number_decimal_token1] = ACTIONS(1268), + [aux_sym__val_number_decimal_token2] = ACTIONS(1270), + [aux_sym__val_number_decimal_token3] = ACTIONS(1272), + [aux_sym__val_number_decimal_token4] = ACTIONS(1272), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62998,41 +63769,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(2932), - [aux_sym__repeat_newline] = STATE(217), - [sym_ctrl_if_parenthesized] = STATE(3493), - [sym_block] = STATE(3495), - [sym__expression_parenthesized] = STATE(3495), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2163), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(316), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3495), + [sym_cmd_identifier] = STATE(3010), + [aux_sym__repeat_newline] = STATE(1412), + [sym_ctrl_if_parenthesized] = STATE(3425), + [sym_block] = STATE(3426), + [sym__expression_parenthesized] = STATE(3426), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3426), [sym_comment] = STATE(212), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -63048,32 +63819,33 @@ 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(1278), + [anon_sym_if] = ACTIONS(1256), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [sym__newline] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [sym__newline] = ACTIONS(1264), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), [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(1280), - [aux_sym__val_number_decimal_token2] = ACTIONS(1282), - [aux_sym__val_number_decimal_token3] = ACTIONS(1284), - [aux_sym__val_number_decimal_token4] = ACTIONS(1284), + [aux_sym__val_number_decimal_token1] = ACTIONS(1268), + [aux_sym__val_number_decimal_token2] = ACTIONS(1270), + [aux_sym__val_number_decimal_token3] = ACTIONS(1272), + [aux_sym__val_number_decimal_token4] = ACTIONS(1272), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63091,41 +63863,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(2932), - [aux_sym__repeat_newline] = STATE(218), - [sym_ctrl_if_parenthesized] = STATE(3497), - [sym_block] = STATE(3510), - [sym__expression_parenthesized] = STATE(3510), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2163), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(316), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3510), + [sym_cmd_identifier] = STATE(3010), + [aux_sym__repeat_newline] = STATE(1412), + [sym_ctrl_if_parenthesized] = STATE(3427), + [sym_block] = STATE(3428), + [sym__expression_parenthesized] = STATE(3428), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3428), [sym_comment] = STATE(213), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -63141,32 +63913,33 @@ 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(1278), + [anon_sym_if] = ACTIONS(1256), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [sym__newline] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [sym__newline] = ACTIONS(1264), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), [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(1280), - [aux_sym__val_number_decimal_token2] = ACTIONS(1282), - [aux_sym__val_number_decimal_token3] = ACTIONS(1284), - [aux_sym__val_number_decimal_token4] = ACTIONS(1284), + [aux_sym__val_number_decimal_token1] = ACTIONS(1268), + [aux_sym__val_number_decimal_token2] = ACTIONS(1270), + [aux_sym__val_number_decimal_token3] = ACTIONS(1272), + [aux_sym__val_number_decimal_token4] = ACTIONS(1272), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63184,41 +63957,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(2932), - [aux_sym__repeat_newline] = STATE(1413), - [sym_ctrl_if_parenthesized] = STATE(3513), - [sym_block] = STATE(3514), - [sym__expression_parenthesized] = STATE(3514), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2163), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(316), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3514), + [sym_cmd_identifier] = STATE(3010), + [aux_sym__repeat_newline] = STATE(1412), + [sym_ctrl_if_parenthesized] = STATE(3439), + [sym_block] = STATE(3440), + [sym__expression_parenthesized] = STATE(3440), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3440), [sym_comment] = STATE(214), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -63234,32 +64007,33 @@ 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(1278), + [anon_sym_if] = ACTIONS(1256), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [sym__newline] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [sym__newline] = ACTIONS(1264), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), [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(1280), - [aux_sym__val_number_decimal_token2] = ACTIONS(1282), - [aux_sym__val_number_decimal_token3] = ACTIONS(1284), - [aux_sym__val_number_decimal_token4] = ACTIONS(1284), + [aux_sym__val_number_decimal_token1] = ACTIONS(1268), + [aux_sym__val_number_decimal_token2] = ACTIONS(1270), + [aux_sym__val_number_decimal_token3] = ACTIONS(1272), + [aux_sym__val_number_decimal_token4] = ACTIONS(1272), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63277,41 +64051,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(2932), - [aux_sym__repeat_newline] = STATE(1413), - [sym_ctrl_if_parenthesized] = STATE(3516), - [sym_block] = STATE(3517), - [sym__expression_parenthesized] = STATE(3517), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2163), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(316), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3517), + [sym_cmd_identifier] = STATE(3010), + [aux_sym__repeat_newline] = STATE(1412), + [sym_ctrl_if_parenthesized] = STATE(3476), + [sym_block] = STATE(3477), + [sym__expression_parenthesized] = STATE(3477), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(308), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3477), [sym_comment] = STATE(215), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -63327,32 +64101,33 @@ 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(1278), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [sym__newline] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [sym__newline] = ACTIONS(1264), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), [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(1280), - [aux_sym__val_number_decimal_token2] = ACTIONS(1282), - [aux_sym__val_number_decimal_token3] = ACTIONS(1284), - [aux_sym__val_number_decimal_token4] = ACTIONS(1284), + [aux_sym__val_number_decimal_token1] = ACTIONS(1274), + [aux_sym__val_number_decimal_token2] = ACTIONS(1276), + [aux_sym__val_number_decimal_token3] = ACTIONS(1278), + [aux_sym__val_number_decimal_token4] = ACTIONS(1278), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63370,41 +64145,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(2932), - [aux_sym__repeat_newline] = STATE(219), - [sym_ctrl_if_parenthesized] = STATE(3516), - [sym_block] = STATE(3517), - [sym__expression_parenthesized] = STATE(3517), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2163), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(316), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3517), + [sym_cmd_identifier] = STATE(3010), + [aux_sym__repeat_newline] = STATE(223), + [sym_ctrl_if_parenthesized] = STATE(3476), + [sym_block] = STATE(3477), + [sym__expression_parenthesized] = STATE(3477), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(308), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3477), [sym_comment] = STATE(216), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -63420,32 +64195,33 @@ 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(1278), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [sym__newline] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [sym__newline] = ACTIONS(1264), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), [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(1280), - [aux_sym__val_number_decimal_token2] = ACTIONS(1282), - [aux_sym__val_number_decimal_token3] = ACTIONS(1284), - [aux_sym__val_number_decimal_token4] = ACTIONS(1284), + [aux_sym__val_number_decimal_token1] = ACTIONS(1274), + [aux_sym__val_number_decimal_token2] = ACTIONS(1276), + [aux_sym__val_number_decimal_token3] = ACTIONS(1278), + [aux_sym__val_number_decimal_token4] = ACTIONS(1278), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63463,41 +64239,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(2932), - [aux_sym__repeat_newline] = STATE(1413), - [sym_ctrl_if_parenthesized] = STATE(3380), - [sym_block] = STATE(3381), - [sym__expression_parenthesized] = STATE(3381), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2163), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(316), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3381), + [sym_cmd_identifier] = STATE(3010), + [aux_sym__repeat_newline] = STATE(1412), + [sym_ctrl_if_parenthesized] = STATE(3479), + [sym_block] = STATE(3485), + [sym__expression_parenthesized] = STATE(3485), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(308), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3485), [sym_comment] = STATE(217), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -63513,32 +64289,33 @@ 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(1278), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [sym__newline] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [sym__newline] = ACTIONS(1264), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), [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(1280), - [aux_sym__val_number_decimal_token2] = ACTIONS(1282), - [aux_sym__val_number_decimal_token3] = ACTIONS(1284), - [aux_sym__val_number_decimal_token4] = ACTIONS(1284), + [aux_sym__val_number_decimal_token1] = ACTIONS(1274), + [aux_sym__val_number_decimal_token2] = ACTIONS(1276), + [aux_sym__val_number_decimal_token3] = ACTIONS(1278), + [aux_sym__val_number_decimal_token4] = ACTIONS(1278), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63556,41 +64333,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(218)] = { - [sym_cmd_identifier] = STATE(2932), - [aux_sym__repeat_newline] = STATE(1413), - [sym_ctrl_if_parenthesized] = STATE(3386), - [sym_block] = STATE(3404), - [sym__expression_parenthesized] = STATE(3404), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2163), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(316), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3404), + [sym_cmd_identifier] = STATE(3010), + [aux_sym__repeat_newline] = STATE(249), + [sym_ctrl_if_parenthesized] = STATE(3479), + [sym_block] = STATE(3485), + [sym__expression_parenthesized] = STATE(3485), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(308), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3485), [sym_comment] = STATE(218), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -63606,32 +64383,33 @@ 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(1278), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [sym__newline] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [sym__newline] = ACTIONS(1264), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), [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(1280), - [aux_sym__val_number_decimal_token2] = ACTIONS(1282), - [aux_sym__val_number_decimal_token3] = ACTIONS(1284), - [aux_sym__val_number_decimal_token4] = ACTIONS(1284), + [aux_sym__val_number_decimal_token1] = ACTIONS(1274), + [aux_sym__val_number_decimal_token2] = ACTIONS(1276), + [aux_sym__val_number_decimal_token3] = ACTIONS(1278), + [aux_sym__val_number_decimal_token4] = ACTIONS(1278), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63649,41 +64427,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(219)] = { - [sym_cmd_identifier] = STATE(2932), - [aux_sym__repeat_newline] = STATE(1413), - [sym_ctrl_if_parenthesized] = STATE(3405), - [sym_block] = STATE(3408), - [sym__expression_parenthesized] = STATE(3408), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2163), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(316), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3408), + [sym_cmd_identifier] = STATE(3010), + [aux_sym__repeat_newline] = STATE(1412), + [sym_ctrl_if_parenthesized] = STATE(3488), + [sym_block] = STATE(3489), + [sym__expression_parenthesized] = STATE(3489), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(308), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3489), [sym_comment] = STATE(219), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -63699,32 +64477,33 @@ 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(1278), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [sym__newline] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [sym__newline] = ACTIONS(1264), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), [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(1280), - [aux_sym__val_number_decimal_token2] = ACTIONS(1282), - [aux_sym__val_number_decimal_token3] = ACTIONS(1284), - [aux_sym__val_number_decimal_token4] = ACTIONS(1284), + [aux_sym__val_number_decimal_token1] = ACTIONS(1274), + [aux_sym__val_number_decimal_token2] = ACTIONS(1276), + [aux_sym__val_number_decimal_token3] = ACTIONS(1278), + [aux_sym__val_number_decimal_token4] = ACTIONS(1278), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63742,41 +64521,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(220)] = { - [sym_cmd_identifier] = STATE(2932), - [aux_sym__repeat_newline] = STATE(246), - [sym_ctrl_if_parenthesized] = STATE(3370), - [sym_block] = STATE(3383), - [sym__expression_parenthesized] = STATE(3383), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2163), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(306), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3383), + [sym_cmd_identifier] = STATE(3010), + [aux_sym__repeat_newline] = STATE(251), + [sym_ctrl_if_parenthesized] = STATE(3488), + [sym_block] = STATE(3489), + [sym__expression_parenthesized] = STATE(3489), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(308), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3489), [sym_comment] = STATE(220), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -63796,28 +64575,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [sym__newline] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [sym__newline] = ACTIONS(1264), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), [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(1272), - [aux_sym__val_number_decimal_token2] = ACTIONS(1274), - [aux_sym__val_number_decimal_token3] = ACTIONS(1276), - [aux_sym__val_number_decimal_token4] = ACTIONS(1276), + [aux_sym__val_number_decimal_token1] = ACTIONS(1274), + [aux_sym__val_number_decimal_token2] = ACTIONS(1276), + [aux_sym__val_number_decimal_token3] = ACTIONS(1278), + [aux_sym__val_number_decimal_token4] = ACTIONS(1278), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63835,41 +64615,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(221)] = { - [sym_cmd_identifier] = STATE(2932), - [aux_sym__repeat_newline] = STATE(224), - [sym_ctrl_if_parenthesized] = STATE(3370), - [sym_block] = STATE(3383), - [sym__expression_parenthesized] = STATE(3383), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2163), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(315), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3383), + [sym_cmd_identifier] = STATE(3010), + [aux_sym__repeat_newline] = STATE(1412), + [sym_ctrl_if_parenthesized] = STATE(3571), + [sym_block] = STATE(3496), + [sym__expression_parenthesized] = STATE(3496), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(308), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3496), [sym_comment] = STATE(221), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -63885,32 +64665,33 @@ 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(1010), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [sym__newline] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [sym__newline] = ACTIONS(1264), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), [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(1266), - [aux_sym__val_number_decimal_token2] = ACTIONS(1268), - [aux_sym__val_number_decimal_token3] = ACTIONS(1270), - [aux_sym__val_number_decimal_token4] = ACTIONS(1270), + [aux_sym__val_number_decimal_token1] = ACTIONS(1274), + [aux_sym__val_number_decimal_token2] = ACTIONS(1276), + [aux_sym__val_number_decimal_token3] = ACTIONS(1278), + [aux_sym__val_number_decimal_token4] = ACTIONS(1278), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63928,41 +64709,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(222)] = { - [sym_cmd_identifier] = STATE(2932), - [aux_sym__repeat_newline] = STATE(227), - [sym_ctrl_if_parenthesized] = STATE(3475), - [sym_block] = STATE(3484), - [sym__expression_parenthesized] = STATE(3484), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2163), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(315), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3484), + [sym_cmd_identifier] = STATE(3010), + [aux_sym__repeat_newline] = STATE(252), + [sym_ctrl_if_parenthesized] = STATE(3571), + [sym_block] = STATE(3496), + [sym__expression_parenthesized] = STATE(3496), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(308), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3496), [sym_comment] = STATE(222), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -63978,32 +64759,33 @@ 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(1010), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [sym__newline] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [sym__newline] = ACTIONS(1264), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), [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(1266), - [aux_sym__val_number_decimal_token2] = ACTIONS(1268), - [aux_sym__val_number_decimal_token3] = ACTIONS(1270), - [aux_sym__val_number_decimal_token4] = ACTIONS(1270), + [aux_sym__val_number_decimal_token1] = ACTIONS(1274), + [aux_sym__val_number_decimal_token2] = ACTIONS(1276), + [aux_sym__val_number_decimal_token3] = ACTIONS(1278), + [aux_sym__val_number_decimal_token4] = ACTIONS(1278), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64021,41 +64803,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(223)] = { - [sym_cmd_identifier] = STATE(2932), - [aux_sym__repeat_newline] = STATE(228), - [sym_ctrl_if_parenthesized] = STATE(3503), - [sym_block] = STATE(3504), - [sym__expression_parenthesized] = STATE(3504), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2163), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(315), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3504), + [sym_cmd_identifier] = STATE(3010), + [aux_sym__repeat_newline] = STATE(1412), + [sym_ctrl_if_parenthesized] = STATE(3398), + [sym_block] = STATE(3399), + [sym__expression_parenthesized] = STATE(3399), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(308), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3399), [sym_comment] = STATE(223), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -64071,32 +64853,33 @@ 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(1010), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [sym__newline] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [sym__newline] = ACTIONS(1264), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), [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(1266), - [aux_sym__val_number_decimal_token2] = ACTIONS(1268), - [aux_sym__val_number_decimal_token3] = ACTIONS(1270), - [aux_sym__val_number_decimal_token4] = ACTIONS(1270), + [aux_sym__val_number_decimal_token1] = ACTIONS(1274), + [aux_sym__val_number_decimal_token2] = ACTIONS(1276), + [aux_sym__val_number_decimal_token3] = ACTIONS(1278), + [aux_sym__val_number_decimal_token4] = ACTIONS(1278), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64114,41 +64897,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(224)] = { - [sym_cmd_identifier] = STATE(2932), - [aux_sym__repeat_newline] = STATE(1413), - [sym_ctrl_if_parenthesized] = STATE(3415), - [sym_block] = STATE(3435), - [sym__expression_parenthesized] = STATE(3435), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2163), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(315), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3435), + [sym_cmd_identifier] = STATE(3010), + [aux_sym__repeat_newline] = STATE(254), + [sym_ctrl_if_parenthesized] = STATE(3398), + [sym_block] = STATE(3399), + [sym__expression_parenthesized] = STATE(3399), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(308), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3399), [sym_comment] = STATE(224), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -64164,32 +64947,33 @@ 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(1010), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [sym__newline] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [sym__newline] = ACTIONS(1264), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), [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(1266), - [aux_sym__val_number_decimal_token2] = ACTIONS(1268), - [aux_sym__val_number_decimal_token3] = ACTIONS(1270), - [aux_sym__val_number_decimal_token4] = ACTIONS(1270), + [aux_sym__val_number_decimal_token1] = ACTIONS(1274), + [aux_sym__val_number_decimal_token2] = ACTIONS(1276), + [aux_sym__val_number_decimal_token3] = ACTIONS(1278), + [aux_sym__val_number_decimal_token4] = ACTIONS(1278), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64207,41 +64991,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(225)] = { - [sym_cmd_identifier] = STATE(2932), - [aux_sym__repeat_newline] = STATE(230), - [sym_ctrl_if_parenthesized] = STATE(3415), - [sym_block] = STATE(3435), - [sym__expression_parenthesized] = STATE(3435), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2163), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), + [sym_cmd_identifier] = STATE(3010), + [aux_sym__repeat_newline] = STATE(228), + [sym_ctrl_if_parenthesized] = STATE(3462), + [sym_block] = STATE(3463), + [sym__expression_parenthesized] = STATE(3463), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), [sym__val_number_decimal] = STATE(315), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3435), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3463), [sym_comment] = STATE(225), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -64257,32 +65041,33 @@ 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(1010), + [anon_sym_if] = ACTIONS(1006), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [sym__newline] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [sym__newline] = ACTIONS(1264), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), [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(1266), - [aux_sym__val_number_decimal_token2] = ACTIONS(1268), - [aux_sym__val_number_decimal_token3] = ACTIONS(1270), - [aux_sym__val_number_decimal_token4] = ACTIONS(1270), + [aux_sym__val_number_decimal_token1] = ACTIONS(1280), + [aux_sym__val_number_decimal_token2] = ACTIONS(1282), + [aux_sym__val_number_decimal_token3] = ACTIONS(1284), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64300,41 +65085,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(226)] = { - [sym_cmd_identifier] = STATE(2932), - [aux_sym__repeat_newline] = STATE(232), - [sym_ctrl_if_parenthesized] = STATE(3449), - [sym_block] = STATE(3450), - [sym__expression_parenthesized] = STATE(3450), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2163), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), + [sym_cmd_identifier] = STATE(3010), + [aux_sym__repeat_newline] = STATE(231), + [sym_ctrl_if_parenthesized] = STATE(3572), + [sym_block] = STATE(3573), + [sym__expression_parenthesized] = STATE(3573), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), [sym__val_number_decimal] = STATE(315), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3450), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3573), [sym_comment] = STATE(226), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -64350,32 +65135,33 @@ 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(1010), + [anon_sym_if] = ACTIONS(1006), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [sym__newline] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [sym__newline] = ACTIONS(1264), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), [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(1266), - [aux_sym__val_number_decimal_token2] = ACTIONS(1268), - [aux_sym__val_number_decimal_token3] = ACTIONS(1270), - [aux_sym__val_number_decimal_token4] = ACTIONS(1270), + [aux_sym__val_number_decimal_token1] = ACTIONS(1280), + [aux_sym__val_number_decimal_token2] = ACTIONS(1282), + [aux_sym__val_number_decimal_token3] = ACTIONS(1284), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64393,41 +65179,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(227)] = { - [sym_cmd_identifier] = STATE(2932), - [aux_sym__repeat_newline] = STATE(1413), - [sym_ctrl_if_parenthesized] = STATE(3482), - [sym_block] = STATE(3483), - [sym__expression_parenthesized] = STATE(3483), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2163), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), + [sym_cmd_identifier] = STATE(3010), + [aux_sym__repeat_newline] = STATE(233), + [sym_ctrl_if_parenthesized] = STATE(3396), + [sym_block] = STATE(3575), + [sym__expression_parenthesized] = STATE(3575), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), [sym__val_number_decimal] = STATE(315), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3483), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3575), [sym_comment] = STATE(227), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -64443,32 +65229,33 @@ 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(1010), + [anon_sym_if] = ACTIONS(1006), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [sym__newline] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [sym__newline] = ACTIONS(1264), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), [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(1266), - [aux_sym__val_number_decimal_token2] = ACTIONS(1268), - [aux_sym__val_number_decimal_token3] = ACTIONS(1270), - [aux_sym__val_number_decimal_token4] = ACTIONS(1270), + [aux_sym__val_number_decimal_token1] = ACTIONS(1280), + [aux_sym__val_number_decimal_token2] = ACTIONS(1282), + [aux_sym__val_number_decimal_token3] = ACTIONS(1284), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64486,41 +65273,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(228)] = { - [sym_cmd_identifier] = STATE(2932), - [aux_sym__repeat_newline] = STATE(1413), - [sym_ctrl_if_parenthesized] = STATE(3486), - [sym_block] = STATE(3487), - [sym__expression_parenthesized] = STATE(3487), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2163), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), + [sym_cmd_identifier] = STATE(3010), + [aux_sym__repeat_newline] = STATE(1412), + [sym_ctrl_if_parenthesized] = STATE(3577), + [sym_block] = STATE(3578), + [sym__expression_parenthesized] = STATE(3578), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), [sym__val_number_decimal] = STATE(315), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3487), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3578), [sym_comment] = STATE(228), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -64536,32 +65323,33 @@ 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(1010), + [anon_sym_if] = ACTIONS(1006), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [sym__newline] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [sym__newline] = ACTIONS(1264), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), [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(1266), - [aux_sym__val_number_decimal_token2] = ACTIONS(1268), - [aux_sym__val_number_decimal_token3] = ACTIONS(1270), - [aux_sym__val_number_decimal_token4] = ACTIONS(1270), + [aux_sym__val_number_decimal_token1] = ACTIONS(1280), + [aux_sym__val_number_decimal_token2] = ACTIONS(1282), + [aux_sym__val_number_decimal_token3] = ACTIONS(1284), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64579,41 +65367,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(229)] = { - [sym_cmd_identifier] = STATE(2932), - [aux_sym__repeat_newline] = STATE(236), - [sym_ctrl_if_parenthesized] = STATE(3486), - [sym_block] = STATE(3487), - [sym__expression_parenthesized] = STATE(3487), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2163), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), + [sym_cmd_identifier] = STATE(3010), + [aux_sym__repeat_newline] = STATE(266), + [sym_ctrl_if_parenthesized] = STATE(3577), + [sym_block] = STATE(3578), + [sym__expression_parenthesized] = STATE(3578), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), [sym__val_number_decimal] = STATE(315), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3487), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3578), [sym_comment] = STATE(229), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -64629,32 +65417,33 @@ 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(1010), + [anon_sym_if] = ACTIONS(1006), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [sym__newline] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [sym__newline] = ACTIONS(1264), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), [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(1266), - [aux_sym__val_number_decimal_token2] = ACTIONS(1268), - [aux_sym__val_number_decimal_token3] = ACTIONS(1270), - [aux_sym__val_number_decimal_token4] = ACTIONS(1270), + [aux_sym__val_number_decimal_token1] = ACTIONS(1280), + [aux_sym__val_number_decimal_token2] = ACTIONS(1282), + [aux_sym__val_number_decimal_token3] = ACTIONS(1284), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64672,41 +65461,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(230)] = { - [sym_cmd_identifier] = STATE(2932), - [aux_sym__repeat_newline] = STATE(1413), - [sym_ctrl_if_parenthesized] = STATE(3489), - [sym_block] = STATE(3490), - [sym__expression_parenthesized] = STATE(3490), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2163), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), + [sym_cmd_identifier] = STATE(3010), + [aux_sym__repeat_newline] = STATE(237), + [sym_ctrl_if_parenthesized] = STATE(3473), + [sym_block] = STATE(3474), + [sym__expression_parenthesized] = STATE(3474), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), [sym__val_number_decimal] = STATE(315), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3490), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3474), [sym_comment] = STATE(230), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -64722,32 +65511,33 @@ 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(1010), + [anon_sym_if] = ACTIONS(1006), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [sym__newline] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [sym__newline] = ACTIONS(1264), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), [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(1266), - [aux_sym__val_number_decimal_token2] = ACTIONS(1268), - [aux_sym__val_number_decimal_token3] = ACTIONS(1270), - [aux_sym__val_number_decimal_token4] = ACTIONS(1270), + [aux_sym__val_number_decimal_token1] = ACTIONS(1280), + [aux_sym__val_number_decimal_token2] = ACTIONS(1282), + [aux_sym__val_number_decimal_token3] = ACTIONS(1284), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64765,41 +65555,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(231)] = { - [sym_cmd_identifier] = STATE(2932), - [aux_sym__repeat_newline] = STATE(238), - [sym_ctrl_if_parenthesized] = STATE(3489), - [sym_block] = STATE(3490), - [sym__expression_parenthesized] = STATE(3490), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2163), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), + [sym_cmd_identifier] = STATE(3010), + [aux_sym__repeat_newline] = STATE(1412), + [sym_ctrl_if_parenthesized] = STATE(3476), + [sym_block] = STATE(3477), + [sym__expression_parenthesized] = STATE(3477), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), [sym__val_number_decimal] = STATE(315), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3490), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3477), [sym_comment] = STATE(231), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -64815,32 +65605,33 @@ 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(1010), + [anon_sym_if] = ACTIONS(1006), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [sym__newline] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [sym__newline] = ACTIONS(1264), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), [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(1266), - [aux_sym__val_number_decimal_token2] = ACTIONS(1268), - [aux_sym__val_number_decimal_token3] = ACTIONS(1270), - [aux_sym__val_number_decimal_token4] = ACTIONS(1270), + [aux_sym__val_number_decimal_token1] = ACTIONS(1280), + [aux_sym__val_number_decimal_token2] = ACTIONS(1282), + [aux_sym__val_number_decimal_token3] = ACTIONS(1284), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64858,41 +65649,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(232)] = { - [sym_cmd_identifier] = STATE(2932), - [aux_sym__repeat_newline] = STATE(1413), - [sym_ctrl_if_parenthesized] = STATE(3438), - [sym_block] = STATE(3443), - [sym__expression_parenthesized] = STATE(3443), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2163), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), + [sym_cmd_identifier] = STATE(3010), + [aux_sym__repeat_newline] = STATE(239), + [sym_ctrl_if_parenthesized] = STATE(3476), + [sym_block] = STATE(3477), + [sym__expression_parenthesized] = STATE(3477), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), [sym__val_number_decimal] = STATE(315), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3443), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3477), [sym_comment] = STATE(232), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -64908,32 +65699,33 @@ 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(1010), + [anon_sym_if] = ACTIONS(1006), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [sym__newline] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [sym__newline] = ACTIONS(1264), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), [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(1266), - [aux_sym__val_number_decimal_token2] = ACTIONS(1268), - [aux_sym__val_number_decimal_token3] = ACTIONS(1270), - [aux_sym__val_number_decimal_token4] = ACTIONS(1270), + [aux_sym__val_number_decimal_token1] = ACTIONS(1280), + [aux_sym__val_number_decimal_token2] = ACTIONS(1282), + [aux_sym__val_number_decimal_token3] = ACTIONS(1284), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64951,41 +65743,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(233)] = { - [sym_cmd_identifier] = STATE(2932), - [aux_sym__repeat_newline] = STATE(239), - [sym_ctrl_if_parenthesized] = STATE(3438), - [sym_block] = STATE(3443), - [sym__expression_parenthesized] = STATE(3443), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2163), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), + [sym_cmd_identifier] = STATE(3010), + [aux_sym__repeat_newline] = STATE(1412), + [sym_ctrl_if_parenthesized] = STATE(3479), + [sym_block] = STATE(3485), + [sym__expression_parenthesized] = STATE(3485), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), [sym__val_number_decimal] = STATE(315), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3443), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3485), [sym_comment] = STATE(233), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -65001,32 +65793,33 @@ 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(1010), + [anon_sym_if] = ACTIONS(1006), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [sym__newline] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [sym__newline] = ACTIONS(1264), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), [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(1266), - [aux_sym__val_number_decimal_token2] = ACTIONS(1268), - [aux_sym__val_number_decimal_token3] = ACTIONS(1270), - [aux_sym__val_number_decimal_token4] = ACTIONS(1270), + [aux_sym__val_number_decimal_token1] = ACTIONS(1280), + [aux_sym__val_number_decimal_token2] = ACTIONS(1282), + [aux_sym__val_number_decimal_token3] = ACTIONS(1284), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -65044,41 +65837,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(234)] = { - [sym_cmd_identifier] = STATE(2932), - [aux_sym__repeat_newline] = STATE(1413), - [sym_ctrl_if_parenthesized] = STATE(3493), - [sym_block] = STATE(3495), - [sym__expression_parenthesized] = STATE(3495), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2163), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), + [sym_cmd_identifier] = STATE(3010), + [aux_sym__repeat_newline] = STATE(241), + [sym_ctrl_if_parenthesized] = STATE(3479), + [sym_block] = STATE(3485), + [sym__expression_parenthesized] = STATE(3485), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), [sym__val_number_decimal] = STATE(315), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3495), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3485), [sym_comment] = STATE(234), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -65094,32 +65887,33 @@ 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(1010), + [anon_sym_if] = ACTIONS(1006), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [sym__newline] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [sym__newline] = ACTIONS(1264), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), [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(1266), - [aux_sym__val_number_decimal_token2] = ACTIONS(1268), - [aux_sym__val_number_decimal_token3] = ACTIONS(1270), - [aux_sym__val_number_decimal_token4] = ACTIONS(1270), + [aux_sym__val_number_decimal_token1] = ACTIONS(1280), + [aux_sym__val_number_decimal_token2] = ACTIONS(1282), + [aux_sym__val_number_decimal_token3] = ACTIONS(1284), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -65137,41 +65931,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(235)] = { - [sym_cmd_identifier] = STATE(2932), - [aux_sym__repeat_newline] = STATE(241), - [sym_ctrl_if_parenthesized] = STATE(3493), - [sym_block] = STATE(3495), - [sym__expression_parenthesized] = STATE(3495), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2163), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(315), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3495), + [sym_cmd_identifier] = STATE(3010), + [aux_sym__repeat_newline] = STATE(1412), + [sym_ctrl_if_parenthesized] = STATE(3577), + [sym_block] = STATE(3578), + [sym__expression_parenthesized] = STATE(3578), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(308), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3578), [sym_comment] = STATE(235), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -65187,32 +65981,33 @@ 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(1010), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [sym__newline] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [sym__newline] = ACTIONS(1264), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), [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(1266), - [aux_sym__val_number_decimal_token2] = ACTIONS(1268), - [aux_sym__val_number_decimal_token3] = ACTIONS(1270), - [aux_sym__val_number_decimal_token4] = ACTIONS(1270), + [aux_sym__val_number_decimal_token1] = ACTIONS(1274), + [aux_sym__val_number_decimal_token2] = ACTIONS(1276), + [aux_sym__val_number_decimal_token3] = ACTIONS(1278), + [aux_sym__val_number_decimal_token4] = ACTIONS(1278), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -65230,41 +66025,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(236)] = { - [sym_cmd_identifier] = STATE(2932), - [aux_sym__repeat_newline] = STATE(1413), - [sym_ctrl_if_parenthesized] = STATE(3497), - [sym_block] = STATE(3510), - [sym__expression_parenthesized] = STATE(3510), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2163), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), + [sym_cmd_identifier] = STATE(3010), + [aux_sym__repeat_newline] = STATE(243), + [sym_ctrl_if_parenthesized] = STATE(3488), + [sym_block] = STATE(3489), + [sym__expression_parenthesized] = STATE(3489), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), [sym__val_number_decimal] = STATE(315), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3510), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3489), [sym_comment] = STATE(236), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -65280,32 +66075,33 @@ 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(1010), + [anon_sym_if] = ACTIONS(1006), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [sym__newline] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [sym__newline] = ACTIONS(1264), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), [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(1266), - [aux_sym__val_number_decimal_token2] = ACTIONS(1268), - [aux_sym__val_number_decimal_token3] = ACTIONS(1270), - [aux_sym__val_number_decimal_token4] = ACTIONS(1270), + [aux_sym__val_number_decimal_token1] = ACTIONS(1280), + [aux_sym__val_number_decimal_token2] = ACTIONS(1282), + [aux_sym__val_number_decimal_token3] = ACTIONS(1284), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -65323,41 +66119,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(237)] = { - [sym_cmd_identifier] = STATE(2932), - [aux_sym__repeat_newline] = STATE(242), - [sym_ctrl_if_parenthesized] = STATE(3497), - [sym_block] = STATE(3510), - [sym__expression_parenthesized] = STATE(3510), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2163), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), + [sym_cmd_identifier] = STATE(3010), + [aux_sym__repeat_newline] = STATE(1412), + [sym_ctrl_if_parenthesized] = STATE(3571), + [sym_block] = STATE(3496), + [sym__expression_parenthesized] = STATE(3496), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), [sym__val_number_decimal] = STATE(315), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3510), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3496), [sym_comment] = STATE(237), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -65373,32 +66169,33 @@ 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(1010), + [anon_sym_if] = ACTIONS(1006), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [sym__newline] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [sym__newline] = ACTIONS(1264), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), [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(1266), - [aux_sym__val_number_decimal_token2] = ACTIONS(1268), - [aux_sym__val_number_decimal_token3] = ACTIONS(1270), - [aux_sym__val_number_decimal_token4] = ACTIONS(1270), + [aux_sym__val_number_decimal_token1] = ACTIONS(1280), + [aux_sym__val_number_decimal_token2] = ACTIONS(1282), + [aux_sym__val_number_decimal_token3] = ACTIONS(1284), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -65416,41 +66213,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(238)] = { - [sym_cmd_identifier] = STATE(2932), - [aux_sym__repeat_newline] = STATE(1413), - [sym_ctrl_if_parenthesized] = STATE(3513), - [sym_block] = STATE(3514), - [sym__expression_parenthesized] = STATE(3514), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2163), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), + [sym_cmd_identifier] = STATE(3010), + [aux_sym__repeat_newline] = STATE(244), + [sym_ctrl_if_parenthesized] = STATE(3571), + [sym_block] = STATE(3496), + [sym__expression_parenthesized] = STATE(3496), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), [sym__val_number_decimal] = STATE(315), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3514), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3496), [sym_comment] = STATE(238), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -65466,32 +66263,33 @@ 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(1010), + [anon_sym_if] = ACTIONS(1006), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [sym__newline] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [sym__newline] = ACTIONS(1264), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), [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(1266), - [aux_sym__val_number_decimal_token2] = ACTIONS(1268), - [aux_sym__val_number_decimal_token3] = ACTIONS(1270), - [aux_sym__val_number_decimal_token4] = ACTIONS(1270), + [aux_sym__val_number_decimal_token1] = ACTIONS(1280), + [aux_sym__val_number_decimal_token2] = ACTIONS(1282), + [aux_sym__val_number_decimal_token3] = ACTIONS(1284), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -65509,41 +66307,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(239)] = { - [sym_cmd_identifier] = STATE(2932), - [aux_sym__repeat_newline] = STATE(1413), - [sym_ctrl_if_parenthesized] = STATE(3516), - [sym_block] = STATE(3517), - [sym__expression_parenthesized] = STATE(3517), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2163), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), + [sym_cmd_identifier] = STATE(3010), + [aux_sym__repeat_newline] = STATE(1412), + [sym_ctrl_if_parenthesized] = STATE(3398), + [sym_block] = STATE(3399), + [sym__expression_parenthesized] = STATE(3399), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), [sym__val_number_decimal] = STATE(315), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3517), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3399), [sym_comment] = STATE(239), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -65559,32 +66357,33 @@ 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(1010), + [anon_sym_if] = ACTIONS(1006), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [sym__newline] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [sym__newline] = ACTIONS(1264), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), [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(1266), - [aux_sym__val_number_decimal_token2] = ACTIONS(1268), - [aux_sym__val_number_decimal_token3] = ACTIONS(1270), - [aux_sym__val_number_decimal_token4] = ACTIONS(1270), + [aux_sym__val_number_decimal_token1] = ACTIONS(1280), + [aux_sym__val_number_decimal_token2] = ACTIONS(1282), + [aux_sym__val_number_decimal_token3] = ACTIONS(1284), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -65602,41 +66401,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(240)] = { - [sym_cmd_identifier] = STATE(2932), - [aux_sym__repeat_newline] = STATE(243), - [sym_ctrl_if_parenthesized] = STATE(3516), - [sym_block] = STATE(3517), - [sym__expression_parenthesized] = STATE(3517), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2163), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), + [sym_cmd_identifier] = STATE(3010), + [aux_sym__repeat_newline] = STATE(246), + [sym_ctrl_if_parenthesized] = STATE(3398), + [sym_block] = STATE(3399), + [sym__expression_parenthesized] = STATE(3399), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), [sym__val_number_decimal] = STATE(315), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3517), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3399), [sym_comment] = STATE(240), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -65652,32 +66451,33 @@ 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(1010), + [anon_sym_if] = ACTIONS(1006), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [sym__newline] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [sym__newline] = ACTIONS(1264), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), [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(1266), - [aux_sym__val_number_decimal_token2] = ACTIONS(1268), - [aux_sym__val_number_decimal_token3] = ACTIONS(1270), - [aux_sym__val_number_decimal_token4] = ACTIONS(1270), + [aux_sym__val_number_decimal_token1] = ACTIONS(1280), + [aux_sym__val_number_decimal_token2] = ACTIONS(1282), + [aux_sym__val_number_decimal_token3] = ACTIONS(1284), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -65695,41 +66495,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(241)] = { - [sym_cmd_identifier] = STATE(2932), - [aux_sym__repeat_newline] = STATE(1413), - [sym_ctrl_if_parenthesized] = STATE(3380), - [sym_block] = STATE(3381), - [sym__expression_parenthesized] = STATE(3381), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2163), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), + [sym_cmd_identifier] = STATE(3010), + [aux_sym__repeat_newline] = STATE(1412), + [sym_ctrl_if_parenthesized] = STATE(3400), + [sym_block] = STATE(3401), + [sym__expression_parenthesized] = STATE(3401), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), [sym__val_number_decimal] = STATE(315), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3381), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3401), [sym_comment] = STATE(241), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -65745,32 +66545,33 @@ 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(1010), + [anon_sym_if] = ACTIONS(1006), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [sym__newline] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [sym__newline] = ACTIONS(1264), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), [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(1266), - [aux_sym__val_number_decimal_token2] = ACTIONS(1268), - [aux_sym__val_number_decimal_token3] = ACTIONS(1270), - [aux_sym__val_number_decimal_token4] = ACTIONS(1270), + [aux_sym__val_number_decimal_token1] = ACTIONS(1280), + [aux_sym__val_number_decimal_token2] = ACTIONS(1282), + [aux_sym__val_number_decimal_token3] = ACTIONS(1284), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -65788,41 +66589,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(242)] = { - [sym_cmd_identifier] = STATE(2932), - [aux_sym__repeat_newline] = STATE(1413), - [sym_ctrl_if_parenthesized] = STATE(3386), - [sym_block] = STATE(3404), - [sym__expression_parenthesized] = STATE(3404), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2163), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), + [sym_cmd_identifier] = STATE(3010), + [aux_sym__repeat_newline] = STATE(247), + [sym_ctrl_if_parenthesized] = STATE(3400), + [sym_block] = STATE(3401), + [sym__expression_parenthesized] = STATE(3401), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), [sym__val_number_decimal] = STATE(315), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3404), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3401), [sym_comment] = STATE(242), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -65838,32 +66639,33 @@ 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(1010), + [anon_sym_if] = ACTIONS(1006), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [sym__newline] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [sym__newline] = ACTIONS(1264), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), [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(1266), - [aux_sym__val_number_decimal_token2] = ACTIONS(1268), - [aux_sym__val_number_decimal_token3] = ACTIONS(1270), - [aux_sym__val_number_decimal_token4] = ACTIONS(1270), + [aux_sym__val_number_decimal_token1] = ACTIONS(1280), + [aux_sym__val_number_decimal_token2] = ACTIONS(1282), + [aux_sym__val_number_decimal_token3] = ACTIONS(1284), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -65881,41 +66683,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(243)] = { - [sym_cmd_identifier] = STATE(2932), - [aux_sym__repeat_newline] = STATE(1413), - [sym_ctrl_if_parenthesized] = STATE(3405), - [sym_block] = STATE(3408), - [sym__expression_parenthesized] = STATE(3408), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2163), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), + [sym_cmd_identifier] = STATE(3010), + [aux_sym__repeat_newline] = STATE(1412), + [sym_ctrl_if_parenthesized] = STATE(3402), + [sym_block] = STATE(3403), + [sym__expression_parenthesized] = STATE(3403), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), [sym__val_number_decimal] = STATE(315), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3408), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3403), [sym_comment] = STATE(243), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -65931,32 +66733,33 @@ 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(1010), + [anon_sym_if] = ACTIONS(1006), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [sym__newline] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [sym__newline] = ACTIONS(1264), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), [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(1266), - [aux_sym__val_number_decimal_token2] = ACTIONS(1268), - [aux_sym__val_number_decimal_token3] = ACTIONS(1270), - [aux_sym__val_number_decimal_token4] = ACTIONS(1270), + [aux_sym__val_number_decimal_token1] = ACTIONS(1280), + [aux_sym__val_number_decimal_token2] = ACTIONS(1282), + [aux_sym__val_number_decimal_token3] = ACTIONS(1284), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -65974,41 +66777,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(244)] = { - [sym_cmd_identifier] = STATE(2932), - [aux_sym__repeat_newline] = STATE(249), - [sym_ctrl_if_parenthesized] = STATE(3475), - [sym_block] = STATE(3484), - [sym__expression_parenthesized] = STATE(3484), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2163), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(306), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3484), + [sym_cmd_identifier] = STATE(3010), + [aux_sym__repeat_newline] = STATE(1412), + [sym_ctrl_if_parenthesized] = STATE(3423), + [sym_block] = STATE(3424), + [sym__expression_parenthesized] = STATE(3424), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(315), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3424), [sym_comment] = STATE(244), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -66024,32 +66827,33 @@ 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(1006), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [sym__newline] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [sym__newline] = ACTIONS(1264), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), [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(1272), - [aux_sym__val_number_decimal_token2] = ACTIONS(1274), - [aux_sym__val_number_decimal_token3] = ACTIONS(1276), - [aux_sym__val_number_decimal_token4] = ACTIONS(1276), + [aux_sym__val_number_decimal_token1] = ACTIONS(1280), + [aux_sym__val_number_decimal_token2] = ACTIONS(1282), + [aux_sym__val_number_decimal_token3] = ACTIONS(1284), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -66067,41 +66871,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(245)] = { - [sym_cmd_identifier] = STATE(2932), - [aux_sym__repeat_newline] = STATE(251), - [sym_ctrl_if_parenthesized] = STATE(3503), - [sym_block] = STATE(3504), - [sym__expression_parenthesized] = STATE(3504), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2163), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(306), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3504), + [sym_cmd_identifier] = STATE(3010), + [aux_sym__repeat_newline] = STATE(248), + [sym_ctrl_if_parenthesized] = STATE(3423), + [sym_block] = STATE(3424), + [sym__expression_parenthesized] = STATE(3424), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(315), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3424), [sym_comment] = STATE(245), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -66117,32 +66921,33 @@ 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(1006), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [sym__newline] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [sym__newline] = ACTIONS(1264), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), [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(1272), - [aux_sym__val_number_decimal_token2] = ACTIONS(1274), - [aux_sym__val_number_decimal_token3] = ACTIONS(1276), - [aux_sym__val_number_decimal_token4] = ACTIONS(1276), + [aux_sym__val_number_decimal_token1] = ACTIONS(1280), + [aux_sym__val_number_decimal_token2] = ACTIONS(1282), + [aux_sym__val_number_decimal_token3] = ACTIONS(1284), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -66160,41 +66965,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(246)] = { - [sym_cmd_identifier] = STATE(2932), - [aux_sym__repeat_newline] = STATE(1413), - [sym_ctrl_if_parenthesized] = STATE(3415), - [sym_block] = STATE(3435), - [sym__expression_parenthesized] = STATE(3435), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2163), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(306), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3435), + [sym_cmd_identifier] = STATE(3010), + [aux_sym__repeat_newline] = STATE(1412), + [sym_ctrl_if_parenthesized] = STATE(3425), + [sym_block] = STATE(3426), + [sym__expression_parenthesized] = STATE(3426), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(315), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3426), [sym_comment] = STATE(246), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -66210,32 +67015,33 @@ 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(1006), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [sym__newline] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [sym__newline] = ACTIONS(1264), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), [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(1272), - [aux_sym__val_number_decimal_token2] = ACTIONS(1274), - [aux_sym__val_number_decimal_token3] = ACTIONS(1276), - [aux_sym__val_number_decimal_token4] = ACTIONS(1276), + [aux_sym__val_number_decimal_token1] = ACTIONS(1280), + [aux_sym__val_number_decimal_token2] = ACTIONS(1282), + [aux_sym__val_number_decimal_token3] = ACTIONS(1284), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -66253,41 +67059,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(247)] = { - [sym_cmd_identifier] = STATE(2932), - [aux_sym__repeat_newline] = STATE(253), - [sym_ctrl_if_parenthesized] = STATE(3415), - [sym_block] = STATE(3435), - [sym__expression_parenthesized] = STATE(3435), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2163), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(306), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3435), + [sym_cmd_identifier] = STATE(3010), + [aux_sym__repeat_newline] = STATE(1412), + [sym_ctrl_if_parenthesized] = STATE(3427), + [sym_block] = STATE(3428), + [sym__expression_parenthesized] = STATE(3428), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(315), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3428), [sym_comment] = STATE(247), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -66303,32 +67109,33 @@ 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(1006), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [sym__newline] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [sym__newline] = ACTIONS(1264), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), [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(1272), - [aux_sym__val_number_decimal_token2] = ACTIONS(1274), - [aux_sym__val_number_decimal_token3] = ACTIONS(1276), - [aux_sym__val_number_decimal_token4] = ACTIONS(1276), + [aux_sym__val_number_decimal_token1] = ACTIONS(1280), + [aux_sym__val_number_decimal_token2] = ACTIONS(1282), + [aux_sym__val_number_decimal_token3] = ACTIONS(1284), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -66346,41 +67153,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(248)] = { - [sym_cmd_identifier] = STATE(2932), - [aux_sym__repeat_newline] = STATE(255), - [sym_ctrl_if_parenthesized] = STATE(3449), - [sym_block] = STATE(3450), - [sym__expression_parenthesized] = STATE(3450), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2163), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(306), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3450), + [sym_cmd_identifier] = STATE(3010), + [aux_sym__repeat_newline] = STATE(1412), + [sym_ctrl_if_parenthesized] = STATE(3439), + [sym_block] = STATE(3440), + [sym__expression_parenthesized] = STATE(3440), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(315), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3440), [sym_comment] = STATE(248), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -66396,32 +67203,33 @@ 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(1006), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [sym__newline] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [sym__newline] = ACTIONS(1264), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), [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(1272), - [aux_sym__val_number_decimal_token2] = ACTIONS(1274), - [aux_sym__val_number_decimal_token3] = ACTIONS(1276), - [aux_sym__val_number_decimal_token4] = ACTIONS(1276), + [aux_sym__val_number_decimal_token1] = ACTIONS(1280), + [aux_sym__val_number_decimal_token2] = ACTIONS(1282), + [aux_sym__val_number_decimal_token3] = ACTIONS(1284), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -66439,41 +67247,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(2932), - [aux_sym__repeat_newline] = STATE(1413), - [sym_ctrl_if_parenthesized] = STATE(3482), - [sym_block] = STATE(3483), - [sym__expression_parenthesized] = STATE(3483), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2163), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(306), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3483), + [sym_cmd_identifier] = STATE(3010), + [aux_sym__repeat_newline] = STATE(1412), + [sym_ctrl_if_parenthesized] = STATE(3400), + [sym_block] = STATE(3401), + [sym__expression_parenthesized] = STATE(3401), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(308), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3401), [sym_comment] = STATE(249), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -66493,28 +67301,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [sym__newline] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [sym__newline] = ACTIONS(1264), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), [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(1272), - [aux_sym__val_number_decimal_token2] = ACTIONS(1274), - [aux_sym__val_number_decimal_token3] = ACTIONS(1276), - [aux_sym__val_number_decimal_token4] = ACTIONS(1276), + [aux_sym__val_number_decimal_token1] = ACTIONS(1274), + [aux_sym__val_number_decimal_token2] = ACTIONS(1276), + [aux_sym__val_number_decimal_token3] = ACTIONS(1278), + [aux_sym__val_number_decimal_token4] = ACTIONS(1278), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -66532,41 +67341,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(2932), - [aux_sym__repeat_newline] = STATE(257), - [sym_ctrl_if_parenthesized] = STATE(3482), - [sym_block] = STATE(3483), - [sym__expression_parenthesized] = STATE(3483), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2163), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(306), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3483), + [sym_cmd_identifier] = STATE(3010), + [aux_sym__repeat_newline] = STATE(255), + [sym_ctrl_if_parenthesized] = STATE(3400), + [sym_block] = STATE(3401), + [sym__expression_parenthesized] = STATE(3401), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(308), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3401), [sym_comment] = STATE(250), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -66586,28 +67395,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [sym__newline] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [sym__newline] = ACTIONS(1264), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), [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(1272), - [aux_sym__val_number_decimal_token2] = ACTIONS(1274), - [aux_sym__val_number_decimal_token3] = ACTIONS(1276), - [aux_sym__val_number_decimal_token4] = ACTIONS(1276), + [aux_sym__val_number_decimal_token1] = ACTIONS(1274), + [aux_sym__val_number_decimal_token2] = ACTIONS(1276), + [aux_sym__val_number_decimal_token3] = ACTIONS(1278), + [aux_sym__val_number_decimal_token4] = ACTIONS(1278), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -66625,41 +67435,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(2932), - [aux_sym__repeat_newline] = STATE(1413), - [sym_ctrl_if_parenthesized] = STATE(3486), - [sym_block] = STATE(3487), - [sym__expression_parenthesized] = STATE(3487), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2163), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(306), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3487), + [sym_cmd_identifier] = STATE(3010), + [aux_sym__repeat_newline] = STATE(1412), + [sym_ctrl_if_parenthesized] = STATE(3402), + [sym_block] = STATE(3403), + [sym__expression_parenthesized] = STATE(3403), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(308), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3403), [sym_comment] = STATE(251), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -66679,28 +67489,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [sym__newline] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [sym__newline] = ACTIONS(1264), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), [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(1272), - [aux_sym__val_number_decimal_token2] = ACTIONS(1274), - [aux_sym__val_number_decimal_token3] = ACTIONS(1276), - [aux_sym__val_number_decimal_token4] = ACTIONS(1276), + [aux_sym__val_number_decimal_token1] = ACTIONS(1274), + [aux_sym__val_number_decimal_token2] = ACTIONS(1276), + [aux_sym__val_number_decimal_token3] = ACTIONS(1278), + [aux_sym__val_number_decimal_token4] = ACTIONS(1278), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -66718,41 +67529,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(2932), - [aux_sym__repeat_newline] = STATE(259), - [sym_ctrl_if_parenthesized] = STATE(3486), - [sym_block] = STATE(3487), - [sym__expression_parenthesized] = STATE(3487), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2163), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(306), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3487), + [sym_cmd_identifier] = STATE(3010), + [aux_sym__repeat_newline] = STATE(1412), + [sym_ctrl_if_parenthesized] = STATE(3423), + [sym_block] = STATE(3424), + [sym__expression_parenthesized] = STATE(3424), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(308), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3424), [sym_comment] = STATE(252), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -66772,28 +67583,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [sym__newline] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [sym__newline] = ACTIONS(1264), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), [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(1272), - [aux_sym__val_number_decimal_token2] = ACTIONS(1274), - [aux_sym__val_number_decimal_token3] = ACTIONS(1276), - [aux_sym__val_number_decimal_token4] = ACTIONS(1276), + [aux_sym__val_number_decimal_token1] = ACTIONS(1274), + [aux_sym__val_number_decimal_token2] = ACTIONS(1276), + [aux_sym__val_number_decimal_token3] = ACTIONS(1278), + [aux_sym__val_number_decimal_token4] = ACTIONS(1278), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -66811,41 +67623,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(2932), - [aux_sym__repeat_newline] = STATE(1413), - [sym_ctrl_if_parenthesized] = STATE(3489), - [sym_block] = STATE(3490), - [sym__expression_parenthesized] = STATE(3490), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2163), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(306), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3490), + [sym_cmd_identifier] = STATE(3010), + [aux_sym__repeat_newline] = STATE(256), + [sym_ctrl_if_parenthesized] = STATE(3423), + [sym_block] = STATE(3424), + [sym__expression_parenthesized] = STATE(3424), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(308), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3424), [sym_comment] = STATE(253), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -66865,28 +67677,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [sym__newline] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [sym__newline] = ACTIONS(1264), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), [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(1272), - [aux_sym__val_number_decimal_token2] = ACTIONS(1274), - [aux_sym__val_number_decimal_token3] = ACTIONS(1276), - [aux_sym__val_number_decimal_token4] = ACTIONS(1276), + [aux_sym__val_number_decimal_token1] = ACTIONS(1274), + [aux_sym__val_number_decimal_token2] = ACTIONS(1276), + [aux_sym__val_number_decimal_token3] = ACTIONS(1278), + [aux_sym__val_number_decimal_token4] = ACTIONS(1278), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -66904,41 +67717,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(2932), - [aux_sym__repeat_newline] = STATE(261), - [sym_ctrl_if_parenthesized] = STATE(3489), - [sym_block] = STATE(3490), - [sym__expression_parenthesized] = STATE(3490), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2163), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(306), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3490), + [sym_cmd_identifier] = STATE(3010), + [aux_sym__repeat_newline] = STATE(1412), + [sym_ctrl_if_parenthesized] = STATE(3425), + [sym_block] = STATE(3426), + [sym__expression_parenthesized] = STATE(3426), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(308), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3426), [sym_comment] = STATE(254), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -66958,28 +67771,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [sym__newline] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [sym__newline] = ACTIONS(1264), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), [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(1272), - [aux_sym__val_number_decimal_token2] = ACTIONS(1274), - [aux_sym__val_number_decimal_token3] = ACTIONS(1276), - [aux_sym__val_number_decimal_token4] = ACTIONS(1276), + [aux_sym__val_number_decimal_token1] = ACTIONS(1274), + [aux_sym__val_number_decimal_token2] = ACTIONS(1276), + [aux_sym__val_number_decimal_token3] = ACTIONS(1278), + [aux_sym__val_number_decimal_token4] = ACTIONS(1278), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -66997,41 +67811,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(2932), - [aux_sym__repeat_newline] = STATE(1413), - [sym_ctrl_if_parenthesized] = STATE(3438), - [sym_block] = STATE(3443), - [sym__expression_parenthesized] = STATE(3443), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2163), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(306), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3443), + [sym_cmd_identifier] = STATE(3010), + [aux_sym__repeat_newline] = STATE(1412), + [sym_ctrl_if_parenthesized] = STATE(3427), + [sym_block] = STATE(3428), + [sym__expression_parenthesized] = STATE(3428), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(308), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3428), [sym_comment] = STATE(255), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -67051,28 +67865,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [sym__newline] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [sym__newline] = ACTIONS(1264), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), [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(1272), - [aux_sym__val_number_decimal_token2] = ACTIONS(1274), - [aux_sym__val_number_decimal_token3] = ACTIONS(1276), - [aux_sym__val_number_decimal_token4] = ACTIONS(1276), + [aux_sym__val_number_decimal_token1] = ACTIONS(1274), + [aux_sym__val_number_decimal_token2] = ACTIONS(1276), + [aux_sym__val_number_decimal_token3] = ACTIONS(1278), + [aux_sym__val_number_decimal_token4] = ACTIONS(1278), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -67090,41 +67905,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(2932), - [aux_sym__repeat_newline] = STATE(262), - [sym_ctrl_if_parenthesized] = STATE(3438), - [sym_block] = STATE(3443), - [sym__expression_parenthesized] = STATE(3443), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2163), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(306), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3443), + [sym_cmd_identifier] = STATE(3010), + [aux_sym__repeat_newline] = STATE(1412), + [sym_ctrl_if_parenthesized] = STATE(3439), + [sym_block] = STATE(3440), + [sym__expression_parenthesized] = STATE(3440), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(308), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3440), [sym_comment] = STATE(256), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -67144,28 +67959,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [sym__newline] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [sym__newline] = ACTIONS(1264), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), [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(1272), - [aux_sym__val_number_decimal_token2] = ACTIONS(1274), - [aux_sym__val_number_decimal_token3] = ACTIONS(1276), - [aux_sym__val_number_decimal_token4] = ACTIONS(1276), + [aux_sym__val_number_decimal_token1] = ACTIONS(1274), + [aux_sym__val_number_decimal_token2] = ACTIONS(1276), + [aux_sym__val_number_decimal_token3] = ACTIONS(1278), + [aux_sym__val_number_decimal_token4] = ACTIONS(1278), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -67183,41 +67999,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(2932), - [aux_sym__repeat_newline] = STATE(1413), - [sym_ctrl_if_parenthesized] = STATE(3493), - [sym_block] = STATE(3495), - [sym__expression_parenthesized] = STATE(3495), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2163), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(306), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3495), + [sym_cmd_identifier] = STATE(3010), + [aux_sym__repeat_newline] = STATE(219), + [sym_ctrl_if_parenthesized] = STATE(3577), + [sym_block] = STATE(3578), + [sym__expression_parenthesized] = STATE(3578), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(308), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3578), [sym_comment] = STATE(257), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -67237,28 +68053,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [sym__newline] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [sym__newline] = ACTIONS(1264), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), [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(1272), - [aux_sym__val_number_decimal_token2] = ACTIONS(1274), - [aux_sym__val_number_decimal_token3] = ACTIONS(1276), - [aux_sym__val_number_decimal_token4] = ACTIONS(1276), + [aux_sym__val_number_decimal_token1] = ACTIONS(1274), + [aux_sym__val_number_decimal_token2] = ACTIONS(1276), + [aux_sym__val_number_decimal_token3] = ACTIONS(1278), + [aux_sym__val_number_decimal_token4] = ACTIONS(1278), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -67276,41 +68093,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(2932), - [aux_sym__repeat_newline] = STATE(264), - [sym_ctrl_if_parenthesized] = STATE(3493), - [sym_block] = STATE(3495), - [sym__expression_parenthesized] = STATE(3495), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2163), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(306), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3495), + [sym_cmd_identifier] = STATE(3010), + [aux_sym__repeat_newline] = STATE(221), + [sym_ctrl_if_parenthesized] = STATE(3473), + [sym_block] = STATE(3474), + [sym__expression_parenthesized] = STATE(3474), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(308), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3474), [sym_comment] = STATE(258), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -67330,28 +68147,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [sym__newline] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [sym__newline] = ACTIONS(1264), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), [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(1272), - [aux_sym__val_number_decimal_token2] = ACTIONS(1274), - [aux_sym__val_number_decimal_token3] = ACTIONS(1276), - [aux_sym__val_number_decimal_token4] = ACTIONS(1276), + [aux_sym__val_number_decimal_token1] = ACTIONS(1274), + [aux_sym__val_number_decimal_token2] = ACTIONS(1276), + [aux_sym__val_number_decimal_token3] = ACTIONS(1278), + [aux_sym__val_number_decimal_token4] = ACTIONS(1278), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -67369,41 +68187,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(2932), - [aux_sym__repeat_newline] = STATE(1413), - [sym_ctrl_if_parenthesized] = STATE(3497), - [sym_block] = STATE(3510), - [sym__expression_parenthesized] = STATE(3510), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2163), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(306), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3510), + [sym_cmd_identifier] = STATE(3010), + [aux_sym__repeat_newline] = STATE(262), + [sym_ctrl_if_parenthesized] = STATE(3462), + [sym_block] = STATE(3463), + [sym__expression_parenthesized] = STATE(3463), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3463), [sym_comment] = STATE(259), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -67419,32 +68237,33 @@ 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(1256), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [sym__newline] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [sym__newline] = ACTIONS(1264), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), [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(1272), - [aux_sym__val_number_decimal_token2] = ACTIONS(1274), - [aux_sym__val_number_decimal_token3] = ACTIONS(1276), - [aux_sym__val_number_decimal_token4] = ACTIONS(1276), + [aux_sym__val_number_decimal_token1] = ACTIONS(1268), + [aux_sym__val_number_decimal_token2] = ACTIONS(1270), + [aux_sym__val_number_decimal_token3] = ACTIONS(1272), + [aux_sym__val_number_decimal_token4] = ACTIONS(1272), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -67462,41 +68281,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(2932), - [aux_sym__repeat_newline] = STATE(265), - [sym_ctrl_if_parenthesized] = STATE(3497), - [sym_block] = STATE(3510), - [sym__expression_parenthesized] = STATE(3510), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2163), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(306), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3510), + [sym_cmd_identifier] = STATE(3010), + [aux_sym__repeat_newline] = STATE(197), + [sym_ctrl_if_parenthesized] = STATE(3572), + [sym_block] = STATE(3573), + [sym__expression_parenthesized] = STATE(3573), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3573), [sym_comment] = STATE(260), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -67512,32 +68331,33 @@ 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(1256), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [sym__newline] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [sym__newline] = ACTIONS(1264), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), [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(1272), - [aux_sym__val_number_decimal_token2] = ACTIONS(1274), - [aux_sym__val_number_decimal_token3] = ACTIONS(1276), - [aux_sym__val_number_decimal_token4] = ACTIONS(1276), + [aux_sym__val_number_decimal_token1] = ACTIONS(1268), + [aux_sym__val_number_decimal_token2] = ACTIONS(1270), + [aux_sym__val_number_decimal_token3] = ACTIONS(1272), + [aux_sym__val_number_decimal_token4] = ACTIONS(1272), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -67555,41 +68375,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(2932), - [aux_sym__repeat_newline] = STATE(1413), - [sym_ctrl_if_parenthesized] = STATE(3513), - [sym_block] = STATE(3514), - [sym__expression_parenthesized] = STATE(3514), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2163), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(306), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3514), + [sym_cmd_identifier] = STATE(3010), + [aux_sym__repeat_newline] = STATE(199), + [sym_ctrl_if_parenthesized] = STATE(3396), + [sym_block] = STATE(3575), + [sym__expression_parenthesized] = STATE(3575), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3575), [sym_comment] = STATE(261), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -67605,32 +68425,315 @@ 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(1256), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(271), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), + [anon_sym_match] = ACTIONS(271), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [sym__newline] = ACTIONS(1264), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(1266), + [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(1268), + [aux_sym__val_number_decimal_token2] = ACTIONS(1270), + [aux_sym__val_number_decimal_token3] = ACTIONS(1272), + [aux_sym__val_number_decimal_token4] = ACTIONS(1272), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__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(262)] = { + [sym_cmd_identifier] = STATE(3010), + [aux_sym__repeat_newline] = STATE(1412), + [sym_ctrl_if_parenthesized] = STATE(3577), + [sym_block] = STATE(3578), + [sym__expression_parenthesized] = STATE(3578), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3578), + [sym_comment] = STATE(262), + [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(1256), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(271), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), + [anon_sym_match] = ACTIONS(271), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [sym__newline] = ACTIONS(1264), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(1266), + [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(1268), + [aux_sym__val_number_decimal_token2] = ACTIONS(1270), + [aux_sym__val_number_decimal_token3] = ACTIONS(1272), + [aux_sym__val_number_decimal_token4] = ACTIONS(1272), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__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(263)] = { + [sym_cmd_identifier] = STATE(3010), + [aux_sym__repeat_newline] = STATE(201), + [sym_ctrl_if_parenthesized] = STATE(3577), + [sym_block] = STATE(3578), + [sym__expression_parenthesized] = STATE(3578), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3578), + [sym_comment] = STATE(263), + [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(1256), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(271), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), + [anon_sym_match] = ACTIONS(271), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [sym__newline] = ACTIONS(1264), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(1266), + [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(1268), + [aux_sym__val_number_decimal_token2] = ACTIONS(1270), + [aux_sym__val_number_decimal_token3] = ACTIONS(1272), + [aux_sym__val_number_decimal_token4] = ACTIONS(1272), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__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(264)] = { + [sym_cmd_identifier] = STATE(3010), + [aux_sym__repeat_newline] = STATE(235), + [sym_ctrl_if_parenthesized] = STATE(3462), + [sym_block] = STATE(3463), + [sym__expression_parenthesized] = STATE(3463), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(308), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3463), + [sym_comment] = STATE(264), + [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_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [sym__newline] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [sym__newline] = ACTIONS(1264), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), [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(1272), - [aux_sym__val_number_decimal_token2] = ACTIONS(1274), - [aux_sym__val_number_decimal_token3] = ACTIONS(1276), - [aux_sym__val_number_decimal_token4] = ACTIONS(1276), + [aux_sym__val_number_decimal_token1] = ACTIONS(1274), + [aux_sym__val_number_decimal_token2] = ACTIONS(1276), + [aux_sym__val_number_decimal_token3] = ACTIONS(1278), + [aux_sym__val_number_decimal_token4] = ACTIONS(1278), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -67647,43 +68750,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(262)] = { - [sym_cmd_identifier] = STATE(2932), - [aux_sym__repeat_newline] = STATE(1413), - [sym_ctrl_if_parenthesized] = STATE(3516), - [sym_block] = STATE(3517), - [sym__expression_parenthesized] = STATE(3517), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2163), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(306), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3517), - [sym_comment] = STATE(262), + [STATE(265)] = { + [sym_cmd_identifier] = STATE(3010), + [aux_sym__repeat_newline] = STATE(215), + [sym_ctrl_if_parenthesized] = STATE(3572), + [sym_block] = STATE(3573), + [sym__expression_parenthesized] = STATE(3573), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(308), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3573), + [sym_comment] = STATE(265), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -67702,28 +68805,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [sym__newline] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [sym__newline] = ACTIONS(1264), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), [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(1272), - [aux_sym__val_number_decimal_token2] = ACTIONS(1274), - [aux_sym__val_number_decimal_token3] = ACTIONS(1276), - [aux_sym__val_number_decimal_token4] = ACTIONS(1276), + [aux_sym__val_number_decimal_token1] = ACTIONS(1274), + [aux_sym__val_number_decimal_token2] = ACTIONS(1276), + [aux_sym__val_number_decimal_token3] = ACTIONS(1278), + [aux_sym__val_number_decimal_token4] = ACTIONS(1278), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -67740,43 +68844,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(263)] = { - [sym_cmd_identifier] = STATE(2932), - [aux_sym__repeat_newline] = STATE(196), - [sym_ctrl_if_parenthesized] = STATE(3516), - [sym_block] = STATE(3517), - [sym__expression_parenthesized] = STATE(3517), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2163), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(306), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3517), - [sym_comment] = STATE(263), + [STATE(266)] = { + [sym_cmd_identifier] = STATE(3010), + [aux_sym__repeat_newline] = STATE(1412), + [sym_ctrl_if_parenthesized] = STATE(3488), + [sym_block] = STATE(3489), + [sym__expression_parenthesized] = STATE(3489), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2196), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(315), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3489), + [sym_comment] = STATE(266), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -67791,32 +68895,33 @@ 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(1006), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [sym__newline] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [sym__newline] = ACTIONS(1264), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), [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(1272), - [aux_sym__val_number_decimal_token2] = ACTIONS(1274), - [aux_sym__val_number_decimal_token3] = ACTIONS(1276), - [aux_sym__val_number_decimal_token4] = ACTIONS(1276), + [aux_sym__val_number_decimal_token1] = ACTIONS(1280), + [aux_sym__val_number_decimal_token2] = ACTIONS(1282), + [aux_sym__val_number_decimal_token3] = ACTIONS(1284), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -67833,43 +68938,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(264)] = { - [sym_cmd_identifier] = STATE(2932), - [aux_sym__repeat_newline] = STATE(1413), - [sym_ctrl_if_parenthesized] = STATE(3380), - [sym_block] = STATE(3381), - [sym__expression_parenthesized] = STATE(3381), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2163), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(306), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3381), - [sym_comment] = STATE(264), + [STATE(267)] = { + [sym_cmd_identifier] = STATE(2730), + [sym__expression] = STATE(2287), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(724), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3355), + [sym_comment] = STATE(267), + [aux_sym_pipe_element_repeat2] = STATE(1396), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -67884,32 +68988,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(271), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [sym__newline] = ACTIONS(1262), + [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(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), + [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(1272), - [aux_sym__val_number_decimal_token2] = ACTIONS(1274), - [aux_sym__val_number_decimal_token3] = ACTIONS(1276), - [aux_sym__val_number_decimal_token4] = ACTIONS(1276), + [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), @@ -67926,43 +69030,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(265)] = { - [sym_cmd_identifier] = STATE(2932), - [aux_sym__repeat_newline] = STATE(1413), - [sym_ctrl_if_parenthesized] = STATE(3386), - [sym_block] = STATE(3404), - [sym__expression_parenthesized] = STATE(3404), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2163), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(306), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3404), - [sym_comment] = STATE(265), + [STATE(268)] = { + [sym_cmd_identifier] = STATE(2907), + [sym__expression_parenthesized] = STATE(2295), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2156), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(136), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(4794), + [sym__command_parenthesized] = STATE(3507), + [sym_comment] = STATE(268), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(1394), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -67977,32 +69080,216 @@ 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(271), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(271), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = 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(998), + [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(1000), + [aux_sym__val_number_decimal_token2] = ACTIONS(1002), + [aux_sym__val_number_decimal_token3] = ACTIONS(1004), + [aux_sym__val_number_decimal_token4] = ACTIONS(1004), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__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(269)] = { + [sym_cmd_identifier] = STATE(2907), + [sym__expression_parenthesized] = STATE(2295), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2156), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(119), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(4794), + [sym__command_parenthesized] = STATE(3507), + [sym_comment] = STATE(269), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(1394), + [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_finally] = 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(998), + [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(270)] = { + [sym_cmd_identifier] = STATE(2730), + [sym__expression] = STATE(2287), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(724), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(136), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3355), + [sym_comment] = STATE(270), + [aux_sym_pipe_element_repeat2] = STATE(1396), + [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_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [sym__newline] = ACTIONS(1262), + [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(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), + [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(1272), - [aux_sym__val_number_decimal_token2] = ACTIONS(1274), - [aux_sym__val_number_decimal_token3] = ACTIONS(1276), - [aux_sym__val_number_decimal_token4] = ACTIONS(1276), + [aux_sym__val_number_decimal_token1] = ACTIONS(1000), + [aux_sym__val_number_decimal_token2] = ACTIONS(1002), + [aux_sym__val_number_decimal_token3] = ACTIONS(1004), + [aux_sym__val_number_decimal_token4] = ACTIONS(1004), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -68019,43 +69306,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(266)] = { - [sym_cmd_identifier] = STATE(2932), - [aux_sym__repeat_newline] = STATE(1413), - [sym_ctrl_if_parenthesized] = STATE(3497), - [sym_block] = STATE(3510), - [sym__expression_parenthesized] = STATE(3510), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2163), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(316), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3510), - [sym_comment] = STATE(266), + [STATE(271)] = { + [sym_cmd_identifier] = STATE(3010), + [sym_ctrl_if] = STATE(3313), + [sym_block] = STATE(3242), + [sym__expression] = STATE(3242), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), + [sym__expr_binary_expression] = STATE(2249), + [sym_expr_parenthesized] = STATE(724), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(315), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3242), + [sym_comment] = STATE(271), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -68070,24 +69356,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(1278), + [anon_sym_if] = ACTIONS(996), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [sym__newline] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -68112,100 +69398,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(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_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token1] = ACTIONS(1286), - [aux_sym__immediate_decimal_token5] = ACTIONS(1288), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(268)] = { - [sym_comment] = STATE(268), + [STATE(272)] = { + [sym_comment] = STATE(272), [ts_builtin_sym_end] = ACTIONS(749), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), @@ -68288,16 +69482,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(747), [anon_sym_bit_DASHor2] = ACTIONS(747), [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT] = ACTIONS(1290), + [anon_sym_DOT] = ACTIONS(1286), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token5] = ACTIONS(1292), + [aux_sym__immediate_decimal_token5] = ACTIONS(1288), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(269)] = { - [sym_comment] = STATE(269), + [STATE(273)] = { + [sym_comment] = STATE(273), [ts_builtin_sym_end] = ACTIONS(741), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), @@ -68382,14 +69576,14 @@ 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_token1] = ACTIONS(1294), - [aux_sym__immediate_decimal_token5] = ACTIONS(1296), + [aux_sym__immediate_decimal_token1] = ACTIONS(1290), + [aux_sym__immediate_decimal_token5] = ACTIONS(1292), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(270)] = { - [sym_comment] = STATE(270), + [STATE(274)] = { + [sym_comment] = STATE(274), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -68472,16 +69666,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(747), [anon_sym_bit_DASHor2] = ACTIONS(747), [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT] = ACTIONS(1298), + [anon_sym_DOT] = ACTIONS(1294), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token5] = ACTIONS(1300), + [aux_sym__immediate_decimal_token5] = ACTIONS(1296), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(271)] = { - [sym_comment] = STATE(271), + [STATE(275)] = { + [sym_comment] = STATE(275), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -68566,959 +69760,140 @@ 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_token1] = ACTIONS(1302), - [aux_sym__immediate_decimal_token5] = ACTIONS(1304), + [aux_sym__immediate_decimal_token1] = ACTIONS(1298), + [aux_sym__immediate_decimal_token5] = ACTIONS(1300), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(272)] = { - [sym_comment] = STATE(272), - [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] = ACTIONS(1306), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token5] = ACTIONS(1308), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [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(1310), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(274)] = { - [sym_cmd_identifier] = STATE(3009), - [sym__expression_parenthesized] = STATE(2291), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2157), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(135), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4730), - [sym__command_parenthesized] = STATE(3387), - [sym_comment] = STATE(274), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(1395), - [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(1004), - [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(1012), - [aux_sym__val_number_decimal_token2] = ACTIONS(1014), - [aux_sym__val_number_decimal_token3] = ACTIONS(1016), - [aux_sym__val_number_decimal_token4] = ACTIONS(1016), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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(275)] = { - [sym_comment] = STATE(275), - [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(1312), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_POUND] = ACTIONS(103), - }, [STATE(276)] = { + [sym_cmd_identifier] = STATE(3072), + [sym_ctrl_if] = STATE(3414), + [sym_block] = STATE(3420), + [sym__expression] = STATE(3420), + [sym_expr_unary] = STATE(1292), + [sym__expr_unary_minus] = STATE(1296), + [sym_expr_binary] = STATE(1292), + [sym__expr_binary_expression] = STATE(2251), + [sym_expr_parenthesized] = STATE(964), + [sym_val_range] = STATE(1292), + [sym__value] = STATE(1292), + [sym_val_nothing] = STATE(1316), + [sym_val_bool] = STATE(1316), + [sym_val_variable] = STATE(912), + [sym_val_cellpath] = STATE(1316), + [sym_val_number] = STATE(1316), + [sym__val_number_decimal] = STATE(307), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1316), + [sym_val_filesize] = STATE(1316), + [sym_val_binary] = STATE(1316), + [sym_val_string] = STATE(1316), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1316), + [sym__inter_single_quotes] = STATE(1277), + [sym__inter_double_quotes] = STATE(1311), + [sym_val_list] = STATE(1316), + [sym_val_record] = STATE(1316), + [sym_val_table] = STATE(1316), + [sym_val_closure] = STATE(1316), + [sym_command] = STATE(3420), [sym_comment] = STATE(276), - [ts_builtin_sym_end] = ACTIONS(749), - [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_token5] = ACTIONS(1292), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(277)] = { - [sym_comment] = STATE(277), - [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_RPAREN] = 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_token5] = ACTIONS(1300), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(278)] = { - [sym_cmd_identifier] = STATE(2812), - [sym__expression] = STATE(2286), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(704), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(124), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3255), - [sym_comment] = STATE(278), - [aux_sym_pipe_element_repeat2] = STATE(1400), - [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(1004), - [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(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(279)] = { - [sym_comment] = STATE(279), - [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(1314), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(280)] = { - [sym_cmd_identifier] = STATE(2932), - [sym_ctrl_if] = STATE(3359), - [sym_block] = STATE(3220), - [sym__expression] = STATE(3220), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), - [sym__expr_binary_expression] = STATE(2249), - [sym_expr_parenthesized] = STATE(704), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(306), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3220), - [sym_comment] = STATE(280), - [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(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), - [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(1272), - [aux_sym__val_number_decimal_token2] = ACTIONS(1274), - [aux_sym__val_number_decimal_token3] = ACTIONS(1276), - [aux_sym__val_number_decimal_token4] = ACTIONS(1276), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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_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_finally] = ACTIONS(39), + [anon_sym_match] = ACTIONS(39), + [anon_sym_in] = ACTIONS(45), + [anon_sym_true] = ACTIONS(1302), + [anon_sym_false] = ACTIONS(1302), + [anon_sym_null] = ACTIONS(1304), + [aux_sym_cmd_identifier_token3] = ACTIONS(1306), + [aux_sym_cmd_identifier_token4] = ACTIONS(1306), + [aux_sym_cmd_identifier_token5] = ACTIONS(1306), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(1308), + [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(1310), + [aux_sym__val_number_decimal_token2] = ACTIONS(1312), + [aux_sym__val_number_decimal_token3] = ACTIONS(1314), + [aux_sym__val_number_decimal_token4] = ACTIONS(1314), + [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(211), - }, - [STATE(281)] = { - [sym_comment] = STATE(281), - [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_token5] = ACTIONS(1308), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [anon_sym_POUND] = ACTIONS(103), + [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(282)] = { - [sym_cmd_identifier] = STATE(2812), - [sym__expression] = STATE(2286), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), + [STATE(277)] = { + [sym_cmd_identifier] = STATE(2730), + [sym__expression] = STATE(2287), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(704), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(141), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3255), - [sym_comment] = STATE(282), - [aux_sym_pipe_element_repeat2] = STATE(1400), + [sym_expr_parenthesized] = STATE(724), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(143), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3355), + [sym_comment] = STATE(277), + [aux_sym_pipe_element_repeat2] = STATE(1396), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -69537,6 +69912,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -69547,7 +69923,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -69574,99 +69950,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(283)] = { - [sym_cmd_identifier] = STATE(2932), - [sym_ctrl_if] = STATE(3359), - [sym_block] = STATE(3220), - [sym__expression] = STATE(3220), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), - [sym__expr_binary_expression] = STATE(2249), - [sym_expr_parenthesized] = STATE(704), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(316), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3220), - [sym_comment] = 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(1322), - [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(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), - [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(1280), - [aux_sym__val_number_decimal_token2] = ACTIONS(1282), - [aux_sym__val_number_decimal_token3] = ACTIONS(1284), - [aux_sym__val_number_decimal_token4] = ACTIONS(1284), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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(284)] = { - [sym_comment] = STATE(284), + [STATE(278)] = { + [sym_comment] = STATE(278), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -69716,6 +70001,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), @@ -69748,198 +70034,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(747), [anon_sym_bit_DASHor2] = ACTIONS(747), [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT] = ACTIONS(1324), + [anon_sym_DOT] = ACTIONS(1322), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token5] = ACTIONS(1326), + [aux_sym__immediate_decimal_token5] = ACTIONS(1324), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(285)] = { - [sym_cmd_identifier] = STATE(2812), - [sym__expression] = STATE(2286), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(704), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(135), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3255), - [sym_comment] = STATE(285), - [aux_sym_pipe_element_repeat2] = STATE(1400), - [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(1004), - [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(1012), - [aux_sym__val_number_decimal_token2] = ACTIONS(1014), - [aux_sym__val_number_decimal_token3] = ACTIONS(1016), - [aux_sym__val_number_decimal_token4] = ACTIONS(1016), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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(286)] = { - [sym_cmd_identifier] = STATE(2932), - [sym_ctrl_if] = STATE(3359), - [sym_block] = STATE(3220), - [sym__expression] = STATE(3220), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), - [sym__expr_binary_expression] = STATE(2249), - [sym_expr_parenthesized] = STATE(704), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(315), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3220), - [sym_comment] = STATE(286), - [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(1018), - [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(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), - [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(1266), - [aux_sym__val_number_decimal_token2] = ACTIONS(1268), - [aux_sym__val_number_decimal_token3] = ACTIONS(1270), - [aux_sym__val_number_decimal_token4] = ACTIONS(1270), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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(287)] = { - [sym_comment] = STATE(287), + [STATE(279)] = { + [sym_comment] = STATE(279), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -69989,6 +70093,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), @@ -70023,48 +70128,48 @@ 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_token1] = ACTIONS(1328), - [aux_sym__immediate_decimal_token5] = ACTIONS(1330), + [aux_sym__immediate_decimal_token1] = ACTIONS(1326), + [aux_sym__immediate_decimal_token5] = ACTIONS(1328), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(288)] = { - [sym_cmd_identifier] = STATE(3009), - [sym__expression_parenthesized] = STATE(2291), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2157), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(141), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4730), - [sym__command_parenthesized] = STATE(3387), - [sym_comment] = STATE(288), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(1395), + [STATE(280)] = { + [sym_cmd_identifier] = STATE(3010), + [sym_ctrl_if] = STATE(3313), + [sym_block] = STATE(3242), + [sym__expression] = STATE(3242), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), + [sym__expr_binary_expression] = STATE(2249), + [sym_expr_parenthesized] = STATE(724), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(308), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3242), + [sym_comment] = STATE(280), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -70079,31 +70184,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(271), + [anon_sym_if] = ACTIONS(459), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = 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(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_LBRACE] = ACTIONS(1266), [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(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(1274), + [aux_sym__val_number_decimal_token2] = ACTIONS(1276), + [aux_sym__val_number_decimal_token3] = ACTIONS(1278), + [aux_sym__val_number_decimal_token4] = ACTIONS(1278), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -70116,46 +70222,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(289)] = { - [sym_cmd_identifier] = STATE(3009), - [sym__expression_parenthesized] = STATE(2291), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2157), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(124), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4730), - [sym__command_parenthesized] = STATE(3387), - [sym_comment] = STATE(289), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(1395), + [STATE(281)] = { + [sym_cmd_identifier] = STATE(2730), + [sym__expression] = STATE(2287), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(724), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(125), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3355), + [sym_comment] = STATE(281), + [aux_sym_pipe_element_repeat2] = STATE(1396), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -70174,6 +70280,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -70184,17 +70291,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [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_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), @@ -70207,137 +70314,230 @@ 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(3046), - [sym_ctrl_if] = STATE(3444), - [sym_block] = STATE(3474), - [sym__expression] = STATE(3474), - [sym_expr_unary] = STATE(1286), - [sym__expr_unary_minus] = STATE(1290), - [sym_expr_binary] = STATE(1286), - [sym__expr_binary_expression] = STATE(2251), - [sym_expr_parenthesized] = STATE(924), - [sym_val_range] = STATE(1286), - [sym__value] = STATE(1286), - [sym_val_nothing] = STATE(1295), - [sym_val_bool] = STATE(1295), - [sym_val_variable] = STATE(933), - [sym_val_cellpath] = STATE(1295), - [sym_val_number] = STATE(1295), - [sym__val_number_decimal] = STATE(305), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1295), - [sym_val_filesize] = STATE(1295), - [sym_val_binary] = STATE(1295), - [sym_val_string] = STATE(1295), - [sym__raw_str] = STATE(502), - [sym__str_double_quotes] = STATE(502), - [sym__str_single_quotes] = STATE(502), - [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1295), - [sym__inter_single_quotes] = STATE(1306), - [sym__inter_double_quotes] = STATE(1317), - [sym_val_list] = STATE(1295), - [sym_val_record] = STATE(1295), - [sym_val_table] = STATE(1295), - [sym_val_closure] = STATE(1295), - [sym_command] = STATE(3474), - [sym_comment] = STATE(290), - [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(1332), - [anon_sym_false] = ACTIONS(1332), - [anon_sym_null] = ACTIONS(1334), - [aux_sym_cmd_identifier_token3] = ACTIONS(1336), - [aux_sym_cmd_identifier_token4] = ACTIONS(1336), - [aux_sym_cmd_identifier_token5] = ACTIONS(1336), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1008), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(1338), - [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(1340), - [aux_sym__val_number_decimal_token2] = ACTIONS(1342), - [aux_sym__val_number_decimal_token3] = ACTIONS(1344), - [aux_sym__val_number_decimal_token4] = ACTIONS(1344), - [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), + [STATE(282)] = { + [sym_cmd_identifier] = STATE(3010), + [sym_ctrl_if] = STATE(3313), + [sym_block] = STATE(3242), + [sym__expression] = STATE(3242), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), + [sym__expr_binary_expression] = STATE(2249), + [sym_expr_parenthesized] = STATE(724), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(309), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3242), + [sym_comment] = STATE(282), + [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_finally] = ACTIONS(271), + [anon_sym_match] = ACTIONS(271), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(1266), + [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(1330), + [aux_sym__val_number_decimal_token2] = ACTIONS(1332), + [aux_sym__val_number_decimal_token3] = ACTIONS(1334), + [aux_sym__val_number_decimal_token4] = ACTIONS(1334), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__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(291)] = { - [sym_cmd_identifier] = STATE(2947), - [sym__expression] = STATE(2292), - [sym_expr_unary] = STATE(1286), - [sym__expr_unary_minus] = STATE(1290), - [sym_expr_binary] = STATE(1286), - [sym__expr_binary_expression] = STATE(2252), - [sym_expr_parenthesized] = STATE(924), - [sym_val_range] = STATE(1286), - [sym__value] = STATE(1286), - [sym_val_nothing] = STATE(1295), - [sym_val_bool] = STATE(1295), - [sym_val_variable] = STATE(933), - [sym_val_cellpath] = STATE(1295), - [sym_val_number] = STATE(1295), - [sym__val_number_decimal] = STATE(123), + [STATE(283)] = { + [sym_cmd_identifier] = STATE(3010), + [sym_ctrl_if] = STATE(3313), + [sym_block] = STATE(3242), + [sym__expression] = STATE(3242), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), + [sym__expr_binary_expression] = STATE(2249), + [sym_expr_parenthesized] = STATE(724), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_command] = STATE(3242), + [sym_comment] = 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(1336), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(271), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), + [anon_sym_match] = ACTIONS(271), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_null] = ACTIONS(1260), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(1266), + [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(1268), + [aux_sym__val_number_decimal_token2] = ACTIONS(1270), + [aux_sym__val_number_decimal_token3] = ACTIONS(1272), + [aux_sym__val_number_decimal_token4] = ACTIONS(1272), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__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(284)] = { + [sym_cmd_identifier] = STATE(2951), + [sym__expression] = STATE(2290), + [sym_expr_unary] = STATE(1292), + [sym__expr_unary_minus] = STATE(1296), + [sym_expr_binary] = STATE(1292), + [sym__expr_binary_expression] = STATE(2248), + [sym_expr_parenthesized] = STATE(964), + [sym_val_range] = STATE(1292), + [sym__value] = STATE(1292), + [sym_val_nothing] = STATE(1316), + [sym_val_bool] = STATE(1316), + [sym_val_variable] = STATE(912), + [sym_val_cellpath] = STATE(1316), + [sym_val_number] = STATE(1316), + [sym__val_number_decimal] = STATE(132), [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1295), - [sym_val_filesize] = STATE(1295), - [sym_val_binary] = STATE(1295), - [sym_val_string] = STATE(1295), + [sym_val_duration] = STATE(1316), + [sym_val_filesize] = STATE(1316), + [sym_val_binary] = STATE(1316), + [sym_val_string] = STATE(1316), [sym__raw_str] = STATE(502), [sym__str_double_quotes] = STATE(502), [sym__str_single_quotes] = STATE(502), [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1295), - [sym__inter_single_quotes] = STATE(1306), - [sym__inter_double_quotes] = STATE(1317), - [sym_val_list] = STATE(1295), - [sym_val_record] = STATE(1295), - [sym_val_table] = STATE(1295), - [sym_val_closure] = STATE(1295), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3403), - [sym_comment] = STATE(291), - [aux_sym_pipe_element_repeat2] = STATE(1400), + [sym_val_interpolated] = STATE(1316), + [sym__inter_single_quotes] = STATE(1277), + [sym__inter_double_quotes] = STATE(1311), + [sym_val_list] = STATE(1316), + [sym_val_record] = STATE(1316), + [sym_val_table] = STATE(1316), + [sym_val_closure] = STATE(1316), + [sym_env_var] = STATE(5036), + [sym_command] = STATE(3506), + [sym_comment] = STATE(284), + [aux_sym_pipe_element_repeat2] = STATE(1396), [anon_sym_export] = ACTIONS(45), [anon_sym_alias] = ACTIONS(39), [anon_sym_let] = ACTIONS(39), @@ -70356,6 +70556,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(39), [anon_sym_try] = ACTIONS(39), [anon_sym_catch] = ACTIONS(39), + [anon_sym_finally] = ACTIONS(39), [anon_sym_match] = ACTIONS(39), [anon_sym_in] = ACTIONS(45), [anon_sym_true] = ACTIONS(47), @@ -70366,7 +70567,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(1008), + [anon_sym_DOLLAR] = ACTIONS(1010), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_DOT_DOT] = ACTIONS(69), @@ -70393,42 +70594,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(292)] = { - [sym_cmd_identifier] = STATE(2812), - [sym__expression] = STATE(2286), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(704), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(133), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_env_var] = STATE(4786), - [sym_command] = STATE(3255), - [sym_comment] = STATE(292), - [aux_sym_pipe_element_repeat2] = STATE(1400), + [STATE(285)] = { + [sym_cmd_identifier] = STATE(2907), + [sym__expression_parenthesized] = STATE(2295), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2156), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(143), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_env_var] = STATE(4794), + [sym__command_parenthesized] = STATE(3507), + [sym_comment] = STATE(285), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(1394), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -70447,6 +70648,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), + [anon_sym_finally] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), [anon_sym_true] = ACTIONS(279), @@ -70457,108 +70659,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [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(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(293)] = { - [sym_cmd_identifier] = STATE(2932), - [sym_ctrl_if] = STATE(3359), - [sym_block] = STATE(3220), - [sym__expression] = STATE(3220), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), - [sym__expr_binary_expression] = STATE(2249), - [sym_expr_parenthesized] = STATE(704), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(307), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_command] = STATE(3220), - [sym_comment] = STATE(293), - [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(1256), - [anon_sym_false] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [aux_sym_cmd_identifier_token3] = ACTIONS(1260), - [aux_sym_cmd_identifier_token4] = ACTIONS(1260), - [aux_sym_cmd_identifier_token5] = ACTIONS(1260), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), - [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(1346), - [aux_sym__val_number_decimal_token2] = ACTIONS(1348), - [aux_sym__val_number_decimal_token3] = ACTIONS(1350), - [aux_sym__val_number_decimal_token4] = ACTIONS(1350), + [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(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -70571,12 +70682,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(294)] = { - [sym_comment] = STATE(294), + [STATE(286)] = { + [sym_comment] = STATE(286), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -70614,6 +70725,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), @@ -70657,16 +70769,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(747), [anon_sym_bit_DASHor2] = ACTIONS(747), [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT] = ACTIONS(1352), + [anon_sym_DOT] = ACTIONS(1338), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token5] = ACTIONS(1354), + [aux_sym__immediate_decimal_token5] = ACTIONS(1340), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(295)] = { - [sym_comment] = STATE(295), + [STATE(287)] = { + [sym_comment] = STATE(287), + [ts_builtin_sym_end] = ACTIONS(749), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -70750,38 +70863,402 @@ 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_token5] = ACTIONS(1326), + [aux_sym__immediate_decimal_token5] = ACTIONS(1288), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(296)] = { - [sym_comment] = STATE(296), - [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), + [STATE(288)] = { + [sym_comment] = STATE(288), + [anon_sym_in] = ACTIONS(767), + [anon_sym_STAR_STAR] = ACTIONS(769), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_STAR] = ACTIONS(767), + [anon_sym_SLASH] = ACTIONS(767), + [anon_sym_mod] = ACTIONS(769), + [anon_sym_SLASH_SLASH] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(767), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_bit_DASHshl] = ACTIONS(769), + [anon_sym_bit_DASHshr] = ACTIONS(769), + [anon_sym_EQ_TILDE] = ACTIONS(769), + [anon_sym_BANG_TILDE] = ACTIONS(769), + [anon_sym_like] = ACTIONS(769), + [anon_sym_not_DASHlike] = ACTIONS(769), + [anon_sym_bit_DASHand] = ACTIONS(769), + [anon_sym_bit_DASHxor] = ACTIONS(769), + [anon_sym_bit_DASHor] = ACTIONS(769), + [anon_sym_and] = ACTIONS(769), + [anon_sym_xor] = ACTIONS(769), + [anon_sym_or] = ACTIONS(769), + [anon_sym_in2] = ACTIONS(769), + [anon_sym_not_DASHin] = ACTIONS(769), + [anon_sym_has] = ACTIONS(769), + [anon_sym_not_DASHhas] = ACTIONS(769), + [anon_sym_starts_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(769), + [anon_sym_ends_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(769), + [anon_sym_EQ_EQ] = ACTIONS(769), + [anon_sym_BANG_EQ] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(767), + [anon_sym_LT_EQ] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(767), + [anon_sym_GT_EQ] = ACTIONS(769), + [aux_sym_cmd_identifier_token6] = ACTIONS(767), + [sym__newline] = ACTIONS(767), + [anon_sym_SEMI] = ACTIONS(767), + [anon_sym_PIPE] = ACTIONS(767), + [anon_sym_err_GT_PIPE] = ACTIONS(767), + [anon_sym_out_GT_PIPE] = ACTIONS(767), + [anon_sym_e_GT_PIPE] = ACTIONS(767), + [anon_sym_o_GT_PIPE] = ACTIONS(767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(767), + [anon_sym_RPAREN] = ACTIONS(767), + [anon_sym_GT2] = ACTIONS(767), + [anon_sym_DASH2] = ACTIONS(767), + [anon_sym_STAR2] = ACTIONS(767), + [anon_sym_and2] = ACTIONS(767), + [anon_sym_xor2] = ACTIONS(767), + [anon_sym_or2] = ACTIONS(767), + [anon_sym_not_DASHin2] = ACTIONS(767), + [anon_sym_has2] = ACTIONS(767), + [anon_sym_not_DASHhas2] = ACTIONS(767), + [anon_sym_starts_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(767), + [anon_sym_ends_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(767), + [anon_sym_EQ_EQ2] = ACTIONS(767), + [anon_sym_BANG_EQ2] = ACTIONS(767), + [anon_sym_LT2] = ACTIONS(767), + [anon_sym_LT_EQ2] = ACTIONS(767), + [anon_sym_GT_EQ2] = ACTIONS(767), + [anon_sym_EQ_TILDE2] = ACTIONS(767), + [anon_sym_BANG_TILDE2] = ACTIONS(767), + [anon_sym_like2] = ACTIONS(767), + [anon_sym_not_DASHlike2] = ACTIONS(767), + [anon_sym_STAR_STAR2] = ACTIONS(767), + [anon_sym_PLUS_PLUS2] = ACTIONS(767), + [anon_sym_SLASH2] = ACTIONS(767), + [anon_sym_mod2] = ACTIONS(767), + [anon_sym_SLASH_SLASH2] = ACTIONS(767), + [anon_sym_PLUS2] = ACTIONS(767), + [anon_sym_bit_DASHshl2] = ACTIONS(767), + [anon_sym_bit_DASHshr2] = ACTIONS(767), + [anon_sym_bit_DASHand2] = ACTIONS(767), + [anon_sym_bit_DASHxor2] = ACTIONS(767), + [anon_sym_bit_DASHor2] = ACTIONS(767), + [anon_sym_DOT_DOT2] = ACTIONS(767), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(769), + [aux_sym__immediate_decimal_token5] = ACTIONS(1342), + [sym_filesize_unit] = ACTIONS(767), + [sym_duration_unit] = ACTIONS(769), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(289)] = { + [sym_comment] = STATE(289), + [ts_builtin_sym_end] = ACTIONS(769), + [anon_sym_in] = ACTIONS(767), + [anon_sym_STAR_STAR] = ACTIONS(769), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_STAR] = ACTIONS(767), + [anon_sym_SLASH] = ACTIONS(767), + [anon_sym_mod] = ACTIONS(769), + [anon_sym_SLASH_SLASH] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(767), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_bit_DASHshl] = ACTIONS(769), + [anon_sym_bit_DASHshr] = ACTIONS(769), + [anon_sym_EQ_TILDE] = ACTIONS(769), + [anon_sym_BANG_TILDE] = ACTIONS(769), + [anon_sym_like] = ACTIONS(769), + [anon_sym_not_DASHlike] = ACTIONS(769), + [anon_sym_bit_DASHand] = ACTIONS(769), + [anon_sym_bit_DASHxor] = ACTIONS(769), + [anon_sym_bit_DASHor] = ACTIONS(769), + [anon_sym_and] = ACTIONS(769), + [anon_sym_xor] = ACTIONS(769), + [anon_sym_or] = ACTIONS(769), + [anon_sym_in2] = ACTIONS(769), + [anon_sym_not_DASHin] = ACTIONS(769), + [anon_sym_has] = ACTIONS(769), + [anon_sym_not_DASHhas] = ACTIONS(769), + [anon_sym_starts_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(769), + [anon_sym_ends_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(769), + [anon_sym_EQ_EQ] = ACTIONS(769), + [anon_sym_BANG_EQ] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(767), + [anon_sym_LT_EQ] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(767), + [anon_sym_GT_EQ] = ACTIONS(769), + [aux_sym_cmd_identifier_token6] = ACTIONS(767), + [sym__newline] = ACTIONS(767), + [anon_sym_SEMI] = ACTIONS(767), + [anon_sym_PIPE] = ACTIONS(767), + [anon_sym_err_GT_PIPE] = ACTIONS(767), + [anon_sym_out_GT_PIPE] = ACTIONS(767), + [anon_sym_e_GT_PIPE] = ACTIONS(767), + [anon_sym_o_GT_PIPE] = ACTIONS(767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(767), + [anon_sym_GT2] = ACTIONS(767), + [anon_sym_DASH2] = ACTIONS(767), + [anon_sym_STAR2] = ACTIONS(767), + [anon_sym_and2] = ACTIONS(767), + [anon_sym_xor2] = ACTIONS(767), + [anon_sym_or2] = ACTIONS(767), + [anon_sym_not_DASHin2] = ACTIONS(767), + [anon_sym_has2] = ACTIONS(767), + [anon_sym_not_DASHhas2] = ACTIONS(767), + [anon_sym_starts_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(767), + [anon_sym_ends_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(767), + [anon_sym_EQ_EQ2] = ACTIONS(767), + [anon_sym_BANG_EQ2] = ACTIONS(767), + [anon_sym_LT2] = ACTIONS(767), + [anon_sym_LT_EQ2] = ACTIONS(767), + [anon_sym_GT_EQ2] = ACTIONS(767), + [anon_sym_EQ_TILDE2] = ACTIONS(767), + [anon_sym_BANG_TILDE2] = ACTIONS(767), + [anon_sym_like2] = ACTIONS(767), + [anon_sym_not_DASHlike2] = ACTIONS(767), + [anon_sym_STAR_STAR2] = ACTIONS(767), + [anon_sym_PLUS_PLUS2] = ACTIONS(767), + [anon_sym_SLASH2] = ACTIONS(767), + [anon_sym_mod2] = ACTIONS(767), + [anon_sym_SLASH_SLASH2] = ACTIONS(767), + [anon_sym_PLUS2] = ACTIONS(767), + [anon_sym_bit_DASHshl2] = ACTIONS(767), + [anon_sym_bit_DASHshr2] = ACTIONS(767), + [anon_sym_bit_DASHand2] = ACTIONS(767), + [anon_sym_bit_DASHxor2] = ACTIONS(767), + [anon_sym_bit_DASHor2] = ACTIONS(767), + [anon_sym_DOT_DOT2] = ACTIONS(767), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(769), + [aux_sym__immediate_decimal_token5] = ACTIONS(1344), + [sym_filesize_unit] = ACTIONS(767), + [sym_duration_unit] = ACTIONS(769), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(290)] = { + [sym_comment] = STATE(290), + [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_RPAREN] = 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_token5] = ACTIONS(1296), + [sym_filesize_unit] = ACTIONS(747), + [sym_duration_unit] = ACTIONS(749), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(291)] = { + [sym_comment] = STATE(291), + [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_token5] = ACTIONS(1324), + [sym_filesize_unit] = ACTIONS(747), + [sym_duration_unit] = ACTIONS(749), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(292)] = { + [sym_comment] = STATE(292), + [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), @@ -70794,6 +71271,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), @@ -70839,104 +71317,285 @@ 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_token1] = ACTIONS(1356), - [aux_sym__immediate_decimal_token5] = ACTIONS(1358), + [aux_sym__immediate_decimal_token1] = ACTIONS(1346), + [aux_sym__immediate_decimal_token5] = ACTIONS(1348), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(297)] = { - [sym_comment] = STATE(297), - [anon_sym_in] = ACTIONS(860), - [anon_sym_STAR_STAR] = ACTIONS(862), - [anon_sym_PLUS_PLUS] = ACTIONS(862), - [anon_sym_STAR] = ACTIONS(860), - [anon_sym_SLASH] = ACTIONS(860), - [anon_sym_mod] = ACTIONS(862), - [anon_sym_SLASH_SLASH] = ACTIONS(862), - [anon_sym_PLUS] = ACTIONS(860), - [anon_sym_DASH] = ACTIONS(862), - [anon_sym_bit_DASHshl] = ACTIONS(862), - [anon_sym_bit_DASHshr] = ACTIONS(862), - [anon_sym_EQ_TILDE] = ACTIONS(862), - [anon_sym_BANG_TILDE] = ACTIONS(862), - [anon_sym_like] = ACTIONS(862), - [anon_sym_not_DASHlike] = ACTIONS(862), - [anon_sym_bit_DASHand] = ACTIONS(862), - [anon_sym_bit_DASHxor] = ACTIONS(862), - [anon_sym_bit_DASHor] = ACTIONS(862), - [anon_sym_and] = ACTIONS(862), - [anon_sym_xor] = ACTIONS(862), - [anon_sym_or] = ACTIONS(862), - [anon_sym_in2] = ACTIONS(862), - [anon_sym_not_DASHin] = ACTIONS(862), - [anon_sym_has] = ACTIONS(862), - [anon_sym_not_DASHhas] = ACTIONS(862), - [anon_sym_starts_DASHwith] = ACTIONS(862), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(862), - [anon_sym_ends_DASHwith] = ACTIONS(862), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(862), - [anon_sym_EQ_EQ] = ACTIONS(862), - [anon_sym_BANG_EQ] = ACTIONS(862), - [anon_sym_LT] = ACTIONS(860), - [anon_sym_LT_EQ] = ACTIONS(862), - [anon_sym_GT] = ACTIONS(860), - [anon_sym_GT_EQ] = ACTIONS(862), - [aux_sym_cmd_identifier_token6] = ACTIONS(860), - [sym__newline] = ACTIONS(860), - [anon_sym_SEMI] = ACTIONS(860), - [anon_sym_PIPE] = ACTIONS(860), - [anon_sym_err_GT_PIPE] = ACTIONS(860), - [anon_sym_out_GT_PIPE] = ACTIONS(860), - [anon_sym_e_GT_PIPE] = ACTIONS(860), - [anon_sym_o_GT_PIPE] = ACTIONS(860), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(860), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(860), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(860), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(860), - [anon_sym_RPAREN] = ACTIONS(860), - [anon_sym_GT2] = ACTIONS(860), - [anon_sym_DASH2] = ACTIONS(860), - [anon_sym_STAR2] = ACTIONS(860), - [anon_sym_and2] = ACTIONS(860), - [anon_sym_xor2] = ACTIONS(860), - [anon_sym_or2] = ACTIONS(860), - [anon_sym_not_DASHin2] = ACTIONS(860), - [anon_sym_has2] = ACTIONS(860), - [anon_sym_not_DASHhas2] = ACTIONS(860), - [anon_sym_starts_DASHwith2] = ACTIONS(860), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(860), - [anon_sym_ends_DASHwith2] = ACTIONS(860), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(860), - [anon_sym_EQ_EQ2] = ACTIONS(860), - [anon_sym_BANG_EQ2] = ACTIONS(860), - [anon_sym_LT2] = ACTIONS(860), - [anon_sym_LT_EQ2] = ACTIONS(860), - [anon_sym_GT_EQ2] = ACTIONS(860), - [anon_sym_EQ_TILDE2] = ACTIONS(860), - [anon_sym_BANG_TILDE2] = ACTIONS(860), - [anon_sym_like2] = ACTIONS(860), - [anon_sym_not_DASHlike2] = ACTIONS(860), - [anon_sym_STAR_STAR2] = ACTIONS(860), - [anon_sym_PLUS_PLUS2] = ACTIONS(860), - [anon_sym_SLASH2] = ACTIONS(860), - [anon_sym_mod2] = ACTIONS(860), - [anon_sym_SLASH_SLASH2] = ACTIONS(860), - [anon_sym_PLUS2] = ACTIONS(860), - [anon_sym_bit_DASHshl2] = ACTIONS(860), - [anon_sym_bit_DASHshr2] = ACTIONS(860), - [anon_sym_bit_DASHand2] = ACTIONS(860), - [anon_sym_bit_DASHxor2] = ACTIONS(860), - [anon_sym_bit_DASHor2] = ACTIONS(860), - [anon_sym_DOT_DOT2] = ACTIONS(860), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(862), - [anon_sym_DOT_DOT_LT2] = ACTIONS(862), - [sym_filesize_unit] = ACTIONS(860), - [sym_duration_unit] = ACTIONS(862), + [STATE(293)] = { + [sym_comment] = STATE(293), + [anon_sym_in] = ACTIONS(767), + [anon_sym_STAR_STAR] = ACTIONS(769), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_STAR] = ACTIONS(767), + [anon_sym_SLASH] = ACTIONS(767), + [anon_sym_mod] = ACTIONS(769), + [anon_sym_SLASH_SLASH] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(767), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_bit_DASHshl] = ACTIONS(769), + [anon_sym_bit_DASHshr] = ACTIONS(769), + [anon_sym_EQ_TILDE] = ACTIONS(769), + [anon_sym_BANG_TILDE] = ACTIONS(769), + [anon_sym_like] = ACTIONS(769), + [anon_sym_not_DASHlike] = ACTIONS(769), + [anon_sym_bit_DASHand] = ACTIONS(769), + [anon_sym_bit_DASHxor] = ACTIONS(769), + [anon_sym_bit_DASHor] = ACTIONS(769), + [anon_sym_and] = ACTIONS(769), + [anon_sym_xor] = ACTIONS(769), + [anon_sym_or] = ACTIONS(769), + [anon_sym_in2] = ACTIONS(769), + [anon_sym_not_DASHin] = ACTIONS(769), + [anon_sym_has] = ACTIONS(769), + [anon_sym_not_DASHhas] = ACTIONS(769), + [anon_sym_starts_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(769), + [anon_sym_ends_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(769), + [anon_sym_EQ_EQ] = ACTIONS(769), + [anon_sym_BANG_EQ] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(767), + [anon_sym_LT_EQ] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(767), + [anon_sym_GT_EQ] = ACTIONS(769), + [aux_sym_cmd_identifier_token6] = ACTIONS(767), + [sym__newline] = ACTIONS(767), + [anon_sym_SEMI] = ACTIONS(767), + [anon_sym_PIPE] = ACTIONS(767), + [anon_sym_err_GT_PIPE] = ACTIONS(767), + [anon_sym_out_GT_PIPE] = ACTIONS(767), + [anon_sym_e_GT_PIPE] = ACTIONS(767), + [anon_sym_o_GT_PIPE] = ACTIONS(767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(767), + [anon_sym_GT2] = ACTIONS(767), + [anon_sym_DASH2] = ACTIONS(767), + [anon_sym_RBRACE] = ACTIONS(767), + [anon_sym_STAR2] = ACTIONS(767), + [anon_sym_and2] = ACTIONS(767), + [anon_sym_xor2] = ACTIONS(767), + [anon_sym_or2] = ACTIONS(767), + [anon_sym_not_DASHin2] = ACTIONS(767), + [anon_sym_has2] = ACTIONS(767), + [anon_sym_not_DASHhas2] = ACTIONS(767), + [anon_sym_starts_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(767), + [anon_sym_ends_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(767), + [anon_sym_EQ_EQ2] = ACTIONS(767), + [anon_sym_BANG_EQ2] = ACTIONS(767), + [anon_sym_LT2] = ACTIONS(767), + [anon_sym_LT_EQ2] = ACTIONS(767), + [anon_sym_GT_EQ2] = ACTIONS(767), + [anon_sym_EQ_TILDE2] = ACTIONS(767), + [anon_sym_BANG_TILDE2] = ACTIONS(767), + [anon_sym_like2] = ACTIONS(767), + [anon_sym_not_DASHlike2] = ACTIONS(767), + [anon_sym_STAR_STAR2] = ACTIONS(767), + [anon_sym_PLUS_PLUS2] = ACTIONS(767), + [anon_sym_SLASH2] = ACTIONS(767), + [anon_sym_mod2] = ACTIONS(767), + [anon_sym_SLASH_SLASH2] = ACTIONS(767), + [anon_sym_PLUS2] = ACTIONS(767), + [anon_sym_bit_DASHshl2] = ACTIONS(767), + [anon_sym_bit_DASHshr2] = ACTIONS(767), + [anon_sym_bit_DASHand2] = ACTIONS(767), + [anon_sym_bit_DASHxor2] = ACTIONS(767), + [anon_sym_bit_DASHor2] = ACTIONS(767), + [anon_sym_DOT_DOT2] = ACTIONS(767), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(769), + [aux_sym__immediate_decimal_token5] = ACTIONS(1350), + [sym_filesize_unit] = ACTIONS(767), + [sym_duration_unit] = ACTIONS(769), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(298)] = { - [sym_comment] = STATE(298), + [STATE(294)] = { + [sym_comment] = STATE(294), + [ts_builtin_sym_end] = ACTIONS(769), + [anon_sym_in] = ACTIONS(767), + [anon_sym_STAR_STAR] = ACTIONS(769), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_STAR] = ACTIONS(767), + [anon_sym_SLASH] = ACTIONS(767), + [anon_sym_mod] = ACTIONS(769), + [anon_sym_SLASH_SLASH] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(767), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_bit_DASHshl] = ACTIONS(769), + [anon_sym_bit_DASHshr] = ACTIONS(769), + [anon_sym_EQ_TILDE] = ACTIONS(769), + [anon_sym_BANG_TILDE] = ACTIONS(769), + [anon_sym_like] = ACTIONS(769), + [anon_sym_not_DASHlike] = ACTIONS(769), + [anon_sym_bit_DASHand] = ACTIONS(769), + [anon_sym_bit_DASHxor] = ACTIONS(769), + [anon_sym_bit_DASHor] = ACTIONS(769), + [anon_sym_and] = ACTIONS(769), + [anon_sym_xor] = ACTIONS(769), + [anon_sym_or] = ACTIONS(769), + [anon_sym_in2] = ACTIONS(769), + [anon_sym_not_DASHin] = ACTIONS(769), + [anon_sym_has] = ACTIONS(769), + [anon_sym_not_DASHhas] = ACTIONS(769), + [anon_sym_starts_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(769), + [anon_sym_ends_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(769), + [anon_sym_EQ_EQ] = ACTIONS(769), + [anon_sym_BANG_EQ] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(767), + [anon_sym_LT_EQ] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(767), + [anon_sym_GT_EQ] = ACTIONS(769), + [aux_sym_cmd_identifier_token6] = ACTIONS(767), + [sym__newline] = ACTIONS(767), + [anon_sym_SEMI] = ACTIONS(767), + [anon_sym_PIPE] = ACTIONS(767), + [anon_sym_err_GT_PIPE] = ACTIONS(767), + [anon_sym_out_GT_PIPE] = ACTIONS(767), + [anon_sym_e_GT_PIPE] = ACTIONS(767), + [anon_sym_o_GT_PIPE] = ACTIONS(767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(767), + [anon_sym_GT2] = ACTIONS(767), + [anon_sym_DASH2] = ACTIONS(767), + [anon_sym_STAR2] = ACTIONS(767), + [anon_sym_and2] = ACTIONS(767), + [anon_sym_xor2] = ACTIONS(767), + [anon_sym_or2] = ACTIONS(767), + [anon_sym_not_DASHin2] = ACTIONS(767), + [anon_sym_has2] = ACTIONS(767), + [anon_sym_not_DASHhas2] = ACTIONS(767), + [anon_sym_starts_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(767), + [anon_sym_ends_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(767), + [anon_sym_EQ_EQ2] = ACTIONS(767), + [anon_sym_BANG_EQ2] = ACTIONS(767), + [anon_sym_LT2] = ACTIONS(767), + [anon_sym_LT_EQ2] = ACTIONS(767), + [anon_sym_GT_EQ2] = ACTIONS(767), + [anon_sym_EQ_TILDE2] = ACTIONS(767), + [anon_sym_BANG_TILDE2] = ACTIONS(767), + [anon_sym_like2] = ACTIONS(767), + [anon_sym_not_DASHlike2] = ACTIONS(767), + [anon_sym_STAR_STAR2] = ACTIONS(767), + [anon_sym_PLUS_PLUS2] = ACTIONS(767), + [anon_sym_SLASH2] = ACTIONS(767), + [anon_sym_mod2] = ACTIONS(767), + [anon_sym_SLASH_SLASH2] = ACTIONS(767), + [anon_sym_PLUS2] = ACTIONS(767), + [anon_sym_bit_DASHshl2] = ACTIONS(767), + [anon_sym_bit_DASHshr2] = ACTIONS(767), + [anon_sym_bit_DASHand2] = ACTIONS(767), + [anon_sym_bit_DASHxor2] = ACTIONS(767), + [anon_sym_bit_DASHor2] = ACTIONS(767), + [anon_sym_DOT_DOT2] = ACTIONS(767), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(769), + [sym_filesize_unit] = ACTIONS(767), + [sym_duration_unit] = ACTIONS(769), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(295)] = { + [sym_comment] = STATE(295), + [ts_builtin_sym_end] = ACTIONS(865), + [anon_sym_in] = ACTIONS(863), + [anon_sym_STAR_STAR] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_STAR] = ACTIONS(863), + [anon_sym_SLASH] = ACTIONS(863), + [anon_sym_mod] = ACTIONS(865), + [anon_sym_SLASH_SLASH] = ACTIONS(865), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(865), + [anon_sym_bit_DASHshl] = ACTIONS(865), + [anon_sym_bit_DASHshr] = ACTIONS(865), + [anon_sym_EQ_TILDE] = ACTIONS(865), + [anon_sym_BANG_TILDE] = ACTIONS(865), + [anon_sym_like] = ACTIONS(865), + [anon_sym_not_DASHlike] = ACTIONS(865), + [anon_sym_bit_DASHand] = ACTIONS(865), + [anon_sym_bit_DASHxor] = ACTIONS(865), + [anon_sym_bit_DASHor] = ACTIONS(865), + [anon_sym_and] = ACTIONS(865), + [anon_sym_xor] = ACTIONS(865), + [anon_sym_or] = ACTIONS(865), + [anon_sym_in2] = ACTIONS(865), + [anon_sym_not_DASHin] = ACTIONS(865), + [anon_sym_has] = ACTIONS(865), + [anon_sym_not_DASHhas] = ACTIONS(865), + [anon_sym_starts_DASHwith] = ACTIONS(865), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(865), + [anon_sym_ends_DASHwith] = ACTIONS(865), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(865), + [anon_sym_EQ_EQ] = ACTIONS(865), + [anon_sym_BANG_EQ] = ACTIONS(865), + [anon_sym_LT] = ACTIONS(863), + [anon_sym_LT_EQ] = ACTIONS(865), + [anon_sym_GT] = ACTIONS(863), + [anon_sym_GT_EQ] = ACTIONS(865), + [aux_sym_cmd_identifier_token6] = ACTIONS(863), + [sym__newline] = ACTIONS(863), + [anon_sym_SEMI] = ACTIONS(863), + [anon_sym_PIPE] = ACTIONS(863), + [anon_sym_err_GT_PIPE] = ACTIONS(863), + [anon_sym_out_GT_PIPE] = ACTIONS(863), + [anon_sym_e_GT_PIPE] = ACTIONS(863), + [anon_sym_o_GT_PIPE] = ACTIONS(863), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(863), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(863), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(863), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(863), + [anon_sym_GT2] = ACTIONS(863), + [anon_sym_DASH2] = ACTIONS(863), + [anon_sym_STAR2] = ACTIONS(863), + [anon_sym_and2] = ACTIONS(863), + [anon_sym_xor2] = ACTIONS(863), + [anon_sym_or2] = ACTIONS(863), + [anon_sym_not_DASHin2] = ACTIONS(863), + [anon_sym_has2] = ACTIONS(863), + [anon_sym_not_DASHhas2] = ACTIONS(863), + [anon_sym_starts_DASHwith2] = ACTIONS(863), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(863), + [anon_sym_ends_DASHwith2] = ACTIONS(863), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(863), + [anon_sym_EQ_EQ2] = ACTIONS(863), + [anon_sym_BANG_EQ2] = ACTIONS(863), + [anon_sym_LT2] = ACTIONS(863), + [anon_sym_LT_EQ2] = ACTIONS(863), + [anon_sym_GT_EQ2] = ACTIONS(863), + [anon_sym_EQ_TILDE2] = ACTIONS(863), + [anon_sym_BANG_TILDE2] = ACTIONS(863), + [anon_sym_like2] = ACTIONS(863), + [anon_sym_not_DASHlike2] = ACTIONS(863), + [anon_sym_STAR_STAR2] = ACTIONS(863), + [anon_sym_PLUS_PLUS2] = ACTIONS(863), + [anon_sym_SLASH2] = ACTIONS(863), + [anon_sym_mod2] = ACTIONS(863), + [anon_sym_SLASH_SLASH2] = ACTIONS(863), + [anon_sym_PLUS2] = ACTIONS(863), + [anon_sym_bit_DASHshl2] = ACTIONS(863), + [anon_sym_bit_DASHshr2] = ACTIONS(863), + [anon_sym_bit_DASHand2] = ACTIONS(863), + [anon_sym_bit_DASHxor2] = ACTIONS(863), + [anon_sym_bit_DASHor2] = ACTIONS(863), + [anon_sym_DOT_DOT2] = ACTIONS(863), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(865), + [anon_sym_DOT_DOT_LT2] = ACTIONS(865), + [sym_filesize_unit] = ACTIONS(863), + [sym_duration_unit] = ACTIONS(865), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(296)] = { + [sym_comment] = STATE(296), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -71025,8 +71684,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_duration_unit] = ACTIONS(741), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(299)] = { - [sym_comment] = STATE(299), + [STATE(297)] = { + [sym_comment] = STATE(297), [ts_builtin_sym_end] = ACTIONS(741), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), @@ -71115,274 +71774,454 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_duration_unit] = ACTIONS(741), [anon_sym_POUND] = ACTIONS(103), }, + [STATE(298)] = { + [sym_comment] = STATE(298), + [anon_sym_in] = ACTIONS(767), + [anon_sym_STAR_STAR] = ACTIONS(769), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_STAR] = ACTIONS(767), + [anon_sym_SLASH] = ACTIONS(767), + [anon_sym_mod] = ACTIONS(769), + [anon_sym_SLASH_SLASH] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(767), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_bit_DASHshl] = ACTIONS(769), + [anon_sym_bit_DASHshr] = ACTIONS(769), + [anon_sym_EQ_TILDE] = ACTIONS(769), + [anon_sym_BANG_TILDE] = ACTIONS(769), + [anon_sym_like] = ACTIONS(769), + [anon_sym_not_DASHlike] = ACTIONS(769), + [anon_sym_bit_DASHand] = ACTIONS(769), + [anon_sym_bit_DASHxor] = ACTIONS(769), + [anon_sym_bit_DASHor] = ACTIONS(769), + [anon_sym_and] = ACTIONS(769), + [anon_sym_xor] = ACTIONS(769), + [anon_sym_or] = ACTIONS(769), + [anon_sym_in2] = ACTIONS(769), + [anon_sym_not_DASHin] = ACTIONS(769), + [anon_sym_has] = ACTIONS(769), + [anon_sym_not_DASHhas] = ACTIONS(769), + [anon_sym_starts_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(769), + [anon_sym_ends_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(769), + [anon_sym_EQ_EQ] = ACTIONS(769), + [anon_sym_BANG_EQ] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(767), + [anon_sym_LT_EQ] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(767), + [anon_sym_GT_EQ] = ACTIONS(769), + [aux_sym_cmd_identifier_token6] = ACTIONS(767), + [sym__newline] = ACTIONS(767), + [anon_sym_SEMI] = ACTIONS(767), + [anon_sym_PIPE] = ACTIONS(767), + [anon_sym_err_GT_PIPE] = ACTIONS(767), + [anon_sym_out_GT_PIPE] = ACTIONS(767), + [anon_sym_e_GT_PIPE] = ACTIONS(767), + [anon_sym_o_GT_PIPE] = ACTIONS(767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(767), + [anon_sym_RPAREN] = ACTIONS(767), + [anon_sym_GT2] = ACTIONS(767), + [anon_sym_DASH2] = ACTIONS(767), + [anon_sym_STAR2] = ACTIONS(767), + [anon_sym_and2] = ACTIONS(767), + [anon_sym_xor2] = ACTIONS(767), + [anon_sym_or2] = ACTIONS(767), + [anon_sym_not_DASHin2] = ACTIONS(767), + [anon_sym_has2] = ACTIONS(767), + [anon_sym_not_DASHhas2] = ACTIONS(767), + [anon_sym_starts_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(767), + [anon_sym_ends_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(767), + [anon_sym_EQ_EQ2] = ACTIONS(767), + [anon_sym_BANG_EQ2] = ACTIONS(767), + [anon_sym_LT2] = ACTIONS(767), + [anon_sym_LT_EQ2] = ACTIONS(767), + [anon_sym_GT_EQ2] = ACTIONS(767), + [anon_sym_EQ_TILDE2] = ACTIONS(767), + [anon_sym_BANG_TILDE2] = ACTIONS(767), + [anon_sym_like2] = ACTIONS(767), + [anon_sym_not_DASHlike2] = ACTIONS(767), + [anon_sym_STAR_STAR2] = ACTIONS(767), + [anon_sym_PLUS_PLUS2] = ACTIONS(767), + [anon_sym_SLASH2] = ACTIONS(767), + [anon_sym_mod2] = ACTIONS(767), + [anon_sym_SLASH_SLASH2] = ACTIONS(767), + [anon_sym_PLUS2] = ACTIONS(767), + [anon_sym_bit_DASHshl2] = ACTIONS(767), + [anon_sym_bit_DASHshr2] = ACTIONS(767), + [anon_sym_bit_DASHand2] = ACTIONS(767), + [anon_sym_bit_DASHxor2] = ACTIONS(767), + [anon_sym_bit_DASHor2] = ACTIONS(767), + [anon_sym_DOT_DOT2] = ACTIONS(767), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(769), + [sym_filesize_unit] = ACTIONS(767), + [sym_duration_unit] = ACTIONS(769), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(299)] = { + [sym_comment] = STATE(299), + [anon_sym_in] = ACTIONS(863), + [anon_sym_STAR_STAR] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_STAR] = ACTIONS(863), + [anon_sym_SLASH] = ACTIONS(863), + [anon_sym_mod] = ACTIONS(865), + [anon_sym_SLASH_SLASH] = ACTIONS(865), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(865), + [anon_sym_bit_DASHshl] = ACTIONS(865), + [anon_sym_bit_DASHshr] = ACTIONS(865), + [anon_sym_EQ_TILDE] = ACTIONS(865), + [anon_sym_BANG_TILDE] = ACTIONS(865), + [anon_sym_like] = ACTIONS(865), + [anon_sym_not_DASHlike] = ACTIONS(865), + [anon_sym_bit_DASHand] = ACTIONS(865), + [anon_sym_bit_DASHxor] = ACTIONS(865), + [anon_sym_bit_DASHor] = ACTIONS(865), + [anon_sym_and] = ACTIONS(865), + [anon_sym_xor] = ACTIONS(865), + [anon_sym_or] = ACTIONS(865), + [anon_sym_in2] = ACTIONS(865), + [anon_sym_not_DASHin] = ACTIONS(865), + [anon_sym_has] = ACTIONS(865), + [anon_sym_not_DASHhas] = ACTIONS(865), + [anon_sym_starts_DASHwith] = ACTIONS(865), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(865), + [anon_sym_ends_DASHwith] = ACTIONS(865), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(865), + [anon_sym_EQ_EQ] = ACTIONS(865), + [anon_sym_BANG_EQ] = ACTIONS(865), + [anon_sym_LT] = ACTIONS(863), + [anon_sym_LT_EQ] = ACTIONS(865), + [anon_sym_GT] = ACTIONS(863), + [anon_sym_GT_EQ] = ACTIONS(865), + [aux_sym_cmd_identifier_token6] = ACTIONS(863), + [sym__newline] = ACTIONS(863), + [anon_sym_SEMI] = ACTIONS(863), + [anon_sym_PIPE] = ACTIONS(863), + [anon_sym_err_GT_PIPE] = ACTIONS(863), + [anon_sym_out_GT_PIPE] = ACTIONS(863), + [anon_sym_e_GT_PIPE] = ACTIONS(863), + [anon_sym_o_GT_PIPE] = ACTIONS(863), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(863), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(863), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(863), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(863), + [anon_sym_RPAREN] = ACTIONS(863), + [anon_sym_GT2] = ACTIONS(863), + [anon_sym_DASH2] = ACTIONS(863), + [anon_sym_STAR2] = ACTIONS(863), + [anon_sym_and2] = ACTIONS(863), + [anon_sym_xor2] = ACTIONS(863), + [anon_sym_or2] = ACTIONS(863), + [anon_sym_not_DASHin2] = ACTIONS(863), + [anon_sym_has2] = ACTIONS(863), + [anon_sym_not_DASHhas2] = ACTIONS(863), + [anon_sym_starts_DASHwith2] = ACTIONS(863), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(863), + [anon_sym_ends_DASHwith2] = ACTIONS(863), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(863), + [anon_sym_EQ_EQ2] = ACTIONS(863), + [anon_sym_BANG_EQ2] = ACTIONS(863), + [anon_sym_LT2] = ACTIONS(863), + [anon_sym_LT_EQ2] = ACTIONS(863), + [anon_sym_GT_EQ2] = ACTIONS(863), + [anon_sym_EQ_TILDE2] = ACTIONS(863), + [anon_sym_BANG_TILDE2] = ACTIONS(863), + [anon_sym_like2] = ACTIONS(863), + [anon_sym_not_DASHlike2] = ACTIONS(863), + [anon_sym_STAR_STAR2] = ACTIONS(863), + [anon_sym_PLUS_PLUS2] = ACTIONS(863), + [anon_sym_SLASH2] = ACTIONS(863), + [anon_sym_mod2] = ACTIONS(863), + [anon_sym_SLASH_SLASH2] = ACTIONS(863), + [anon_sym_PLUS2] = ACTIONS(863), + [anon_sym_bit_DASHshl2] = ACTIONS(863), + [anon_sym_bit_DASHshr2] = ACTIONS(863), + [anon_sym_bit_DASHand2] = ACTIONS(863), + [anon_sym_bit_DASHxor2] = ACTIONS(863), + [anon_sym_bit_DASHor2] = ACTIONS(863), + [anon_sym_DOT_DOT2] = ACTIONS(863), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(865), + [anon_sym_DOT_DOT_LT2] = ACTIONS(865), + [sym_filesize_unit] = ACTIONS(863), + [sym_duration_unit] = ACTIONS(865), + [anon_sym_POUND] = ACTIONS(103), + }, [STATE(300)] = { [sym_comment] = STATE(300), - [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_in] = ACTIONS(767), + [anon_sym_STAR_STAR] = ACTIONS(769), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_STAR] = ACTIONS(767), + [anon_sym_SLASH] = ACTIONS(767), + [anon_sym_mod] = ACTIONS(769), + [anon_sym_SLASH_SLASH] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(767), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_bit_DASHshl] = ACTIONS(769), + [anon_sym_bit_DASHshr] = ACTIONS(769), + [anon_sym_EQ_TILDE] = ACTIONS(769), + [anon_sym_BANG_TILDE] = ACTIONS(769), + [anon_sym_like] = ACTIONS(769), + [anon_sym_not_DASHlike] = ACTIONS(769), + [anon_sym_bit_DASHand] = ACTIONS(769), + [anon_sym_bit_DASHxor] = ACTIONS(769), + [anon_sym_bit_DASHor] = ACTIONS(769), + [anon_sym_and] = ACTIONS(769), + [anon_sym_xor] = ACTIONS(769), + [anon_sym_or] = ACTIONS(769), + [anon_sym_in2] = ACTIONS(769), + [anon_sym_not_DASHin] = ACTIONS(769), + [anon_sym_has] = ACTIONS(769), + [anon_sym_not_DASHhas] = ACTIONS(769), + [anon_sym_starts_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(769), + [anon_sym_ends_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(769), + [anon_sym_EQ_EQ] = ACTIONS(769), + [anon_sym_BANG_EQ] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(767), + [anon_sym_LT_EQ] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(767), + [anon_sym_GT_EQ] = ACTIONS(769), + [aux_sym_cmd_identifier_token6] = ACTIONS(767), + [sym__newline] = ACTIONS(767), + [anon_sym_SEMI] = ACTIONS(767), + [anon_sym_PIPE] = ACTIONS(767), + [anon_sym_err_GT_PIPE] = ACTIONS(767), + [anon_sym_out_GT_PIPE] = ACTIONS(767), + [anon_sym_e_GT_PIPE] = ACTIONS(767), + [anon_sym_o_GT_PIPE] = ACTIONS(767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(767), + [anon_sym_GT2] = ACTIONS(767), + [anon_sym_DASH2] = ACTIONS(767), + [anon_sym_RBRACE] = ACTIONS(767), + [anon_sym_STAR2] = ACTIONS(767), + [anon_sym_and2] = ACTIONS(767), + [anon_sym_xor2] = ACTIONS(767), + [anon_sym_or2] = ACTIONS(767), + [anon_sym_not_DASHin2] = ACTIONS(767), + [anon_sym_has2] = ACTIONS(767), + [anon_sym_not_DASHhas2] = ACTIONS(767), + [anon_sym_starts_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(767), + [anon_sym_ends_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(767), + [anon_sym_EQ_EQ2] = ACTIONS(767), + [anon_sym_BANG_EQ2] = ACTIONS(767), + [anon_sym_LT2] = ACTIONS(767), + [anon_sym_LT_EQ2] = ACTIONS(767), + [anon_sym_GT_EQ2] = ACTIONS(767), + [anon_sym_EQ_TILDE2] = ACTIONS(767), + [anon_sym_BANG_TILDE2] = ACTIONS(767), + [anon_sym_like2] = ACTIONS(767), + [anon_sym_not_DASHlike2] = ACTIONS(767), + [anon_sym_STAR_STAR2] = ACTIONS(767), + [anon_sym_PLUS_PLUS2] = ACTIONS(767), + [anon_sym_SLASH2] = ACTIONS(767), + [anon_sym_mod2] = ACTIONS(767), + [anon_sym_SLASH_SLASH2] = ACTIONS(767), + [anon_sym_PLUS2] = ACTIONS(767), + [anon_sym_bit_DASHshl2] = ACTIONS(767), + [anon_sym_bit_DASHshr2] = ACTIONS(767), + [anon_sym_bit_DASHand2] = ACTIONS(767), + [anon_sym_bit_DASHxor2] = ACTIONS(767), + [anon_sym_bit_DASHor2] = ACTIONS(767), + [anon_sym_DOT_DOT2] = ACTIONS(767), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(769), + [sym_filesize_unit] = ACTIONS(767), + [sym_duration_unit] = ACTIONS(769), [anon_sym_POUND] = ACTIONS(103), }, [STATE(301)] = { [sym_comment] = STATE(301), - [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_in] = ACTIONS(863), + [anon_sym_STAR_STAR] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_STAR] = ACTIONS(863), + [anon_sym_SLASH] = ACTIONS(863), + [anon_sym_mod] = ACTIONS(865), + [anon_sym_SLASH_SLASH] = ACTIONS(865), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(865), + [anon_sym_bit_DASHshl] = ACTIONS(865), + [anon_sym_bit_DASHshr] = ACTIONS(865), + [anon_sym_EQ_TILDE] = ACTIONS(865), + [anon_sym_BANG_TILDE] = ACTIONS(865), + [anon_sym_like] = ACTIONS(865), + [anon_sym_not_DASHlike] = ACTIONS(865), + [anon_sym_bit_DASHand] = ACTIONS(865), + [anon_sym_bit_DASHxor] = ACTIONS(865), + [anon_sym_bit_DASHor] = ACTIONS(865), + [anon_sym_and] = ACTIONS(865), + [anon_sym_xor] = ACTIONS(865), + [anon_sym_or] = ACTIONS(865), + [anon_sym_in2] = ACTIONS(865), + [anon_sym_not_DASHin] = ACTIONS(865), + [anon_sym_has] = ACTIONS(865), + [anon_sym_not_DASHhas] = ACTIONS(865), + [anon_sym_starts_DASHwith] = ACTIONS(865), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(865), + [anon_sym_ends_DASHwith] = ACTIONS(865), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(865), + [anon_sym_EQ_EQ] = ACTIONS(865), + [anon_sym_BANG_EQ] = ACTIONS(865), + [anon_sym_LT] = ACTIONS(863), + [anon_sym_LT_EQ] = ACTIONS(865), + [anon_sym_GT] = ACTIONS(863), + [anon_sym_GT_EQ] = ACTIONS(865), + [aux_sym_cmd_identifier_token6] = ACTIONS(863), + [sym__newline] = ACTIONS(863), + [anon_sym_SEMI] = ACTIONS(863), + [anon_sym_PIPE] = ACTIONS(863), + [anon_sym_err_GT_PIPE] = ACTIONS(863), + [anon_sym_out_GT_PIPE] = ACTIONS(863), + [anon_sym_e_GT_PIPE] = ACTIONS(863), + [anon_sym_o_GT_PIPE] = ACTIONS(863), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(863), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(863), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(863), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(863), + [anon_sym_GT2] = ACTIONS(863), + [anon_sym_DASH2] = ACTIONS(863), + [anon_sym_RBRACE] = ACTIONS(863), + [anon_sym_STAR2] = ACTIONS(863), + [anon_sym_and2] = ACTIONS(863), + [anon_sym_xor2] = ACTIONS(863), + [anon_sym_or2] = ACTIONS(863), + [anon_sym_not_DASHin2] = ACTIONS(863), + [anon_sym_has2] = ACTIONS(863), + [anon_sym_not_DASHhas2] = ACTIONS(863), + [anon_sym_starts_DASHwith2] = ACTIONS(863), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(863), + [anon_sym_ends_DASHwith2] = ACTIONS(863), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(863), + [anon_sym_EQ_EQ2] = ACTIONS(863), + [anon_sym_BANG_EQ2] = ACTIONS(863), + [anon_sym_LT2] = ACTIONS(863), + [anon_sym_LT_EQ2] = ACTIONS(863), + [anon_sym_GT_EQ2] = ACTIONS(863), + [anon_sym_EQ_TILDE2] = ACTIONS(863), + [anon_sym_BANG_TILDE2] = ACTIONS(863), + [anon_sym_like2] = ACTIONS(863), + [anon_sym_not_DASHlike2] = ACTIONS(863), + [anon_sym_STAR_STAR2] = ACTIONS(863), + [anon_sym_PLUS_PLUS2] = ACTIONS(863), + [anon_sym_SLASH2] = ACTIONS(863), + [anon_sym_mod2] = ACTIONS(863), + [anon_sym_SLASH_SLASH2] = ACTIONS(863), + [anon_sym_PLUS2] = ACTIONS(863), + [anon_sym_bit_DASHshl2] = ACTIONS(863), + [anon_sym_bit_DASHshr2] = ACTIONS(863), + [anon_sym_bit_DASHand2] = ACTIONS(863), + [anon_sym_bit_DASHxor2] = ACTIONS(863), + [anon_sym_bit_DASHor2] = ACTIONS(863), + [anon_sym_DOT_DOT2] = ACTIONS(863), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(865), + [anon_sym_DOT_DOT_LT2] = ACTIONS(865), + [sym_filesize_unit] = ACTIONS(863), + [sym_duration_unit] = ACTIONS(865), [anon_sym_POUND] = ACTIONS(103), }, [STATE(302)] = { [sym_comment] = STATE(302), - [ts_builtin_sym_end] = ACTIONS(862), - [anon_sym_in] = ACTIONS(860), - [anon_sym_STAR_STAR] = ACTIONS(862), - [anon_sym_PLUS_PLUS] = ACTIONS(862), - [anon_sym_STAR] = ACTIONS(860), - [anon_sym_SLASH] = ACTIONS(860), - [anon_sym_mod] = ACTIONS(862), - [anon_sym_SLASH_SLASH] = ACTIONS(862), - [anon_sym_PLUS] = ACTIONS(860), - [anon_sym_DASH] = ACTIONS(862), - [anon_sym_bit_DASHshl] = ACTIONS(862), - [anon_sym_bit_DASHshr] = ACTIONS(862), - [anon_sym_EQ_TILDE] = ACTIONS(862), - [anon_sym_BANG_TILDE] = ACTIONS(862), - [anon_sym_like] = ACTIONS(862), - [anon_sym_not_DASHlike] = ACTIONS(862), - [anon_sym_bit_DASHand] = ACTIONS(862), - [anon_sym_bit_DASHxor] = ACTIONS(862), - [anon_sym_bit_DASHor] = ACTIONS(862), - [anon_sym_and] = ACTIONS(862), - [anon_sym_xor] = ACTIONS(862), - [anon_sym_or] = ACTIONS(862), - [anon_sym_in2] = ACTIONS(862), - [anon_sym_not_DASHin] = ACTIONS(862), - [anon_sym_has] = ACTIONS(862), - [anon_sym_not_DASHhas] = ACTIONS(862), - [anon_sym_starts_DASHwith] = ACTIONS(862), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(862), - [anon_sym_ends_DASHwith] = ACTIONS(862), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(862), - [anon_sym_EQ_EQ] = ACTIONS(862), - [anon_sym_BANG_EQ] = ACTIONS(862), - [anon_sym_LT] = ACTIONS(860), - [anon_sym_LT_EQ] = ACTIONS(862), - [anon_sym_GT] = ACTIONS(860), - [anon_sym_GT_EQ] = ACTIONS(862), - [aux_sym_cmd_identifier_token6] = ACTIONS(860), - [sym__newline] = ACTIONS(860), - [anon_sym_SEMI] = ACTIONS(860), - [anon_sym_PIPE] = ACTIONS(860), - [anon_sym_err_GT_PIPE] = ACTIONS(860), - [anon_sym_out_GT_PIPE] = ACTIONS(860), - [anon_sym_e_GT_PIPE] = ACTIONS(860), - [anon_sym_o_GT_PIPE] = ACTIONS(860), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(860), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(860), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(860), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(860), - [anon_sym_GT2] = ACTIONS(860), - [anon_sym_DASH2] = ACTIONS(860), - [anon_sym_STAR2] = ACTIONS(860), - [anon_sym_and2] = ACTIONS(860), - [anon_sym_xor2] = ACTIONS(860), - [anon_sym_or2] = ACTIONS(860), - [anon_sym_not_DASHin2] = ACTIONS(860), - [anon_sym_has2] = ACTIONS(860), - [anon_sym_not_DASHhas2] = ACTIONS(860), - [anon_sym_starts_DASHwith2] = ACTIONS(860), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(860), - [anon_sym_ends_DASHwith2] = ACTIONS(860), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(860), - [anon_sym_EQ_EQ2] = ACTIONS(860), - [anon_sym_BANG_EQ2] = ACTIONS(860), - [anon_sym_LT2] = ACTIONS(860), - [anon_sym_LT_EQ2] = ACTIONS(860), - [anon_sym_GT_EQ2] = ACTIONS(860), - [anon_sym_EQ_TILDE2] = ACTIONS(860), - [anon_sym_BANG_TILDE2] = ACTIONS(860), - [anon_sym_like2] = ACTIONS(860), - [anon_sym_not_DASHlike2] = ACTIONS(860), - [anon_sym_STAR_STAR2] = ACTIONS(860), - [anon_sym_PLUS_PLUS2] = ACTIONS(860), - [anon_sym_SLASH2] = ACTIONS(860), - [anon_sym_mod2] = ACTIONS(860), - [anon_sym_SLASH_SLASH2] = ACTIONS(860), - [anon_sym_PLUS2] = ACTIONS(860), - [anon_sym_bit_DASHshl2] = ACTIONS(860), - [anon_sym_bit_DASHshr2] = ACTIONS(860), - [anon_sym_bit_DASHand2] = ACTIONS(860), - [anon_sym_bit_DASHxor2] = ACTIONS(860), - [anon_sym_bit_DASHor2] = ACTIONS(860), - [anon_sym_DOT_DOT2] = ACTIONS(860), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(862), - [anon_sym_DOT_DOT_LT2] = ACTIONS(862), - [sym_filesize_unit] = ACTIONS(860), - [sym_duration_unit] = ACTIONS(862), + [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] = ACTIONS(1352), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), + [anon_sym_DOT_DOT_LT2] = ACTIONS(749), + [aux_sym__immediate_decimal_token5] = ACTIONS(1354), + [sym_filesize_unit] = ACTIONS(747), + [sym_duration_unit] = ACTIONS(749), [anon_sym_POUND] = ACTIONS(103), }, [STATE(303)] = { @@ -71424,7 +72263,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), @@ -71436,7 +72274,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), @@ -71471,552 +72308,14 @@ 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_token1] = ACTIONS(1356), + [aux_sym__immediate_decimal_token5] = ACTIONS(1358), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_POUND] = ACTIONS(103), }, [STATE(304)] = { [sym_comment] = STATE(304), - [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(1360), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(305)] = { - [sym_comment] = STATE(305), - [ts_builtin_sym_end] = ACTIONS(886), - [anon_sym_in] = ACTIONS(866), - [anon_sym_STAR_STAR] = ACTIONS(888), - [anon_sym_PLUS_PLUS] = ACTIONS(888), - [anon_sym_STAR] = ACTIONS(890), - [anon_sym_SLASH] = ACTIONS(890), - [anon_sym_mod] = ACTIONS(888), - [anon_sym_SLASH_SLASH] = ACTIONS(888), - [anon_sym_PLUS] = ACTIONS(890), - [anon_sym_DASH] = ACTIONS(888), - [anon_sym_bit_DASHshl] = ACTIONS(888), - [anon_sym_bit_DASHshr] = ACTIONS(888), - [anon_sym_EQ_TILDE] = ACTIONS(888), - [anon_sym_BANG_TILDE] = ACTIONS(888), - [anon_sym_like] = ACTIONS(888), - [anon_sym_not_DASHlike] = ACTIONS(888), - [anon_sym_bit_DASHand] = ACTIONS(888), - [anon_sym_bit_DASHxor] = ACTIONS(888), - [anon_sym_bit_DASHor] = ACTIONS(888), - [anon_sym_and] = ACTIONS(888), - [anon_sym_xor] = ACTIONS(888), - [anon_sym_or] = ACTIONS(888), - [anon_sym_in2] = ACTIONS(888), - [anon_sym_not_DASHin] = ACTIONS(888), - [anon_sym_has] = ACTIONS(888), - [anon_sym_not_DASHhas] = ACTIONS(888), - [anon_sym_starts_DASHwith] = ACTIONS(888), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(888), - [anon_sym_ends_DASHwith] = ACTIONS(888), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(888), - [anon_sym_EQ_EQ] = ACTIONS(888), - [anon_sym_BANG_EQ] = ACTIONS(888), - [anon_sym_LT] = ACTIONS(890), - [anon_sym_LT_EQ] = ACTIONS(888), - [anon_sym_GT] = ACTIONS(890), - [anon_sym_GT_EQ] = ACTIONS(888), - [aux_sym_cmd_identifier_token6] = ACTIONS(892), - [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(894), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(896), - [anon_sym_DOT_DOT_LT2] = ACTIONS(896), - [sym_filesize_unit] = ACTIONS(1362), - [sym_duration_unit] = ACTIONS(1364), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(306)] = { - [sym_comment] = STATE(306), - [anon_sym_in] = ACTIONS(866), - [anon_sym_STAR_STAR] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_STAR] = ACTIONS(904), - [anon_sym_SLASH] = ACTIONS(904), - [anon_sym_mod] = ACTIONS(902), - [anon_sym_SLASH_SLASH] = ACTIONS(902), - [anon_sym_PLUS] = ACTIONS(904), - [anon_sym_DASH] = ACTIONS(902), - [anon_sym_bit_DASHshl] = ACTIONS(902), - [anon_sym_bit_DASHshr] = ACTIONS(902), - [anon_sym_EQ_TILDE] = ACTIONS(902), - [anon_sym_BANG_TILDE] = ACTIONS(902), - [anon_sym_like] = ACTIONS(902), - [anon_sym_not_DASHlike] = ACTIONS(902), - [anon_sym_bit_DASHand] = ACTIONS(902), - [anon_sym_bit_DASHxor] = ACTIONS(902), - [anon_sym_bit_DASHor] = ACTIONS(902), - [anon_sym_and] = ACTIONS(902), - [anon_sym_xor] = ACTIONS(902), - [anon_sym_or] = ACTIONS(902), - [anon_sym_in2] = ACTIONS(902), - [anon_sym_not_DASHin] = ACTIONS(902), - [anon_sym_has] = ACTIONS(902), - [anon_sym_not_DASHhas] = ACTIONS(902), - [anon_sym_starts_DASHwith] = ACTIONS(902), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(902), - [anon_sym_ends_DASHwith] = ACTIONS(902), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(902), - [anon_sym_EQ_EQ] = ACTIONS(902), - [anon_sym_BANG_EQ] = ACTIONS(902), - [anon_sym_LT] = ACTIONS(904), - [anon_sym_LT_EQ] = ACTIONS(902), - [anon_sym_GT] = ACTIONS(904), - [anon_sym_GT_EQ] = ACTIONS(902), - [aux_sym_cmd_identifier_token6] = ACTIONS(906), - [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(1366), - [sym_duration_unit] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(307)] = { - [sym_comment] = STATE(307), - [anon_sym_in] = ACTIONS(866), - [anon_sym_STAR_STAR] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_STAR] = ACTIONS(904), - [anon_sym_SLASH] = ACTIONS(904), - [anon_sym_mod] = ACTIONS(902), - [anon_sym_SLASH_SLASH] = ACTIONS(902), - [anon_sym_PLUS] = ACTIONS(904), - [anon_sym_DASH] = ACTIONS(902), - [anon_sym_bit_DASHshl] = ACTIONS(902), - [anon_sym_bit_DASHshr] = ACTIONS(902), - [anon_sym_EQ_TILDE] = ACTIONS(902), - [anon_sym_BANG_TILDE] = ACTIONS(902), - [anon_sym_like] = ACTIONS(902), - [anon_sym_not_DASHlike] = ACTIONS(902), - [anon_sym_bit_DASHand] = ACTIONS(902), - [anon_sym_bit_DASHxor] = ACTIONS(902), - [anon_sym_bit_DASHor] = ACTIONS(902), - [anon_sym_and] = ACTIONS(902), - [anon_sym_xor] = ACTIONS(902), - [anon_sym_or] = ACTIONS(902), - [anon_sym_in2] = ACTIONS(902), - [anon_sym_not_DASHin] = ACTIONS(902), - [anon_sym_has] = ACTIONS(902), - [anon_sym_not_DASHhas] = ACTIONS(902), - [anon_sym_starts_DASHwith] = ACTIONS(902), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(902), - [anon_sym_ends_DASHwith] = ACTIONS(902), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(902), - [anon_sym_EQ_EQ] = ACTIONS(902), - [anon_sym_BANG_EQ] = ACTIONS(902), - [anon_sym_LT] = ACTIONS(904), - [anon_sym_LT_EQ] = ACTIONS(902), - [anon_sym_GT] = ACTIONS(904), - [anon_sym_GT_EQ] = ACTIONS(902), - [aux_sym_cmd_identifier_token6] = ACTIONS(906), - [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(1370), - [sym_duration_unit] = ACTIONS(1372), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(308)] = { - [sym_comment] = STATE(308), - [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(309)] = { - [sym_comment] = STATE(309), - [anon_sym_in] = ACTIONS(860), - [anon_sym_STAR_STAR] = ACTIONS(862), - [anon_sym_PLUS_PLUS] = ACTIONS(862), - [anon_sym_STAR] = ACTIONS(860), - [anon_sym_SLASH] = ACTIONS(860), - [anon_sym_mod] = ACTIONS(862), - [anon_sym_SLASH_SLASH] = ACTIONS(862), - [anon_sym_PLUS] = ACTIONS(860), - [anon_sym_DASH] = ACTIONS(862), - [anon_sym_bit_DASHshl] = ACTIONS(862), - [anon_sym_bit_DASHshr] = ACTIONS(862), - [anon_sym_EQ_TILDE] = ACTIONS(862), - [anon_sym_BANG_TILDE] = ACTIONS(862), - [anon_sym_like] = ACTIONS(862), - [anon_sym_not_DASHlike] = ACTIONS(862), - [anon_sym_bit_DASHand] = ACTIONS(862), - [anon_sym_bit_DASHxor] = ACTIONS(862), - [anon_sym_bit_DASHor] = ACTIONS(862), - [anon_sym_and] = ACTIONS(862), - [anon_sym_xor] = ACTIONS(862), - [anon_sym_or] = ACTIONS(862), - [anon_sym_in2] = ACTIONS(862), - [anon_sym_not_DASHin] = ACTIONS(862), - [anon_sym_has] = ACTIONS(862), - [anon_sym_not_DASHhas] = ACTIONS(862), - [anon_sym_starts_DASHwith] = ACTIONS(862), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(862), - [anon_sym_ends_DASHwith] = ACTIONS(862), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(862), - [anon_sym_EQ_EQ] = ACTIONS(862), - [anon_sym_BANG_EQ] = ACTIONS(862), - [anon_sym_LT] = ACTIONS(860), - [anon_sym_LT_EQ] = ACTIONS(862), - [anon_sym_GT] = ACTIONS(860), - [anon_sym_GT_EQ] = ACTIONS(862), - [aux_sym_cmd_identifier_token6] = ACTIONS(860), - [sym__newline] = ACTIONS(860), - [anon_sym_SEMI] = ACTIONS(860), - [anon_sym_PIPE] = ACTIONS(860), - [anon_sym_err_GT_PIPE] = ACTIONS(860), - [anon_sym_out_GT_PIPE] = ACTIONS(860), - [anon_sym_e_GT_PIPE] = ACTIONS(860), - [anon_sym_o_GT_PIPE] = ACTIONS(860), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(860), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(860), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(860), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(860), - [anon_sym_GT2] = ACTIONS(860), - [anon_sym_DASH2] = ACTIONS(860), - [anon_sym_RBRACE] = ACTIONS(860), - [anon_sym_STAR2] = ACTIONS(860), - [anon_sym_and2] = ACTIONS(860), - [anon_sym_xor2] = ACTIONS(860), - [anon_sym_or2] = ACTIONS(860), - [anon_sym_not_DASHin2] = ACTIONS(860), - [anon_sym_has2] = ACTIONS(860), - [anon_sym_not_DASHhas2] = ACTIONS(860), - [anon_sym_starts_DASHwith2] = ACTIONS(860), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(860), - [anon_sym_ends_DASHwith2] = ACTIONS(860), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(860), - [anon_sym_EQ_EQ2] = ACTIONS(860), - [anon_sym_BANG_EQ2] = ACTIONS(860), - [anon_sym_LT2] = ACTIONS(860), - [anon_sym_LT_EQ2] = ACTIONS(860), - [anon_sym_GT_EQ2] = ACTIONS(860), - [anon_sym_EQ_TILDE2] = ACTIONS(860), - [anon_sym_BANG_TILDE2] = ACTIONS(860), - [anon_sym_like2] = ACTIONS(860), - [anon_sym_not_DASHlike2] = ACTIONS(860), - [anon_sym_STAR_STAR2] = ACTIONS(860), - [anon_sym_PLUS_PLUS2] = ACTIONS(860), - [anon_sym_SLASH2] = ACTIONS(860), - [anon_sym_mod2] = ACTIONS(860), - [anon_sym_SLASH_SLASH2] = ACTIONS(860), - [anon_sym_PLUS2] = ACTIONS(860), - [anon_sym_bit_DASHshl2] = ACTIONS(860), - [anon_sym_bit_DASHshr2] = ACTIONS(860), - [anon_sym_bit_DASHand2] = ACTIONS(860), - [anon_sym_bit_DASHxor2] = ACTIONS(860), - [anon_sym_bit_DASHor2] = ACTIONS(860), - [anon_sym_DOT_DOT2] = ACTIONS(860), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(862), - [anon_sym_DOT_DOT_LT2] = ACTIONS(862), - [sym_filesize_unit] = ACTIONS(860), - [sym_duration_unit] = ACTIONS(862), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(310)] = { - [sym_comment] = STATE(310), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -72054,6 +72353,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), @@ -72099,280 +72399,641 @@ 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_token5] = ACTIONS(1354), + [aux_sym__immediate_decimal_token5] = ACTIONS(1340), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(311)] = { - [sym_comment] = STATE(311), - [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(1374), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), + [STATE(305)] = { + [sym_comment] = STATE(305), + [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), + [sym_filesize_unit] = ACTIONS(739), + [sym_duration_unit] = ACTIONS(741), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(312)] = { - [sym_comment] = STATE(312), - [anon_sym_in] = ACTIONS(860), - [anon_sym_STAR_STAR] = ACTIONS(862), - [anon_sym_PLUS_PLUS] = ACTIONS(862), - [anon_sym_STAR] = ACTIONS(860), - [anon_sym_SLASH] = ACTIONS(860), - [anon_sym_mod] = ACTIONS(862), - [anon_sym_SLASH_SLASH] = ACTIONS(862), - [anon_sym_PLUS] = ACTIONS(860), - [anon_sym_DASH] = ACTIONS(862), - [anon_sym_bit_DASHshl] = ACTIONS(862), - [anon_sym_bit_DASHshr] = ACTIONS(862), - [anon_sym_EQ_TILDE] = ACTIONS(862), - [anon_sym_BANG_TILDE] = ACTIONS(862), - [anon_sym_like] = ACTIONS(862), - [anon_sym_not_DASHlike] = ACTIONS(862), - [anon_sym_bit_DASHand] = ACTIONS(862), - [anon_sym_bit_DASHxor] = ACTIONS(862), - [anon_sym_bit_DASHor] = ACTIONS(862), - [anon_sym_and] = ACTIONS(862), - [anon_sym_xor] = ACTIONS(862), - [anon_sym_or] = ACTIONS(862), - [anon_sym_in2] = ACTIONS(862), - [anon_sym_not_DASHin] = ACTIONS(862), - [anon_sym_has] = ACTIONS(862), - [anon_sym_not_DASHhas] = ACTIONS(862), - [anon_sym_starts_DASHwith] = ACTIONS(862), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(862), - [anon_sym_ends_DASHwith] = ACTIONS(862), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(862), - [anon_sym_EQ_EQ] = ACTIONS(862), - [anon_sym_BANG_EQ] = ACTIONS(862), - [anon_sym_LT] = ACTIONS(860), - [anon_sym_LT_EQ] = ACTIONS(862), - [anon_sym_GT] = ACTIONS(860), - [anon_sym_GT_EQ] = ACTIONS(862), - [aux_sym_cmd_identifier_token6] = ACTIONS(860), - [sym__newline] = ACTIONS(860), - [anon_sym_SEMI] = ACTIONS(860), - [anon_sym_PIPE] = ACTIONS(860), - [anon_sym_err_GT_PIPE] = ACTIONS(860), - [anon_sym_out_GT_PIPE] = ACTIONS(860), - [anon_sym_e_GT_PIPE] = ACTIONS(860), - [anon_sym_o_GT_PIPE] = ACTIONS(860), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(860), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(860), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(860), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(860), - [anon_sym_GT2] = ACTIONS(860), - [anon_sym_DASH2] = ACTIONS(860), - [anon_sym_STAR2] = ACTIONS(860), - [anon_sym_and2] = ACTIONS(860), - [anon_sym_xor2] = ACTIONS(860), - [anon_sym_or2] = ACTIONS(860), - [anon_sym_not_DASHin2] = ACTIONS(860), - [anon_sym_has2] = ACTIONS(860), - [anon_sym_not_DASHhas2] = ACTIONS(860), - [anon_sym_starts_DASHwith2] = ACTIONS(860), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(860), - [anon_sym_ends_DASHwith2] = ACTIONS(860), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(860), - [anon_sym_EQ_EQ2] = ACTIONS(860), - [anon_sym_BANG_EQ2] = ACTIONS(860), - [anon_sym_LT2] = ACTIONS(860), - [anon_sym_LT_EQ2] = ACTIONS(860), - [anon_sym_GT_EQ2] = ACTIONS(860), - [anon_sym_EQ_TILDE2] = ACTIONS(860), - [anon_sym_BANG_TILDE2] = ACTIONS(860), - [anon_sym_like2] = ACTIONS(860), - [anon_sym_not_DASHlike2] = ACTIONS(860), - [anon_sym_STAR_STAR2] = ACTIONS(860), - [anon_sym_PLUS_PLUS2] = ACTIONS(860), - [anon_sym_SLASH2] = ACTIONS(860), - [anon_sym_mod2] = ACTIONS(860), - [anon_sym_SLASH_SLASH2] = ACTIONS(860), - [anon_sym_PLUS2] = ACTIONS(860), - [anon_sym_bit_DASHshl2] = ACTIONS(860), - [anon_sym_bit_DASHshr2] = ACTIONS(860), - [anon_sym_bit_DASHand2] = ACTIONS(860), - [anon_sym_bit_DASHxor2] = ACTIONS(860), - [anon_sym_bit_DASHor2] = ACTIONS(860), - [anon_sym_DOT_DOT2] = ACTIONS(860), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(862), - [anon_sym_DOT_DOT_LT2] = ACTIONS(862), - [sym_filesize_unit] = ACTIONS(860), - [sym_duration_unit] = ACTIONS(862), + [STATE(306)] = { + [sym_comment] = STATE(306), + [anon_sym_in] = ACTIONS(767), + [anon_sym_STAR_STAR] = ACTIONS(769), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_STAR] = ACTIONS(767), + [anon_sym_SLASH] = ACTIONS(767), + [anon_sym_mod] = ACTIONS(769), + [anon_sym_SLASH_SLASH] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(767), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_bit_DASHshl] = ACTIONS(769), + [anon_sym_bit_DASHshr] = ACTIONS(769), + [anon_sym_EQ_TILDE] = ACTIONS(769), + [anon_sym_BANG_TILDE] = ACTIONS(769), + [anon_sym_like] = ACTIONS(769), + [anon_sym_not_DASHlike] = ACTIONS(769), + [anon_sym_bit_DASHand] = ACTIONS(769), + [anon_sym_bit_DASHxor] = ACTIONS(769), + [anon_sym_bit_DASHor] = ACTIONS(769), + [anon_sym_and] = ACTIONS(769), + [anon_sym_xor] = ACTIONS(769), + [anon_sym_or] = ACTIONS(769), + [anon_sym_in2] = ACTIONS(769), + [anon_sym_not_DASHin] = ACTIONS(769), + [anon_sym_has] = ACTIONS(769), + [anon_sym_not_DASHhas] = ACTIONS(769), + [anon_sym_starts_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(769), + [anon_sym_ends_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(769), + [anon_sym_EQ_EQ] = ACTIONS(769), + [anon_sym_BANG_EQ] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(767), + [anon_sym_LT_EQ] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(767), + [anon_sym_GT_EQ] = ACTIONS(769), + [aux_sym_cmd_identifier_token6] = ACTIONS(767), + [sym__newline] = ACTIONS(767), + [anon_sym_SEMI] = ACTIONS(767), + [anon_sym_PIPE] = ACTIONS(767), + [anon_sym_err_GT_PIPE] = ACTIONS(767), + [anon_sym_out_GT_PIPE] = ACTIONS(767), + [anon_sym_e_GT_PIPE] = ACTIONS(767), + [anon_sym_o_GT_PIPE] = ACTIONS(767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(767), + [anon_sym_GT2] = ACTIONS(767), + [anon_sym_DASH2] = ACTIONS(767), + [anon_sym_STAR2] = ACTIONS(767), + [anon_sym_and2] = ACTIONS(767), + [anon_sym_xor2] = ACTIONS(767), + [anon_sym_or2] = ACTIONS(767), + [anon_sym_not_DASHin2] = ACTIONS(767), + [anon_sym_has2] = ACTIONS(767), + [anon_sym_not_DASHhas2] = ACTIONS(767), + [anon_sym_starts_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(767), + [anon_sym_ends_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(767), + [anon_sym_EQ_EQ2] = ACTIONS(767), + [anon_sym_BANG_EQ2] = ACTIONS(767), + [anon_sym_LT2] = ACTIONS(767), + [anon_sym_LT_EQ2] = ACTIONS(767), + [anon_sym_GT_EQ2] = ACTIONS(767), + [anon_sym_EQ_TILDE2] = ACTIONS(767), + [anon_sym_BANG_TILDE2] = ACTIONS(767), + [anon_sym_like2] = ACTIONS(767), + [anon_sym_not_DASHlike2] = ACTIONS(767), + [anon_sym_STAR_STAR2] = ACTIONS(767), + [anon_sym_PLUS_PLUS2] = ACTIONS(767), + [anon_sym_SLASH2] = ACTIONS(767), + [anon_sym_mod2] = ACTIONS(767), + [anon_sym_SLASH_SLASH2] = ACTIONS(767), + [anon_sym_PLUS2] = ACTIONS(767), + [anon_sym_bit_DASHshl2] = ACTIONS(767), + [anon_sym_bit_DASHshr2] = ACTIONS(767), + [anon_sym_bit_DASHand2] = ACTIONS(767), + [anon_sym_bit_DASHxor2] = ACTIONS(767), + [anon_sym_bit_DASHor2] = ACTIONS(767), + [anon_sym_DOT_DOT2] = ACTIONS(767), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(769), + [aux_sym__immediate_decimal_token5] = ACTIONS(1360), + [sym_filesize_unit] = ACTIONS(767), + [sym_duration_unit] = ACTIONS(769), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(313)] = { - [sym_comment] = STATE(313), - [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(307)] = { + [sym_comment] = STATE(307), + [ts_builtin_sym_end] = ACTIONS(968), + [anon_sym_in] = ACTIONS(847), + [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(847), + [anon_sym_SEMI] = ACTIONS(847), + [anon_sym_PIPE] = ACTIONS(847), + [anon_sym_err_GT_PIPE] = ACTIONS(847), + [anon_sym_out_GT_PIPE] = ACTIONS(847), + [anon_sym_e_GT_PIPE] = ACTIONS(847), + [anon_sym_o_GT_PIPE] = ACTIONS(847), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(847), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(847), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(847), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(847), + [anon_sym_GT2] = ACTIONS(847), + [anon_sym_DASH2] = ACTIONS(847), + [anon_sym_STAR2] = ACTIONS(847), + [anon_sym_and2] = ACTIONS(847), + [anon_sym_xor2] = ACTIONS(847), + [anon_sym_or2] = ACTIONS(847), + [anon_sym_not_DASHin2] = ACTIONS(847), + [anon_sym_has2] = ACTIONS(847), + [anon_sym_not_DASHhas2] = ACTIONS(847), + [anon_sym_starts_DASHwith2] = ACTIONS(847), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(847), + [anon_sym_ends_DASHwith2] = ACTIONS(847), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(847), + [anon_sym_EQ_EQ2] = ACTIONS(847), + [anon_sym_BANG_EQ2] = ACTIONS(847), + [anon_sym_LT2] = ACTIONS(847), + [anon_sym_LT_EQ2] = ACTIONS(847), + [anon_sym_GT_EQ2] = ACTIONS(847), + [anon_sym_EQ_TILDE2] = ACTIONS(847), + [anon_sym_BANG_TILDE2] = ACTIONS(847), + [anon_sym_like2] = ACTIONS(847), + [anon_sym_not_DASHlike2] = ACTIONS(847), + [anon_sym_STAR_STAR2] = ACTIONS(847), + [anon_sym_PLUS_PLUS2] = ACTIONS(847), + [anon_sym_SLASH2] = ACTIONS(847), + [anon_sym_mod2] = ACTIONS(847), + [anon_sym_SLASH_SLASH2] = ACTIONS(847), + [anon_sym_PLUS2] = ACTIONS(847), + [anon_sym_bit_DASHshl2] = ACTIONS(847), + [anon_sym_bit_DASHshr2] = ACTIONS(847), + [anon_sym_bit_DASHand2] = ACTIONS(847), + [anon_sym_bit_DASHxor2] = ACTIONS(847), + [anon_sym_bit_DASHor2] = ACTIONS(847), + [anon_sym_DOT_DOT2] = ACTIONS(976), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(978), + [anon_sym_DOT_DOT_LT2] = ACTIONS(978), + [sym_filesize_unit] = ACTIONS(1362), + [sym_duration_unit] = ACTIONS(1364), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(314)] = { - [sym_comment] = STATE(314), + [STATE(308)] = { + [sym_comment] = STATE(308), + [anon_sym_in] = ACTIONS(847), + [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(847), + [anon_sym_SEMI] = ACTIONS(847), + [anon_sym_PIPE] = ACTIONS(847), + [anon_sym_err_GT_PIPE] = ACTIONS(847), + [anon_sym_out_GT_PIPE] = ACTIONS(847), + [anon_sym_e_GT_PIPE] = ACTIONS(847), + [anon_sym_o_GT_PIPE] = ACTIONS(847), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(847), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(847), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(847), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(847), + [anon_sym_RPAREN] = ACTIONS(847), + [anon_sym_GT2] = ACTIONS(847), + [anon_sym_DASH2] = ACTIONS(847), + [anon_sym_STAR2] = ACTIONS(847), + [anon_sym_and2] = ACTIONS(847), + [anon_sym_xor2] = ACTIONS(847), + [anon_sym_or2] = ACTIONS(847), + [anon_sym_not_DASHin2] = ACTIONS(847), + [anon_sym_has2] = ACTIONS(847), + [anon_sym_not_DASHhas2] = ACTIONS(847), + [anon_sym_starts_DASHwith2] = ACTIONS(847), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(847), + [anon_sym_ends_DASHwith2] = ACTIONS(847), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(847), + [anon_sym_EQ_EQ2] = ACTIONS(847), + [anon_sym_BANG_EQ2] = ACTIONS(847), + [anon_sym_LT2] = ACTIONS(847), + [anon_sym_LT_EQ2] = ACTIONS(847), + [anon_sym_GT_EQ2] = ACTIONS(847), + [anon_sym_EQ_TILDE2] = ACTIONS(847), + [anon_sym_BANG_TILDE2] = ACTIONS(847), + [anon_sym_like2] = ACTIONS(847), + [anon_sym_not_DASHlike2] = ACTIONS(847), + [anon_sym_STAR_STAR2] = ACTIONS(847), + [anon_sym_PLUS_PLUS2] = ACTIONS(847), + [anon_sym_SLASH2] = ACTIONS(847), + [anon_sym_mod2] = ACTIONS(847), + [anon_sym_SLASH_SLASH2] = ACTIONS(847), + [anon_sym_PLUS2] = ACTIONS(847), + [anon_sym_bit_DASHshl2] = ACTIONS(847), + [anon_sym_bit_DASHshr2] = ACTIONS(847), + [anon_sym_bit_DASHand2] = ACTIONS(847), + [anon_sym_bit_DASHxor2] = ACTIONS(847), + [anon_sym_bit_DASHor2] = ACTIONS(847), + [anon_sym_DOT_DOT2] = ACTIONS(855), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(857), + [anon_sym_DOT_DOT_LT2] = ACTIONS(857), + [sym_filesize_unit] = ACTIONS(1366), + [sym_duration_unit] = ACTIONS(1368), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(309)] = { + [sym_comment] = STATE(309), + [anon_sym_in] = ACTIONS(847), + [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(847), + [anon_sym_SEMI] = ACTIONS(847), + [anon_sym_PIPE] = ACTIONS(847), + [anon_sym_err_GT_PIPE] = ACTIONS(847), + [anon_sym_out_GT_PIPE] = ACTIONS(847), + [anon_sym_e_GT_PIPE] = ACTIONS(847), + [anon_sym_o_GT_PIPE] = ACTIONS(847), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(847), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(847), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(847), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(847), + [anon_sym_GT2] = ACTIONS(847), + [anon_sym_DASH2] = ACTIONS(847), + [anon_sym_RBRACE] = ACTIONS(847), + [anon_sym_STAR2] = ACTIONS(847), + [anon_sym_and2] = ACTIONS(847), + [anon_sym_xor2] = ACTIONS(847), + [anon_sym_or2] = ACTIONS(847), + [anon_sym_not_DASHin2] = ACTIONS(847), + [anon_sym_has2] = ACTIONS(847), + [anon_sym_not_DASHhas2] = ACTIONS(847), + [anon_sym_starts_DASHwith2] = ACTIONS(847), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(847), + [anon_sym_ends_DASHwith2] = ACTIONS(847), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(847), + [anon_sym_EQ_EQ2] = ACTIONS(847), + [anon_sym_BANG_EQ2] = ACTIONS(847), + [anon_sym_LT2] = ACTIONS(847), + [anon_sym_LT_EQ2] = ACTIONS(847), + [anon_sym_GT_EQ2] = ACTIONS(847), + [anon_sym_EQ_TILDE2] = ACTIONS(847), + [anon_sym_BANG_TILDE2] = ACTIONS(847), + [anon_sym_like2] = ACTIONS(847), + [anon_sym_not_DASHlike2] = ACTIONS(847), + [anon_sym_STAR_STAR2] = ACTIONS(847), + [anon_sym_PLUS_PLUS2] = ACTIONS(847), + [anon_sym_SLASH2] = ACTIONS(847), + [anon_sym_mod2] = ACTIONS(847), + [anon_sym_SLASH_SLASH2] = ACTIONS(847), + [anon_sym_PLUS2] = ACTIONS(847), + [anon_sym_bit_DASHshl2] = ACTIONS(847), + [anon_sym_bit_DASHshr2] = ACTIONS(847), + [anon_sym_bit_DASHand2] = ACTIONS(847), + [anon_sym_bit_DASHxor2] = ACTIONS(847), + [anon_sym_bit_DASHor2] = ACTIONS(847), + [anon_sym_DOT_DOT2] = ACTIONS(855), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(857), + [anon_sym_DOT_DOT_LT2] = ACTIONS(857), + [sym_filesize_unit] = ACTIONS(1370), + [sym_duration_unit] = ACTIONS(1372), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(310)] = { + [sym_comment] = STATE(310), + [anon_sym_in] = ACTIONS(767), + [anon_sym_STAR_STAR] = ACTIONS(769), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_STAR] = ACTIONS(767), + [anon_sym_SLASH] = ACTIONS(767), + [anon_sym_mod] = ACTIONS(769), + [anon_sym_SLASH_SLASH] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(767), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_bit_DASHshl] = ACTIONS(769), + [anon_sym_bit_DASHshr] = ACTIONS(769), + [anon_sym_EQ_TILDE] = ACTIONS(769), + [anon_sym_BANG_TILDE] = ACTIONS(769), + [anon_sym_like] = ACTIONS(769), + [anon_sym_not_DASHlike] = ACTIONS(769), + [anon_sym_bit_DASHand] = ACTIONS(769), + [anon_sym_bit_DASHxor] = ACTIONS(769), + [anon_sym_bit_DASHor] = ACTIONS(769), + [anon_sym_and] = ACTIONS(769), + [anon_sym_xor] = ACTIONS(769), + [anon_sym_or] = ACTIONS(769), + [anon_sym_in2] = ACTIONS(769), + [anon_sym_not_DASHin] = ACTIONS(769), + [anon_sym_has] = ACTIONS(769), + [anon_sym_not_DASHhas] = ACTIONS(769), + [anon_sym_starts_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(769), + [anon_sym_ends_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(769), + [anon_sym_EQ_EQ] = ACTIONS(769), + [anon_sym_BANG_EQ] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(767), + [anon_sym_LT_EQ] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(767), + [anon_sym_GT_EQ] = ACTIONS(769), + [aux_sym_cmd_identifier_token6] = ACTIONS(767), + [sym__newline] = ACTIONS(767), + [anon_sym_PIPE] = ACTIONS(767), + [anon_sym_err_GT_PIPE] = ACTIONS(767), + [anon_sym_out_GT_PIPE] = ACTIONS(767), + [anon_sym_e_GT_PIPE] = ACTIONS(767), + [anon_sym_o_GT_PIPE] = ACTIONS(767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(767), + [anon_sym_GT2] = ACTIONS(767), + [anon_sym_DASH2] = ACTIONS(767), + [anon_sym_STAR2] = ACTIONS(767), + [anon_sym_and2] = ACTIONS(767), + [anon_sym_xor2] = ACTIONS(767), + [anon_sym_or2] = ACTIONS(767), + [anon_sym_not_DASHin2] = ACTIONS(767), + [anon_sym_has2] = ACTIONS(767), + [anon_sym_not_DASHhas2] = ACTIONS(767), + [anon_sym_starts_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(767), + [anon_sym_ends_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(767), + [anon_sym_EQ_EQ2] = ACTIONS(767), + [anon_sym_BANG_EQ2] = ACTIONS(767), + [anon_sym_LT2] = ACTIONS(767), + [anon_sym_LT_EQ2] = ACTIONS(767), + [anon_sym_GT_EQ2] = ACTIONS(767), + [anon_sym_EQ_TILDE2] = ACTIONS(767), + [anon_sym_BANG_TILDE2] = ACTIONS(767), + [anon_sym_like2] = ACTIONS(767), + [anon_sym_not_DASHlike2] = ACTIONS(767), + [anon_sym_STAR_STAR2] = ACTIONS(767), + [anon_sym_PLUS_PLUS2] = ACTIONS(767), + [anon_sym_SLASH2] = ACTIONS(767), + [anon_sym_mod2] = ACTIONS(767), + [anon_sym_SLASH_SLASH2] = ACTIONS(767), + [anon_sym_PLUS2] = ACTIONS(767), + [anon_sym_bit_DASHshl2] = ACTIONS(767), + [anon_sym_bit_DASHshr2] = ACTIONS(767), + [anon_sym_bit_DASHand2] = ACTIONS(767), + [anon_sym_bit_DASHxor2] = ACTIONS(767), + [anon_sym_bit_DASHor2] = ACTIONS(767), + [anon_sym_DOT_DOT2] = ACTIONS(767), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(769), + [aux_sym__immediate_decimal_token5] = ACTIONS(1374), + [sym_filesize_unit] = ACTIONS(767), + [sym_duration_unit] = ACTIONS(769), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(311)] = { + [sym_comment] = STATE(311), + [anon_sym_in] = ACTIONS(767), + [anon_sym_STAR_STAR] = ACTIONS(769), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_STAR] = ACTIONS(767), + [anon_sym_SLASH] = ACTIONS(767), + [anon_sym_mod] = ACTIONS(769), + [anon_sym_SLASH_SLASH] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(767), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_bit_DASHshl] = ACTIONS(769), + [anon_sym_bit_DASHshr] = ACTIONS(769), + [anon_sym_EQ_TILDE] = ACTIONS(769), + [anon_sym_BANG_TILDE] = ACTIONS(769), + [anon_sym_like] = ACTIONS(769), + [anon_sym_not_DASHlike] = ACTIONS(769), + [anon_sym_bit_DASHand] = ACTIONS(769), + [anon_sym_bit_DASHxor] = ACTIONS(769), + [anon_sym_bit_DASHor] = ACTIONS(769), + [anon_sym_and] = ACTIONS(769), + [anon_sym_xor] = ACTIONS(769), + [anon_sym_or] = ACTIONS(769), + [anon_sym_in2] = ACTIONS(769), + [anon_sym_not_DASHin] = ACTIONS(769), + [anon_sym_has] = ACTIONS(769), + [anon_sym_not_DASHhas] = ACTIONS(769), + [anon_sym_starts_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(769), + [anon_sym_ends_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(769), + [anon_sym_EQ_EQ] = ACTIONS(769), + [anon_sym_BANG_EQ] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(767), + [anon_sym_LT_EQ] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(767), + [anon_sym_GT_EQ] = ACTIONS(769), + [aux_sym_cmd_identifier_token6] = ACTIONS(767), + [sym__newline] = ACTIONS(767), + [anon_sym_SEMI] = ACTIONS(767), + [anon_sym_PIPE] = ACTIONS(767), + [anon_sym_err_GT_PIPE] = ACTIONS(767), + [anon_sym_out_GT_PIPE] = ACTIONS(767), + [anon_sym_e_GT_PIPE] = ACTIONS(767), + [anon_sym_o_GT_PIPE] = ACTIONS(767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(767), + [anon_sym_GT2] = ACTIONS(767), + [anon_sym_DASH2] = ACTIONS(767), + [anon_sym_STAR2] = ACTIONS(767), + [anon_sym_and2] = ACTIONS(767), + [anon_sym_xor2] = ACTIONS(767), + [anon_sym_or2] = ACTIONS(767), + [anon_sym_not_DASHin2] = ACTIONS(767), + [anon_sym_has2] = ACTIONS(767), + [anon_sym_not_DASHhas2] = ACTIONS(767), + [anon_sym_starts_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(767), + [anon_sym_ends_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(767), + [anon_sym_EQ_EQ2] = ACTIONS(767), + [anon_sym_BANG_EQ2] = ACTIONS(767), + [anon_sym_LT2] = ACTIONS(767), + [anon_sym_LT_EQ2] = ACTIONS(767), + [anon_sym_GT_EQ2] = ACTIONS(767), + [anon_sym_EQ_TILDE2] = ACTIONS(767), + [anon_sym_BANG_TILDE2] = ACTIONS(767), + [anon_sym_like2] = ACTIONS(767), + [anon_sym_not_DASHlike2] = ACTIONS(767), + [anon_sym_STAR_STAR2] = ACTIONS(767), + [anon_sym_PLUS_PLUS2] = ACTIONS(767), + [anon_sym_SLASH2] = ACTIONS(767), + [anon_sym_mod2] = ACTIONS(767), + [anon_sym_SLASH_SLASH2] = ACTIONS(767), + [anon_sym_PLUS2] = ACTIONS(767), + [anon_sym_bit_DASHshl2] = ACTIONS(767), + [anon_sym_bit_DASHshr2] = ACTIONS(767), + [anon_sym_bit_DASHand2] = ACTIONS(767), + [anon_sym_bit_DASHxor2] = ACTIONS(767), + [anon_sym_bit_DASHor2] = ACTIONS(767), + [anon_sym_DOT_DOT2] = ACTIONS(767), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(769), + [sym_filesize_unit] = ACTIONS(767), + [sym_duration_unit] = ACTIONS(769), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(312)] = { + [sym_comment] = STATE(312), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -72460,185 +73121,275 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_duration_unit] = ACTIONS(741), [anon_sym_POUND] = ACTIONS(103), }, + [STATE(313)] = { + [sym_comment] = STATE(313), + [anon_sym_in] = ACTIONS(863), + [anon_sym_STAR_STAR] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_STAR] = ACTIONS(863), + [anon_sym_SLASH] = ACTIONS(863), + [anon_sym_mod] = ACTIONS(865), + [anon_sym_SLASH_SLASH] = ACTIONS(865), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(865), + [anon_sym_bit_DASHshl] = ACTIONS(865), + [anon_sym_bit_DASHshr] = ACTIONS(865), + [anon_sym_EQ_TILDE] = ACTIONS(865), + [anon_sym_BANG_TILDE] = ACTIONS(865), + [anon_sym_like] = ACTIONS(865), + [anon_sym_not_DASHlike] = ACTIONS(865), + [anon_sym_bit_DASHand] = ACTIONS(865), + [anon_sym_bit_DASHxor] = ACTIONS(865), + [anon_sym_bit_DASHor] = ACTIONS(865), + [anon_sym_and] = ACTIONS(865), + [anon_sym_xor] = ACTIONS(865), + [anon_sym_or] = ACTIONS(865), + [anon_sym_in2] = ACTIONS(865), + [anon_sym_not_DASHin] = ACTIONS(865), + [anon_sym_has] = ACTIONS(865), + [anon_sym_not_DASHhas] = ACTIONS(865), + [anon_sym_starts_DASHwith] = ACTIONS(865), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(865), + [anon_sym_ends_DASHwith] = ACTIONS(865), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(865), + [anon_sym_EQ_EQ] = ACTIONS(865), + [anon_sym_BANG_EQ] = ACTIONS(865), + [anon_sym_LT] = ACTIONS(863), + [anon_sym_LT_EQ] = ACTIONS(865), + [anon_sym_GT] = ACTIONS(863), + [anon_sym_GT_EQ] = ACTIONS(865), + [aux_sym_cmd_identifier_token6] = ACTIONS(863), + [sym__newline] = ACTIONS(863), + [anon_sym_SEMI] = ACTIONS(863), + [anon_sym_PIPE] = ACTIONS(863), + [anon_sym_err_GT_PIPE] = ACTIONS(863), + [anon_sym_out_GT_PIPE] = ACTIONS(863), + [anon_sym_e_GT_PIPE] = ACTIONS(863), + [anon_sym_o_GT_PIPE] = ACTIONS(863), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(863), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(863), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(863), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(863), + [anon_sym_GT2] = ACTIONS(863), + [anon_sym_DASH2] = ACTIONS(863), + [anon_sym_STAR2] = ACTIONS(863), + [anon_sym_and2] = ACTIONS(863), + [anon_sym_xor2] = ACTIONS(863), + [anon_sym_or2] = ACTIONS(863), + [anon_sym_not_DASHin2] = ACTIONS(863), + [anon_sym_has2] = ACTIONS(863), + [anon_sym_not_DASHhas2] = ACTIONS(863), + [anon_sym_starts_DASHwith2] = ACTIONS(863), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(863), + [anon_sym_ends_DASHwith2] = ACTIONS(863), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(863), + [anon_sym_EQ_EQ2] = ACTIONS(863), + [anon_sym_BANG_EQ2] = ACTIONS(863), + [anon_sym_LT2] = ACTIONS(863), + [anon_sym_LT_EQ2] = ACTIONS(863), + [anon_sym_GT_EQ2] = ACTIONS(863), + [anon_sym_EQ_TILDE2] = ACTIONS(863), + [anon_sym_BANG_TILDE2] = ACTIONS(863), + [anon_sym_like2] = ACTIONS(863), + [anon_sym_not_DASHlike2] = ACTIONS(863), + [anon_sym_STAR_STAR2] = ACTIONS(863), + [anon_sym_PLUS_PLUS2] = ACTIONS(863), + [anon_sym_SLASH2] = ACTIONS(863), + [anon_sym_mod2] = ACTIONS(863), + [anon_sym_SLASH_SLASH2] = ACTIONS(863), + [anon_sym_PLUS2] = ACTIONS(863), + [anon_sym_bit_DASHshl2] = ACTIONS(863), + [anon_sym_bit_DASHshr2] = ACTIONS(863), + [anon_sym_bit_DASHand2] = ACTIONS(863), + [anon_sym_bit_DASHxor2] = ACTIONS(863), + [anon_sym_bit_DASHor2] = ACTIONS(863), + [anon_sym_DOT_DOT2] = ACTIONS(863), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(865), + [anon_sym_DOT_DOT_LT2] = ACTIONS(865), + [sym_filesize_unit] = ACTIONS(863), + [sym_duration_unit] = ACTIONS(865), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(314)] = { + [sym_comment] = STATE(314), + [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_token5] = ACTIONS(1354), + [sym_filesize_unit] = ACTIONS(747), + [sym_duration_unit] = ACTIONS(749), + [anon_sym_POUND] = ACTIONS(103), + }, [STATE(315)] = { [sym_comment] = STATE(315), - [anon_sym_in] = ACTIONS(866), - [anon_sym_STAR_STAR] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_STAR] = ACTIONS(904), - [anon_sym_SLASH] = ACTIONS(904), - [anon_sym_mod] = ACTIONS(902), - [anon_sym_SLASH_SLASH] = ACTIONS(902), - [anon_sym_PLUS] = ACTIONS(904), - [anon_sym_DASH] = ACTIONS(902), - [anon_sym_bit_DASHshl] = ACTIONS(902), - [anon_sym_bit_DASHshr] = ACTIONS(902), - [anon_sym_EQ_TILDE] = ACTIONS(902), - [anon_sym_BANG_TILDE] = ACTIONS(902), - [anon_sym_like] = ACTIONS(902), - [anon_sym_not_DASHlike] = ACTIONS(902), - [anon_sym_bit_DASHand] = ACTIONS(902), - [anon_sym_bit_DASHxor] = ACTIONS(902), - [anon_sym_bit_DASHor] = ACTIONS(902), - [anon_sym_and] = ACTIONS(902), - [anon_sym_xor] = ACTIONS(902), - [anon_sym_or] = ACTIONS(902), - [anon_sym_in2] = ACTIONS(902), - [anon_sym_not_DASHin] = ACTIONS(902), - [anon_sym_has] = ACTIONS(902), - [anon_sym_not_DASHhas] = ACTIONS(902), - [anon_sym_starts_DASHwith] = ACTIONS(902), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(902), - [anon_sym_ends_DASHwith] = ACTIONS(902), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(902), - [anon_sym_EQ_EQ] = ACTIONS(902), - [anon_sym_BANG_EQ] = ACTIONS(902), - [anon_sym_LT] = ACTIONS(904), - [anon_sym_LT_EQ] = ACTIONS(902), - [anon_sym_GT] = ACTIONS(904), - [anon_sym_GT_EQ] = ACTIONS(902), - [aux_sym_cmd_identifier_token6] = ACTIONS(906), - [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), + [anon_sym_in] = ACTIONS(847), + [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(847), + [anon_sym_SEMI] = ACTIONS(847), + [anon_sym_PIPE] = ACTIONS(847), + [anon_sym_err_GT_PIPE] = ACTIONS(847), + [anon_sym_out_GT_PIPE] = ACTIONS(847), + [anon_sym_e_GT_PIPE] = ACTIONS(847), + [anon_sym_o_GT_PIPE] = ACTIONS(847), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(847), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(847), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(847), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(847), + [anon_sym_GT2] = ACTIONS(847), + [anon_sym_DASH2] = ACTIONS(847), + [anon_sym_STAR2] = ACTIONS(847), + [anon_sym_and2] = ACTIONS(847), + [anon_sym_xor2] = ACTIONS(847), + [anon_sym_or2] = ACTIONS(847), + [anon_sym_not_DASHin2] = ACTIONS(847), + [anon_sym_has2] = ACTIONS(847), + [anon_sym_not_DASHhas2] = ACTIONS(847), + [anon_sym_starts_DASHwith2] = ACTIONS(847), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(847), + [anon_sym_ends_DASHwith2] = ACTIONS(847), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(847), + [anon_sym_EQ_EQ2] = ACTIONS(847), + [anon_sym_BANG_EQ2] = ACTIONS(847), + [anon_sym_LT2] = ACTIONS(847), + [anon_sym_LT_EQ2] = ACTIONS(847), + [anon_sym_GT_EQ2] = ACTIONS(847), + [anon_sym_EQ_TILDE2] = ACTIONS(847), + [anon_sym_BANG_TILDE2] = ACTIONS(847), + [anon_sym_like2] = ACTIONS(847), + [anon_sym_not_DASHlike2] = ACTIONS(847), + [anon_sym_STAR_STAR2] = ACTIONS(847), + [anon_sym_PLUS_PLUS2] = ACTIONS(847), + [anon_sym_SLASH2] = ACTIONS(847), + [anon_sym_mod2] = ACTIONS(847), + [anon_sym_SLASH_SLASH2] = ACTIONS(847), + [anon_sym_PLUS2] = ACTIONS(847), + [anon_sym_bit_DASHshl2] = ACTIONS(847), + [anon_sym_bit_DASHshr2] = ACTIONS(847), + [anon_sym_bit_DASHand2] = ACTIONS(847), + [anon_sym_bit_DASHxor2] = ACTIONS(847), + [anon_sym_bit_DASHor2] = ACTIONS(847), + [anon_sym_DOT_DOT2] = ACTIONS(855), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(857), + [anon_sym_DOT_DOT_LT2] = ACTIONS(857), [sym_filesize_unit] = ACTIONS(1376), [sym_duration_unit] = ACTIONS(1378), [anon_sym_POUND] = ACTIONS(103), }, [STATE(316)] = { [sym_comment] = STATE(316), - [anon_sym_in] = ACTIONS(866), - [anon_sym_STAR_STAR] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(902), - [anon_sym_STAR] = ACTIONS(904), - [anon_sym_SLASH] = ACTIONS(904), - [anon_sym_mod] = ACTIONS(902), - [anon_sym_SLASH_SLASH] = ACTIONS(902), - [anon_sym_PLUS] = ACTIONS(904), - [anon_sym_DASH] = ACTIONS(902), - [anon_sym_bit_DASHshl] = ACTIONS(902), - [anon_sym_bit_DASHshr] = ACTIONS(902), - [anon_sym_EQ_TILDE] = ACTIONS(902), - [anon_sym_BANG_TILDE] = ACTIONS(902), - [anon_sym_like] = ACTIONS(902), - [anon_sym_not_DASHlike] = ACTIONS(902), - [anon_sym_bit_DASHand] = ACTIONS(902), - [anon_sym_bit_DASHxor] = ACTIONS(902), - [anon_sym_bit_DASHor] = ACTIONS(902), - [anon_sym_and] = ACTIONS(902), - [anon_sym_xor] = ACTIONS(902), - [anon_sym_or] = ACTIONS(902), - [anon_sym_in2] = ACTIONS(902), - [anon_sym_not_DASHin] = ACTIONS(902), - [anon_sym_has] = ACTIONS(902), - [anon_sym_not_DASHhas] = ACTIONS(902), - [anon_sym_starts_DASHwith] = ACTIONS(902), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(902), - [anon_sym_ends_DASHwith] = ACTIONS(902), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(902), - [anon_sym_EQ_EQ] = ACTIONS(902), - [anon_sym_BANG_EQ] = ACTIONS(902), - [anon_sym_LT] = ACTIONS(904), - [anon_sym_LT_EQ] = ACTIONS(902), - [anon_sym_GT] = ACTIONS(904), - [anon_sym_GT_EQ] = ACTIONS(902), - [aux_sym_cmd_identifier_token6] = ACTIONS(906), - [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(1380), - [sym_duration_unit] = ACTIONS(1382), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(317)] = { - [sym_comment] = STATE(317), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -72725,230 +73476,318 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_duration_unit] = ACTIONS(741), [anon_sym_POUND] = ACTIONS(103), }, + [STATE(317)] = { + [sym_comment] = STATE(317), + [anon_sym_in] = ACTIONS(767), + [anon_sym_STAR_STAR] = ACTIONS(769), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_STAR] = ACTIONS(767), + [anon_sym_SLASH] = ACTIONS(767), + [anon_sym_mod] = ACTIONS(769), + [anon_sym_SLASH_SLASH] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(767), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_bit_DASHshl] = ACTIONS(769), + [anon_sym_bit_DASHshr] = ACTIONS(769), + [anon_sym_EQ_TILDE] = ACTIONS(769), + [anon_sym_BANG_TILDE] = ACTIONS(769), + [anon_sym_like] = ACTIONS(769), + [anon_sym_not_DASHlike] = ACTIONS(769), + [anon_sym_bit_DASHand] = ACTIONS(769), + [anon_sym_bit_DASHxor] = ACTIONS(769), + [anon_sym_bit_DASHor] = ACTIONS(769), + [anon_sym_and] = ACTIONS(769), + [anon_sym_xor] = ACTIONS(769), + [anon_sym_or] = ACTIONS(769), + [anon_sym_in2] = ACTIONS(769), + [anon_sym_not_DASHin] = ACTIONS(769), + [anon_sym_has] = ACTIONS(769), + [anon_sym_not_DASHhas] = ACTIONS(769), + [anon_sym_starts_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(769), + [anon_sym_ends_DASHwith] = ACTIONS(769), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(769), + [anon_sym_EQ_EQ] = ACTIONS(769), + [anon_sym_BANG_EQ] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(767), + [anon_sym_LT_EQ] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(767), + [anon_sym_GT_EQ] = ACTIONS(769), + [aux_sym_cmd_identifier_token6] = ACTIONS(767), + [sym__newline] = ACTIONS(767), + [anon_sym_PIPE] = ACTIONS(767), + [anon_sym_err_GT_PIPE] = ACTIONS(767), + [anon_sym_out_GT_PIPE] = ACTIONS(767), + [anon_sym_e_GT_PIPE] = ACTIONS(767), + [anon_sym_o_GT_PIPE] = ACTIONS(767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(767), + [anon_sym_GT2] = ACTIONS(767), + [anon_sym_DASH2] = ACTIONS(767), + [anon_sym_STAR2] = ACTIONS(767), + [anon_sym_and2] = ACTIONS(767), + [anon_sym_xor2] = ACTIONS(767), + [anon_sym_or2] = ACTIONS(767), + [anon_sym_not_DASHin2] = ACTIONS(767), + [anon_sym_has2] = ACTIONS(767), + [anon_sym_not_DASHhas2] = ACTIONS(767), + [anon_sym_starts_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(767), + [anon_sym_ends_DASHwith2] = ACTIONS(767), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(767), + [anon_sym_EQ_EQ2] = ACTIONS(767), + [anon_sym_BANG_EQ2] = ACTIONS(767), + [anon_sym_LT2] = ACTIONS(767), + [anon_sym_LT_EQ2] = ACTIONS(767), + [anon_sym_GT_EQ2] = ACTIONS(767), + [anon_sym_EQ_TILDE2] = ACTIONS(767), + [anon_sym_BANG_TILDE2] = ACTIONS(767), + [anon_sym_like2] = ACTIONS(767), + [anon_sym_not_DASHlike2] = ACTIONS(767), + [anon_sym_STAR_STAR2] = ACTIONS(767), + [anon_sym_PLUS_PLUS2] = ACTIONS(767), + [anon_sym_SLASH2] = ACTIONS(767), + [anon_sym_mod2] = ACTIONS(767), + [anon_sym_SLASH_SLASH2] = ACTIONS(767), + [anon_sym_PLUS2] = ACTIONS(767), + [anon_sym_bit_DASHshl2] = ACTIONS(767), + [anon_sym_bit_DASHshr2] = ACTIONS(767), + [anon_sym_bit_DASHand2] = ACTIONS(767), + [anon_sym_bit_DASHxor2] = ACTIONS(767), + [anon_sym_bit_DASHor2] = ACTIONS(767), + [anon_sym_DOT_DOT2] = ACTIONS(767), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(769), + [sym_filesize_unit] = ACTIONS(767), + [sym_duration_unit] = ACTIONS(769), + [anon_sym_POUND] = ACTIONS(103), + }, [STATE(318)] = { [sym_comment] = STATE(318), - [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(863), + [anon_sym_STAR_STAR] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_STAR] = ACTIONS(863), + [anon_sym_SLASH] = ACTIONS(863), + [anon_sym_mod] = ACTIONS(865), + [anon_sym_SLASH_SLASH] = ACTIONS(865), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(865), + [anon_sym_bit_DASHshl] = ACTIONS(865), + [anon_sym_bit_DASHshr] = ACTIONS(865), + [anon_sym_EQ_TILDE] = ACTIONS(865), + [anon_sym_BANG_TILDE] = ACTIONS(865), + [anon_sym_like] = ACTIONS(865), + [anon_sym_not_DASHlike] = ACTIONS(865), + [anon_sym_bit_DASHand] = ACTIONS(865), + [anon_sym_bit_DASHxor] = ACTIONS(865), + [anon_sym_bit_DASHor] = ACTIONS(865), + [anon_sym_and] = ACTIONS(865), + [anon_sym_xor] = ACTIONS(865), + [anon_sym_or] = ACTIONS(865), + [anon_sym_in2] = ACTIONS(865), + [anon_sym_not_DASHin] = ACTIONS(865), + [anon_sym_has] = ACTIONS(865), + [anon_sym_not_DASHhas] = ACTIONS(865), + [anon_sym_starts_DASHwith] = ACTIONS(865), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(865), + [anon_sym_ends_DASHwith] = ACTIONS(865), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(865), + [anon_sym_EQ_EQ] = ACTIONS(865), + [anon_sym_BANG_EQ] = ACTIONS(865), + [anon_sym_LT] = ACTIONS(863), + [anon_sym_LT_EQ] = ACTIONS(865), + [anon_sym_GT] = ACTIONS(863), + [anon_sym_GT_EQ] = ACTIONS(865), + [aux_sym_cmd_identifier_token6] = ACTIONS(863), + [sym__newline] = ACTIONS(863), + [anon_sym_PIPE] = ACTIONS(863), + [anon_sym_err_GT_PIPE] = ACTIONS(863), + [anon_sym_out_GT_PIPE] = ACTIONS(863), + [anon_sym_e_GT_PIPE] = ACTIONS(863), + [anon_sym_o_GT_PIPE] = ACTIONS(863), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(863), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(863), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(863), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(863), + [anon_sym_GT2] = ACTIONS(863), + [anon_sym_DASH2] = ACTIONS(863), + [anon_sym_STAR2] = ACTIONS(863), + [anon_sym_and2] = ACTIONS(863), + [anon_sym_xor2] = ACTIONS(863), + [anon_sym_or2] = ACTIONS(863), + [anon_sym_not_DASHin2] = ACTIONS(863), + [anon_sym_has2] = ACTIONS(863), + [anon_sym_not_DASHhas2] = ACTIONS(863), + [anon_sym_starts_DASHwith2] = ACTIONS(863), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(863), + [anon_sym_ends_DASHwith2] = ACTIONS(863), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(863), + [anon_sym_EQ_EQ2] = ACTIONS(863), + [anon_sym_BANG_EQ2] = ACTIONS(863), + [anon_sym_LT2] = ACTIONS(863), + [anon_sym_LT_EQ2] = ACTIONS(863), + [anon_sym_GT_EQ2] = ACTIONS(863), + [anon_sym_EQ_TILDE2] = ACTIONS(863), + [anon_sym_BANG_TILDE2] = ACTIONS(863), + [anon_sym_like2] = ACTIONS(863), + [anon_sym_not_DASHlike2] = ACTIONS(863), + [anon_sym_STAR_STAR2] = ACTIONS(863), + [anon_sym_PLUS_PLUS2] = ACTIONS(863), + [anon_sym_SLASH2] = ACTIONS(863), + [anon_sym_mod2] = ACTIONS(863), + [anon_sym_SLASH_SLASH2] = ACTIONS(863), + [anon_sym_PLUS2] = ACTIONS(863), + [anon_sym_bit_DASHshl2] = ACTIONS(863), + [anon_sym_bit_DASHshr2] = ACTIONS(863), + [anon_sym_bit_DASHand2] = ACTIONS(863), + [anon_sym_bit_DASHxor2] = ACTIONS(863), + [anon_sym_bit_DASHor2] = ACTIONS(863), + [anon_sym_DOT_DOT2] = ACTIONS(863), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(865), + [anon_sym_DOT_DOT_LT2] = ACTIONS(865), + [sym_filesize_unit] = ACTIONS(863), + [sym_duration_unit] = ACTIONS(865), [anon_sym_POUND] = ACTIONS(103), }, [STATE(319)] = { [sym_comment] = STATE(319), - [anon_sym_in] = ACTIONS(860), - [anon_sym_STAR_STAR] = ACTIONS(862), - [anon_sym_PLUS_PLUS] = ACTIONS(862), - [anon_sym_STAR] = ACTIONS(860), - [anon_sym_SLASH] = ACTIONS(860), - [anon_sym_mod] = ACTIONS(862), - [anon_sym_SLASH_SLASH] = ACTIONS(862), - [anon_sym_PLUS] = ACTIONS(860), - [anon_sym_DASH] = ACTIONS(862), - [anon_sym_bit_DASHshl] = ACTIONS(862), - [anon_sym_bit_DASHshr] = ACTIONS(862), - [anon_sym_EQ_TILDE] = ACTIONS(862), - [anon_sym_BANG_TILDE] = ACTIONS(862), - [anon_sym_like] = ACTIONS(862), - [anon_sym_not_DASHlike] = ACTIONS(862), - [anon_sym_bit_DASHand] = ACTIONS(862), - [anon_sym_bit_DASHxor] = ACTIONS(862), - [anon_sym_bit_DASHor] = ACTIONS(862), - [anon_sym_and] = ACTIONS(862), - [anon_sym_xor] = ACTIONS(862), - [anon_sym_or] = ACTIONS(862), - [anon_sym_in2] = ACTIONS(862), - [anon_sym_not_DASHin] = ACTIONS(862), - [anon_sym_has] = ACTIONS(862), - [anon_sym_not_DASHhas] = ACTIONS(862), - [anon_sym_starts_DASHwith] = ACTIONS(862), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(862), - [anon_sym_ends_DASHwith] = ACTIONS(862), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(862), - [anon_sym_EQ_EQ] = ACTIONS(862), - [anon_sym_BANG_EQ] = ACTIONS(862), - [anon_sym_LT] = ACTIONS(860), - [anon_sym_LT_EQ] = ACTIONS(862), - [anon_sym_GT] = ACTIONS(860), - [anon_sym_GT_EQ] = ACTIONS(862), - [aux_sym_cmd_identifier_token6] = ACTIONS(860), - [sym__newline] = ACTIONS(860), - [anon_sym_PIPE] = ACTIONS(860), - [anon_sym_err_GT_PIPE] = ACTIONS(860), - [anon_sym_out_GT_PIPE] = ACTIONS(860), - [anon_sym_e_GT_PIPE] = ACTIONS(860), - [anon_sym_o_GT_PIPE] = ACTIONS(860), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(860), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(860), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(860), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(860), - [anon_sym_GT2] = ACTIONS(860), - [anon_sym_DASH2] = ACTIONS(860), - [anon_sym_STAR2] = ACTIONS(860), - [anon_sym_and2] = ACTIONS(860), - [anon_sym_xor2] = ACTIONS(860), - [anon_sym_or2] = ACTIONS(860), - [anon_sym_not_DASHin2] = ACTIONS(860), - [anon_sym_has2] = ACTIONS(860), - [anon_sym_not_DASHhas2] = ACTIONS(860), - [anon_sym_starts_DASHwith2] = ACTIONS(860), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(860), - [anon_sym_ends_DASHwith2] = ACTIONS(860), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(860), - [anon_sym_EQ_EQ2] = ACTIONS(860), - [anon_sym_BANG_EQ2] = ACTIONS(860), - [anon_sym_LT2] = ACTIONS(860), - [anon_sym_LT_EQ2] = ACTIONS(860), - [anon_sym_GT_EQ2] = ACTIONS(860), - [anon_sym_EQ_TILDE2] = ACTIONS(860), - [anon_sym_BANG_TILDE2] = ACTIONS(860), - [anon_sym_like2] = ACTIONS(860), - [anon_sym_not_DASHlike2] = ACTIONS(860), - [anon_sym_STAR_STAR2] = ACTIONS(860), - [anon_sym_PLUS_PLUS2] = ACTIONS(860), - [anon_sym_SLASH2] = ACTIONS(860), - [anon_sym_mod2] = ACTIONS(860), - [anon_sym_SLASH_SLASH2] = ACTIONS(860), - [anon_sym_PLUS2] = ACTIONS(860), - [anon_sym_bit_DASHshl2] = ACTIONS(860), - [anon_sym_bit_DASHshr2] = ACTIONS(860), - [anon_sym_bit_DASHand2] = ACTIONS(860), - [anon_sym_bit_DASHxor2] = ACTIONS(860), - [anon_sym_bit_DASHor2] = ACTIONS(860), - [anon_sym_DOT_DOT2] = ACTIONS(860), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(862), - [anon_sym_DOT_DOT_LT2] = ACTIONS(862), - [sym_filesize_unit] = ACTIONS(860), - [sym_duration_unit] = ACTIONS(862), + [anon_sym_in] = ACTIONS(847), + [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(847), + [anon_sym_PIPE] = ACTIONS(847), + [anon_sym_err_GT_PIPE] = ACTIONS(847), + [anon_sym_out_GT_PIPE] = ACTIONS(847), + [anon_sym_e_GT_PIPE] = ACTIONS(847), + [anon_sym_o_GT_PIPE] = ACTIONS(847), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(847), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(847), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(847), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(847), + [anon_sym_GT2] = ACTIONS(847), + [anon_sym_DASH2] = ACTIONS(847), + [anon_sym_STAR2] = ACTIONS(847), + [anon_sym_and2] = ACTIONS(847), + [anon_sym_xor2] = ACTIONS(847), + [anon_sym_or2] = ACTIONS(847), + [anon_sym_not_DASHin2] = ACTIONS(847), + [anon_sym_has2] = ACTIONS(847), + [anon_sym_not_DASHhas2] = ACTIONS(847), + [anon_sym_starts_DASHwith2] = ACTIONS(847), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(847), + [anon_sym_ends_DASHwith2] = ACTIONS(847), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(847), + [anon_sym_EQ_EQ2] = ACTIONS(847), + [anon_sym_BANG_EQ2] = ACTIONS(847), + [anon_sym_LT2] = ACTIONS(847), + [anon_sym_LT_EQ2] = ACTIONS(847), + [anon_sym_GT_EQ2] = ACTIONS(847), + [anon_sym_EQ_TILDE2] = ACTIONS(847), + [anon_sym_BANG_TILDE2] = ACTIONS(847), + [anon_sym_like2] = ACTIONS(847), + [anon_sym_not_DASHlike2] = ACTIONS(847), + [anon_sym_STAR_STAR2] = ACTIONS(847), + [anon_sym_PLUS_PLUS2] = ACTIONS(847), + [anon_sym_SLASH2] = ACTIONS(847), + [anon_sym_mod2] = ACTIONS(847), + [anon_sym_SLASH_SLASH2] = ACTIONS(847), + [anon_sym_PLUS2] = ACTIONS(847), + [anon_sym_bit_DASHshl2] = ACTIONS(847), + [anon_sym_bit_DASHshr2] = ACTIONS(847), + [anon_sym_bit_DASHand2] = ACTIONS(847), + [anon_sym_bit_DASHxor2] = ACTIONS(847), + [anon_sym_bit_DASHor2] = ACTIONS(847), + [anon_sym_DOT_DOT2] = ACTIONS(855), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(857), + [anon_sym_DOT_DOT_LT2] = ACTIONS(857), + [sym_filesize_unit] = ACTIONS(1380), + [sym_duration_unit] = ACTIONS(1382), [anon_sym_POUND] = ACTIONS(103), }, [STATE(320)] = { - [aux_sym__repeat_newline] = STATE(4207), - [sym__match_pattern_expression] = STATE(4432), - [sym__match_pattern_value] = STATE(4736), - [sym__match_pattern_list_body] = STATE(4697), - [sym__match_pattern_list] = STATE(4737), - [sym__match_pattern_rest] = STATE(5356), - [sym__match_pattern_record] = STATE(4742), - [sym_expr_parenthesized] = STATE(3970), - [sym__spread_parenthesized] = STATE(4915), - [sym_val_range] = STATE(4670), - [sym__val_range] = STATE(4693), - [sym__value] = STATE(4939), - [sym_val_nothing] = STATE(4671), - [sym_val_bool] = STATE(4060), - [sym__spread_variable] = STATE(4943), - [sym_val_variable] = STATE(3972), - [sym_val_cellpath] = STATE(4538), - [sym_val_number] = STATE(4671), - [sym__val_number_decimal] = STATE(3544), - [sym__val_number] = STATE(4386), - [sym_val_duration] = STATE(4671), - [sym_val_filesize] = STATE(4671), - [sym_val_binary] = STATE(4671), - [sym_val_string] = STATE(4671), - [sym__raw_str] = STATE(3665), - [sym__str_double_quotes] = STATE(3665), - [sym__str_single_quotes] = STATE(3665), - [sym__str_back_ticks] = STATE(3665), - [sym_val_interpolated] = STATE(4538), - [sym__inter_single_quotes] = STATE(4680), - [sym__inter_double_quotes] = STATE(4683), - [sym_val_list] = STATE(4771), - [sym__spread_list] = STATE(4915), - [sym_list_body] = STATE(5094), - [sym_val_entry] = STATE(4524), - [sym_val_record] = STATE(4538), - [sym__table_head] = STATE(3882), - [sym_val_table] = STATE(4671), - [sym_val_closure] = STATE(4538), - [sym__unquoted_in_list] = STATE(3974), - [sym__unquoted_in_list_with_expr] = STATE(4939), - [sym__unquoted_anonymous_prefix] = STATE(4693), + [aux_sym__repeat_newline] = STATE(4461), + [sym__match_pattern_expression] = STATE(4356), + [sym__match_pattern_value] = STATE(4686), + [sym__match_pattern_list_body] = STATE(4803), + [sym__match_pattern_list] = STATE(4805), + [sym__match_pattern_rest] = STATE(5278), + [sym__match_pattern_record] = STATE(4754), + [sym_expr_parenthesized] = STATE(4010), + [sym__spread_parenthesized] = STATE(4959), + [sym_val_range] = STATE(4869), + [sym__val_range] = STATE(4729), + [sym__value] = STATE(4961), + [sym_val_nothing] = STATE(4870), + [sym_val_bool] = STATE(4322), + [sym__spread_variable] = STATE(4968), + [sym_val_variable] = STATE(4011), + [sym_val_cellpath] = STATE(4862), + [sym_val_number] = STATE(4870), + [sym__val_number_decimal] = STATE(3597), + [sym__val_number] = STATE(4628), + [sym_val_duration] = STATE(4870), + [sym_val_filesize] = STATE(4870), + [sym_val_binary] = STATE(4870), + [sym_val_string] = STATE(4870), + [sym__raw_str] = STATE(3725), + [sym__str_double_quotes] = STATE(3725), + [sym__str_single_quotes] = STATE(3725), + [sym__str_back_ticks] = STATE(3725), + [sym_val_interpolated] = STATE(4862), + [sym__inter_single_quotes] = STATE(4846), + [sym__inter_double_quotes] = STATE(4847), + [sym_val_list] = STATE(4738), + [sym__spread_list] = STATE(4959), + [sym_list_body] = STATE(5333), + [sym_val_entry] = STATE(4745), + [sym_val_record] = STATE(4862), + [sym__table_head] = STATE(3940), + [sym_val_table] = STATE(4870), + [sym_val_closure] = STATE(4862), + [sym__unquoted_in_list] = STATE(4012), + [sym__unquoted_in_list_with_expr] = STATE(4961), + [sym__unquoted_anonymous_prefix] = STATE(4729), [sym_comment] = STATE(320), - [aux_sym__types_body_repeat1] = STATE(370), - [aux_sym_parameter_repeat2] = STATE(4067), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1433), - [aux_sym_list_body_repeat1] = STATE(599), + [aux_sym__types_body_repeat1] = STATE(368), + [aux_sym_parameter_repeat2] = STATE(4188), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1431), + [aux_sym_list_body_repeat1] = STATE(558), [anon_sym_true] = ACTIONS(1384), [anon_sym_false] = ACTIONS(1384), [anon_sym_null] = ACTIONS(1386), @@ -72989,53 +73828,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(1436), }, [STATE(321)] = { - [aux_sym__repeat_newline] = STATE(4207), - [sym__match_pattern_expression] = STATE(4432), - [sym__match_pattern_value] = STATE(4736), - [sym__match_pattern_list_body] = STATE(4697), - [sym__match_pattern_list] = STATE(4737), - [sym__match_pattern_rest] = STATE(5356), - [sym__match_pattern_record] = STATE(4742), - [sym_expr_parenthesized] = STATE(3970), - [sym__spread_parenthesized] = STATE(4915), - [sym_val_range] = STATE(4670), - [sym__val_range] = STATE(4693), - [sym__value] = STATE(4939), - [sym_val_nothing] = STATE(4671), - [sym_val_bool] = STATE(4060), - [sym__spread_variable] = STATE(4943), - [sym_val_variable] = STATE(3972), - [sym_val_cellpath] = STATE(4538), - [sym_val_number] = STATE(4671), - [sym__val_number_decimal] = STATE(3544), - [sym__val_number] = STATE(4386), - [sym_val_duration] = STATE(4671), - [sym_val_filesize] = STATE(4671), - [sym_val_binary] = STATE(4671), - [sym_val_string] = STATE(4671), - [sym__raw_str] = STATE(3665), - [sym__str_double_quotes] = STATE(3665), - [sym__str_single_quotes] = STATE(3665), - [sym__str_back_ticks] = STATE(3665), - [sym_val_interpolated] = STATE(4538), - [sym__inter_single_quotes] = STATE(4680), - [sym__inter_double_quotes] = STATE(4683), - [sym_val_list] = STATE(4771), - [sym__spread_list] = STATE(4915), - [sym_list_body] = STATE(5191), - [sym_val_entry] = STATE(4524), - [sym_val_record] = STATE(4538), - [sym__table_head] = STATE(3882), - [sym_val_table] = STATE(4671), - [sym_val_closure] = STATE(4538), - [sym__unquoted_in_list] = STATE(3974), - [sym__unquoted_in_list_with_expr] = STATE(4939), - [sym__unquoted_anonymous_prefix] = STATE(4693), + [aux_sym__repeat_newline] = STATE(4461), + [sym__match_pattern_expression] = STATE(4356), + [sym__match_pattern_value] = STATE(4686), + [sym__match_pattern_list_body] = STATE(4803), + [sym__match_pattern_list] = STATE(4805), + [sym__match_pattern_rest] = STATE(5278), + [sym__match_pattern_record] = STATE(4754), + [sym_expr_parenthesized] = STATE(4010), + [sym__spread_parenthesized] = STATE(4959), + [sym_val_range] = STATE(4869), + [sym__val_range] = STATE(4729), + [sym__value] = STATE(4961), + [sym_val_nothing] = STATE(4870), + [sym_val_bool] = STATE(4322), + [sym__spread_variable] = STATE(4968), + [sym_val_variable] = STATE(4011), + [sym_val_cellpath] = STATE(4862), + [sym_val_number] = STATE(4870), + [sym__val_number_decimal] = STATE(3597), + [sym__val_number] = STATE(4628), + [sym_val_duration] = STATE(4870), + [sym_val_filesize] = STATE(4870), + [sym_val_binary] = STATE(4870), + [sym_val_string] = STATE(4870), + [sym__raw_str] = STATE(3725), + [sym__str_double_quotes] = STATE(3725), + [sym__str_single_quotes] = STATE(3725), + [sym__str_back_ticks] = STATE(3725), + [sym_val_interpolated] = STATE(4862), + [sym__inter_single_quotes] = STATE(4846), + [sym__inter_double_quotes] = STATE(4847), + [sym_val_list] = STATE(4738), + [sym__spread_list] = STATE(4959), + [sym_list_body] = STATE(5087), + [sym_val_entry] = STATE(4745), + [sym_val_record] = STATE(4862), + [sym__table_head] = STATE(3940), + [sym_val_table] = STATE(4870), + [sym_val_closure] = STATE(4862), + [sym__unquoted_in_list] = STATE(4012), + [sym__unquoted_in_list_with_expr] = STATE(4961), + [sym__unquoted_anonymous_prefix] = STATE(4729), [sym_comment] = STATE(321), - [aux_sym__types_body_repeat1] = STATE(370), - [aux_sym_parameter_repeat2] = STATE(4067), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1433), - [aux_sym_list_body_repeat1] = STATE(599), + [aux_sym__types_body_repeat1] = STATE(368), + [aux_sym_parameter_repeat2] = STATE(4188), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1431), + [aux_sym_list_body_repeat1] = STATE(558), [anon_sym_true] = ACTIONS(1384), [anon_sym_false] = ACTIONS(1384), [anon_sym_null] = ACTIONS(1386), @@ -73076,53 +73915,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(1436), }, [STATE(322)] = { - [aux_sym__repeat_newline] = STATE(4207), - [sym__match_pattern_expression] = STATE(4432), - [sym__match_pattern_value] = STATE(4736), - [sym__match_pattern_list_body] = STATE(4697), - [sym__match_pattern_list] = STATE(4737), - [sym__match_pattern_rest] = STATE(5356), - [sym__match_pattern_record] = STATE(4742), - [sym_expr_parenthesized] = STATE(3970), - [sym__spread_parenthesized] = STATE(4915), - [sym_val_range] = STATE(4670), - [sym__val_range] = STATE(4693), - [sym__value] = STATE(4939), - [sym_val_nothing] = STATE(4671), - [sym_val_bool] = STATE(4060), - [sym__spread_variable] = STATE(4943), - [sym_val_variable] = STATE(3972), - [sym_val_cellpath] = STATE(4538), - [sym_val_number] = STATE(4671), - [sym__val_number_decimal] = STATE(3544), - [sym__val_number] = STATE(4386), - [sym_val_duration] = STATE(4671), - [sym_val_filesize] = STATE(4671), - [sym_val_binary] = STATE(4671), - [sym_val_string] = STATE(4671), - [sym__raw_str] = STATE(3665), - [sym__str_double_quotes] = STATE(3665), - [sym__str_single_quotes] = STATE(3665), - [sym__str_back_ticks] = STATE(3665), - [sym_val_interpolated] = STATE(4538), - [sym__inter_single_quotes] = STATE(4680), - [sym__inter_double_quotes] = STATE(4683), - [sym_val_list] = STATE(4771), - [sym__spread_list] = STATE(4915), - [sym_list_body] = STATE(5234), - [sym_val_entry] = STATE(4524), - [sym_val_record] = STATE(4538), - [sym__table_head] = STATE(3882), - [sym_val_table] = STATE(4671), - [sym_val_closure] = STATE(4538), - [sym__unquoted_in_list] = STATE(3974), - [sym__unquoted_in_list_with_expr] = STATE(4939), - [sym__unquoted_anonymous_prefix] = STATE(4693), + [aux_sym__repeat_newline] = STATE(4461), + [sym__match_pattern_expression] = STATE(4356), + [sym__match_pattern_value] = STATE(4686), + [sym__match_pattern_list_body] = STATE(4803), + [sym__match_pattern_list] = STATE(4805), + [sym__match_pattern_rest] = STATE(5278), + [sym__match_pattern_record] = STATE(4754), + [sym_expr_parenthesized] = STATE(4010), + [sym__spread_parenthesized] = STATE(4959), + [sym_val_range] = STATE(4869), + [sym__val_range] = STATE(4729), + [sym__value] = STATE(4961), + [sym_val_nothing] = STATE(4870), + [sym_val_bool] = STATE(4322), + [sym__spread_variable] = STATE(4968), + [sym_val_variable] = STATE(4011), + [sym_val_cellpath] = STATE(4862), + [sym_val_number] = STATE(4870), + [sym__val_number_decimal] = STATE(3597), + [sym__val_number] = STATE(4628), + [sym_val_duration] = STATE(4870), + [sym_val_filesize] = STATE(4870), + [sym_val_binary] = STATE(4870), + [sym_val_string] = STATE(4870), + [sym__raw_str] = STATE(3725), + [sym__str_double_quotes] = STATE(3725), + [sym__str_single_quotes] = STATE(3725), + [sym__str_back_ticks] = STATE(3725), + [sym_val_interpolated] = STATE(4862), + [sym__inter_single_quotes] = STATE(4846), + [sym__inter_double_quotes] = STATE(4847), + [sym_val_list] = STATE(4738), + [sym__spread_list] = STATE(4959), + [sym_list_body] = STATE(5342), + [sym_val_entry] = STATE(4745), + [sym_val_record] = STATE(4862), + [sym__table_head] = STATE(3940), + [sym_val_table] = STATE(4870), + [sym_val_closure] = STATE(4862), + [sym__unquoted_in_list] = STATE(4012), + [sym__unquoted_in_list_with_expr] = STATE(4961), + [sym__unquoted_anonymous_prefix] = STATE(4729), [sym_comment] = STATE(322), - [aux_sym__types_body_repeat1] = STATE(370), - [aux_sym_parameter_repeat2] = STATE(4067), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1433), - [aux_sym_list_body_repeat1] = STATE(599), + [aux_sym__types_body_repeat1] = STATE(368), + [aux_sym_parameter_repeat2] = STATE(4188), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1431), + [aux_sym_list_body_repeat1] = STATE(558), [anon_sym_true] = ACTIONS(1384), [anon_sym_false] = ACTIONS(1384), [anon_sym_null] = ACTIONS(1386), @@ -73164,43 +74003,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(323)] = { [sym_comment] = STATE(323), - [ts_builtin_sym_end] = ACTIONS(1022), + [ts_builtin_sym_end] = ACTIONS(1226), + [anon_sym_in] = ACTIONS(1012), + [anon_sym_STAR_STAR] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1228), + [anon_sym_STAR] = ACTIONS(1230), + [anon_sym_SLASH] = ACTIONS(1230), + [anon_sym_mod] = ACTIONS(1228), + [anon_sym_SLASH_SLASH] = ACTIONS(1228), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_DASH] = ACTIONS(1228), + [anon_sym_bit_DASHshl] = ACTIONS(1228), + [anon_sym_bit_DASHshr] = ACTIONS(1228), + [anon_sym_EQ_TILDE] = ACTIONS(1228), + [anon_sym_BANG_TILDE] = ACTIONS(1228), + [anon_sym_like] = ACTIONS(1228), + [anon_sym_not_DASHlike] = ACTIONS(1228), + [anon_sym_bit_DASHand] = ACTIONS(1228), + [anon_sym_bit_DASHxor] = ACTIONS(1228), + [anon_sym_bit_DASHor] = ACTIONS(1228), + [anon_sym_and] = ACTIONS(1228), + [anon_sym_xor] = ACTIONS(1228), + [anon_sym_or] = ACTIONS(1228), + [anon_sym_in2] = ACTIONS(1228), + [anon_sym_not_DASHin] = ACTIONS(1228), + [anon_sym_has] = ACTIONS(1228), + [anon_sym_not_DASHhas] = ACTIONS(1228), + [anon_sym_starts_DASHwith] = ACTIONS(1228), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1228), + [anon_sym_ends_DASHwith] = ACTIONS(1228), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1228), + [anon_sym_EQ_EQ] = ACTIONS(1228), + [anon_sym_BANG_EQ] = ACTIONS(1228), + [anon_sym_LT] = ACTIONS(1230), + [anon_sym_LT_EQ] = ACTIONS(1228), + [anon_sym_GT] = ACTIONS(1230), + [anon_sym_GT_EQ] = ACTIONS(1228), + [aux_sym_cmd_identifier_token6] = ACTIONS(1232), + [sym__newline] = ACTIONS(1012), + [anon_sym_SEMI] = ACTIONS(1012), + [anon_sym_PIPE] = ACTIONS(1012), + [anon_sym_err_GT_PIPE] = ACTIONS(1012), + [anon_sym_out_GT_PIPE] = ACTIONS(1012), + [anon_sym_e_GT_PIPE] = ACTIONS(1012), + [anon_sym_o_GT_PIPE] = ACTIONS(1012), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1012), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1012), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1012), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1012), + [anon_sym_GT2] = ACTIONS(1012), + [anon_sym_DASH2] = ACTIONS(1012), + [anon_sym_STAR2] = ACTIONS(1012), + [anon_sym_and2] = ACTIONS(1012), + [anon_sym_xor2] = ACTIONS(1012), + [anon_sym_or2] = ACTIONS(1012), + [anon_sym_not_DASHin2] = ACTIONS(1012), + [anon_sym_has2] = ACTIONS(1012), + [anon_sym_not_DASHhas2] = ACTIONS(1012), + [anon_sym_starts_DASHwith2] = ACTIONS(1012), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1012), + [anon_sym_ends_DASHwith2] = ACTIONS(1012), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1012), + [anon_sym_EQ_EQ2] = ACTIONS(1012), + [anon_sym_BANG_EQ2] = ACTIONS(1012), + [anon_sym_LT2] = ACTIONS(1012), + [anon_sym_LT_EQ2] = ACTIONS(1012), + [anon_sym_GT_EQ2] = ACTIONS(1012), + [anon_sym_EQ_TILDE2] = ACTIONS(1012), + [anon_sym_BANG_TILDE2] = ACTIONS(1012), + [anon_sym_like2] = ACTIONS(1012), + [anon_sym_not_DASHlike2] = ACTIONS(1012), + [anon_sym_STAR_STAR2] = ACTIONS(1012), + [anon_sym_PLUS_PLUS2] = ACTIONS(1012), + [anon_sym_SLASH2] = ACTIONS(1012), + [anon_sym_mod2] = ACTIONS(1012), + [anon_sym_SLASH_SLASH2] = ACTIONS(1012), + [anon_sym_PLUS2] = ACTIONS(1012), + [anon_sym_bit_DASHshl2] = ACTIONS(1012), + [anon_sym_bit_DASHshr2] = ACTIONS(1012), + [anon_sym_bit_DASHand2] = ACTIONS(1012), + [anon_sym_bit_DASHxor2] = ACTIONS(1012), + [anon_sym_bit_DASHor2] = ACTIONS(1012), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(324)] = { + [sym_comment] = STATE(324), + [ts_builtin_sym_end] = ACTIONS(1234), [anon_sym_in] = ACTIONS(1020), - [anon_sym_STAR_STAR] = ACTIONS(1024), - [anon_sym_PLUS_PLUS] = ACTIONS(1024), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_SLASH] = ACTIONS(1026), - [anon_sym_mod] = ACTIONS(1024), - [anon_sym_SLASH_SLASH] = ACTIONS(1024), - [anon_sym_PLUS] = ACTIONS(1026), - [anon_sym_DASH] = ACTIONS(1024), - [anon_sym_bit_DASHshl] = ACTIONS(1024), - [anon_sym_bit_DASHshr] = ACTIONS(1024), - [anon_sym_EQ_TILDE] = ACTIONS(1024), - [anon_sym_BANG_TILDE] = ACTIONS(1024), - [anon_sym_like] = ACTIONS(1024), - [anon_sym_not_DASHlike] = ACTIONS(1024), - [anon_sym_bit_DASHand] = ACTIONS(1024), - [anon_sym_bit_DASHxor] = ACTIONS(1024), - [anon_sym_bit_DASHor] = ACTIONS(1024), - [anon_sym_and] = ACTIONS(1024), - [anon_sym_xor] = ACTIONS(1024), - [anon_sym_or] = ACTIONS(1024), - [anon_sym_in2] = ACTIONS(1024), - [anon_sym_not_DASHin] = ACTIONS(1024), - [anon_sym_has] = ACTIONS(1024), - [anon_sym_not_DASHhas] = ACTIONS(1024), - [anon_sym_starts_DASHwith] = ACTIONS(1024), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1024), - [anon_sym_ends_DASHwith] = ACTIONS(1024), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1024), - [anon_sym_EQ_EQ] = ACTIONS(1024), - [anon_sym_BANG_EQ] = ACTIONS(1024), - [anon_sym_LT] = ACTIONS(1026), - [anon_sym_LT_EQ] = ACTIONS(1024), - [anon_sym_GT] = ACTIONS(1026), - [anon_sym_GT_EQ] = ACTIONS(1024), - [aux_sym_cmd_identifier_token6] = ACTIONS(1028), + [anon_sym_STAR_STAR] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1228), + [anon_sym_STAR] = ACTIONS(1230), + [anon_sym_SLASH] = ACTIONS(1230), + [anon_sym_mod] = ACTIONS(1228), + [anon_sym_SLASH_SLASH] = ACTIONS(1228), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_DASH] = ACTIONS(1228), + [anon_sym_bit_DASHshl] = ACTIONS(1228), + [anon_sym_bit_DASHshr] = ACTIONS(1228), + [anon_sym_EQ_TILDE] = ACTIONS(1228), + [anon_sym_BANG_TILDE] = ACTIONS(1228), + [anon_sym_like] = ACTIONS(1228), + [anon_sym_not_DASHlike] = ACTIONS(1228), + [anon_sym_bit_DASHand] = ACTIONS(1228), + [anon_sym_bit_DASHxor] = ACTIONS(1228), + [anon_sym_bit_DASHor] = ACTIONS(1228), + [anon_sym_and] = ACTIONS(1228), + [anon_sym_xor] = ACTIONS(1228), + [anon_sym_or] = ACTIONS(1228), + [anon_sym_in2] = ACTIONS(1228), + [anon_sym_not_DASHin] = ACTIONS(1228), + [anon_sym_has] = ACTIONS(1228), + [anon_sym_not_DASHhas] = ACTIONS(1228), + [anon_sym_starts_DASHwith] = ACTIONS(1228), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1228), + [anon_sym_ends_DASHwith] = ACTIONS(1228), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1228), + [anon_sym_EQ_EQ] = ACTIONS(1228), + [anon_sym_BANG_EQ] = ACTIONS(1228), + [anon_sym_LT] = ACTIONS(1230), + [anon_sym_LT_EQ] = ACTIONS(1228), + [anon_sym_GT] = ACTIONS(1230), + [anon_sym_GT_EQ] = ACTIONS(1228), + [aux_sym_cmd_identifier_token6] = ACTIONS(1232), [sym__newline] = ACTIONS(1020), [anon_sym_SEMI] = ACTIONS(1020), [anon_sym_PIPE] = ACTIONS(1020), @@ -73247,299 +74171,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHor2] = ACTIONS(1020), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(324)] = { - [sym_comment] = STATE(324), - [ts_builtin_sym_end] = ACTIONS(1030), - [anon_sym_in] = ACTIONS(994), - [anon_sym_STAR_STAR] = ACTIONS(1024), - [anon_sym_PLUS_PLUS] = ACTIONS(1024), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_SLASH] = ACTIONS(1026), - [anon_sym_mod] = ACTIONS(1024), - [anon_sym_SLASH_SLASH] = ACTIONS(1024), - [anon_sym_PLUS] = ACTIONS(1026), - [anon_sym_DASH] = ACTIONS(1024), - [anon_sym_bit_DASHshl] = ACTIONS(1024), - [anon_sym_bit_DASHshr] = ACTIONS(1024), - [anon_sym_EQ_TILDE] = ACTIONS(1024), - [anon_sym_BANG_TILDE] = ACTIONS(1024), - [anon_sym_like] = ACTIONS(1024), - [anon_sym_not_DASHlike] = ACTIONS(1024), - [anon_sym_bit_DASHand] = ACTIONS(1024), - [anon_sym_bit_DASHxor] = ACTIONS(1024), - [anon_sym_bit_DASHor] = ACTIONS(1024), - [anon_sym_and] = ACTIONS(1024), - [anon_sym_xor] = ACTIONS(1024), - [anon_sym_or] = ACTIONS(1024), - [anon_sym_in2] = ACTIONS(1024), - [anon_sym_not_DASHin] = ACTIONS(1024), - [anon_sym_has] = ACTIONS(1024), - [anon_sym_not_DASHhas] = ACTIONS(1024), - [anon_sym_starts_DASHwith] = ACTIONS(1024), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1024), - [anon_sym_ends_DASHwith] = ACTIONS(1024), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1024), - [anon_sym_EQ_EQ] = ACTIONS(1024), - [anon_sym_BANG_EQ] = ACTIONS(1024), - [anon_sym_LT] = ACTIONS(1026), - [anon_sym_LT_EQ] = ACTIONS(1024), - [anon_sym_GT] = ACTIONS(1026), - [anon_sym_GT_EQ] = ACTIONS(1024), - [aux_sym_cmd_identifier_token6] = ACTIONS(1028), - [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(325)] = { [sym_comment] = STATE(325), - [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_in] = ACTIONS(1012), + [anon_sym_STAR_STAR] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1014), + [anon_sym_STAR] = ACTIONS(1016), + [anon_sym_SLASH] = ACTIONS(1016), + [anon_sym_mod] = ACTIONS(1014), + [anon_sym_SLASH_SLASH] = ACTIONS(1014), + [anon_sym_PLUS] = ACTIONS(1016), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_bit_DASHshl] = ACTIONS(1014), + [anon_sym_bit_DASHshr] = ACTIONS(1014), + [anon_sym_EQ_TILDE] = ACTIONS(1014), + [anon_sym_BANG_TILDE] = ACTIONS(1014), + [anon_sym_like] = ACTIONS(1014), + [anon_sym_not_DASHlike] = ACTIONS(1014), + [anon_sym_bit_DASHand] = ACTIONS(1014), + [anon_sym_bit_DASHxor] = ACTIONS(1014), + [anon_sym_bit_DASHor] = ACTIONS(1014), + [anon_sym_and] = ACTIONS(1014), + [anon_sym_xor] = ACTIONS(1014), + [anon_sym_or] = ACTIONS(1014), + [anon_sym_in2] = ACTIONS(1014), + [anon_sym_not_DASHin] = ACTIONS(1014), + [anon_sym_has] = ACTIONS(1014), + [anon_sym_not_DASHhas] = ACTIONS(1014), + [anon_sym_starts_DASHwith] = ACTIONS(1014), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1014), + [anon_sym_ends_DASHwith] = ACTIONS(1014), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1014), + [anon_sym_EQ_EQ] = ACTIONS(1014), + [anon_sym_BANG_EQ] = ACTIONS(1014), + [anon_sym_LT] = ACTIONS(1016), + [anon_sym_LT_EQ] = ACTIONS(1014), + [anon_sym_GT] = ACTIONS(1016), + [anon_sym_GT_EQ] = ACTIONS(1014), + [aux_sym_cmd_identifier_token6] = ACTIONS(1018), + [sym__newline] = ACTIONS(1012), + [anon_sym_SEMI] = ACTIONS(1012), + [anon_sym_PIPE] = ACTIONS(1012), + [anon_sym_err_GT_PIPE] = ACTIONS(1012), + [anon_sym_out_GT_PIPE] = ACTIONS(1012), + [anon_sym_e_GT_PIPE] = ACTIONS(1012), + [anon_sym_o_GT_PIPE] = ACTIONS(1012), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1012), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1012), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1012), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1012), + [anon_sym_RPAREN] = ACTIONS(1012), + [anon_sym_GT2] = ACTIONS(1012), + [anon_sym_DASH2] = ACTIONS(1012), + [anon_sym_STAR2] = ACTIONS(1012), + [anon_sym_and2] = ACTIONS(1012), + [anon_sym_xor2] = ACTIONS(1012), + [anon_sym_or2] = ACTIONS(1012), + [anon_sym_not_DASHin2] = ACTIONS(1012), + [anon_sym_has2] = ACTIONS(1012), + [anon_sym_not_DASHhas2] = ACTIONS(1012), + [anon_sym_starts_DASHwith2] = ACTIONS(1012), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1012), + [anon_sym_ends_DASHwith2] = ACTIONS(1012), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1012), + [anon_sym_EQ_EQ2] = ACTIONS(1012), + [anon_sym_BANG_EQ2] = ACTIONS(1012), + [anon_sym_LT2] = ACTIONS(1012), + [anon_sym_LT_EQ2] = ACTIONS(1012), + [anon_sym_GT_EQ2] = ACTIONS(1012), + [anon_sym_EQ_TILDE2] = ACTIONS(1012), + [anon_sym_BANG_TILDE2] = ACTIONS(1012), + [anon_sym_like2] = ACTIONS(1012), + [anon_sym_not_DASHlike2] = ACTIONS(1012), + [anon_sym_STAR_STAR2] = ACTIONS(1012), + [anon_sym_PLUS_PLUS2] = ACTIONS(1012), + [anon_sym_SLASH2] = ACTIONS(1012), + [anon_sym_mod2] = ACTIONS(1012), + [anon_sym_SLASH_SLASH2] = ACTIONS(1012), + [anon_sym_PLUS2] = ACTIONS(1012), + [anon_sym_bit_DASHshl2] = ACTIONS(1012), + [anon_sym_bit_DASHshr2] = ACTIONS(1012), + [anon_sym_bit_DASHand2] = ACTIONS(1012), + [anon_sym_bit_DASHxor2] = ACTIONS(1012), + [anon_sym_bit_DASHor2] = ACTIONS(1012), [anon_sym_POUND] = ACTIONS(103), }, [STATE(326)] = { [sym_comment] = STATE(326), - [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(1020), - [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), + [anon_sym_STAR_STAR] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1014), + [anon_sym_STAR] = ACTIONS(1016), + [anon_sym_SLASH] = ACTIONS(1016), + [anon_sym_mod] = ACTIONS(1014), + [anon_sym_SLASH_SLASH] = ACTIONS(1014), + [anon_sym_PLUS] = ACTIONS(1016), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_bit_DASHshl] = ACTIONS(1014), + [anon_sym_bit_DASHshr] = ACTIONS(1014), + [anon_sym_EQ_TILDE] = ACTIONS(1014), + [anon_sym_BANG_TILDE] = ACTIONS(1014), + [anon_sym_like] = ACTIONS(1014), + [anon_sym_not_DASHlike] = ACTIONS(1014), + [anon_sym_bit_DASHand] = ACTIONS(1014), + [anon_sym_bit_DASHxor] = ACTIONS(1014), + [anon_sym_bit_DASHor] = ACTIONS(1014), + [anon_sym_and] = ACTIONS(1014), + [anon_sym_xor] = ACTIONS(1014), + [anon_sym_or] = ACTIONS(1014), + [anon_sym_in2] = ACTIONS(1014), + [anon_sym_not_DASHin] = ACTIONS(1014), + [anon_sym_has] = ACTIONS(1014), + [anon_sym_not_DASHhas] = ACTIONS(1014), + [anon_sym_starts_DASHwith] = ACTIONS(1014), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1014), + [anon_sym_ends_DASHwith] = ACTIONS(1014), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1014), + [anon_sym_EQ_EQ] = ACTIONS(1014), + [anon_sym_BANG_EQ] = ACTIONS(1014), + [anon_sym_LT] = ACTIONS(1016), + [anon_sym_LT_EQ] = ACTIONS(1014), + [anon_sym_GT] = ACTIONS(1016), + [anon_sym_GT_EQ] = ACTIONS(1014), + [aux_sym_cmd_identifier_token6] = ACTIONS(1018), [sym__newline] = ACTIONS(1020), [anon_sym_SEMI] = ACTIONS(1020), [anon_sym_PIPE] = ACTIONS(1020), @@ -73587,44 +74341,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHor2] = ACTIONS(1020), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(328)] = { - [sym_comment] = STATE(328), + [STATE(327)] = { + [sym_comment] = STATE(327), [anon_sym_in] = ACTIONS(1020), - [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), + [anon_sym_STAR_STAR] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1014), + [anon_sym_STAR] = ACTIONS(1016), + [anon_sym_SLASH] = ACTIONS(1016), + [anon_sym_mod] = ACTIONS(1014), + [anon_sym_SLASH_SLASH] = ACTIONS(1014), + [anon_sym_PLUS] = ACTIONS(1016), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_bit_DASHshl] = ACTIONS(1014), + [anon_sym_bit_DASHshr] = ACTIONS(1014), + [anon_sym_EQ_TILDE] = ACTIONS(1014), + [anon_sym_BANG_TILDE] = ACTIONS(1014), + [anon_sym_like] = ACTIONS(1014), + [anon_sym_not_DASHlike] = ACTIONS(1014), + [anon_sym_bit_DASHand] = ACTIONS(1014), + [anon_sym_bit_DASHxor] = ACTIONS(1014), + [anon_sym_bit_DASHor] = ACTIONS(1014), + [anon_sym_and] = ACTIONS(1014), + [anon_sym_xor] = ACTIONS(1014), + [anon_sym_or] = ACTIONS(1014), + [anon_sym_in2] = ACTIONS(1014), + [anon_sym_not_DASHin] = ACTIONS(1014), + [anon_sym_has] = ACTIONS(1014), + [anon_sym_not_DASHhas] = ACTIONS(1014), + [anon_sym_starts_DASHwith] = ACTIONS(1014), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1014), + [anon_sym_ends_DASHwith] = ACTIONS(1014), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1014), + [anon_sym_EQ_EQ] = ACTIONS(1014), + [anon_sym_BANG_EQ] = ACTIONS(1014), + [anon_sym_LT] = ACTIONS(1016), + [anon_sym_LT_EQ] = ACTIONS(1014), + [anon_sym_GT] = ACTIONS(1016), + [anon_sym_GT_EQ] = ACTIONS(1014), + [aux_sym_cmd_identifier_token6] = ACTIONS(1018), [sym__newline] = ACTIONS(1020), [anon_sym_SEMI] = ACTIONS(1020), [anon_sym_PIPE] = ACTIONS(1020), @@ -73672,44 +74426,213 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHor2] = ACTIONS(1020), [anon_sym_POUND] = ACTIONS(103), }, + [STATE(328)] = { + [sym_comment] = STATE(328), + [anon_sym_in] = ACTIONS(1012), + [anon_sym_STAR_STAR] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1014), + [anon_sym_STAR] = ACTIONS(1016), + [anon_sym_SLASH] = ACTIONS(1016), + [anon_sym_mod] = ACTIONS(1014), + [anon_sym_SLASH_SLASH] = ACTIONS(1014), + [anon_sym_PLUS] = ACTIONS(1016), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_bit_DASHshl] = ACTIONS(1014), + [anon_sym_bit_DASHshr] = ACTIONS(1014), + [anon_sym_EQ_TILDE] = ACTIONS(1014), + [anon_sym_BANG_TILDE] = ACTIONS(1014), + [anon_sym_like] = ACTIONS(1014), + [anon_sym_not_DASHlike] = ACTIONS(1014), + [anon_sym_bit_DASHand] = ACTIONS(1014), + [anon_sym_bit_DASHxor] = ACTIONS(1014), + [anon_sym_bit_DASHor] = ACTIONS(1014), + [anon_sym_and] = ACTIONS(1014), + [anon_sym_xor] = ACTIONS(1014), + [anon_sym_or] = ACTIONS(1014), + [anon_sym_in2] = ACTIONS(1014), + [anon_sym_not_DASHin] = ACTIONS(1014), + [anon_sym_has] = ACTIONS(1014), + [anon_sym_not_DASHhas] = ACTIONS(1014), + [anon_sym_starts_DASHwith] = ACTIONS(1014), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1014), + [anon_sym_ends_DASHwith] = ACTIONS(1014), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1014), + [anon_sym_EQ_EQ] = ACTIONS(1014), + [anon_sym_BANG_EQ] = ACTIONS(1014), + [anon_sym_LT] = ACTIONS(1016), + [anon_sym_LT_EQ] = ACTIONS(1014), + [anon_sym_GT] = ACTIONS(1016), + [anon_sym_GT_EQ] = ACTIONS(1014), + [aux_sym_cmd_identifier_token6] = ACTIONS(1018), + [sym__newline] = ACTIONS(1012), + [anon_sym_SEMI] = ACTIONS(1012), + [anon_sym_PIPE] = ACTIONS(1012), + [anon_sym_err_GT_PIPE] = ACTIONS(1012), + [anon_sym_out_GT_PIPE] = ACTIONS(1012), + [anon_sym_e_GT_PIPE] = ACTIONS(1012), + [anon_sym_o_GT_PIPE] = ACTIONS(1012), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1012), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1012), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1012), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1012), + [anon_sym_GT2] = ACTIONS(1012), + [anon_sym_DASH2] = ACTIONS(1012), + [anon_sym_RBRACE] = ACTIONS(1012), + [anon_sym_STAR2] = ACTIONS(1012), + [anon_sym_and2] = ACTIONS(1012), + [anon_sym_xor2] = ACTIONS(1012), + [anon_sym_or2] = ACTIONS(1012), + [anon_sym_not_DASHin2] = ACTIONS(1012), + [anon_sym_has2] = ACTIONS(1012), + [anon_sym_not_DASHhas2] = ACTIONS(1012), + [anon_sym_starts_DASHwith2] = ACTIONS(1012), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1012), + [anon_sym_ends_DASHwith2] = ACTIONS(1012), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1012), + [anon_sym_EQ_EQ2] = ACTIONS(1012), + [anon_sym_BANG_EQ2] = ACTIONS(1012), + [anon_sym_LT2] = ACTIONS(1012), + [anon_sym_LT_EQ2] = ACTIONS(1012), + [anon_sym_GT_EQ2] = ACTIONS(1012), + [anon_sym_EQ_TILDE2] = ACTIONS(1012), + [anon_sym_BANG_TILDE2] = ACTIONS(1012), + [anon_sym_like2] = ACTIONS(1012), + [anon_sym_not_DASHlike2] = ACTIONS(1012), + [anon_sym_STAR_STAR2] = ACTIONS(1012), + [anon_sym_PLUS_PLUS2] = ACTIONS(1012), + [anon_sym_SLASH2] = ACTIONS(1012), + [anon_sym_mod2] = ACTIONS(1012), + [anon_sym_SLASH_SLASH2] = ACTIONS(1012), + [anon_sym_PLUS2] = ACTIONS(1012), + [anon_sym_bit_DASHshl2] = ACTIONS(1012), + [anon_sym_bit_DASHshr2] = ACTIONS(1012), + [anon_sym_bit_DASHand2] = ACTIONS(1012), + [anon_sym_bit_DASHxor2] = ACTIONS(1012), + [anon_sym_bit_DASHor2] = ACTIONS(1012), + [anon_sym_POUND] = ACTIONS(103), + }, [STATE(329)] = { [sym_comment] = STATE(329), + [anon_sym_in] = ACTIONS(1012), + [anon_sym_STAR_STAR] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1014), + [anon_sym_STAR] = ACTIONS(1016), + [anon_sym_SLASH] = ACTIONS(1016), + [anon_sym_mod] = ACTIONS(1014), + [anon_sym_SLASH_SLASH] = ACTIONS(1014), + [anon_sym_PLUS] = ACTIONS(1016), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_bit_DASHshl] = ACTIONS(1014), + [anon_sym_bit_DASHshr] = ACTIONS(1014), + [anon_sym_EQ_TILDE] = ACTIONS(1014), + [anon_sym_BANG_TILDE] = ACTIONS(1014), + [anon_sym_like] = ACTIONS(1014), + [anon_sym_not_DASHlike] = ACTIONS(1014), + [anon_sym_bit_DASHand] = ACTIONS(1014), + [anon_sym_bit_DASHxor] = ACTIONS(1014), + [anon_sym_bit_DASHor] = ACTIONS(1014), + [anon_sym_and] = ACTIONS(1014), + [anon_sym_xor] = ACTIONS(1014), + [anon_sym_or] = ACTIONS(1014), + [anon_sym_in2] = ACTIONS(1014), + [anon_sym_not_DASHin] = ACTIONS(1014), + [anon_sym_has] = ACTIONS(1014), + [anon_sym_not_DASHhas] = ACTIONS(1014), + [anon_sym_starts_DASHwith] = ACTIONS(1014), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1014), + [anon_sym_ends_DASHwith] = ACTIONS(1014), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1014), + [anon_sym_EQ_EQ] = ACTIONS(1014), + [anon_sym_BANG_EQ] = ACTIONS(1014), + [anon_sym_LT] = ACTIONS(1016), + [anon_sym_LT_EQ] = ACTIONS(1014), + [anon_sym_GT] = ACTIONS(1016), + [anon_sym_GT_EQ] = ACTIONS(1014), + [aux_sym_cmd_identifier_token6] = ACTIONS(1018), + [sym__newline] = ACTIONS(1012), + [anon_sym_SEMI] = ACTIONS(1012), + [anon_sym_PIPE] = ACTIONS(1012), + [anon_sym_err_GT_PIPE] = ACTIONS(1012), + [anon_sym_out_GT_PIPE] = ACTIONS(1012), + [anon_sym_e_GT_PIPE] = ACTIONS(1012), + [anon_sym_o_GT_PIPE] = ACTIONS(1012), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1012), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1012), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1012), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1012), + [anon_sym_GT2] = ACTIONS(1012), + [anon_sym_DASH2] = ACTIONS(1012), + [anon_sym_STAR2] = ACTIONS(1012), + [anon_sym_and2] = ACTIONS(1012), + [anon_sym_xor2] = ACTIONS(1012), + [anon_sym_or2] = ACTIONS(1012), + [anon_sym_not_DASHin2] = ACTIONS(1012), + [anon_sym_has2] = ACTIONS(1012), + [anon_sym_not_DASHhas2] = ACTIONS(1012), + [anon_sym_starts_DASHwith2] = ACTIONS(1012), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1012), + [anon_sym_ends_DASHwith2] = ACTIONS(1012), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1012), + [anon_sym_EQ_EQ2] = ACTIONS(1012), + [anon_sym_BANG_EQ2] = ACTIONS(1012), + [anon_sym_LT2] = ACTIONS(1012), + [anon_sym_LT_EQ2] = ACTIONS(1012), + [anon_sym_GT_EQ2] = ACTIONS(1012), + [anon_sym_EQ_TILDE2] = ACTIONS(1012), + [anon_sym_BANG_TILDE2] = ACTIONS(1012), + [anon_sym_like2] = ACTIONS(1012), + [anon_sym_not_DASHlike2] = ACTIONS(1012), + [anon_sym_STAR_STAR2] = ACTIONS(1012), + [anon_sym_PLUS_PLUS2] = ACTIONS(1012), + [anon_sym_SLASH2] = ACTIONS(1012), + [anon_sym_mod2] = ACTIONS(1012), + [anon_sym_SLASH_SLASH2] = ACTIONS(1012), + [anon_sym_PLUS2] = ACTIONS(1012), + [anon_sym_bit_DASHshl2] = ACTIONS(1012), + [anon_sym_bit_DASHshr2] = ACTIONS(1012), + [anon_sym_bit_DASHand2] = ACTIONS(1012), + [anon_sym_bit_DASHxor2] = ACTIONS(1012), + [anon_sym_bit_DASHor2] = ACTIONS(1012), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(330)] = { + [sym_comment] = STATE(330), [anon_sym_in] = ACTIONS(1020), - [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), + [anon_sym_STAR_STAR] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1014), + [anon_sym_STAR] = ACTIONS(1016), + [anon_sym_SLASH] = ACTIONS(1016), + [anon_sym_mod] = ACTIONS(1014), + [anon_sym_SLASH_SLASH] = ACTIONS(1014), + [anon_sym_PLUS] = ACTIONS(1016), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_bit_DASHshl] = ACTIONS(1014), + [anon_sym_bit_DASHshr] = ACTIONS(1014), + [anon_sym_EQ_TILDE] = ACTIONS(1014), + [anon_sym_BANG_TILDE] = ACTIONS(1014), + [anon_sym_like] = ACTIONS(1014), + [anon_sym_not_DASHlike] = ACTIONS(1014), + [anon_sym_bit_DASHand] = ACTIONS(1014), + [anon_sym_bit_DASHxor] = ACTIONS(1014), + [anon_sym_bit_DASHor] = ACTIONS(1014), + [anon_sym_and] = ACTIONS(1014), + [anon_sym_xor] = ACTIONS(1014), + [anon_sym_or] = ACTIONS(1014), + [anon_sym_in2] = ACTIONS(1014), + [anon_sym_not_DASHin] = ACTIONS(1014), + [anon_sym_has] = ACTIONS(1014), + [anon_sym_not_DASHhas] = ACTIONS(1014), + [anon_sym_starts_DASHwith] = ACTIONS(1014), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1014), + [anon_sym_ends_DASHwith] = ACTIONS(1014), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1014), + [anon_sym_EQ_EQ] = ACTIONS(1014), + [anon_sym_BANG_EQ] = ACTIONS(1014), + [anon_sym_LT] = ACTIONS(1016), + [anon_sym_LT_EQ] = ACTIONS(1014), + [anon_sym_GT] = ACTIONS(1016), + [anon_sym_GT_EQ] = ACTIONS(1014), + [aux_sym_cmd_identifier_token6] = ACTIONS(1018), [sym__newline] = ACTIONS(1020), [anon_sym_SEMI] = ACTIONS(1020), [anon_sym_PIPE] = ACTIONS(1020), @@ -73756,128 +74679,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHor2] = ACTIONS(1020), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(330)] = { - [sym_comment] = STATE(330), - [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(331)] = { [sym_comment] = STATE(331), + [anon_sym_in] = ACTIONS(1012), + [anon_sym_STAR_STAR] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1014), + [anon_sym_STAR] = ACTIONS(1016), + [anon_sym_SLASH] = ACTIONS(1016), + [anon_sym_mod] = ACTIONS(1014), + [anon_sym_SLASH_SLASH] = ACTIONS(1014), + [anon_sym_PLUS] = ACTIONS(1016), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_bit_DASHshl] = ACTIONS(1014), + [anon_sym_bit_DASHshr] = ACTIONS(1014), + [anon_sym_EQ_TILDE] = ACTIONS(1014), + [anon_sym_BANG_TILDE] = ACTIONS(1014), + [anon_sym_like] = ACTIONS(1014), + [anon_sym_not_DASHlike] = ACTIONS(1014), + [anon_sym_bit_DASHand] = ACTIONS(1014), + [anon_sym_bit_DASHxor] = ACTIONS(1014), + [anon_sym_bit_DASHor] = ACTIONS(1014), + [anon_sym_and] = ACTIONS(1014), + [anon_sym_xor] = ACTIONS(1014), + [anon_sym_or] = ACTIONS(1014), + [anon_sym_in2] = ACTIONS(1014), + [anon_sym_not_DASHin] = ACTIONS(1014), + [anon_sym_has] = ACTIONS(1014), + [anon_sym_not_DASHhas] = ACTIONS(1014), + [anon_sym_starts_DASHwith] = ACTIONS(1014), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1014), + [anon_sym_ends_DASHwith] = ACTIONS(1014), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1014), + [anon_sym_EQ_EQ] = ACTIONS(1014), + [anon_sym_BANG_EQ] = ACTIONS(1014), + [anon_sym_LT] = ACTIONS(1016), + [anon_sym_LT_EQ] = ACTIONS(1014), + [anon_sym_GT] = ACTIONS(1016), + [anon_sym_GT_EQ] = ACTIONS(1014), + [aux_sym_cmd_identifier_token6] = ACTIONS(1018), + [sym__newline] = ACTIONS(1012), + [anon_sym_PIPE] = ACTIONS(1012), + [anon_sym_err_GT_PIPE] = ACTIONS(1012), + [anon_sym_out_GT_PIPE] = ACTIONS(1012), + [anon_sym_e_GT_PIPE] = ACTIONS(1012), + [anon_sym_o_GT_PIPE] = ACTIONS(1012), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1012), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1012), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1012), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1012), + [anon_sym_GT2] = ACTIONS(1012), + [anon_sym_DASH2] = ACTIONS(1012), + [anon_sym_STAR2] = ACTIONS(1012), + [anon_sym_and2] = ACTIONS(1012), + [anon_sym_xor2] = ACTIONS(1012), + [anon_sym_or2] = ACTIONS(1012), + [anon_sym_not_DASHin2] = ACTIONS(1012), + [anon_sym_has2] = ACTIONS(1012), + [anon_sym_not_DASHhas2] = ACTIONS(1012), + [anon_sym_starts_DASHwith2] = ACTIONS(1012), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1012), + [anon_sym_ends_DASHwith2] = ACTIONS(1012), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1012), + [anon_sym_EQ_EQ2] = ACTIONS(1012), + [anon_sym_BANG_EQ2] = ACTIONS(1012), + [anon_sym_LT2] = ACTIONS(1012), + [anon_sym_LT_EQ2] = ACTIONS(1012), + [anon_sym_GT_EQ2] = ACTIONS(1012), + [anon_sym_EQ_TILDE2] = ACTIONS(1012), + [anon_sym_BANG_TILDE2] = ACTIONS(1012), + [anon_sym_like2] = ACTIONS(1012), + [anon_sym_not_DASHlike2] = ACTIONS(1012), + [anon_sym_STAR_STAR2] = ACTIONS(1012), + [anon_sym_PLUS_PLUS2] = ACTIONS(1012), + [anon_sym_SLASH2] = ACTIONS(1012), + [anon_sym_mod2] = ACTIONS(1012), + [anon_sym_SLASH_SLASH2] = ACTIONS(1012), + [anon_sym_PLUS2] = ACTIONS(1012), + [anon_sym_bit_DASHshl2] = ACTIONS(1012), + [anon_sym_bit_DASHshr2] = ACTIONS(1012), + [anon_sym_bit_DASHand2] = ACTIONS(1012), + [anon_sym_bit_DASHxor2] = ACTIONS(1012), + [anon_sym_bit_DASHor2] = ACTIONS(1012), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(332)] = { + [sym_comment] = STATE(332), [anon_sym_in] = ACTIONS(1020), - [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), + [anon_sym_STAR_STAR] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1014), + [anon_sym_STAR] = ACTIONS(1016), + [anon_sym_SLASH] = ACTIONS(1016), + [anon_sym_mod] = ACTIONS(1014), + [anon_sym_SLASH_SLASH] = ACTIONS(1014), + [anon_sym_PLUS] = ACTIONS(1016), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_bit_DASHshl] = ACTIONS(1014), + [anon_sym_bit_DASHshr] = ACTIONS(1014), + [anon_sym_EQ_TILDE] = ACTIONS(1014), + [anon_sym_BANG_TILDE] = ACTIONS(1014), + [anon_sym_like] = ACTIONS(1014), + [anon_sym_not_DASHlike] = ACTIONS(1014), + [anon_sym_bit_DASHand] = ACTIONS(1014), + [anon_sym_bit_DASHxor] = ACTIONS(1014), + [anon_sym_bit_DASHor] = ACTIONS(1014), + [anon_sym_and] = ACTIONS(1014), + [anon_sym_xor] = ACTIONS(1014), + [anon_sym_or] = ACTIONS(1014), + [anon_sym_in2] = ACTIONS(1014), + [anon_sym_not_DASHin] = ACTIONS(1014), + [anon_sym_has] = ACTIONS(1014), + [anon_sym_not_DASHhas] = ACTIONS(1014), + [anon_sym_starts_DASHwith] = ACTIONS(1014), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1014), + [anon_sym_ends_DASHwith] = ACTIONS(1014), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1014), + [anon_sym_EQ_EQ] = ACTIONS(1014), + [anon_sym_BANG_EQ] = ACTIONS(1014), + [anon_sym_LT] = ACTIONS(1016), + [anon_sym_LT_EQ] = ACTIONS(1014), + [anon_sym_GT] = ACTIONS(1016), + [anon_sym_GT_EQ] = ACTIONS(1014), + [aux_sym_cmd_identifier_token6] = ACTIONS(1018), [sym__newline] = ACTIONS(1020), [anon_sym_PIPE] = ACTIONS(1020), [anon_sym_err_GT_PIPE] = ACTIONS(1020), @@ -73923,94 +74845,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHor2] = ACTIONS(1020), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(332)] = { - [sym_comment] = STATE(332), - [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(333)] = { - [sym_cell_path] = STATE(372), - [sym_path] = STATE(360), + [sym__path_suffix] = STATE(355), [sym_comment] = STATE(333), - [aux_sym__where_predicate_lhs_repeat1] = STATE(364), [anon_sym_EQ] = ACTIONS(1442), [anon_sym_PLUS_EQ] = ACTIONS(1442), [anon_sym_DASH_EQ] = ACTIONS(1442), @@ -74068,7 +74905,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_LT2] = ACTIONS(1444), [sym__entry_separator] = ACTIONS(1444), [anon_sym_COLON2] = ACTIONS(1442), - [anon_sym_DOT2] = ACTIONS(1446), + [anon_sym_QMARK2] = ACTIONS(1446), + [anon_sym_BANG] = ACTIONS(1448), + [anon_sym_DOT2] = ACTIONS(1442), [anon_sym_err_GT] = ACTIONS(1442), [anon_sym_out_GT] = ACTIONS(1442), [anon_sym_e_GT] = ACTIONS(1442), @@ -74088,91 +74927,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(103), }, [STATE(334)] = { + [sym__path_suffix] = STATE(396), [sym_comment] = STATE(334), - [anon_sym_EQ] = ACTIONS(1448), - [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_RBRACK] = ACTIONS(1448), - [anon_sym_GT2] = ACTIONS(1448), - [anon_sym_DASH2] = ACTIONS(1448), - [anon_sym_RBRACE] = ACTIONS(1448), - [anon_sym_DOT_DOT] = ACTIONS(1448), - [anon_sym_STAR2] = ACTIONS(1448), - [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(1448), - [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(1448), - [anon_sym_mod2] = ACTIONS(1448), - [anon_sym_SLASH_SLASH2] = ACTIONS(1448), - [anon_sym_PLUS2] = ACTIONS(1448), - [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(1448), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1450), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1450), - [sym__entry_separator] = ACTIONS(1450), - [anon_sym_COLON2] = ACTIONS(1448), - [anon_sym_QMARK2] = ACTIONS(1452), - [anon_sym_DOT2] = ACTIONS(1448), - [anon_sym_err_GT] = ACTIONS(1448), - [anon_sym_out_GT] = ACTIONS(1448), - [anon_sym_e_GT] = ACTIONS(1448), - [anon_sym_o_GT] = ACTIONS(1448), - [anon_sym_err_PLUSout_GT] = ACTIONS(1448), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1448), - [anon_sym_o_PLUSe_GT] = ACTIONS(1448), - [anon_sym_e_PLUSo_GT] = ACTIONS(1448), - [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(103), - }, - [STATE(335)] = { - [sym_cell_path] = STATE(406), - [sym_path] = STATE(395), - [sym_comment] = STATE(335), - [aux_sym__where_predicate_lhs_repeat1] = STATE(342), [anon_sym_EQ] = ACTIONS(1442), [anon_sym_PLUS_EQ] = ACTIONS(1444), [anon_sym_DASH_EQ] = ACTIONS(1444), @@ -74230,7 +74986,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_EQ2] = ACTIONS(1444), [anon_sym_DOT_DOT_LT2] = ACTIONS(1444), [anon_sym_COLON2] = ACTIONS(1444), - [anon_sym_DOT2] = ACTIONS(1454), + [anon_sym_QMARK2] = ACTIONS(1450), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_DOT2] = ACTIONS(1442), [anon_sym_err_GT] = ACTIONS(1442), [anon_sym_out_GT] = ACTIONS(1442), [anon_sym_e_GT] = ACTIONS(1442), @@ -74249,91 +75007,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1444), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(336)] = { - [sym__path_suffix] = STATE(401), - [sym_comment] = STATE(336), - [anon_sym_EQ] = ACTIONS(1456), - [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_RPAREN] = ACTIONS(1458), - [anon_sym_GT2] = ACTIONS(1456), - [anon_sym_DASH2] = ACTIONS(1456), - [anon_sym_RBRACE] = ACTIONS(1458), - [anon_sym_STAR2] = ACTIONS(1456), - [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(1456), - [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(1456), - [anon_sym_SLASH2] = ACTIONS(1456), - [anon_sym_mod2] = ACTIONS(1458), - [anon_sym_SLASH_SLASH2] = ACTIONS(1458), - [anon_sym_PLUS2] = ACTIONS(1456), - [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(1456), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1458), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1458), - [anon_sym_COLON2] = ACTIONS(1458), - [anon_sym_QMARK2] = ACTIONS(1460), - [anon_sym_BANG] = ACTIONS(1462), - [anon_sym_DOT2] = ACTIONS(1456), - [anon_sym_err_GT] = ACTIONS(1456), - [anon_sym_out_GT] = ACTIONS(1456), - [anon_sym_e_GT] = ACTIONS(1456), - [anon_sym_o_GT] = ACTIONS(1456), - [anon_sym_err_PLUSout_GT] = ACTIONS(1456), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1456), - [anon_sym_o_PLUSe_GT] = ACTIONS(1456), - [anon_sym_e_PLUSo_GT] = ACTIONS(1456), - [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(3), - }, - [STATE(337)] = { - [sym__path_suffix] = STATE(367), - [sym_comment] = STATE(337), - [anon_sym_EQ] = ACTIONS(1456), + [STATE(335)] = { + [sym_cell_path] = STATE(402), + [sym_path] = STATE(393), + [sym_comment] = STATE(335), + [aux_sym__where_predicate_lhs_repeat1] = STATE(347), + [anon_sym_EQ] = ACTIONS(1454), [anon_sym_PLUS_EQ] = ACTIONS(1456), [anon_sym_DASH_EQ] = ACTIONS(1456), [anon_sym_STAR_EQ] = ACTIONS(1456), @@ -74351,10 +75030,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1456), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1456), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1456), - [anon_sym_GT2] = ACTIONS(1456), - [anon_sym_DASH2] = ACTIONS(1456), + [anon_sym_RPAREN] = ACTIONS(1456), + [anon_sym_GT2] = ACTIONS(1454), + [anon_sym_DASH2] = ACTIONS(1454), [anon_sym_RBRACE] = ACTIONS(1456), - [anon_sym_STAR2] = ACTIONS(1456), + [anon_sym_STAR2] = ACTIONS(1454), [anon_sym_and2] = ACTIONS(1456), [anon_sym_xor2] = ACTIONS(1456), [anon_sym_or2] = ACTIONS(1456), @@ -74367,7 +75047,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1456), [anon_sym_EQ_EQ2] = ACTIONS(1456), [anon_sym_BANG_EQ2] = ACTIONS(1456), - [anon_sym_LT2] = ACTIONS(1456), + [anon_sym_LT2] = ACTIONS(1454), [anon_sym_LT_EQ2] = ACTIONS(1456), [anon_sym_GT_EQ2] = ACTIONS(1456), [anon_sym_EQ_TILDE2] = ACTIONS(1456), @@ -74375,32 +75055,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_like2] = ACTIONS(1456), [anon_sym_not_DASHlike2] = ACTIONS(1456), [anon_sym_STAR_STAR2] = ACTIONS(1456), - [anon_sym_PLUS_PLUS2] = ACTIONS(1456), - [anon_sym_SLASH2] = ACTIONS(1456), + [anon_sym_PLUS_PLUS2] = ACTIONS(1454), + [anon_sym_SLASH2] = ACTIONS(1454), [anon_sym_mod2] = ACTIONS(1456), [anon_sym_SLASH_SLASH2] = ACTIONS(1456), - [anon_sym_PLUS2] = ACTIONS(1456), + [anon_sym_PLUS2] = ACTIONS(1454), [anon_sym_bit_DASHshl2] = ACTIONS(1456), [anon_sym_bit_DASHshr2] = ACTIONS(1456), [anon_sym_bit_DASHand2] = ACTIONS(1456), [anon_sym_bit_DASHxor2] = ACTIONS(1456), [anon_sym_bit_DASHor2] = ACTIONS(1456), - [anon_sym_DOT_DOT2] = ACTIONS(1456), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1458), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1458), - [sym__entry_separator] = ACTIONS(1458), + [anon_sym_DOT_DOT2] = ACTIONS(1454), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1456), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1456), [anon_sym_COLON2] = ACTIONS(1456), - [anon_sym_QMARK2] = ACTIONS(1464), - [anon_sym_BANG] = ACTIONS(1466), - [anon_sym_DOT2] = ACTIONS(1456), - [anon_sym_err_GT] = ACTIONS(1456), - [anon_sym_out_GT] = ACTIONS(1456), - [anon_sym_e_GT] = ACTIONS(1456), - [anon_sym_o_GT] = ACTIONS(1456), - [anon_sym_err_PLUSout_GT] = ACTIONS(1456), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1456), - [anon_sym_o_PLUSe_GT] = ACTIONS(1456), - [anon_sym_e_PLUSo_GT] = ACTIONS(1456), + [anon_sym_DOT2] = ACTIONS(1458), + [anon_sym_err_GT] = ACTIONS(1454), + [anon_sym_out_GT] = ACTIONS(1454), + [anon_sym_e_GT] = ACTIONS(1454), + [anon_sym_o_GT] = ACTIONS(1454), + [anon_sym_err_PLUSout_GT] = ACTIONS(1454), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1454), + [anon_sym_o_PLUSe_GT] = ACTIONS(1454), + [anon_sym_e_PLUSo_GT] = ACTIONS(1454), [anon_sym_err_GT_GT] = ACTIONS(1456), [anon_sym_out_GT_GT] = ACTIONS(1456), [anon_sym_e_GT_GT] = ACTIONS(1456), @@ -74409,238 +75086,320 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1456), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1456), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1456), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(336)] = { + [sym_comment] = STATE(336), + [anon_sym_EQ] = ACTIONS(1460), + [anon_sym_PLUS_EQ] = ACTIONS(1460), + [anon_sym_DASH_EQ] = ACTIONS(1460), + [anon_sym_STAR_EQ] = ACTIONS(1460), + [anon_sym_SLASH_EQ] = ACTIONS(1460), + [anon_sym_PLUS_PLUS_EQ] = 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_RBRACK] = ACTIONS(1460), + [anon_sym_GT2] = ACTIONS(1460), + [anon_sym_DASH2] = ACTIONS(1460), + [anon_sym_RBRACE] = ACTIONS(1460), + [anon_sym_DOT_DOT] = ACTIONS(1460), + [anon_sym_STAR2] = ACTIONS(1460), + [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(1460), + [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(1460), + [anon_sym_mod2] = ACTIONS(1460), + [anon_sym_SLASH_SLASH2] = ACTIONS(1460), + [anon_sym_PLUS2] = ACTIONS(1460), + [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(1460), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1462), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1462), + [sym__entry_separator] = ACTIONS(1462), + [anon_sym_COLON2] = ACTIONS(1460), + [anon_sym_QMARK2] = ACTIONS(1464), + [anon_sym_DOT2] = ACTIONS(1460), + [anon_sym_err_GT] = ACTIONS(1460), + [anon_sym_out_GT] = ACTIONS(1460), + [anon_sym_e_GT] = ACTIONS(1460), + [anon_sym_o_GT] = ACTIONS(1460), + [anon_sym_err_PLUSout_GT] = ACTIONS(1460), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1460), + [anon_sym_o_PLUSe_GT] = ACTIONS(1460), + [anon_sym_e_PLUSo_GT] = ACTIONS(1460), + [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(103), + }, + [STATE(337)] = { + [sym_cell_path] = STATE(372), + [sym_path] = STATE(352), + [sym_comment] = STATE(337), + [aux_sym__where_predicate_lhs_repeat1] = STATE(365), + [anon_sym_EQ] = ACTIONS(1454), + [anon_sym_PLUS_EQ] = ACTIONS(1454), + [anon_sym_DASH_EQ] = ACTIONS(1454), + [anon_sym_STAR_EQ] = ACTIONS(1454), + [anon_sym_SLASH_EQ] = ACTIONS(1454), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1454), + [anon_sym_in] = ACTIONS(1454), + [sym__newline] = ACTIONS(1454), + [anon_sym_SEMI] = ACTIONS(1454), + [anon_sym_PIPE] = ACTIONS(1454), + [anon_sym_err_GT_PIPE] = ACTIONS(1454), + [anon_sym_out_GT_PIPE] = ACTIONS(1454), + [anon_sym_e_GT_PIPE] = ACTIONS(1454), + [anon_sym_o_GT_PIPE] = ACTIONS(1454), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1454), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1454), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1454), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1454), + [anon_sym_GT2] = ACTIONS(1454), + [anon_sym_DASH2] = ACTIONS(1454), + [anon_sym_RBRACE] = ACTIONS(1454), + [anon_sym_STAR2] = ACTIONS(1454), + [anon_sym_and2] = ACTIONS(1454), + [anon_sym_xor2] = ACTIONS(1454), + [anon_sym_or2] = ACTIONS(1454), + [anon_sym_not_DASHin2] = ACTIONS(1454), + [anon_sym_has2] = ACTIONS(1454), + [anon_sym_not_DASHhas2] = ACTIONS(1454), + [anon_sym_starts_DASHwith2] = ACTIONS(1454), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1454), + [anon_sym_ends_DASHwith2] = ACTIONS(1454), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1454), + [anon_sym_EQ_EQ2] = ACTIONS(1454), + [anon_sym_BANG_EQ2] = ACTIONS(1454), + [anon_sym_LT2] = ACTIONS(1454), + [anon_sym_LT_EQ2] = ACTIONS(1454), + [anon_sym_GT_EQ2] = ACTIONS(1454), + [anon_sym_EQ_TILDE2] = ACTIONS(1454), + [anon_sym_BANG_TILDE2] = ACTIONS(1454), + [anon_sym_like2] = ACTIONS(1454), + [anon_sym_not_DASHlike2] = ACTIONS(1454), + [anon_sym_STAR_STAR2] = ACTIONS(1454), + [anon_sym_PLUS_PLUS2] = ACTIONS(1454), + [anon_sym_SLASH2] = ACTIONS(1454), + [anon_sym_mod2] = ACTIONS(1454), + [anon_sym_SLASH_SLASH2] = ACTIONS(1454), + [anon_sym_PLUS2] = ACTIONS(1454), + [anon_sym_bit_DASHshl2] = ACTIONS(1454), + [anon_sym_bit_DASHshr2] = ACTIONS(1454), + [anon_sym_bit_DASHand2] = ACTIONS(1454), + [anon_sym_bit_DASHxor2] = ACTIONS(1454), + [anon_sym_bit_DASHor2] = ACTIONS(1454), + [anon_sym_DOT_DOT2] = ACTIONS(1454), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1456), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1456), + [sym__entry_separator] = ACTIONS(1456), + [anon_sym_COLON2] = ACTIONS(1454), + [anon_sym_DOT2] = ACTIONS(1466), + [anon_sym_err_GT] = ACTIONS(1454), + [anon_sym_out_GT] = ACTIONS(1454), + [anon_sym_e_GT] = ACTIONS(1454), + [anon_sym_o_GT] = ACTIONS(1454), + [anon_sym_err_PLUSout_GT] = ACTIONS(1454), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1454), + [anon_sym_o_PLUSe_GT] = ACTIONS(1454), + [anon_sym_e_PLUSo_GT] = ACTIONS(1454), + [anon_sym_err_GT_GT] = ACTIONS(1454), + [anon_sym_out_GT_GT] = ACTIONS(1454), + [anon_sym_e_GT_GT] = ACTIONS(1454), + [anon_sym_o_GT_GT] = ACTIONS(1454), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1454), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1454), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1454), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1454), [anon_sym_POUND] = ACTIONS(103), }, [STATE(338)] = { - [aux_sym__repeat_newline] = STATE(4207), - [sym_expr_parenthesized] = STATE(4132), - [sym__spread_parenthesized] = STATE(4915), - [sym_val_range] = STATE(4939), - [sym__val_range] = STATE(4693), - [sym__value] = STATE(4939), - [sym_val_nothing] = STATE(4538), - [sym_val_bool] = STATE(4320), - [sym__spread_variable] = STATE(4943), - [sym_val_variable] = STATE(3965), - [sym_val_cellpath] = STATE(4538), - [sym_val_number] = STATE(4538), - [sym__val_number_decimal] = STATE(3621), - [sym__val_number] = STATE(4386), - [sym_val_duration] = STATE(4538), - [sym_val_filesize] = STATE(4538), - [sym_val_binary] = STATE(4538), - [sym_val_string] = STATE(4538), - [sym__raw_str] = STATE(3665), - [sym__str_double_quotes] = STATE(3665), - [sym__str_single_quotes] = STATE(3665), - [sym__str_back_ticks] = STATE(3665), - [sym_val_interpolated] = STATE(4538), - [sym__inter_single_quotes] = STATE(4680), - [sym__inter_double_quotes] = STATE(4683), - [sym_val_list] = STATE(4771), - [sym__spread_list] = STATE(4915), - [sym_list_body] = STATE(5098), - [sym_val_entry] = STATE(4524), - [sym_val_record] = STATE(4538), - [sym__table_head] = STATE(3837), - [sym_val_table] = STATE(4538), - [sym_val_closure] = STATE(4538), - [sym__unquoted_in_list] = STATE(4401), - [sym__unquoted_in_list_with_expr] = STATE(4939), - [sym__unquoted_anonymous_prefix] = STATE(4693), [sym_comment] = STATE(338), - [aux_sym__types_body_repeat1] = STATE(465), - [aux_sym_parameter_repeat2] = STATE(4405), - [aux_sym_list_body_repeat1] = STATE(599), - [anon_sym_true] = ACTIONS(1468), - [anon_sym_false] = ACTIONS(1468), - [anon_sym_null] = ACTIONS(1470), - [aux_sym_cmd_identifier_token3] = ACTIONS(1472), - [aux_sym_cmd_identifier_token4] = ACTIONS(1472), - [aux_sym_cmd_identifier_token5] = ACTIONS(1472), - [sym__newline] = ACTIONS(1474), - [anon_sym_LBRACK] = ACTIONS(1476), - [anon_sym_RBRACK] = ACTIONS(1478), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1480), - [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1482), - [anon_sym_DOT_DOT] = ACTIONS(1484), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1486), - [anon_sym_DOT_DOT_LT] = ACTIONS(1486), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1488), - [aux_sym__val_number_decimal_token2] = ACTIONS(1490), - [aux_sym__val_number_decimal_token3] = ACTIONS(1492), - [aux_sym__val_number_decimal_token4] = ACTIONS(1492), - [aux_sym__val_number_token1] = ACTIONS(1414), - [aux_sym__val_number_token2] = ACTIONS(1414), - [aux_sym__val_number_token3] = ACTIONS(1414), - [anon_sym_0b] = ACTIONS(1416), - [anon_sym_0o] = ACTIONS(1418), - [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1494), - [anon_sym_DQUOTE] = ACTIONS(1422), - [anon_sym_SQUOTE] = ACTIONS(1424), - [anon_sym_BQUOTE] = ACTIONS(1426), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1428), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1430), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1432), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1436), + [anon_sym_EQ] = ACTIONS(1468), + [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_RBRACK] = ACTIONS(1468), + [anon_sym_GT2] = ACTIONS(1468), + [anon_sym_DASH2] = ACTIONS(1468), + [anon_sym_RBRACE] = ACTIONS(1468), + [anon_sym_DOT_DOT] = ACTIONS(1468), + [anon_sym_STAR2] = ACTIONS(1468), + [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(1468), + [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(1468), + [anon_sym_mod2] = ACTIONS(1468), + [anon_sym_SLASH_SLASH2] = ACTIONS(1468), + [anon_sym_PLUS2] = ACTIONS(1468), + [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(1468), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1470), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1470), + [sym__entry_separator] = ACTIONS(1470), + [anon_sym_COLON2] = ACTIONS(1468), + [anon_sym_DOT2] = ACTIONS(1468), + [anon_sym_err_GT] = ACTIONS(1468), + [anon_sym_out_GT] = ACTIONS(1468), + [anon_sym_e_GT] = ACTIONS(1468), + [anon_sym_o_GT] = ACTIONS(1468), + [anon_sym_err_PLUSout_GT] = ACTIONS(1468), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1468), + [anon_sym_o_PLUSe_GT] = ACTIONS(1468), + [anon_sym_e_PLUSo_GT] = ACTIONS(1468), + [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(103), }, [STATE(339)] = { + [aux_sym__repeat_newline] = STATE(4461), + [sym_expr_parenthesized] = STATE(4280), + [sym__spread_parenthesized] = STATE(4959), + [sym_val_range] = STATE(4961), + [sym__val_range] = STATE(4729), + [sym__value] = STATE(4961), + [sym_val_nothing] = STATE(4862), + [sym_val_bool] = STATE(4431), + [sym__spread_variable] = STATE(4968), + [sym_val_variable] = STATE(4050), + [sym_val_cellpath] = STATE(4862), + [sym_val_number] = STATE(4862), + [sym__val_number_decimal] = STATE(3653), + [sym__val_number] = STATE(4628), + [sym_val_duration] = STATE(4862), + [sym_val_filesize] = STATE(4862), + [sym_val_binary] = STATE(4862), + [sym_val_string] = STATE(4862), + [sym__raw_str] = STATE(3725), + [sym__str_double_quotes] = STATE(3725), + [sym__str_single_quotes] = STATE(3725), + [sym__str_back_ticks] = STATE(3725), + [sym_val_interpolated] = STATE(4862), + [sym__inter_single_quotes] = STATE(4846), + [sym__inter_double_quotes] = STATE(4847), + [sym_val_list] = STATE(4738), + [sym__spread_list] = STATE(4959), + [sym_list_body] = STATE(5213), + [sym_val_entry] = STATE(4745), + [sym_val_record] = STATE(4862), + [sym__table_head] = STATE(3951), + [sym_val_table] = STATE(4862), + [sym_val_closure] = STATE(4862), + [sym__unquoted_in_list] = STATE(4479), + [sym__unquoted_in_list_with_expr] = STATE(4961), + [sym__unquoted_anonymous_prefix] = STATE(4729), [sym_comment] = STATE(339), - [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_RBRACK] = ACTIONS(1496), - [anon_sym_GT2] = ACTIONS(1496), - [anon_sym_DASH2] = ACTIONS(1496), - [anon_sym_RBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = 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(1496), - [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(340)] = { - [aux_sym__repeat_newline] = STATE(4207), - [sym_expr_parenthesized] = STATE(4132), - [sym__spread_parenthesized] = STATE(4915), - [sym_val_range] = STATE(4939), - [sym__val_range] = STATE(4693), - [sym__value] = STATE(4939), - [sym_val_nothing] = STATE(4538), - [sym_val_bool] = STATE(4320), - [sym__spread_variable] = STATE(4943), - [sym_val_variable] = STATE(3965), - [sym_val_cellpath] = STATE(4538), - [sym_val_number] = STATE(4538), - [sym__val_number_decimal] = STATE(3621), - [sym__val_number] = STATE(4386), - [sym_val_duration] = STATE(4538), - [sym_val_filesize] = STATE(4538), - [sym_val_binary] = STATE(4538), - [sym_val_string] = STATE(4538), - [sym__raw_str] = STATE(3665), - [sym__str_double_quotes] = STATE(3665), - [sym__str_single_quotes] = STATE(3665), - [sym__str_back_ticks] = STATE(3665), - [sym_val_interpolated] = STATE(4538), - [sym__inter_single_quotes] = STATE(4680), - [sym__inter_double_quotes] = STATE(4683), - [sym_val_list] = STATE(4771), - [sym__spread_list] = STATE(4915), - [sym_list_body] = STATE(5323), - [sym_val_entry] = STATE(4524), - [sym_val_record] = STATE(4538), - [sym__table_head] = STATE(3849), - [sym_val_table] = STATE(4538), - [sym_val_closure] = STATE(4538), - [sym__unquoted_in_list] = STATE(4401), - [sym__unquoted_in_list_with_expr] = STATE(4939), - [sym__unquoted_anonymous_prefix] = STATE(4693), - [sym_comment] = STATE(340), - [aux_sym__types_body_repeat1] = STATE(465), - [aux_sym_parameter_repeat2] = STATE(4405), - [aux_sym_list_body_repeat1] = STATE(599), - [anon_sym_true] = ACTIONS(1468), - [anon_sym_false] = ACTIONS(1468), - [anon_sym_null] = ACTIONS(1470), - [aux_sym_cmd_identifier_token3] = ACTIONS(1472), - [aux_sym_cmd_identifier_token4] = ACTIONS(1472), - [aux_sym_cmd_identifier_token5] = ACTIONS(1472), - [sym__newline] = ACTIONS(1474), - [anon_sym_LBRACK] = ACTIONS(1476), - [anon_sym_RBRACK] = ACTIONS(1500), + [aux_sym__types_body_repeat1] = STATE(482), + [aux_sym_parameter_repeat2] = STATE(4481), + [aux_sym_list_body_repeat1] = STATE(558), + [anon_sym_true] = ACTIONS(1472), + [anon_sym_false] = ACTIONS(1472), + [anon_sym_null] = ACTIONS(1474), + [aux_sym_cmd_identifier_token3] = ACTIONS(1476), + [aux_sym_cmd_identifier_token4] = ACTIONS(1476), + [aux_sym_cmd_identifier_token5] = ACTIONS(1476), + [sym__newline] = ACTIONS(1478), + [anon_sym_LBRACK] = ACTIONS(1480), + [anon_sym_RBRACK] = ACTIONS(1482), [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1480), + [anon_sym_COMMA] = ACTIONS(1484), [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1482), - [anon_sym_DOT_DOT] = ACTIONS(1484), + [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_DOT_DOT] = ACTIONS(1488), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1486), - [anon_sym_DOT_DOT_LT] = ACTIONS(1486), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1490), + [anon_sym_DOT_DOT_LT] = ACTIONS(1490), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1488), - [aux_sym__val_number_decimal_token2] = ACTIONS(1490), - [aux_sym__val_number_decimal_token3] = ACTIONS(1492), - [aux_sym__val_number_decimal_token4] = ACTIONS(1492), + [aux_sym__val_number_decimal_token1] = ACTIONS(1492), + [aux_sym__val_number_decimal_token2] = ACTIONS(1494), + [aux_sym__val_number_decimal_token3] = ACTIONS(1496), + [aux_sym__val_number_decimal_token4] = ACTIONS(1496), [aux_sym__val_number_token1] = ACTIONS(1414), [aux_sym__val_number_token2] = ACTIONS(1414), [aux_sym__val_number_token3] = ACTIONS(1414), [anon_sym_0b] = ACTIONS(1416), [anon_sym_0o] = ACTIONS(1418), [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1494), + [sym_val_date] = ACTIONS(1498), [anon_sym_DQUOTE] = ACTIONS(1422), [anon_sym_SQUOTE] = ACTIONS(1424), [anon_sym_BQUOTE] = ACTIONS(1426), @@ -74651,148 +75410,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1436), }, + [STATE(340)] = { + [sym_comment] = STATE(340), + [anon_sym_EQ] = ACTIONS(1500), + [anon_sym_PLUS_EQ] = ACTIONS(1500), + [anon_sym_DASH_EQ] = ACTIONS(1500), + [anon_sym_STAR_EQ] = ACTIONS(1500), + [anon_sym_SLASH_EQ] = ACTIONS(1500), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1500), + [anon_sym_in] = ACTIONS(1500), + [sym__newline] = ACTIONS(1500), + [anon_sym_SEMI] = ACTIONS(1500), + [anon_sym_PIPE] = ACTIONS(1500), + [anon_sym_err_GT_PIPE] = ACTIONS(1500), + [anon_sym_out_GT_PIPE] = ACTIONS(1500), + [anon_sym_e_GT_PIPE] = ACTIONS(1500), + [anon_sym_o_GT_PIPE] = ACTIONS(1500), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1500), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1500), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1500), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1500), + [anon_sym_GT2] = ACTIONS(1500), + [anon_sym_DASH2] = ACTIONS(1500), + [anon_sym_RBRACE] = ACTIONS(1500), + [anon_sym_STAR2] = ACTIONS(1500), + [anon_sym_and2] = ACTIONS(1500), + [anon_sym_xor2] = ACTIONS(1500), + [anon_sym_or2] = ACTIONS(1500), + [anon_sym_not_DASHin2] = ACTIONS(1500), + [anon_sym_has2] = ACTIONS(1500), + [anon_sym_not_DASHhas2] = ACTIONS(1500), + [anon_sym_starts_DASHwith2] = ACTIONS(1500), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1500), + [anon_sym_ends_DASHwith2] = ACTIONS(1500), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1500), + [anon_sym_EQ_EQ2] = ACTIONS(1500), + [anon_sym_BANG_EQ2] = ACTIONS(1500), + [anon_sym_LT2] = ACTIONS(1500), + [anon_sym_LT_EQ2] = ACTIONS(1500), + [anon_sym_GT_EQ2] = ACTIONS(1500), + [anon_sym_EQ_TILDE2] = ACTIONS(1500), + [anon_sym_BANG_TILDE2] = ACTIONS(1500), + [anon_sym_like2] = ACTIONS(1500), + [anon_sym_not_DASHlike2] = ACTIONS(1500), + [anon_sym_STAR_STAR2] = ACTIONS(1500), + [anon_sym_PLUS_PLUS2] = ACTIONS(1500), + [anon_sym_SLASH2] = ACTIONS(1500), + [anon_sym_mod2] = ACTIONS(1500), + [anon_sym_SLASH_SLASH2] = ACTIONS(1500), + [anon_sym_PLUS2] = ACTIONS(1500), + [anon_sym_bit_DASHshl2] = ACTIONS(1500), + [anon_sym_bit_DASHshr2] = ACTIONS(1500), + [anon_sym_bit_DASHand2] = ACTIONS(1500), + [anon_sym_bit_DASHxor2] = ACTIONS(1500), + [anon_sym_bit_DASHor2] = ACTIONS(1500), + [anon_sym_DOT_DOT2] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1502), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1502), + [sym__entry_separator] = ACTIONS(1502), + [anon_sym_COLON2] = ACTIONS(1500), + [anon_sym_QMARK2] = ACTIONS(1500), + [anon_sym_BANG] = ACTIONS(1500), + [anon_sym_DOT2] = ACTIONS(1500), + [anon_sym_err_GT] = ACTIONS(1500), + [anon_sym_out_GT] = ACTIONS(1500), + [anon_sym_e_GT] = ACTIONS(1500), + [anon_sym_o_GT] = ACTIONS(1500), + [anon_sym_err_PLUSout_GT] = ACTIONS(1500), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1500), + [anon_sym_o_PLUSe_GT] = ACTIONS(1500), + [anon_sym_e_PLUSo_GT] = ACTIONS(1500), + [anon_sym_err_GT_GT] = ACTIONS(1500), + [anon_sym_out_GT_GT] = ACTIONS(1500), + [anon_sym_e_GT_GT] = ACTIONS(1500), + [anon_sym_o_GT_GT] = ACTIONS(1500), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1500), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1500), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1500), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1500), + [anon_sym_POUND] = ACTIONS(103), + }, [STATE(341)] = { - [aux_sym__repeat_newline] = STATE(4207), - [sym_expr_parenthesized] = STATE(4132), - [sym__spread_parenthesized] = STATE(4915), - [sym_val_range] = STATE(4939), - [sym__val_range] = STATE(4693), - [sym__value] = STATE(4939), - [sym_val_nothing] = STATE(4538), - [sym_val_bool] = STATE(4320), - [sym__spread_variable] = STATE(4943), - [sym_val_variable] = STATE(3965), - [sym_val_cellpath] = STATE(4538), - [sym_val_number] = STATE(4538), - [sym__val_number_decimal] = STATE(3621), - [sym__val_number] = STATE(4386), - [sym_val_duration] = STATE(4538), - [sym_val_filesize] = STATE(4538), - [sym_val_binary] = STATE(4538), - [sym_val_string] = STATE(4538), - [sym__raw_str] = STATE(3665), - [sym__str_double_quotes] = STATE(3665), - [sym__str_single_quotes] = STATE(3665), - [sym__str_back_ticks] = STATE(3665), - [sym_val_interpolated] = STATE(4538), - [sym__inter_single_quotes] = STATE(4680), - [sym__inter_double_quotes] = STATE(4683), - [sym_val_list] = STATE(4771), - [sym__spread_list] = STATE(4915), - [sym_list_body] = STATE(5191), - [sym_val_entry] = STATE(4524), - [sym_val_record] = STATE(4538), - [sym__table_head] = STATE(3824), - [sym_val_table] = STATE(4538), - [sym_val_closure] = STATE(4538), - [sym__unquoted_in_list] = STATE(4401), - [sym__unquoted_in_list_with_expr] = STATE(4939), - [sym__unquoted_anonymous_prefix] = STATE(4693), [sym_comment] = STATE(341), - [aux_sym__types_body_repeat1] = STATE(465), - [aux_sym_parameter_repeat2] = STATE(4405), - [aux_sym_list_body_repeat1] = STATE(599), - [anon_sym_true] = ACTIONS(1468), - [anon_sym_false] = ACTIONS(1468), - [anon_sym_null] = ACTIONS(1470), - [aux_sym_cmd_identifier_token3] = ACTIONS(1472), - [aux_sym_cmd_identifier_token4] = ACTIONS(1472), - [aux_sym_cmd_identifier_token5] = ACTIONS(1472), - [sym__newline] = ACTIONS(1474), - [anon_sym_LBRACK] = ACTIONS(1476), - [anon_sym_RBRACK] = ACTIONS(1502), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1480), - [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1482), - [anon_sym_DOT_DOT] = ACTIONS(1484), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1486), - [anon_sym_DOT_DOT_LT] = ACTIONS(1486), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1488), - [aux_sym__val_number_decimal_token2] = ACTIONS(1490), - [aux_sym__val_number_decimal_token3] = ACTIONS(1492), - [aux_sym__val_number_decimal_token4] = ACTIONS(1492), - [aux_sym__val_number_token1] = ACTIONS(1414), - [aux_sym__val_number_token2] = ACTIONS(1414), - [aux_sym__val_number_token3] = ACTIONS(1414), - [anon_sym_0b] = ACTIONS(1416), - [anon_sym_0o] = ACTIONS(1418), - [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1494), - [anon_sym_DQUOTE] = ACTIONS(1422), - [anon_sym_SQUOTE] = ACTIONS(1424), - [anon_sym_BQUOTE] = ACTIONS(1426), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1428), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1430), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1432), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1436), - }, - [STATE(342)] = { - [sym_path] = STATE(395), - [sym_comment] = STATE(342), - [aux_sym__where_predicate_lhs_repeat1] = STATE(343), [anon_sym_EQ] = ACTIONS(1504), - [anon_sym_PLUS_EQ] = ACTIONS(1506), - [anon_sym_DASH_EQ] = ACTIONS(1506), - [anon_sym_STAR_EQ] = ACTIONS(1506), - [anon_sym_SLASH_EQ] = ACTIONS(1506), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1506), - [anon_sym_in] = ACTIONS(1506), - [sym__newline] = ACTIONS(1506), - [anon_sym_SEMI] = ACTIONS(1506), - [anon_sym_PIPE] = ACTIONS(1506), - [anon_sym_err_GT_PIPE] = ACTIONS(1506), - [anon_sym_out_GT_PIPE] = ACTIONS(1506), - [anon_sym_e_GT_PIPE] = ACTIONS(1506), - [anon_sym_o_GT_PIPE] = ACTIONS(1506), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1506), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1506), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1506), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1506), - [anon_sym_RPAREN] = ACTIONS(1506), + [anon_sym_PLUS_EQ] = ACTIONS(1504), + [anon_sym_DASH_EQ] = ACTIONS(1504), + [anon_sym_STAR_EQ] = ACTIONS(1504), + [anon_sym_SLASH_EQ] = ACTIONS(1504), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1504), + [anon_sym_in] = ACTIONS(1504), + [sym__newline] = ACTIONS(1504), + [anon_sym_SEMI] = ACTIONS(1504), + [anon_sym_PIPE] = ACTIONS(1504), + [anon_sym_err_GT_PIPE] = ACTIONS(1504), + [anon_sym_out_GT_PIPE] = ACTIONS(1504), + [anon_sym_e_GT_PIPE] = ACTIONS(1504), + [anon_sym_o_GT_PIPE] = ACTIONS(1504), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1504), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1504), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1504), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1504), [anon_sym_GT2] = ACTIONS(1504), [anon_sym_DASH2] = ACTIONS(1504), - [anon_sym_RBRACE] = ACTIONS(1506), + [anon_sym_RBRACE] = ACTIONS(1504), [anon_sym_STAR2] = ACTIONS(1504), - [anon_sym_and2] = ACTIONS(1506), - [anon_sym_xor2] = ACTIONS(1506), - [anon_sym_or2] = ACTIONS(1506), - [anon_sym_not_DASHin2] = ACTIONS(1506), - [anon_sym_has2] = ACTIONS(1506), - [anon_sym_not_DASHhas2] = ACTIONS(1506), - [anon_sym_starts_DASHwith2] = ACTIONS(1506), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1506), - [anon_sym_ends_DASHwith2] = ACTIONS(1506), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1506), - [anon_sym_EQ_EQ2] = ACTIONS(1506), - [anon_sym_BANG_EQ2] = ACTIONS(1506), + [anon_sym_and2] = ACTIONS(1504), + [anon_sym_xor2] = ACTIONS(1504), + [anon_sym_or2] = ACTIONS(1504), + [anon_sym_not_DASHin2] = ACTIONS(1504), + [anon_sym_has2] = ACTIONS(1504), + [anon_sym_not_DASHhas2] = ACTIONS(1504), + [anon_sym_starts_DASHwith2] = ACTIONS(1504), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1504), + [anon_sym_ends_DASHwith2] = ACTIONS(1504), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1504), + [anon_sym_EQ_EQ2] = ACTIONS(1504), + [anon_sym_BANG_EQ2] = ACTIONS(1504), [anon_sym_LT2] = ACTIONS(1504), - [anon_sym_LT_EQ2] = ACTIONS(1506), - [anon_sym_GT_EQ2] = ACTIONS(1506), - [anon_sym_EQ_TILDE2] = ACTIONS(1506), - [anon_sym_BANG_TILDE2] = ACTIONS(1506), - [anon_sym_like2] = ACTIONS(1506), - [anon_sym_not_DASHlike2] = ACTIONS(1506), - [anon_sym_STAR_STAR2] = ACTIONS(1506), + [anon_sym_LT_EQ2] = ACTIONS(1504), + [anon_sym_GT_EQ2] = ACTIONS(1504), + [anon_sym_EQ_TILDE2] = ACTIONS(1504), + [anon_sym_BANG_TILDE2] = ACTIONS(1504), + [anon_sym_like2] = ACTIONS(1504), + [anon_sym_not_DASHlike2] = ACTIONS(1504), + [anon_sym_STAR_STAR2] = ACTIONS(1504), [anon_sym_PLUS_PLUS2] = ACTIONS(1504), [anon_sym_SLASH2] = ACTIONS(1504), - [anon_sym_mod2] = ACTIONS(1506), - [anon_sym_SLASH_SLASH2] = ACTIONS(1506), + [anon_sym_mod2] = ACTIONS(1504), + [anon_sym_SLASH_SLASH2] = ACTIONS(1504), [anon_sym_PLUS2] = ACTIONS(1504), - [anon_sym_bit_DASHshl2] = ACTIONS(1506), - [anon_sym_bit_DASHshr2] = ACTIONS(1506), - [anon_sym_bit_DASHand2] = ACTIONS(1506), - [anon_sym_bit_DASHxor2] = ACTIONS(1506), - [anon_sym_bit_DASHor2] = ACTIONS(1506), + [anon_sym_bit_DASHshl2] = ACTIONS(1504), + [anon_sym_bit_DASHshr2] = ACTIONS(1504), + [anon_sym_bit_DASHand2] = ACTIONS(1504), + [anon_sym_bit_DASHxor2] = ACTIONS(1504), + [anon_sym_bit_DASHor2] = ACTIONS(1504), [anon_sym_DOT_DOT2] = ACTIONS(1504), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1506), [anon_sym_DOT_DOT_LT2] = ACTIONS(1506), - [anon_sym_COLON2] = ACTIONS(1506), - [anon_sym_DOT2] = ACTIONS(1454), + [sym__entry_separator] = ACTIONS(1506), + [anon_sym_COLON2] = ACTIONS(1504), + [anon_sym_QMARK2] = ACTIONS(1504), + [anon_sym_BANG] = ACTIONS(1504), + [anon_sym_DOT2] = ACTIONS(1504), [anon_sym_err_GT] = ACTIONS(1504), [anon_sym_out_GT] = ACTIONS(1504), [anon_sym_e_GT] = ACTIONS(1504), @@ -74801,78 +75560,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT] = ACTIONS(1504), [anon_sym_o_PLUSe_GT] = ACTIONS(1504), [anon_sym_e_PLUSo_GT] = ACTIONS(1504), - [anon_sym_err_GT_GT] = ACTIONS(1506), - [anon_sym_out_GT_GT] = ACTIONS(1506), - [anon_sym_e_GT_GT] = ACTIONS(1506), - [anon_sym_o_GT_GT] = ACTIONS(1506), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1506), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1506), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1506), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1506), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_err_GT_GT] = ACTIONS(1504), + [anon_sym_out_GT_GT] = ACTIONS(1504), + [anon_sym_e_GT_GT] = ACTIONS(1504), + [anon_sym_o_GT_GT] = ACTIONS(1504), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1504), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1504), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1504), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1504), + [anon_sym_POUND] = ACTIONS(103), }, - [STATE(343)] = { - [sym_path] = STATE(395), - [sym_comment] = STATE(343), - [aux_sym__where_predicate_lhs_repeat1] = STATE(343), + [STATE(342)] = { + [sym_comment] = STATE(342), [anon_sym_EQ] = ACTIONS(1508), - [anon_sym_PLUS_EQ] = ACTIONS(1510), - [anon_sym_DASH_EQ] = ACTIONS(1510), - [anon_sym_STAR_EQ] = ACTIONS(1510), - [anon_sym_SLASH_EQ] = ACTIONS(1510), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1510), - [anon_sym_in] = ACTIONS(1510), - [sym__newline] = ACTIONS(1510), - [anon_sym_SEMI] = ACTIONS(1510), - [anon_sym_PIPE] = ACTIONS(1510), - [anon_sym_err_GT_PIPE] = ACTIONS(1510), - [anon_sym_out_GT_PIPE] = ACTIONS(1510), - [anon_sym_e_GT_PIPE] = ACTIONS(1510), - [anon_sym_o_GT_PIPE] = ACTIONS(1510), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1510), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1510), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1510), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1510), - [anon_sym_RPAREN] = ACTIONS(1510), + [anon_sym_PLUS_EQ] = ACTIONS(1508), + [anon_sym_DASH_EQ] = ACTIONS(1508), + [anon_sym_STAR_EQ] = ACTIONS(1508), + [anon_sym_SLASH_EQ] = ACTIONS(1508), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1508), + [anon_sym_in] = ACTIONS(1508), + [sym__newline] = ACTIONS(1508), + [anon_sym_SEMI] = ACTIONS(1508), + [anon_sym_PIPE] = ACTIONS(1508), + [anon_sym_err_GT_PIPE] = ACTIONS(1508), + [anon_sym_out_GT_PIPE] = ACTIONS(1508), + [anon_sym_e_GT_PIPE] = ACTIONS(1508), + [anon_sym_o_GT_PIPE] = ACTIONS(1508), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1508), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1508), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1508), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1508), [anon_sym_GT2] = ACTIONS(1508), [anon_sym_DASH2] = ACTIONS(1508), - [anon_sym_RBRACE] = ACTIONS(1510), + [anon_sym_RBRACE] = ACTIONS(1508), [anon_sym_STAR2] = ACTIONS(1508), - [anon_sym_and2] = ACTIONS(1510), - [anon_sym_xor2] = ACTIONS(1510), - [anon_sym_or2] = ACTIONS(1510), - [anon_sym_not_DASHin2] = ACTIONS(1510), - [anon_sym_has2] = ACTIONS(1510), - [anon_sym_not_DASHhas2] = ACTIONS(1510), - [anon_sym_starts_DASHwith2] = ACTIONS(1510), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1510), - [anon_sym_ends_DASHwith2] = ACTIONS(1510), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1510), - [anon_sym_EQ_EQ2] = ACTIONS(1510), - [anon_sym_BANG_EQ2] = ACTIONS(1510), + [anon_sym_and2] = ACTIONS(1508), + [anon_sym_xor2] = ACTIONS(1508), + [anon_sym_or2] = ACTIONS(1508), + [anon_sym_not_DASHin2] = ACTIONS(1508), + [anon_sym_has2] = ACTIONS(1508), + [anon_sym_not_DASHhas2] = ACTIONS(1508), + [anon_sym_starts_DASHwith2] = ACTIONS(1508), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1508), + [anon_sym_ends_DASHwith2] = ACTIONS(1508), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1508), + [anon_sym_EQ_EQ2] = ACTIONS(1508), + [anon_sym_BANG_EQ2] = ACTIONS(1508), [anon_sym_LT2] = ACTIONS(1508), - [anon_sym_LT_EQ2] = ACTIONS(1510), - [anon_sym_GT_EQ2] = ACTIONS(1510), - [anon_sym_EQ_TILDE2] = ACTIONS(1510), - [anon_sym_BANG_TILDE2] = ACTIONS(1510), - [anon_sym_like2] = ACTIONS(1510), - [anon_sym_not_DASHlike2] = ACTIONS(1510), - [anon_sym_STAR_STAR2] = ACTIONS(1510), + [anon_sym_LT_EQ2] = ACTIONS(1508), + [anon_sym_GT_EQ2] = ACTIONS(1508), + [anon_sym_EQ_TILDE2] = ACTIONS(1508), + [anon_sym_BANG_TILDE2] = ACTIONS(1508), + [anon_sym_like2] = ACTIONS(1508), + [anon_sym_not_DASHlike2] = ACTIONS(1508), + [anon_sym_STAR_STAR2] = ACTIONS(1508), [anon_sym_PLUS_PLUS2] = ACTIONS(1508), [anon_sym_SLASH2] = ACTIONS(1508), - [anon_sym_mod2] = ACTIONS(1510), - [anon_sym_SLASH_SLASH2] = ACTIONS(1510), + [anon_sym_mod2] = ACTIONS(1508), + [anon_sym_SLASH_SLASH2] = ACTIONS(1508), [anon_sym_PLUS2] = ACTIONS(1508), - [anon_sym_bit_DASHshl2] = ACTIONS(1510), - [anon_sym_bit_DASHshr2] = ACTIONS(1510), - [anon_sym_bit_DASHand2] = ACTIONS(1510), - [anon_sym_bit_DASHxor2] = ACTIONS(1510), - [anon_sym_bit_DASHor2] = ACTIONS(1510), + [anon_sym_bit_DASHshl2] = ACTIONS(1508), + [anon_sym_bit_DASHshr2] = ACTIONS(1508), + [anon_sym_bit_DASHand2] = ACTIONS(1508), + [anon_sym_bit_DASHxor2] = ACTIONS(1508), + [anon_sym_bit_DASHor2] = ACTIONS(1508), [anon_sym_DOT_DOT2] = ACTIONS(1508), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1510), [anon_sym_DOT_DOT_LT2] = ACTIONS(1510), - [anon_sym_COLON2] = ACTIONS(1510), - [anon_sym_DOT2] = ACTIONS(1512), + [sym__entry_separator] = ACTIONS(1510), + [anon_sym_COLON2] = ACTIONS(1508), + [anon_sym_QMARK2] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1508), + [anon_sym_DOT2] = ACTIONS(1508), [anon_sym_err_GT] = ACTIONS(1508), [anon_sym_out_GT] = ACTIONS(1508), [anon_sym_e_GT] = ACTIONS(1508), @@ -74881,86 +75640,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT] = ACTIONS(1508), [anon_sym_o_PLUSe_GT] = ACTIONS(1508), [anon_sym_e_PLUSo_GT] = ACTIONS(1508), - [anon_sym_err_GT_GT] = ACTIONS(1510), - [anon_sym_out_GT_GT] = ACTIONS(1510), - [anon_sym_e_GT_GT] = ACTIONS(1510), - [anon_sym_o_GT_GT] = ACTIONS(1510), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1510), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1510), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1510), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1510), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_err_GT_GT] = ACTIONS(1508), + [anon_sym_out_GT_GT] = ACTIONS(1508), + [anon_sym_e_GT_GT] = ACTIONS(1508), + [anon_sym_o_GT_GT] = ACTIONS(1508), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1508), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1508), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1508), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1508), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(343)] = { + [sym_comment] = STATE(343), + [anon_sym_EQ] = ACTIONS(1512), + [anon_sym_PLUS_EQ] = ACTIONS(1512), + [anon_sym_DASH_EQ] = ACTIONS(1512), + [anon_sym_STAR_EQ] = ACTIONS(1512), + [anon_sym_SLASH_EQ] = ACTIONS(1512), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1512), + [anon_sym_in] = ACTIONS(1512), + [sym__newline] = ACTIONS(1512), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1512), + [anon_sym_err_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_GT_PIPE] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1512), + [anon_sym_GT2] = ACTIONS(1512), + [anon_sym_DASH2] = ACTIONS(1512), + [anon_sym_RBRACE] = ACTIONS(1512), + [anon_sym_STAR2] = ACTIONS(1512), + [anon_sym_and2] = ACTIONS(1512), + [anon_sym_xor2] = ACTIONS(1512), + [anon_sym_or2] = ACTIONS(1512), + [anon_sym_not_DASHin2] = ACTIONS(1512), + [anon_sym_has2] = ACTIONS(1512), + [anon_sym_not_DASHhas2] = ACTIONS(1512), + [anon_sym_starts_DASHwith2] = ACTIONS(1512), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1512), + [anon_sym_ends_DASHwith2] = ACTIONS(1512), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1512), + [anon_sym_EQ_EQ2] = ACTIONS(1512), + [anon_sym_BANG_EQ2] = ACTIONS(1512), + [anon_sym_LT2] = ACTIONS(1512), + [anon_sym_LT_EQ2] = ACTIONS(1512), + [anon_sym_GT_EQ2] = ACTIONS(1512), + [anon_sym_EQ_TILDE2] = ACTIONS(1512), + [anon_sym_BANG_TILDE2] = ACTIONS(1512), + [anon_sym_like2] = ACTIONS(1512), + [anon_sym_not_DASHlike2] = ACTIONS(1512), + [anon_sym_STAR_STAR2] = ACTIONS(1512), + [anon_sym_PLUS_PLUS2] = ACTIONS(1512), + [anon_sym_SLASH2] = ACTIONS(1512), + [anon_sym_mod2] = ACTIONS(1512), + [anon_sym_SLASH_SLASH2] = ACTIONS(1512), + [anon_sym_PLUS2] = ACTIONS(1512), + [anon_sym_bit_DASHshl2] = ACTIONS(1512), + [anon_sym_bit_DASHshr2] = ACTIONS(1512), + [anon_sym_bit_DASHand2] = ACTIONS(1512), + [anon_sym_bit_DASHxor2] = ACTIONS(1512), + [anon_sym_bit_DASHor2] = ACTIONS(1512), + [anon_sym_DOT_DOT2] = ACTIONS(1512), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1514), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1514), + [sym__entry_separator] = ACTIONS(1514), + [anon_sym_COLON2] = ACTIONS(1512), + [anon_sym_QMARK2] = ACTIONS(1512), + [anon_sym_BANG] = ACTIONS(1512), + [anon_sym_DOT2] = ACTIONS(1512), + [anon_sym_err_GT] = ACTIONS(1512), + [anon_sym_out_GT] = ACTIONS(1512), + [anon_sym_e_GT] = ACTIONS(1512), + [anon_sym_o_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT] = ACTIONS(1512), + [anon_sym_err_GT_GT] = ACTIONS(1512), + [anon_sym_out_GT_GT] = ACTIONS(1512), + [anon_sym_e_GT_GT] = ACTIONS(1512), + [anon_sym_o_GT_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1512), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(344)] = { - [aux_sym__repeat_newline] = STATE(4207), - [sym_expr_parenthesized] = STATE(4132), - [sym__spread_parenthesized] = STATE(4915), - [sym_val_range] = STATE(4939), - [sym__val_range] = STATE(4693), - [sym__value] = STATE(4939), - [sym_val_nothing] = STATE(4538), - [sym_val_bool] = STATE(4320), - [sym__spread_variable] = STATE(4943), - [sym_val_variable] = STATE(3965), - [sym_val_cellpath] = STATE(4538), - [sym_val_number] = STATE(4538), - [sym__val_number_decimal] = STATE(3621), - [sym__val_number] = STATE(4386), - [sym_val_duration] = STATE(4538), - [sym_val_filesize] = STATE(4538), - [sym_val_binary] = STATE(4538), - [sym_val_string] = STATE(4538), - [sym__raw_str] = STATE(3665), - [sym__str_double_quotes] = STATE(3665), - [sym__str_single_quotes] = STATE(3665), - [sym__str_back_ticks] = STATE(3665), - [sym_val_interpolated] = STATE(4538), - [sym__inter_single_quotes] = STATE(4680), - [sym__inter_double_quotes] = STATE(4683), - [sym_val_list] = STATE(4771), - [sym__spread_list] = STATE(4915), - [sym_list_body] = STATE(5234), - [sym_val_entry] = STATE(4524), - [sym_val_record] = STATE(4538), - [sym__table_head] = STATE(3824), - [sym_val_table] = STATE(4538), - [sym_val_closure] = STATE(4538), - [sym__unquoted_in_list] = STATE(4401), - [sym__unquoted_in_list_with_expr] = STATE(4939), - [sym__unquoted_anonymous_prefix] = STATE(4693), + [aux_sym__repeat_newline] = STATE(4461), + [sym_expr_parenthesized] = STATE(4280), + [sym__spread_parenthesized] = STATE(4959), + [sym_val_range] = STATE(4961), + [sym__val_range] = STATE(4729), + [sym__value] = STATE(4961), + [sym_val_nothing] = STATE(4862), + [sym_val_bool] = STATE(4431), + [sym__spread_variable] = STATE(4968), + [sym_val_variable] = STATE(4050), + [sym_val_cellpath] = STATE(4862), + [sym_val_number] = STATE(4862), + [sym__val_number_decimal] = STATE(3653), + [sym__val_number] = STATE(4628), + [sym_val_duration] = STATE(4862), + [sym_val_filesize] = STATE(4862), + [sym_val_binary] = STATE(4862), + [sym_val_string] = STATE(4862), + [sym__raw_str] = STATE(3725), + [sym__str_double_quotes] = STATE(3725), + [sym__str_single_quotes] = STATE(3725), + [sym__str_back_ticks] = STATE(3725), + [sym_val_interpolated] = STATE(4862), + [sym__inter_single_quotes] = STATE(4846), + [sym__inter_double_quotes] = STATE(4847), + [sym_val_list] = STATE(4738), + [sym__spread_list] = STATE(4959), + [sym_list_body] = STATE(5142), + [sym_val_entry] = STATE(4745), + [sym_val_record] = STATE(4862), + [sym__table_head] = STATE(3894), + [sym_val_table] = STATE(4862), + [sym_val_closure] = STATE(4862), + [sym__unquoted_in_list] = STATE(4479), + [sym__unquoted_in_list_with_expr] = STATE(4961), + [sym__unquoted_anonymous_prefix] = STATE(4729), [sym_comment] = STATE(344), - [aux_sym__types_body_repeat1] = STATE(465), - [aux_sym_parameter_repeat2] = STATE(4405), - [aux_sym_list_body_repeat1] = STATE(599), - [anon_sym_true] = ACTIONS(1468), - [anon_sym_false] = ACTIONS(1468), - [anon_sym_null] = ACTIONS(1470), - [aux_sym_cmd_identifier_token3] = ACTIONS(1472), - [aux_sym_cmd_identifier_token4] = ACTIONS(1472), - [aux_sym_cmd_identifier_token5] = ACTIONS(1472), - [sym__newline] = ACTIONS(1474), - [anon_sym_LBRACK] = ACTIONS(1476), - [anon_sym_RBRACK] = ACTIONS(1515), + [aux_sym__types_body_repeat1] = STATE(482), + [aux_sym_parameter_repeat2] = STATE(4481), + [aux_sym_list_body_repeat1] = STATE(558), + [anon_sym_true] = ACTIONS(1472), + [anon_sym_false] = ACTIONS(1472), + [anon_sym_null] = ACTIONS(1474), + [aux_sym_cmd_identifier_token3] = ACTIONS(1476), + [aux_sym_cmd_identifier_token4] = ACTIONS(1476), + [aux_sym_cmd_identifier_token5] = ACTIONS(1476), + [sym__newline] = ACTIONS(1478), + [anon_sym_LBRACK] = ACTIONS(1480), + [anon_sym_RBRACK] = ACTIONS(1516), [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1480), + [anon_sym_COMMA] = ACTIONS(1484), [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1482), - [anon_sym_DOT_DOT] = ACTIONS(1484), + [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_DOT_DOT] = ACTIONS(1488), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1486), - [anon_sym_DOT_DOT_LT] = ACTIONS(1486), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1490), + [anon_sym_DOT_DOT_LT] = ACTIONS(1490), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1488), - [aux_sym__val_number_decimal_token2] = ACTIONS(1490), - [aux_sym__val_number_decimal_token3] = ACTIONS(1492), - [aux_sym__val_number_decimal_token4] = ACTIONS(1492), + [aux_sym__val_number_decimal_token1] = ACTIONS(1492), + [aux_sym__val_number_decimal_token2] = ACTIONS(1494), + [aux_sym__val_number_decimal_token3] = ACTIONS(1496), + [aux_sym__val_number_decimal_token4] = ACTIONS(1496), [aux_sym__val_number_token1] = ACTIONS(1414), [aux_sym__val_number_token2] = ACTIONS(1414), [aux_sym__val_number_token3] = ACTIONS(1414), [anon_sym_0b] = ACTIONS(1416), [anon_sym_0o] = ACTIONS(1418), [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1494), + [sym_val_date] = ACTIONS(1498), [anon_sym_DQUOTE] = ACTIONS(1422), [anon_sym_SQUOTE] = ACTIONS(1424), [anon_sym_BQUOTE] = ACTIONS(1426), @@ -74972,75 +75811,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(1436), }, [STATE(345)] = { - [aux_sym__repeat_newline] = STATE(4207), - [sym_expr_parenthesized] = STATE(4132), - [sym__spread_parenthesized] = STATE(4915), - [sym_val_range] = STATE(4939), - [sym__val_range] = STATE(4693), - [sym__value] = STATE(4939), - [sym_val_nothing] = STATE(4538), - [sym_val_bool] = STATE(4320), - [sym__spread_variable] = STATE(4943), - [sym_val_variable] = STATE(3965), - [sym_val_cellpath] = STATE(4538), - [sym_val_number] = STATE(4538), - [sym__val_number_decimal] = STATE(3621), - [sym__val_number] = STATE(4386), - [sym_val_duration] = STATE(4538), - [sym_val_filesize] = STATE(4538), - [sym_val_binary] = STATE(4538), - [sym_val_string] = STATE(4538), - [sym__raw_str] = STATE(3665), - [sym__str_double_quotes] = STATE(3665), - [sym__str_single_quotes] = STATE(3665), - [sym__str_back_ticks] = STATE(3665), - [sym_val_interpolated] = STATE(4538), - [sym__inter_single_quotes] = STATE(4680), - [sym__inter_double_quotes] = STATE(4683), - [sym_val_list] = STATE(4771), - [sym__spread_list] = STATE(4915), - [sym_list_body] = STATE(5352), - [sym_val_entry] = STATE(4524), - [sym_val_record] = STATE(4538), - [sym__table_head] = STATE(3799), - [sym_val_table] = STATE(4538), - [sym_val_closure] = STATE(4538), - [sym__unquoted_in_list] = STATE(4401), - [sym__unquoted_in_list_with_expr] = STATE(4939), - [sym__unquoted_anonymous_prefix] = STATE(4693), + [aux_sym__repeat_newline] = STATE(4461), + [sym_expr_parenthesized] = STATE(4280), + [sym__spread_parenthesized] = STATE(4959), + [sym_val_range] = STATE(4961), + [sym__val_range] = STATE(4729), + [sym__value] = STATE(4961), + [sym_val_nothing] = STATE(4862), + [sym_val_bool] = STATE(4431), + [sym__spread_variable] = STATE(4968), + [sym_val_variable] = STATE(4050), + [sym_val_cellpath] = STATE(4862), + [sym_val_number] = STATE(4862), + [sym__val_number_decimal] = STATE(3653), + [sym__val_number] = STATE(4628), + [sym_val_duration] = STATE(4862), + [sym_val_filesize] = STATE(4862), + [sym_val_binary] = STATE(4862), + [sym_val_string] = STATE(4862), + [sym__raw_str] = STATE(3725), + [sym__str_double_quotes] = STATE(3725), + [sym__str_single_quotes] = STATE(3725), + [sym__str_back_ticks] = STATE(3725), + [sym_val_interpolated] = STATE(4862), + [sym__inter_single_quotes] = STATE(4846), + [sym__inter_double_quotes] = STATE(4847), + [sym_val_list] = STATE(4738), + [sym__spread_list] = STATE(4959), + [sym_list_body] = STATE(5087), + [sym_val_entry] = STATE(4745), + [sym_val_record] = STATE(4862), + [sym__table_head] = STATE(3916), + [sym_val_table] = STATE(4862), + [sym_val_closure] = STATE(4862), + [sym__unquoted_in_list] = STATE(4479), + [sym__unquoted_in_list_with_expr] = STATE(4961), + [sym__unquoted_anonymous_prefix] = STATE(4729), [sym_comment] = STATE(345), - [aux_sym__types_body_repeat1] = STATE(465), - [aux_sym_parameter_repeat2] = STATE(4405), - [aux_sym_list_body_repeat1] = STATE(599), - [anon_sym_true] = ACTIONS(1468), - [anon_sym_false] = ACTIONS(1468), - [anon_sym_null] = ACTIONS(1470), - [aux_sym_cmd_identifier_token3] = ACTIONS(1472), - [aux_sym_cmd_identifier_token4] = ACTIONS(1472), - [aux_sym_cmd_identifier_token5] = ACTIONS(1472), - [sym__newline] = ACTIONS(1474), - [anon_sym_LBRACK] = ACTIONS(1476), - [anon_sym_RBRACK] = ACTIONS(1517), + [aux_sym__types_body_repeat1] = STATE(482), + [aux_sym_parameter_repeat2] = STATE(4481), + [aux_sym_list_body_repeat1] = STATE(558), + [anon_sym_true] = ACTIONS(1472), + [anon_sym_false] = ACTIONS(1472), + [anon_sym_null] = ACTIONS(1474), + [aux_sym_cmd_identifier_token3] = ACTIONS(1476), + [aux_sym_cmd_identifier_token4] = ACTIONS(1476), + [aux_sym_cmd_identifier_token5] = ACTIONS(1476), + [sym__newline] = ACTIONS(1478), + [anon_sym_LBRACK] = ACTIONS(1480), + [anon_sym_RBRACK] = ACTIONS(1518), [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1480), + [anon_sym_COMMA] = ACTIONS(1484), [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1482), - [anon_sym_DOT_DOT] = ACTIONS(1484), + [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_DOT_DOT] = ACTIONS(1488), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1486), - [anon_sym_DOT_DOT_LT] = ACTIONS(1486), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1490), + [anon_sym_DOT_DOT_LT] = ACTIONS(1490), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1488), - [aux_sym__val_number_decimal_token2] = ACTIONS(1490), - [aux_sym__val_number_decimal_token3] = ACTIONS(1492), - [aux_sym__val_number_decimal_token4] = ACTIONS(1492), + [aux_sym__val_number_decimal_token1] = ACTIONS(1492), + [aux_sym__val_number_decimal_token2] = ACTIONS(1494), + [aux_sym__val_number_decimal_token3] = ACTIONS(1496), + [aux_sym__val_number_decimal_token4] = ACTIONS(1496), [aux_sym__val_number_token1] = ACTIONS(1414), [aux_sym__val_number_token2] = ACTIONS(1414), [aux_sym__val_number_token3] = ACTIONS(1414), [anon_sym_0b] = ACTIONS(1416), [anon_sym_0o] = ACTIONS(1418), [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1494), + [sym_val_date] = ACTIONS(1498), [anon_sym_DQUOTE] = ACTIONS(1422), [anon_sym_SQUOTE] = ACTIONS(1424), [anon_sym_BQUOTE] = ACTIONS(1426), @@ -75053,554 +75892,394 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(346)] = { [sym_comment] = STATE(346), - [anon_sym_EQ] = ACTIONS(1519), - [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_RPAREN] = ACTIONS(1521), - [anon_sym_GT2] = ACTIONS(1519), - [anon_sym_DASH2] = ACTIONS(1519), - [anon_sym_RBRACE] = ACTIONS(1521), - [anon_sym_STAR2] = ACTIONS(1519), - [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(1519), - [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(1519), - [anon_sym_SLASH2] = ACTIONS(1519), - [anon_sym_mod2] = ACTIONS(1521), - [anon_sym_SLASH_SLASH2] = ACTIONS(1521), - [anon_sym_PLUS2] = ACTIONS(1519), - [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(1519), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1521), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1521), - [anon_sym_COLON2] = ACTIONS(1521), - [anon_sym_QMARK2] = ACTIONS(1521), - [anon_sym_BANG] = ACTIONS(1519), - [anon_sym_DOT2] = ACTIONS(1519), - [anon_sym_err_GT] = ACTIONS(1519), - [anon_sym_out_GT] = ACTIONS(1519), - [anon_sym_e_GT] = ACTIONS(1519), - [anon_sym_o_GT] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT] = ACTIONS(1519), - [anon_sym_err_GT_GT] = ACTIONS(1521), - [anon_sym_out_GT_GT] = ACTIONS(1521), - [anon_sym_e_GT_GT] = ACTIONS(1521), - [anon_sym_o_GT_GT] = ACTIONS(1521), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1521), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1521), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1521), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1521), - [anon_sym_POUND] = ACTIONS(3), + [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_GT2] = ACTIONS(1520), + [anon_sym_DASH2] = ACTIONS(1520), + [anon_sym_RBRACE] = 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_QMARK2] = ACTIONS(1520), + [anon_sym_BANG] = 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), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(347)] = { + [sym_path] = STATE(393), [sym_comment] = STATE(347), - [anon_sym_EQ] = ACTIONS(1523), - [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_RPAREN] = ACTIONS(1525), - [anon_sym_GT2] = ACTIONS(1523), - [anon_sym_DASH2] = ACTIONS(1523), - [anon_sym_RBRACE] = ACTIONS(1525), - [anon_sym_STAR2] = ACTIONS(1523), - [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(1523), - [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(1523), - [anon_sym_SLASH2] = ACTIONS(1523), - [anon_sym_mod2] = ACTIONS(1525), - [anon_sym_SLASH_SLASH2] = ACTIONS(1525), - [anon_sym_PLUS2] = ACTIONS(1523), - [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(1523), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1525), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1525), - [anon_sym_COLON2] = ACTIONS(1525), - [anon_sym_QMARK2] = ACTIONS(1525), - [anon_sym_BANG] = ACTIONS(1523), - [anon_sym_DOT2] = ACTIONS(1523), - [anon_sym_err_GT] = ACTIONS(1523), - [anon_sym_out_GT] = ACTIONS(1523), - [anon_sym_e_GT] = ACTIONS(1523), - [anon_sym_o_GT] = ACTIONS(1523), - [anon_sym_err_PLUSout_GT] = ACTIONS(1523), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1523), - [anon_sym_o_PLUSe_GT] = ACTIONS(1523), - [anon_sym_e_PLUSo_GT] = ACTIONS(1523), - [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), + [aux_sym__where_predicate_lhs_repeat1] = STATE(349), + [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(1458), + [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(348)] = { [sym_comment] = STATE(348), - [anon_sym_EQ] = ACTIONS(1527), - [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_RPAREN] = ACTIONS(1529), - [anon_sym_GT2] = ACTIONS(1527), - [anon_sym_DASH2] = ACTIONS(1527), - [anon_sym_RBRACE] = ACTIONS(1529), - [anon_sym_STAR2] = ACTIONS(1527), - [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(1527), - [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(1527), - [anon_sym_SLASH2] = ACTIONS(1527), - [anon_sym_mod2] = ACTIONS(1529), - [anon_sym_SLASH_SLASH2] = ACTIONS(1529), - [anon_sym_PLUS2] = ACTIONS(1527), - [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(1527), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1529), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1529), - [anon_sym_COLON2] = ACTIONS(1529), - [anon_sym_QMARK2] = ACTIONS(1529), - [anon_sym_BANG] = ACTIONS(1527), - [anon_sym_DOT2] = ACTIONS(1527), - [anon_sym_err_GT] = ACTIONS(1527), - [anon_sym_out_GT] = ACTIONS(1527), - [anon_sym_e_GT] = ACTIONS(1527), - [anon_sym_o_GT] = ACTIONS(1527), - [anon_sym_err_PLUSout_GT] = ACTIONS(1527), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1527), - [anon_sym_o_PLUSe_GT] = ACTIONS(1527), - [anon_sym_e_PLUSo_GT] = ACTIONS(1527), - [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(3), + [anon_sym_EQ] = ACTIONS(1528), + [anon_sym_PLUS_EQ] = ACTIONS(1528), + [anon_sym_DASH_EQ] = ACTIONS(1528), + [anon_sym_STAR_EQ] = ACTIONS(1528), + [anon_sym_SLASH_EQ] = ACTIONS(1528), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1528), + [anon_sym_in] = ACTIONS(1528), + [sym__newline] = ACTIONS(1528), + [anon_sym_SEMI] = ACTIONS(1528), + [anon_sym_PIPE] = ACTIONS(1528), + [anon_sym_err_GT_PIPE] = ACTIONS(1528), + [anon_sym_out_GT_PIPE] = ACTIONS(1528), + [anon_sym_e_GT_PIPE] = ACTIONS(1528), + [anon_sym_o_GT_PIPE] = ACTIONS(1528), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1528), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1528), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1528), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1528), + [anon_sym_GT2] = ACTIONS(1528), + [anon_sym_DASH2] = ACTIONS(1528), + [anon_sym_RBRACE] = ACTIONS(1528), + [anon_sym_STAR2] = ACTIONS(1528), + [anon_sym_and2] = ACTIONS(1528), + [anon_sym_xor2] = ACTIONS(1528), + [anon_sym_or2] = ACTIONS(1528), + [anon_sym_not_DASHin2] = ACTIONS(1528), + [anon_sym_has2] = ACTIONS(1528), + [anon_sym_not_DASHhas2] = ACTIONS(1528), + [anon_sym_starts_DASHwith2] = ACTIONS(1528), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1528), + [anon_sym_ends_DASHwith2] = ACTIONS(1528), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1528), + [anon_sym_EQ_EQ2] = ACTIONS(1528), + [anon_sym_BANG_EQ2] = ACTIONS(1528), + [anon_sym_LT2] = ACTIONS(1528), + [anon_sym_LT_EQ2] = ACTIONS(1528), + [anon_sym_GT_EQ2] = ACTIONS(1528), + [anon_sym_EQ_TILDE2] = ACTIONS(1528), + [anon_sym_BANG_TILDE2] = ACTIONS(1528), + [anon_sym_like2] = ACTIONS(1528), + [anon_sym_not_DASHlike2] = ACTIONS(1528), + [anon_sym_STAR_STAR2] = ACTIONS(1528), + [anon_sym_PLUS_PLUS2] = ACTIONS(1528), + [anon_sym_SLASH2] = ACTIONS(1528), + [anon_sym_mod2] = ACTIONS(1528), + [anon_sym_SLASH_SLASH2] = ACTIONS(1528), + [anon_sym_PLUS2] = ACTIONS(1528), + [anon_sym_bit_DASHshl2] = ACTIONS(1528), + [anon_sym_bit_DASHshr2] = ACTIONS(1528), + [anon_sym_bit_DASHand2] = ACTIONS(1528), + [anon_sym_bit_DASHxor2] = ACTIONS(1528), + [anon_sym_bit_DASHor2] = ACTIONS(1528), + [anon_sym_DOT_DOT2] = ACTIONS(1528), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1530), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1530), + [sym__entry_separator] = ACTIONS(1530), + [anon_sym_COLON2] = ACTIONS(1528), + [anon_sym_QMARK2] = ACTIONS(1528), + [anon_sym_BANG] = ACTIONS(1528), + [anon_sym_DOT2] = ACTIONS(1528), + [anon_sym_err_GT] = ACTIONS(1528), + [anon_sym_out_GT] = ACTIONS(1528), + [anon_sym_e_GT] = ACTIONS(1528), + [anon_sym_o_GT] = ACTIONS(1528), + [anon_sym_err_PLUSout_GT] = ACTIONS(1528), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), + [anon_sym_o_PLUSe_GT] = ACTIONS(1528), + [anon_sym_e_PLUSo_GT] = ACTIONS(1528), + [anon_sym_err_GT_GT] = ACTIONS(1528), + [anon_sym_out_GT_GT] = ACTIONS(1528), + [anon_sym_e_GT_GT] = ACTIONS(1528), + [anon_sym_o_GT_GT] = ACTIONS(1528), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1528), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1528), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1528), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1528), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(349)] = { + [sym_path] = STATE(393), [sym_comment] = STATE(349), - [anon_sym_EQ] = ACTIONS(1531), - [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_RPAREN] = ACTIONS(1533), - [anon_sym_GT2] = ACTIONS(1531), - [anon_sym_DASH2] = ACTIONS(1531), - [anon_sym_RBRACE] = ACTIONS(1533), - [anon_sym_STAR2] = ACTIONS(1531), - [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(1531), - [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(1531), - [anon_sym_SLASH2] = ACTIONS(1531), - [anon_sym_mod2] = ACTIONS(1533), - [anon_sym_SLASH_SLASH2] = ACTIONS(1533), - [anon_sym_PLUS2] = ACTIONS(1531), - [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(1531), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1533), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1533), - [anon_sym_COLON2] = ACTIONS(1533), - [anon_sym_QMARK2] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_DOT2] = ACTIONS(1531), - [anon_sym_err_GT] = ACTIONS(1531), - [anon_sym_out_GT] = ACTIONS(1531), - [anon_sym_e_GT] = ACTIONS(1531), - [anon_sym_o_GT] = ACTIONS(1531), - [anon_sym_err_PLUSout_GT] = ACTIONS(1531), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1531), - [anon_sym_o_PLUSe_GT] = ACTIONS(1531), - [anon_sym_e_PLUSo_GT] = ACTIONS(1531), - [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), + [aux_sym__where_predicate_lhs_repeat1] = STATE(349), + [anon_sym_EQ] = ACTIONS(1532), + [anon_sym_PLUS_EQ] = ACTIONS(1534), + [anon_sym_DASH_EQ] = ACTIONS(1534), + [anon_sym_STAR_EQ] = ACTIONS(1534), + [anon_sym_SLASH_EQ] = ACTIONS(1534), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1534), + [anon_sym_in] = ACTIONS(1534), + [sym__newline] = ACTIONS(1534), + [anon_sym_SEMI] = ACTIONS(1534), + [anon_sym_PIPE] = ACTIONS(1534), + [anon_sym_err_GT_PIPE] = ACTIONS(1534), + [anon_sym_out_GT_PIPE] = ACTIONS(1534), + [anon_sym_e_GT_PIPE] = ACTIONS(1534), + [anon_sym_o_GT_PIPE] = ACTIONS(1534), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1534), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1534), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1534), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1534), + [anon_sym_RPAREN] = ACTIONS(1534), + [anon_sym_GT2] = ACTIONS(1532), + [anon_sym_DASH2] = ACTIONS(1532), + [anon_sym_RBRACE] = ACTIONS(1534), + [anon_sym_STAR2] = ACTIONS(1532), + [anon_sym_and2] = ACTIONS(1534), + [anon_sym_xor2] = ACTIONS(1534), + [anon_sym_or2] = ACTIONS(1534), + [anon_sym_not_DASHin2] = ACTIONS(1534), + [anon_sym_has2] = ACTIONS(1534), + [anon_sym_not_DASHhas2] = ACTIONS(1534), + [anon_sym_starts_DASHwith2] = ACTIONS(1534), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1534), + [anon_sym_ends_DASHwith2] = ACTIONS(1534), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1534), + [anon_sym_EQ_EQ2] = ACTIONS(1534), + [anon_sym_BANG_EQ2] = ACTIONS(1534), + [anon_sym_LT2] = ACTIONS(1532), + [anon_sym_LT_EQ2] = ACTIONS(1534), + [anon_sym_GT_EQ2] = ACTIONS(1534), + [anon_sym_EQ_TILDE2] = ACTIONS(1534), + [anon_sym_BANG_TILDE2] = ACTIONS(1534), + [anon_sym_like2] = ACTIONS(1534), + [anon_sym_not_DASHlike2] = ACTIONS(1534), + [anon_sym_STAR_STAR2] = ACTIONS(1534), + [anon_sym_PLUS_PLUS2] = ACTIONS(1532), + [anon_sym_SLASH2] = ACTIONS(1532), + [anon_sym_mod2] = ACTIONS(1534), + [anon_sym_SLASH_SLASH2] = ACTIONS(1534), + [anon_sym_PLUS2] = ACTIONS(1532), + [anon_sym_bit_DASHshl2] = ACTIONS(1534), + [anon_sym_bit_DASHshr2] = ACTIONS(1534), + [anon_sym_bit_DASHand2] = ACTIONS(1534), + [anon_sym_bit_DASHxor2] = ACTIONS(1534), + [anon_sym_bit_DASHor2] = ACTIONS(1534), + [anon_sym_DOT_DOT2] = ACTIONS(1532), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1534), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1534), + [anon_sym_COLON2] = ACTIONS(1534), + [anon_sym_DOT2] = ACTIONS(1536), + [anon_sym_err_GT] = ACTIONS(1532), + [anon_sym_out_GT] = ACTIONS(1532), + [anon_sym_e_GT] = ACTIONS(1532), + [anon_sym_o_GT] = ACTIONS(1532), + [anon_sym_err_PLUSout_GT] = ACTIONS(1532), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1532), + [anon_sym_o_PLUSe_GT] = ACTIONS(1532), + [anon_sym_e_PLUSo_GT] = ACTIONS(1532), + [anon_sym_err_GT_GT] = ACTIONS(1534), + [anon_sym_out_GT_GT] = ACTIONS(1534), + [anon_sym_e_GT_GT] = ACTIONS(1534), + [anon_sym_o_GT_GT] = ACTIONS(1534), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1534), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1534), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1534), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1534), [anon_sym_POUND] = ACTIONS(3), }, [STATE(350)] = { + [aux_sym__repeat_newline] = STATE(4461), + [sym_expr_parenthesized] = STATE(4280), + [sym__spread_parenthesized] = STATE(4959), + [sym_val_range] = STATE(4961), + [sym__val_range] = STATE(4729), + [sym__value] = STATE(4961), + [sym_val_nothing] = STATE(4862), + [sym_val_bool] = STATE(4431), + [sym__spread_variable] = STATE(4968), + [sym_val_variable] = STATE(4050), + [sym_val_cellpath] = STATE(4862), + [sym_val_number] = STATE(4862), + [sym__val_number_decimal] = STATE(3653), + [sym__val_number] = STATE(4628), + [sym_val_duration] = STATE(4862), + [sym_val_filesize] = STATE(4862), + [sym_val_binary] = STATE(4862), + [sym_val_string] = STATE(4862), + [sym__raw_str] = STATE(3725), + [sym__str_double_quotes] = STATE(3725), + [sym__str_single_quotes] = STATE(3725), + [sym__str_back_ticks] = STATE(3725), + [sym_val_interpolated] = STATE(4862), + [sym__inter_single_quotes] = STATE(4846), + [sym__inter_double_quotes] = STATE(4847), + [sym_val_list] = STATE(4738), + [sym__spread_list] = STATE(4959), + [sym_list_body] = STATE(5122), + [sym_val_entry] = STATE(4745), + [sym_val_record] = STATE(4862), + [sym__table_head] = STATE(3869), + [sym_val_table] = STATE(4862), + [sym_val_closure] = STATE(4862), + [sym__unquoted_in_list] = STATE(4479), + [sym__unquoted_in_list_with_expr] = STATE(4961), + [sym__unquoted_anonymous_prefix] = STATE(4729), [sym_comment] = STATE(350), - [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_QMARK2] = ACTIONS(1537), - [anon_sym_BANG] = 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(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(351)] = { - [sym_comment] = STATE(351), - [anon_sym_EQ] = ACTIONS(1539), - [anon_sym_PLUS_EQ] = ACTIONS(1541), - [anon_sym_DASH_EQ] = ACTIONS(1541), - [anon_sym_STAR_EQ] = ACTIONS(1541), - [anon_sym_SLASH_EQ] = ACTIONS(1541), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1541), - [anon_sym_in] = ACTIONS(1541), - [sym__newline] = ACTIONS(1541), - [anon_sym_SEMI] = ACTIONS(1541), - [anon_sym_PIPE] = ACTIONS(1541), - [anon_sym_err_GT_PIPE] = ACTIONS(1541), - [anon_sym_out_GT_PIPE] = ACTIONS(1541), - [anon_sym_e_GT_PIPE] = ACTIONS(1541), - [anon_sym_o_GT_PIPE] = ACTIONS(1541), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1541), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1541), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1541), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1541), - [anon_sym_RPAREN] = ACTIONS(1541), - [anon_sym_GT2] = ACTIONS(1539), - [anon_sym_DASH2] = ACTIONS(1539), - [anon_sym_RBRACE] = ACTIONS(1541), - [anon_sym_STAR2] = ACTIONS(1539), - [anon_sym_and2] = ACTIONS(1541), - [anon_sym_xor2] = ACTIONS(1541), - [anon_sym_or2] = ACTIONS(1541), - [anon_sym_not_DASHin2] = ACTIONS(1541), - [anon_sym_has2] = ACTIONS(1541), - [anon_sym_not_DASHhas2] = ACTIONS(1541), - [anon_sym_starts_DASHwith2] = ACTIONS(1541), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1541), - [anon_sym_ends_DASHwith2] = ACTIONS(1541), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1541), - [anon_sym_EQ_EQ2] = ACTIONS(1541), - [anon_sym_BANG_EQ2] = ACTIONS(1541), - [anon_sym_LT2] = ACTIONS(1539), - [anon_sym_LT_EQ2] = ACTIONS(1541), - [anon_sym_GT_EQ2] = ACTIONS(1541), - [anon_sym_EQ_TILDE2] = ACTIONS(1541), - [anon_sym_BANG_TILDE2] = ACTIONS(1541), - [anon_sym_like2] = ACTIONS(1541), - [anon_sym_not_DASHlike2] = ACTIONS(1541), - [anon_sym_STAR_STAR2] = ACTIONS(1541), - [anon_sym_PLUS_PLUS2] = ACTIONS(1539), - [anon_sym_SLASH2] = ACTIONS(1539), - [anon_sym_mod2] = ACTIONS(1541), - [anon_sym_SLASH_SLASH2] = ACTIONS(1541), - [anon_sym_PLUS2] = ACTIONS(1539), - [anon_sym_bit_DASHshl2] = ACTIONS(1541), - [anon_sym_bit_DASHshr2] = ACTIONS(1541), - [anon_sym_bit_DASHand2] = ACTIONS(1541), - [anon_sym_bit_DASHxor2] = ACTIONS(1541), - [anon_sym_bit_DASHor2] = ACTIONS(1541), - [anon_sym_DOT_DOT2] = ACTIONS(1539), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1541), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1541), - [anon_sym_COLON2] = ACTIONS(1541), - [anon_sym_QMARK2] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1539), - [anon_sym_DOT2] = ACTIONS(1539), - [anon_sym_err_GT] = ACTIONS(1539), - [anon_sym_out_GT] = ACTIONS(1539), - [anon_sym_e_GT] = ACTIONS(1539), - [anon_sym_o_GT] = ACTIONS(1539), - [anon_sym_err_PLUSout_GT] = ACTIONS(1539), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1539), - [anon_sym_o_PLUSe_GT] = ACTIONS(1539), - [anon_sym_e_PLUSo_GT] = ACTIONS(1539), - [anon_sym_err_GT_GT] = ACTIONS(1541), - [anon_sym_out_GT_GT] = ACTIONS(1541), - [anon_sym_e_GT_GT] = ACTIONS(1541), - [anon_sym_o_GT_GT] = ACTIONS(1541), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1541), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1541), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1541), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1541), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(352)] = { - [aux_sym__repeat_newline] = STATE(4207), - [sym_expr_parenthesized] = STATE(4132), - [sym__spread_parenthesized] = STATE(4915), - [sym_val_range] = STATE(4939), - [sym__val_range] = STATE(4693), - [sym__value] = STATE(4939), - [sym_val_nothing] = STATE(4538), - [sym_val_bool] = STATE(4320), - [sym__spread_variable] = STATE(4943), - [sym_val_variable] = STATE(3965), - [sym_val_cellpath] = STATE(4538), - [sym_val_number] = STATE(4538), - [sym__val_number_decimal] = STATE(3621), - [sym__val_number] = STATE(4386), - [sym_val_duration] = STATE(4538), - [sym_val_filesize] = STATE(4538), - [sym_val_binary] = STATE(4538), - [sym_val_string] = STATE(4538), - [sym__raw_str] = STATE(3665), - [sym__str_double_quotes] = STATE(3665), - [sym__str_single_quotes] = STATE(3665), - [sym__str_back_ticks] = STATE(3665), - [sym_val_interpolated] = STATE(4538), - [sym__inter_single_quotes] = STATE(4680), - [sym__inter_double_quotes] = STATE(4683), - [sym_val_list] = STATE(4771), - [sym__spread_list] = STATE(4915), - [sym_list_body] = STATE(5096), - [sym_val_entry] = STATE(4524), - [sym_val_record] = STATE(4538), - [sym__table_head] = STATE(3842), - [sym_val_table] = STATE(4538), - [sym_val_closure] = STATE(4538), - [sym__unquoted_in_list] = STATE(4401), - [sym__unquoted_in_list_with_expr] = STATE(4939), - [sym__unquoted_anonymous_prefix] = STATE(4693), - [sym_comment] = STATE(352), - [aux_sym__types_body_repeat1] = STATE(465), - [aux_sym_parameter_repeat2] = STATE(4405), - [aux_sym_list_body_repeat1] = STATE(599), - [anon_sym_true] = ACTIONS(1468), - [anon_sym_false] = ACTIONS(1468), - [anon_sym_null] = ACTIONS(1470), - [aux_sym_cmd_identifier_token3] = ACTIONS(1472), - [aux_sym_cmd_identifier_token4] = ACTIONS(1472), - [aux_sym_cmd_identifier_token5] = ACTIONS(1472), - [sym__newline] = ACTIONS(1474), - [anon_sym_LBRACK] = ACTIONS(1476), - [anon_sym_RBRACK] = ACTIONS(1543), + [aux_sym__types_body_repeat1] = STATE(482), + [aux_sym_parameter_repeat2] = STATE(4481), + [aux_sym_list_body_repeat1] = STATE(558), + [anon_sym_true] = ACTIONS(1472), + [anon_sym_false] = ACTIONS(1472), + [anon_sym_null] = ACTIONS(1474), + [aux_sym_cmd_identifier_token3] = ACTIONS(1476), + [aux_sym_cmd_identifier_token4] = ACTIONS(1476), + [aux_sym_cmd_identifier_token5] = ACTIONS(1476), + [sym__newline] = ACTIONS(1478), + [anon_sym_LBRACK] = ACTIONS(1480), + [anon_sym_RBRACK] = ACTIONS(1539), [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1480), + [anon_sym_COMMA] = ACTIONS(1484), [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1482), - [anon_sym_DOT_DOT] = ACTIONS(1484), + [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_DOT_DOT] = ACTIONS(1488), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1486), - [anon_sym_DOT_DOT_LT] = ACTIONS(1486), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1490), + [anon_sym_DOT_DOT_LT] = ACTIONS(1490), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1488), - [aux_sym__val_number_decimal_token2] = ACTIONS(1490), - [aux_sym__val_number_decimal_token3] = ACTIONS(1492), - [aux_sym__val_number_decimal_token4] = ACTIONS(1492), + [aux_sym__val_number_decimal_token1] = ACTIONS(1492), + [aux_sym__val_number_decimal_token2] = ACTIONS(1494), + [aux_sym__val_number_decimal_token3] = ACTIONS(1496), + [aux_sym__val_number_decimal_token4] = ACTIONS(1496), [aux_sym__val_number_token1] = ACTIONS(1414), [aux_sym__val_number_token2] = ACTIONS(1414), [aux_sym__val_number_token3] = ACTIONS(1414), [anon_sym_0b] = ACTIONS(1416), [anon_sym_0o] = ACTIONS(1418), [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1494), + [sym_val_date] = ACTIONS(1498), [anon_sym_DQUOTE] = ACTIONS(1422), [anon_sym_SQUOTE] = ACTIONS(1424), [anon_sym_BQUOTE] = ACTIONS(1426), @@ -75611,476 +76290,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1436), }, - [STATE(353)] = { - [sym_comment] = STATE(353), - [anon_sym_EQ] = ACTIONS(1519), - [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(1519), - [anon_sym_DASH2] = ACTIONS(1519), - [anon_sym_RBRACE] = ACTIONS(1519), - [anon_sym_STAR2] = ACTIONS(1519), - [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(1519), - [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(1519), - [anon_sym_mod2] = ACTIONS(1519), - [anon_sym_SLASH_SLASH2] = ACTIONS(1519), - [anon_sym_PLUS2] = ACTIONS(1519), - [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(1519), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1521), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1521), - [sym__entry_separator] = ACTIONS(1521), - [anon_sym_COLON2] = ACTIONS(1519), - [anon_sym_QMARK2] = ACTIONS(1519), - [anon_sym_BANG] = ACTIONS(1519), - [anon_sym_DOT2] = ACTIONS(1519), - [anon_sym_err_GT] = ACTIONS(1519), - [anon_sym_out_GT] = ACTIONS(1519), - [anon_sym_e_GT] = ACTIONS(1519), - [anon_sym_o_GT] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT] = ACTIONS(1519), - [anon_sym_err_GT_GT] = ACTIONS(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(103), - }, - [STATE(354)] = { - [sym_comment] = STATE(354), - [anon_sym_EQ] = ACTIONS(1523), - [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(1523), - [anon_sym_DASH2] = ACTIONS(1523), - [anon_sym_RBRACE] = ACTIONS(1523), - [anon_sym_STAR2] = ACTIONS(1523), - [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(1523), - [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(1523), - [anon_sym_mod2] = ACTIONS(1523), - [anon_sym_SLASH_SLASH2] = ACTIONS(1523), - [anon_sym_PLUS2] = ACTIONS(1523), - [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(1523), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1525), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1525), - [sym__entry_separator] = ACTIONS(1525), - [anon_sym_COLON2] = ACTIONS(1523), - [anon_sym_QMARK2] = ACTIONS(1523), - [anon_sym_BANG] = ACTIONS(1523), - [anon_sym_DOT2] = ACTIONS(1523), - [anon_sym_err_GT] = ACTIONS(1523), - [anon_sym_out_GT] = ACTIONS(1523), - [anon_sym_e_GT] = ACTIONS(1523), - [anon_sym_o_GT] = ACTIONS(1523), - [anon_sym_err_PLUSout_GT] = ACTIONS(1523), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1523), - [anon_sym_o_PLUSe_GT] = ACTIONS(1523), - [anon_sym_e_PLUSo_GT] = ACTIONS(1523), - [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(103), - }, - [STATE(355)] = { - [sym_comment] = STATE(355), - [anon_sym_EQ] = ACTIONS(1527), - [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(1527), - [anon_sym_DASH2] = ACTIONS(1527), - [anon_sym_RBRACE] = ACTIONS(1527), - [anon_sym_STAR2] = ACTIONS(1527), - [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(1527), - [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(1527), - [anon_sym_mod2] = ACTIONS(1527), - [anon_sym_SLASH_SLASH2] = ACTIONS(1527), - [anon_sym_PLUS2] = ACTIONS(1527), - [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(1527), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1529), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1529), - [sym__entry_separator] = ACTIONS(1529), - [anon_sym_COLON2] = ACTIONS(1527), - [anon_sym_QMARK2] = ACTIONS(1527), - [anon_sym_BANG] = ACTIONS(1527), - [anon_sym_DOT2] = ACTIONS(1527), - [anon_sym_err_GT] = ACTIONS(1527), - [anon_sym_out_GT] = ACTIONS(1527), - [anon_sym_e_GT] = ACTIONS(1527), - [anon_sym_o_GT] = ACTIONS(1527), - [anon_sym_err_PLUSout_GT] = ACTIONS(1527), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1527), - [anon_sym_o_PLUSe_GT] = ACTIONS(1527), - [anon_sym_e_PLUSo_GT] = ACTIONS(1527), - [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(103), - }, - [STATE(356)] = { - [sym_comment] = STATE(356), - [anon_sym_EQ] = ACTIONS(1531), - [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(1531), - [anon_sym_DASH2] = ACTIONS(1531), - [anon_sym_RBRACE] = ACTIONS(1531), - [anon_sym_STAR2] = ACTIONS(1531), - [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(1531), - [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(1531), - [anon_sym_mod2] = ACTIONS(1531), - [anon_sym_SLASH_SLASH2] = ACTIONS(1531), - [anon_sym_PLUS2] = ACTIONS(1531), - [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(1531), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1533), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1533), - [sym__entry_separator] = ACTIONS(1533), - [anon_sym_COLON2] = ACTIONS(1531), - [anon_sym_QMARK2] = ACTIONS(1531), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_DOT2] = ACTIONS(1531), - [anon_sym_err_GT] = ACTIONS(1531), - [anon_sym_out_GT] = ACTIONS(1531), - [anon_sym_e_GT] = ACTIONS(1531), - [anon_sym_o_GT] = ACTIONS(1531), - [anon_sym_err_PLUSout_GT] = ACTIONS(1531), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1531), - [anon_sym_o_PLUSe_GT] = ACTIONS(1531), - [anon_sym_e_PLUSo_GT] = ACTIONS(1531), - [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(103), - }, - [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_GT2] = ACTIONS(1535), - [anon_sym_DASH2] = ACTIONS(1535), - [anon_sym_RBRACE] = 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_QMARK2] = ACTIONS(1535), - [anon_sym_BANG] = 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(4207), - [sym_expr_parenthesized] = STATE(4132), - [sym__spread_parenthesized] = STATE(4915), - [sym_val_range] = STATE(4939), - [sym__val_range] = STATE(4693), - [sym__value] = STATE(4939), - [sym_val_nothing] = STATE(4538), - [sym_val_bool] = STATE(4320), - [sym__spread_variable] = STATE(4943), - [sym_val_variable] = STATE(3965), - [sym_val_cellpath] = STATE(4538), - [sym_val_number] = STATE(4538), - [sym__val_number_decimal] = STATE(3621), - [sym__val_number] = STATE(4386), - [sym_val_duration] = STATE(4538), - [sym_val_filesize] = STATE(4538), - [sym_val_binary] = STATE(4538), - [sym_val_string] = STATE(4538), - [sym__raw_str] = STATE(3665), - [sym__str_double_quotes] = STATE(3665), - [sym__str_single_quotes] = STATE(3665), - [sym__str_back_ticks] = STATE(3665), - [sym_val_interpolated] = STATE(4538), - [sym__inter_single_quotes] = STATE(4680), - [sym__inter_double_quotes] = STATE(4683), - [sym_val_list] = STATE(4771), - [sym__spread_list] = STATE(4915), - [sym_list_body] = STATE(5203), - [sym_val_entry] = STATE(4524), - [sym_val_record] = STATE(4538), - [sym__table_head] = STATE(3866), - [sym_val_table] = STATE(4538), - [sym_val_closure] = STATE(4538), - [sym__unquoted_in_list] = STATE(4401), - [sym__unquoted_in_list_with_expr] = STATE(4939), - [sym__unquoted_anonymous_prefix] = STATE(4693), - [sym_comment] = STATE(358), - [aux_sym__types_body_repeat1] = STATE(465), - [aux_sym_parameter_repeat2] = STATE(4405), - [aux_sym_list_body_repeat1] = STATE(599), - [anon_sym_true] = ACTIONS(1468), - [anon_sym_false] = ACTIONS(1468), - [anon_sym_null] = ACTIONS(1470), - [aux_sym_cmd_identifier_token3] = ACTIONS(1472), - [aux_sym_cmd_identifier_token4] = ACTIONS(1472), - [aux_sym_cmd_identifier_token5] = ACTIONS(1472), - [sym__newline] = ACTIONS(1474), - [anon_sym_LBRACK] = ACTIONS(1476), - [anon_sym_RBRACK] = ACTIONS(1545), + [STATE(351)] = { + [aux_sym__repeat_newline] = STATE(4461), + [sym_expr_parenthesized] = STATE(4280), + [sym__spread_parenthesized] = STATE(4959), + [sym_val_range] = STATE(4961), + [sym__val_range] = STATE(4729), + [sym__value] = STATE(4961), + [sym_val_nothing] = STATE(4862), + [sym_val_bool] = STATE(4431), + [sym__spread_variable] = STATE(4968), + [sym_val_variable] = STATE(4050), + [sym_val_cellpath] = STATE(4862), + [sym_val_number] = STATE(4862), + [sym__val_number_decimal] = STATE(3653), + [sym__val_number] = STATE(4628), + [sym_val_duration] = STATE(4862), + [sym_val_filesize] = STATE(4862), + [sym_val_binary] = STATE(4862), + [sym_val_string] = STATE(4862), + [sym__raw_str] = STATE(3725), + [sym__str_double_quotes] = STATE(3725), + [sym__str_single_quotes] = STATE(3725), + [sym__str_back_ticks] = STATE(3725), + [sym_val_interpolated] = STATE(4862), + [sym__inter_single_quotes] = STATE(4846), + [sym__inter_double_quotes] = STATE(4847), + [sym_val_list] = STATE(4738), + [sym__spread_list] = STATE(4959), + [sym_list_body] = STATE(5342), + [sym_val_entry] = STATE(4745), + [sym_val_record] = STATE(4862), + [sym__table_head] = STATE(3916), + [sym_val_table] = STATE(4862), + [sym_val_closure] = STATE(4862), + [sym__unquoted_in_list] = STATE(4479), + [sym__unquoted_in_list_with_expr] = STATE(4961), + [sym__unquoted_anonymous_prefix] = STATE(4729), + [sym_comment] = STATE(351), + [aux_sym__types_body_repeat1] = STATE(482), + [aux_sym_parameter_repeat2] = STATE(4481), + [aux_sym_list_body_repeat1] = STATE(558), + [anon_sym_true] = ACTIONS(1472), + [anon_sym_false] = ACTIONS(1472), + [anon_sym_null] = ACTIONS(1474), + [aux_sym_cmd_identifier_token3] = ACTIONS(1476), + [aux_sym_cmd_identifier_token4] = ACTIONS(1476), + [aux_sym_cmd_identifier_token5] = ACTIONS(1476), + [sym__newline] = ACTIONS(1478), + [anon_sym_LBRACK] = ACTIONS(1480), + [anon_sym_RBRACK] = ACTIONS(1541), [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1480), + [anon_sym_COMMA] = ACTIONS(1484), [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1482), - [anon_sym_DOT_DOT] = ACTIONS(1484), + [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_DOT_DOT] = ACTIONS(1488), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1486), - [anon_sym_DOT_DOT_LT] = ACTIONS(1486), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1490), + [anon_sym_DOT_DOT_LT] = ACTIONS(1490), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1488), - [aux_sym__val_number_decimal_token2] = ACTIONS(1490), - [aux_sym__val_number_decimal_token3] = ACTIONS(1492), - [aux_sym__val_number_decimal_token4] = ACTIONS(1492), + [aux_sym__val_number_decimal_token1] = ACTIONS(1492), + [aux_sym__val_number_decimal_token2] = ACTIONS(1494), + [aux_sym__val_number_decimal_token3] = ACTIONS(1496), + [aux_sym__val_number_decimal_token4] = ACTIONS(1496), [aux_sym__val_number_token1] = ACTIONS(1414), [aux_sym__val_number_token2] = ACTIONS(1414), [aux_sym__val_number_token3] = ACTIONS(1414), [anon_sym_0b] = ACTIONS(1416), [anon_sym_0o] = ACTIONS(1418), [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1494), + [sym_val_date] = ACTIONS(1498), [anon_sym_DQUOTE] = ACTIONS(1422), [anon_sym_SQUOTE] = ACTIONS(1424), [anon_sym_BQUOTE] = ACTIONS(1426), @@ -76091,236 +76370,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1436), }, - [STATE(359)] = { - [sym_comment] = STATE(359), - [anon_sym_EQ] = ACTIONS(1539), - [anon_sym_PLUS_EQ] = ACTIONS(1539), - [anon_sym_DASH_EQ] = ACTIONS(1539), - [anon_sym_STAR_EQ] = ACTIONS(1539), - [anon_sym_SLASH_EQ] = ACTIONS(1539), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1539), - [anon_sym_in] = ACTIONS(1539), - [sym__newline] = ACTIONS(1539), - [anon_sym_SEMI] = ACTIONS(1539), - [anon_sym_PIPE] = ACTIONS(1539), - [anon_sym_err_GT_PIPE] = ACTIONS(1539), - [anon_sym_out_GT_PIPE] = ACTIONS(1539), - [anon_sym_e_GT_PIPE] = ACTIONS(1539), - [anon_sym_o_GT_PIPE] = ACTIONS(1539), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1539), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1539), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1539), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1539), - [anon_sym_GT2] = ACTIONS(1539), - [anon_sym_DASH2] = ACTIONS(1539), - [anon_sym_RBRACE] = ACTIONS(1539), - [anon_sym_STAR2] = ACTIONS(1539), - [anon_sym_and2] = ACTIONS(1539), - [anon_sym_xor2] = ACTIONS(1539), - [anon_sym_or2] = ACTIONS(1539), - [anon_sym_not_DASHin2] = ACTIONS(1539), - [anon_sym_has2] = ACTIONS(1539), - [anon_sym_not_DASHhas2] = ACTIONS(1539), - [anon_sym_starts_DASHwith2] = ACTIONS(1539), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1539), - [anon_sym_ends_DASHwith2] = ACTIONS(1539), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1539), - [anon_sym_EQ_EQ2] = ACTIONS(1539), - [anon_sym_BANG_EQ2] = ACTIONS(1539), - [anon_sym_LT2] = ACTIONS(1539), - [anon_sym_LT_EQ2] = ACTIONS(1539), - [anon_sym_GT_EQ2] = ACTIONS(1539), - [anon_sym_EQ_TILDE2] = ACTIONS(1539), - [anon_sym_BANG_TILDE2] = ACTIONS(1539), - [anon_sym_like2] = ACTIONS(1539), - [anon_sym_not_DASHlike2] = ACTIONS(1539), - [anon_sym_STAR_STAR2] = ACTIONS(1539), - [anon_sym_PLUS_PLUS2] = ACTIONS(1539), - [anon_sym_SLASH2] = ACTIONS(1539), - [anon_sym_mod2] = ACTIONS(1539), - [anon_sym_SLASH_SLASH2] = ACTIONS(1539), - [anon_sym_PLUS2] = ACTIONS(1539), - [anon_sym_bit_DASHshl2] = ACTIONS(1539), - [anon_sym_bit_DASHshr2] = ACTIONS(1539), - [anon_sym_bit_DASHand2] = ACTIONS(1539), - [anon_sym_bit_DASHxor2] = ACTIONS(1539), - [anon_sym_bit_DASHor2] = ACTIONS(1539), - [anon_sym_DOT_DOT2] = ACTIONS(1539), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1541), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1541), - [sym__entry_separator] = ACTIONS(1541), - [anon_sym_COLON2] = ACTIONS(1539), - [anon_sym_QMARK2] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(1539), - [anon_sym_DOT2] = ACTIONS(1539), - [anon_sym_err_GT] = ACTIONS(1539), - [anon_sym_out_GT] = ACTIONS(1539), - [anon_sym_e_GT] = ACTIONS(1539), - [anon_sym_o_GT] = ACTIONS(1539), - [anon_sym_err_PLUSout_GT] = ACTIONS(1539), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1539), - [anon_sym_o_PLUSe_GT] = ACTIONS(1539), - [anon_sym_e_PLUSo_GT] = ACTIONS(1539), - [anon_sym_err_GT_GT] = ACTIONS(1539), - [anon_sym_out_GT_GT] = ACTIONS(1539), - [anon_sym_e_GT_GT] = ACTIONS(1539), - [anon_sym_o_GT_GT] = ACTIONS(1539), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1539), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1539), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1539), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1539), + [STATE(352)] = { + [sym_comment] = STATE(352), + [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_RBRACK] = ACTIONS(1543), + [anon_sym_GT2] = ACTIONS(1543), + [anon_sym_DASH2] = ACTIONS(1543), + [anon_sym_RBRACE] = ACTIONS(1543), + [anon_sym_DOT_DOT] = 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_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(360)] = { - [sym_comment] = STATE(360), - [anon_sym_EQ] = ACTIONS(1547), - [anon_sym_PLUS_EQ] = ACTIONS(1547), - [anon_sym_DASH_EQ] = ACTIONS(1547), - [anon_sym_STAR_EQ] = ACTIONS(1547), - [anon_sym_SLASH_EQ] = ACTIONS(1547), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1547), - [anon_sym_in] = ACTIONS(1547), - [sym__newline] = ACTIONS(1547), - [anon_sym_SEMI] = ACTIONS(1547), - [anon_sym_PIPE] = ACTIONS(1547), - [anon_sym_err_GT_PIPE] = ACTIONS(1547), - [anon_sym_out_GT_PIPE] = ACTIONS(1547), - [anon_sym_e_GT_PIPE] = ACTIONS(1547), - [anon_sym_o_GT_PIPE] = ACTIONS(1547), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1547), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1547), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1547), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1547), + [STATE(353)] = { + [aux_sym__repeat_newline] = STATE(4461), + [sym_expr_parenthesized] = STATE(4280), + [sym__spread_parenthesized] = STATE(4959), + [sym_val_range] = STATE(4961), + [sym__val_range] = STATE(4729), + [sym__value] = STATE(4961), + [sym_val_nothing] = STATE(4862), + [sym_val_bool] = STATE(4431), + [sym__spread_variable] = STATE(4968), + [sym_val_variable] = STATE(4050), + [sym_val_cellpath] = STATE(4862), + [sym_val_number] = STATE(4862), + [sym__val_number_decimal] = STATE(3653), + [sym__val_number] = STATE(4628), + [sym_val_duration] = STATE(4862), + [sym_val_filesize] = STATE(4862), + [sym_val_binary] = STATE(4862), + [sym_val_string] = STATE(4862), + [sym__raw_str] = STATE(3725), + [sym__str_double_quotes] = STATE(3725), + [sym__str_single_quotes] = STATE(3725), + [sym__str_back_ticks] = STATE(3725), + [sym_val_interpolated] = STATE(4862), + [sym__inter_single_quotes] = STATE(4846), + [sym__inter_double_quotes] = STATE(4847), + [sym_val_list] = STATE(4738), + [sym__spread_list] = STATE(4959), + [sym_list_body] = STATE(5090), + [sym_val_entry] = STATE(4745), + [sym_val_record] = STATE(4862), + [sym__table_head] = STATE(3882), + [sym_val_table] = STATE(4862), + [sym_val_closure] = STATE(4862), + [sym__unquoted_in_list] = STATE(4479), + [sym__unquoted_in_list_with_expr] = STATE(4961), + [sym__unquoted_anonymous_prefix] = STATE(4729), + [sym_comment] = STATE(353), + [aux_sym__types_body_repeat1] = STATE(482), + [aux_sym_parameter_repeat2] = STATE(4481), + [aux_sym_list_body_repeat1] = STATE(558), + [anon_sym_true] = ACTIONS(1472), + [anon_sym_false] = ACTIONS(1472), + [anon_sym_null] = ACTIONS(1474), + [aux_sym_cmd_identifier_token3] = ACTIONS(1476), + [aux_sym_cmd_identifier_token4] = ACTIONS(1476), + [aux_sym_cmd_identifier_token5] = ACTIONS(1476), + [sym__newline] = ACTIONS(1478), + [anon_sym_LBRACK] = ACTIONS(1480), [anon_sym_RBRACK] = ACTIONS(1547), - [anon_sym_GT2] = ACTIONS(1547), - [anon_sym_DASH2] = ACTIONS(1547), - [anon_sym_RBRACE] = ACTIONS(1547), - [anon_sym_DOT_DOT] = ACTIONS(1547), - [anon_sym_STAR2] = ACTIONS(1547), - [anon_sym_and2] = ACTIONS(1547), - [anon_sym_xor2] = ACTIONS(1547), - [anon_sym_or2] = ACTIONS(1547), - [anon_sym_not_DASHin2] = ACTIONS(1547), - [anon_sym_has2] = ACTIONS(1547), - [anon_sym_not_DASHhas2] = ACTIONS(1547), - [anon_sym_starts_DASHwith2] = ACTIONS(1547), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1547), - [anon_sym_ends_DASHwith2] = ACTIONS(1547), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1547), - [anon_sym_EQ_EQ2] = ACTIONS(1547), - [anon_sym_BANG_EQ2] = ACTIONS(1547), - [anon_sym_LT2] = ACTIONS(1547), - [anon_sym_LT_EQ2] = ACTIONS(1547), - [anon_sym_GT_EQ2] = ACTIONS(1547), - [anon_sym_EQ_TILDE2] = ACTIONS(1547), - [anon_sym_BANG_TILDE2] = ACTIONS(1547), - [anon_sym_like2] = ACTIONS(1547), - [anon_sym_not_DASHlike2] = ACTIONS(1547), - [anon_sym_STAR_STAR2] = ACTIONS(1547), - [anon_sym_PLUS_PLUS2] = ACTIONS(1547), - [anon_sym_SLASH2] = ACTIONS(1547), - [anon_sym_mod2] = ACTIONS(1547), - [anon_sym_SLASH_SLASH2] = ACTIONS(1547), - [anon_sym_PLUS2] = ACTIONS(1547), - [anon_sym_bit_DASHshl2] = ACTIONS(1547), - [anon_sym_bit_DASHshr2] = ACTIONS(1547), - [anon_sym_bit_DASHand2] = ACTIONS(1547), - [anon_sym_bit_DASHxor2] = ACTIONS(1547), - [anon_sym_bit_DASHor2] = ACTIONS(1547), - [anon_sym_DOT_DOT2] = ACTIONS(1547), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1549), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1549), - [sym__entry_separator] = ACTIONS(1549), - [anon_sym_COLON2] = ACTIONS(1547), - [anon_sym_DOT2] = ACTIONS(1547), - [anon_sym_err_GT] = ACTIONS(1547), - [anon_sym_out_GT] = ACTIONS(1547), - [anon_sym_e_GT] = ACTIONS(1547), - [anon_sym_o_GT] = ACTIONS(1547), - [anon_sym_err_PLUSout_GT] = ACTIONS(1547), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1547), - [anon_sym_o_PLUSe_GT] = ACTIONS(1547), - [anon_sym_e_PLUSo_GT] = ACTIONS(1547), - [anon_sym_err_GT_GT] = ACTIONS(1547), - [anon_sym_out_GT_GT] = ACTIONS(1547), - [anon_sym_e_GT_GT] = ACTIONS(1547), - [anon_sym_o_GT_GT] = ACTIONS(1547), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1547), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1547), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1547), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1547), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(361)] = { - [aux_sym__repeat_newline] = STATE(4207), - [sym_expr_parenthesized] = STATE(4132), - [sym__spread_parenthesized] = STATE(4915), - [sym_val_range] = STATE(4939), - [sym__val_range] = STATE(4693), - [sym__value] = STATE(4939), - [sym_val_nothing] = STATE(4538), - [sym_val_bool] = STATE(4320), - [sym__spread_variable] = STATE(4943), - [sym_val_variable] = STATE(3965), - [sym_val_cellpath] = STATE(4538), - [sym_val_number] = STATE(4538), - [sym__val_number_decimal] = STATE(3621), - [sym__val_number] = STATE(4386), - [sym_val_duration] = STATE(4538), - [sym_val_filesize] = STATE(4538), - [sym_val_binary] = STATE(4538), - [sym_val_string] = STATE(4538), - [sym__raw_str] = STATE(3665), - [sym__str_double_quotes] = STATE(3665), - [sym__str_single_quotes] = STATE(3665), - [sym__str_back_ticks] = STATE(3665), - [sym_val_interpolated] = STATE(4538), - [sym__inter_single_quotes] = STATE(4680), - [sym__inter_double_quotes] = STATE(4683), - [sym_val_list] = STATE(4771), - [sym__spread_list] = STATE(4915), - [sym_list_body] = STATE(5353), - [sym_val_entry] = STATE(4524), - [sym_val_record] = STATE(4538), - [sym__table_head] = STATE(3802), - [sym_val_table] = STATE(4538), - [sym_val_closure] = STATE(4538), - [sym__unquoted_in_list] = STATE(4401), - [sym__unquoted_in_list_with_expr] = STATE(4939), - [sym__unquoted_anonymous_prefix] = STATE(4693), - [sym_comment] = STATE(361), - [aux_sym__types_body_repeat1] = STATE(465), - [aux_sym_parameter_repeat2] = STATE(4405), - [aux_sym_list_body_repeat1] = STATE(599), - [anon_sym_true] = ACTIONS(1468), - [anon_sym_false] = ACTIONS(1468), - [anon_sym_null] = ACTIONS(1470), - [aux_sym_cmd_identifier_token3] = ACTIONS(1472), - [aux_sym_cmd_identifier_token4] = ACTIONS(1472), - [aux_sym_cmd_identifier_token5] = ACTIONS(1472), - [sym__newline] = ACTIONS(1474), - [anon_sym_LBRACK] = ACTIONS(1476), - [anon_sym_RBRACK] = ACTIONS(1551), [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1480), + [anon_sym_COMMA] = ACTIONS(1484), [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1482), - [anon_sym_DOT_DOT] = ACTIONS(1484), + [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_DOT_DOT] = ACTIONS(1488), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1486), - [anon_sym_DOT_DOT_LT] = ACTIONS(1486), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1490), + [anon_sym_DOT_DOT_LT] = ACTIONS(1490), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1488), - [aux_sym__val_number_decimal_token2] = ACTIONS(1490), - [aux_sym__val_number_decimal_token3] = ACTIONS(1492), - [aux_sym__val_number_decimal_token4] = ACTIONS(1492), + [aux_sym__val_number_decimal_token1] = ACTIONS(1492), + [aux_sym__val_number_decimal_token2] = ACTIONS(1494), + [aux_sym__val_number_decimal_token3] = ACTIONS(1496), + [aux_sym__val_number_decimal_token4] = ACTIONS(1496), [aux_sym__val_number_token1] = ACTIONS(1414), [aux_sym__val_number_token2] = ACTIONS(1414), [aux_sym__val_number_token3] = ACTIONS(1414), [anon_sym_0b] = ACTIONS(1416), [anon_sym_0o] = ACTIONS(1418), [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1494), + [sym_val_date] = ACTIONS(1498), [anon_sym_DQUOTE] = ACTIONS(1422), [anon_sym_SQUOTE] = ACTIONS(1424), [anon_sym_BQUOTE] = ACTIONS(1426), @@ -76331,76 +76530,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1436), }, - [STATE(362)] = { - [aux_sym__repeat_newline] = STATE(4207), - [sym_expr_parenthesized] = STATE(4132), - [sym__spread_parenthesized] = STATE(4915), - [sym_val_range] = STATE(4939), - [sym__val_range] = STATE(4693), - [sym__value] = STATE(4939), - [sym_val_nothing] = STATE(4538), - [sym_val_bool] = STATE(4320), - [sym__spread_variable] = STATE(4943), - [sym_val_variable] = STATE(3965), - [sym_val_cellpath] = STATE(4538), - [sym_val_number] = STATE(4538), - [sym__val_number_decimal] = STATE(3621), - [sym__val_number] = STATE(4386), - [sym_val_duration] = STATE(4538), - [sym_val_filesize] = STATE(4538), - [sym_val_binary] = STATE(4538), - [sym_val_string] = STATE(4538), - [sym__raw_str] = STATE(3665), - [sym__str_double_quotes] = STATE(3665), - [sym__str_single_quotes] = STATE(3665), - [sym__str_back_ticks] = STATE(3665), - [sym_val_interpolated] = STATE(4538), - [sym__inter_single_quotes] = STATE(4680), - [sym__inter_double_quotes] = STATE(4683), - [sym_val_list] = STATE(4771), - [sym__spread_list] = STATE(4915), - [sym_list_body] = STATE(4960), - [sym_val_entry] = STATE(4524), - [sym_val_record] = STATE(4538), - [sym__table_head] = STATE(3812), - [sym_val_table] = STATE(4538), - [sym_val_closure] = STATE(4538), - [sym__unquoted_in_list] = STATE(4401), - [sym__unquoted_in_list_with_expr] = STATE(4939), - [sym__unquoted_anonymous_prefix] = STATE(4693), - [sym_comment] = STATE(362), - [aux_sym__types_body_repeat1] = STATE(465), - [aux_sym_parameter_repeat2] = STATE(4405), - [aux_sym_list_body_repeat1] = STATE(599), - [anon_sym_true] = ACTIONS(1468), - [anon_sym_false] = ACTIONS(1468), - [anon_sym_null] = ACTIONS(1470), - [aux_sym_cmd_identifier_token3] = ACTIONS(1472), - [aux_sym_cmd_identifier_token4] = ACTIONS(1472), - [aux_sym_cmd_identifier_token5] = ACTIONS(1472), - [sym__newline] = ACTIONS(1474), - [anon_sym_LBRACK] = ACTIONS(1476), - [anon_sym_RBRACK] = ACTIONS(1553), + [STATE(354)] = { + [aux_sym__repeat_newline] = STATE(4461), + [sym_expr_parenthesized] = STATE(4280), + [sym__spread_parenthesized] = STATE(4959), + [sym_val_range] = STATE(4961), + [sym__val_range] = STATE(4729), + [sym__value] = STATE(4961), + [sym_val_nothing] = STATE(4862), + [sym_val_bool] = STATE(4431), + [sym__spread_variable] = STATE(4968), + [sym_val_variable] = STATE(4050), + [sym_val_cellpath] = STATE(4862), + [sym_val_number] = STATE(4862), + [sym__val_number_decimal] = STATE(3653), + [sym__val_number] = STATE(4628), + [sym_val_duration] = STATE(4862), + [sym_val_filesize] = STATE(4862), + [sym_val_binary] = STATE(4862), + [sym_val_string] = STATE(4862), + [sym__raw_str] = STATE(3725), + [sym__str_double_quotes] = STATE(3725), + [sym__str_single_quotes] = STATE(3725), + [sym__str_back_ticks] = STATE(3725), + [sym_val_interpolated] = STATE(4862), + [sym__inter_single_quotes] = STATE(4846), + [sym__inter_double_quotes] = STATE(4847), + [sym_val_list] = STATE(4738), + [sym__spread_list] = STATE(4959), + [sym_list_body] = STATE(5261), + [sym_val_entry] = STATE(4745), + [sym_val_record] = STATE(4862), + [sym__table_head] = STATE(3924), + [sym_val_table] = STATE(4862), + [sym_val_closure] = STATE(4862), + [sym__unquoted_in_list] = STATE(4479), + [sym__unquoted_in_list_with_expr] = STATE(4961), + [sym__unquoted_anonymous_prefix] = STATE(4729), + [sym_comment] = STATE(354), + [aux_sym__types_body_repeat1] = STATE(482), + [aux_sym_parameter_repeat2] = STATE(4481), + [aux_sym_list_body_repeat1] = STATE(558), + [anon_sym_true] = ACTIONS(1472), + [anon_sym_false] = ACTIONS(1472), + [anon_sym_null] = ACTIONS(1474), + [aux_sym_cmd_identifier_token3] = ACTIONS(1476), + [aux_sym_cmd_identifier_token4] = ACTIONS(1476), + [aux_sym_cmd_identifier_token5] = ACTIONS(1476), + [sym__newline] = ACTIONS(1478), + [anon_sym_LBRACK] = ACTIONS(1480), + [anon_sym_RBRACK] = ACTIONS(1549), [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1480), + [anon_sym_COMMA] = ACTIONS(1484), [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1482), - [anon_sym_DOT_DOT] = ACTIONS(1484), + [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_DOT_DOT] = ACTIONS(1488), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1486), - [anon_sym_DOT_DOT_LT] = ACTIONS(1486), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1490), + [anon_sym_DOT_DOT_LT] = ACTIONS(1490), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1488), - [aux_sym__val_number_decimal_token2] = ACTIONS(1490), - [aux_sym__val_number_decimal_token3] = ACTIONS(1492), - [aux_sym__val_number_decimal_token4] = ACTIONS(1492), + [aux_sym__val_number_decimal_token1] = ACTIONS(1492), + [aux_sym__val_number_decimal_token2] = ACTIONS(1494), + [aux_sym__val_number_decimal_token3] = ACTIONS(1496), + [aux_sym__val_number_decimal_token4] = ACTIONS(1496), [aux_sym__val_number_token1] = ACTIONS(1414), [aux_sym__val_number_token2] = ACTIONS(1414), [aux_sym__val_number_token3] = ACTIONS(1414), [anon_sym_0b] = ACTIONS(1416), [anon_sym_0o] = ACTIONS(1418), [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1494), + [sym_val_date] = ACTIONS(1498), [anon_sym_DQUOTE] = ACTIONS(1422), [anon_sym_SQUOTE] = ACTIONS(1424), [anon_sym_BQUOTE] = ACTIONS(1426), @@ -76411,76 +76610,236 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1436), }, - [STATE(363)] = { - [aux_sym__repeat_newline] = STATE(4207), - [sym_expr_parenthesized] = STATE(4132), - [sym__spread_parenthesized] = STATE(4915), - [sym_val_range] = STATE(4939), - [sym__val_range] = STATE(4693), - [sym__value] = STATE(4939), - [sym_val_nothing] = STATE(4538), - [sym_val_bool] = STATE(4320), - [sym__spread_variable] = STATE(4943), - [sym_val_variable] = STATE(3965), - [sym_val_cellpath] = STATE(4538), - [sym_val_number] = STATE(4538), - [sym__val_number_decimal] = STATE(3621), - [sym__val_number] = STATE(4386), - [sym_val_duration] = STATE(4538), - [sym_val_filesize] = STATE(4538), - [sym_val_binary] = STATE(4538), - [sym_val_string] = STATE(4538), - [sym__raw_str] = STATE(3665), - [sym__str_double_quotes] = STATE(3665), - [sym__str_single_quotes] = STATE(3665), - [sym__str_back_ticks] = STATE(3665), - [sym_val_interpolated] = STATE(4538), - [sym__inter_single_quotes] = STATE(4680), - [sym__inter_double_quotes] = STATE(4683), - [sym_val_list] = STATE(4771), - [sym__spread_list] = STATE(4915), - [sym_list_body] = STATE(5200), - [sym_val_entry] = STATE(4524), - [sym_val_record] = STATE(4538), - [sym__table_head] = STATE(3815), - [sym_val_table] = STATE(4538), - [sym_val_closure] = STATE(4538), - [sym__unquoted_in_list] = STATE(4401), - [sym__unquoted_in_list_with_expr] = STATE(4939), - [sym__unquoted_anonymous_prefix] = STATE(4693), - [sym_comment] = STATE(363), - [aux_sym__types_body_repeat1] = STATE(465), - [aux_sym_parameter_repeat2] = STATE(4405), - [aux_sym_list_body_repeat1] = STATE(599), - [anon_sym_true] = ACTIONS(1468), - [anon_sym_false] = ACTIONS(1468), - [anon_sym_null] = ACTIONS(1470), - [aux_sym_cmd_identifier_token3] = ACTIONS(1472), - [aux_sym_cmd_identifier_token4] = ACTIONS(1472), - [aux_sym_cmd_identifier_token5] = ACTIONS(1472), - [sym__newline] = ACTIONS(1474), - [anon_sym_LBRACK] = ACTIONS(1476), - [anon_sym_RBRACK] = ACTIONS(1555), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1480), - [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1482), - [anon_sym_DOT_DOT] = ACTIONS(1484), + [STATE(355)] = { + [sym_comment] = STATE(355), + [anon_sym_EQ] = ACTIONS(1551), + [anon_sym_PLUS_EQ] = ACTIONS(1551), + [anon_sym_DASH_EQ] = ACTIONS(1551), + [anon_sym_STAR_EQ] = ACTIONS(1551), + [anon_sym_SLASH_EQ] = ACTIONS(1551), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1551), + [anon_sym_in] = ACTIONS(1551), + [sym__newline] = ACTIONS(1551), + [anon_sym_SEMI] = ACTIONS(1551), + [anon_sym_PIPE] = ACTIONS(1551), + [anon_sym_err_GT_PIPE] = ACTIONS(1551), + [anon_sym_out_GT_PIPE] = ACTIONS(1551), + [anon_sym_e_GT_PIPE] = ACTIONS(1551), + [anon_sym_o_GT_PIPE] = ACTIONS(1551), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1551), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1551), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1551), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1551), + [anon_sym_RBRACK] = ACTIONS(1551), + [anon_sym_GT2] = ACTIONS(1551), + [anon_sym_DASH2] = ACTIONS(1551), + [anon_sym_RBRACE] = ACTIONS(1551), + [anon_sym_DOT_DOT] = ACTIONS(1551), + [anon_sym_STAR2] = ACTIONS(1551), + [anon_sym_and2] = ACTIONS(1551), + [anon_sym_xor2] = ACTIONS(1551), + [anon_sym_or2] = ACTIONS(1551), + [anon_sym_not_DASHin2] = ACTIONS(1551), + [anon_sym_has2] = ACTIONS(1551), + [anon_sym_not_DASHhas2] = ACTIONS(1551), + [anon_sym_starts_DASHwith2] = ACTIONS(1551), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1551), + [anon_sym_ends_DASHwith2] = ACTIONS(1551), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1551), + [anon_sym_EQ_EQ2] = ACTIONS(1551), + [anon_sym_BANG_EQ2] = ACTIONS(1551), + [anon_sym_LT2] = ACTIONS(1551), + [anon_sym_LT_EQ2] = ACTIONS(1551), + [anon_sym_GT_EQ2] = ACTIONS(1551), + [anon_sym_EQ_TILDE2] = ACTIONS(1551), + [anon_sym_BANG_TILDE2] = ACTIONS(1551), + [anon_sym_like2] = ACTIONS(1551), + [anon_sym_not_DASHlike2] = ACTIONS(1551), + [anon_sym_STAR_STAR2] = ACTIONS(1551), + [anon_sym_PLUS_PLUS2] = ACTIONS(1551), + [anon_sym_SLASH2] = ACTIONS(1551), + [anon_sym_mod2] = ACTIONS(1551), + [anon_sym_SLASH_SLASH2] = ACTIONS(1551), + [anon_sym_PLUS2] = ACTIONS(1551), + [anon_sym_bit_DASHshl2] = ACTIONS(1551), + [anon_sym_bit_DASHshr2] = ACTIONS(1551), + [anon_sym_bit_DASHand2] = ACTIONS(1551), + [anon_sym_bit_DASHxor2] = ACTIONS(1551), + [anon_sym_bit_DASHor2] = ACTIONS(1551), + [anon_sym_DOT_DOT2] = ACTIONS(1551), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1553), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1553), + [sym__entry_separator] = ACTIONS(1553), + [anon_sym_COLON2] = ACTIONS(1551), + [anon_sym_DOT2] = ACTIONS(1551), + [anon_sym_err_GT] = ACTIONS(1551), + [anon_sym_out_GT] = ACTIONS(1551), + [anon_sym_e_GT] = ACTIONS(1551), + [anon_sym_o_GT] = ACTIONS(1551), + [anon_sym_err_PLUSout_GT] = ACTIONS(1551), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1551), + [anon_sym_o_PLUSe_GT] = ACTIONS(1551), + [anon_sym_e_PLUSo_GT] = ACTIONS(1551), + [anon_sym_err_GT_GT] = ACTIONS(1551), + [anon_sym_out_GT_GT] = ACTIONS(1551), + [anon_sym_e_GT_GT] = ACTIONS(1551), + [anon_sym_o_GT_GT] = ACTIONS(1551), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1551), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1551), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1551), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1551), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(356)] = { + [sym_comment] = STATE(356), + [anon_sym_EQ] = ACTIONS(1500), + [anon_sym_PLUS_EQ] = ACTIONS(1502), + [anon_sym_DASH_EQ] = ACTIONS(1502), + [anon_sym_STAR_EQ] = ACTIONS(1502), + [anon_sym_SLASH_EQ] = ACTIONS(1502), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1502), + [anon_sym_in] = ACTIONS(1502), + [sym__newline] = ACTIONS(1502), + [anon_sym_SEMI] = ACTIONS(1502), + [anon_sym_PIPE] = ACTIONS(1502), + [anon_sym_err_GT_PIPE] = ACTIONS(1502), + [anon_sym_out_GT_PIPE] = ACTIONS(1502), + [anon_sym_e_GT_PIPE] = ACTIONS(1502), + [anon_sym_o_GT_PIPE] = ACTIONS(1502), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1502), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1502), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1502), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1502), + [anon_sym_RPAREN] = ACTIONS(1502), + [anon_sym_GT2] = ACTIONS(1500), + [anon_sym_DASH2] = ACTIONS(1500), + [anon_sym_RBRACE] = ACTIONS(1502), + [anon_sym_STAR2] = ACTIONS(1500), + [anon_sym_and2] = ACTIONS(1502), + [anon_sym_xor2] = ACTIONS(1502), + [anon_sym_or2] = ACTIONS(1502), + [anon_sym_not_DASHin2] = ACTIONS(1502), + [anon_sym_has2] = ACTIONS(1502), + [anon_sym_not_DASHhas2] = ACTIONS(1502), + [anon_sym_starts_DASHwith2] = ACTIONS(1502), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1502), + [anon_sym_ends_DASHwith2] = ACTIONS(1502), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1502), + [anon_sym_EQ_EQ2] = ACTIONS(1502), + [anon_sym_BANG_EQ2] = ACTIONS(1502), + [anon_sym_LT2] = ACTIONS(1500), + [anon_sym_LT_EQ2] = ACTIONS(1502), + [anon_sym_GT_EQ2] = ACTIONS(1502), + [anon_sym_EQ_TILDE2] = ACTIONS(1502), + [anon_sym_BANG_TILDE2] = ACTIONS(1502), + [anon_sym_like2] = ACTIONS(1502), + [anon_sym_not_DASHlike2] = ACTIONS(1502), + [anon_sym_STAR_STAR2] = ACTIONS(1502), + [anon_sym_PLUS_PLUS2] = ACTIONS(1500), + [anon_sym_SLASH2] = ACTIONS(1500), + [anon_sym_mod2] = ACTIONS(1502), + [anon_sym_SLASH_SLASH2] = ACTIONS(1502), + [anon_sym_PLUS2] = ACTIONS(1500), + [anon_sym_bit_DASHshl2] = ACTIONS(1502), + [anon_sym_bit_DASHshr2] = ACTIONS(1502), + [anon_sym_bit_DASHand2] = ACTIONS(1502), + [anon_sym_bit_DASHxor2] = ACTIONS(1502), + [anon_sym_bit_DASHor2] = ACTIONS(1502), + [anon_sym_DOT_DOT2] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1502), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1502), + [anon_sym_COLON2] = ACTIONS(1502), + [anon_sym_QMARK2] = ACTIONS(1502), + [anon_sym_BANG] = ACTIONS(1500), + [anon_sym_DOT2] = ACTIONS(1500), + [anon_sym_err_GT] = ACTIONS(1500), + [anon_sym_out_GT] = ACTIONS(1500), + [anon_sym_e_GT] = ACTIONS(1500), + [anon_sym_o_GT] = ACTIONS(1500), + [anon_sym_err_PLUSout_GT] = ACTIONS(1500), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1500), + [anon_sym_o_PLUSe_GT] = ACTIONS(1500), + [anon_sym_e_PLUSo_GT] = ACTIONS(1500), + [anon_sym_err_GT_GT] = ACTIONS(1502), + [anon_sym_out_GT_GT] = ACTIONS(1502), + [anon_sym_e_GT_GT] = ACTIONS(1502), + [anon_sym_o_GT_GT] = ACTIONS(1502), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1502), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1502), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1502), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1502), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(357)] = { + [aux_sym__repeat_newline] = STATE(4461), + [sym_expr_parenthesized] = STATE(4280), + [sym__spread_parenthesized] = STATE(4959), + [sym_val_range] = STATE(4961), + [sym__val_range] = STATE(4729), + [sym__value] = STATE(4961), + [sym_val_nothing] = STATE(4862), + [sym_val_bool] = STATE(4431), + [sym__spread_variable] = STATE(4968), + [sym_val_variable] = STATE(4050), + [sym_val_cellpath] = STATE(4862), + [sym_val_number] = STATE(4862), + [sym__val_number_decimal] = STATE(3653), + [sym__val_number] = STATE(4628), + [sym_val_duration] = STATE(4862), + [sym_val_filesize] = STATE(4862), + [sym_val_binary] = STATE(4862), + [sym_val_string] = STATE(4862), + [sym__raw_str] = STATE(3725), + [sym__str_double_quotes] = STATE(3725), + [sym__str_single_quotes] = STATE(3725), + [sym__str_back_ticks] = STATE(3725), + [sym_val_interpolated] = STATE(4862), + [sym__inter_single_quotes] = STATE(4846), + [sym__inter_double_quotes] = STATE(4847), + [sym_val_list] = STATE(4738), + [sym__spread_list] = STATE(4959), + [sym_list_body] = STATE(5376), + [sym_val_entry] = STATE(4745), + [sym_val_record] = STATE(4862), + [sym__table_head] = STATE(3875), + [sym_val_table] = STATE(4862), + [sym_val_closure] = STATE(4862), + [sym__unquoted_in_list] = STATE(4479), + [sym__unquoted_in_list_with_expr] = STATE(4961), + [sym__unquoted_anonymous_prefix] = STATE(4729), + [sym_comment] = STATE(357), + [aux_sym__types_body_repeat1] = STATE(482), + [aux_sym_parameter_repeat2] = STATE(4481), + [aux_sym_list_body_repeat1] = STATE(558), + [anon_sym_true] = ACTIONS(1472), + [anon_sym_false] = ACTIONS(1472), + [anon_sym_null] = ACTIONS(1474), + [aux_sym_cmd_identifier_token3] = ACTIONS(1476), + [aux_sym_cmd_identifier_token4] = ACTIONS(1476), + [aux_sym_cmd_identifier_token5] = ACTIONS(1476), + [sym__newline] = ACTIONS(1478), + [anon_sym_LBRACK] = ACTIONS(1480), + [anon_sym_RBRACK] = ACTIONS(1555), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_COMMA] = ACTIONS(1484), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_DOT_DOT] = ACTIONS(1488), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1486), - [anon_sym_DOT_DOT_LT] = ACTIONS(1486), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1490), + [anon_sym_DOT_DOT_LT] = ACTIONS(1490), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1488), - [aux_sym__val_number_decimal_token2] = ACTIONS(1490), - [aux_sym__val_number_decimal_token3] = ACTIONS(1492), - [aux_sym__val_number_decimal_token4] = ACTIONS(1492), + [aux_sym__val_number_decimal_token1] = ACTIONS(1492), + [aux_sym__val_number_decimal_token2] = ACTIONS(1494), + [aux_sym__val_number_decimal_token3] = ACTIONS(1496), + [aux_sym__val_number_decimal_token4] = ACTIONS(1496), [aux_sym__val_number_token1] = ACTIONS(1414), [aux_sym__val_number_token2] = ACTIONS(1414), [aux_sym__val_number_token3] = ACTIONS(1414), [anon_sym_0b] = ACTIONS(1416), [anon_sym_0o] = ACTIONS(1418), [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1494), + [sym_val_date] = ACTIONS(1498), [anon_sym_DQUOTE] = ACTIONS(1422), [anon_sym_SQUOTE] = ACTIONS(1424), [anon_sym_BQUOTE] = ACTIONS(1426), @@ -76491,148 +76850,228 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1436), }, - [STATE(364)] = { - [sym_path] = STATE(360), - [sym_comment] = STATE(364), - [aux_sym__where_predicate_lhs_repeat1] = STATE(365), - [anon_sym_EQ] = ACTIONS(1504), - [anon_sym_PLUS_EQ] = ACTIONS(1504), - [anon_sym_DASH_EQ] = ACTIONS(1504), - [anon_sym_STAR_EQ] = ACTIONS(1504), - [anon_sym_SLASH_EQ] = ACTIONS(1504), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1504), - [anon_sym_in] = ACTIONS(1504), - [sym__newline] = ACTIONS(1504), - [anon_sym_SEMI] = ACTIONS(1504), - [anon_sym_PIPE] = ACTIONS(1504), - [anon_sym_err_GT_PIPE] = ACTIONS(1504), - [anon_sym_out_GT_PIPE] = ACTIONS(1504), - [anon_sym_e_GT_PIPE] = ACTIONS(1504), - [anon_sym_o_GT_PIPE] = ACTIONS(1504), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1504), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1504), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1504), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1504), - [anon_sym_GT2] = ACTIONS(1504), - [anon_sym_DASH2] = ACTIONS(1504), - [anon_sym_RBRACE] = ACTIONS(1504), - [anon_sym_STAR2] = ACTIONS(1504), - [anon_sym_and2] = ACTIONS(1504), - [anon_sym_xor2] = ACTIONS(1504), - [anon_sym_or2] = ACTIONS(1504), - [anon_sym_not_DASHin2] = ACTIONS(1504), - [anon_sym_has2] = ACTIONS(1504), - [anon_sym_not_DASHhas2] = ACTIONS(1504), - [anon_sym_starts_DASHwith2] = ACTIONS(1504), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1504), - [anon_sym_ends_DASHwith2] = ACTIONS(1504), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1504), - [anon_sym_EQ_EQ2] = ACTIONS(1504), - [anon_sym_BANG_EQ2] = ACTIONS(1504), - [anon_sym_LT2] = ACTIONS(1504), - [anon_sym_LT_EQ2] = ACTIONS(1504), - [anon_sym_GT_EQ2] = ACTIONS(1504), - [anon_sym_EQ_TILDE2] = ACTIONS(1504), - [anon_sym_BANG_TILDE2] = ACTIONS(1504), - [anon_sym_like2] = ACTIONS(1504), - [anon_sym_not_DASHlike2] = ACTIONS(1504), - [anon_sym_STAR_STAR2] = ACTIONS(1504), - [anon_sym_PLUS_PLUS2] = ACTIONS(1504), - [anon_sym_SLASH2] = ACTIONS(1504), - [anon_sym_mod2] = ACTIONS(1504), - [anon_sym_SLASH_SLASH2] = ACTIONS(1504), - [anon_sym_PLUS2] = ACTIONS(1504), - [anon_sym_bit_DASHshl2] = ACTIONS(1504), - [anon_sym_bit_DASHshr2] = ACTIONS(1504), - [anon_sym_bit_DASHand2] = ACTIONS(1504), - [anon_sym_bit_DASHxor2] = ACTIONS(1504), - [anon_sym_bit_DASHor2] = ACTIONS(1504), - [anon_sym_DOT_DOT2] = ACTIONS(1504), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1506), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1506), - [sym__entry_separator] = ACTIONS(1506), - [anon_sym_COLON2] = ACTIONS(1504), - [anon_sym_DOT2] = ACTIONS(1446), - [anon_sym_err_GT] = ACTIONS(1504), - [anon_sym_out_GT] = ACTIONS(1504), - [anon_sym_e_GT] = ACTIONS(1504), - [anon_sym_o_GT] = ACTIONS(1504), - [anon_sym_err_PLUSout_GT] = ACTIONS(1504), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1504), - [anon_sym_o_PLUSe_GT] = ACTIONS(1504), - [anon_sym_e_PLUSo_GT] = ACTIONS(1504), - [anon_sym_err_GT_GT] = ACTIONS(1504), - [anon_sym_out_GT_GT] = ACTIONS(1504), - [anon_sym_e_GT_GT] = ACTIONS(1504), - [anon_sym_o_GT_GT] = ACTIONS(1504), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1504), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1504), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1504), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1504), - [anon_sym_POUND] = ACTIONS(103), + [STATE(358)] = { + [aux_sym__repeat_newline] = STATE(4461), + [sym_expr_parenthesized] = STATE(4280), + [sym__spread_parenthesized] = STATE(4959), + [sym_val_range] = STATE(4961), + [sym__val_range] = STATE(4729), + [sym__value] = STATE(4961), + [sym_val_nothing] = STATE(4862), + [sym_val_bool] = STATE(4431), + [sym__spread_variable] = STATE(4968), + [sym_val_variable] = STATE(4050), + [sym_val_cellpath] = STATE(4862), + [sym_val_number] = STATE(4862), + [sym__val_number_decimal] = STATE(3653), + [sym__val_number] = STATE(4628), + [sym_val_duration] = STATE(4862), + [sym_val_filesize] = STATE(4862), + [sym_val_binary] = STATE(4862), + [sym_val_string] = STATE(4862), + [sym__raw_str] = STATE(3725), + [sym__str_double_quotes] = STATE(3725), + [sym__str_single_quotes] = STATE(3725), + [sym__str_back_ticks] = STATE(3725), + [sym_val_interpolated] = STATE(4862), + [sym__inter_single_quotes] = STATE(4846), + [sym__inter_double_quotes] = STATE(4847), + [sym_val_list] = STATE(4738), + [sym__spread_list] = STATE(4959), + [sym_list_body] = STATE(5491), + [sym_val_entry] = STATE(4745), + [sym_val_record] = STATE(4862), + [sym__table_head] = STATE(3920), + [sym_val_table] = STATE(4862), + [sym_val_closure] = STATE(4862), + [sym__unquoted_in_list] = STATE(4479), + [sym__unquoted_in_list_with_expr] = STATE(4961), + [sym__unquoted_anonymous_prefix] = STATE(4729), + [sym_comment] = STATE(358), + [aux_sym__types_body_repeat1] = STATE(482), + [aux_sym_parameter_repeat2] = STATE(4481), + [aux_sym_list_body_repeat1] = STATE(558), + [anon_sym_true] = ACTIONS(1472), + [anon_sym_false] = ACTIONS(1472), + [anon_sym_null] = ACTIONS(1474), + [aux_sym_cmd_identifier_token3] = ACTIONS(1476), + [aux_sym_cmd_identifier_token4] = ACTIONS(1476), + [aux_sym_cmd_identifier_token5] = ACTIONS(1476), + [sym__newline] = ACTIONS(1478), + [anon_sym_LBRACK] = ACTIONS(1480), + [anon_sym_RBRACK] = ACTIONS(1557), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_COMMA] = ACTIONS(1484), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_DOT_DOT] = ACTIONS(1488), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1490), + [anon_sym_DOT_DOT_LT] = ACTIONS(1490), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1492), + [aux_sym__val_number_decimal_token2] = ACTIONS(1494), + [aux_sym__val_number_decimal_token3] = ACTIONS(1496), + [aux_sym__val_number_decimal_token4] = ACTIONS(1496), + [aux_sym__val_number_token1] = ACTIONS(1414), + [aux_sym__val_number_token2] = ACTIONS(1414), + [aux_sym__val_number_token3] = ACTIONS(1414), + [anon_sym_0b] = ACTIONS(1416), + [anon_sym_0o] = ACTIONS(1418), + [anon_sym_0x] = ACTIONS(1418), + [sym_val_date] = ACTIONS(1498), + [anon_sym_DQUOTE] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_BQUOTE] = ACTIONS(1426), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1428), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1430), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1432), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1436), }, - [STATE(365)] = { - [sym_path] = STATE(360), - [sym_comment] = STATE(365), - [aux_sym__where_predicate_lhs_repeat1] = STATE(365), + [STATE(359)] = { + [aux_sym__repeat_newline] = STATE(4461), + [sym_expr_parenthesized] = STATE(4280), + [sym__spread_parenthesized] = STATE(4959), + [sym_val_range] = STATE(4961), + [sym__val_range] = STATE(4729), + [sym__value] = STATE(4961), + [sym_val_nothing] = STATE(4862), + [sym_val_bool] = STATE(4431), + [sym__spread_variable] = STATE(4968), + [sym_val_variable] = STATE(4050), + [sym_val_cellpath] = STATE(4862), + [sym_val_number] = STATE(4862), + [sym__val_number_decimal] = STATE(3653), + [sym__val_number] = STATE(4628), + [sym_val_duration] = STATE(4862), + [sym_val_filesize] = STATE(4862), + [sym_val_binary] = STATE(4862), + [sym_val_string] = STATE(4862), + [sym__raw_str] = STATE(3725), + [sym__str_double_quotes] = STATE(3725), + [sym__str_single_quotes] = STATE(3725), + [sym__str_back_ticks] = STATE(3725), + [sym_val_interpolated] = STATE(4862), + [sym__inter_single_quotes] = STATE(4846), + [sym__inter_double_quotes] = STATE(4847), + [sym_val_list] = STATE(4738), + [sym__spread_list] = STATE(4959), + [sym_list_body] = STATE(5093), + [sym_val_entry] = STATE(4745), + [sym_val_record] = STATE(4862), + [sym__table_head] = STATE(3873), + [sym_val_table] = STATE(4862), + [sym_val_closure] = STATE(4862), + [sym__unquoted_in_list] = STATE(4479), + [sym__unquoted_in_list_with_expr] = STATE(4961), + [sym__unquoted_anonymous_prefix] = STATE(4729), + [sym_comment] = STATE(359), + [aux_sym__types_body_repeat1] = STATE(482), + [aux_sym_parameter_repeat2] = STATE(4481), + [aux_sym_list_body_repeat1] = STATE(558), + [anon_sym_true] = ACTIONS(1472), + [anon_sym_false] = ACTIONS(1472), + [anon_sym_null] = ACTIONS(1474), + [aux_sym_cmd_identifier_token3] = ACTIONS(1476), + [aux_sym_cmd_identifier_token4] = ACTIONS(1476), + [aux_sym_cmd_identifier_token5] = ACTIONS(1476), + [sym__newline] = ACTIONS(1478), + [anon_sym_LBRACK] = ACTIONS(1480), + [anon_sym_RBRACK] = ACTIONS(1559), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_COMMA] = ACTIONS(1484), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_DOT_DOT] = ACTIONS(1488), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1490), + [anon_sym_DOT_DOT_LT] = ACTIONS(1490), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1492), + [aux_sym__val_number_decimal_token2] = ACTIONS(1494), + [aux_sym__val_number_decimal_token3] = ACTIONS(1496), + [aux_sym__val_number_decimal_token4] = ACTIONS(1496), + [aux_sym__val_number_token1] = ACTIONS(1414), + [aux_sym__val_number_token2] = ACTIONS(1414), + [aux_sym__val_number_token3] = ACTIONS(1414), + [anon_sym_0b] = ACTIONS(1416), + [anon_sym_0o] = ACTIONS(1418), + [anon_sym_0x] = ACTIONS(1418), + [sym_val_date] = ACTIONS(1498), + [anon_sym_DQUOTE] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_BQUOTE] = ACTIONS(1426), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1428), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1430), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1432), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1436), + }, + [STATE(360)] = { + [sym_comment] = STATE(360), [anon_sym_EQ] = ACTIONS(1508), - [anon_sym_PLUS_EQ] = ACTIONS(1508), - [anon_sym_DASH_EQ] = ACTIONS(1508), - [anon_sym_STAR_EQ] = ACTIONS(1508), - [anon_sym_SLASH_EQ] = ACTIONS(1508), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1508), - [anon_sym_in] = ACTIONS(1508), - [sym__newline] = ACTIONS(1508), - [anon_sym_SEMI] = ACTIONS(1508), - [anon_sym_PIPE] = ACTIONS(1508), - [anon_sym_err_GT_PIPE] = ACTIONS(1508), - [anon_sym_out_GT_PIPE] = ACTIONS(1508), - [anon_sym_e_GT_PIPE] = ACTIONS(1508), - [anon_sym_o_GT_PIPE] = ACTIONS(1508), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1508), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1508), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1508), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1508), + [anon_sym_PLUS_EQ] = ACTIONS(1510), + [anon_sym_DASH_EQ] = ACTIONS(1510), + [anon_sym_STAR_EQ] = ACTIONS(1510), + [anon_sym_SLASH_EQ] = ACTIONS(1510), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1510), + [anon_sym_in] = ACTIONS(1510), + [sym__newline] = ACTIONS(1510), + [anon_sym_SEMI] = ACTIONS(1510), + [anon_sym_PIPE] = ACTIONS(1510), + [anon_sym_err_GT_PIPE] = ACTIONS(1510), + [anon_sym_out_GT_PIPE] = ACTIONS(1510), + [anon_sym_e_GT_PIPE] = ACTIONS(1510), + [anon_sym_o_GT_PIPE] = ACTIONS(1510), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1510), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1510), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1510), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1510), + [anon_sym_RPAREN] = ACTIONS(1510), [anon_sym_GT2] = ACTIONS(1508), [anon_sym_DASH2] = ACTIONS(1508), - [anon_sym_RBRACE] = ACTIONS(1508), + [anon_sym_RBRACE] = ACTIONS(1510), [anon_sym_STAR2] = ACTIONS(1508), - [anon_sym_and2] = ACTIONS(1508), - [anon_sym_xor2] = ACTIONS(1508), - [anon_sym_or2] = ACTIONS(1508), - [anon_sym_not_DASHin2] = ACTIONS(1508), - [anon_sym_has2] = ACTIONS(1508), - [anon_sym_not_DASHhas2] = ACTIONS(1508), - [anon_sym_starts_DASHwith2] = ACTIONS(1508), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1508), - [anon_sym_ends_DASHwith2] = ACTIONS(1508), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1508), - [anon_sym_EQ_EQ2] = ACTIONS(1508), - [anon_sym_BANG_EQ2] = ACTIONS(1508), + [anon_sym_and2] = ACTIONS(1510), + [anon_sym_xor2] = ACTIONS(1510), + [anon_sym_or2] = ACTIONS(1510), + [anon_sym_not_DASHin2] = ACTIONS(1510), + [anon_sym_has2] = ACTIONS(1510), + [anon_sym_not_DASHhas2] = ACTIONS(1510), + [anon_sym_starts_DASHwith2] = ACTIONS(1510), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1510), + [anon_sym_ends_DASHwith2] = ACTIONS(1510), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1510), + [anon_sym_EQ_EQ2] = ACTIONS(1510), + [anon_sym_BANG_EQ2] = ACTIONS(1510), [anon_sym_LT2] = ACTIONS(1508), - [anon_sym_LT_EQ2] = ACTIONS(1508), - [anon_sym_GT_EQ2] = ACTIONS(1508), - [anon_sym_EQ_TILDE2] = ACTIONS(1508), - [anon_sym_BANG_TILDE2] = ACTIONS(1508), - [anon_sym_like2] = ACTIONS(1508), - [anon_sym_not_DASHlike2] = ACTIONS(1508), - [anon_sym_STAR_STAR2] = ACTIONS(1508), + [anon_sym_LT_EQ2] = ACTIONS(1510), + [anon_sym_GT_EQ2] = ACTIONS(1510), + [anon_sym_EQ_TILDE2] = ACTIONS(1510), + [anon_sym_BANG_TILDE2] = ACTIONS(1510), + [anon_sym_like2] = ACTIONS(1510), + [anon_sym_not_DASHlike2] = ACTIONS(1510), + [anon_sym_STAR_STAR2] = ACTIONS(1510), [anon_sym_PLUS_PLUS2] = ACTIONS(1508), [anon_sym_SLASH2] = ACTIONS(1508), - [anon_sym_mod2] = ACTIONS(1508), - [anon_sym_SLASH_SLASH2] = ACTIONS(1508), + [anon_sym_mod2] = ACTIONS(1510), + [anon_sym_SLASH_SLASH2] = ACTIONS(1510), [anon_sym_PLUS2] = ACTIONS(1508), - [anon_sym_bit_DASHshl2] = ACTIONS(1508), - [anon_sym_bit_DASHshr2] = ACTIONS(1508), - [anon_sym_bit_DASHand2] = ACTIONS(1508), - [anon_sym_bit_DASHxor2] = ACTIONS(1508), - [anon_sym_bit_DASHor2] = ACTIONS(1508), + [anon_sym_bit_DASHshl2] = ACTIONS(1510), + [anon_sym_bit_DASHshr2] = ACTIONS(1510), + [anon_sym_bit_DASHand2] = ACTIONS(1510), + [anon_sym_bit_DASHxor2] = ACTIONS(1510), + [anon_sym_bit_DASHor2] = ACTIONS(1510), [anon_sym_DOT_DOT2] = ACTIONS(1508), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1510), [anon_sym_DOT_DOT_LT2] = ACTIONS(1510), - [sym__entry_separator] = ACTIONS(1510), - [anon_sym_COLON2] = ACTIONS(1508), - [anon_sym_DOT2] = ACTIONS(1557), + [anon_sym_COLON2] = ACTIONS(1510), + [anon_sym_QMARK2] = ACTIONS(1510), + [anon_sym_BANG] = ACTIONS(1508), + [anon_sym_DOT2] = ACTIONS(1508), [anon_sym_err_GT] = ACTIONS(1508), [anon_sym_out_GT] = ACTIONS(1508), [anon_sym_e_GT] = ACTIONS(1508), @@ -76641,86 +77080,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT] = ACTIONS(1508), [anon_sym_o_PLUSe_GT] = ACTIONS(1508), [anon_sym_e_PLUSo_GT] = ACTIONS(1508), - [anon_sym_err_GT_GT] = ACTIONS(1508), - [anon_sym_out_GT_GT] = ACTIONS(1508), - [anon_sym_e_GT_GT] = ACTIONS(1508), - [anon_sym_o_GT_GT] = ACTIONS(1508), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1508), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1508), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1508), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1508), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_err_GT_GT] = ACTIONS(1510), + [anon_sym_out_GT_GT] = ACTIONS(1510), + [anon_sym_e_GT_GT] = ACTIONS(1510), + [anon_sym_o_GT_GT] = ACTIONS(1510), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1510), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1510), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1510), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1510), + [anon_sym_POUND] = ACTIONS(3), }, - [STATE(366)] = { - [aux_sym__repeat_newline] = STATE(4207), - [sym_expr_parenthesized] = STATE(4132), - [sym__spread_parenthesized] = STATE(4915), - [sym_val_range] = STATE(4939), - [sym__val_range] = STATE(4693), - [sym__value] = STATE(4939), - [sym_val_nothing] = STATE(4538), - [sym_val_bool] = STATE(4320), - [sym__spread_variable] = STATE(4943), - [sym_val_variable] = STATE(3965), - [sym_val_cellpath] = STATE(4538), - [sym_val_number] = STATE(4538), - [sym__val_number_decimal] = STATE(3621), - [sym__val_number] = STATE(4386), - [sym_val_duration] = STATE(4538), - [sym_val_filesize] = STATE(4538), - [sym_val_binary] = STATE(4538), - [sym_val_string] = STATE(4538), - [sym__raw_str] = STATE(3665), - [sym__str_double_quotes] = STATE(3665), - [sym__str_single_quotes] = STATE(3665), - [sym__str_back_ticks] = STATE(3665), - [sym_val_interpolated] = STATE(4538), - [sym__inter_single_quotes] = STATE(4680), - [sym__inter_double_quotes] = STATE(4683), - [sym_val_list] = STATE(4771), - [sym__spread_list] = STATE(4915), - [sym_list_body] = STATE(5081), - [sym_val_entry] = STATE(4524), - [sym_val_record] = STATE(4538), - [sym__table_head] = STATE(3841), - [sym_val_table] = STATE(4538), - [sym_val_closure] = STATE(4538), - [sym__unquoted_in_list] = STATE(4401), - [sym__unquoted_in_list_with_expr] = STATE(4939), - [sym__unquoted_anonymous_prefix] = STATE(4693), - [sym_comment] = STATE(366), - [aux_sym__types_body_repeat1] = STATE(465), - [aux_sym_parameter_repeat2] = STATE(4405), - [aux_sym_list_body_repeat1] = STATE(599), - [anon_sym_true] = ACTIONS(1468), - [anon_sym_false] = ACTIONS(1468), - [anon_sym_null] = ACTIONS(1470), - [aux_sym_cmd_identifier_token3] = ACTIONS(1472), - [aux_sym_cmd_identifier_token4] = ACTIONS(1472), - [aux_sym_cmd_identifier_token5] = ACTIONS(1472), - [sym__newline] = ACTIONS(1474), - [anon_sym_LBRACK] = ACTIONS(1476), - [anon_sym_RBRACK] = ACTIONS(1560), + [STATE(361)] = { + [sym_comment] = STATE(361), + [anon_sym_EQ] = ACTIONS(1528), + [anon_sym_PLUS_EQ] = ACTIONS(1530), + [anon_sym_DASH_EQ] = ACTIONS(1530), + [anon_sym_STAR_EQ] = ACTIONS(1530), + [anon_sym_SLASH_EQ] = ACTIONS(1530), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1530), + [anon_sym_in] = ACTIONS(1530), + [sym__newline] = ACTIONS(1530), + [anon_sym_SEMI] = ACTIONS(1530), + [anon_sym_PIPE] = ACTIONS(1530), + [anon_sym_err_GT_PIPE] = ACTIONS(1530), + [anon_sym_out_GT_PIPE] = ACTIONS(1530), + [anon_sym_e_GT_PIPE] = ACTIONS(1530), + [anon_sym_o_GT_PIPE] = ACTIONS(1530), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1530), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1530), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1530), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1530), + [anon_sym_RPAREN] = ACTIONS(1530), + [anon_sym_GT2] = ACTIONS(1528), + [anon_sym_DASH2] = ACTIONS(1528), + [anon_sym_RBRACE] = ACTIONS(1530), + [anon_sym_STAR2] = ACTIONS(1528), + [anon_sym_and2] = ACTIONS(1530), + [anon_sym_xor2] = ACTIONS(1530), + [anon_sym_or2] = ACTIONS(1530), + [anon_sym_not_DASHin2] = ACTIONS(1530), + [anon_sym_has2] = ACTIONS(1530), + [anon_sym_not_DASHhas2] = ACTIONS(1530), + [anon_sym_starts_DASHwith2] = ACTIONS(1530), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1530), + [anon_sym_ends_DASHwith2] = ACTIONS(1530), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1530), + [anon_sym_EQ_EQ2] = ACTIONS(1530), + [anon_sym_BANG_EQ2] = ACTIONS(1530), + [anon_sym_LT2] = ACTIONS(1528), + [anon_sym_LT_EQ2] = ACTIONS(1530), + [anon_sym_GT_EQ2] = ACTIONS(1530), + [anon_sym_EQ_TILDE2] = ACTIONS(1530), + [anon_sym_BANG_TILDE2] = ACTIONS(1530), + [anon_sym_like2] = ACTIONS(1530), + [anon_sym_not_DASHlike2] = ACTIONS(1530), + [anon_sym_STAR_STAR2] = ACTIONS(1530), + [anon_sym_PLUS_PLUS2] = ACTIONS(1528), + [anon_sym_SLASH2] = ACTIONS(1528), + [anon_sym_mod2] = ACTIONS(1530), + [anon_sym_SLASH_SLASH2] = ACTIONS(1530), + [anon_sym_PLUS2] = ACTIONS(1528), + [anon_sym_bit_DASHshl2] = ACTIONS(1530), + [anon_sym_bit_DASHshr2] = ACTIONS(1530), + [anon_sym_bit_DASHand2] = ACTIONS(1530), + [anon_sym_bit_DASHxor2] = ACTIONS(1530), + [anon_sym_bit_DASHor2] = ACTIONS(1530), + [anon_sym_DOT_DOT2] = ACTIONS(1528), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1530), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1530), + [anon_sym_COLON2] = ACTIONS(1530), + [anon_sym_QMARK2] = ACTIONS(1530), + [anon_sym_BANG] = ACTIONS(1528), + [anon_sym_DOT2] = ACTIONS(1528), + [anon_sym_err_GT] = ACTIONS(1528), + [anon_sym_out_GT] = ACTIONS(1528), + [anon_sym_e_GT] = ACTIONS(1528), + [anon_sym_o_GT] = ACTIONS(1528), + [anon_sym_err_PLUSout_GT] = ACTIONS(1528), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), + [anon_sym_o_PLUSe_GT] = ACTIONS(1528), + [anon_sym_e_PLUSo_GT] = ACTIONS(1528), + [anon_sym_err_GT_GT] = ACTIONS(1530), + [anon_sym_out_GT_GT] = ACTIONS(1530), + [anon_sym_e_GT_GT] = ACTIONS(1530), + [anon_sym_o_GT_GT] = ACTIONS(1530), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1530), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1530), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1530), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1530), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(362)] = { + [aux_sym__repeat_newline] = STATE(4461), + [sym_expr_parenthesized] = STATE(4280), + [sym__spread_parenthesized] = STATE(4959), + [sym_val_range] = STATE(4961), + [sym__val_range] = STATE(4729), + [sym__value] = STATE(4961), + [sym_val_nothing] = STATE(4862), + [sym_val_bool] = STATE(4431), + [sym__spread_variable] = STATE(4968), + [sym_val_variable] = STATE(4050), + [sym_val_cellpath] = STATE(4862), + [sym_val_number] = STATE(4862), + [sym__val_number_decimal] = STATE(3653), + [sym__val_number] = STATE(4628), + [sym_val_duration] = STATE(4862), + [sym_val_filesize] = STATE(4862), + [sym_val_binary] = STATE(4862), + [sym_val_string] = STATE(4862), + [sym__raw_str] = STATE(3725), + [sym__str_double_quotes] = STATE(3725), + [sym__str_single_quotes] = STATE(3725), + [sym__str_back_ticks] = STATE(3725), + [sym_val_interpolated] = STATE(4862), + [sym__inter_single_quotes] = STATE(4846), + [sym__inter_double_quotes] = STATE(4847), + [sym_val_list] = STATE(4738), + [sym__spread_list] = STATE(4959), + [sym_list_body] = STATE(5332), + [sym_val_entry] = STATE(4745), + [sym_val_record] = STATE(4862), + [sym__table_head] = STATE(3912), + [sym_val_table] = STATE(4862), + [sym_val_closure] = STATE(4862), + [sym__unquoted_in_list] = STATE(4479), + [sym__unquoted_in_list_with_expr] = STATE(4961), + [sym__unquoted_anonymous_prefix] = STATE(4729), + [sym_comment] = STATE(362), + [aux_sym__types_body_repeat1] = STATE(482), + [aux_sym_parameter_repeat2] = STATE(4481), + [aux_sym_list_body_repeat1] = STATE(558), + [anon_sym_true] = ACTIONS(1472), + [anon_sym_false] = ACTIONS(1472), + [anon_sym_null] = ACTIONS(1474), + [aux_sym_cmd_identifier_token3] = ACTIONS(1476), + [aux_sym_cmd_identifier_token4] = ACTIONS(1476), + [aux_sym_cmd_identifier_token5] = ACTIONS(1476), + [sym__newline] = ACTIONS(1478), + [anon_sym_LBRACK] = ACTIONS(1480), + [anon_sym_RBRACK] = ACTIONS(1561), [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1480), + [anon_sym_COMMA] = ACTIONS(1484), [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1482), - [anon_sym_DOT_DOT] = ACTIONS(1484), + [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_DOT_DOT] = ACTIONS(1488), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1486), - [anon_sym_DOT_DOT_LT] = ACTIONS(1486), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1490), + [anon_sym_DOT_DOT_LT] = ACTIONS(1490), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1488), - [aux_sym__val_number_decimal_token2] = ACTIONS(1490), - [aux_sym__val_number_decimal_token3] = ACTIONS(1492), - [aux_sym__val_number_decimal_token4] = ACTIONS(1492), + [aux_sym__val_number_decimal_token1] = ACTIONS(1492), + [aux_sym__val_number_decimal_token2] = ACTIONS(1494), + [aux_sym__val_number_decimal_token3] = ACTIONS(1496), + [aux_sym__val_number_decimal_token4] = ACTIONS(1496), [aux_sym__val_number_token1] = ACTIONS(1414), [aux_sym__val_number_token2] = ACTIONS(1414), [aux_sym__val_number_token3] = ACTIONS(1414), [anon_sym_0b] = ACTIONS(1416), [anon_sym_0o] = ACTIONS(1418), [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1494), + [sym_val_date] = ACTIONS(1498), [anon_sym_DQUOTE] = ACTIONS(1422), [anon_sym_SQUOTE] = ACTIONS(1424), [anon_sym_BQUOTE] = ACTIONS(1426), @@ -76731,91 +77250,646 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1436), }, + [STATE(363)] = { + [sym_comment] = STATE(363), + [anon_sym_EQ] = ACTIONS(1512), + [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_RPAREN] = ACTIONS(1514), + [anon_sym_GT2] = ACTIONS(1512), + [anon_sym_DASH2] = ACTIONS(1512), + [anon_sym_RBRACE] = ACTIONS(1514), + [anon_sym_STAR2] = ACTIONS(1512), + [anon_sym_and2] = ACTIONS(1514), + [anon_sym_xor2] = ACTIONS(1514), + [anon_sym_or2] = ACTIONS(1514), + [anon_sym_not_DASHin2] = ACTIONS(1514), + [anon_sym_has2] = ACTIONS(1514), + [anon_sym_not_DASHhas2] = ACTIONS(1514), + [anon_sym_starts_DASHwith2] = ACTIONS(1514), + [anon_sym_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(1512), + [anon_sym_LT_EQ2] = ACTIONS(1514), + [anon_sym_GT_EQ2] = ACTIONS(1514), + [anon_sym_EQ_TILDE2] = ACTIONS(1514), + [anon_sym_BANG_TILDE2] = ACTIONS(1514), + [anon_sym_like2] = ACTIONS(1514), + [anon_sym_not_DASHlike2] = ACTIONS(1514), + [anon_sym_STAR_STAR2] = ACTIONS(1514), + [anon_sym_PLUS_PLUS2] = ACTIONS(1512), + [anon_sym_SLASH2] = ACTIONS(1512), + [anon_sym_mod2] = ACTIONS(1514), + [anon_sym_SLASH_SLASH2] = ACTIONS(1514), + [anon_sym_PLUS2] = ACTIONS(1512), + [anon_sym_bit_DASHshl2] = ACTIONS(1514), + [anon_sym_bit_DASHshr2] = ACTIONS(1514), + [anon_sym_bit_DASHand2] = ACTIONS(1514), + [anon_sym_bit_DASHxor2] = ACTIONS(1514), + [anon_sym_bit_DASHor2] = ACTIONS(1514), + [anon_sym_DOT_DOT2] = ACTIONS(1512), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1514), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1514), + [anon_sym_COLON2] = ACTIONS(1514), + [anon_sym_QMARK2] = ACTIONS(1514), + [anon_sym_BANG] = ACTIONS(1512), + [anon_sym_DOT2] = ACTIONS(1512), + [anon_sym_err_GT] = ACTIONS(1512), + [anon_sym_out_GT] = ACTIONS(1512), + [anon_sym_e_GT] = ACTIONS(1512), + [anon_sym_o_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT] = ACTIONS(1512), + [anon_sym_err_GT_GT] = ACTIONS(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), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(364)] = { + [sym_comment] = STATE(364), + [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_QMARK2] = ACTIONS(1522), + [anon_sym_BANG] = 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(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(365)] = { + [sym_path] = STATE(352), + [sym_comment] = STATE(365), + [aux_sym__where_predicate_lhs_repeat1] = STATE(366), + [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(1466), + [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(366)] = { + [sym_path] = STATE(352), + [sym_comment] = STATE(366), + [aux_sym__where_predicate_lhs_repeat1] = STATE(366), + [anon_sym_EQ] = ACTIONS(1532), + [anon_sym_PLUS_EQ] = ACTIONS(1532), + [anon_sym_DASH_EQ] = ACTIONS(1532), + [anon_sym_STAR_EQ] = ACTIONS(1532), + [anon_sym_SLASH_EQ] = ACTIONS(1532), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1532), + [anon_sym_in] = ACTIONS(1532), + [sym__newline] = ACTIONS(1532), + [anon_sym_SEMI] = ACTIONS(1532), + [anon_sym_PIPE] = ACTIONS(1532), + [anon_sym_err_GT_PIPE] = ACTIONS(1532), + [anon_sym_out_GT_PIPE] = ACTIONS(1532), + [anon_sym_e_GT_PIPE] = ACTIONS(1532), + [anon_sym_o_GT_PIPE] = ACTIONS(1532), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1532), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1532), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1532), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1532), + [anon_sym_GT2] = ACTIONS(1532), + [anon_sym_DASH2] = ACTIONS(1532), + [anon_sym_RBRACE] = ACTIONS(1532), + [anon_sym_STAR2] = ACTIONS(1532), + [anon_sym_and2] = ACTIONS(1532), + [anon_sym_xor2] = ACTIONS(1532), + [anon_sym_or2] = ACTIONS(1532), + [anon_sym_not_DASHin2] = ACTIONS(1532), + [anon_sym_has2] = ACTIONS(1532), + [anon_sym_not_DASHhas2] = ACTIONS(1532), + [anon_sym_starts_DASHwith2] = ACTIONS(1532), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1532), + [anon_sym_ends_DASHwith2] = ACTIONS(1532), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1532), + [anon_sym_EQ_EQ2] = ACTIONS(1532), + [anon_sym_BANG_EQ2] = ACTIONS(1532), + [anon_sym_LT2] = ACTIONS(1532), + [anon_sym_LT_EQ2] = ACTIONS(1532), + [anon_sym_GT_EQ2] = ACTIONS(1532), + [anon_sym_EQ_TILDE2] = ACTIONS(1532), + [anon_sym_BANG_TILDE2] = ACTIONS(1532), + [anon_sym_like2] = ACTIONS(1532), + [anon_sym_not_DASHlike2] = ACTIONS(1532), + [anon_sym_STAR_STAR2] = ACTIONS(1532), + [anon_sym_PLUS_PLUS2] = ACTIONS(1532), + [anon_sym_SLASH2] = ACTIONS(1532), + [anon_sym_mod2] = ACTIONS(1532), + [anon_sym_SLASH_SLASH2] = ACTIONS(1532), + [anon_sym_PLUS2] = ACTIONS(1532), + [anon_sym_bit_DASHshl2] = ACTIONS(1532), + [anon_sym_bit_DASHshr2] = ACTIONS(1532), + [anon_sym_bit_DASHand2] = ACTIONS(1532), + [anon_sym_bit_DASHxor2] = ACTIONS(1532), + [anon_sym_bit_DASHor2] = ACTIONS(1532), + [anon_sym_DOT_DOT2] = ACTIONS(1532), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1534), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1534), + [sym__entry_separator] = ACTIONS(1534), + [anon_sym_COLON2] = ACTIONS(1532), + [anon_sym_DOT2] = ACTIONS(1563), + [anon_sym_err_GT] = ACTIONS(1532), + [anon_sym_out_GT] = ACTIONS(1532), + [anon_sym_e_GT] = ACTIONS(1532), + [anon_sym_o_GT] = ACTIONS(1532), + [anon_sym_err_PLUSout_GT] = ACTIONS(1532), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1532), + [anon_sym_o_PLUSe_GT] = ACTIONS(1532), + [anon_sym_e_PLUSo_GT] = ACTIONS(1532), + [anon_sym_err_GT_GT] = ACTIONS(1532), + [anon_sym_out_GT_GT] = ACTIONS(1532), + [anon_sym_e_GT_GT] = ACTIONS(1532), + [anon_sym_o_GT_GT] = ACTIONS(1532), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1532), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1532), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1532), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1532), + [anon_sym_POUND] = ACTIONS(103), + }, [STATE(367)] = { [sym_comment] = STATE(367), - [anon_sym_EQ] = ACTIONS(1562), - [anon_sym_PLUS_EQ] = ACTIONS(1562), - [anon_sym_DASH_EQ] = ACTIONS(1562), - [anon_sym_STAR_EQ] = ACTIONS(1562), - [anon_sym_SLASH_EQ] = ACTIONS(1562), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1562), - [anon_sym_in] = ACTIONS(1562), - [sym__newline] = ACTIONS(1562), - [anon_sym_SEMI] = ACTIONS(1562), - [anon_sym_PIPE] = ACTIONS(1562), - [anon_sym_err_GT_PIPE] = ACTIONS(1562), - [anon_sym_out_GT_PIPE] = ACTIONS(1562), - [anon_sym_e_GT_PIPE] = ACTIONS(1562), - [anon_sym_o_GT_PIPE] = ACTIONS(1562), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1562), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1562), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1562), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1562), - [anon_sym_RBRACK] = ACTIONS(1562), - [anon_sym_GT2] = ACTIONS(1562), - [anon_sym_DASH2] = ACTIONS(1562), - [anon_sym_RBRACE] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(1562), - [anon_sym_STAR2] = ACTIONS(1562), - [anon_sym_and2] = ACTIONS(1562), - [anon_sym_xor2] = ACTIONS(1562), - [anon_sym_or2] = ACTIONS(1562), - [anon_sym_not_DASHin2] = ACTIONS(1562), - [anon_sym_has2] = ACTIONS(1562), - [anon_sym_not_DASHhas2] = ACTIONS(1562), - [anon_sym_starts_DASHwith2] = ACTIONS(1562), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1562), - [anon_sym_ends_DASHwith2] = ACTIONS(1562), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1562), - [anon_sym_EQ_EQ2] = ACTIONS(1562), - [anon_sym_BANG_EQ2] = ACTIONS(1562), - [anon_sym_LT2] = ACTIONS(1562), - [anon_sym_LT_EQ2] = ACTIONS(1562), - [anon_sym_GT_EQ2] = ACTIONS(1562), - [anon_sym_EQ_TILDE2] = ACTIONS(1562), - [anon_sym_BANG_TILDE2] = ACTIONS(1562), - [anon_sym_like2] = ACTIONS(1562), - [anon_sym_not_DASHlike2] = ACTIONS(1562), - [anon_sym_STAR_STAR2] = ACTIONS(1562), - [anon_sym_PLUS_PLUS2] = ACTIONS(1562), - [anon_sym_SLASH2] = ACTIONS(1562), - [anon_sym_mod2] = ACTIONS(1562), - [anon_sym_SLASH_SLASH2] = ACTIONS(1562), - [anon_sym_PLUS2] = ACTIONS(1562), - [anon_sym_bit_DASHshl2] = ACTIONS(1562), - [anon_sym_bit_DASHshr2] = ACTIONS(1562), - [anon_sym_bit_DASHand2] = ACTIONS(1562), - [anon_sym_bit_DASHxor2] = ACTIONS(1562), - [anon_sym_bit_DASHor2] = ACTIONS(1562), - [anon_sym_DOT_DOT2] = ACTIONS(1562), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1564), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1564), - [sym__entry_separator] = ACTIONS(1564), - [anon_sym_COLON2] = ACTIONS(1562), - [anon_sym_DOT2] = ACTIONS(1562), - [anon_sym_err_GT] = ACTIONS(1562), - [anon_sym_out_GT] = ACTIONS(1562), - [anon_sym_e_GT] = ACTIONS(1562), - [anon_sym_o_GT] = ACTIONS(1562), - [anon_sym_err_PLUSout_GT] = ACTIONS(1562), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1562), - [anon_sym_o_PLUSe_GT] = ACTIONS(1562), - [anon_sym_e_PLUSo_GT] = ACTIONS(1562), - [anon_sym_err_GT_GT] = ACTIONS(1562), - [anon_sym_out_GT_GT] = ACTIONS(1562), - [anon_sym_e_GT_GT] = ACTIONS(1562), - [anon_sym_o_GT_GT] = ACTIONS(1562), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1562), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1562), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1562), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1562), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_EQ] = ACTIONS(1504), + [anon_sym_PLUS_EQ] = ACTIONS(1506), + [anon_sym_DASH_EQ] = ACTIONS(1506), + [anon_sym_STAR_EQ] = ACTIONS(1506), + [anon_sym_SLASH_EQ] = ACTIONS(1506), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1506), + [anon_sym_in] = ACTIONS(1506), + [sym__newline] = ACTIONS(1506), + [anon_sym_SEMI] = ACTIONS(1506), + [anon_sym_PIPE] = ACTIONS(1506), + [anon_sym_err_GT_PIPE] = ACTIONS(1506), + [anon_sym_out_GT_PIPE] = ACTIONS(1506), + [anon_sym_e_GT_PIPE] = ACTIONS(1506), + [anon_sym_o_GT_PIPE] = ACTIONS(1506), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1506), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1506), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1506), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1506), + [anon_sym_RPAREN] = ACTIONS(1506), + [anon_sym_GT2] = ACTIONS(1504), + [anon_sym_DASH2] = ACTIONS(1504), + [anon_sym_RBRACE] = ACTIONS(1506), + [anon_sym_STAR2] = ACTIONS(1504), + [anon_sym_and2] = ACTIONS(1506), + [anon_sym_xor2] = ACTIONS(1506), + [anon_sym_or2] = ACTIONS(1506), + [anon_sym_not_DASHin2] = ACTIONS(1506), + [anon_sym_has2] = ACTIONS(1506), + [anon_sym_not_DASHhas2] = ACTIONS(1506), + [anon_sym_starts_DASHwith2] = ACTIONS(1506), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1506), + [anon_sym_ends_DASHwith2] = ACTIONS(1506), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1506), + [anon_sym_EQ_EQ2] = ACTIONS(1506), + [anon_sym_BANG_EQ2] = ACTIONS(1506), + [anon_sym_LT2] = ACTIONS(1504), + [anon_sym_LT_EQ2] = ACTIONS(1506), + [anon_sym_GT_EQ2] = ACTIONS(1506), + [anon_sym_EQ_TILDE2] = ACTIONS(1506), + [anon_sym_BANG_TILDE2] = ACTIONS(1506), + [anon_sym_like2] = ACTIONS(1506), + [anon_sym_not_DASHlike2] = ACTIONS(1506), + [anon_sym_STAR_STAR2] = ACTIONS(1506), + [anon_sym_PLUS_PLUS2] = ACTIONS(1504), + [anon_sym_SLASH2] = ACTIONS(1504), + [anon_sym_mod2] = ACTIONS(1506), + [anon_sym_SLASH_SLASH2] = ACTIONS(1506), + [anon_sym_PLUS2] = ACTIONS(1504), + [anon_sym_bit_DASHshl2] = ACTIONS(1506), + [anon_sym_bit_DASHshr2] = ACTIONS(1506), + [anon_sym_bit_DASHand2] = ACTIONS(1506), + [anon_sym_bit_DASHxor2] = ACTIONS(1506), + [anon_sym_bit_DASHor2] = ACTIONS(1506), + [anon_sym_DOT_DOT2] = ACTIONS(1504), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1506), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1506), + [anon_sym_COLON2] = ACTIONS(1506), + [anon_sym_QMARK2] = ACTIONS(1506), + [anon_sym_BANG] = ACTIONS(1504), + [anon_sym_DOT2] = ACTIONS(1504), + [anon_sym_err_GT] = ACTIONS(1504), + [anon_sym_out_GT] = ACTIONS(1504), + [anon_sym_e_GT] = ACTIONS(1504), + [anon_sym_o_GT] = ACTIONS(1504), + [anon_sym_err_PLUSout_GT] = ACTIONS(1504), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1504), + [anon_sym_o_PLUSe_GT] = ACTIONS(1504), + [anon_sym_e_PLUSo_GT] = ACTIONS(1504), + [anon_sym_err_GT_GT] = ACTIONS(1506), + [anon_sym_out_GT_GT] = ACTIONS(1506), + [anon_sym_e_GT_GT] = ACTIONS(1506), + [anon_sym_o_GT_GT] = ACTIONS(1506), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1506), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1506), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1506), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1506), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(368)] = { - [sym_cell_path] = STATE(428), - [sym_path] = STATE(424), + [sym__match_pattern_expression] = STATE(4339), + [sym__match_pattern_value] = STATE(4686), + [sym__match_pattern_list] = STATE(4805), + [sym__match_pattern_record] = STATE(4754), + [sym_expr_parenthesized] = STATE(4010), + [sym__spread_parenthesized] = STATE(4959), + [sym_val_range] = STATE(4869), + [sym__val_range] = STATE(4729), + [sym__value] = STATE(4961), + [sym_val_nothing] = STATE(4870), + [sym_val_bool] = STATE(4322), + [sym__spread_variable] = STATE(4968), + [sym_val_variable] = STATE(4011), + [sym_val_cellpath] = STATE(4862), + [sym_val_number] = STATE(4870), + [sym__val_number_decimal] = STATE(3597), + [sym__val_number] = STATE(4628), + [sym_val_duration] = STATE(4870), + [sym_val_filesize] = STATE(4870), + [sym_val_binary] = STATE(4870), + [sym_val_string] = STATE(4870), + [sym__raw_str] = STATE(3725), + [sym__str_double_quotes] = STATE(3725), + [sym__str_single_quotes] = STATE(3725), + [sym__str_back_ticks] = STATE(3725), + [sym_val_interpolated] = STATE(4862), + [sym__inter_single_quotes] = STATE(4846), + [sym__inter_double_quotes] = STATE(4847), + [sym_val_list] = STATE(4862), + [sym__spread_list] = STATE(4959), + [sym_val_entry] = STATE(4778), + [sym_val_record] = STATE(4862), + [sym_val_table] = STATE(4870), + [sym_val_closure] = STATE(4862), + [sym__unquoted_in_list] = STATE(4158), + [sym__unquoted_in_list_with_expr] = STATE(4961), + [sym__unquoted_anonymous_prefix] = STATE(4729), [sym_comment] = STATE(368), - [aux_sym__where_predicate_lhs_repeat1] = STATE(380), + [aux_sym__types_body_repeat1] = STATE(2185), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1424), + [aux_sym_list_body_repeat1] = STATE(624), + [anon_sym_true] = ACTIONS(1384), + [anon_sym_false] = ACTIONS(1384), + [anon_sym_null] = ACTIONS(1386), + [aux_sym_cmd_identifier_token3] = ACTIONS(1388), + [aux_sym_cmd_identifier_token4] = ACTIONS(1388), + [aux_sym_cmd_identifier_token5] = ACTIONS(1388), + [sym__newline] = ACTIONS(1566), + [anon_sym_LBRACK] = ACTIONS(1568), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1402), + [anon_sym_DOT_DOT] = ACTIONS(1570), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1406), + [anon_sym_DOT_DOT_LT] = ACTIONS(1406), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1408), + [aux_sym__val_number_decimal_token2] = ACTIONS(1410), + [aux_sym__val_number_decimal_token3] = ACTIONS(1412), + [aux_sym__val_number_decimal_token4] = ACTIONS(1412), + [aux_sym__val_number_token1] = ACTIONS(1414), + [aux_sym__val_number_token2] = ACTIONS(1414), + [aux_sym__val_number_token3] = ACTIONS(1414), + [anon_sym_0b] = ACTIONS(1416), + [anon_sym_0o] = ACTIONS(1418), + [anon_sym_0x] = ACTIONS(1418), + [sym_val_date] = ACTIONS(1420), + [anon_sym_DQUOTE] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_BQUOTE] = ACTIONS(1426), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1428), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1430), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1432), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1436), + }, + [STATE(369)] = { + [sym_comment] = STATE(369), + [anon_sym_EQ] = ACTIONS(1460), + [anon_sym_PLUS_EQ] = ACTIONS(1460), + [anon_sym_DASH_EQ] = ACTIONS(1460), + [anon_sym_STAR_EQ] = ACTIONS(1460), + [anon_sym_SLASH_EQ] = ACTIONS(1460), + [anon_sym_PLUS_PLUS_EQ] = 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(1460), + [anon_sym_DASH2] = ACTIONS(1460), + [anon_sym_RBRACE] = ACTIONS(1460), + [anon_sym_STAR2] = ACTIONS(1460), + [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(1460), + [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(1460), + [anon_sym_mod2] = ACTIONS(1460), + [anon_sym_SLASH_SLASH2] = ACTIONS(1460), + [anon_sym_PLUS2] = ACTIONS(1460), + [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(1460), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1462), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1462), + [sym__entry_separator] = ACTIONS(1462), + [anon_sym_COLON2] = ACTIONS(1460), + [anon_sym_BANG] = ACTIONS(1464), + [anon_sym_DOT2] = ACTIONS(1460), + [anon_sym_err_GT] = ACTIONS(1460), + [anon_sym_out_GT] = ACTIONS(1460), + [anon_sym_e_GT] = ACTIONS(1460), + [anon_sym_o_GT] = ACTIONS(1460), + [anon_sym_err_PLUSout_GT] = ACTIONS(1460), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1460), + [anon_sym_o_PLUSe_GT] = ACTIONS(1460), + [anon_sym_e_PLUSo_GT] = ACTIONS(1460), + [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(103), + }, + [STATE(370)] = { + [sym_comment] = STATE(370), + [anon_sym_EQ] = ACTIONS(1460), + [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_RPAREN] = ACTIONS(1462), + [anon_sym_GT2] = ACTIONS(1460), + [anon_sym_DASH2] = ACTIONS(1460), + [anon_sym_RBRACE] = ACTIONS(1462), + [anon_sym_STAR2] = ACTIONS(1460), + [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(1460), + [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(1460), + [anon_sym_SLASH2] = ACTIONS(1460), + [anon_sym_mod2] = ACTIONS(1462), + [anon_sym_SLASH_SLASH2] = ACTIONS(1462), + [anon_sym_PLUS2] = ACTIONS(1460), + [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(1460), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1462), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1462), + [anon_sym_COLON2] = ACTIONS(1462), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_DOT2] = ACTIONS(1460), + [anon_sym_err_GT] = ACTIONS(1460), + [anon_sym_out_GT] = ACTIONS(1460), + [anon_sym_e_GT] = ACTIONS(1460), + [anon_sym_o_GT] = ACTIONS(1460), + [anon_sym_err_PLUSout_GT] = ACTIONS(1460), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1460), + [anon_sym_o_PLUSe_GT] = ACTIONS(1460), + [anon_sym_e_PLUSo_GT] = ACTIONS(1460), + [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(3), + }, + [STATE(371)] = { + [sym__path_suffix] = STATE(430), + [sym_comment] = STATE(371), [ts_builtin_sym_end] = ACTIONS(1444), [anon_sym_EQ] = ACTIONS(1442), [anon_sym_PLUS_EQ] = ACTIONS(1444), @@ -76871,7 +77945,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1442), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1444), [anon_sym_DOT_DOT_LT2] = ACTIONS(1444), - [anon_sym_DOT2] = ACTIONS(1566), + [anon_sym_QMARK2] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1576), + [anon_sym_DOT2] = ACTIONS(1442), [anon_sym_err_GT] = ACTIONS(1442), [anon_sym_out_GT] = ACTIONS(1442), [anon_sym_e_GT] = ACTIONS(1442), @@ -76890,154 +77966,311 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1444), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(369)] = { - [sym__path_suffix] = STATE(433), - [sym_comment] = STATE(369), - [ts_builtin_sym_end] = ACTIONS(1458), - [anon_sym_EQ] = ACTIONS(1456), - [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(1456), - [anon_sym_DASH2] = ACTIONS(1456), - [anon_sym_STAR2] = ACTIONS(1456), - [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(1456), - [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(1456), - [anon_sym_SLASH2] = ACTIONS(1456), - [anon_sym_mod2] = ACTIONS(1458), - [anon_sym_SLASH_SLASH2] = ACTIONS(1458), - [anon_sym_PLUS2] = ACTIONS(1456), - [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(1456), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1458), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1458), - [anon_sym_QMARK2] = ACTIONS(1568), - [anon_sym_BANG] = ACTIONS(1570), - [anon_sym_DOT2] = ACTIONS(1456), - [anon_sym_err_GT] = ACTIONS(1456), - [anon_sym_out_GT] = ACTIONS(1456), - [anon_sym_e_GT] = ACTIONS(1456), - [anon_sym_o_GT] = ACTIONS(1456), - [anon_sym_err_PLUSout_GT] = ACTIONS(1456), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1456), - [anon_sym_o_PLUSe_GT] = ACTIONS(1456), - [anon_sym_e_PLUSo_GT] = ACTIONS(1456), - [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), + [STATE(372)] = { + [sym_comment] = STATE(372), + [anon_sym_EQ] = ACTIONS(1578), + [anon_sym_PLUS_EQ] = ACTIONS(1578), + [anon_sym_DASH_EQ] = ACTIONS(1578), + [anon_sym_STAR_EQ] = ACTIONS(1578), + [anon_sym_SLASH_EQ] = ACTIONS(1578), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1578), + [anon_sym_in] = ACTIONS(1578), + [sym__newline] = ACTIONS(1578), + [anon_sym_SEMI] = ACTIONS(1578), + [anon_sym_PIPE] = ACTIONS(1578), + [anon_sym_err_GT_PIPE] = ACTIONS(1578), + [anon_sym_out_GT_PIPE] = ACTIONS(1578), + [anon_sym_e_GT_PIPE] = ACTIONS(1578), + [anon_sym_o_GT_PIPE] = ACTIONS(1578), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1578), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1578), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1578), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1578), + [anon_sym_RBRACK] = ACTIONS(1578), + [anon_sym_GT2] = ACTIONS(1578), + [anon_sym_DASH2] = ACTIONS(1578), + [anon_sym_RBRACE] = ACTIONS(1578), + [anon_sym_DOT_DOT] = ACTIONS(1578), + [anon_sym_STAR2] = ACTIONS(1578), + [anon_sym_and2] = ACTIONS(1578), + [anon_sym_xor2] = ACTIONS(1578), + [anon_sym_or2] = ACTIONS(1578), + [anon_sym_not_DASHin2] = ACTIONS(1578), + [anon_sym_has2] = ACTIONS(1578), + [anon_sym_not_DASHhas2] = ACTIONS(1578), + [anon_sym_starts_DASHwith2] = ACTIONS(1578), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1578), + [anon_sym_ends_DASHwith2] = ACTIONS(1578), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1578), + [anon_sym_EQ_EQ2] = ACTIONS(1578), + [anon_sym_BANG_EQ2] = ACTIONS(1578), + [anon_sym_LT2] = ACTIONS(1578), + [anon_sym_LT_EQ2] = ACTIONS(1578), + [anon_sym_GT_EQ2] = ACTIONS(1578), + [anon_sym_EQ_TILDE2] = ACTIONS(1578), + [anon_sym_BANG_TILDE2] = ACTIONS(1578), + [anon_sym_like2] = ACTIONS(1578), + [anon_sym_not_DASHlike2] = ACTIONS(1578), + [anon_sym_STAR_STAR2] = ACTIONS(1578), + [anon_sym_PLUS_PLUS2] = ACTIONS(1578), + [anon_sym_SLASH2] = ACTIONS(1578), + [anon_sym_mod2] = ACTIONS(1578), + [anon_sym_SLASH_SLASH2] = ACTIONS(1578), + [anon_sym_PLUS2] = ACTIONS(1578), + [anon_sym_bit_DASHshl2] = ACTIONS(1578), + [anon_sym_bit_DASHshr2] = ACTIONS(1578), + [anon_sym_bit_DASHand2] = ACTIONS(1578), + [anon_sym_bit_DASHxor2] = ACTIONS(1578), + [anon_sym_bit_DASHor2] = ACTIONS(1578), + [anon_sym_DOT_DOT2] = ACTIONS(1578), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1580), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1580), + [sym__entry_separator] = ACTIONS(1580), + [anon_sym_COLON2] = ACTIONS(1578), + [anon_sym_err_GT] = ACTIONS(1578), + [anon_sym_out_GT] = ACTIONS(1578), + [anon_sym_e_GT] = ACTIONS(1578), + [anon_sym_o_GT] = ACTIONS(1578), + [anon_sym_err_PLUSout_GT] = ACTIONS(1578), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1578), + [anon_sym_o_PLUSe_GT] = ACTIONS(1578), + [anon_sym_e_PLUSo_GT] = ACTIONS(1578), + [anon_sym_err_GT_GT] = ACTIONS(1578), + [anon_sym_out_GT_GT] = ACTIONS(1578), + [anon_sym_e_GT_GT] = ACTIONS(1578), + [anon_sym_o_GT_GT] = ACTIONS(1578), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1578), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1578), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1578), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1578), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(373)] = { + [sym_comment] = STATE(373), + [anon_sym_EQ] = ACTIONS(1460), + [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_RPAREN] = ACTIONS(1462), + [anon_sym_GT2] = ACTIONS(1460), + [anon_sym_DASH2] = ACTIONS(1460), + [anon_sym_RBRACE] = ACTIONS(1462), + [anon_sym_STAR2] = ACTIONS(1460), + [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(1460), + [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(1460), + [anon_sym_SLASH2] = ACTIONS(1460), + [anon_sym_mod2] = ACTIONS(1462), + [anon_sym_SLASH_SLASH2] = ACTIONS(1462), + [anon_sym_PLUS2] = ACTIONS(1460), + [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(1460), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1462), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1462), + [anon_sym_COLON2] = ACTIONS(1462), + [anon_sym_QMARK2] = ACTIONS(1582), + [anon_sym_DOT2] = ACTIONS(1460), + [anon_sym_err_GT] = ACTIONS(1460), + [anon_sym_out_GT] = ACTIONS(1460), + [anon_sym_e_GT] = ACTIONS(1460), + [anon_sym_o_GT] = ACTIONS(1460), + [anon_sym_err_PLUSout_GT] = ACTIONS(1460), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1460), + [anon_sym_o_PLUSe_GT] = ACTIONS(1460), + [anon_sym_e_PLUSo_GT] = ACTIONS(1460), + [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(3), }, - [STATE(370)] = { - [sym__match_pattern_expression] = STATE(4338), - [sym__match_pattern_value] = STATE(4736), - [sym__match_pattern_list] = STATE(4737), - [sym__match_pattern_record] = STATE(4742), - [sym_expr_parenthesized] = STATE(3970), - [sym__spread_parenthesized] = STATE(4915), - [sym_val_range] = STATE(4670), - [sym__val_range] = STATE(4693), - [sym__value] = STATE(4939), - [sym_val_nothing] = STATE(4671), - [sym_val_bool] = STATE(4060), - [sym__spread_variable] = STATE(4943), - [sym_val_variable] = STATE(3972), - [sym_val_cellpath] = STATE(4538), - [sym_val_number] = STATE(4671), - [sym__val_number_decimal] = STATE(3544), - [sym__val_number] = STATE(4386), - [sym_val_duration] = STATE(4671), - [sym_val_filesize] = STATE(4671), - [sym_val_binary] = STATE(4671), - [sym_val_string] = STATE(4671), - [sym__raw_str] = STATE(3665), - [sym__str_double_quotes] = STATE(3665), - [sym__str_single_quotes] = STATE(3665), - [sym__str_back_ticks] = STATE(3665), - [sym_val_interpolated] = STATE(4538), - [sym__inter_single_quotes] = STATE(4680), - [sym__inter_double_quotes] = STATE(4683), - [sym_val_list] = STATE(4538), - [sym__spread_list] = STATE(4915), - [sym_val_entry] = STATE(4777), - [sym_val_record] = STATE(4538), - [sym_val_table] = STATE(4671), - [sym_val_closure] = STATE(4538), - [sym__unquoted_in_list] = STATE(3907), - [sym__unquoted_in_list_with_expr] = STATE(4939), - [sym__unquoted_anonymous_prefix] = STATE(4693), - [sym_comment] = STATE(370), - [aux_sym__types_body_repeat1] = STATE(2153), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1421), - [aux_sym_list_body_repeat1] = STATE(530), - [anon_sym_true] = ACTIONS(1384), - [anon_sym_false] = ACTIONS(1384), - [anon_sym_null] = ACTIONS(1386), - [aux_sym_cmd_identifier_token3] = ACTIONS(1388), - [aux_sym_cmd_identifier_token4] = ACTIONS(1388), - [aux_sym_cmd_identifier_token5] = ACTIONS(1388), - [sym__newline] = ACTIONS(1572), - [anon_sym_LBRACK] = ACTIONS(1574), + [STATE(374)] = { + [sym_cell_path] = STATE(432), + [sym_path] = STATE(419), + [sym_comment] = STATE(374), + [aux_sym__where_predicate_lhs_repeat1] = STATE(398), + [ts_builtin_sym_end] = ACTIONS(1456), + [anon_sym_EQ] = ACTIONS(1454), + [anon_sym_PLUS_EQ] = ACTIONS(1456), + [anon_sym_DASH_EQ] = ACTIONS(1456), + [anon_sym_STAR_EQ] = ACTIONS(1456), + [anon_sym_SLASH_EQ] = ACTIONS(1456), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1456), + [anon_sym_in] = ACTIONS(1456), + [sym__newline] = ACTIONS(1456), + [anon_sym_SEMI] = ACTIONS(1456), + [anon_sym_PIPE] = ACTIONS(1456), + [anon_sym_err_GT_PIPE] = ACTIONS(1456), + [anon_sym_out_GT_PIPE] = ACTIONS(1456), + [anon_sym_e_GT_PIPE] = ACTIONS(1456), + [anon_sym_o_GT_PIPE] = ACTIONS(1456), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1456), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1456), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1456), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1456), + [anon_sym_GT2] = ACTIONS(1454), + [anon_sym_DASH2] = ACTIONS(1454), + [anon_sym_STAR2] = ACTIONS(1454), + [anon_sym_and2] = ACTIONS(1456), + [anon_sym_xor2] = ACTIONS(1456), + [anon_sym_or2] = ACTIONS(1456), + [anon_sym_not_DASHin2] = ACTIONS(1456), + [anon_sym_has2] = ACTIONS(1456), + [anon_sym_not_DASHhas2] = ACTIONS(1456), + [anon_sym_starts_DASHwith2] = ACTIONS(1456), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1456), + [anon_sym_ends_DASHwith2] = ACTIONS(1456), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1456), + [anon_sym_EQ_EQ2] = ACTIONS(1456), + [anon_sym_BANG_EQ2] = ACTIONS(1456), + [anon_sym_LT2] = ACTIONS(1454), + [anon_sym_LT_EQ2] = ACTIONS(1456), + [anon_sym_GT_EQ2] = ACTIONS(1456), + [anon_sym_EQ_TILDE2] = ACTIONS(1456), + [anon_sym_BANG_TILDE2] = ACTIONS(1456), + [anon_sym_like2] = ACTIONS(1456), + [anon_sym_not_DASHlike2] = ACTIONS(1456), + [anon_sym_STAR_STAR2] = ACTIONS(1456), + [anon_sym_PLUS_PLUS2] = ACTIONS(1454), + [anon_sym_SLASH2] = ACTIONS(1454), + [anon_sym_mod2] = ACTIONS(1456), + [anon_sym_SLASH_SLASH2] = ACTIONS(1456), + [anon_sym_PLUS2] = ACTIONS(1454), + [anon_sym_bit_DASHshl2] = ACTIONS(1456), + [anon_sym_bit_DASHshr2] = ACTIONS(1456), + [anon_sym_bit_DASHand2] = ACTIONS(1456), + [anon_sym_bit_DASHxor2] = ACTIONS(1456), + [anon_sym_bit_DASHor2] = ACTIONS(1456), + [anon_sym_DOT_DOT2] = ACTIONS(1454), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1456), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1456), + [anon_sym_DOT2] = ACTIONS(1584), + [anon_sym_err_GT] = ACTIONS(1454), + [anon_sym_out_GT] = ACTIONS(1454), + [anon_sym_e_GT] = ACTIONS(1454), + [anon_sym_o_GT] = ACTIONS(1454), + [anon_sym_err_PLUSout_GT] = ACTIONS(1454), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1454), + [anon_sym_o_PLUSe_GT] = ACTIONS(1454), + [anon_sym_e_PLUSo_GT] = ACTIONS(1454), + [anon_sym_err_GT_GT] = ACTIONS(1456), + [anon_sym_out_GT_GT] = ACTIONS(1456), + [anon_sym_e_GT_GT] = ACTIONS(1456), + [anon_sym_o_GT_GT] = ACTIONS(1456), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1456), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1456), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1456), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1456), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(375)] = { + [sym_expr_parenthesized] = STATE(4280), + [sym__spread_parenthesized] = STATE(4959), + [sym_val_range] = STATE(4961), + [sym__val_range] = STATE(4729), + [sym__value] = STATE(4961), + [sym_val_nothing] = STATE(4862), + [sym_val_bool] = STATE(4431), + [sym__spread_variable] = STATE(4968), + [sym_val_variable] = STATE(4050), + [sym_val_cellpath] = STATE(4862), + [sym_val_number] = STATE(4862), + [sym__val_number_decimal] = STATE(3653), + [sym__val_number] = STATE(4628), + [sym_val_duration] = STATE(4862), + [sym_val_filesize] = STATE(4862), + [sym_val_binary] = STATE(4862), + [sym_val_string] = STATE(4862), + [sym__raw_str] = STATE(3725), + [sym__str_double_quotes] = STATE(3725), + [sym__str_single_quotes] = STATE(3725), + [sym__str_back_ticks] = STATE(3725), + [sym_val_interpolated] = STATE(4862), + [sym__inter_single_quotes] = STATE(4846), + [sym__inter_double_quotes] = STATE(4847), + [sym_val_list] = STATE(4862), + [sym__spread_list] = STATE(4959), + [sym_list_body] = STATE(5213), + [sym_val_entry] = STATE(4745), + [sym_val_record] = STATE(4862), + [sym_val_table] = STATE(4862), + [sym_val_closure] = STATE(4862), + [sym__unquoted_in_list] = STATE(4479), + [sym__unquoted_in_list_with_expr] = STATE(4961), + [sym__unquoted_anonymous_prefix] = STATE(4729), + [sym_comment] = STATE(375), + [aux_sym__types_body_repeat1] = STATE(482), + [aux_sym_parameter_repeat2] = STATE(4481), + [aux_sym_list_body_repeat1] = STATE(558), + [anon_sym_true] = ACTIONS(1472), + [anon_sym_false] = ACTIONS(1472), + [anon_sym_null] = ACTIONS(1474), + [aux_sym_cmd_identifier_token3] = ACTIONS(1476), + [aux_sym_cmd_identifier_token4] = ACTIONS(1476), + [aux_sym_cmd_identifier_token5] = ACTIONS(1476), + [sym__newline] = ACTIONS(1586), + [anon_sym_LBRACK] = ACTIONS(1588), + [anon_sym_RBRACK] = ACTIONS(1482), [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_COMMA] = ACTIONS(1484), [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1402), - [anon_sym_DOT_DOT] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_DOT_DOT] = ACTIONS(1488), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1406), - [anon_sym_DOT_DOT_LT] = ACTIONS(1406), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1490), + [anon_sym_DOT_DOT_LT] = ACTIONS(1490), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1408), - [aux_sym__val_number_decimal_token2] = ACTIONS(1410), - [aux_sym__val_number_decimal_token3] = ACTIONS(1412), - [aux_sym__val_number_decimal_token4] = ACTIONS(1412), + [aux_sym__val_number_decimal_token1] = ACTIONS(1492), + [aux_sym__val_number_decimal_token2] = ACTIONS(1494), + [aux_sym__val_number_decimal_token3] = ACTIONS(1496), + [aux_sym__val_number_decimal_token4] = ACTIONS(1496), [aux_sym__val_number_token1] = ACTIONS(1414), [aux_sym__val_number_token2] = ACTIONS(1414), [aux_sym__val_number_token3] = ACTIONS(1414), [anon_sym_0b] = ACTIONS(1416), [anon_sym_0o] = ACTIONS(1418), [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1420), + [sym_val_date] = ACTIONS(1498), [anon_sym_DQUOTE] = ACTIONS(1422), [anon_sym_SQUOTE] = ACTIONS(1424), [anon_sym_BQUOTE] = ACTIONS(1426), @@ -77048,390 +78281,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1436), }, - [STATE(371)] = { - [sym_comment] = STATE(371), - [anon_sym_EQ] = ACTIONS(1448), - [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_RPAREN] = ACTIONS(1450), - [anon_sym_GT2] = ACTIONS(1448), - [anon_sym_DASH2] = ACTIONS(1448), - [anon_sym_RBRACE] = ACTIONS(1450), - [anon_sym_STAR2] = ACTIONS(1448), - [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(1448), - [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(1448), - [anon_sym_SLASH2] = ACTIONS(1448), - [anon_sym_mod2] = ACTIONS(1450), - [anon_sym_SLASH_SLASH2] = ACTIONS(1450), - [anon_sym_PLUS2] = ACTIONS(1448), - [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(1448), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1450), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1450), - [anon_sym_COLON2] = ACTIONS(1450), - [anon_sym_QMARK2] = ACTIONS(1578), - [anon_sym_DOT2] = ACTIONS(1448), - [anon_sym_err_GT] = ACTIONS(1448), - [anon_sym_out_GT] = ACTIONS(1448), - [anon_sym_e_GT] = ACTIONS(1448), - [anon_sym_o_GT] = ACTIONS(1448), - [anon_sym_err_PLUSout_GT] = ACTIONS(1448), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1448), - [anon_sym_o_PLUSe_GT] = ACTIONS(1448), - [anon_sym_e_PLUSo_GT] = ACTIONS(1448), - [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(3), - }, - [STATE(372)] = { - [sym_comment] = STATE(372), - [anon_sym_EQ] = ACTIONS(1580), - [anon_sym_PLUS_EQ] = ACTIONS(1580), - [anon_sym_DASH_EQ] = ACTIONS(1580), - [anon_sym_STAR_EQ] = ACTIONS(1580), - [anon_sym_SLASH_EQ] = ACTIONS(1580), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1580), - [anon_sym_in] = ACTIONS(1580), - [sym__newline] = ACTIONS(1580), - [anon_sym_SEMI] = ACTIONS(1580), - [anon_sym_PIPE] = ACTIONS(1580), - [anon_sym_err_GT_PIPE] = ACTIONS(1580), - [anon_sym_out_GT_PIPE] = ACTIONS(1580), - [anon_sym_e_GT_PIPE] = ACTIONS(1580), - [anon_sym_o_GT_PIPE] = ACTIONS(1580), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1580), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1580), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1580), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1580), - [anon_sym_RBRACK] = ACTIONS(1580), - [anon_sym_GT2] = ACTIONS(1580), - [anon_sym_DASH2] = ACTIONS(1580), - [anon_sym_RBRACE] = ACTIONS(1580), - [anon_sym_DOT_DOT] = ACTIONS(1580), - [anon_sym_STAR2] = ACTIONS(1580), - [anon_sym_and2] = ACTIONS(1580), - [anon_sym_xor2] = ACTIONS(1580), - [anon_sym_or2] = ACTIONS(1580), - [anon_sym_not_DASHin2] = ACTIONS(1580), - [anon_sym_has2] = ACTIONS(1580), - [anon_sym_not_DASHhas2] = ACTIONS(1580), - [anon_sym_starts_DASHwith2] = ACTIONS(1580), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1580), - [anon_sym_ends_DASHwith2] = ACTIONS(1580), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1580), - [anon_sym_EQ_EQ2] = ACTIONS(1580), - [anon_sym_BANG_EQ2] = ACTIONS(1580), - [anon_sym_LT2] = ACTIONS(1580), - [anon_sym_LT_EQ2] = ACTIONS(1580), - [anon_sym_GT_EQ2] = ACTIONS(1580), - [anon_sym_EQ_TILDE2] = ACTIONS(1580), - [anon_sym_BANG_TILDE2] = ACTIONS(1580), - [anon_sym_like2] = ACTIONS(1580), - [anon_sym_not_DASHlike2] = ACTIONS(1580), - [anon_sym_STAR_STAR2] = ACTIONS(1580), - [anon_sym_PLUS_PLUS2] = ACTIONS(1580), - [anon_sym_SLASH2] = ACTIONS(1580), - [anon_sym_mod2] = ACTIONS(1580), - [anon_sym_SLASH_SLASH2] = ACTIONS(1580), - [anon_sym_PLUS2] = ACTIONS(1580), - [anon_sym_bit_DASHshl2] = ACTIONS(1580), - [anon_sym_bit_DASHshr2] = ACTIONS(1580), - [anon_sym_bit_DASHand2] = ACTIONS(1580), - [anon_sym_bit_DASHxor2] = ACTIONS(1580), - [anon_sym_bit_DASHor2] = ACTIONS(1580), - [anon_sym_DOT_DOT2] = ACTIONS(1580), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1582), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1582), - [sym__entry_separator] = ACTIONS(1582), - [anon_sym_COLON2] = ACTIONS(1580), - [anon_sym_err_GT] = ACTIONS(1580), - [anon_sym_out_GT] = ACTIONS(1580), - [anon_sym_e_GT] = ACTIONS(1580), - [anon_sym_o_GT] = ACTIONS(1580), - [anon_sym_err_PLUSout_GT] = ACTIONS(1580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1580), - [anon_sym_o_PLUSe_GT] = ACTIONS(1580), - [anon_sym_e_PLUSo_GT] = ACTIONS(1580), - [anon_sym_err_GT_GT] = ACTIONS(1580), - [anon_sym_out_GT_GT] = ACTIONS(1580), - [anon_sym_e_GT_GT] = ACTIONS(1580), - [anon_sym_o_GT_GT] = ACTIONS(1580), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1580), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1580), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1580), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1580), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(373)] = { - [sym_comment] = STATE(373), - [anon_sym_EQ] = ACTIONS(1448), - [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(1448), - [anon_sym_DASH2] = ACTIONS(1448), - [anon_sym_RBRACE] = ACTIONS(1448), - [anon_sym_STAR2] = ACTIONS(1448), - [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(1448), - [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(1448), - [anon_sym_mod2] = ACTIONS(1448), - [anon_sym_SLASH_SLASH2] = ACTIONS(1448), - [anon_sym_PLUS2] = ACTIONS(1448), - [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(1448), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1450), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1450), - [sym__entry_separator] = ACTIONS(1450), - [anon_sym_COLON2] = ACTIONS(1448), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_DOT2] = ACTIONS(1448), - [anon_sym_err_GT] = ACTIONS(1448), - [anon_sym_out_GT] = ACTIONS(1448), - [anon_sym_e_GT] = ACTIONS(1448), - [anon_sym_o_GT] = ACTIONS(1448), - [anon_sym_err_PLUSout_GT] = ACTIONS(1448), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1448), - [anon_sym_o_PLUSe_GT] = ACTIONS(1448), - [anon_sym_e_PLUSo_GT] = ACTIONS(1448), - [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(103), - }, - [STATE(374)] = { - [sym_comment] = STATE(374), - [anon_sym_EQ] = ACTIONS(1448), - [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_RPAREN] = ACTIONS(1450), - [anon_sym_GT2] = ACTIONS(1448), - [anon_sym_DASH2] = ACTIONS(1448), - [anon_sym_RBRACE] = ACTIONS(1450), - [anon_sym_STAR2] = ACTIONS(1448), - [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(1448), - [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(1448), - [anon_sym_SLASH2] = ACTIONS(1448), - [anon_sym_mod2] = ACTIONS(1450), - [anon_sym_SLASH_SLASH2] = ACTIONS(1450), - [anon_sym_PLUS2] = ACTIONS(1448), - [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(1448), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1450), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1450), - [anon_sym_COLON2] = ACTIONS(1450), - [anon_sym_BANG] = ACTIONS(1584), - [anon_sym_DOT2] = ACTIONS(1448), - [anon_sym_err_GT] = ACTIONS(1448), - [anon_sym_out_GT] = ACTIONS(1448), - [anon_sym_e_GT] = ACTIONS(1448), - [anon_sym_o_GT] = ACTIONS(1448), - [anon_sym_err_PLUSout_GT] = ACTIONS(1448), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1448), - [anon_sym_o_PLUSe_GT] = ACTIONS(1448), - [anon_sym_e_PLUSo_GT] = ACTIONS(1448), - [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(3), - }, - [STATE(375)] = { - [sym_expr_parenthesized] = STATE(4132), - [sym__spread_parenthesized] = STATE(4915), - [sym_val_range] = STATE(4939), - [sym__val_range] = STATE(4693), - [sym__value] = STATE(4939), - [sym_val_nothing] = STATE(4538), - [sym_val_bool] = STATE(4320), - [sym__spread_variable] = STATE(4943), - [sym_val_variable] = STATE(3965), - [sym_val_cellpath] = STATE(4538), - [sym_val_number] = STATE(4538), - [sym__val_number_decimal] = STATE(3621), - [sym__val_number] = STATE(4386), - [sym_val_duration] = STATE(4538), - [sym_val_filesize] = STATE(4538), - [sym_val_binary] = STATE(4538), - [sym_val_string] = STATE(4538), - [sym__raw_str] = STATE(3665), - [sym__str_double_quotes] = STATE(3665), - [sym__str_single_quotes] = STATE(3665), - [sym__str_back_ticks] = STATE(3665), - [sym_val_interpolated] = STATE(4538), - [sym__inter_single_quotes] = STATE(4680), - [sym__inter_double_quotes] = STATE(4683), - [sym_val_list] = STATE(4538), - [sym__spread_list] = STATE(4915), - [sym_list_body] = STATE(5001), - [sym_val_entry] = STATE(4524), - [sym_val_record] = STATE(4538), - [sym_val_table] = STATE(4538), - [sym_val_closure] = STATE(4538), - [sym__unquoted_in_list] = STATE(4401), - [sym__unquoted_in_list_with_expr] = STATE(4939), - [sym__unquoted_anonymous_prefix] = STATE(4693), - [sym_comment] = STATE(375), - [aux_sym__types_body_repeat1] = STATE(465), - [aux_sym_parameter_repeat2] = STATE(4405), - [aux_sym_list_body_repeat1] = STATE(599), - [anon_sym_true] = ACTIONS(1468), - [anon_sym_false] = ACTIONS(1468), - [anon_sym_null] = ACTIONS(1470), - [aux_sym_cmd_identifier_token3] = ACTIONS(1472), - [aux_sym_cmd_identifier_token4] = ACTIONS(1472), - [aux_sym_cmd_identifier_token5] = ACTIONS(1472), + [STATE(376)] = { + [sym_expr_parenthesized] = STATE(4280), + [sym__spread_parenthesized] = STATE(4959), + [sym_val_range] = STATE(4961), + [sym__val_range] = STATE(4729), + [sym__value] = STATE(4961), + [sym_val_nothing] = STATE(4862), + [sym_val_bool] = STATE(4431), + [sym__spread_variable] = STATE(4968), + [sym_val_variable] = STATE(4050), + [sym_val_cellpath] = STATE(4862), + [sym_val_number] = STATE(4862), + [sym__val_number_decimal] = STATE(3653), + [sym__val_number] = STATE(4628), + [sym_val_duration] = STATE(4862), + [sym_val_filesize] = STATE(4862), + [sym_val_binary] = STATE(4862), + [sym_val_string] = STATE(4862), + [sym__raw_str] = STATE(3725), + [sym__str_double_quotes] = STATE(3725), + [sym__str_single_quotes] = STATE(3725), + [sym__str_back_ticks] = STATE(3725), + [sym_val_interpolated] = STATE(4862), + [sym__inter_single_quotes] = STATE(4846), + [sym__inter_double_quotes] = STATE(4847), + [sym_val_list] = STATE(4862), + [sym__spread_list] = STATE(4959), + [sym_list_body] = STATE(5108), + [sym_val_entry] = STATE(4745), + [sym_val_record] = STATE(4862), + [sym_val_table] = STATE(4862), + [sym_val_closure] = STATE(4862), + [sym__unquoted_in_list] = STATE(4479), + [sym__unquoted_in_list_with_expr] = STATE(4961), + [sym__unquoted_anonymous_prefix] = STATE(4729), + [sym_comment] = STATE(376), + [aux_sym__types_body_repeat1] = STATE(482), + [aux_sym_parameter_repeat2] = STATE(4481), + [aux_sym_list_body_repeat1] = STATE(558), + [anon_sym_true] = ACTIONS(1472), + [anon_sym_false] = ACTIONS(1472), + [anon_sym_null] = ACTIONS(1474), + [aux_sym_cmd_identifier_token3] = ACTIONS(1476), + [aux_sym_cmd_identifier_token4] = ACTIONS(1476), + [aux_sym_cmd_identifier_token5] = ACTIONS(1476), [sym__newline] = ACTIONS(1586), [anon_sym_LBRACK] = ACTIONS(1588), [anon_sym_RBRACK] = ACTIONS(1590), [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1480), + [anon_sym_COMMA] = ACTIONS(1484), [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1482), - [anon_sym_DOT_DOT] = ACTIONS(1484), + [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_DOT_DOT] = ACTIONS(1488), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1486), - [anon_sym_DOT_DOT_LT] = ACTIONS(1486), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1490), + [anon_sym_DOT_DOT_LT] = ACTIONS(1490), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1488), - [aux_sym__val_number_decimal_token2] = ACTIONS(1490), - [aux_sym__val_number_decimal_token3] = ACTIONS(1492), - [aux_sym__val_number_decimal_token4] = ACTIONS(1492), + [aux_sym__val_number_decimal_token1] = ACTIONS(1492), + [aux_sym__val_number_decimal_token2] = ACTIONS(1494), + [aux_sym__val_number_decimal_token3] = ACTIONS(1496), + [aux_sym__val_number_decimal_token4] = ACTIONS(1496), [aux_sym__val_number_token1] = ACTIONS(1414), [aux_sym__val_number_token2] = ACTIONS(1414), [aux_sym__val_number_token3] = ACTIONS(1414), [anon_sym_0b] = ACTIONS(1416), [anon_sym_0o] = ACTIONS(1418), [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1494), + [sym_val_date] = ACTIONS(1498), [anon_sym_DQUOTE] = ACTIONS(1422), [anon_sym_SQUOTE] = ACTIONS(1424), [anon_sym_BQUOTE] = ACTIONS(1426), @@ -77442,152 +78359,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1436), }, - [STATE(376)] = { - [sym_comment] = STATE(376), - [ts_builtin_sym_end] = ACTIONS(1525), - [anon_sym_EQ] = ACTIONS(1523), - [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(1523), - [anon_sym_DASH2] = ACTIONS(1523), - [anon_sym_STAR2] = ACTIONS(1523), - [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(1523), - [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(1523), - [anon_sym_SLASH2] = ACTIONS(1523), - [anon_sym_mod2] = ACTIONS(1525), - [anon_sym_SLASH_SLASH2] = ACTIONS(1525), - [anon_sym_PLUS2] = ACTIONS(1523), - [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(1523), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1525), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1525), - [anon_sym_QMARK2] = ACTIONS(1525), - [anon_sym_BANG] = ACTIONS(1523), - [anon_sym_DOT2] = ACTIONS(1523), - [anon_sym_err_GT] = ACTIONS(1523), - [anon_sym_out_GT] = ACTIONS(1523), - [anon_sym_e_GT] = ACTIONS(1523), - [anon_sym_o_GT] = ACTIONS(1523), - [anon_sym_err_PLUSout_GT] = ACTIONS(1523), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1523), - [anon_sym_o_PLUSe_GT] = ACTIONS(1523), - [anon_sym_e_PLUSo_GT] = ACTIONS(1523), - [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(3), - }, [STATE(377)] = { - [sym_expr_parenthesized] = STATE(4132), - [sym__spread_parenthesized] = STATE(4915), - [sym_val_range] = STATE(4939), - [sym__val_range] = STATE(4693), - [sym__value] = STATE(4939), - [sym_val_nothing] = STATE(4538), - [sym_val_bool] = STATE(4320), - [sym__spread_variable] = STATE(4943), - [sym_val_variable] = STATE(3965), - [sym_val_cellpath] = STATE(4538), - [sym_val_number] = STATE(4538), - [sym__val_number_decimal] = STATE(3621), - [sym__val_number] = STATE(4386), - [sym_val_duration] = STATE(4538), - [sym_val_filesize] = STATE(4538), - [sym_val_binary] = STATE(4538), - [sym_val_string] = STATE(4538), - [sym__raw_str] = STATE(3665), - [sym__str_double_quotes] = STATE(3665), - [sym__str_single_quotes] = STATE(3665), - [sym__str_back_ticks] = STATE(3665), - [sym_val_interpolated] = STATE(4538), - [sym__inter_single_quotes] = STATE(4680), - [sym__inter_double_quotes] = STATE(4683), - [sym_val_list] = STATE(4538), - [sym__spread_list] = STATE(4915), - [sym_list_body] = STATE(5353), - [sym_val_entry] = STATE(4524), - [sym_val_record] = STATE(4538), - [sym_val_table] = STATE(4538), - [sym_val_closure] = STATE(4538), - [sym__unquoted_in_list] = STATE(4401), - [sym__unquoted_in_list_with_expr] = STATE(4939), - [sym__unquoted_anonymous_prefix] = STATE(4693), [sym_comment] = STATE(377), - [aux_sym__types_body_repeat1] = STATE(465), - [aux_sym_parameter_repeat2] = STATE(4405), - [aux_sym_list_body_repeat1] = STATE(599), - [anon_sym_true] = ACTIONS(1468), - [anon_sym_false] = ACTIONS(1468), - [anon_sym_null] = ACTIONS(1470), - [aux_sym_cmd_identifier_token3] = ACTIONS(1472), - [aux_sym_cmd_identifier_token4] = ACTIONS(1472), - [aux_sym_cmd_identifier_token5] = ACTIONS(1472), + [ts_builtin_sym_end] = ACTIONS(1514), + [anon_sym_EQ] = ACTIONS(1512), + [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(1512), + [anon_sym_DASH2] = ACTIONS(1512), + [anon_sym_STAR2] = ACTIONS(1512), + [anon_sym_and2] = ACTIONS(1514), + [anon_sym_xor2] = ACTIONS(1514), + [anon_sym_or2] = ACTIONS(1514), + [anon_sym_not_DASHin2] = ACTIONS(1514), + [anon_sym_has2] = ACTIONS(1514), + [anon_sym_not_DASHhas2] = ACTIONS(1514), + [anon_sym_starts_DASHwith2] = ACTIONS(1514), + [anon_sym_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(1512), + [anon_sym_LT_EQ2] = ACTIONS(1514), + [anon_sym_GT_EQ2] = ACTIONS(1514), + [anon_sym_EQ_TILDE2] = ACTIONS(1514), + [anon_sym_BANG_TILDE2] = ACTIONS(1514), + [anon_sym_like2] = ACTIONS(1514), + [anon_sym_not_DASHlike2] = ACTIONS(1514), + [anon_sym_STAR_STAR2] = ACTIONS(1514), + [anon_sym_PLUS_PLUS2] = ACTIONS(1512), + [anon_sym_SLASH2] = ACTIONS(1512), + [anon_sym_mod2] = ACTIONS(1514), + [anon_sym_SLASH_SLASH2] = ACTIONS(1514), + [anon_sym_PLUS2] = ACTIONS(1512), + [anon_sym_bit_DASHshl2] = ACTIONS(1514), + [anon_sym_bit_DASHshr2] = ACTIONS(1514), + [anon_sym_bit_DASHand2] = ACTIONS(1514), + [anon_sym_bit_DASHxor2] = ACTIONS(1514), + [anon_sym_bit_DASHor2] = ACTIONS(1514), + [anon_sym_DOT_DOT2] = ACTIONS(1512), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1514), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1514), + [anon_sym_QMARK2] = ACTIONS(1514), + [anon_sym_BANG] = ACTIONS(1512), + [anon_sym_DOT2] = ACTIONS(1512), + [anon_sym_err_GT] = ACTIONS(1512), + [anon_sym_out_GT] = ACTIONS(1512), + [anon_sym_e_GT] = ACTIONS(1512), + [anon_sym_o_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT] = ACTIONS(1512), + [anon_sym_err_GT_GT] = ACTIONS(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), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(378)] = { + [sym_expr_parenthesized] = STATE(4280), + [sym__spread_parenthesized] = STATE(4959), + [sym_val_range] = STATE(4961), + [sym__val_range] = STATE(4729), + [sym__value] = STATE(4961), + [sym_val_nothing] = STATE(4862), + [sym_val_bool] = STATE(4431), + [sym__spread_variable] = STATE(4968), + [sym_val_variable] = STATE(4050), + [sym_val_cellpath] = STATE(4862), + [sym_val_number] = STATE(4862), + [sym__val_number_decimal] = STATE(3653), + [sym__val_number] = STATE(4628), + [sym_val_duration] = STATE(4862), + [sym_val_filesize] = STATE(4862), + [sym_val_binary] = STATE(4862), + [sym_val_string] = STATE(4862), + [sym__raw_str] = STATE(3725), + [sym__str_double_quotes] = STATE(3725), + [sym__str_single_quotes] = STATE(3725), + [sym__str_back_ticks] = STATE(3725), + [sym_val_interpolated] = STATE(4862), + [sym__inter_single_quotes] = STATE(4846), + [sym__inter_double_quotes] = STATE(4847), + [sym_val_list] = STATE(4862), + [sym__spread_list] = STATE(4959), + [sym_list_body] = STATE(5242), + [sym_val_entry] = STATE(4745), + [sym_val_record] = STATE(4862), + [sym_val_table] = STATE(4862), + [sym_val_closure] = STATE(4862), + [sym__unquoted_in_list] = STATE(4479), + [sym__unquoted_in_list_with_expr] = STATE(4961), + [sym__unquoted_anonymous_prefix] = STATE(4729), + [sym_comment] = STATE(378), + [aux_sym__types_body_repeat1] = STATE(482), + [aux_sym_parameter_repeat2] = STATE(4481), + [aux_sym_list_body_repeat1] = STATE(558), + [anon_sym_true] = ACTIONS(1472), + [anon_sym_false] = ACTIONS(1472), + [anon_sym_null] = ACTIONS(1474), + [aux_sym_cmd_identifier_token3] = ACTIONS(1476), + [aux_sym_cmd_identifier_token4] = ACTIONS(1476), + [aux_sym_cmd_identifier_token5] = ACTIONS(1476), [sym__newline] = ACTIONS(1586), [anon_sym_LBRACK] = ACTIONS(1588), - [anon_sym_RBRACK] = ACTIONS(1551), + [anon_sym_RBRACK] = ACTIONS(1592), [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1480), + [anon_sym_COMMA] = ACTIONS(1484), [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1482), - [anon_sym_DOT_DOT] = ACTIONS(1484), + [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_DOT_DOT] = ACTIONS(1488), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1486), - [anon_sym_DOT_DOT_LT] = ACTIONS(1486), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1490), + [anon_sym_DOT_DOT_LT] = ACTIONS(1490), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1488), - [aux_sym__val_number_decimal_token2] = ACTIONS(1490), - [aux_sym__val_number_decimal_token3] = ACTIONS(1492), - [aux_sym__val_number_decimal_token4] = ACTIONS(1492), + [aux_sym__val_number_decimal_token1] = ACTIONS(1492), + [aux_sym__val_number_decimal_token2] = ACTIONS(1494), + [aux_sym__val_number_decimal_token3] = ACTIONS(1496), + [aux_sym__val_number_decimal_token4] = ACTIONS(1496), [aux_sym__val_number_token1] = ACTIONS(1414), [aux_sym__val_number_token2] = ACTIONS(1414), [aux_sym__val_number_token3] = ACTIONS(1414), [anon_sym_0b] = ACTIONS(1416), [anon_sym_0o] = ACTIONS(1418), [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1494), + [sym_val_date] = ACTIONS(1498), [anon_sym_DQUOTE] = ACTIONS(1422), [anon_sym_SQUOTE] = ACTIONS(1424), [anon_sym_BQUOTE] = ACTIONS(1426), @@ -77598,166 +78515,242 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1436), }, - [STATE(378)] = { - [sym_comment] = STATE(378), - [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_QMARK2] = ACTIONS(1537), - [anon_sym_BANG] = 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(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(379)] = { [sym_comment] = STATE(379), - [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(1496), - [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), + [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_QMARK2] = ACTIONS(1522), + [anon_sym_BANG] = 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(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(380)] = { - [sym_path] = STATE(424), [sym_comment] = STATE(380), - [aux_sym__where_predicate_lhs_repeat1] = STATE(397), + [ts_builtin_sym_end] = ACTIONS(1530), + [anon_sym_EQ] = ACTIONS(1528), + [anon_sym_PLUS_EQ] = ACTIONS(1530), + [anon_sym_DASH_EQ] = ACTIONS(1530), + [anon_sym_STAR_EQ] = ACTIONS(1530), + [anon_sym_SLASH_EQ] = ACTIONS(1530), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1530), + [anon_sym_in] = ACTIONS(1530), + [sym__newline] = ACTIONS(1530), + [anon_sym_SEMI] = ACTIONS(1530), + [anon_sym_PIPE] = ACTIONS(1530), + [anon_sym_err_GT_PIPE] = ACTIONS(1530), + [anon_sym_out_GT_PIPE] = ACTIONS(1530), + [anon_sym_e_GT_PIPE] = ACTIONS(1530), + [anon_sym_o_GT_PIPE] = ACTIONS(1530), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1530), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1530), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1530), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1530), + [anon_sym_GT2] = ACTIONS(1528), + [anon_sym_DASH2] = ACTIONS(1528), + [anon_sym_STAR2] = ACTIONS(1528), + [anon_sym_and2] = ACTIONS(1530), + [anon_sym_xor2] = ACTIONS(1530), + [anon_sym_or2] = ACTIONS(1530), + [anon_sym_not_DASHin2] = ACTIONS(1530), + [anon_sym_has2] = ACTIONS(1530), + [anon_sym_not_DASHhas2] = ACTIONS(1530), + [anon_sym_starts_DASHwith2] = ACTIONS(1530), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1530), + [anon_sym_ends_DASHwith2] = ACTIONS(1530), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1530), + [anon_sym_EQ_EQ2] = ACTIONS(1530), + [anon_sym_BANG_EQ2] = ACTIONS(1530), + [anon_sym_LT2] = ACTIONS(1528), + [anon_sym_LT_EQ2] = ACTIONS(1530), + [anon_sym_GT_EQ2] = ACTIONS(1530), + [anon_sym_EQ_TILDE2] = ACTIONS(1530), + [anon_sym_BANG_TILDE2] = ACTIONS(1530), + [anon_sym_like2] = ACTIONS(1530), + [anon_sym_not_DASHlike2] = ACTIONS(1530), + [anon_sym_STAR_STAR2] = ACTIONS(1530), + [anon_sym_PLUS_PLUS2] = ACTIONS(1528), + [anon_sym_SLASH2] = ACTIONS(1528), + [anon_sym_mod2] = ACTIONS(1530), + [anon_sym_SLASH_SLASH2] = ACTIONS(1530), + [anon_sym_PLUS2] = ACTIONS(1528), + [anon_sym_bit_DASHshl2] = ACTIONS(1530), + [anon_sym_bit_DASHshr2] = ACTIONS(1530), + [anon_sym_bit_DASHand2] = ACTIONS(1530), + [anon_sym_bit_DASHxor2] = ACTIONS(1530), + [anon_sym_bit_DASHor2] = ACTIONS(1530), + [anon_sym_DOT_DOT2] = ACTIONS(1528), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1530), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1530), + [anon_sym_QMARK2] = ACTIONS(1530), + [anon_sym_BANG] = ACTIONS(1528), + [anon_sym_DOT2] = ACTIONS(1528), + [anon_sym_err_GT] = ACTIONS(1528), + [anon_sym_out_GT] = ACTIONS(1528), + [anon_sym_e_GT] = ACTIONS(1528), + [anon_sym_o_GT] = ACTIONS(1528), + [anon_sym_err_PLUSout_GT] = ACTIONS(1528), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), + [anon_sym_o_PLUSe_GT] = ACTIONS(1528), + [anon_sym_e_PLUSo_GT] = ACTIONS(1528), + [anon_sym_err_GT_GT] = ACTIONS(1530), + [anon_sym_out_GT_GT] = ACTIONS(1530), + [anon_sym_e_GT_GT] = ACTIONS(1530), + [anon_sym_o_GT_GT] = ACTIONS(1530), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1530), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1530), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1530), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1530), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(381)] = { + [sym_comment] = STATE(381), + [ts_builtin_sym_end] = ACTIONS(1502), + [anon_sym_EQ] = ACTIONS(1500), + [anon_sym_PLUS_EQ] = ACTIONS(1502), + [anon_sym_DASH_EQ] = ACTIONS(1502), + [anon_sym_STAR_EQ] = ACTIONS(1502), + [anon_sym_SLASH_EQ] = ACTIONS(1502), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1502), + [anon_sym_in] = ACTIONS(1502), + [sym__newline] = ACTIONS(1502), + [anon_sym_SEMI] = ACTIONS(1502), + [anon_sym_PIPE] = ACTIONS(1502), + [anon_sym_err_GT_PIPE] = ACTIONS(1502), + [anon_sym_out_GT_PIPE] = ACTIONS(1502), + [anon_sym_e_GT_PIPE] = ACTIONS(1502), + [anon_sym_o_GT_PIPE] = ACTIONS(1502), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1502), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1502), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1502), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1502), + [anon_sym_GT2] = ACTIONS(1500), + [anon_sym_DASH2] = ACTIONS(1500), + [anon_sym_STAR2] = ACTIONS(1500), + [anon_sym_and2] = ACTIONS(1502), + [anon_sym_xor2] = ACTIONS(1502), + [anon_sym_or2] = ACTIONS(1502), + [anon_sym_not_DASHin2] = ACTIONS(1502), + [anon_sym_has2] = ACTIONS(1502), + [anon_sym_not_DASHhas2] = ACTIONS(1502), + [anon_sym_starts_DASHwith2] = ACTIONS(1502), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1502), + [anon_sym_ends_DASHwith2] = ACTIONS(1502), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1502), + [anon_sym_EQ_EQ2] = ACTIONS(1502), + [anon_sym_BANG_EQ2] = ACTIONS(1502), + [anon_sym_LT2] = ACTIONS(1500), + [anon_sym_LT_EQ2] = ACTIONS(1502), + [anon_sym_GT_EQ2] = ACTIONS(1502), + [anon_sym_EQ_TILDE2] = ACTIONS(1502), + [anon_sym_BANG_TILDE2] = ACTIONS(1502), + [anon_sym_like2] = ACTIONS(1502), + [anon_sym_not_DASHlike2] = ACTIONS(1502), + [anon_sym_STAR_STAR2] = ACTIONS(1502), + [anon_sym_PLUS_PLUS2] = ACTIONS(1500), + [anon_sym_SLASH2] = ACTIONS(1500), + [anon_sym_mod2] = ACTIONS(1502), + [anon_sym_SLASH_SLASH2] = ACTIONS(1502), + [anon_sym_PLUS2] = ACTIONS(1500), + [anon_sym_bit_DASHshl2] = ACTIONS(1502), + [anon_sym_bit_DASHshr2] = ACTIONS(1502), + [anon_sym_bit_DASHand2] = ACTIONS(1502), + [anon_sym_bit_DASHxor2] = ACTIONS(1502), + [anon_sym_bit_DASHor2] = ACTIONS(1502), + [anon_sym_DOT_DOT2] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1502), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1502), + [anon_sym_QMARK2] = ACTIONS(1502), + [anon_sym_BANG] = ACTIONS(1500), + [anon_sym_DOT2] = ACTIONS(1500), + [anon_sym_err_GT] = ACTIONS(1500), + [anon_sym_out_GT] = ACTIONS(1500), + [anon_sym_e_GT] = ACTIONS(1500), + [anon_sym_o_GT] = ACTIONS(1500), + [anon_sym_err_PLUSout_GT] = ACTIONS(1500), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1500), + [anon_sym_o_PLUSe_GT] = ACTIONS(1500), + [anon_sym_e_PLUSo_GT] = ACTIONS(1500), + [anon_sym_err_GT_GT] = ACTIONS(1502), + [anon_sym_out_GT_GT] = ACTIONS(1502), + [anon_sym_e_GT_GT] = ACTIONS(1502), + [anon_sym_o_GT_GT] = ACTIONS(1502), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1502), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1502), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1502), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1502), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(382)] = { + [sym_comment] = STATE(382), [ts_builtin_sym_end] = ACTIONS(1506), [anon_sym_EQ] = ACTIONS(1504), [anon_sym_PLUS_EQ] = ACTIONS(1506), @@ -77813,7 +78806,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1504), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1506), [anon_sym_DOT_DOT_LT2] = ACTIONS(1506), - [anon_sym_DOT2] = ACTIONS(1566), + [anon_sym_QMARK2] = ACTIONS(1506), + [anon_sym_BANG] = ACTIONS(1504), + [anon_sym_DOT2] = ACTIONS(1504), [anon_sym_err_GT] = ACTIONS(1504), [anon_sym_out_GT] = ACTIONS(1504), [anon_sym_e_GT] = ACTIONS(1504), @@ -77832,74 +78827,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1506), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(381)] = { - [sym_expr_parenthesized] = STATE(4132), - [sym__spread_parenthesized] = STATE(4915), - [sym_val_range] = STATE(4939), - [sym__val_range] = STATE(4693), - [sym__value] = STATE(4939), - [sym_val_nothing] = STATE(4538), - [sym_val_bool] = STATE(4320), - [sym__spread_variable] = STATE(4943), - [sym_val_variable] = STATE(3965), - [sym_val_cellpath] = STATE(4538), - [sym_val_number] = STATE(4538), - [sym__val_number_decimal] = STATE(3621), - [sym__val_number] = STATE(4386), - [sym_val_duration] = STATE(4538), - [sym_val_filesize] = STATE(4538), - [sym_val_binary] = STATE(4538), - [sym_val_string] = STATE(4538), - [sym__raw_str] = STATE(3665), - [sym__str_double_quotes] = STATE(3665), - [sym__str_single_quotes] = STATE(3665), - [sym__str_back_ticks] = STATE(3665), - [sym_val_interpolated] = STATE(4538), - [sym__inter_single_quotes] = STATE(4680), - [sym__inter_double_quotes] = STATE(4683), - [sym_val_list] = STATE(4538), - [sym__spread_list] = STATE(4915), - [sym_list_body] = STATE(5084), - [sym_val_entry] = STATE(4524), - [sym_val_record] = STATE(4538), - [sym_val_table] = STATE(4538), - [sym_val_closure] = STATE(4538), - [sym__unquoted_in_list] = STATE(4401), - [sym__unquoted_in_list_with_expr] = STATE(4939), - [sym__unquoted_anonymous_prefix] = STATE(4693), - [sym_comment] = STATE(381), - [aux_sym__types_body_repeat1] = STATE(465), - [aux_sym_parameter_repeat2] = STATE(4405), - [aux_sym_list_body_repeat1] = STATE(599), - [anon_sym_true] = ACTIONS(1468), - [anon_sym_false] = ACTIONS(1468), - [anon_sym_null] = ACTIONS(1470), - [aux_sym_cmd_identifier_token3] = ACTIONS(1472), - [aux_sym_cmd_identifier_token4] = ACTIONS(1472), - [aux_sym_cmd_identifier_token5] = ACTIONS(1472), + [STATE(383)] = { + [sym_path] = STATE(419), + [sym_comment] = STATE(383), + [aux_sym__where_predicate_lhs_repeat1] = STATE(383), + [ts_builtin_sym_end] = ACTIONS(1534), + [anon_sym_EQ] = ACTIONS(1532), + [anon_sym_PLUS_EQ] = ACTIONS(1534), + [anon_sym_DASH_EQ] = ACTIONS(1534), + [anon_sym_STAR_EQ] = ACTIONS(1534), + [anon_sym_SLASH_EQ] = ACTIONS(1534), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1534), + [anon_sym_in] = ACTIONS(1534), + [sym__newline] = ACTIONS(1534), + [anon_sym_SEMI] = ACTIONS(1534), + [anon_sym_PIPE] = ACTIONS(1534), + [anon_sym_err_GT_PIPE] = ACTIONS(1534), + [anon_sym_out_GT_PIPE] = ACTIONS(1534), + [anon_sym_e_GT_PIPE] = ACTIONS(1534), + [anon_sym_o_GT_PIPE] = ACTIONS(1534), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1534), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1534), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1534), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1534), + [anon_sym_GT2] = ACTIONS(1532), + [anon_sym_DASH2] = ACTIONS(1532), + [anon_sym_STAR2] = ACTIONS(1532), + [anon_sym_and2] = ACTIONS(1534), + [anon_sym_xor2] = ACTIONS(1534), + [anon_sym_or2] = ACTIONS(1534), + [anon_sym_not_DASHin2] = ACTIONS(1534), + [anon_sym_has2] = ACTIONS(1534), + [anon_sym_not_DASHhas2] = ACTIONS(1534), + [anon_sym_starts_DASHwith2] = ACTIONS(1534), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1534), + [anon_sym_ends_DASHwith2] = ACTIONS(1534), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1534), + [anon_sym_EQ_EQ2] = ACTIONS(1534), + [anon_sym_BANG_EQ2] = ACTIONS(1534), + [anon_sym_LT2] = ACTIONS(1532), + [anon_sym_LT_EQ2] = ACTIONS(1534), + [anon_sym_GT_EQ2] = ACTIONS(1534), + [anon_sym_EQ_TILDE2] = ACTIONS(1534), + [anon_sym_BANG_TILDE2] = ACTIONS(1534), + [anon_sym_like2] = ACTIONS(1534), + [anon_sym_not_DASHlike2] = ACTIONS(1534), + [anon_sym_STAR_STAR2] = ACTIONS(1534), + [anon_sym_PLUS_PLUS2] = ACTIONS(1532), + [anon_sym_SLASH2] = ACTIONS(1532), + [anon_sym_mod2] = ACTIONS(1534), + [anon_sym_SLASH_SLASH2] = ACTIONS(1534), + [anon_sym_PLUS2] = ACTIONS(1532), + [anon_sym_bit_DASHshl2] = ACTIONS(1534), + [anon_sym_bit_DASHshr2] = ACTIONS(1534), + [anon_sym_bit_DASHand2] = ACTIONS(1534), + [anon_sym_bit_DASHxor2] = ACTIONS(1534), + [anon_sym_bit_DASHor2] = ACTIONS(1534), + [anon_sym_DOT_DOT2] = ACTIONS(1532), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1534), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1534), + [anon_sym_DOT2] = ACTIONS(1594), + [anon_sym_err_GT] = ACTIONS(1532), + [anon_sym_out_GT] = ACTIONS(1532), + [anon_sym_e_GT] = ACTIONS(1532), + [anon_sym_o_GT] = ACTIONS(1532), + [anon_sym_err_PLUSout_GT] = ACTIONS(1532), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1532), + [anon_sym_o_PLUSe_GT] = ACTIONS(1532), + [anon_sym_e_PLUSo_GT] = ACTIONS(1532), + [anon_sym_err_GT_GT] = ACTIONS(1534), + [anon_sym_out_GT_GT] = ACTIONS(1534), + [anon_sym_e_GT_GT] = ACTIONS(1534), + [anon_sym_o_GT_GT] = ACTIONS(1534), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1534), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1534), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1534), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1534), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(384)] = { + [sym_expr_parenthesized] = STATE(4280), + [sym__spread_parenthesized] = STATE(4959), + [sym_val_range] = STATE(4961), + [sym__val_range] = STATE(4729), + [sym__value] = STATE(4961), + [sym_val_nothing] = STATE(4862), + [sym_val_bool] = STATE(4431), + [sym__spread_variable] = STATE(4968), + [sym_val_variable] = STATE(4050), + [sym_val_cellpath] = STATE(4862), + [sym_val_number] = STATE(4862), + [sym__val_number_decimal] = STATE(3653), + [sym__val_number] = STATE(4628), + [sym_val_duration] = STATE(4862), + [sym_val_filesize] = STATE(4862), + [sym_val_binary] = STATE(4862), + [sym_val_string] = STATE(4862), + [sym__raw_str] = STATE(3725), + [sym__str_double_quotes] = STATE(3725), + [sym__str_single_quotes] = STATE(3725), + [sym__str_back_ticks] = STATE(3725), + [sym_val_interpolated] = STATE(4862), + [sym__inter_single_quotes] = STATE(4846), + [sym__inter_double_quotes] = STATE(4847), + [sym_val_list] = STATE(4862), + [sym__spread_list] = STATE(4959), + [sym_list_body] = STATE(5333), + [sym_val_entry] = STATE(4745), + [sym_val_record] = STATE(4862), + [sym_val_table] = STATE(4862), + [sym_val_closure] = STATE(4862), + [sym__unquoted_in_list] = STATE(4479), + [sym__unquoted_in_list_with_expr] = STATE(4961), + [sym__unquoted_anonymous_prefix] = STATE(4729), + [sym_comment] = STATE(384), + [aux_sym__types_body_repeat1] = STATE(482), + [aux_sym_parameter_repeat2] = STATE(4481), + [aux_sym_list_body_repeat1] = STATE(558), + [anon_sym_true] = ACTIONS(1472), + [anon_sym_false] = ACTIONS(1472), + [anon_sym_null] = ACTIONS(1474), + [aux_sym_cmd_identifier_token3] = ACTIONS(1476), + [aux_sym_cmd_identifier_token4] = ACTIONS(1476), + [aux_sym_cmd_identifier_token5] = ACTIONS(1476), [sym__newline] = ACTIONS(1586), [anon_sym_LBRACK] = ACTIONS(1588), - [anon_sym_RBRACK] = ACTIONS(1592), + [anon_sym_RBRACK] = ACTIONS(1597), [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1480), + [anon_sym_COMMA] = ACTIONS(1484), [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1482), - [anon_sym_DOT_DOT] = ACTIONS(1484), + [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_DOT_DOT] = ACTIONS(1488), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1486), - [anon_sym_DOT_DOT_LT] = ACTIONS(1486), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1490), + [anon_sym_DOT_DOT_LT] = ACTIONS(1490), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1488), - [aux_sym__val_number_decimal_token2] = ACTIONS(1490), - [aux_sym__val_number_decimal_token3] = ACTIONS(1492), - [aux_sym__val_number_decimal_token4] = ACTIONS(1492), + [aux_sym__val_number_decimal_token1] = ACTIONS(1492), + [aux_sym__val_number_decimal_token2] = ACTIONS(1494), + [aux_sym__val_number_decimal_token3] = ACTIONS(1496), + [aux_sym__val_number_decimal_token4] = ACTIONS(1496), [aux_sym__val_number_token1] = ACTIONS(1414), [aux_sym__val_number_token2] = ACTIONS(1414), [aux_sym__val_number_token3] = ACTIONS(1414), [anon_sym_0b] = ACTIONS(1416), [anon_sym_0o] = ACTIONS(1418), [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1494), + [sym_val_date] = ACTIONS(1498), [anon_sym_DQUOTE] = ACTIONS(1422), [anon_sym_SQUOTE] = ACTIONS(1424), [anon_sym_BQUOTE] = ACTIONS(1426), @@ -77910,74 +78983,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1436), }, - [STATE(382)] = { - [sym_expr_parenthesized] = STATE(4132), - [sym__spread_parenthesized] = STATE(4915), - [sym_val_range] = STATE(4939), - [sym__val_range] = STATE(4693), - [sym__value] = STATE(4939), - [sym_val_nothing] = STATE(4538), - [sym_val_bool] = STATE(4320), - [sym__spread_variable] = STATE(4943), - [sym_val_variable] = STATE(3965), - [sym_val_cellpath] = STATE(4538), - [sym_val_number] = STATE(4538), - [sym__val_number_decimal] = STATE(3621), - [sym__val_number] = STATE(4386), - [sym_val_duration] = STATE(4538), - [sym_val_filesize] = STATE(4538), - [sym_val_binary] = STATE(4538), - [sym_val_string] = STATE(4538), - [sym__raw_str] = STATE(3665), - [sym__str_double_quotes] = STATE(3665), - [sym__str_single_quotes] = STATE(3665), - [sym__str_back_ticks] = STATE(3665), - [sym_val_interpolated] = STATE(4538), - [sym__inter_single_quotes] = STATE(4680), - [sym__inter_double_quotes] = STATE(4683), - [sym_val_list] = STATE(4538), - [sym__spread_list] = STATE(4915), - [sym_list_body] = STATE(5234), - [sym_val_entry] = STATE(4524), - [sym_val_record] = STATE(4538), - [sym_val_table] = STATE(4538), - [sym_val_closure] = STATE(4538), - [sym__unquoted_in_list] = STATE(4401), - [sym__unquoted_in_list_with_expr] = STATE(4939), - [sym__unquoted_anonymous_prefix] = STATE(4693), - [sym_comment] = STATE(382), - [aux_sym__types_body_repeat1] = STATE(465), - [aux_sym_parameter_repeat2] = STATE(4405), - [aux_sym_list_body_repeat1] = STATE(599), - [anon_sym_true] = ACTIONS(1468), - [anon_sym_false] = ACTIONS(1468), - [anon_sym_null] = ACTIONS(1470), - [aux_sym_cmd_identifier_token3] = ACTIONS(1472), - [aux_sym_cmd_identifier_token4] = ACTIONS(1472), - [aux_sym_cmd_identifier_token5] = ACTIONS(1472), + [STATE(385)] = { + [sym__expr_parenthesized_immediate] = STATE(701), + [sym__immediate_decimal] = STATE(702), + [sym_val_variable] = STATE(701), + [sym_comment] = STATE(385), + [anon_sym_in] = ACTIONS(1599), + [sym__newline] = ACTIONS(1599), + [anon_sym_SEMI] = ACTIONS(1599), + [anon_sym_PIPE] = ACTIONS(1599), + [anon_sym_err_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_GT_PIPE] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1599), + [anon_sym_RPAREN] = ACTIONS(1599), + [anon_sym_DOLLAR] = ACTIONS(1601), + [anon_sym_GT2] = ACTIONS(1603), + [anon_sym_DASH2] = ACTIONS(1603), + [anon_sym_LBRACE] = ACTIONS(1599), + [anon_sym_RBRACE] = ACTIONS(1599), + [anon_sym_STAR2] = ACTIONS(1603), + [anon_sym_and2] = ACTIONS(1599), + [anon_sym_xor2] = ACTIONS(1599), + [anon_sym_or2] = ACTIONS(1599), + [anon_sym_not_DASHin2] = ACTIONS(1599), + [anon_sym_has2] = ACTIONS(1599), + [anon_sym_not_DASHhas2] = ACTIONS(1599), + [anon_sym_starts_DASHwith2] = ACTIONS(1599), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1599), + [anon_sym_ends_DASHwith2] = ACTIONS(1599), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1599), + [anon_sym_EQ_EQ2] = ACTIONS(1599), + [anon_sym_BANG_EQ2] = ACTIONS(1599), + [anon_sym_LT2] = ACTIONS(1603), + [anon_sym_LT_EQ2] = ACTIONS(1599), + [anon_sym_GT_EQ2] = ACTIONS(1599), + [anon_sym_EQ_TILDE2] = ACTIONS(1599), + [anon_sym_BANG_TILDE2] = ACTIONS(1599), + [anon_sym_like2] = ACTIONS(1599), + [anon_sym_not_DASHlike2] = ACTIONS(1599), + [anon_sym_LPAREN2] = ACTIONS(1605), + [anon_sym_STAR_STAR2] = ACTIONS(1599), + [anon_sym_PLUS_PLUS2] = ACTIONS(1599), + [anon_sym_SLASH2] = ACTIONS(1603), + [anon_sym_mod2] = ACTIONS(1599), + [anon_sym_SLASH_SLASH2] = ACTIONS(1599), + [anon_sym_PLUS2] = ACTIONS(1603), + [anon_sym_bit_DASHshl2] = ACTIONS(1599), + [anon_sym_bit_DASHshr2] = ACTIONS(1599), + [anon_sym_bit_DASHand2] = ACTIONS(1599), + [anon_sym_bit_DASHxor2] = ACTIONS(1599), + [anon_sym_bit_DASHor2] = ACTIONS(1599), + [anon_sym_DOT] = ACTIONS(1607), + [aux_sym__immediate_decimal_token1] = ACTIONS(1609), + [aux_sym__immediate_decimal_token2] = ACTIONS(1609), + [aux_sym__immediate_decimal_token3] = ACTIONS(1611), + [aux_sym__immediate_decimal_token4] = ACTIONS(1611), + [anon_sym_err_GT] = ACTIONS(1603), + [anon_sym_out_GT] = ACTIONS(1603), + [anon_sym_e_GT] = ACTIONS(1603), + [anon_sym_o_GT] = ACTIONS(1603), + [anon_sym_err_PLUSout_GT] = ACTIONS(1603), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1603), + [anon_sym_o_PLUSe_GT] = ACTIONS(1603), + [anon_sym_e_PLUSo_GT] = ACTIONS(1603), + [anon_sym_err_GT_GT] = ACTIONS(1599), + [anon_sym_out_GT_GT] = ACTIONS(1599), + [anon_sym_e_GT_GT] = ACTIONS(1599), + [anon_sym_o_GT_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1599), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(386)] = { + [sym_expr_parenthesized] = STATE(4280), + [sym__spread_parenthesized] = STATE(4959), + [sym_val_range] = STATE(4961), + [sym__val_range] = STATE(4729), + [sym__value] = STATE(4961), + [sym_val_nothing] = STATE(4862), + [sym_val_bool] = STATE(4431), + [sym__spread_variable] = STATE(4968), + [sym_val_variable] = STATE(4050), + [sym_val_cellpath] = STATE(4862), + [sym_val_number] = STATE(4862), + [sym__val_number_decimal] = STATE(3653), + [sym__val_number] = STATE(4628), + [sym_val_duration] = STATE(4862), + [sym_val_filesize] = STATE(4862), + [sym_val_binary] = STATE(4862), + [sym_val_string] = STATE(4862), + [sym__raw_str] = STATE(3725), + [sym__str_double_quotes] = STATE(3725), + [sym__str_single_quotes] = STATE(3725), + [sym__str_back_ticks] = STATE(3725), + [sym_val_interpolated] = STATE(4862), + [sym__inter_single_quotes] = STATE(4846), + [sym__inter_double_quotes] = STATE(4847), + [sym_val_list] = STATE(4862), + [sym__spread_list] = STATE(4959), + [sym_list_body] = STATE(5491), + [sym_val_entry] = STATE(4745), + [sym_val_record] = STATE(4862), + [sym_val_table] = STATE(4862), + [sym_val_closure] = STATE(4862), + [sym__unquoted_in_list] = STATE(4479), + [sym__unquoted_in_list_with_expr] = STATE(4961), + [sym__unquoted_anonymous_prefix] = STATE(4729), + [sym_comment] = STATE(386), + [aux_sym__types_body_repeat1] = STATE(482), + [aux_sym_parameter_repeat2] = STATE(4481), + [aux_sym_list_body_repeat1] = STATE(558), + [anon_sym_true] = ACTIONS(1472), + [anon_sym_false] = ACTIONS(1472), + [anon_sym_null] = ACTIONS(1474), + [aux_sym_cmd_identifier_token3] = ACTIONS(1476), + [aux_sym_cmd_identifier_token4] = ACTIONS(1476), + [aux_sym_cmd_identifier_token5] = ACTIONS(1476), [sym__newline] = ACTIONS(1586), [anon_sym_LBRACK] = ACTIONS(1588), - [anon_sym_RBRACK] = ACTIONS(1515), + [anon_sym_RBRACK] = ACTIONS(1557), [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1480), + [anon_sym_COMMA] = ACTIONS(1484), [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1482), - [anon_sym_DOT_DOT] = ACTIONS(1484), + [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_DOT_DOT] = ACTIONS(1488), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1486), - [anon_sym_DOT_DOT_LT] = ACTIONS(1486), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1490), + [anon_sym_DOT_DOT_LT] = ACTIONS(1490), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1488), - [aux_sym__val_number_decimal_token2] = ACTIONS(1490), - [aux_sym__val_number_decimal_token3] = ACTIONS(1492), - [aux_sym__val_number_decimal_token4] = ACTIONS(1492), + [aux_sym__val_number_decimal_token1] = ACTIONS(1492), + [aux_sym__val_number_decimal_token2] = ACTIONS(1494), + [aux_sym__val_number_decimal_token3] = ACTIONS(1496), + [aux_sym__val_number_decimal_token4] = ACTIONS(1496), [aux_sym__val_number_token1] = ACTIONS(1414), [aux_sym__val_number_token2] = ACTIONS(1414), [aux_sym__val_number_token3] = ACTIONS(1414), [anon_sym_0b] = ACTIONS(1416), [anon_sym_0o] = ACTIONS(1418), [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1494), + [sym_val_date] = ACTIONS(1498), [anon_sym_DQUOTE] = ACTIONS(1422), [anon_sym_SQUOTE] = ACTIONS(1424), [anon_sym_BQUOTE] = ACTIONS(1426), @@ -77988,74 +79139,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1436), }, - [STATE(383)] = { - [sym_expr_parenthesized] = STATE(4132), - [sym__spread_parenthesized] = STATE(4915), - [sym_val_range] = STATE(4939), - [sym__val_range] = STATE(4693), - [sym__value] = STATE(4939), - [sym_val_nothing] = STATE(4538), - [sym_val_bool] = STATE(4320), - [sym__spread_variable] = STATE(4943), - [sym_val_variable] = STATE(3965), - [sym_val_cellpath] = STATE(4538), - [sym_val_number] = STATE(4538), - [sym__val_number_decimal] = STATE(3621), - [sym__val_number] = STATE(4386), - [sym_val_duration] = STATE(4538), - [sym_val_filesize] = STATE(4538), - [sym_val_binary] = STATE(4538), - [sym_val_string] = STATE(4538), - [sym__raw_str] = STATE(3665), - [sym__str_double_quotes] = STATE(3665), - [sym__str_single_quotes] = STATE(3665), - [sym__str_back_ticks] = STATE(3665), - [sym_val_interpolated] = STATE(4538), - [sym__inter_single_quotes] = STATE(4680), - [sym__inter_double_quotes] = STATE(4683), - [sym_val_list] = STATE(4538), - [sym__spread_list] = STATE(4915), - [sym_list_body] = STATE(5094), - [sym_val_entry] = STATE(4524), - [sym_val_record] = STATE(4538), - [sym_val_table] = STATE(4538), - [sym_val_closure] = STATE(4538), - [sym__unquoted_in_list] = STATE(4401), - [sym__unquoted_in_list_with_expr] = STATE(4939), - [sym__unquoted_anonymous_prefix] = STATE(4693), - [sym_comment] = STATE(383), - [aux_sym__types_body_repeat1] = STATE(465), - [aux_sym_parameter_repeat2] = STATE(4405), - [aux_sym_list_body_repeat1] = STATE(599), - [anon_sym_true] = ACTIONS(1468), - [anon_sym_false] = ACTIONS(1468), - [anon_sym_null] = ACTIONS(1470), - [aux_sym_cmd_identifier_token3] = ACTIONS(1472), - [aux_sym_cmd_identifier_token4] = ACTIONS(1472), - [aux_sym_cmd_identifier_token5] = ACTIONS(1472), + [STATE(387)] = { + [sym_comment] = STATE(387), + [aux_sym__types_body_repeat2] = STATE(1480), + [anon_sym_EQ] = ACTIONS(1613), + [anon_sym_PLUS_EQ] = ACTIONS(1613), + [anon_sym_DASH_EQ] = ACTIONS(1613), + [anon_sym_STAR_EQ] = ACTIONS(1613), + [anon_sym_SLASH_EQ] = ACTIONS(1613), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1613), + [anon_sym_in] = ACTIONS(1615), + [sym__newline] = ACTIONS(1615), + [anon_sym_SEMI] = ACTIONS(1615), + [anon_sym_PIPE] = ACTIONS(1615), + [anon_sym_err_GT_PIPE] = ACTIONS(1615), + [anon_sym_out_GT_PIPE] = ACTIONS(1615), + [anon_sym_e_GT_PIPE] = ACTIONS(1615), + [anon_sym_o_GT_PIPE] = ACTIONS(1615), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1615), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1615), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1615), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1615), + [anon_sym_GT2] = ACTIONS(1615), + [anon_sym_DASH2] = ACTIONS(1615), + [anon_sym_RBRACE] = ACTIONS(1617), + [anon_sym_STAR2] = ACTIONS(1615), + [anon_sym_and2] = ACTIONS(1615), + [anon_sym_xor2] = ACTIONS(1615), + [anon_sym_or2] = ACTIONS(1615), + [anon_sym_not_DASHin2] = ACTIONS(1615), + [anon_sym_has2] = ACTIONS(1615), + [anon_sym_not_DASHhas2] = ACTIONS(1615), + [anon_sym_starts_DASHwith2] = ACTIONS(1615), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1615), + [anon_sym_ends_DASHwith2] = ACTIONS(1615), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1615), + [anon_sym_EQ_EQ2] = ACTIONS(1615), + [anon_sym_BANG_EQ2] = ACTIONS(1615), + [anon_sym_LT2] = ACTIONS(1615), + [anon_sym_LT_EQ2] = ACTIONS(1615), + [anon_sym_GT_EQ2] = ACTIONS(1615), + [anon_sym_EQ_TILDE2] = ACTIONS(1615), + [anon_sym_BANG_TILDE2] = ACTIONS(1615), + [anon_sym_like2] = ACTIONS(1615), + [anon_sym_not_DASHlike2] = ACTIONS(1615), + [anon_sym_STAR_STAR2] = ACTIONS(1615), + [anon_sym_PLUS_PLUS2] = ACTIONS(1615), + [anon_sym_SLASH2] = ACTIONS(1615), + [anon_sym_mod2] = ACTIONS(1615), + [anon_sym_SLASH_SLASH2] = ACTIONS(1615), + [anon_sym_PLUS2] = ACTIONS(1615), + [anon_sym_bit_DASHshl2] = ACTIONS(1615), + [anon_sym_bit_DASHshr2] = ACTIONS(1615), + [anon_sym_bit_DASHand2] = ACTIONS(1615), + [anon_sym_bit_DASHxor2] = ACTIONS(1615), + [anon_sym_bit_DASHor2] = ACTIONS(1615), + [anon_sym_DOT_DOT2] = ACTIONS(1619), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1621), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1621), + [sym__entry_separator] = ACTIONS(1623), + [anon_sym_COLON2] = ACTIONS(1625), + [anon_sym_err_GT] = ACTIONS(1615), + [anon_sym_out_GT] = ACTIONS(1615), + [anon_sym_e_GT] = ACTIONS(1615), + [anon_sym_o_GT] = ACTIONS(1615), + [anon_sym_err_PLUSout_GT] = ACTIONS(1615), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1615), + [anon_sym_o_PLUSe_GT] = ACTIONS(1615), + [anon_sym_e_PLUSo_GT] = ACTIONS(1615), + [anon_sym_err_GT_GT] = ACTIONS(1615), + [anon_sym_out_GT_GT] = ACTIONS(1615), + [anon_sym_e_GT_GT] = ACTIONS(1615), + [anon_sym_o_GT_GT] = ACTIONS(1615), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1615), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1615), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1615), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1615), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(388)] = { + [sym_expr_parenthesized] = STATE(4280), + [sym__spread_parenthesized] = STATE(4959), + [sym_val_range] = STATE(4961), + [sym__val_range] = STATE(4729), + [sym__value] = STATE(4961), + [sym_val_nothing] = STATE(4862), + [sym_val_bool] = STATE(4431), + [sym__spread_variable] = STATE(4968), + [sym_val_variable] = STATE(4050), + [sym_val_cellpath] = STATE(4862), + [sym_val_number] = STATE(4862), + [sym__val_number_decimal] = STATE(3653), + [sym__val_number] = STATE(4628), + [sym_val_duration] = STATE(4862), + [sym_val_filesize] = STATE(4862), + [sym_val_binary] = STATE(4862), + [sym_val_string] = STATE(4862), + [sym__raw_str] = STATE(3725), + [sym__str_double_quotes] = STATE(3725), + [sym__str_single_quotes] = STATE(3725), + [sym__str_back_ticks] = STATE(3725), + [sym_val_interpolated] = STATE(4862), + [sym__inter_single_quotes] = STATE(4846), + [sym__inter_double_quotes] = STATE(4847), + [sym_val_list] = STATE(4862), + [sym__spread_list] = STATE(4959), + [sym_list_body] = STATE(5225), + [sym_val_entry] = STATE(4745), + [sym_val_record] = STATE(4862), + [sym_val_table] = STATE(4862), + [sym_val_closure] = STATE(4862), + [sym__unquoted_in_list] = STATE(4479), + [sym__unquoted_in_list_with_expr] = STATE(4961), + [sym__unquoted_anonymous_prefix] = STATE(4729), + [sym_comment] = STATE(388), + [aux_sym__types_body_repeat1] = STATE(482), + [aux_sym_parameter_repeat2] = STATE(4481), + [aux_sym_list_body_repeat1] = STATE(558), + [anon_sym_true] = ACTIONS(1472), + [anon_sym_false] = ACTIONS(1472), + [anon_sym_null] = ACTIONS(1474), + [aux_sym_cmd_identifier_token3] = ACTIONS(1476), + [aux_sym_cmd_identifier_token4] = ACTIONS(1476), + [aux_sym_cmd_identifier_token5] = ACTIONS(1476), [sym__newline] = ACTIONS(1586), [anon_sym_LBRACK] = ACTIONS(1588), - [anon_sym_RBRACK] = ACTIONS(1594), + [anon_sym_RBRACK] = ACTIONS(1627), [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1480), + [anon_sym_COMMA] = ACTIONS(1484), [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1482), - [anon_sym_DOT_DOT] = ACTIONS(1484), + [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_DOT_DOT] = ACTIONS(1488), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1486), - [anon_sym_DOT_DOT_LT] = ACTIONS(1486), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1490), + [anon_sym_DOT_DOT_LT] = ACTIONS(1490), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1488), - [aux_sym__val_number_decimal_token2] = ACTIONS(1490), - [aux_sym__val_number_decimal_token3] = ACTIONS(1492), - [aux_sym__val_number_decimal_token4] = ACTIONS(1492), + [aux_sym__val_number_decimal_token1] = ACTIONS(1492), + [aux_sym__val_number_decimal_token2] = ACTIONS(1494), + [aux_sym__val_number_decimal_token3] = ACTIONS(1496), + [aux_sym__val_number_decimal_token4] = ACTIONS(1496), [aux_sym__val_number_token1] = ACTIONS(1414), [aux_sym__val_number_token2] = ACTIONS(1414), [aux_sym__val_number_token3] = ACTIONS(1414), [anon_sym_0b] = ACTIONS(1416), [anon_sym_0o] = ACTIONS(1418), [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1494), + [sym_val_date] = ACTIONS(1498), [anon_sym_DQUOTE] = ACTIONS(1422), [anon_sym_SQUOTE] = ACTIONS(1424), [anon_sym_BQUOTE] = ACTIONS(1426), @@ -78066,152 +79295,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1436), }, - [STATE(384)] = { - [sym_comment] = STATE(384), - [ts_builtin_sym_end] = ACTIONS(1541), - [anon_sym_EQ] = ACTIONS(1539), - [anon_sym_PLUS_EQ] = ACTIONS(1541), - [anon_sym_DASH_EQ] = ACTIONS(1541), - [anon_sym_STAR_EQ] = ACTIONS(1541), - [anon_sym_SLASH_EQ] = ACTIONS(1541), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1541), - [anon_sym_in] = ACTIONS(1541), - [sym__newline] = ACTIONS(1541), - [anon_sym_SEMI] = ACTIONS(1541), - [anon_sym_PIPE] = ACTIONS(1541), - [anon_sym_err_GT_PIPE] = ACTIONS(1541), - [anon_sym_out_GT_PIPE] = ACTIONS(1541), - [anon_sym_e_GT_PIPE] = ACTIONS(1541), - [anon_sym_o_GT_PIPE] = ACTIONS(1541), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1541), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1541), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1541), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1541), - [anon_sym_GT2] = ACTIONS(1539), - [anon_sym_DASH2] = ACTIONS(1539), - [anon_sym_STAR2] = ACTIONS(1539), - [anon_sym_and2] = ACTIONS(1541), - [anon_sym_xor2] = ACTIONS(1541), - [anon_sym_or2] = ACTIONS(1541), - [anon_sym_not_DASHin2] = ACTIONS(1541), - [anon_sym_has2] = ACTIONS(1541), - [anon_sym_not_DASHhas2] = ACTIONS(1541), - [anon_sym_starts_DASHwith2] = ACTIONS(1541), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1541), - [anon_sym_ends_DASHwith2] = ACTIONS(1541), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1541), - [anon_sym_EQ_EQ2] = ACTIONS(1541), - [anon_sym_BANG_EQ2] = ACTIONS(1541), - [anon_sym_LT2] = ACTIONS(1539), - [anon_sym_LT_EQ2] = ACTIONS(1541), - [anon_sym_GT_EQ2] = ACTIONS(1541), - [anon_sym_EQ_TILDE2] = ACTIONS(1541), - [anon_sym_BANG_TILDE2] = ACTIONS(1541), - [anon_sym_like2] = ACTIONS(1541), - [anon_sym_not_DASHlike2] = ACTIONS(1541), - [anon_sym_STAR_STAR2] = ACTIONS(1541), - [anon_sym_PLUS_PLUS2] = ACTIONS(1539), - [anon_sym_SLASH2] = ACTIONS(1539), - [anon_sym_mod2] = ACTIONS(1541), - [anon_sym_SLASH_SLASH2] = ACTIONS(1541), - [anon_sym_PLUS2] = ACTIONS(1539), - [anon_sym_bit_DASHshl2] = ACTIONS(1541), - [anon_sym_bit_DASHshr2] = ACTIONS(1541), - [anon_sym_bit_DASHand2] = ACTIONS(1541), - [anon_sym_bit_DASHxor2] = ACTIONS(1541), - [anon_sym_bit_DASHor2] = ACTIONS(1541), - [anon_sym_DOT_DOT2] = ACTIONS(1539), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1541), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1541), - [anon_sym_QMARK2] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1539), - [anon_sym_DOT2] = ACTIONS(1539), - [anon_sym_err_GT] = ACTIONS(1539), - [anon_sym_out_GT] = ACTIONS(1539), - [anon_sym_e_GT] = ACTIONS(1539), - [anon_sym_o_GT] = ACTIONS(1539), - [anon_sym_err_PLUSout_GT] = ACTIONS(1539), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1539), - [anon_sym_o_PLUSe_GT] = ACTIONS(1539), - [anon_sym_e_PLUSo_GT] = ACTIONS(1539), - [anon_sym_err_GT_GT] = ACTIONS(1541), - [anon_sym_out_GT_GT] = ACTIONS(1541), - [anon_sym_e_GT_GT] = ACTIONS(1541), - [anon_sym_o_GT_GT] = ACTIONS(1541), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1541), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1541), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1541), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1541), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(385)] = { - [sym_expr_parenthesized] = STATE(4132), - [sym__spread_parenthesized] = STATE(4915), - [sym_val_range] = STATE(4939), - [sym__val_range] = STATE(4693), - [sym__value] = STATE(4939), - [sym_val_nothing] = STATE(4538), - [sym_val_bool] = STATE(4320), - [sym__spread_variable] = STATE(4943), - [sym_val_variable] = STATE(3965), - [sym_val_cellpath] = STATE(4538), - [sym_val_number] = STATE(4538), - [sym__val_number_decimal] = STATE(3621), - [sym__val_number] = STATE(4386), - [sym_val_duration] = STATE(4538), - [sym_val_filesize] = STATE(4538), - [sym_val_binary] = STATE(4538), - [sym_val_string] = STATE(4538), - [sym__raw_str] = STATE(3665), - [sym__str_double_quotes] = STATE(3665), - [sym__str_single_quotes] = STATE(3665), - [sym__str_back_ticks] = STATE(3665), - [sym_val_interpolated] = STATE(4538), - [sym__inter_single_quotes] = STATE(4680), - [sym__inter_double_quotes] = STATE(4683), - [sym_val_list] = STATE(4538), - [sym__spread_list] = STATE(4915), - [sym_list_body] = STATE(4990), - [sym_val_entry] = STATE(4524), - [sym_val_record] = STATE(4538), - [sym_val_table] = STATE(4538), - [sym_val_closure] = STATE(4538), - [sym__unquoted_in_list] = STATE(4401), - [sym__unquoted_in_list_with_expr] = STATE(4939), - [sym__unquoted_anonymous_prefix] = STATE(4693), - [sym_comment] = STATE(385), - [aux_sym__types_body_repeat1] = STATE(465), - [aux_sym_parameter_repeat2] = STATE(4405), - [aux_sym_list_body_repeat1] = STATE(599), - [anon_sym_true] = ACTIONS(1468), - [anon_sym_false] = ACTIONS(1468), - [anon_sym_null] = ACTIONS(1470), - [aux_sym_cmd_identifier_token3] = ACTIONS(1472), - [aux_sym_cmd_identifier_token4] = ACTIONS(1472), - [aux_sym_cmd_identifier_token5] = ACTIONS(1472), + [STATE(389)] = { + [sym_expr_parenthesized] = STATE(4280), + [sym__spread_parenthesized] = STATE(4959), + [sym_val_range] = STATE(4961), + [sym__val_range] = STATE(4729), + [sym__value] = STATE(4961), + [sym_val_nothing] = STATE(4862), + [sym_val_bool] = STATE(4431), + [sym__spread_variable] = STATE(4968), + [sym_val_variable] = STATE(4050), + [sym_val_cellpath] = STATE(4862), + [sym_val_number] = STATE(4862), + [sym__val_number_decimal] = STATE(3653), + [sym__val_number] = STATE(4628), + [sym_val_duration] = STATE(4862), + [sym_val_filesize] = STATE(4862), + [sym_val_binary] = STATE(4862), + [sym_val_string] = STATE(4862), + [sym__raw_str] = STATE(3725), + [sym__str_double_quotes] = STATE(3725), + [sym__str_single_quotes] = STATE(3725), + [sym__str_back_ticks] = STATE(3725), + [sym_val_interpolated] = STATE(4862), + [sym__inter_single_quotes] = STATE(4846), + [sym__inter_double_quotes] = STATE(4847), + [sym_val_list] = STATE(4862), + [sym__spread_list] = STATE(4959), + [sym_list_body] = STATE(5123), + [sym_val_entry] = STATE(4745), + [sym_val_record] = STATE(4862), + [sym_val_table] = STATE(4862), + [sym_val_closure] = STATE(4862), + [sym__unquoted_in_list] = STATE(4479), + [sym__unquoted_in_list_with_expr] = STATE(4961), + [sym__unquoted_anonymous_prefix] = STATE(4729), + [sym_comment] = STATE(389), + [aux_sym__types_body_repeat1] = STATE(482), + [aux_sym_parameter_repeat2] = STATE(4481), + [aux_sym_list_body_repeat1] = STATE(558), + [anon_sym_true] = ACTIONS(1472), + [anon_sym_false] = ACTIONS(1472), + [anon_sym_null] = ACTIONS(1474), + [aux_sym_cmd_identifier_token3] = ACTIONS(1476), + [aux_sym_cmd_identifier_token4] = ACTIONS(1476), + [aux_sym_cmd_identifier_token5] = ACTIONS(1476), [sym__newline] = ACTIONS(1586), [anon_sym_LBRACK] = ACTIONS(1588), - [anon_sym_RBRACK] = ACTIONS(1596), + [anon_sym_RBRACK] = ACTIONS(1629), [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1480), + [anon_sym_COMMA] = ACTIONS(1484), [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1482), - [anon_sym_DOT_DOT] = ACTIONS(1484), + [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_DOT_DOT] = ACTIONS(1488), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1486), - [anon_sym_DOT_DOT_LT] = ACTIONS(1486), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1490), + [anon_sym_DOT_DOT_LT] = ACTIONS(1490), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1488), - [aux_sym__val_number_decimal_token2] = ACTIONS(1490), - [aux_sym__val_number_decimal_token3] = ACTIONS(1492), - [aux_sym__val_number_decimal_token4] = ACTIONS(1492), + [aux_sym__val_number_decimal_token1] = ACTIONS(1492), + [aux_sym__val_number_decimal_token2] = ACTIONS(1494), + [aux_sym__val_number_decimal_token3] = ACTIONS(1496), + [aux_sym__val_number_decimal_token4] = ACTIONS(1496), [aux_sym__val_number_token1] = ACTIONS(1414), [aux_sym__val_number_token2] = ACTIONS(1414), [aux_sym__val_number_token3] = ACTIONS(1414), [anon_sym_0b] = ACTIONS(1416), [anon_sym_0o] = ACTIONS(1418), [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1494), + [sym_val_date] = ACTIONS(1498), [anon_sym_DQUOTE] = ACTIONS(1422), [anon_sym_SQUOTE] = ACTIONS(1424), [anon_sym_BQUOTE] = ACTIONS(1426), @@ -78222,230 +79373,230 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1436), }, - [STATE(386)] = { - [sym_comment] = STATE(386), - [ts_builtin_sym_end] = ACTIONS(1529), - [anon_sym_EQ] = ACTIONS(1527), - [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_GT2] = ACTIONS(1527), - [anon_sym_DASH2] = ACTIONS(1527), - [anon_sym_STAR2] = ACTIONS(1527), - [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(1527), - [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(1527), - [anon_sym_SLASH2] = ACTIONS(1527), - [anon_sym_mod2] = ACTIONS(1529), - [anon_sym_SLASH_SLASH2] = ACTIONS(1529), - [anon_sym_PLUS2] = ACTIONS(1527), - [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(1527), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1529), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1529), - [anon_sym_QMARK2] = ACTIONS(1529), - [anon_sym_BANG] = ACTIONS(1527), - [anon_sym_DOT2] = ACTIONS(1527), - [anon_sym_err_GT] = ACTIONS(1527), - [anon_sym_out_GT] = ACTIONS(1527), - [anon_sym_e_GT] = ACTIONS(1527), - [anon_sym_o_GT] = ACTIONS(1527), - [anon_sym_err_PLUSout_GT] = ACTIONS(1527), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1527), - [anon_sym_o_PLUSe_GT] = ACTIONS(1527), - [anon_sym_e_PLUSo_GT] = ACTIONS(1527), - [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), + [STATE(390)] = { + [sym__expr_parenthesized_immediate] = STATE(703), + [sym__immediate_decimal] = STATE(556), + [sym_val_variable] = STATE(703), + [sym_comment] = STATE(390), + [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(1601), + [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(1605), + [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), + [anon_sym_DOT] = ACTIONS(1635), + [aux_sym__immediate_decimal_token1] = ACTIONS(1609), + [aux_sym__immediate_decimal_token2] = ACTIONS(1609), + [aux_sym__immediate_decimal_token3] = ACTIONS(1611), + [aux_sym__immediate_decimal_token4] = ACTIONS(1611), + [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(1637), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(387)] = { - [sym__expr_parenthesized_immediate] = STATE(688), - [sym__immediate_decimal] = STATE(690), - [sym_val_variable] = STATE(688), - [sym_comment] = STATE(387), - [anon_sym_in] = ACTIONS(1598), - [sym__newline] = ACTIONS(1598), - [anon_sym_SEMI] = ACTIONS(1598), - [anon_sym_PIPE] = ACTIONS(1598), - [anon_sym_err_GT_PIPE] = ACTIONS(1598), - [anon_sym_out_GT_PIPE] = ACTIONS(1598), - [anon_sym_e_GT_PIPE] = ACTIONS(1598), - [anon_sym_o_GT_PIPE] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1598), - [anon_sym_RPAREN] = ACTIONS(1598), - [anon_sym_DOLLAR] = ACTIONS(1600), - [anon_sym_GT2] = ACTIONS(1602), - [anon_sym_DASH2] = ACTIONS(1602), - [anon_sym_LBRACE] = ACTIONS(1598), - [anon_sym_RBRACE] = ACTIONS(1598), - [anon_sym_STAR2] = ACTIONS(1602), - [anon_sym_and2] = ACTIONS(1598), - [anon_sym_xor2] = ACTIONS(1598), - [anon_sym_or2] = ACTIONS(1598), - [anon_sym_not_DASHin2] = ACTIONS(1598), - [anon_sym_has2] = ACTIONS(1598), - [anon_sym_not_DASHhas2] = ACTIONS(1598), - [anon_sym_starts_DASHwith2] = ACTIONS(1598), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1598), - [anon_sym_ends_DASHwith2] = ACTIONS(1598), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1598), - [anon_sym_EQ_EQ2] = ACTIONS(1598), - [anon_sym_BANG_EQ2] = ACTIONS(1598), - [anon_sym_LT2] = ACTIONS(1602), - [anon_sym_LT_EQ2] = ACTIONS(1598), - [anon_sym_GT_EQ2] = ACTIONS(1598), - [anon_sym_EQ_TILDE2] = ACTIONS(1598), - [anon_sym_BANG_TILDE2] = ACTIONS(1598), - [anon_sym_like2] = ACTIONS(1598), - [anon_sym_not_DASHlike2] = ACTIONS(1598), - [anon_sym_LPAREN2] = ACTIONS(1604), - [anon_sym_STAR_STAR2] = ACTIONS(1598), - [anon_sym_PLUS_PLUS2] = ACTIONS(1598), - [anon_sym_SLASH2] = ACTIONS(1602), - [anon_sym_mod2] = ACTIONS(1598), - [anon_sym_SLASH_SLASH2] = ACTIONS(1598), - [anon_sym_PLUS2] = ACTIONS(1602), - [anon_sym_bit_DASHshl2] = ACTIONS(1598), - [anon_sym_bit_DASHshr2] = ACTIONS(1598), - [anon_sym_bit_DASHand2] = ACTIONS(1598), - [anon_sym_bit_DASHxor2] = ACTIONS(1598), - [anon_sym_bit_DASHor2] = ACTIONS(1598), - [anon_sym_DOT] = ACTIONS(1606), - [aux_sym__immediate_decimal_token1] = ACTIONS(1608), - [aux_sym__immediate_decimal_token2] = ACTIONS(1608), - [aux_sym__immediate_decimal_token3] = ACTIONS(1610), - [aux_sym__immediate_decimal_token4] = ACTIONS(1610), - [anon_sym_err_GT] = ACTIONS(1602), - [anon_sym_out_GT] = ACTIONS(1602), - [anon_sym_e_GT] = ACTIONS(1602), - [anon_sym_o_GT] = ACTIONS(1602), - [anon_sym_err_PLUSout_GT] = ACTIONS(1602), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1602), - [anon_sym_o_PLUSe_GT] = ACTIONS(1602), - [anon_sym_e_PLUSo_GT] = ACTIONS(1602), - [anon_sym_err_GT_GT] = ACTIONS(1598), - [anon_sym_out_GT_GT] = ACTIONS(1598), - [anon_sym_e_GT_GT] = ACTIONS(1598), - [anon_sym_o_GT_GT] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1598), + [STATE(391)] = { + [sym__expr_parenthesized_immediate] = STATE(703), + [sym__immediate_decimal] = STATE(704), + [sym_val_variable] = STATE(703), + [sym_comment] = STATE(391), + [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(1601), + [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(1605), + [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), + [anon_sym_DOT] = ACTIONS(1639), + [aux_sym__immediate_decimal_token1] = ACTIONS(1609), + [aux_sym__immediate_decimal_token2] = ACTIONS(1609), + [aux_sym__immediate_decimal_token3] = ACTIONS(1611), + [aux_sym__immediate_decimal_token4] = ACTIONS(1611), + [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(388)] = { - [sym_expr_parenthesized] = STATE(4132), - [sym__spread_parenthesized] = STATE(4915), - [sym_val_range] = STATE(4939), - [sym__val_range] = STATE(4693), - [sym__value] = STATE(4939), - [sym_val_nothing] = STATE(4538), - [sym_val_bool] = STATE(4320), - [sym__spread_variable] = STATE(4943), - [sym_val_variable] = STATE(3965), - [sym_val_cellpath] = STATE(4538), - [sym_val_number] = STATE(4538), - [sym__val_number_decimal] = STATE(3621), - [sym__val_number] = STATE(4386), - [sym_val_duration] = STATE(4538), - [sym_val_filesize] = STATE(4538), - [sym_val_binary] = STATE(4538), - [sym_val_string] = STATE(4538), - [sym__raw_str] = STATE(3665), - [sym__str_double_quotes] = STATE(3665), - [sym__str_single_quotes] = STATE(3665), - [sym__str_back_ticks] = STATE(3665), - [sym_val_interpolated] = STATE(4538), - [sym__inter_single_quotes] = STATE(4680), - [sym__inter_double_quotes] = STATE(4683), - [sym_val_list] = STATE(4538), - [sym__spread_list] = STATE(4915), - [sym_list_body] = STATE(5081), - [sym_val_entry] = STATE(4524), - [sym_val_record] = STATE(4538), - [sym_val_table] = STATE(4538), - [sym_val_closure] = STATE(4538), - [sym__unquoted_in_list] = STATE(4401), - [sym__unquoted_in_list_with_expr] = STATE(4939), - [sym__unquoted_anonymous_prefix] = STATE(4693), - [sym_comment] = STATE(388), - [aux_sym__types_body_repeat1] = STATE(465), - [aux_sym_parameter_repeat2] = STATE(4405), - [aux_sym_list_body_repeat1] = STATE(599), - [anon_sym_true] = ACTIONS(1468), - [anon_sym_false] = ACTIONS(1468), - [anon_sym_null] = ACTIONS(1470), - [aux_sym_cmd_identifier_token3] = ACTIONS(1472), - [aux_sym_cmd_identifier_token4] = ACTIONS(1472), - [aux_sym_cmd_identifier_token5] = ACTIONS(1472), + [STATE(392)] = { + [sym_expr_parenthesized] = STATE(4280), + [sym__spread_parenthesized] = STATE(4959), + [sym_val_range] = STATE(4961), + [sym__val_range] = STATE(4729), + [sym__value] = STATE(4961), + [sym_val_nothing] = STATE(4862), + [sym_val_bool] = STATE(4431), + [sym__spread_variable] = STATE(4968), + [sym_val_variable] = STATE(4050), + [sym_val_cellpath] = STATE(4862), + [sym_val_number] = STATE(4862), + [sym__val_number_decimal] = STATE(3653), + [sym__val_number] = STATE(4628), + [sym_val_duration] = STATE(4862), + [sym_val_filesize] = STATE(4862), + [sym_val_binary] = STATE(4862), + [sym_val_string] = STATE(4862), + [sym__raw_str] = STATE(3725), + [sym__str_double_quotes] = STATE(3725), + [sym__str_single_quotes] = STATE(3725), + [sym__str_back_ticks] = STATE(3725), + [sym_val_interpolated] = STATE(4862), + [sym__inter_single_quotes] = STATE(4846), + [sym__inter_double_quotes] = STATE(4847), + [sym_val_list] = STATE(4862), + [sym__spread_list] = STATE(4959), + [sym_list_body] = STATE(5093), + [sym_val_entry] = STATE(4745), + [sym_val_record] = STATE(4862), + [sym_val_table] = STATE(4862), + [sym_val_closure] = STATE(4862), + [sym__unquoted_in_list] = STATE(4479), + [sym__unquoted_in_list_with_expr] = STATE(4961), + [sym__unquoted_anonymous_prefix] = STATE(4729), + [sym_comment] = STATE(392), + [aux_sym__types_body_repeat1] = STATE(482), + [aux_sym_parameter_repeat2] = STATE(4481), + [aux_sym_list_body_repeat1] = STATE(558), + [anon_sym_true] = ACTIONS(1472), + [anon_sym_false] = ACTIONS(1472), + [anon_sym_null] = ACTIONS(1474), + [aux_sym_cmd_identifier_token3] = ACTIONS(1476), + [aux_sym_cmd_identifier_token4] = ACTIONS(1476), + [aux_sym_cmd_identifier_token5] = ACTIONS(1476), [sym__newline] = ACTIONS(1586), [anon_sym_LBRACK] = ACTIONS(1588), - [anon_sym_RBRACK] = ACTIONS(1560), + [anon_sym_RBRACK] = ACTIONS(1559), [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1480), + [anon_sym_COMMA] = ACTIONS(1484), [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1482), - [anon_sym_DOT_DOT] = ACTIONS(1484), + [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_DOT_DOT] = ACTIONS(1488), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1486), - [anon_sym_DOT_DOT_LT] = ACTIONS(1486), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1490), + [anon_sym_DOT_DOT_LT] = ACTIONS(1490), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1488), - [aux_sym__val_number_decimal_token2] = ACTIONS(1490), - [aux_sym__val_number_decimal_token3] = ACTIONS(1492), - [aux_sym__val_number_decimal_token4] = ACTIONS(1492), + [aux_sym__val_number_decimal_token1] = ACTIONS(1492), + [aux_sym__val_number_decimal_token2] = ACTIONS(1494), + [aux_sym__val_number_decimal_token3] = ACTIONS(1496), + [aux_sym__val_number_decimal_token4] = ACTIONS(1496), [aux_sym__val_number_token1] = ACTIONS(1414), [aux_sym__val_number_token2] = ACTIONS(1414), [aux_sym__val_number_token3] = ACTIONS(1414), [anon_sym_0b] = ACTIONS(1416), [anon_sym_0o] = ACTIONS(1418), [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1494), + [sym_val_date] = ACTIONS(1498), [anon_sym_DQUOTE] = ACTIONS(1422), [anon_sym_SQUOTE] = ACTIONS(1424), [anon_sym_BQUOTE] = ACTIONS(1426), @@ -78456,152 +79607,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1436), }, - [STATE(389)] = { - [sym_comment] = STATE(389), - [ts_builtin_sym_end] = ACTIONS(1533), - [anon_sym_EQ] = ACTIONS(1531), - [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_GT2] = ACTIONS(1531), - [anon_sym_DASH2] = ACTIONS(1531), - [anon_sym_STAR2] = ACTIONS(1531), - [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(1531), - [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(1531), - [anon_sym_SLASH2] = ACTIONS(1531), - [anon_sym_mod2] = ACTIONS(1533), - [anon_sym_SLASH_SLASH2] = ACTIONS(1533), - [anon_sym_PLUS2] = ACTIONS(1531), - [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(1531), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1533), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1533), - [anon_sym_QMARK2] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_DOT2] = ACTIONS(1531), - [anon_sym_err_GT] = ACTIONS(1531), - [anon_sym_out_GT] = ACTIONS(1531), - [anon_sym_e_GT] = ACTIONS(1531), - [anon_sym_o_GT] = ACTIONS(1531), - [anon_sym_err_PLUSout_GT] = ACTIONS(1531), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1531), - [anon_sym_o_PLUSe_GT] = ACTIONS(1531), - [anon_sym_e_PLUSo_GT] = ACTIONS(1531), - [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), + [STATE(393)] = { + [sym_comment] = STATE(393), + [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_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(390)] = { - [sym_expr_parenthesized] = STATE(4132), - [sym__spread_parenthesized] = STATE(4915), - [sym_val_range] = STATE(4939), - [sym__val_range] = STATE(4693), - [sym__value] = STATE(4939), - [sym_val_nothing] = STATE(4538), - [sym_val_bool] = STATE(4320), - [sym__spread_variable] = STATE(4943), - [sym_val_variable] = STATE(3965), - [sym_val_cellpath] = STATE(4538), - [sym_val_number] = STATE(4538), - [sym__val_number_decimal] = STATE(3621), - [sym__val_number] = STATE(4386), - [sym_val_duration] = STATE(4538), - [sym_val_filesize] = STATE(4538), - [sym_val_binary] = STATE(4538), - [sym_val_string] = STATE(4538), - [sym__raw_str] = STATE(3665), - [sym__str_double_quotes] = STATE(3665), - [sym__str_single_quotes] = STATE(3665), - [sym__str_back_ticks] = STATE(3665), - [sym_val_interpolated] = STATE(4538), - [sym__inter_single_quotes] = STATE(4680), - [sym__inter_double_quotes] = STATE(4683), - [sym_val_list] = STATE(4538), - [sym__spread_list] = STATE(4915), - [sym_list_body] = STATE(4960), - [sym_val_entry] = STATE(4524), - [sym_val_record] = STATE(4538), - [sym_val_table] = STATE(4538), - [sym_val_closure] = STATE(4538), - [sym__unquoted_in_list] = STATE(4401), - [sym__unquoted_in_list_with_expr] = STATE(4939), - [sym__unquoted_anonymous_prefix] = STATE(4693), - [sym_comment] = STATE(390), - [aux_sym__types_body_repeat1] = STATE(465), - [aux_sym_parameter_repeat2] = STATE(4405), - [aux_sym_list_body_repeat1] = STATE(599), - [anon_sym_true] = ACTIONS(1468), - [anon_sym_false] = ACTIONS(1468), - [anon_sym_null] = ACTIONS(1470), - [aux_sym_cmd_identifier_token3] = ACTIONS(1472), - [aux_sym_cmd_identifier_token4] = ACTIONS(1472), - [aux_sym_cmd_identifier_token5] = ACTIONS(1472), + [STATE(394)] = { + [sym_expr_parenthesized] = STATE(4280), + [sym__spread_parenthesized] = STATE(4959), + [sym_val_range] = STATE(4961), + [sym__val_range] = STATE(4729), + [sym__value] = STATE(4961), + [sym_val_nothing] = STATE(4862), + [sym_val_bool] = STATE(4431), + [sym__spread_variable] = STATE(4968), + [sym_val_variable] = STATE(4050), + [sym_val_cellpath] = STATE(4862), + [sym_val_number] = STATE(4862), + [sym__val_number_decimal] = STATE(3653), + [sym__val_number] = STATE(4628), + [sym_val_duration] = STATE(4862), + [sym_val_filesize] = STATE(4862), + [sym_val_binary] = STATE(4862), + [sym_val_string] = STATE(4862), + [sym__raw_str] = STATE(3725), + [sym__str_double_quotes] = STATE(3725), + [sym__str_single_quotes] = STATE(3725), + [sym__str_back_ticks] = STATE(3725), + [sym_val_interpolated] = STATE(4862), + [sym__inter_single_quotes] = STATE(4846), + [sym__inter_double_quotes] = STATE(4847), + [sym_val_list] = STATE(4862), + [sym__spread_list] = STATE(4959), + [sym_list_body] = STATE(5332), + [sym_val_entry] = STATE(4745), + [sym_val_record] = STATE(4862), + [sym_val_table] = STATE(4862), + [sym_val_closure] = STATE(4862), + [sym__unquoted_in_list] = STATE(4479), + [sym__unquoted_in_list_with_expr] = STATE(4961), + [sym__unquoted_anonymous_prefix] = STATE(4729), + [sym_comment] = STATE(394), + [aux_sym__types_body_repeat1] = STATE(482), + [aux_sym_parameter_repeat2] = STATE(4481), + [aux_sym_list_body_repeat1] = STATE(558), + [anon_sym_true] = ACTIONS(1472), + [anon_sym_false] = ACTIONS(1472), + [anon_sym_null] = ACTIONS(1474), + [aux_sym_cmd_identifier_token3] = ACTIONS(1476), + [aux_sym_cmd_identifier_token4] = ACTIONS(1476), + [aux_sym_cmd_identifier_token5] = ACTIONS(1476), [sym__newline] = ACTIONS(1586), [anon_sym_LBRACK] = ACTIONS(1588), - [anon_sym_RBRACK] = ACTIONS(1553), + [anon_sym_RBRACK] = ACTIONS(1561), [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1480), + [anon_sym_COMMA] = ACTIONS(1484), [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1482), - [anon_sym_DOT_DOT] = ACTIONS(1484), + [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_DOT_DOT] = ACTIONS(1488), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1486), - [anon_sym_DOT_DOT_LT] = ACTIONS(1486), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1490), + [anon_sym_DOT_DOT_LT] = ACTIONS(1490), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1488), - [aux_sym__val_number_decimal_token2] = ACTIONS(1490), - [aux_sym__val_number_decimal_token3] = ACTIONS(1492), - [aux_sym__val_number_decimal_token4] = ACTIONS(1492), + [aux_sym__val_number_decimal_token1] = ACTIONS(1492), + [aux_sym__val_number_decimal_token2] = ACTIONS(1494), + [aux_sym__val_number_decimal_token3] = ACTIONS(1496), + [aux_sym__val_number_decimal_token4] = ACTIONS(1496), [aux_sym__val_number_token1] = ACTIONS(1414), [aux_sym__val_number_token2] = ACTIONS(1414), [aux_sym__val_number_token3] = ACTIONS(1414), [anon_sym_0b] = ACTIONS(1416), [anon_sym_0o] = ACTIONS(1418), [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1494), + [sym_val_date] = ACTIONS(1498), [anon_sym_DQUOTE] = ACTIONS(1422), [anon_sym_SQUOTE] = ACTIONS(1424), [anon_sym_BQUOTE] = ACTIONS(1426), @@ -78612,152 +79763,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1436), }, - [STATE(391)] = { - [sym_comment] = STATE(391), - [aux_sym__types_body_repeat2] = STATE(1470), - [anon_sym_EQ] = ACTIONS(1612), - [anon_sym_PLUS_EQ] = ACTIONS(1612), - [anon_sym_DASH_EQ] = ACTIONS(1612), - [anon_sym_STAR_EQ] = ACTIONS(1612), - [anon_sym_SLASH_EQ] = ACTIONS(1612), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1612), - [anon_sym_in] = ACTIONS(1614), - [sym__newline] = ACTIONS(1614), - [anon_sym_SEMI] = ACTIONS(1614), - [anon_sym_PIPE] = ACTIONS(1614), - [anon_sym_err_GT_PIPE] = ACTIONS(1614), - [anon_sym_out_GT_PIPE] = ACTIONS(1614), - [anon_sym_e_GT_PIPE] = ACTIONS(1614), - [anon_sym_o_GT_PIPE] = ACTIONS(1614), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1614), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1614), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1614), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1614), - [anon_sym_GT2] = ACTIONS(1614), - [anon_sym_DASH2] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(1616), - [anon_sym_STAR2] = ACTIONS(1614), - [anon_sym_and2] = ACTIONS(1614), - [anon_sym_xor2] = ACTIONS(1614), - [anon_sym_or2] = ACTIONS(1614), - [anon_sym_not_DASHin2] = ACTIONS(1614), - [anon_sym_has2] = ACTIONS(1614), - [anon_sym_not_DASHhas2] = ACTIONS(1614), - [anon_sym_starts_DASHwith2] = ACTIONS(1614), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1614), - [anon_sym_ends_DASHwith2] = ACTIONS(1614), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1614), - [anon_sym_EQ_EQ2] = ACTIONS(1614), - [anon_sym_BANG_EQ2] = ACTIONS(1614), - [anon_sym_LT2] = ACTIONS(1614), - [anon_sym_LT_EQ2] = ACTIONS(1614), - [anon_sym_GT_EQ2] = ACTIONS(1614), - [anon_sym_EQ_TILDE2] = ACTIONS(1614), - [anon_sym_BANG_TILDE2] = ACTIONS(1614), - [anon_sym_like2] = ACTIONS(1614), - [anon_sym_not_DASHlike2] = ACTIONS(1614), - [anon_sym_STAR_STAR2] = ACTIONS(1614), - [anon_sym_PLUS_PLUS2] = ACTIONS(1614), - [anon_sym_SLASH2] = ACTIONS(1614), - [anon_sym_mod2] = ACTIONS(1614), - [anon_sym_SLASH_SLASH2] = ACTIONS(1614), - [anon_sym_PLUS2] = ACTIONS(1614), - [anon_sym_bit_DASHshl2] = ACTIONS(1614), - [anon_sym_bit_DASHshr2] = ACTIONS(1614), - [anon_sym_bit_DASHand2] = ACTIONS(1614), - [anon_sym_bit_DASHxor2] = ACTIONS(1614), - [anon_sym_bit_DASHor2] = ACTIONS(1614), - [anon_sym_DOT_DOT2] = ACTIONS(1618), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1620), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1620), - [sym__entry_separator] = ACTIONS(1622), - [anon_sym_COLON2] = ACTIONS(1624), - [anon_sym_err_GT] = ACTIONS(1614), - [anon_sym_out_GT] = ACTIONS(1614), - [anon_sym_e_GT] = ACTIONS(1614), - [anon_sym_o_GT] = ACTIONS(1614), - [anon_sym_err_PLUSout_GT] = ACTIONS(1614), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1614), - [anon_sym_o_PLUSe_GT] = ACTIONS(1614), - [anon_sym_e_PLUSo_GT] = ACTIONS(1614), - [anon_sym_err_GT_GT] = ACTIONS(1614), - [anon_sym_out_GT_GT] = ACTIONS(1614), - [anon_sym_e_GT_GT] = ACTIONS(1614), - [anon_sym_o_GT_GT] = ACTIONS(1614), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1614), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1614), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1614), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1614), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(392)] = { - [sym_expr_parenthesized] = STATE(4132), - [sym__spread_parenthesized] = STATE(4915), - [sym_val_range] = STATE(4939), - [sym__val_range] = STATE(4693), - [sym__value] = STATE(4939), - [sym_val_nothing] = STATE(4538), - [sym_val_bool] = STATE(4320), - [sym__spread_variable] = STATE(4943), - [sym_val_variable] = STATE(3965), - [sym_val_cellpath] = STATE(4538), - [sym_val_number] = STATE(4538), - [sym__val_number_decimal] = STATE(3621), - [sym__val_number] = STATE(4386), - [sym_val_duration] = STATE(4538), - [sym_val_filesize] = STATE(4538), - [sym_val_binary] = STATE(4538), - [sym_val_string] = STATE(4538), - [sym__raw_str] = STATE(3665), - [sym__str_double_quotes] = STATE(3665), - [sym__str_single_quotes] = STATE(3665), - [sym__str_back_ticks] = STATE(3665), - [sym_val_interpolated] = STATE(4538), - [sym__inter_single_quotes] = STATE(4680), - [sym__inter_double_quotes] = STATE(4683), - [sym_val_list] = STATE(4538), - [sym__spread_list] = STATE(4915), - [sym_list_body] = STATE(5242), - [sym_val_entry] = STATE(4524), - [sym_val_record] = STATE(4538), - [sym_val_table] = STATE(4538), - [sym_val_closure] = STATE(4538), - [sym__unquoted_in_list] = STATE(4401), - [sym__unquoted_in_list_with_expr] = STATE(4939), - [sym__unquoted_anonymous_prefix] = STATE(4693), - [sym_comment] = STATE(392), - [aux_sym__types_body_repeat1] = STATE(465), - [aux_sym_parameter_repeat2] = STATE(4405), - [aux_sym_list_body_repeat1] = STATE(599), - [anon_sym_true] = ACTIONS(1468), - [anon_sym_false] = ACTIONS(1468), - [anon_sym_null] = ACTIONS(1470), - [aux_sym_cmd_identifier_token3] = ACTIONS(1472), - [aux_sym_cmd_identifier_token4] = ACTIONS(1472), - [aux_sym_cmd_identifier_token5] = ACTIONS(1472), + [STATE(395)] = { + [sym_expr_parenthesized] = STATE(4280), + [sym__spread_parenthesized] = STATE(4959), + [sym_val_range] = STATE(4961), + [sym__val_range] = STATE(4729), + [sym__value] = STATE(4961), + [sym_val_nothing] = STATE(4862), + [sym_val_bool] = STATE(4431), + [sym__spread_variable] = STATE(4968), + [sym_val_variable] = STATE(4050), + [sym_val_cellpath] = STATE(4862), + [sym_val_number] = STATE(4862), + [sym__val_number_decimal] = STATE(3653), + [sym__val_number] = STATE(4628), + [sym_val_duration] = STATE(4862), + [sym_val_filesize] = STATE(4862), + [sym_val_binary] = STATE(4862), + [sym_val_string] = STATE(4862), + [sym__raw_str] = STATE(3725), + [sym__str_double_quotes] = STATE(3725), + [sym__str_single_quotes] = STATE(3725), + [sym__str_back_ticks] = STATE(3725), + [sym_val_interpolated] = STATE(4862), + [sym__inter_single_quotes] = STATE(4846), + [sym__inter_double_quotes] = STATE(4847), + [sym_val_list] = STATE(4862), + [sym__spread_list] = STATE(4959), + [sym_list_body] = STATE(5134), + [sym_val_entry] = STATE(4745), + [sym_val_record] = STATE(4862), + [sym_val_table] = STATE(4862), + [sym_val_closure] = STATE(4862), + [sym__unquoted_in_list] = STATE(4479), + [sym__unquoted_in_list_with_expr] = STATE(4961), + [sym__unquoted_anonymous_prefix] = STATE(4729), + [sym_comment] = STATE(395), + [aux_sym__types_body_repeat1] = STATE(482), + [aux_sym_parameter_repeat2] = STATE(4481), + [aux_sym_list_body_repeat1] = STATE(558), + [anon_sym_true] = ACTIONS(1472), + [anon_sym_false] = ACTIONS(1472), + [anon_sym_null] = ACTIONS(1474), + [aux_sym_cmd_identifier_token3] = ACTIONS(1476), + [aux_sym_cmd_identifier_token4] = ACTIONS(1476), + [aux_sym_cmd_identifier_token5] = ACTIONS(1476), [sym__newline] = ACTIONS(1586), [anon_sym_LBRACK] = ACTIONS(1588), - [anon_sym_RBRACK] = ACTIONS(1626), + [anon_sym_RBRACK] = ACTIONS(1641), [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1480), + [anon_sym_COMMA] = ACTIONS(1484), [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1482), - [anon_sym_DOT_DOT] = ACTIONS(1484), + [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_DOT_DOT] = ACTIONS(1488), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1486), - [anon_sym_DOT_DOT_LT] = ACTIONS(1486), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1490), + [anon_sym_DOT_DOT_LT] = ACTIONS(1490), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1488), - [aux_sym__val_number_decimal_token2] = ACTIONS(1490), - [aux_sym__val_number_decimal_token3] = ACTIONS(1492), - [aux_sym__val_number_decimal_token4] = ACTIONS(1492), + [aux_sym__val_number_decimal_token1] = ACTIONS(1492), + [aux_sym__val_number_decimal_token2] = ACTIONS(1494), + [aux_sym__val_number_decimal_token3] = ACTIONS(1496), + [aux_sym__val_number_decimal_token4] = ACTIONS(1496), [aux_sym__val_number_token1] = ACTIONS(1414), [aux_sym__val_number_token2] = ACTIONS(1414), [aux_sym__val_number_token3] = ACTIONS(1414), [anon_sym_0b] = ACTIONS(1416), [anon_sym_0o] = ACTIONS(1418), [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1494), + [sym_val_date] = ACTIONS(1498), [anon_sym_DQUOTE] = ACTIONS(1422), [anon_sym_SQUOTE] = ACTIONS(1424), [anon_sym_BQUOTE] = ACTIONS(1426), @@ -78768,152 +79841,308 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1436), }, - [STATE(393)] = { - [sym_expr_parenthesized] = STATE(4132), - [sym__spread_parenthesized] = STATE(4915), - [sym_val_range] = STATE(4939), - [sym__val_range] = STATE(4693), - [sym__value] = STATE(4939), - [sym_val_nothing] = STATE(4538), - [sym_val_bool] = STATE(4320), - [sym__spread_variable] = STATE(4943), - [sym_val_variable] = STATE(3965), - [sym_val_cellpath] = STATE(4538), - [sym_val_number] = STATE(4538), - [sym__val_number_decimal] = STATE(3621), - [sym__val_number] = STATE(4386), - [sym_val_duration] = STATE(4538), - [sym_val_filesize] = STATE(4538), - [sym_val_binary] = STATE(4538), - [sym_val_string] = STATE(4538), - [sym__raw_str] = STATE(3665), - [sym__str_double_quotes] = STATE(3665), - [sym__str_single_quotes] = STATE(3665), - [sym__str_back_ticks] = STATE(3665), - [sym_val_interpolated] = STATE(4538), - [sym__inter_single_quotes] = STATE(4680), - [sym__inter_double_quotes] = STATE(4683), - [sym_val_list] = STATE(4538), - [sym__spread_list] = STATE(4915), - [sym_list_body] = STATE(4975), - [sym_val_entry] = STATE(4524), - [sym_val_record] = STATE(4538), - [sym_val_table] = STATE(4538), - [sym_val_closure] = STATE(4538), - [sym__unquoted_in_list] = STATE(4401), - [sym__unquoted_in_list_with_expr] = STATE(4939), - [sym__unquoted_anonymous_prefix] = STATE(4693), - [sym_comment] = STATE(393), - [aux_sym__types_body_repeat1] = STATE(465), - [aux_sym_parameter_repeat2] = STATE(4405), - [aux_sym_list_body_repeat1] = STATE(599), - [anon_sym_true] = ACTIONS(1468), - [anon_sym_false] = ACTIONS(1468), - [anon_sym_null] = ACTIONS(1470), - [aux_sym_cmd_identifier_token3] = ACTIONS(1472), - [aux_sym_cmd_identifier_token4] = ACTIONS(1472), - [aux_sym_cmd_identifier_token5] = ACTIONS(1472), - [sym__newline] = ACTIONS(1586), - [anon_sym_LBRACK] = ACTIONS(1588), - [anon_sym_RBRACK] = ACTIONS(1628), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1480), - [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1482), - [anon_sym_DOT_DOT] = ACTIONS(1484), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1486), - [anon_sym_DOT_DOT_LT] = ACTIONS(1486), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1488), - [aux_sym__val_number_decimal_token2] = ACTIONS(1490), - [aux_sym__val_number_decimal_token3] = ACTIONS(1492), - [aux_sym__val_number_decimal_token4] = ACTIONS(1492), - [aux_sym__val_number_token1] = ACTIONS(1414), - [aux_sym__val_number_token2] = ACTIONS(1414), - [aux_sym__val_number_token3] = ACTIONS(1414), - [anon_sym_0b] = ACTIONS(1416), - [anon_sym_0o] = ACTIONS(1418), - [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1494), - [anon_sym_DQUOTE] = ACTIONS(1422), - [anon_sym_SQUOTE] = ACTIONS(1424), - [anon_sym_BQUOTE] = ACTIONS(1426), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1428), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1430), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1432), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), + [STATE(396)] = { + [sym_comment] = STATE(396), + [anon_sym_EQ] = ACTIONS(1551), + [anon_sym_PLUS_EQ] = ACTIONS(1553), + [anon_sym_DASH_EQ] = ACTIONS(1553), + [anon_sym_STAR_EQ] = ACTIONS(1553), + [anon_sym_SLASH_EQ] = ACTIONS(1553), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1553), + [anon_sym_in] = ACTIONS(1553), + [sym__newline] = ACTIONS(1553), + [anon_sym_SEMI] = ACTIONS(1553), + [anon_sym_PIPE] = ACTIONS(1553), + [anon_sym_err_GT_PIPE] = ACTIONS(1553), + [anon_sym_out_GT_PIPE] = ACTIONS(1553), + [anon_sym_e_GT_PIPE] = ACTIONS(1553), + [anon_sym_o_GT_PIPE] = ACTIONS(1553), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1553), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1553), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1553), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1553), + [anon_sym_RPAREN] = ACTIONS(1553), + [anon_sym_GT2] = ACTIONS(1551), + [anon_sym_DASH2] = ACTIONS(1551), + [anon_sym_RBRACE] = ACTIONS(1553), + [anon_sym_STAR2] = ACTIONS(1551), + [anon_sym_and2] = ACTIONS(1553), + [anon_sym_xor2] = ACTIONS(1553), + [anon_sym_or2] = ACTIONS(1553), + [anon_sym_not_DASHin2] = ACTIONS(1553), + [anon_sym_has2] = ACTIONS(1553), + [anon_sym_not_DASHhas2] = ACTIONS(1553), + [anon_sym_starts_DASHwith2] = ACTIONS(1553), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1553), + [anon_sym_ends_DASHwith2] = ACTIONS(1553), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1553), + [anon_sym_EQ_EQ2] = ACTIONS(1553), + [anon_sym_BANG_EQ2] = ACTIONS(1553), + [anon_sym_LT2] = ACTIONS(1551), + [anon_sym_LT_EQ2] = ACTIONS(1553), + [anon_sym_GT_EQ2] = ACTIONS(1553), + [anon_sym_EQ_TILDE2] = ACTIONS(1553), + [anon_sym_BANG_TILDE2] = ACTIONS(1553), + [anon_sym_like2] = ACTIONS(1553), + [anon_sym_not_DASHlike2] = ACTIONS(1553), + [anon_sym_STAR_STAR2] = ACTIONS(1553), + [anon_sym_PLUS_PLUS2] = ACTIONS(1551), + [anon_sym_SLASH2] = ACTIONS(1551), + [anon_sym_mod2] = ACTIONS(1553), + [anon_sym_SLASH_SLASH2] = ACTIONS(1553), + [anon_sym_PLUS2] = ACTIONS(1551), + [anon_sym_bit_DASHshl2] = ACTIONS(1553), + [anon_sym_bit_DASHshr2] = ACTIONS(1553), + [anon_sym_bit_DASHand2] = ACTIONS(1553), + [anon_sym_bit_DASHxor2] = ACTIONS(1553), + [anon_sym_bit_DASHor2] = ACTIONS(1553), + [anon_sym_DOT_DOT2] = ACTIONS(1551), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1553), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1553), + [anon_sym_COLON2] = ACTIONS(1553), + [anon_sym_DOT2] = ACTIONS(1551), + [anon_sym_err_GT] = ACTIONS(1551), + [anon_sym_out_GT] = ACTIONS(1551), + [anon_sym_e_GT] = ACTIONS(1551), + [anon_sym_o_GT] = ACTIONS(1551), + [anon_sym_err_PLUSout_GT] = ACTIONS(1551), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1551), + [anon_sym_o_PLUSe_GT] = ACTIONS(1551), + [anon_sym_e_PLUSo_GT] = ACTIONS(1551), + [anon_sym_err_GT_GT] = ACTIONS(1553), + [anon_sym_out_GT_GT] = ACTIONS(1553), + [anon_sym_e_GT_GT] = ACTIONS(1553), + [anon_sym_o_GT_GT] = ACTIONS(1553), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1553), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1553), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1553), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1553), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1436), }, - [STATE(394)] = { - [sym_expr_parenthesized] = STATE(4132), - [sym__spread_parenthesized] = STATE(4915), - [sym_val_range] = STATE(4939), - [sym__val_range] = STATE(4693), - [sym__value] = STATE(4939), - [sym_val_nothing] = STATE(4538), - [sym_val_bool] = STATE(4320), - [sym__spread_variable] = STATE(4943), - [sym_val_variable] = STATE(3965), - [sym_val_cellpath] = STATE(4538), - [sym_val_number] = STATE(4538), - [sym__val_number_decimal] = STATE(3621), - [sym__val_number] = STATE(4386), - [sym_val_duration] = STATE(4538), - [sym_val_filesize] = STATE(4538), - [sym_val_binary] = STATE(4538), - [sym_val_string] = STATE(4538), - [sym__raw_str] = STATE(3665), - [sym__str_double_quotes] = STATE(3665), - [sym__str_single_quotes] = STATE(3665), - [sym__str_back_ticks] = STATE(3665), - [sym_val_interpolated] = STATE(4538), - [sym__inter_single_quotes] = STATE(4680), - [sym__inter_double_quotes] = STATE(4683), - [sym_val_list] = STATE(4538), - [sym__spread_list] = STATE(4915), - [sym_list_body] = STATE(5200), - [sym_val_entry] = STATE(4524), - [sym_val_record] = STATE(4538), - [sym_val_table] = STATE(4538), - [sym_val_closure] = STATE(4538), - [sym__unquoted_in_list] = STATE(4401), - [sym__unquoted_in_list_with_expr] = STATE(4939), - [sym__unquoted_anonymous_prefix] = STATE(4693), - [sym_comment] = STATE(394), - [aux_sym__types_body_repeat1] = STATE(465), - [aux_sym_parameter_repeat2] = STATE(4405), - [aux_sym_list_body_repeat1] = STATE(599), - [anon_sym_true] = ACTIONS(1468), - [anon_sym_false] = ACTIONS(1468), - [anon_sym_null] = ACTIONS(1470), - [aux_sym_cmd_identifier_token3] = ACTIONS(1472), - [aux_sym_cmd_identifier_token4] = ACTIONS(1472), - [aux_sym_cmd_identifier_token5] = ACTIONS(1472), + [STATE(397)] = { + [sym_comment] = STATE(397), + [anon_sym_EQ] = ACTIONS(1468), + [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_RPAREN] = ACTIONS(1470), + [anon_sym_GT2] = ACTIONS(1468), + [anon_sym_DASH2] = ACTIONS(1468), + [anon_sym_RBRACE] = ACTIONS(1470), + [anon_sym_STAR2] = ACTIONS(1468), + [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(1468), + [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(1468), + [anon_sym_SLASH2] = ACTIONS(1468), + [anon_sym_mod2] = ACTIONS(1470), + [anon_sym_SLASH_SLASH2] = ACTIONS(1470), + [anon_sym_PLUS2] = ACTIONS(1468), + [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(1468), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1470), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1470), + [anon_sym_COLON2] = ACTIONS(1470), + [anon_sym_DOT2] = ACTIONS(1468), + [anon_sym_err_GT] = ACTIONS(1468), + [anon_sym_out_GT] = ACTIONS(1468), + [anon_sym_e_GT] = ACTIONS(1468), + [anon_sym_o_GT] = ACTIONS(1468), + [anon_sym_err_PLUSout_GT] = ACTIONS(1468), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1468), + [anon_sym_o_PLUSe_GT] = ACTIONS(1468), + [anon_sym_e_PLUSo_GT] = ACTIONS(1468), + [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(3), + }, + [STATE(398)] = { + [sym_path] = STATE(419), + [sym_comment] = STATE(398), + [aux_sym__where_predicate_lhs_repeat1] = STATE(383), + [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(1584), + [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(399)] = { + [sym_expr_parenthesized] = STATE(4280), + [sym__spread_parenthesized] = STATE(4959), + [sym_val_range] = STATE(4961), + [sym__val_range] = STATE(4729), + [sym__value] = STATE(4961), + [sym_val_nothing] = STATE(4862), + [sym_val_bool] = STATE(4431), + [sym__spread_variable] = STATE(4968), + [sym_val_variable] = STATE(4050), + [sym_val_cellpath] = STATE(4862), + [sym_val_number] = STATE(4862), + [sym__val_number_decimal] = STATE(3653), + [sym__val_number] = STATE(4628), + [sym_val_duration] = STATE(4862), + [sym_val_filesize] = STATE(4862), + [sym_val_binary] = STATE(4862), + [sym_val_string] = STATE(4862), + [sym__raw_str] = STATE(3725), + [sym__str_double_quotes] = STATE(3725), + [sym__str_single_quotes] = STATE(3725), + [sym__str_back_ticks] = STATE(3725), + [sym_val_interpolated] = STATE(4862), + [sym__inter_single_quotes] = STATE(4846), + [sym__inter_double_quotes] = STATE(4847), + [sym_val_list] = STATE(4862), + [sym__spread_list] = STATE(4959), + [sym_list_body] = STATE(5342), + [sym_val_entry] = STATE(4745), + [sym_val_record] = STATE(4862), + [sym_val_table] = STATE(4862), + [sym_val_closure] = STATE(4862), + [sym__unquoted_in_list] = STATE(4479), + [sym__unquoted_in_list_with_expr] = STATE(4961), + [sym__unquoted_anonymous_prefix] = STATE(4729), + [sym_comment] = STATE(399), + [aux_sym__types_body_repeat1] = STATE(482), + [aux_sym_parameter_repeat2] = STATE(4481), + [aux_sym_list_body_repeat1] = STATE(558), + [anon_sym_true] = ACTIONS(1472), + [anon_sym_false] = ACTIONS(1472), + [anon_sym_null] = ACTIONS(1474), + [aux_sym_cmd_identifier_token3] = ACTIONS(1476), + [aux_sym_cmd_identifier_token4] = ACTIONS(1476), + [aux_sym_cmd_identifier_token5] = ACTIONS(1476), [sym__newline] = ACTIONS(1586), [anon_sym_LBRACK] = ACTIONS(1588), - [anon_sym_RBRACK] = ACTIONS(1555), + [anon_sym_RBRACK] = ACTIONS(1541), [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1480), + [anon_sym_COMMA] = ACTIONS(1484), [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1482), - [anon_sym_DOT_DOT] = ACTIONS(1484), + [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_DOT_DOT] = ACTIONS(1488), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1486), - [anon_sym_DOT_DOT_LT] = ACTIONS(1486), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1490), + [anon_sym_DOT_DOT_LT] = ACTIONS(1490), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1488), - [aux_sym__val_number_decimal_token2] = ACTIONS(1490), - [aux_sym__val_number_decimal_token3] = ACTIONS(1492), - [aux_sym__val_number_decimal_token4] = ACTIONS(1492), + [aux_sym__val_number_decimal_token1] = ACTIONS(1492), + [aux_sym__val_number_decimal_token2] = ACTIONS(1494), + [aux_sym__val_number_decimal_token3] = ACTIONS(1496), + [aux_sym__val_number_decimal_token4] = ACTIONS(1496), [aux_sym__val_number_token1] = ACTIONS(1414), [aux_sym__val_number_token2] = ACTIONS(1414), [aux_sym__val_number_token3] = ACTIONS(1414), [anon_sym_0b] = ACTIONS(1416), [anon_sym_0o] = ACTIONS(1418), [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1494), + [sym_val_date] = ACTIONS(1498), [anon_sym_DQUOTE] = ACTIONS(1422), [anon_sym_SQUOTE] = ACTIONS(1424), [anon_sym_BQUOTE] = ACTIONS(1426), @@ -78924,166 +80153,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1436), }, - [STATE(395)] = { - [sym_comment] = STATE(395), - [anon_sym_EQ] = ACTIONS(1547), - [anon_sym_PLUS_EQ] = ACTIONS(1549), - [anon_sym_DASH_EQ] = ACTIONS(1549), - [anon_sym_STAR_EQ] = ACTIONS(1549), - [anon_sym_SLASH_EQ] = ACTIONS(1549), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1549), - [anon_sym_in] = ACTIONS(1549), - [sym__newline] = ACTIONS(1549), - [anon_sym_SEMI] = ACTIONS(1549), - [anon_sym_PIPE] = ACTIONS(1549), - [anon_sym_err_GT_PIPE] = ACTIONS(1549), - [anon_sym_out_GT_PIPE] = ACTIONS(1549), - [anon_sym_e_GT_PIPE] = ACTIONS(1549), - [anon_sym_o_GT_PIPE] = ACTIONS(1549), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1549), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1549), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1549), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1549), - [anon_sym_RPAREN] = ACTIONS(1549), - [anon_sym_GT2] = ACTIONS(1547), - [anon_sym_DASH2] = ACTIONS(1547), - [anon_sym_RBRACE] = ACTIONS(1549), - [anon_sym_STAR2] = ACTIONS(1547), - [anon_sym_and2] = ACTIONS(1549), - [anon_sym_xor2] = ACTIONS(1549), - [anon_sym_or2] = ACTIONS(1549), - [anon_sym_not_DASHin2] = ACTIONS(1549), - [anon_sym_has2] = ACTIONS(1549), - [anon_sym_not_DASHhas2] = ACTIONS(1549), - [anon_sym_starts_DASHwith2] = ACTIONS(1549), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1549), - [anon_sym_ends_DASHwith2] = ACTIONS(1549), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1549), - [anon_sym_EQ_EQ2] = ACTIONS(1549), - [anon_sym_BANG_EQ2] = ACTIONS(1549), - [anon_sym_LT2] = ACTIONS(1547), - [anon_sym_LT_EQ2] = ACTIONS(1549), - [anon_sym_GT_EQ2] = ACTIONS(1549), - [anon_sym_EQ_TILDE2] = ACTIONS(1549), - [anon_sym_BANG_TILDE2] = ACTIONS(1549), - [anon_sym_like2] = ACTIONS(1549), - [anon_sym_not_DASHlike2] = ACTIONS(1549), - [anon_sym_STAR_STAR2] = ACTIONS(1549), - [anon_sym_PLUS_PLUS2] = ACTIONS(1547), - [anon_sym_SLASH2] = ACTIONS(1547), - [anon_sym_mod2] = ACTIONS(1549), - [anon_sym_SLASH_SLASH2] = ACTIONS(1549), - [anon_sym_PLUS2] = ACTIONS(1547), - [anon_sym_bit_DASHshl2] = ACTIONS(1549), - [anon_sym_bit_DASHshr2] = ACTIONS(1549), - [anon_sym_bit_DASHand2] = ACTIONS(1549), - [anon_sym_bit_DASHxor2] = ACTIONS(1549), - [anon_sym_bit_DASHor2] = ACTIONS(1549), - [anon_sym_DOT_DOT2] = ACTIONS(1547), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1549), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1549), - [anon_sym_COLON2] = ACTIONS(1549), - [anon_sym_DOT2] = ACTIONS(1547), - [anon_sym_err_GT] = ACTIONS(1547), - [anon_sym_out_GT] = ACTIONS(1547), - [anon_sym_e_GT] = ACTIONS(1547), - [anon_sym_o_GT] = ACTIONS(1547), - [anon_sym_err_PLUSout_GT] = ACTIONS(1547), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1547), - [anon_sym_o_PLUSe_GT] = ACTIONS(1547), - [anon_sym_e_PLUSo_GT] = ACTIONS(1547), - [anon_sym_err_GT_GT] = ACTIONS(1549), - [anon_sym_out_GT_GT] = ACTIONS(1549), - [anon_sym_e_GT_GT] = ACTIONS(1549), - [anon_sym_o_GT_GT] = ACTIONS(1549), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1549), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1549), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1549), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1549), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(396)] = { - [sym_comment] = STATE(396), - [ts_builtin_sym_end] = ACTIONS(1521), - [anon_sym_EQ] = ACTIONS(1519), - [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(1519), - [anon_sym_DASH2] = ACTIONS(1519), - [anon_sym_STAR2] = ACTIONS(1519), - [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(1519), - [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(1519), - [anon_sym_SLASH2] = ACTIONS(1519), - [anon_sym_mod2] = ACTIONS(1521), - [anon_sym_SLASH_SLASH2] = ACTIONS(1521), - [anon_sym_PLUS2] = ACTIONS(1519), - [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(1519), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1521), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1521), - [anon_sym_QMARK2] = ACTIONS(1521), - [anon_sym_BANG] = ACTIONS(1519), - [anon_sym_DOT2] = ACTIONS(1519), - [anon_sym_err_GT] = ACTIONS(1519), - [anon_sym_out_GT] = ACTIONS(1519), - [anon_sym_e_GT] = ACTIONS(1519), - [anon_sym_o_GT] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT] = ACTIONS(1519), - [anon_sym_err_GT_GT] = ACTIONS(1521), - [anon_sym_out_GT_GT] = ACTIONS(1521), - [anon_sym_e_GT_GT] = ACTIONS(1521), - [anon_sym_o_GT_GT] = ACTIONS(1521), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1521), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1521), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1521), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1521), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(397)] = { - [sym_path] = STATE(424), - [sym_comment] = STATE(397), - [aux_sym__where_predicate_lhs_repeat1] = STATE(397), + [STATE(400)] = { + [sym_comment] = STATE(400), [ts_builtin_sym_end] = ACTIONS(1510), [anon_sym_EQ] = ACTIONS(1508), [anon_sym_PLUS_EQ] = ACTIONS(1510), @@ -79139,7 +80210,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1508), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1510), [anon_sym_DOT_DOT_LT2] = ACTIONS(1510), - [anon_sym_DOT2] = ACTIONS(1630), + [anon_sym_QMARK2] = ACTIONS(1510), + [anon_sym_BANG] = ACTIONS(1508), + [anon_sym_DOT2] = ACTIONS(1508), [anon_sym_err_GT] = ACTIONS(1508), [anon_sym_out_GT] = ACTIONS(1508), [anon_sym_e_GT] = ACTIONS(1508), @@ -79158,152 +80231,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1510), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(398)] = { - [sym__expr_parenthesized_immediate] = STATE(688), - [sym__immediate_decimal] = STATE(528), - [sym_val_variable] = STATE(688), - [sym_comment] = STATE(398), - [anon_sym_in] = ACTIONS(1598), - [sym__newline] = ACTIONS(1598), - [anon_sym_SEMI] = ACTIONS(1598), - [anon_sym_PIPE] = ACTIONS(1598), - [anon_sym_err_GT_PIPE] = ACTIONS(1598), - [anon_sym_out_GT_PIPE] = ACTIONS(1598), - [anon_sym_e_GT_PIPE] = ACTIONS(1598), - [anon_sym_o_GT_PIPE] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1598), - [anon_sym_RPAREN] = ACTIONS(1598), - [anon_sym_DOLLAR] = ACTIONS(1600), - [anon_sym_GT2] = ACTIONS(1602), - [anon_sym_DASH2] = ACTIONS(1602), - [anon_sym_RBRACE] = ACTIONS(1598), - [anon_sym_STAR2] = ACTIONS(1602), - [anon_sym_and2] = ACTIONS(1598), - [anon_sym_xor2] = ACTIONS(1598), - [anon_sym_or2] = ACTIONS(1598), - [anon_sym_not_DASHin2] = ACTIONS(1598), - [anon_sym_has2] = ACTIONS(1598), - [anon_sym_not_DASHhas2] = ACTIONS(1598), - [anon_sym_starts_DASHwith2] = ACTIONS(1598), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1598), - [anon_sym_ends_DASHwith2] = ACTIONS(1598), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1598), - [anon_sym_EQ_EQ2] = ACTIONS(1598), - [anon_sym_BANG_EQ2] = ACTIONS(1598), - [anon_sym_LT2] = ACTIONS(1602), - [anon_sym_LT_EQ2] = ACTIONS(1598), - [anon_sym_GT_EQ2] = ACTIONS(1598), - [anon_sym_EQ_TILDE2] = ACTIONS(1598), - [anon_sym_BANG_TILDE2] = ACTIONS(1598), - [anon_sym_like2] = ACTIONS(1598), - [anon_sym_not_DASHlike2] = ACTIONS(1598), - [anon_sym_LPAREN2] = ACTIONS(1604), - [anon_sym_STAR_STAR2] = ACTIONS(1598), - [anon_sym_PLUS_PLUS2] = ACTIONS(1598), - [anon_sym_SLASH2] = ACTIONS(1602), - [anon_sym_mod2] = ACTIONS(1598), - [anon_sym_SLASH_SLASH2] = ACTIONS(1598), - [anon_sym_PLUS2] = ACTIONS(1602), - [anon_sym_bit_DASHshl2] = ACTIONS(1598), - [anon_sym_bit_DASHshr2] = ACTIONS(1598), - [anon_sym_bit_DASHand2] = ACTIONS(1598), - [anon_sym_bit_DASHxor2] = ACTIONS(1598), - [anon_sym_bit_DASHor2] = ACTIONS(1598), - [anon_sym_DOT] = ACTIONS(1633), - [aux_sym__immediate_decimal_token1] = ACTIONS(1608), - [aux_sym__immediate_decimal_token2] = ACTIONS(1608), - [aux_sym__immediate_decimal_token3] = ACTIONS(1610), - [aux_sym__immediate_decimal_token4] = ACTIONS(1610), - [anon_sym_err_GT] = ACTIONS(1602), - [anon_sym_out_GT] = ACTIONS(1602), - [anon_sym_e_GT] = ACTIONS(1602), - [anon_sym_o_GT] = ACTIONS(1602), - [anon_sym_err_PLUSout_GT] = ACTIONS(1602), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1602), - [anon_sym_o_PLUSe_GT] = ACTIONS(1602), - [anon_sym_e_PLUSo_GT] = ACTIONS(1602), - [anon_sym_err_GT_GT] = ACTIONS(1598), - [anon_sym_out_GT_GT] = ACTIONS(1598), - [anon_sym_e_GT_GT] = ACTIONS(1598), - [anon_sym_o_GT_GT] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1598), - [sym__unquoted_pattern] = ACTIONS(1635), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(399)] = { - [sym_expr_parenthesized] = STATE(4132), - [sym__spread_parenthesized] = STATE(4915), - [sym_val_range] = STATE(4939), - [sym__val_range] = STATE(4693), - [sym__value] = STATE(4939), - [sym_val_nothing] = STATE(4538), - [sym_val_bool] = STATE(4320), - [sym__spread_variable] = STATE(4943), - [sym_val_variable] = STATE(3965), - [sym_val_cellpath] = STATE(4538), - [sym_val_number] = STATE(4538), - [sym__val_number_decimal] = STATE(3621), - [sym__val_number] = STATE(4386), - [sym_val_duration] = STATE(4538), - [sym_val_filesize] = STATE(4538), - [sym_val_binary] = STATE(4538), - [sym_val_string] = STATE(4538), - [sym__raw_str] = STATE(3665), - [sym__str_double_quotes] = STATE(3665), - [sym__str_single_quotes] = STATE(3665), - [sym__str_back_ticks] = STATE(3665), - [sym_val_interpolated] = STATE(4538), - [sym__inter_single_quotes] = STATE(4680), - [sym__inter_double_quotes] = STATE(4683), - [sym_val_list] = STATE(4538), - [sym__spread_list] = STATE(4915), - [sym_list_body] = STATE(5252), - [sym_val_entry] = STATE(4524), - [sym_val_record] = STATE(4538), - [sym_val_table] = STATE(4538), - [sym_val_closure] = STATE(4538), - [sym__unquoted_in_list] = STATE(4401), - [sym__unquoted_in_list_with_expr] = STATE(4939), - [sym__unquoted_anonymous_prefix] = STATE(4693), - [sym_comment] = STATE(399), - [aux_sym__types_body_repeat1] = STATE(465), - [aux_sym_parameter_repeat2] = STATE(4405), - [aux_sym_list_body_repeat1] = STATE(599), - [anon_sym_true] = ACTIONS(1468), - [anon_sym_false] = ACTIONS(1468), - [anon_sym_null] = ACTIONS(1470), - [aux_sym_cmd_identifier_token3] = ACTIONS(1472), - [aux_sym_cmd_identifier_token4] = ACTIONS(1472), - [aux_sym_cmd_identifier_token5] = ACTIONS(1472), + [STATE(401)] = { + [sym_expr_parenthesized] = STATE(4280), + [sym__spread_parenthesized] = STATE(4959), + [sym_val_range] = STATE(4961), + [sym__val_range] = STATE(4729), + [sym__value] = STATE(4961), + [sym_val_nothing] = STATE(4862), + [sym_val_bool] = STATE(4431), + [sym__spread_variable] = STATE(4968), + [sym_val_variable] = STATE(4050), + [sym_val_cellpath] = STATE(4862), + [sym_val_number] = STATE(4862), + [sym__val_number_decimal] = STATE(3653), + [sym__val_number] = STATE(4628), + [sym_val_duration] = STATE(4862), + [sym_val_filesize] = STATE(4862), + [sym_val_binary] = STATE(4862), + [sym_val_string] = STATE(4862), + [sym__raw_str] = STATE(3725), + [sym__str_double_quotes] = STATE(3725), + [sym__str_single_quotes] = STATE(3725), + [sym__str_back_ticks] = STATE(3725), + [sym_val_interpolated] = STATE(4862), + [sym__inter_single_quotes] = STATE(4846), + [sym__inter_double_quotes] = STATE(4847), + [sym_val_list] = STATE(4862), + [sym__spread_list] = STATE(4959), + [sym_list_body] = STATE(5191), + [sym_val_entry] = STATE(4745), + [sym_val_record] = STATE(4862), + [sym_val_table] = STATE(4862), + [sym_val_closure] = STATE(4862), + [sym__unquoted_in_list] = STATE(4479), + [sym__unquoted_in_list_with_expr] = STATE(4961), + [sym__unquoted_anonymous_prefix] = STATE(4729), + [sym_comment] = STATE(401), + [aux_sym__types_body_repeat1] = STATE(482), + [aux_sym_parameter_repeat2] = STATE(4481), + [aux_sym_list_body_repeat1] = STATE(558), + [anon_sym_true] = ACTIONS(1472), + [anon_sym_false] = ACTIONS(1472), + [anon_sym_null] = ACTIONS(1474), + [aux_sym_cmd_identifier_token3] = ACTIONS(1476), + [aux_sym_cmd_identifier_token4] = ACTIONS(1476), + [aux_sym_cmd_identifier_token5] = ACTIONS(1476), [sym__newline] = ACTIONS(1586), [anon_sym_LBRACK] = ACTIONS(1588), - [anon_sym_RBRACK] = ACTIONS(1637), + [anon_sym_RBRACK] = ACTIONS(1643), [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1480), + [anon_sym_COMMA] = ACTIONS(1484), [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1482), - [anon_sym_DOT_DOT] = ACTIONS(1484), + [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_DOT_DOT] = ACTIONS(1488), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1486), - [anon_sym_DOT_DOT_LT] = ACTIONS(1486), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1490), + [anon_sym_DOT_DOT_LT] = ACTIONS(1490), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1488), - [aux_sym__val_number_decimal_token2] = ACTIONS(1490), - [aux_sym__val_number_decimal_token3] = ACTIONS(1492), - [aux_sym__val_number_decimal_token4] = ACTIONS(1492), + [aux_sym__val_number_decimal_token1] = ACTIONS(1492), + [aux_sym__val_number_decimal_token2] = ACTIONS(1494), + [aux_sym__val_number_decimal_token3] = ACTIONS(1496), + [aux_sym__val_number_decimal_token4] = ACTIONS(1496), [aux_sym__val_number_token1] = ACTIONS(1414), [aux_sym__val_number_token2] = ACTIONS(1414), [aux_sym__val_number_token3] = ACTIONS(1414), [anon_sym_0b] = ACTIONS(1416), [anon_sym_0o] = ACTIONS(1418), [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1494), + [sym_val_date] = ACTIONS(1498), [anon_sym_DQUOTE] = ACTIONS(1422), [anon_sym_SQUOTE] = ACTIONS(1424), [anon_sym_BQUOTE] = ACTIONS(1426), @@ -79314,937 +80309,935 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1436), }, - [STATE(400)] = { - [sym__expr_parenthesized_immediate] = STATE(686), - [sym__immediate_decimal] = STATE(687), - [sym_val_variable] = STATE(686), - [sym_comment] = STATE(400), - [anon_sym_in] = ACTIONS(1639), - [sym__newline] = ACTIONS(1639), - [anon_sym_SEMI] = ACTIONS(1639), - [anon_sym_PIPE] = ACTIONS(1639), - [anon_sym_err_GT_PIPE] = ACTIONS(1639), - [anon_sym_out_GT_PIPE] = ACTIONS(1639), - [anon_sym_e_GT_PIPE] = ACTIONS(1639), - [anon_sym_o_GT_PIPE] = ACTIONS(1639), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1639), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1639), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1639), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1639), - [anon_sym_RPAREN] = ACTIONS(1639), - [anon_sym_DOLLAR] = ACTIONS(1600), - [anon_sym_GT2] = ACTIONS(1641), - [anon_sym_DASH2] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(1639), - [anon_sym_RBRACE] = ACTIONS(1639), - [anon_sym_STAR2] = ACTIONS(1641), - [anon_sym_and2] = ACTIONS(1639), - [anon_sym_xor2] = ACTIONS(1639), - [anon_sym_or2] = ACTIONS(1639), - [anon_sym_not_DASHin2] = ACTIONS(1639), - [anon_sym_has2] = ACTIONS(1639), - [anon_sym_not_DASHhas2] = ACTIONS(1639), - [anon_sym_starts_DASHwith2] = ACTIONS(1639), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1639), - [anon_sym_ends_DASHwith2] = ACTIONS(1639), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1639), - [anon_sym_EQ_EQ2] = ACTIONS(1639), - [anon_sym_BANG_EQ2] = ACTIONS(1639), - [anon_sym_LT2] = ACTIONS(1641), - [anon_sym_LT_EQ2] = ACTIONS(1639), - [anon_sym_GT_EQ2] = ACTIONS(1639), - [anon_sym_EQ_TILDE2] = ACTIONS(1639), - [anon_sym_BANG_TILDE2] = ACTIONS(1639), - [anon_sym_like2] = ACTIONS(1639), - [anon_sym_not_DASHlike2] = ACTIONS(1639), - [anon_sym_LPAREN2] = ACTIONS(1604), - [anon_sym_STAR_STAR2] = ACTIONS(1639), - [anon_sym_PLUS_PLUS2] = ACTIONS(1639), - [anon_sym_SLASH2] = ACTIONS(1641), - [anon_sym_mod2] = ACTIONS(1639), - [anon_sym_SLASH_SLASH2] = ACTIONS(1639), - [anon_sym_PLUS2] = ACTIONS(1641), - [anon_sym_bit_DASHshl2] = ACTIONS(1639), - [anon_sym_bit_DASHshr2] = ACTIONS(1639), - [anon_sym_bit_DASHand2] = ACTIONS(1639), - [anon_sym_bit_DASHxor2] = ACTIONS(1639), - [anon_sym_bit_DASHor2] = ACTIONS(1639), - [anon_sym_DOT] = ACTIONS(1643), - [aux_sym__immediate_decimal_token1] = ACTIONS(1608), - [aux_sym__immediate_decimal_token2] = ACTIONS(1608), - [aux_sym__immediate_decimal_token3] = ACTIONS(1610), - [aux_sym__immediate_decimal_token4] = ACTIONS(1610), - [anon_sym_err_GT] = ACTIONS(1641), - [anon_sym_out_GT] = ACTIONS(1641), - [anon_sym_e_GT] = ACTIONS(1641), - [anon_sym_o_GT] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT] = ACTIONS(1641), - [anon_sym_err_GT_GT] = ACTIONS(1639), - [anon_sym_out_GT_GT] = ACTIONS(1639), - [anon_sym_e_GT_GT] = ACTIONS(1639), - [anon_sym_o_GT_GT] = ACTIONS(1639), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1639), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1639), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1639), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1639), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(401)] = { - [sym_comment] = STATE(401), - [anon_sym_EQ] = ACTIONS(1562), - [anon_sym_PLUS_EQ] = ACTIONS(1564), - [anon_sym_DASH_EQ] = ACTIONS(1564), - [anon_sym_STAR_EQ] = ACTIONS(1564), - [anon_sym_SLASH_EQ] = ACTIONS(1564), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1564), - [anon_sym_in] = ACTIONS(1564), - [sym__newline] = ACTIONS(1564), - [anon_sym_SEMI] = ACTIONS(1564), - [anon_sym_PIPE] = ACTIONS(1564), - [anon_sym_err_GT_PIPE] = ACTIONS(1564), - [anon_sym_out_GT_PIPE] = ACTIONS(1564), - [anon_sym_e_GT_PIPE] = ACTIONS(1564), - [anon_sym_o_GT_PIPE] = ACTIONS(1564), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1564), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1564), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1564), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1564), - [anon_sym_RPAREN] = ACTIONS(1564), - [anon_sym_GT2] = ACTIONS(1562), - [anon_sym_DASH2] = ACTIONS(1562), - [anon_sym_RBRACE] = ACTIONS(1564), - [anon_sym_STAR2] = ACTIONS(1562), - [anon_sym_and2] = ACTIONS(1564), - [anon_sym_xor2] = ACTIONS(1564), - [anon_sym_or2] = ACTIONS(1564), - [anon_sym_not_DASHin2] = ACTIONS(1564), - [anon_sym_has2] = ACTIONS(1564), - [anon_sym_not_DASHhas2] = ACTIONS(1564), - [anon_sym_starts_DASHwith2] = ACTIONS(1564), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1564), - [anon_sym_ends_DASHwith2] = ACTIONS(1564), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1564), - [anon_sym_EQ_EQ2] = ACTIONS(1564), - [anon_sym_BANG_EQ2] = ACTIONS(1564), - [anon_sym_LT2] = ACTIONS(1562), - [anon_sym_LT_EQ2] = ACTIONS(1564), - [anon_sym_GT_EQ2] = ACTIONS(1564), - [anon_sym_EQ_TILDE2] = ACTIONS(1564), - [anon_sym_BANG_TILDE2] = ACTIONS(1564), - [anon_sym_like2] = ACTIONS(1564), - [anon_sym_not_DASHlike2] = ACTIONS(1564), - [anon_sym_STAR_STAR2] = ACTIONS(1564), - [anon_sym_PLUS_PLUS2] = ACTIONS(1562), - [anon_sym_SLASH2] = ACTIONS(1562), - [anon_sym_mod2] = ACTIONS(1564), - [anon_sym_SLASH_SLASH2] = ACTIONS(1564), - [anon_sym_PLUS2] = ACTIONS(1562), - [anon_sym_bit_DASHshl2] = ACTIONS(1564), - [anon_sym_bit_DASHshr2] = ACTIONS(1564), - [anon_sym_bit_DASHand2] = ACTIONS(1564), - [anon_sym_bit_DASHxor2] = ACTIONS(1564), - [anon_sym_bit_DASHor2] = ACTIONS(1564), - [anon_sym_DOT_DOT2] = ACTIONS(1562), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1564), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1564), - [anon_sym_COLON2] = ACTIONS(1564), - [anon_sym_DOT2] = ACTIONS(1562), - [anon_sym_err_GT] = ACTIONS(1562), - [anon_sym_out_GT] = ACTIONS(1562), - [anon_sym_e_GT] = ACTIONS(1562), - [anon_sym_o_GT] = ACTIONS(1562), - [anon_sym_err_PLUSout_GT] = ACTIONS(1562), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1562), - [anon_sym_o_PLUSe_GT] = ACTIONS(1562), - [anon_sym_e_PLUSo_GT] = ACTIONS(1562), - [anon_sym_err_GT_GT] = ACTIONS(1564), - [anon_sym_out_GT_GT] = ACTIONS(1564), - [anon_sym_e_GT_GT] = ACTIONS(1564), - [anon_sym_o_GT_GT] = ACTIONS(1564), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1564), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1564), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1564), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1564), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(402)] = { - [sym_cell_path] = STATE(483), - [sym_path] = STATE(458), [sym_comment] = STATE(402), - [aux_sym__where_predicate_lhs_repeat1] = STATE(427), - [anon_sym_in] = ACTIONS(1645), - [sym__newline] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1645), - [anon_sym_err_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_GT_PIPE] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), - [anon_sym_RPAREN] = ACTIONS(1645), - [anon_sym_GT2] = ACTIONS(1647), - [anon_sym_DASH2] = ACTIONS(1645), - [anon_sym_LBRACE] = ACTIONS(1645), - [anon_sym_RBRACE] = ACTIONS(1645), - [anon_sym_EQ_GT] = ACTIONS(1645), - [anon_sym_STAR2] = ACTIONS(1647), - [anon_sym_and2] = ACTIONS(1645), - [anon_sym_xor2] = ACTIONS(1645), - [anon_sym_or2] = ACTIONS(1645), - [anon_sym_not_DASHin2] = ACTIONS(1645), - [anon_sym_has2] = ACTIONS(1645), - [anon_sym_not_DASHhas2] = ACTIONS(1645), - [anon_sym_starts_DASHwith2] = ACTIONS(1645), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1645), - [anon_sym_ends_DASHwith2] = ACTIONS(1645), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1645), - [anon_sym_EQ_EQ2] = ACTIONS(1645), - [anon_sym_BANG_EQ2] = ACTIONS(1645), - [anon_sym_LT2] = ACTIONS(1647), - [anon_sym_LT_EQ2] = ACTIONS(1645), - [anon_sym_GT_EQ2] = ACTIONS(1645), - [anon_sym_EQ_TILDE2] = ACTIONS(1645), - [anon_sym_BANG_TILDE2] = ACTIONS(1645), - [anon_sym_like2] = ACTIONS(1645), - [anon_sym_not_DASHlike2] = ACTIONS(1645), - [anon_sym_STAR_STAR2] = ACTIONS(1645), - [anon_sym_PLUS_PLUS2] = ACTIONS(1645), - [anon_sym_SLASH2] = ACTIONS(1647), - [anon_sym_mod2] = ACTIONS(1645), - [anon_sym_SLASH_SLASH2] = ACTIONS(1645), - [anon_sym_PLUS2] = ACTIONS(1647), - [anon_sym_bit_DASHshl2] = ACTIONS(1645), - [anon_sym_bit_DASHshr2] = ACTIONS(1645), - [anon_sym_bit_DASHand2] = ACTIONS(1645), - [anon_sym_bit_DASHxor2] = ACTIONS(1645), - [anon_sym_bit_DASHor2] = ACTIONS(1645), - [anon_sym_DOT_DOT2] = ACTIONS(1647), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1645), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1645), - [anon_sym_COLON2] = ACTIONS(1645), - [anon_sym_DOT2] = ACTIONS(1649), - [anon_sym_err_GT] = ACTIONS(1647), - [anon_sym_out_GT] = ACTIONS(1647), - [anon_sym_e_GT] = ACTIONS(1647), - [anon_sym_o_GT] = ACTIONS(1647), - [anon_sym_err_PLUSout_GT] = ACTIONS(1647), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1647), - [anon_sym_o_PLUSe_GT] = ACTIONS(1647), - [anon_sym_e_PLUSo_GT] = ACTIONS(1647), - [anon_sym_err_GT_GT] = ACTIONS(1645), - [anon_sym_out_GT_GT] = ACTIONS(1645), - [anon_sym_e_GT_GT] = ACTIONS(1645), - [anon_sym_o_GT_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(1578), + [anon_sym_PLUS_EQ] = ACTIONS(1580), + [anon_sym_DASH_EQ] = ACTIONS(1580), + [anon_sym_STAR_EQ] = ACTIONS(1580), + [anon_sym_SLASH_EQ] = ACTIONS(1580), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1580), + [anon_sym_in] = ACTIONS(1580), + [sym__newline] = ACTIONS(1580), + [anon_sym_SEMI] = ACTIONS(1580), + [anon_sym_PIPE] = ACTIONS(1580), + [anon_sym_err_GT_PIPE] = ACTIONS(1580), + [anon_sym_out_GT_PIPE] = ACTIONS(1580), + [anon_sym_e_GT_PIPE] = ACTIONS(1580), + [anon_sym_o_GT_PIPE] = ACTIONS(1580), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1580), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1580), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1580), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1580), + [anon_sym_RPAREN] = ACTIONS(1580), + [anon_sym_GT2] = ACTIONS(1578), + [anon_sym_DASH2] = ACTIONS(1578), + [anon_sym_RBRACE] = ACTIONS(1580), + [anon_sym_STAR2] = ACTIONS(1578), + [anon_sym_and2] = ACTIONS(1580), + [anon_sym_xor2] = ACTIONS(1580), + [anon_sym_or2] = ACTIONS(1580), + [anon_sym_not_DASHin2] = ACTIONS(1580), + [anon_sym_has2] = ACTIONS(1580), + [anon_sym_not_DASHhas2] = ACTIONS(1580), + [anon_sym_starts_DASHwith2] = ACTIONS(1580), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1580), + [anon_sym_ends_DASHwith2] = ACTIONS(1580), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1580), + [anon_sym_EQ_EQ2] = ACTIONS(1580), + [anon_sym_BANG_EQ2] = ACTIONS(1580), + [anon_sym_LT2] = ACTIONS(1578), + [anon_sym_LT_EQ2] = ACTIONS(1580), + [anon_sym_GT_EQ2] = ACTIONS(1580), + [anon_sym_EQ_TILDE2] = ACTIONS(1580), + [anon_sym_BANG_TILDE2] = ACTIONS(1580), + [anon_sym_like2] = ACTIONS(1580), + [anon_sym_not_DASHlike2] = ACTIONS(1580), + [anon_sym_STAR_STAR2] = ACTIONS(1580), + [anon_sym_PLUS_PLUS2] = ACTIONS(1578), + [anon_sym_SLASH2] = ACTIONS(1578), + [anon_sym_mod2] = ACTIONS(1580), + [anon_sym_SLASH_SLASH2] = ACTIONS(1580), + [anon_sym_PLUS2] = ACTIONS(1578), + [anon_sym_bit_DASHshl2] = ACTIONS(1580), + [anon_sym_bit_DASHshr2] = ACTIONS(1580), + [anon_sym_bit_DASHand2] = ACTIONS(1580), + [anon_sym_bit_DASHxor2] = ACTIONS(1580), + [anon_sym_bit_DASHor2] = ACTIONS(1580), + [anon_sym_DOT_DOT2] = ACTIONS(1578), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1580), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1580), + [anon_sym_COLON2] = ACTIONS(1580), + [anon_sym_err_GT] = ACTIONS(1578), + [anon_sym_out_GT] = ACTIONS(1578), + [anon_sym_e_GT] = ACTIONS(1578), + [anon_sym_o_GT] = ACTIONS(1578), + [anon_sym_err_PLUSout_GT] = ACTIONS(1578), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1578), + [anon_sym_o_PLUSe_GT] = ACTIONS(1578), + [anon_sym_e_PLUSo_GT] = ACTIONS(1578), + [anon_sym_err_GT_GT] = ACTIONS(1580), + [anon_sym_out_GT_GT] = ACTIONS(1580), + [anon_sym_e_GT_GT] = ACTIONS(1580), + [anon_sym_o_GT_GT] = ACTIONS(1580), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1580), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1580), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1580), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1580), [anon_sym_POUND] = ACTIONS(3), }, [STATE(403)] = { - [sym__expr_parenthesized_immediate] = STATE(748), - [sym__immediate_decimal] = STATE(930), - [sym_val_variable] = STATE(748), + [sym__expr_parenthesized_immediate] = STATE(783), + [sym__immediate_decimal] = STATE(784), + [sym_val_variable] = STATE(783), [sym_comment] = STATE(403), - [anon_sym_in] = ACTIONS(1651), - [sym__newline] = ACTIONS(1651), - [anon_sym_SEMI] = ACTIONS(1651), - [anon_sym_PIPE] = ACTIONS(1651), - [anon_sym_err_GT_PIPE] = ACTIONS(1651), - [anon_sym_out_GT_PIPE] = ACTIONS(1651), - [anon_sym_e_GT_PIPE] = ACTIONS(1651), - [anon_sym_o_GT_PIPE] = ACTIONS(1651), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1651), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1651), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1651), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1651), - [anon_sym_RPAREN] = ACTIONS(1651), - [anon_sym_DOLLAR] = ACTIONS(1600), - [anon_sym_GT2] = ACTIONS(1653), - [anon_sym_DASH2] = ACTIONS(1653), - [anon_sym_LBRACE] = ACTIONS(1651), - [anon_sym_RBRACE] = ACTIONS(1651), - [anon_sym_STAR2] = ACTIONS(1653), - [anon_sym_and2] = ACTIONS(1651), - [anon_sym_xor2] = ACTIONS(1651), - [anon_sym_or2] = ACTIONS(1651), - [anon_sym_not_DASHin2] = ACTIONS(1651), - [anon_sym_has2] = ACTIONS(1651), - [anon_sym_not_DASHhas2] = ACTIONS(1651), - [anon_sym_starts_DASHwith2] = ACTIONS(1651), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1651), - [anon_sym_ends_DASHwith2] = ACTIONS(1651), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1651), - [anon_sym_EQ_EQ2] = ACTIONS(1651), - [anon_sym_BANG_EQ2] = ACTIONS(1651), - [anon_sym_LT2] = ACTIONS(1653), - [anon_sym_LT_EQ2] = ACTIONS(1651), - [anon_sym_GT_EQ2] = ACTIONS(1651), - [anon_sym_EQ_TILDE2] = ACTIONS(1651), - [anon_sym_BANG_TILDE2] = ACTIONS(1651), - [anon_sym_like2] = ACTIONS(1651), - [anon_sym_not_DASHlike2] = ACTIONS(1651), - [anon_sym_LPAREN2] = ACTIONS(1604), - [anon_sym_STAR_STAR2] = ACTIONS(1651), - [anon_sym_PLUS_PLUS2] = ACTIONS(1651), - [anon_sym_SLASH2] = ACTIONS(1653), - [anon_sym_mod2] = ACTIONS(1651), - [anon_sym_SLASH_SLASH2] = ACTIONS(1651), - [anon_sym_PLUS2] = ACTIONS(1653), - [anon_sym_bit_DASHshl2] = ACTIONS(1651), - [anon_sym_bit_DASHshr2] = ACTIONS(1651), - [anon_sym_bit_DASHand2] = ACTIONS(1651), - [anon_sym_bit_DASHxor2] = ACTIONS(1651), - [anon_sym_bit_DASHor2] = ACTIONS(1651), - [aux_sym__immediate_decimal_token1] = ACTIONS(1655), - [aux_sym__immediate_decimal_token2] = ACTIONS(1655), - [aux_sym__immediate_decimal_token3] = ACTIONS(1610), - [aux_sym__immediate_decimal_token4] = ACTIONS(1610), - [anon_sym_err_GT] = ACTIONS(1653), - [anon_sym_out_GT] = ACTIONS(1653), - [anon_sym_e_GT] = ACTIONS(1653), - [anon_sym_o_GT] = ACTIONS(1653), - [anon_sym_err_PLUSout_GT] = ACTIONS(1653), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1653), - [anon_sym_o_PLUSe_GT] = ACTIONS(1653), - [anon_sym_e_PLUSo_GT] = ACTIONS(1653), - [anon_sym_err_GT_GT] = ACTIONS(1651), - [anon_sym_out_GT_GT] = ACTIONS(1651), - [anon_sym_e_GT_GT] = ACTIONS(1651), - [anon_sym_o_GT_GT] = ACTIONS(1651), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1651), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1651), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1651), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1651), + [anon_sym_in] = ACTIONS(1599), + [sym__newline] = ACTIONS(1599), + [anon_sym_SEMI] = ACTIONS(1599), + [anon_sym_PIPE] = ACTIONS(1599), + [anon_sym_err_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_GT_PIPE] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1599), + [anon_sym_RPAREN] = ACTIONS(1599), + [anon_sym_DOLLAR] = ACTIONS(1601), + [anon_sym_GT2] = ACTIONS(1603), + [anon_sym_DASH2] = ACTIONS(1603), + [anon_sym_LBRACE] = ACTIONS(1599), + [anon_sym_RBRACE] = ACTIONS(1599), + [anon_sym_STAR2] = ACTIONS(1603), + [anon_sym_and2] = ACTIONS(1599), + [anon_sym_xor2] = ACTIONS(1599), + [anon_sym_or2] = ACTIONS(1599), + [anon_sym_not_DASHin2] = ACTIONS(1599), + [anon_sym_has2] = ACTIONS(1599), + [anon_sym_not_DASHhas2] = ACTIONS(1599), + [anon_sym_starts_DASHwith2] = ACTIONS(1599), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1599), + [anon_sym_ends_DASHwith2] = ACTIONS(1599), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1599), + [anon_sym_EQ_EQ2] = ACTIONS(1599), + [anon_sym_BANG_EQ2] = ACTIONS(1599), + [anon_sym_LT2] = ACTIONS(1603), + [anon_sym_LT_EQ2] = ACTIONS(1599), + [anon_sym_GT_EQ2] = ACTIONS(1599), + [anon_sym_EQ_TILDE2] = ACTIONS(1599), + [anon_sym_BANG_TILDE2] = ACTIONS(1599), + [anon_sym_like2] = ACTIONS(1599), + [anon_sym_not_DASHlike2] = ACTIONS(1599), + [anon_sym_LPAREN2] = ACTIONS(1605), + [anon_sym_STAR_STAR2] = ACTIONS(1599), + [anon_sym_PLUS_PLUS2] = ACTIONS(1599), + [anon_sym_SLASH2] = ACTIONS(1603), + [anon_sym_mod2] = ACTIONS(1599), + [anon_sym_SLASH_SLASH2] = ACTIONS(1599), + [anon_sym_PLUS2] = ACTIONS(1603), + [anon_sym_bit_DASHshl2] = ACTIONS(1599), + [anon_sym_bit_DASHshr2] = ACTIONS(1599), + [anon_sym_bit_DASHand2] = ACTIONS(1599), + [anon_sym_bit_DASHxor2] = ACTIONS(1599), + [anon_sym_bit_DASHor2] = ACTIONS(1599), + [aux_sym__immediate_decimal_token1] = ACTIONS(1645), + [aux_sym__immediate_decimal_token2] = ACTIONS(1645), + [aux_sym__immediate_decimal_token3] = ACTIONS(1611), + [aux_sym__immediate_decimal_token4] = ACTIONS(1611), + [anon_sym_err_GT] = ACTIONS(1603), + [anon_sym_out_GT] = ACTIONS(1603), + [anon_sym_e_GT] = ACTIONS(1603), + [anon_sym_o_GT] = ACTIONS(1603), + [anon_sym_err_PLUSout_GT] = ACTIONS(1603), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1603), + [anon_sym_o_PLUSe_GT] = ACTIONS(1603), + [anon_sym_e_PLUSo_GT] = ACTIONS(1603), + [anon_sym_err_GT_GT] = ACTIONS(1599), + [anon_sym_out_GT_GT] = ACTIONS(1599), + [anon_sym_e_GT_GT] = ACTIONS(1599), + [anon_sym_o_GT_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1599), [anon_sym_POUND] = ACTIONS(3), }, [STATE(404)] = { - [sym_cell_path] = STATE(471), + [sym_cell_path] = STATE(472), [sym_path] = STATE(458), [sym_comment] = STATE(404), - [aux_sym__where_predicate_lhs_repeat1] = STATE(427), - [anon_sym_in] = ACTIONS(1657), - [sym__newline] = ACTIONS(1657), - [anon_sym_SEMI] = ACTIONS(1657), - [anon_sym_PIPE] = ACTIONS(1657), - [anon_sym_err_GT_PIPE] = ACTIONS(1657), - [anon_sym_out_GT_PIPE] = ACTIONS(1657), - [anon_sym_e_GT_PIPE] = ACTIONS(1657), - [anon_sym_o_GT_PIPE] = ACTIONS(1657), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1657), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1657), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1657), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1657), - [anon_sym_RPAREN] = ACTIONS(1657), - [anon_sym_GT2] = ACTIONS(1659), - [anon_sym_DASH2] = ACTIONS(1657), - [anon_sym_LBRACE] = ACTIONS(1657), - [anon_sym_RBRACE] = ACTIONS(1657), - [anon_sym_EQ_GT] = ACTIONS(1657), - [anon_sym_STAR2] = ACTIONS(1659), - [anon_sym_and2] = ACTIONS(1657), - [anon_sym_xor2] = ACTIONS(1657), - [anon_sym_or2] = ACTIONS(1657), - [anon_sym_not_DASHin2] = ACTIONS(1657), - [anon_sym_has2] = ACTIONS(1657), - [anon_sym_not_DASHhas2] = ACTIONS(1657), - [anon_sym_starts_DASHwith2] = ACTIONS(1657), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1657), - [anon_sym_ends_DASHwith2] = ACTIONS(1657), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1657), - [anon_sym_EQ_EQ2] = ACTIONS(1657), - [anon_sym_BANG_EQ2] = ACTIONS(1657), - [anon_sym_LT2] = ACTIONS(1659), - [anon_sym_LT_EQ2] = ACTIONS(1657), - [anon_sym_GT_EQ2] = ACTIONS(1657), - [anon_sym_EQ_TILDE2] = ACTIONS(1657), - [anon_sym_BANG_TILDE2] = ACTIONS(1657), - [anon_sym_like2] = ACTIONS(1657), - [anon_sym_not_DASHlike2] = ACTIONS(1657), - [anon_sym_STAR_STAR2] = ACTIONS(1657), - [anon_sym_PLUS_PLUS2] = ACTIONS(1657), - [anon_sym_SLASH2] = ACTIONS(1659), - [anon_sym_mod2] = ACTIONS(1657), - [anon_sym_SLASH_SLASH2] = ACTIONS(1657), - [anon_sym_PLUS2] = ACTIONS(1659), - [anon_sym_bit_DASHshl2] = ACTIONS(1657), - [anon_sym_bit_DASHshr2] = ACTIONS(1657), - [anon_sym_bit_DASHand2] = ACTIONS(1657), - [anon_sym_bit_DASHxor2] = ACTIONS(1657), - [anon_sym_bit_DASHor2] = ACTIONS(1657), - [anon_sym_DOT_DOT2] = ACTIONS(1659), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1657), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1657), - [anon_sym_COLON2] = ACTIONS(1657), - [anon_sym_DOT2] = ACTIONS(1649), - [anon_sym_err_GT] = ACTIONS(1659), - [anon_sym_out_GT] = ACTIONS(1659), - [anon_sym_e_GT] = ACTIONS(1659), - [anon_sym_o_GT] = ACTIONS(1659), - [anon_sym_err_PLUSout_GT] = ACTIONS(1659), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1659), - [anon_sym_o_PLUSe_GT] = ACTIONS(1659), - [anon_sym_e_PLUSo_GT] = ACTIONS(1659), - [anon_sym_err_GT_GT] = ACTIONS(1657), - [anon_sym_out_GT_GT] = ACTIONS(1657), - [anon_sym_e_GT_GT] = ACTIONS(1657), - [anon_sym_o_GT_GT] = ACTIONS(1657), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1657), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1657), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1657), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1657), + [aux_sym__where_predicate_lhs_repeat1] = STATE(428), + [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(405)] = { + [sym_cell_path] = STATE(478), + [sym_path] = STATE(458), [sym_comment] = STATE(405), - [ts_builtin_sym_end] = ACTIONS(1450), - [anon_sym_EQ] = ACTIONS(1448), - [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(1448), - [anon_sym_DASH2] = ACTIONS(1448), - [anon_sym_STAR2] = ACTIONS(1448), - [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(1448), - [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(1448), - [anon_sym_SLASH2] = ACTIONS(1448), - [anon_sym_mod2] = ACTIONS(1450), - [anon_sym_SLASH_SLASH2] = ACTIONS(1450), - [anon_sym_PLUS2] = ACTIONS(1448), - [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(1448), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1450), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1450), - [anon_sym_BANG] = ACTIONS(1661), - [anon_sym_DOT2] = ACTIONS(1448), - [anon_sym_err_GT] = ACTIONS(1448), - [anon_sym_out_GT] = ACTIONS(1448), - [anon_sym_e_GT] = ACTIONS(1448), - [anon_sym_o_GT] = ACTIONS(1448), - [anon_sym_err_PLUSout_GT] = ACTIONS(1448), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1448), - [anon_sym_o_PLUSe_GT] = ACTIONS(1448), - [anon_sym_e_PLUSo_GT] = ACTIONS(1448), - [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), + [aux_sym__where_predicate_lhs_repeat1] = STATE(428), + [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_GT2] = ACTIONS(1655), + [anon_sym_DASH2] = ACTIONS(1653), + [anon_sym_LBRACE] = ACTIONS(1653), + [anon_sym_RBRACE] = ACTIONS(1653), + [anon_sym_EQ_GT] = 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_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), + [anon_sym_DOT_DOT2] = ACTIONS(1655), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1653), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1653), + [anon_sym_COLON2] = ACTIONS(1653), + [anon_sym_DOT2] = ACTIONS(1651), + [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(406)] = { + [sym__expr_parenthesized_immediate] = STATE(788), + [sym__immediate_decimal] = STATE(966), + [sym_val_variable] = STATE(788), [sym_comment] = STATE(406), - [anon_sym_EQ] = ACTIONS(1580), - [anon_sym_PLUS_EQ] = ACTIONS(1582), - [anon_sym_DASH_EQ] = ACTIONS(1582), - [anon_sym_STAR_EQ] = ACTIONS(1582), - [anon_sym_SLASH_EQ] = ACTIONS(1582), - [anon_sym_PLUS_PLUS_EQ] = 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_RPAREN] = ACTIONS(1582), - [anon_sym_GT2] = ACTIONS(1580), - [anon_sym_DASH2] = ACTIONS(1580), - [anon_sym_RBRACE] = ACTIONS(1582), - [anon_sym_STAR2] = ACTIONS(1580), - [anon_sym_and2] = ACTIONS(1582), - [anon_sym_xor2] = ACTIONS(1582), - [anon_sym_or2] = ACTIONS(1582), - [anon_sym_not_DASHin2] = ACTIONS(1582), - [anon_sym_has2] = ACTIONS(1582), - [anon_sym_not_DASHhas2] = ACTIONS(1582), - [anon_sym_starts_DASHwith2] = ACTIONS(1582), - [anon_sym_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(1580), - [anon_sym_LT_EQ2] = ACTIONS(1582), - [anon_sym_GT_EQ2] = ACTIONS(1582), - [anon_sym_EQ_TILDE2] = ACTIONS(1582), - [anon_sym_BANG_TILDE2] = ACTIONS(1582), - [anon_sym_like2] = ACTIONS(1582), - [anon_sym_not_DASHlike2] = ACTIONS(1582), - [anon_sym_STAR_STAR2] = ACTIONS(1582), - [anon_sym_PLUS_PLUS2] = ACTIONS(1580), - [anon_sym_SLASH2] = ACTIONS(1580), - [anon_sym_mod2] = ACTIONS(1582), - [anon_sym_SLASH_SLASH2] = ACTIONS(1582), - [anon_sym_PLUS2] = ACTIONS(1580), - [anon_sym_bit_DASHshl2] = ACTIONS(1582), - [anon_sym_bit_DASHshr2] = ACTIONS(1582), - [anon_sym_bit_DASHand2] = ACTIONS(1582), - [anon_sym_bit_DASHxor2] = ACTIONS(1582), - [anon_sym_bit_DASHor2] = ACTIONS(1582), - [anon_sym_DOT_DOT2] = ACTIONS(1580), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1582), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1582), - [anon_sym_COLON2] = ACTIONS(1582), - [anon_sym_err_GT] = ACTIONS(1580), - [anon_sym_out_GT] = ACTIONS(1580), - [anon_sym_e_GT] = ACTIONS(1580), - [anon_sym_o_GT] = ACTIONS(1580), - [anon_sym_err_PLUSout_GT] = ACTIONS(1580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1580), - [anon_sym_o_PLUSe_GT] = ACTIONS(1580), - [anon_sym_e_PLUSo_GT] = ACTIONS(1580), - [anon_sym_err_GT_GT] = ACTIONS(1582), - [anon_sym_out_GT_GT] = ACTIONS(1582), - [anon_sym_e_GT_GT] = ACTIONS(1582), - [anon_sym_o_GT_GT] = ACTIONS(1582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1582), + [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(1601), + [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(1605), + [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(1645), + [aux_sym__immediate_decimal_token2] = ACTIONS(1645), + [aux_sym__immediate_decimal_token3] = ACTIONS(1611), + [aux_sym__immediate_decimal_token4] = ACTIONS(1611), + [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(407)] = { - [sym__expr_parenthesized_immediate] = STATE(746), - [sym__immediate_decimal] = STATE(747), - [sym_val_variable] = STATE(746), [sym_comment] = STATE(407), - [anon_sym_in] = ACTIONS(1663), - [sym__newline] = ACTIONS(1663), - [anon_sym_SEMI] = ACTIONS(1663), - [anon_sym_PIPE] = ACTIONS(1663), - [anon_sym_err_GT_PIPE] = ACTIONS(1663), - [anon_sym_out_GT_PIPE] = ACTIONS(1663), - [anon_sym_e_GT_PIPE] = ACTIONS(1663), - [anon_sym_o_GT_PIPE] = ACTIONS(1663), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1663), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1663), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1663), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1663), - [anon_sym_RPAREN] = ACTIONS(1663), - [anon_sym_DOLLAR] = ACTIONS(1600), - [anon_sym_GT2] = ACTIONS(1665), - [anon_sym_DASH2] = ACTIONS(1665), - [anon_sym_LBRACE] = ACTIONS(1663), - [anon_sym_RBRACE] = ACTIONS(1663), - [anon_sym_STAR2] = ACTIONS(1665), - [anon_sym_and2] = ACTIONS(1663), - [anon_sym_xor2] = ACTIONS(1663), - [anon_sym_or2] = ACTIONS(1663), - [anon_sym_not_DASHin2] = ACTIONS(1663), - [anon_sym_has2] = ACTIONS(1663), - [anon_sym_not_DASHhas2] = ACTIONS(1663), - [anon_sym_starts_DASHwith2] = ACTIONS(1663), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1663), - [anon_sym_ends_DASHwith2] = ACTIONS(1663), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1663), - [anon_sym_EQ_EQ2] = ACTIONS(1663), - [anon_sym_BANG_EQ2] = ACTIONS(1663), - [anon_sym_LT2] = ACTIONS(1665), - [anon_sym_LT_EQ2] = ACTIONS(1663), - [anon_sym_GT_EQ2] = ACTIONS(1663), - [anon_sym_EQ_TILDE2] = ACTIONS(1663), - [anon_sym_BANG_TILDE2] = ACTIONS(1663), - [anon_sym_like2] = ACTIONS(1663), - [anon_sym_not_DASHlike2] = ACTIONS(1663), - [anon_sym_LPAREN2] = ACTIONS(1604), - [anon_sym_STAR_STAR2] = ACTIONS(1663), - [anon_sym_PLUS_PLUS2] = ACTIONS(1663), - [anon_sym_SLASH2] = ACTIONS(1665), - [anon_sym_mod2] = ACTIONS(1663), - [anon_sym_SLASH_SLASH2] = ACTIONS(1663), - [anon_sym_PLUS2] = ACTIONS(1665), - [anon_sym_bit_DASHshl2] = ACTIONS(1663), - [anon_sym_bit_DASHshr2] = ACTIONS(1663), - [anon_sym_bit_DASHand2] = ACTIONS(1663), - [anon_sym_bit_DASHxor2] = ACTIONS(1663), - [anon_sym_bit_DASHor2] = ACTIONS(1663), - [aux_sym__immediate_decimal_token1] = ACTIONS(1655), - [aux_sym__immediate_decimal_token2] = ACTIONS(1655), - [aux_sym__immediate_decimal_token3] = ACTIONS(1610), - [aux_sym__immediate_decimal_token4] = ACTIONS(1610), - [anon_sym_err_GT] = ACTIONS(1665), - [anon_sym_out_GT] = ACTIONS(1665), - [anon_sym_e_GT] = ACTIONS(1665), - [anon_sym_o_GT] = ACTIONS(1665), - [anon_sym_err_PLUSout_GT] = ACTIONS(1665), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1665), - [anon_sym_o_PLUSe_GT] = ACTIONS(1665), - [anon_sym_e_PLUSo_GT] = ACTIONS(1665), - [anon_sym_err_GT_GT] = ACTIONS(1663), - [anon_sym_out_GT_GT] = ACTIONS(1663), - [anon_sym_e_GT_GT] = ACTIONS(1663), - [anon_sym_o_GT_GT] = ACTIONS(1663), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1663), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1663), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1663), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1663), + [ts_builtin_sym_end] = ACTIONS(1462), + [anon_sym_EQ] = ACTIONS(1460), + [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_GT2] = ACTIONS(1460), + [anon_sym_DASH2] = ACTIONS(1460), + [anon_sym_STAR2] = ACTIONS(1460), + [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(1460), + [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(1460), + [anon_sym_SLASH2] = ACTIONS(1460), + [anon_sym_mod2] = ACTIONS(1462), + [anon_sym_SLASH_SLASH2] = ACTIONS(1462), + [anon_sym_PLUS2] = ACTIONS(1460), + [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(1460), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1462), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1462), + [anon_sym_BANG] = ACTIONS(1657), + [anon_sym_DOT2] = ACTIONS(1460), + [anon_sym_err_GT] = ACTIONS(1460), + [anon_sym_out_GT] = ACTIONS(1460), + [anon_sym_e_GT] = ACTIONS(1460), + [anon_sym_o_GT] = ACTIONS(1460), + [anon_sym_err_PLUSout_GT] = ACTIONS(1460), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1460), + [anon_sym_o_PLUSe_GT] = ACTIONS(1460), + [anon_sym_e_PLUSo_GT] = ACTIONS(1460), + [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(3), }, [STATE(408)] = { - [sym__expr_parenthesized_immediate] = STATE(742), - [sym__immediate_decimal] = STATE(743), - [sym_val_variable] = STATE(742), + [sym__expr_parenthesized_immediate] = STATE(803), + [sym__immediate_decimal] = STATE(804), + [sym_val_variable] = STATE(803), [sym_comment] = STATE(408), - [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_RPAREN] = ACTIONS(1667), - [anon_sym_DOLLAR] = ACTIONS(1600), - [anon_sym_GT2] = ACTIONS(1669), - [anon_sym_DASH2] = ACTIONS(1669), - [anon_sym_LBRACE] = ACTIONS(1667), - [anon_sym_RBRACE] = ACTIONS(1667), - [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(1604), - [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(1655), - [aux_sym__immediate_decimal_token2] = ACTIONS(1655), - [aux_sym__immediate_decimal_token3] = ACTIONS(1610), - [aux_sym__immediate_decimal_token4] = ACTIONS(1610), - [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_in] = ACTIONS(1659), + [sym__newline] = ACTIONS(1659), + [anon_sym_SEMI] = ACTIONS(1659), + [anon_sym_PIPE] = ACTIONS(1659), + [anon_sym_err_GT_PIPE] = ACTIONS(1659), + [anon_sym_out_GT_PIPE] = ACTIONS(1659), + [anon_sym_e_GT_PIPE] = ACTIONS(1659), + [anon_sym_o_GT_PIPE] = ACTIONS(1659), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1659), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1659), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1659), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1659), + [anon_sym_RPAREN] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(1601), + [anon_sym_GT2] = ACTIONS(1661), + [anon_sym_DASH2] = ACTIONS(1661), + [anon_sym_LBRACE] = ACTIONS(1659), + [anon_sym_RBRACE] = ACTIONS(1659), + [anon_sym_STAR2] = ACTIONS(1661), + [anon_sym_and2] = ACTIONS(1659), + [anon_sym_xor2] = ACTIONS(1659), + [anon_sym_or2] = ACTIONS(1659), + [anon_sym_not_DASHin2] = ACTIONS(1659), + [anon_sym_has2] = ACTIONS(1659), + [anon_sym_not_DASHhas2] = ACTIONS(1659), + [anon_sym_starts_DASHwith2] = ACTIONS(1659), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1659), + [anon_sym_ends_DASHwith2] = ACTIONS(1659), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1659), + [anon_sym_EQ_EQ2] = ACTIONS(1659), + [anon_sym_BANG_EQ2] = ACTIONS(1659), + [anon_sym_LT2] = ACTIONS(1661), + [anon_sym_LT_EQ2] = ACTIONS(1659), + [anon_sym_GT_EQ2] = ACTIONS(1659), + [anon_sym_EQ_TILDE2] = ACTIONS(1659), + [anon_sym_BANG_TILDE2] = ACTIONS(1659), + [anon_sym_like2] = ACTIONS(1659), + [anon_sym_not_DASHlike2] = ACTIONS(1659), + [anon_sym_LPAREN2] = ACTIONS(1605), + [anon_sym_STAR_STAR2] = ACTIONS(1659), + [anon_sym_PLUS_PLUS2] = ACTIONS(1659), + [anon_sym_SLASH2] = ACTIONS(1661), + [anon_sym_mod2] = ACTIONS(1659), + [anon_sym_SLASH_SLASH2] = ACTIONS(1659), + [anon_sym_PLUS2] = ACTIONS(1661), + [anon_sym_bit_DASHshl2] = ACTIONS(1659), + [anon_sym_bit_DASHshr2] = ACTIONS(1659), + [anon_sym_bit_DASHand2] = ACTIONS(1659), + [anon_sym_bit_DASHxor2] = ACTIONS(1659), + [anon_sym_bit_DASHor2] = ACTIONS(1659), + [aux_sym__immediate_decimal_token1] = ACTIONS(1645), + [aux_sym__immediate_decimal_token2] = ACTIONS(1645), + [aux_sym__immediate_decimal_token3] = ACTIONS(1611), + [aux_sym__immediate_decimal_token4] = ACTIONS(1611), + [anon_sym_err_GT] = ACTIONS(1661), + [anon_sym_out_GT] = ACTIONS(1661), + [anon_sym_e_GT] = ACTIONS(1661), + [anon_sym_o_GT] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT] = ACTIONS(1661), + [anon_sym_err_GT_GT] = ACTIONS(1659), + [anon_sym_out_GT_GT] = ACTIONS(1659), + [anon_sym_e_GT_GT] = ACTIONS(1659), + [anon_sym_o_GT_GT] = ACTIONS(1659), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1659), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1659), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1659), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1659), [anon_sym_POUND] = ACTIONS(3), }, [STATE(409)] = { - [sym__path_suffix] = STATE(444), [sym_comment] = STATE(409), - [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_RPAREN] = ACTIONS(1458), - [anon_sym_GT2] = ACTIONS(1456), - [anon_sym_DASH2] = ACTIONS(1458), - [anon_sym_LBRACE] = ACTIONS(1458), - [anon_sym_RBRACE] = ACTIONS(1458), - [anon_sym_EQ_GT] = ACTIONS(1458), - [anon_sym_STAR2] = ACTIONS(1456), - [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(1456), - [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(1456), - [anon_sym_mod2] = ACTIONS(1458), - [anon_sym_SLASH_SLASH2] = ACTIONS(1458), - [anon_sym_PLUS2] = ACTIONS(1456), - [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(1456), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1458), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1458), - [anon_sym_COLON2] = ACTIONS(1458), - [anon_sym_QMARK2] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1673), - [anon_sym_DOT2] = ACTIONS(1456), - [anon_sym_err_GT] = ACTIONS(1456), - [anon_sym_out_GT] = ACTIONS(1456), - [anon_sym_e_GT] = ACTIONS(1456), - [anon_sym_o_GT] = ACTIONS(1456), - [anon_sym_err_PLUSout_GT] = ACTIONS(1456), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1456), - [anon_sym_o_PLUSe_GT] = ACTIONS(1456), - [anon_sym_e_PLUSo_GT] = ACTIONS(1456), - [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), + [ts_builtin_sym_end] = ACTIONS(1462), + [anon_sym_EQ] = ACTIONS(1460), + [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_GT2] = ACTIONS(1460), + [anon_sym_DASH2] = ACTIONS(1460), + [anon_sym_STAR2] = ACTIONS(1460), + [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(1460), + [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(1460), + [anon_sym_SLASH2] = ACTIONS(1460), + [anon_sym_mod2] = ACTIONS(1462), + [anon_sym_SLASH_SLASH2] = ACTIONS(1462), + [anon_sym_PLUS2] = ACTIONS(1460), + [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(1460), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1462), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1462), + [anon_sym_QMARK2] = ACTIONS(1663), + [anon_sym_DOT2] = ACTIONS(1460), + [anon_sym_err_GT] = ACTIONS(1460), + [anon_sym_out_GT] = ACTIONS(1460), + [anon_sym_e_GT] = ACTIONS(1460), + [anon_sym_o_GT] = ACTIONS(1460), + [anon_sym_err_PLUSout_GT] = ACTIONS(1460), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1460), + [anon_sym_o_PLUSe_GT] = ACTIONS(1460), + [anon_sym_e_PLUSo_GT] = ACTIONS(1460), + [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(3), }, [STATE(410)] = { - [sym__expr_parenthesized_immediate] = STATE(748), - [sym__immediate_decimal] = STATE(961), - [sym_val_variable] = STATE(748), + [sym__expr_parenthesized_immediate] = STATE(788), + [sym__immediate_decimal] = STATE(965), + [sym_val_variable] = STATE(788), [sym_comment] = STATE(410), - [anon_sym_in] = ACTIONS(1651), - [sym__newline] = ACTIONS(1651), - [anon_sym_SEMI] = ACTIONS(1651), - [anon_sym_PIPE] = ACTIONS(1651), - [anon_sym_err_GT_PIPE] = ACTIONS(1651), - [anon_sym_out_GT_PIPE] = ACTIONS(1651), - [anon_sym_e_GT_PIPE] = ACTIONS(1651), - [anon_sym_o_GT_PIPE] = ACTIONS(1651), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1651), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1651), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1651), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1651), - [anon_sym_RPAREN] = ACTIONS(1651), - [anon_sym_DOLLAR] = ACTIONS(1600), - [anon_sym_GT2] = ACTIONS(1653), - [anon_sym_DASH2] = ACTIONS(1653), - [anon_sym_RBRACE] = ACTIONS(1651), - [anon_sym_STAR2] = ACTIONS(1653), - [anon_sym_and2] = ACTIONS(1651), - [anon_sym_xor2] = ACTIONS(1651), - [anon_sym_or2] = ACTIONS(1651), - [anon_sym_not_DASHin2] = ACTIONS(1651), - [anon_sym_has2] = ACTIONS(1651), - [anon_sym_not_DASHhas2] = ACTIONS(1651), - [anon_sym_starts_DASHwith2] = ACTIONS(1651), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1651), - [anon_sym_ends_DASHwith2] = ACTIONS(1651), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1651), - [anon_sym_EQ_EQ2] = ACTIONS(1651), - [anon_sym_BANG_EQ2] = ACTIONS(1651), - [anon_sym_LT2] = ACTIONS(1653), - [anon_sym_LT_EQ2] = ACTIONS(1651), - [anon_sym_GT_EQ2] = ACTIONS(1651), - [anon_sym_EQ_TILDE2] = ACTIONS(1651), - [anon_sym_BANG_TILDE2] = ACTIONS(1651), - [anon_sym_like2] = ACTIONS(1651), - [anon_sym_not_DASHlike2] = ACTIONS(1651), - [anon_sym_LPAREN2] = ACTIONS(1604), - [anon_sym_STAR_STAR2] = ACTIONS(1651), - [anon_sym_PLUS_PLUS2] = ACTIONS(1651), - [anon_sym_SLASH2] = ACTIONS(1653), - [anon_sym_mod2] = ACTIONS(1651), - [anon_sym_SLASH_SLASH2] = ACTIONS(1651), - [anon_sym_PLUS2] = ACTIONS(1653), - [anon_sym_bit_DASHshl2] = ACTIONS(1651), - [anon_sym_bit_DASHshr2] = ACTIONS(1651), - [anon_sym_bit_DASHand2] = ACTIONS(1651), - [anon_sym_bit_DASHxor2] = ACTIONS(1651), - [anon_sym_bit_DASHor2] = ACTIONS(1651), - [aux_sym__immediate_decimal_token1] = ACTIONS(1675), - [aux_sym__immediate_decimal_token2] = ACTIONS(1675), - [aux_sym__immediate_decimal_token3] = ACTIONS(1677), - [aux_sym__immediate_decimal_token4] = ACTIONS(1677), - [anon_sym_err_GT] = ACTIONS(1653), - [anon_sym_out_GT] = ACTIONS(1653), - [anon_sym_e_GT] = ACTIONS(1653), - [anon_sym_o_GT] = ACTIONS(1653), - [anon_sym_err_PLUSout_GT] = ACTIONS(1653), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1653), - [anon_sym_o_PLUSe_GT] = ACTIONS(1653), - [anon_sym_e_PLUSo_GT] = ACTIONS(1653), - [anon_sym_err_GT_GT] = ACTIONS(1651), - [anon_sym_out_GT_GT] = ACTIONS(1651), - [anon_sym_e_GT_GT] = ACTIONS(1651), - [anon_sym_o_GT_GT] = ACTIONS(1651), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1651), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1651), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1651), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1651), - [sym__unquoted_pattern] = ACTIONS(1679), + [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(1601), + [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(1605), + [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(1665), + [aux_sym__immediate_decimal_token2] = ACTIONS(1665), + [aux_sym__immediate_decimal_token3] = ACTIONS(1667), + [aux_sym__immediate_decimal_token4] = ACTIONS(1667), + [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(1637), [anon_sym_POUND] = ACTIONS(3), }, [STATE(411)] = { - [sym__expr_parenthesized_immediate] = STATE(728), - [sym__immediate_decimal] = STATE(729), - [sym_val_variable] = STATE(728), + [sym__expr_parenthesized_immediate] = STATE(805), + [sym__immediate_decimal] = STATE(806), + [sym_val_variable] = STATE(805), [sym_comment] = STATE(411), - [anon_sym_in] = ACTIONS(1639), - [sym__newline] = ACTIONS(1639), - [anon_sym_SEMI] = ACTIONS(1639), - [anon_sym_PIPE] = ACTIONS(1639), - [anon_sym_err_GT_PIPE] = ACTIONS(1639), - [anon_sym_out_GT_PIPE] = ACTIONS(1639), - [anon_sym_e_GT_PIPE] = ACTIONS(1639), - [anon_sym_o_GT_PIPE] = ACTIONS(1639), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1639), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1639), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1639), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1639), - [anon_sym_RPAREN] = ACTIONS(1639), - [anon_sym_DOLLAR] = ACTIONS(1600), - [anon_sym_GT2] = ACTIONS(1641), - [anon_sym_DASH2] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(1639), - [anon_sym_RBRACE] = ACTIONS(1639), - [anon_sym_STAR2] = ACTIONS(1641), - [anon_sym_and2] = ACTIONS(1639), - [anon_sym_xor2] = ACTIONS(1639), - [anon_sym_or2] = ACTIONS(1639), - [anon_sym_not_DASHin2] = ACTIONS(1639), - [anon_sym_has2] = ACTIONS(1639), - [anon_sym_not_DASHhas2] = ACTIONS(1639), - [anon_sym_starts_DASHwith2] = ACTIONS(1639), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1639), - [anon_sym_ends_DASHwith2] = ACTIONS(1639), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1639), - [anon_sym_EQ_EQ2] = ACTIONS(1639), - [anon_sym_BANG_EQ2] = ACTIONS(1639), - [anon_sym_LT2] = ACTIONS(1641), - [anon_sym_LT_EQ2] = ACTIONS(1639), - [anon_sym_GT_EQ2] = ACTIONS(1639), - [anon_sym_EQ_TILDE2] = ACTIONS(1639), - [anon_sym_BANG_TILDE2] = ACTIONS(1639), - [anon_sym_like2] = ACTIONS(1639), - [anon_sym_not_DASHlike2] = ACTIONS(1639), - [anon_sym_LPAREN2] = ACTIONS(1604), - [anon_sym_STAR_STAR2] = ACTIONS(1639), - [anon_sym_PLUS_PLUS2] = ACTIONS(1639), - [anon_sym_SLASH2] = ACTIONS(1641), - [anon_sym_mod2] = ACTIONS(1639), - [anon_sym_SLASH_SLASH2] = ACTIONS(1639), - [anon_sym_PLUS2] = ACTIONS(1641), - [anon_sym_bit_DASHshl2] = ACTIONS(1639), - [anon_sym_bit_DASHshr2] = ACTIONS(1639), - [anon_sym_bit_DASHand2] = ACTIONS(1639), - [anon_sym_bit_DASHxor2] = ACTIONS(1639), - [anon_sym_bit_DASHor2] = ACTIONS(1639), - [aux_sym__immediate_decimal_token1] = ACTIONS(1655), - [aux_sym__immediate_decimal_token2] = ACTIONS(1655), - [aux_sym__immediate_decimal_token3] = ACTIONS(1610), - [aux_sym__immediate_decimal_token4] = ACTIONS(1610), - [anon_sym_err_GT] = ACTIONS(1641), - [anon_sym_out_GT] = ACTIONS(1641), - [anon_sym_e_GT] = ACTIONS(1641), - [anon_sym_o_GT] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT] = ACTIONS(1641), - [anon_sym_err_GT_GT] = ACTIONS(1639), - [anon_sym_out_GT_GT] = ACTIONS(1639), - [anon_sym_e_GT_GT] = ACTIONS(1639), - [anon_sym_o_GT_GT] = ACTIONS(1639), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1639), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1639), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1639), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1639), + [anon_sym_in] = ACTIONS(1669), + [sym__newline] = ACTIONS(1669), + [anon_sym_SEMI] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1669), + [anon_sym_err_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_GT_PIPE] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), + [anon_sym_RPAREN] = ACTIONS(1669), + [anon_sym_DOLLAR] = ACTIONS(1601), + [anon_sym_GT2] = ACTIONS(1671), + [anon_sym_DASH2] = ACTIONS(1671), + [anon_sym_LBRACE] = ACTIONS(1669), + [anon_sym_RBRACE] = ACTIONS(1669), + [anon_sym_STAR2] = ACTIONS(1671), + [anon_sym_and2] = ACTIONS(1669), + [anon_sym_xor2] = ACTIONS(1669), + [anon_sym_or2] = ACTIONS(1669), + [anon_sym_not_DASHin2] = ACTIONS(1669), + [anon_sym_has2] = ACTIONS(1669), + [anon_sym_not_DASHhas2] = ACTIONS(1669), + [anon_sym_starts_DASHwith2] = ACTIONS(1669), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1669), + [anon_sym_ends_DASHwith2] = ACTIONS(1669), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1669), + [anon_sym_EQ_EQ2] = ACTIONS(1669), + [anon_sym_BANG_EQ2] = ACTIONS(1669), + [anon_sym_LT2] = ACTIONS(1671), + [anon_sym_LT_EQ2] = ACTIONS(1669), + [anon_sym_GT_EQ2] = ACTIONS(1669), + [anon_sym_EQ_TILDE2] = ACTIONS(1669), + [anon_sym_BANG_TILDE2] = ACTIONS(1669), + [anon_sym_like2] = ACTIONS(1669), + [anon_sym_not_DASHlike2] = ACTIONS(1669), + [anon_sym_LPAREN2] = ACTIONS(1605), + [anon_sym_STAR_STAR2] = ACTIONS(1669), + [anon_sym_PLUS_PLUS2] = ACTIONS(1669), + [anon_sym_SLASH2] = ACTIONS(1671), + [anon_sym_mod2] = ACTIONS(1669), + [anon_sym_SLASH_SLASH2] = ACTIONS(1669), + [anon_sym_PLUS2] = ACTIONS(1671), + [anon_sym_bit_DASHshl2] = ACTIONS(1669), + [anon_sym_bit_DASHshr2] = ACTIONS(1669), + [anon_sym_bit_DASHand2] = ACTIONS(1669), + [anon_sym_bit_DASHxor2] = ACTIONS(1669), + [anon_sym_bit_DASHor2] = ACTIONS(1669), + [aux_sym__immediate_decimal_token1] = ACTIONS(1645), + [aux_sym__immediate_decimal_token2] = ACTIONS(1645), + [aux_sym__immediate_decimal_token3] = ACTIONS(1611), + [aux_sym__immediate_decimal_token4] = ACTIONS(1611), + [anon_sym_err_GT] = ACTIONS(1671), + [anon_sym_out_GT] = ACTIONS(1671), + [anon_sym_e_GT] = ACTIONS(1671), + [anon_sym_o_GT] = ACTIONS(1671), + [anon_sym_err_PLUSout_GT] = ACTIONS(1671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1671), + [anon_sym_o_PLUSe_GT] = ACTIONS(1671), + [anon_sym_e_PLUSo_GT] = ACTIONS(1671), + [anon_sym_err_GT_GT] = ACTIONS(1669), + [anon_sym_out_GT_GT] = ACTIONS(1669), + [anon_sym_e_GT_GT] = ACTIONS(1669), + [anon_sym_o_GT_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1669), [anon_sym_POUND] = ACTIONS(3), }, [STATE(412)] = { - [sym__expr_parenthesized_immediate] = STATE(744), - [sym__immediate_decimal] = STATE(745), - [sym_val_variable] = STATE(744), + [sym__path_suffix] = STATE(443), [sym_comment] = STATE(412), + [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_RPAREN] = ACTIONS(1444), + [anon_sym_GT2] = ACTIONS(1442), + [anon_sym_DASH2] = ACTIONS(1444), + [anon_sym_LBRACE] = ACTIONS(1444), + [anon_sym_RBRACE] = ACTIONS(1444), + [anon_sym_EQ_GT] = ACTIONS(1444), + [anon_sym_STAR2] = ACTIONS(1442), + [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(1442), + [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(1442), + [anon_sym_mod2] = ACTIONS(1444), + [anon_sym_SLASH_SLASH2] = ACTIONS(1444), + [anon_sym_PLUS2] = ACTIONS(1442), + [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(1442), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1444), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1444), + [anon_sym_COLON2] = ACTIONS(1444), + [anon_sym_QMARK2] = ACTIONS(1673), + [anon_sym_BANG] = ACTIONS(1675), + [anon_sym_DOT2] = ACTIONS(1442), + [anon_sym_err_GT] = ACTIONS(1442), + [anon_sym_out_GT] = ACTIONS(1442), + [anon_sym_e_GT] = ACTIONS(1442), + [anon_sym_o_GT] = ACTIONS(1442), + [anon_sym_err_PLUSout_GT] = ACTIONS(1442), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1442), + [anon_sym_o_PLUSe_GT] = ACTIONS(1442), + [anon_sym_e_PLUSo_GT] = ACTIONS(1442), + [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(3), + }, + [STATE(413)] = { + [sym__expr_parenthesized_immediate] = STATE(801), + [sym__immediate_decimal] = STATE(802), + [sym_val_variable] = STATE(801), + [sym_comment] = STATE(413), + [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_DOLLAR] = ACTIONS(1601), + [anon_sym_GT2] = ACTIONS(1679), + [anon_sym_DASH2] = ACTIONS(1679), + [anon_sym_LBRACE] = ACTIONS(1677), + [anon_sym_RBRACE] = 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_LPAREN2] = ACTIONS(1605), + [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), + [aux_sym__immediate_decimal_token1] = ACTIONS(1645), + [aux_sym__immediate_decimal_token2] = ACTIONS(1645), + [aux_sym__immediate_decimal_token3] = ACTIONS(1611), + [aux_sym__immediate_decimal_token4] = ACTIONS(1611), + [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(414)] = { + [sym__expr_parenthesized_immediate] = STATE(807), + [sym__immediate_decimal] = STATE(944), + [sym_val_variable] = STATE(807), + [sym_comment] = STATE(414), [anon_sym_in] = ACTIONS(1681), [sym__newline] = ACTIONS(1681), [anon_sym_SEMI] = ACTIONS(1681), @@ -80258,7 +81251,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1681), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1681), [anon_sym_RPAREN] = ACTIONS(1681), - [anon_sym_DOLLAR] = ACTIONS(1600), + [anon_sym_DOLLAR] = ACTIONS(1601), [anon_sym_GT2] = ACTIONS(1683), [anon_sym_DASH2] = ACTIONS(1683), [anon_sym_LBRACE] = ACTIONS(1681), @@ -80283,7 +81276,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(1681), [anon_sym_like2] = ACTIONS(1681), [anon_sym_not_DASHlike2] = ACTIONS(1681), - [anon_sym_LPAREN2] = ACTIONS(1604), + [anon_sym_LPAREN2] = ACTIONS(1605), [anon_sym_STAR_STAR2] = ACTIONS(1681), [anon_sym_PLUS_PLUS2] = ACTIONS(1681), [anon_sym_SLASH2] = ACTIONS(1683), @@ -80295,10 +81288,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1681), [anon_sym_bit_DASHxor2] = ACTIONS(1681), [anon_sym_bit_DASHor2] = ACTIONS(1681), - [aux_sym__immediate_decimal_token1] = ACTIONS(1655), - [aux_sym__immediate_decimal_token2] = ACTIONS(1655), - [aux_sym__immediate_decimal_token3] = ACTIONS(1610), - [aux_sym__immediate_decimal_token4] = ACTIONS(1610), + [aux_sym__immediate_decimal_token1] = ACTIONS(1645), + [aux_sym__immediate_decimal_token2] = ACTIONS(1645), + [aux_sym__immediate_decimal_token3] = ACTIONS(1611), + [aux_sym__immediate_decimal_token4] = ACTIONS(1611), [anon_sym_err_GT] = ACTIONS(1683), [anon_sym_out_GT] = ACTIONS(1683), [anon_sym_e_GT] = ACTIONS(1683), @@ -80317,692 +81310,538 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1681), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(413)] = { - [sym__expr_parenthesized_immediate] = STATE(929), - [sym__immediate_decimal] = STATE(694), - [sym_val_variable] = STATE(929), - [sym_comment] = STATE(413), - [ts_builtin_sym_end] = ACTIONS(1598), - [anon_sym_in] = ACTIONS(1598), - [sym__newline] = ACTIONS(1598), - [anon_sym_SEMI] = ACTIONS(1598), - [anon_sym_PIPE] = ACTIONS(1598), - [anon_sym_err_GT_PIPE] = ACTIONS(1598), - [anon_sym_out_GT_PIPE] = ACTIONS(1598), - [anon_sym_e_GT_PIPE] = ACTIONS(1598), - [anon_sym_o_GT_PIPE] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1598), + [STATE(415)] = { + [sym__expr_parenthesized_immediate] = STATE(919), + [sym__immediate_decimal] = STATE(714), + [sym_val_variable] = STATE(919), + [sym_comment] = STATE(415), + [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(1685), - [anon_sym_GT2] = ACTIONS(1602), - [anon_sym_DASH2] = ACTIONS(1602), - [anon_sym_STAR2] = ACTIONS(1602), - [anon_sym_and2] = ACTIONS(1598), - [anon_sym_xor2] = ACTIONS(1598), - [anon_sym_or2] = ACTIONS(1598), - [anon_sym_not_DASHin2] = ACTIONS(1598), - [anon_sym_has2] = ACTIONS(1598), - [anon_sym_not_DASHhas2] = ACTIONS(1598), - [anon_sym_starts_DASHwith2] = ACTIONS(1598), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1598), - [anon_sym_ends_DASHwith2] = ACTIONS(1598), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1598), - [anon_sym_EQ_EQ2] = ACTIONS(1598), - [anon_sym_BANG_EQ2] = ACTIONS(1598), - [anon_sym_LT2] = ACTIONS(1602), - [anon_sym_LT_EQ2] = ACTIONS(1598), - [anon_sym_GT_EQ2] = ACTIONS(1598), - [anon_sym_EQ_TILDE2] = ACTIONS(1598), - [anon_sym_BANG_TILDE2] = ACTIONS(1598), - [anon_sym_like2] = ACTIONS(1598), - [anon_sym_not_DASHlike2] = ACTIONS(1598), + [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(1687), - [anon_sym_STAR_STAR2] = ACTIONS(1598), - [anon_sym_PLUS_PLUS2] = ACTIONS(1598), - [anon_sym_SLASH2] = ACTIONS(1602), - [anon_sym_mod2] = ACTIONS(1598), - [anon_sym_SLASH_SLASH2] = ACTIONS(1598), - [anon_sym_PLUS2] = ACTIONS(1602), - [anon_sym_bit_DASHshl2] = ACTIONS(1598), - [anon_sym_bit_DASHshr2] = ACTIONS(1598), - [anon_sym_bit_DASHand2] = ACTIONS(1598), - [anon_sym_bit_DASHxor2] = ACTIONS(1598), - [anon_sym_bit_DASHor2] = ACTIONS(1598), + [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), [anon_sym_DOT] = ACTIONS(1689), [aux_sym__immediate_decimal_token1] = ACTIONS(1691), [aux_sym__immediate_decimal_token2] = ACTIONS(1691), [aux_sym__immediate_decimal_token3] = ACTIONS(1693), [aux_sym__immediate_decimal_token4] = ACTIONS(1693), - [anon_sym_err_GT] = ACTIONS(1602), - [anon_sym_out_GT] = ACTIONS(1602), - [anon_sym_e_GT] = ACTIONS(1602), - [anon_sym_o_GT] = ACTIONS(1602), - [anon_sym_err_PLUSout_GT] = ACTIONS(1602), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1602), - [anon_sym_o_PLUSe_GT] = ACTIONS(1602), - [anon_sym_e_PLUSo_GT] = ACTIONS(1602), - [anon_sym_err_GT_GT] = ACTIONS(1598), - [anon_sym_out_GT_GT] = ACTIONS(1598), - [anon_sym_e_GT_GT] = ACTIONS(1598), - [anon_sym_o_GT_GT] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1598), - [sym__unquoted_pattern] = ACTIONS(1635), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(414)] = { - [sym__expr_parenthesized_immediate] = STATE(730), - [sym__immediate_decimal] = STATE(958), - [sym_val_variable] = STATE(730), - [sym_comment] = STATE(414), - [anon_sym_in] = ACTIONS(1598), - [sym__newline] = ACTIONS(1598), - [anon_sym_SEMI] = ACTIONS(1598), - [anon_sym_PIPE] = ACTIONS(1598), - [anon_sym_err_GT_PIPE] = ACTIONS(1598), - [anon_sym_out_GT_PIPE] = ACTIONS(1598), - [anon_sym_e_GT_PIPE] = ACTIONS(1598), - [anon_sym_o_GT_PIPE] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1598), - [anon_sym_RPAREN] = ACTIONS(1598), - [anon_sym_DOLLAR] = ACTIONS(1600), - [anon_sym_GT2] = ACTIONS(1602), - [anon_sym_DASH2] = ACTIONS(1602), - [anon_sym_RBRACE] = ACTIONS(1598), - [anon_sym_STAR2] = ACTIONS(1602), - [anon_sym_and2] = ACTIONS(1598), - [anon_sym_xor2] = ACTIONS(1598), - [anon_sym_or2] = ACTIONS(1598), - [anon_sym_not_DASHin2] = ACTIONS(1598), - [anon_sym_has2] = ACTIONS(1598), - [anon_sym_not_DASHhas2] = ACTIONS(1598), - [anon_sym_starts_DASHwith2] = ACTIONS(1598), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1598), - [anon_sym_ends_DASHwith2] = ACTIONS(1598), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1598), - [anon_sym_EQ_EQ2] = ACTIONS(1598), - [anon_sym_BANG_EQ2] = ACTIONS(1598), - [anon_sym_LT2] = ACTIONS(1602), - [anon_sym_LT_EQ2] = ACTIONS(1598), - [anon_sym_GT_EQ2] = ACTIONS(1598), - [anon_sym_EQ_TILDE2] = ACTIONS(1598), - [anon_sym_BANG_TILDE2] = ACTIONS(1598), - [anon_sym_like2] = ACTIONS(1598), - [anon_sym_not_DASHlike2] = ACTIONS(1598), - [anon_sym_LPAREN2] = ACTIONS(1604), - [anon_sym_STAR_STAR2] = ACTIONS(1598), - [anon_sym_PLUS_PLUS2] = ACTIONS(1598), - [anon_sym_SLASH2] = ACTIONS(1602), - [anon_sym_mod2] = ACTIONS(1598), - [anon_sym_SLASH_SLASH2] = ACTIONS(1598), - [anon_sym_PLUS2] = ACTIONS(1602), - [anon_sym_bit_DASHshl2] = ACTIONS(1598), - [anon_sym_bit_DASHshr2] = ACTIONS(1598), - [anon_sym_bit_DASHand2] = ACTIONS(1598), - [anon_sym_bit_DASHxor2] = ACTIONS(1598), - [anon_sym_bit_DASHor2] = ACTIONS(1598), - [aux_sym__immediate_decimal_token1] = ACTIONS(1675), - [aux_sym__immediate_decimal_token2] = ACTIONS(1675), - [aux_sym__immediate_decimal_token3] = ACTIONS(1677), - [aux_sym__immediate_decimal_token4] = ACTIONS(1677), - [anon_sym_err_GT] = ACTIONS(1602), - [anon_sym_out_GT] = ACTIONS(1602), - [anon_sym_e_GT] = ACTIONS(1602), - [anon_sym_o_GT] = ACTIONS(1602), - [anon_sym_err_PLUSout_GT] = ACTIONS(1602), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1602), - [anon_sym_o_PLUSe_GT] = ACTIONS(1602), - [anon_sym_e_PLUSo_GT] = ACTIONS(1602), - [anon_sym_err_GT_GT] = ACTIONS(1598), - [anon_sym_out_GT_GT] = ACTIONS(1598), - [anon_sym_e_GT_GT] = ACTIONS(1598), - [anon_sym_o_GT_GT] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1598), - [sym__unquoted_pattern] = ACTIONS(1635), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(415)] = { - [sym_comment] = STATE(415), - [ts_builtin_sym_end] = ACTIONS(1450), - [anon_sym_EQ] = ACTIONS(1448), - [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(1448), - [anon_sym_DASH2] = ACTIONS(1448), - [anon_sym_STAR2] = ACTIONS(1448), - [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(1448), - [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(1448), - [anon_sym_SLASH2] = ACTIONS(1448), - [anon_sym_mod2] = ACTIONS(1450), - [anon_sym_SLASH_SLASH2] = ACTIONS(1450), - [anon_sym_PLUS2] = ACTIONS(1448), - [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(1448), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1450), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1450), - [anon_sym_QMARK2] = ACTIONS(1695), - [anon_sym_DOT2] = ACTIONS(1448), - [anon_sym_err_GT] = ACTIONS(1448), - [anon_sym_out_GT] = ACTIONS(1448), - [anon_sym_e_GT] = ACTIONS(1448), - [anon_sym_o_GT] = ACTIONS(1448), - [anon_sym_err_PLUSout_GT] = ACTIONS(1448), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1448), - [anon_sym_o_PLUSe_GT] = ACTIONS(1448), - [anon_sym_e_PLUSo_GT] = ACTIONS(1448), - [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_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(1637), [anon_sym_POUND] = ACTIONS(3), }, [STATE(416)] = { - [sym__expr_parenthesized_immediate] = STATE(730), - [sym__immediate_decimal] = STATE(904), - [sym_val_variable] = STATE(730), + [sym__expr_parenthesized_immediate] = STATE(807), + [sym__immediate_decimal] = STATE(931), + [sym_val_variable] = STATE(807), [sym_comment] = STATE(416), - [anon_sym_in] = ACTIONS(1598), - [sym__newline] = ACTIONS(1598), - [anon_sym_SEMI] = ACTIONS(1598), - [anon_sym_PIPE] = ACTIONS(1598), - [anon_sym_err_GT_PIPE] = ACTIONS(1598), - [anon_sym_out_GT_PIPE] = ACTIONS(1598), - [anon_sym_e_GT_PIPE] = ACTIONS(1598), - [anon_sym_o_GT_PIPE] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1598), - [anon_sym_RPAREN] = ACTIONS(1598), - [anon_sym_DOLLAR] = ACTIONS(1600), - [anon_sym_GT2] = ACTIONS(1602), - [anon_sym_DASH2] = ACTIONS(1602), - [anon_sym_LBRACE] = ACTIONS(1598), - [anon_sym_RBRACE] = ACTIONS(1598), - [anon_sym_STAR2] = ACTIONS(1602), - [anon_sym_and2] = ACTIONS(1598), - [anon_sym_xor2] = ACTIONS(1598), - [anon_sym_or2] = ACTIONS(1598), - [anon_sym_not_DASHin2] = ACTIONS(1598), - [anon_sym_has2] = ACTIONS(1598), - [anon_sym_not_DASHhas2] = ACTIONS(1598), - [anon_sym_starts_DASHwith2] = ACTIONS(1598), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1598), - [anon_sym_ends_DASHwith2] = ACTIONS(1598), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1598), - [anon_sym_EQ_EQ2] = ACTIONS(1598), - [anon_sym_BANG_EQ2] = ACTIONS(1598), - [anon_sym_LT2] = ACTIONS(1602), - [anon_sym_LT_EQ2] = ACTIONS(1598), - [anon_sym_GT_EQ2] = ACTIONS(1598), - [anon_sym_EQ_TILDE2] = ACTIONS(1598), - [anon_sym_BANG_TILDE2] = ACTIONS(1598), - [anon_sym_like2] = ACTIONS(1598), - [anon_sym_not_DASHlike2] = ACTIONS(1598), - [anon_sym_LPAREN2] = ACTIONS(1604), - [anon_sym_STAR_STAR2] = ACTIONS(1598), - [anon_sym_PLUS_PLUS2] = ACTIONS(1598), - [anon_sym_SLASH2] = ACTIONS(1602), - [anon_sym_mod2] = ACTIONS(1598), - [anon_sym_SLASH_SLASH2] = ACTIONS(1598), - [anon_sym_PLUS2] = ACTIONS(1602), - [anon_sym_bit_DASHshl2] = ACTIONS(1598), - [anon_sym_bit_DASHshr2] = ACTIONS(1598), - [anon_sym_bit_DASHand2] = ACTIONS(1598), - [anon_sym_bit_DASHxor2] = ACTIONS(1598), - [anon_sym_bit_DASHor2] = ACTIONS(1598), - [aux_sym__immediate_decimal_token1] = ACTIONS(1655), - [aux_sym__immediate_decimal_token2] = ACTIONS(1655), - [aux_sym__immediate_decimal_token3] = ACTIONS(1610), - [aux_sym__immediate_decimal_token4] = ACTIONS(1610), - [anon_sym_err_GT] = ACTIONS(1602), - [anon_sym_out_GT] = ACTIONS(1602), - [anon_sym_e_GT] = ACTIONS(1602), - [anon_sym_o_GT] = ACTIONS(1602), - [anon_sym_err_PLUSout_GT] = ACTIONS(1602), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1602), - [anon_sym_o_PLUSe_GT] = ACTIONS(1602), - [anon_sym_e_PLUSo_GT] = ACTIONS(1602), - [anon_sym_err_GT_GT] = ACTIONS(1598), - [anon_sym_out_GT_GT] = ACTIONS(1598), - [anon_sym_e_GT_GT] = ACTIONS(1598), - [anon_sym_o_GT_GT] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1598), + [anon_sym_in] = ACTIONS(1681), + [sym__newline] = ACTIONS(1681), + [anon_sym_SEMI] = ACTIONS(1681), + [anon_sym_PIPE] = ACTIONS(1681), + [anon_sym_err_GT_PIPE] = ACTIONS(1681), + [anon_sym_out_GT_PIPE] = ACTIONS(1681), + [anon_sym_e_GT_PIPE] = ACTIONS(1681), + [anon_sym_o_GT_PIPE] = ACTIONS(1681), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1681), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1681), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1681), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1681), + [anon_sym_RPAREN] = ACTIONS(1681), + [anon_sym_DOLLAR] = ACTIONS(1601), + [anon_sym_GT2] = ACTIONS(1683), + [anon_sym_DASH2] = ACTIONS(1683), + [anon_sym_RBRACE] = ACTIONS(1681), + [anon_sym_STAR2] = ACTIONS(1683), + [anon_sym_and2] = ACTIONS(1681), + [anon_sym_xor2] = ACTIONS(1681), + [anon_sym_or2] = ACTIONS(1681), + [anon_sym_not_DASHin2] = ACTIONS(1681), + [anon_sym_has2] = ACTIONS(1681), + [anon_sym_not_DASHhas2] = ACTIONS(1681), + [anon_sym_starts_DASHwith2] = ACTIONS(1681), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1681), + [anon_sym_ends_DASHwith2] = ACTIONS(1681), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1681), + [anon_sym_EQ_EQ2] = ACTIONS(1681), + [anon_sym_BANG_EQ2] = ACTIONS(1681), + [anon_sym_LT2] = ACTIONS(1683), + [anon_sym_LT_EQ2] = ACTIONS(1681), + [anon_sym_GT_EQ2] = ACTIONS(1681), + [anon_sym_EQ_TILDE2] = ACTIONS(1681), + [anon_sym_BANG_TILDE2] = ACTIONS(1681), + [anon_sym_like2] = ACTIONS(1681), + [anon_sym_not_DASHlike2] = ACTIONS(1681), + [anon_sym_LPAREN2] = ACTIONS(1605), + [anon_sym_STAR_STAR2] = ACTIONS(1681), + [anon_sym_PLUS_PLUS2] = ACTIONS(1681), + [anon_sym_SLASH2] = ACTIONS(1683), + [anon_sym_mod2] = ACTIONS(1681), + [anon_sym_SLASH_SLASH2] = ACTIONS(1681), + [anon_sym_PLUS2] = ACTIONS(1683), + [anon_sym_bit_DASHshl2] = ACTIONS(1681), + [anon_sym_bit_DASHshr2] = ACTIONS(1681), + [anon_sym_bit_DASHand2] = ACTIONS(1681), + [anon_sym_bit_DASHxor2] = ACTIONS(1681), + [anon_sym_bit_DASHor2] = ACTIONS(1681), + [aux_sym__immediate_decimal_token1] = ACTIONS(1665), + [aux_sym__immediate_decimal_token2] = ACTIONS(1665), + [aux_sym__immediate_decimal_token3] = ACTIONS(1667), + [aux_sym__immediate_decimal_token4] = ACTIONS(1667), + [anon_sym_err_GT] = ACTIONS(1683), + [anon_sym_out_GT] = ACTIONS(1683), + [anon_sym_e_GT] = ACTIONS(1683), + [anon_sym_o_GT] = ACTIONS(1683), + [anon_sym_err_PLUSout_GT] = ACTIONS(1683), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1683), + [anon_sym_o_PLUSe_GT] = ACTIONS(1683), + [anon_sym_e_PLUSo_GT] = ACTIONS(1683), + [anon_sym_err_GT_GT] = ACTIONS(1681), + [anon_sym_out_GT_GT] = ACTIONS(1681), + [anon_sym_e_GT_GT] = ACTIONS(1681), + [anon_sym_o_GT_GT] = ACTIONS(1681), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1681), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1681), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1681), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1681), + [sym__unquoted_pattern] = ACTIONS(1695), [anon_sym_POUND] = ACTIONS(3), }, [STATE(417)] = { [sym_comment] = STATE(417), - [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_RPAREN] = ACTIONS(1529), - [anon_sym_GT2] = ACTIONS(1527), - [anon_sym_DASH2] = ACTIONS(1529), - [anon_sym_LBRACE] = ACTIONS(1529), - [anon_sym_RBRACE] = ACTIONS(1529), - [anon_sym_EQ_GT] = ACTIONS(1529), - [anon_sym_STAR2] = ACTIONS(1527), - [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(1527), - [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(1527), - [anon_sym_mod2] = ACTIONS(1529), - [anon_sym_SLASH_SLASH2] = ACTIONS(1529), - [anon_sym_PLUS2] = ACTIONS(1527), - [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(1527), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1529), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1529), - [anon_sym_COLON2] = ACTIONS(1529), - [anon_sym_QMARK2] = ACTIONS(1529), - [anon_sym_BANG] = ACTIONS(1527), - [anon_sym_DOT2] = ACTIONS(1527), - [anon_sym_err_GT] = ACTIONS(1527), - [anon_sym_out_GT] = ACTIONS(1527), - [anon_sym_e_GT] = ACTIONS(1527), - [anon_sym_o_GT] = ACTIONS(1527), - [anon_sym_err_PLUSout_GT] = ACTIONS(1527), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1527), - [anon_sym_o_PLUSe_GT] = ACTIONS(1527), - [anon_sym_e_PLUSo_GT] = ACTIONS(1527), - [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_EQ] = ACTIONS(1613), + [anon_sym_PLUS_EQ] = ACTIONS(1697), + [anon_sym_DASH_EQ] = ACTIONS(1697), + [anon_sym_STAR_EQ] = ACTIONS(1697), + [anon_sym_SLASH_EQ] = ACTIONS(1697), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1697), + [anon_sym_in] = ACTIONS(1699), + [sym__newline] = ACTIONS(1699), + [anon_sym_SEMI] = ACTIONS(1699), + [anon_sym_PIPE] = ACTIONS(1699), + [anon_sym_err_GT_PIPE] = ACTIONS(1699), + [anon_sym_out_GT_PIPE] = ACTIONS(1699), + [anon_sym_e_GT_PIPE] = ACTIONS(1699), + [anon_sym_o_GT_PIPE] = ACTIONS(1699), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1699), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1699), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1699), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1699), + [anon_sym_GT2] = ACTIONS(1615), + [anon_sym_DASH2] = ACTIONS(1615), + [anon_sym_RBRACE] = ACTIONS(1699), + [anon_sym_STAR2] = ACTIONS(1615), + [anon_sym_and2] = ACTIONS(1699), + [anon_sym_xor2] = ACTIONS(1699), + [anon_sym_or2] = ACTIONS(1699), + [anon_sym_not_DASHin2] = ACTIONS(1699), + [anon_sym_has2] = ACTIONS(1699), + [anon_sym_not_DASHhas2] = ACTIONS(1699), + [anon_sym_starts_DASHwith2] = ACTIONS(1699), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1699), + [anon_sym_ends_DASHwith2] = ACTIONS(1699), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1699), + [anon_sym_EQ_EQ2] = ACTIONS(1699), + [anon_sym_BANG_EQ2] = ACTIONS(1699), + [anon_sym_LT2] = ACTIONS(1615), + [anon_sym_LT_EQ2] = ACTIONS(1699), + [anon_sym_GT_EQ2] = ACTIONS(1699), + [anon_sym_EQ_TILDE2] = ACTIONS(1699), + [anon_sym_BANG_TILDE2] = ACTIONS(1699), + [anon_sym_like2] = ACTIONS(1699), + [anon_sym_not_DASHlike2] = ACTIONS(1699), + [anon_sym_STAR_STAR2] = ACTIONS(1699), + [anon_sym_PLUS_PLUS2] = ACTIONS(1615), + [anon_sym_SLASH2] = ACTIONS(1615), + [anon_sym_mod2] = ACTIONS(1699), + [anon_sym_SLASH_SLASH2] = ACTIONS(1699), + [anon_sym_PLUS2] = ACTIONS(1615), + [anon_sym_bit_DASHshl2] = ACTIONS(1699), + [anon_sym_bit_DASHshr2] = ACTIONS(1699), + [anon_sym_bit_DASHand2] = ACTIONS(1699), + [anon_sym_bit_DASHxor2] = ACTIONS(1699), + [anon_sym_bit_DASHor2] = ACTIONS(1699), + [anon_sym_DOT_DOT2] = ACTIONS(1619), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1621), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1621), + [anon_sym_COLON2] = ACTIONS(1701), + [anon_sym_err_GT] = ACTIONS(1615), + [anon_sym_out_GT] = ACTIONS(1615), + [anon_sym_e_GT] = ACTIONS(1615), + [anon_sym_o_GT] = ACTIONS(1615), + [anon_sym_err_PLUSout_GT] = ACTIONS(1615), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1615), + [anon_sym_o_PLUSe_GT] = ACTIONS(1615), + [anon_sym_e_PLUSo_GT] = ACTIONS(1615), + [anon_sym_err_GT_GT] = ACTIONS(1699), + [anon_sym_out_GT_GT] = ACTIONS(1699), + [anon_sym_e_GT_GT] = ACTIONS(1699), + [anon_sym_o_GT_GT] = ACTIONS(1699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1699), [anon_sym_POUND] = ACTIONS(3), }, [STATE(418)] = { - [sym__expr_parenthesized_immediate] = STATE(1279), - [sym__immediate_decimal] = STATE(1083), - [sym_val_variable] = STATE(1279), [sym_comment] = STATE(418), - [ts_builtin_sym_end] = ACTIONS(1651), - [anon_sym_in] = ACTIONS(1651), - [sym__newline] = ACTIONS(1651), - [anon_sym_SEMI] = ACTIONS(1651), - [anon_sym_PIPE] = ACTIONS(1651), - [anon_sym_err_GT_PIPE] = ACTIONS(1651), - [anon_sym_out_GT_PIPE] = ACTIONS(1651), - [anon_sym_e_GT_PIPE] = ACTIONS(1651), - [anon_sym_o_GT_PIPE] = ACTIONS(1651), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1651), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1651), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1651), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1651), - [anon_sym_DOLLAR] = ACTIONS(1685), - [anon_sym_GT2] = ACTIONS(1653), - [anon_sym_DASH2] = ACTIONS(1653), - [anon_sym_STAR2] = ACTIONS(1653), - [anon_sym_and2] = ACTIONS(1651), - [anon_sym_xor2] = ACTIONS(1651), - [anon_sym_or2] = ACTIONS(1651), - [anon_sym_not_DASHin2] = ACTIONS(1651), - [anon_sym_has2] = ACTIONS(1651), - [anon_sym_not_DASHhas2] = ACTIONS(1651), - [anon_sym_starts_DASHwith2] = ACTIONS(1651), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1651), - [anon_sym_ends_DASHwith2] = ACTIONS(1651), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1651), - [anon_sym_EQ_EQ2] = ACTIONS(1651), - [anon_sym_BANG_EQ2] = ACTIONS(1651), - [anon_sym_LT2] = ACTIONS(1653), - [anon_sym_LT_EQ2] = ACTIONS(1651), - [anon_sym_GT_EQ2] = ACTIONS(1651), - [anon_sym_EQ_TILDE2] = ACTIONS(1651), - [anon_sym_BANG_TILDE2] = ACTIONS(1651), - [anon_sym_like2] = ACTIONS(1651), - [anon_sym_not_DASHlike2] = ACTIONS(1651), - [anon_sym_LPAREN2] = ACTIONS(1687), - [anon_sym_STAR_STAR2] = ACTIONS(1651), - [anon_sym_PLUS_PLUS2] = ACTIONS(1651), - [anon_sym_SLASH2] = ACTIONS(1653), - [anon_sym_mod2] = ACTIONS(1651), - [anon_sym_SLASH_SLASH2] = ACTIONS(1651), - [anon_sym_PLUS2] = ACTIONS(1653), - [anon_sym_bit_DASHshl2] = ACTIONS(1651), - [anon_sym_bit_DASHshr2] = ACTIONS(1651), - [anon_sym_bit_DASHand2] = ACTIONS(1651), - [anon_sym_bit_DASHxor2] = ACTIONS(1651), - [anon_sym_bit_DASHor2] = ACTIONS(1651), - [aux_sym__immediate_decimal_token1] = ACTIONS(1697), - [aux_sym__immediate_decimal_token2] = ACTIONS(1697), - [aux_sym__immediate_decimal_token3] = ACTIONS(1699), - [aux_sym__immediate_decimal_token4] = ACTIONS(1699), - [anon_sym_err_GT] = ACTIONS(1653), - [anon_sym_out_GT] = ACTIONS(1653), - [anon_sym_e_GT] = ACTIONS(1653), - [anon_sym_o_GT] = ACTIONS(1653), - [anon_sym_err_PLUSout_GT] = ACTIONS(1653), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1653), - [anon_sym_o_PLUSe_GT] = ACTIONS(1653), - [anon_sym_e_PLUSo_GT] = ACTIONS(1653), - [anon_sym_err_GT_GT] = ACTIONS(1651), - [anon_sym_out_GT_GT] = ACTIONS(1651), - [anon_sym_e_GT_GT] = ACTIONS(1651), - [anon_sym_o_GT_GT] = ACTIONS(1651), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1651), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1651), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1651), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1651), - [sym__unquoted_pattern] = ACTIONS(1679), + [anon_sym_in] = ACTIONS(1510), + [sym__newline] = ACTIONS(1510), + [anon_sym_SEMI] = ACTIONS(1510), + [anon_sym_PIPE] = ACTIONS(1510), + [anon_sym_err_GT_PIPE] = ACTIONS(1510), + [anon_sym_out_GT_PIPE] = ACTIONS(1510), + [anon_sym_e_GT_PIPE] = ACTIONS(1510), + [anon_sym_o_GT_PIPE] = ACTIONS(1510), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1510), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1510), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1510), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1510), + [anon_sym_RPAREN] = ACTIONS(1510), + [anon_sym_GT2] = ACTIONS(1508), + [anon_sym_DASH2] = ACTIONS(1510), + [anon_sym_LBRACE] = ACTIONS(1510), + [anon_sym_RBRACE] = ACTIONS(1510), + [anon_sym_EQ_GT] = ACTIONS(1510), + [anon_sym_STAR2] = ACTIONS(1508), + [anon_sym_and2] = ACTIONS(1510), + [anon_sym_xor2] = ACTIONS(1510), + [anon_sym_or2] = ACTIONS(1510), + [anon_sym_not_DASHin2] = ACTIONS(1510), + [anon_sym_has2] = ACTIONS(1510), + [anon_sym_not_DASHhas2] = ACTIONS(1510), + [anon_sym_starts_DASHwith2] = ACTIONS(1510), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1510), + [anon_sym_ends_DASHwith2] = ACTIONS(1510), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1510), + [anon_sym_EQ_EQ2] = ACTIONS(1510), + [anon_sym_BANG_EQ2] = ACTIONS(1510), + [anon_sym_LT2] = ACTIONS(1508), + [anon_sym_LT_EQ2] = ACTIONS(1510), + [anon_sym_GT_EQ2] = ACTIONS(1510), + [anon_sym_EQ_TILDE2] = ACTIONS(1510), + [anon_sym_BANG_TILDE2] = ACTIONS(1510), + [anon_sym_like2] = ACTIONS(1510), + [anon_sym_not_DASHlike2] = ACTIONS(1510), + [anon_sym_STAR_STAR2] = ACTIONS(1510), + [anon_sym_PLUS_PLUS2] = ACTIONS(1510), + [anon_sym_SLASH2] = ACTIONS(1508), + [anon_sym_mod2] = ACTIONS(1510), + [anon_sym_SLASH_SLASH2] = ACTIONS(1510), + [anon_sym_PLUS2] = ACTIONS(1508), + [anon_sym_bit_DASHshl2] = ACTIONS(1510), + [anon_sym_bit_DASHshr2] = ACTIONS(1510), + [anon_sym_bit_DASHand2] = ACTIONS(1510), + [anon_sym_bit_DASHxor2] = ACTIONS(1510), + [anon_sym_bit_DASHor2] = ACTIONS(1510), + [anon_sym_DOT_DOT2] = ACTIONS(1508), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1510), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1510), + [anon_sym_COLON2] = ACTIONS(1510), + [anon_sym_QMARK2] = ACTIONS(1510), + [anon_sym_BANG] = ACTIONS(1508), + [anon_sym_DOT2] = ACTIONS(1508), + [anon_sym_err_GT] = ACTIONS(1508), + [anon_sym_out_GT] = ACTIONS(1508), + [anon_sym_e_GT] = ACTIONS(1508), + [anon_sym_o_GT] = ACTIONS(1508), + [anon_sym_err_PLUSout_GT] = ACTIONS(1508), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1508), + [anon_sym_o_PLUSe_GT] = ACTIONS(1508), + [anon_sym_e_PLUSo_GT] = ACTIONS(1508), + [anon_sym_err_GT_GT] = ACTIONS(1510), + [anon_sym_out_GT_GT] = ACTIONS(1510), + [anon_sym_e_GT_GT] = ACTIONS(1510), + [anon_sym_o_GT_GT] = ACTIONS(1510), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1510), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1510), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1510), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1510), [anon_sym_POUND] = ACTIONS(3), }, [STATE(419)] = { - [sym__expr_parenthesized_immediate] = STATE(920), - [sym__immediate_decimal] = STATE(923), - [sym_val_variable] = STATE(920), [sym_comment] = STATE(419), - [ts_builtin_sym_end] = ACTIONS(1639), - [anon_sym_in] = ACTIONS(1639), - [sym__newline] = ACTIONS(1639), - [anon_sym_SEMI] = ACTIONS(1639), - [anon_sym_PIPE] = ACTIONS(1639), - [anon_sym_err_GT_PIPE] = ACTIONS(1639), - [anon_sym_out_GT_PIPE] = ACTIONS(1639), - [anon_sym_e_GT_PIPE] = ACTIONS(1639), - [anon_sym_o_GT_PIPE] = ACTIONS(1639), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1639), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1639), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1639), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1639), - [anon_sym_DOLLAR] = ACTIONS(1685), - [anon_sym_GT2] = ACTIONS(1641), - [anon_sym_DASH2] = ACTIONS(1641), - [anon_sym_STAR2] = ACTIONS(1641), - [anon_sym_and2] = ACTIONS(1639), - [anon_sym_xor2] = ACTIONS(1639), - [anon_sym_or2] = ACTIONS(1639), - [anon_sym_not_DASHin2] = ACTIONS(1639), - [anon_sym_has2] = ACTIONS(1639), - [anon_sym_not_DASHhas2] = ACTIONS(1639), - [anon_sym_starts_DASHwith2] = ACTIONS(1639), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1639), - [anon_sym_ends_DASHwith2] = ACTIONS(1639), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1639), - [anon_sym_EQ_EQ2] = ACTIONS(1639), - [anon_sym_BANG_EQ2] = ACTIONS(1639), - [anon_sym_LT2] = ACTIONS(1641), - [anon_sym_LT_EQ2] = ACTIONS(1639), - [anon_sym_GT_EQ2] = ACTIONS(1639), - [anon_sym_EQ_TILDE2] = ACTIONS(1639), - [anon_sym_BANG_TILDE2] = ACTIONS(1639), - [anon_sym_like2] = ACTIONS(1639), - [anon_sym_not_DASHlike2] = ACTIONS(1639), - [anon_sym_LPAREN2] = ACTIONS(1687), - [anon_sym_STAR_STAR2] = ACTIONS(1639), - [anon_sym_PLUS_PLUS2] = ACTIONS(1639), - [anon_sym_SLASH2] = ACTIONS(1641), - [anon_sym_mod2] = ACTIONS(1639), - [anon_sym_SLASH_SLASH2] = ACTIONS(1639), - [anon_sym_PLUS2] = ACTIONS(1641), - [anon_sym_bit_DASHshl2] = ACTIONS(1639), - [anon_sym_bit_DASHshr2] = ACTIONS(1639), - [anon_sym_bit_DASHand2] = ACTIONS(1639), - [anon_sym_bit_DASHxor2] = ACTIONS(1639), - [anon_sym_bit_DASHor2] = ACTIONS(1639), - [anon_sym_DOT] = ACTIONS(1701), - [aux_sym__immediate_decimal_token1] = ACTIONS(1691), - [aux_sym__immediate_decimal_token2] = ACTIONS(1691), - [aux_sym__immediate_decimal_token3] = ACTIONS(1693), - [aux_sym__immediate_decimal_token4] = ACTIONS(1693), - [anon_sym_err_GT] = ACTIONS(1641), - [anon_sym_out_GT] = ACTIONS(1641), - [anon_sym_e_GT] = ACTIONS(1641), - [anon_sym_o_GT] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT] = ACTIONS(1641), - [anon_sym_err_GT_GT] = ACTIONS(1639), - [anon_sym_out_GT_GT] = ACTIONS(1639), - [anon_sym_e_GT_GT] = ACTIONS(1639), - [anon_sym_o_GT_GT] = ACTIONS(1639), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1639), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1639), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1639), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1639), + [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_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(420)] = { - [sym_cell_path] = STATE(496), + [sym_cell_path] = STATE(501), [sym_path] = STATE(458), [sym_comment] = STATE(420), - [aux_sym__where_predicate_lhs_repeat1] = STATE(427), - [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_RPAREN] = ACTIONS(1444), - [anon_sym_GT2] = ACTIONS(1442), - [anon_sym_DASH2] = ACTIONS(1444), - [anon_sym_LBRACE] = ACTIONS(1444), - [anon_sym_RBRACE] = ACTIONS(1444), - [anon_sym_EQ_GT] = ACTIONS(1444), - [anon_sym_STAR2] = ACTIONS(1442), - [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(1442), - [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(1442), - [anon_sym_mod2] = ACTIONS(1444), - [anon_sym_SLASH_SLASH2] = ACTIONS(1444), - [anon_sym_PLUS2] = ACTIONS(1442), - [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(1442), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1444), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1444), - [anon_sym_DOT2] = ACTIONS(1649), - [anon_sym_err_GT] = ACTIONS(1442), - [anon_sym_out_GT] = ACTIONS(1442), - [anon_sym_e_GT] = ACTIONS(1442), - [anon_sym_o_GT] = ACTIONS(1442), - [anon_sym_err_PLUSout_GT] = ACTIONS(1442), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1442), - [anon_sym_o_PLUSe_GT] = ACTIONS(1442), - [anon_sym_e_PLUSo_GT] = ACTIONS(1442), - [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), + [aux_sym__where_predicate_lhs_repeat1] = STATE(428), + [anon_sym_in] = ACTIONS(1456), + [sym__newline] = ACTIONS(1456), + [anon_sym_SEMI] = ACTIONS(1456), + [anon_sym_PIPE] = ACTIONS(1456), + [anon_sym_err_GT_PIPE] = ACTIONS(1456), + [anon_sym_out_GT_PIPE] = ACTIONS(1456), + [anon_sym_e_GT_PIPE] = ACTIONS(1456), + [anon_sym_o_GT_PIPE] = ACTIONS(1456), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1456), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1456), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1456), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1456), + [anon_sym_RPAREN] = ACTIONS(1456), + [anon_sym_GT2] = ACTIONS(1454), + [anon_sym_DASH2] = ACTIONS(1456), + [anon_sym_LBRACE] = ACTIONS(1456), + [anon_sym_RBRACE] = ACTIONS(1456), + [anon_sym_EQ_GT] = ACTIONS(1456), + [anon_sym_STAR2] = ACTIONS(1454), + [anon_sym_and2] = ACTIONS(1456), + [anon_sym_xor2] = ACTIONS(1456), + [anon_sym_or2] = ACTIONS(1456), + [anon_sym_not_DASHin2] = ACTIONS(1456), + [anon_sym_has2] = ACTIONS(1456), + [anon_sym_not_DASHhas2] = ACTIONS(1456), + [anon_sym_starts_DASHwith2] = ACTIONS(1456), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1456), + [anon_sym_ends_DASHwith2] = ACTIONS(1456), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1456), + [anon_sym_EQ_EQ2] = ACTIONS(1456), + [anon_sym_BANG_EQ2] = ACTIONS(1456), + [anon_sym_LT2] = ACTIONS(1454), + [anon_sym_LT_EQ2] = ACTIONS(1456), + [anon_sym_GT_EQ2] = ACTIONS(1456), + [anon_sym_EQ_TILDE2] = ACTIONS(1456), + [anon_sym_BANG_TILDE2] = ACTIONS(1456), + [anon_sym_like2] = ACTIONS(1456), + [anon_sym_not_DASHlike2] = ACTIONS(1456), + [anon_sym_STAR_STAR2] = ACTIONS(1456), + [anon_sym_PLUS_PLUS2] = ACTIONS(1456), + [anon_sym_SLASH2] = ACTIONS(1454), + [anon_sym_mod2] = ACTIONS(1456), + [anon_sym_SLASH_SLASH2] = ACTIONS(1456), + [anon_sym_PLUS2] = ACTIONS(1454), + [anon_sym_bit_DASHshl2] = ACTIONS(1456), + [anon_sym_bit_DASHshr2] = ACTIONS(1456), + [anon_sym_bit_DASHand2] = ACTIONS(1456), + [anon_sym_bit_DASHxor2] = ACTIONS(1456), + [anon_sym_bit_DASHor2] = ACTIONS(1456), + [anon_sym_DOT_DOT2] = ACTIONS(1454), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1456), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1456), + [anon_sym_DOT2] = ACTIONS(1651), + [anon_sym_err_GT] = ACTIONS(1454), + [anon_sym_out_GT] = ACTIONS(1454), + [anon_sym_e_GT] = ACTIONS(1454), + [anon_sym_o_GT] = ACTIONS(1454), + [anon_sym_err_PLUSout_GT] = ACTIONS(1454), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1454), + [anon_sym_o_PLUSe_GT] = ACTIONS(1454), + [anon_sym_e_PLUSo_GT] = ACTIONS(1454), + [anon_sym_err_GT_GT] = ACTIONS(1456), + [anon_sym_out_GT_GT] = ACTIONS(1456), + [anon_sym_e_GT_GT] = ACTIONS(1456), + [anon_sym_o_GT_GT] = ACTIONS(1456), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1456), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1456), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1456), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1456), [anon_sym_POUND] = ACTIONS(3), }, [STATE(421)] = { [sym_comment] = STATE(421), - [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_RPAREN] = ACTIONS(1525), - [anon_sym_GT2] = ACTIONS(1523), - [anon_sym_DASH2] = ACTIONS(1525), - [anon_sym_LBRACE] = ACTIONS(1525), - [anon_sym_RBRACE] = ACTIONS(1525), - [anon_sym_EQ_GT] = ACTIONS(1525), - [anon_sym_STAR2] = ACTIONS(1523), - [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(1523), - [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(1523), - [anon_sym_mod2] = ACTIONS(1525), - [anon_sym_SLASH_SLASH2] = ACTIONS(1525), - [anon_sym_PLUS2] = ACTIONS(1523), - [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(1523), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1525), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1525), - [anon_sym_COLON2] = ACTIONS(1525), - [anon_sym_QMARK2] = ACTIONS(1525), - [anon_sym_BANG] = ACTIONS(1523), - [anon_sym_DOT2] = ACTIONS(1523), - [anon_sym_err_GT] = ACTIONS(1523), - [anon_sym_out_GT] = ACTIONS(1523), - [anon_sym_e_GT] = ACTIONS(1523), - [anon_sym_o_GT] = ACTIONS(1523), - [anon_sym_err_PLUSout_GT] = ACTIONS(1523), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1523), - [anon_sym_o_PLUSe_GT] = ACTIONS(1523), - [anon_sym_e_PLUSo_GT] = ACTIONS(1523), - [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_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_RPAREN] = ACTIONS(1514), + [anon_sym_GT2] = ACTIONS(1512), + [anon_sym_DASH2] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(1514), + [anon_sym_RBRACE] = ACTIONS(1514), + [anon_sym_EQ_GT] = ACTIONS(1514), + [anon_sym_STAR2] = ACTIONS(1512), + [anon_sym_and2] = ACTIONS(1514), + [anon_sym_xor2] = ACTIONS(1514), + [anon_sym_or2] = ACTIONS(1514), + [anon_sym_not_DASHin2] = ACTIONS(1514), + [anon_sym_has2] = ACTIONS(1514), + [anon_sym_not_DASHhas2] = ACTIONS(1514), + [anon_sym_starts_DASHwith2] = ACTIONS(1514), + [anon_sym_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(1512), + [anon_sym_LT_EQ2] = ACTIONS(1514), + [anon_sym_GT_EQ2] = ACTIONS(1514), + [anon_sym_EQ_TILDE2] = ACTIONS(1514), + [anon_sym_BANG_TILDE2] = ACTIONS(1514), + [anon_sym_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(1512), + [anon_sym_mod2] = ACTIONS(1514), + [anon_sym_SLASH_SLASH2] = ACTIONS(1514), + [anon_sym_PLUS2] = ACTIONS(1512), + [anon_sym_bit_DASHshl2] = ACTIONS(1514), + [anon_sym_bit_DASHshr2] = ACTIONS(1514), + [anon_sym_bit_DASHand2] = ACTIONS(1514), + [anon_sym_bit_DASHxor2] = ACTIONS(1514), + [anon_sym_bit_DASHor2] = ACTIONS(1514), + [anon_sym_DOT_DOT2] = ACTIONS(1512), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1514), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1514), + [anon_sym_COLON2] = ACTIONS(1514), + [anon_sym_QMARK2] = ACTIONS(1514), + [anon_sym_BANG] = ACTIONS(1512), + [anon_sym_DOT2] = ACTIONS(1512), + [anon_sym_err_GT] = ACTIONS(1512), + [anon_sym_out_GT] = ACTIONS(1512), + [anon_sym_e_GT] = ACTIONS(1512), + [anon_sym_o_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT] = ACTIONS(1512), + [anon_sym_err_GT_GT] = ACTIONS(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), [anon_sym_POUND] = ACTIONS(3), }, [STATE(422)] = { @@ -81083,6 +81922,310 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(423)] = { [sym_comment] = STATE(423), + [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_QMARK2] = ACTIONS(1522), + [anon_sym_BANG] = 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(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(424)] = { + [sym_comment] = STATE(424), + [anon_sym_in] = ACTIONS(1502), + [sym__newline] = ACTIONS(1502), + [anon_sym_SEMI] = ACTIONS(1502), + [anon_sym_PIPE] = ACTIONS(1502), + [anon_sym_err_GT_PIPE] = ACTIONS(1502), + [anon_sym_out_GT_PIPE] = ACTIONS(1502), + [anon_sym_e_GT_PIPE] = ACTIONS(1502), + [anon_sym_o_GT_PIPE] = ACTIONS(1502), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1502), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1502), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1502), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1502), + [anon_sym_RPAREN] = ACTIONS(1502), + [anon_sym_GT2] = ACTIONS(1500), + [anon_sym_DASH2] = ACTIONS(1502), + [anon_sym_LBRACE] = ACTIONS(1502), + [anon_sym_RBRACE] = ACTIONS(1502), + [anon_sym_EQ_GT] = ACTIONS(1502), + [anon_sym_STAR2] = ACTIONS(1500), + [anon_sym_and2] = ACTIONS(1502), + [anon_sym_xor2] = ACTIONS(1502), + [anon_sym_or2] = ACTIONS(1502), + [anon_sym_not_DASHin2] = ACTIONS(1502), + [anon_sym_has2] = ACTIONS(1502), + [anon_sym_not_DASHhas2] = ACTIONS(1502), + [anon_sym_starts_DASHwith2] = ACTIONS(1502), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1502), + [anon_sym_ends_DASHwith2] = ACTIONS(1502), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1502), + [anon_sym_EQ_EQ2] = ACTIONS(1502), + [anon_sym_BANG_EQ2] = ACTIONS(1502), + [anon_sym_LT2] = ACTIONS(1500), + [anon_sym_LT_EQ2] = ACTIONS(1502), + [anon_sym_GT_EQ2] = ACTIONS(1502), + [anon_sym_EQ_TILDE2] = ACTIONS(1502), + [anon_sym_BANG_TILDE2] = ACTIONS(1502), + [anon_sym_like2] = ACTIONS(1502), + [anon_sym_not_DASHlike2] = ACTIONS(1502), + [anon_sym_STAR_STAR2] = ACTIONS(1502), + [anon_sym_PLUS_PLUS2] = ACTIONS(1502), + [anon_sym_SLASH2] = ACTIONS(1500), + [anon_sym_mod2] = ACTIONS(1502), + [anon_sym_SLASH_SLASH2] = ACTIONS(1502), + [anon_sym_PLUS2] = ACTIONS(1500), + [anon_sym_bit_DASHshl2] = ACTIONS(1502), + [anon_sym_bit_DASHshr2] = ACTIONS(1502), + [anon_sym_bit_DASHand2] = ACTIONS(1502), + [anon_sym_bit_DASHxor2] = ACTIONS(1502), + [anon_sym_bit_DASHor2] = ACTIONS(1502), + [anon_sym_DOT_DOT2] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1502), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1502), + [anon_sym_COLON2] = ACTIONS(1502), + [anon_sym_QMARK2] = ACTIONS(1502), + [anon_sym_BANG] = ACTIONS(1500), + [anon_sym_DOT2] = ACTIONS(1500), + [anon_sym_err_GT] = ACTIONS(1500), + [anon_sym_out_GT] = ACTIONS(1500), + [anon_sym_e_GT] = ACTIONS(1500), + [anon_sym_o_GT] = ACTIONS(1500), + [anon_sym_err_PLUSout_GT] = ACTIONS(1500), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1500), + [anon_sym_o_PLUSe_GT] = ACTIONS(1500), + [anon_sym_e_PLUSo_GT] = ACTIONS(1500), + [anon_sym_err_GT_GT] = ACTIONS(1502), + [anon_sym_out_GT_GT] = ACTIONS(1502), + [anon_sym_e_GT_GT] = ACTIONS(1502), + [anon_sym_o_GT_GT] = ACTIONS(1502), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1502), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1502), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1502), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1502), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(425)] = { + [sym_comment] = STATE(425), + [anon_sym_if] = 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_RPAREN] = ACTIONS(1462), + [anon_sym_GT2] = ACTIONS(1460), + [anon_sym_DASH2] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1462), + [anon_sym_RBRACE] = ACTIONS(1462), + [anon_sym_EQ_GT] = ACTIONS(1462), + [anon_sym_STAR2] = ACTIONS(1460), + [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(1460), + [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(1460), + [anon_sym_mod2] = ACTIONS(1462), + [anon_sym_SLASH_SLASH2] = ACTIONS(1462), + [anon_sym_PLUS2] = ACTIONS(1460), + [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(1460), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1462), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1462), + [anon_sym_COLON2] = ACTIONS(1462), + [anon_sym_QMARK2] = ACTIONS(1707), + [anon_sym_DOT2] = ACTIONS(1460), + [anon_sym_err_GT] = ACTIONS(1460), + [anon_sym_out_GT] = ACTIONS(1460), + [anon_sym_e_GT] = ACTIONS(1460), + [anon_sym_o_GT] = ACTIONS(1460), + [anon_sym_err_PLUSout_GT] = ACTIONS(1460), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1460), + [anon_sym_o_PLUSe_GT] = ACTIONS(1460), + [anon_sym_e_PLUSo_GT] = ACTIONS(1460), + [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(3), + }, + [STATE(426)] = { + [sym__expr_parenthesized_immediate] = STATE(919), + [sym__immediate_decimal] = STATE(920), + [sym_val_variable] = STATE(919), + [sym_comment] = STATE(426), + [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(1685), + [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(1687), + [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), + [anon_sym_DOT] = ACTIONS(1709), + [aux_sym__immediate_decimal_token1] = ACTIONS(1691), + [aux_sym__immediate_decimal_token2] = ACTIONS(1691), + [aux_sym__immediate_decimal_token3] = ACTIONS(1693), + [aux_sym__immediate_decimal_token4] = ACTIONS(1693), + [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(427)] = { + [sym_comment] = STATE(427), [anon_sym_in] = ACTIONS(741), [sym__newline] = ACTIONS(741), [anon_sym_SEMI] = ACTIONS(741), @@ -81134,8 +82277,8 @@ 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_token1] = ACTIONS(1707), - [aux_sym__immediate_decimal_token5] = ACTIONS(1709), + [aux_sym__immediate_decimal_token1] = ACTIONS(1711), + [aux_sym__immediate_decimal_token5] = ACTIONS(1713), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_err_GT] = ACTIONS(739), @@ -81157,238 +82300,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_pattern] = ACTIONS(739), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(424)] = { - [sym_comment] = STATE(424), - [ts_builtin_sym_end] = ACTIONS(1549), - [anon_sym_EQ] = ACTIONS(1547), - [anon_sym_PLUS_EQ] = ACTIONS(1549), - [anon_sym_DASH_EQ] = ACTIONS(1549), - [anon_sym_STAR_EQ] = ACTIONS(1549), - [anon_sym_SLASH_EQ] = ACTIONS(1549), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1549), - [anon_sym_in] = ACTIONS(1549), - [sym__newline] = ACTIONS(1549), - [anon_sym_SEMI] = ACTIONS(1549), - [anon_sym_PIPE] = ACTIONS(1549), - [anon_sym_err_GT_PIPE] = ACTIONS(1549), - [anon_sym_out_GT_PIPE] = ACTIONS(1549), - [anon_sym_e_GT_PIPE] = ACTIONS(1549), - [anon_sym_o_GT_PIPE] = ACTIONS(1549), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1549), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1549), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1549), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1549), - [anon_sym_GT2] = ACTIONS(1547), - [anon_sym_DASH2] = ACTIONS(1547), - [anon_sym_STAR2] = ACTIONS(1547), - [anon_sym_and2] = ACTIONS(1549), - [anon_sym_xor2] = ACTIONS(1549), - [anon_sym_or2] = ACTIONS(1549), - [anon_sym_not_DASHin2] = ACTIONS(1549), - [anon_sym_has2] = ACTIONS(1549), - [anon_sym_not_DASHhas2] = ACTIONS(1549), - [anon_sym_starts_DASHwith2] = ACTIONS(1549), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1549), - [anon_sym_ends_DASHwith2] = ACTIONS(1549), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1549), - [anon_sym_EQ_EQ2] = ACTIONS(1549), - [anon_sym_BANG_EQ2] = ACTIONS(1549), - [anon_sym_LT2] = ACTIONS(1547), - [anon_sym_LT_EQ2] = ACTIONS(1549), - [anon_sym_GT_EQ2] = ACTIONS(1549), - [anon_sym_EQ_TILDE2] = ACTIONS(1549), - [anon_sym_BANG_TILDE2] = ACTIONS(1549), - [anon_sym_like2] = ACTIONS(1549), - [anon_sym_not_DASHlike2] = ACTIONS(1549), - [anon_sym_STAR_STAR2] = ACTIONS(1549), - [anon_sym_PLUS_PLUS2] = ACTIONS(1547), - [anon_sym_SLASH2] = ACTIONS(1547), - [anon_sym_mod2] = ACTIONS(1549), - [anon_sym_SLASH_SLASH2] = ACTIONS(1549), - [anon_sym_PLUS2] = ACTIONS(1547), - [anon_sym_bit_DASHshl2] = ACTIONS(1549), - [anon_sym_bit_DASHshr2] = ACTIONS(1549), - [anon_sym_bit_DASHand2] = ACTIONS(1549), - [anon_sym_bit_DASHxor2] = ACTIONS(1549), - [anon_sym_bit_DASHor2] = ACTIONS(1549), - [anon_sym_DOT_DOT2] = ACTIONS(1547), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1549), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1549), - [anon_sym_DOT2] = ACTIONS(1547), - [anon_sym_err_GT] = ACTIONS(1547), - [anon_sym_out_GT] = ACTIONS(1547), - [anon_sym_e_GT] = ACTIONS(1547), - [anon_sym_o_GT] = ACTIONS(1547), - [anon_sym_err_PLUSout_GT] = ACTIONS(1547), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1547), - [anon_sym_o_PLUSe_GT] = ACTIONS(1547), - [anon_sym_e_PLUSo_GT] = ACTIONS(1547), - [anon_sym_err_GT_GT] = ACTIONS(1549), - [anon_sym_out_GT_GT] = ACTIONS(1549), - [anon_sym_e_GT_GT] = ACTIONS(1549), - [anon_sym_o_GT_GT] = ACTIONS(1549), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1549), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1549), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1549), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1549), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(425)] = { - [sym__expr_parenthesized_immediate] = STATE(1299), - [sym__immediate_decimal] = STATE(1062), - [sym_val_variable] = STATE(1299), - [sym_comment] = STATE(425), - [ts_builtin_sym_end] = ACTIONS(1598), - [anon_sym_in] = ACTIONS(1598), - [sym__newline] = ACTIONS(1598), - [anon_sym_SEMI] = ACTIONS(1598), - [anon_sym_PIPE] = ACTIONS(1598), - [anon_sym_err_GT_PIPE] = ACTIONS(1598), - [anon_sym_out_GT_PIPE] = ACTIONS(1598), - [anon_sym_e_GT_PIPE] = ACTIONS(1598), - [anon_sym_o_GT_PIPE] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1598), - [anon_sym_DOLLAR] = ACTIONS(1685), - [anon_sym_GT2] = ACTIONS(1602), - [anon_sym_DASH2] = ACTIONS(1602), - [anon_sym_STAR2] = ACTIONS(1602), - [anon_sym_and2] = ACTIONS(1598), - [anon_sym_xor2] = ACTIONS(1598), - [anon_sym_or2] = ACTIONS(1598), - [anon_sym_not_DASHin2] = ACTIONS(1598), - [anon_sym_has2] = ACTIONS(1598), - [anon_sym_not_DASHhas2] = ACTIONS(1598), - [anon_sym_starts_DASHwith2] = ACTIONS(1598), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1598), - [anon_sym_ends_DASHwith2] = ACTIONS(1598), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1598), - [anon_sym_EQ_EQ2] = ACTIONS(1598), - [anon_sym_BANG_EQ2] = ACTIONS(1598), - [anon_sym_LT2] = ACTIONS(1602), - [anon_sym_LT_EQ2] = ACTIONS(1598), - [anon_sym_GT_EQ2] = ACTIONS(1598), - [anon_sym_EQ_TILDE2] = ACTIONS(1598), - [anon_sym_BANG_TILDE2] = ACTIONS(1598), - [anon_sym_like2] = ACTIONS(1598), - [anon_sym_not_DASHlike2] = ACTIONS(1598), - [anon_sym_LPAREN2] = ACTIONS(1687), - [anon_sym_STAR_STAR2] = ACTIONS(1598), - [anon_sym_PLUS_PLUS2] = ACTIONS(1598), - [anon_sym_SLASH2] = ACTIONS(1602), - [anon_sym_mod2] = ACTIONS(1598), - [anon_sym_SLASH_SLASH2] = ACTIONS(1598), - [anon_sym_PLUS2] = ACTIONS(1602), - [anon_sym_bit_DASHshl2] = ACTIONS(1598), - [anon_sym_bit_DASHshr2] = ACTIONS(1598), - [anon_sym_bit_DASHand2] = ACTIONS(1598), - [anon_sym_bit_DASHxor2] = ACTIONS(1598), - [anon_sym_bit_DASHor2] = ACTIONS(1598), - [aux_sym__immediate_decimal_token1] = ACTIONS(1697), - [aux_sym__immediate_decimal_token2] = ACTIONS(1697), - [aux_sym__immediate_decimal_token3] = ACTIONS(1699), - [aux_sym__immediate_decimal_token4] = ACTIONS(1699), - [anon_sym_err_GT] = ACTIONS(1602), - [anon_sym_out_GT] = ACTIONS(1602), - [anon_sym_e_GT] = ACTIONS(1602), - [anon_sym_o_GT] = ACTIONS(1602), - [anon_sym_err_PLUSout_GT] = ACTIONS(1602), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1602), - [anon_sym_o_PLUSe_GT] = ACTIONS(1602), - [anon_sym_e_PLUSo_GT] = ACTIONS(1602), - [anon_sym_err_GT_GT] = ACTIONS(1598), - [anon_sym_out_GT_GT] = ACTIONS(1598), - [anon_sym_e_GT_GT] = ACTIONS(1598), - [anon_sym_o_GT_GT] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1598), - [sym__unquoted_pattern] = ACTIONS(1635), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(426)] = { - [sym_comment] = STATE(426), - [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_RPAREN] = ACTIONS(1521), - [anon_sym_GT2] = ACTIONS(1519), - [anon_sym_DASH2] = ACTIONS(1521), - [anon_sym_LBRACE] = ACTIONS(1521), - [anon_sym_RBRACE] = ACTIONS(1521), - [anon_sym_EQ_GT] = ACTIONS(1521), - [anon_sym_STAR2] = ACTIONS(1519), - [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(1519), - [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(1519), - [anon_sym_mod2] = ACTIONS(1521), - [anon_sym_SLASH_SLASH2] = ACTIONS(1521), - [anon_sym_PLUS2] = ACTIONS(1519), - [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(1519), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1521), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1521), - [anon_sym_COLON2] = ACTIONS(1521), - [anon_sym_QMARK2] = ACTIONS(1521), - [anon_sym_BANG] = ACTIONS(1519), - [anon_sym_DOT2] = ACTIONS(1519), - [anon_sym_err_GT] = ACTIONS(1519), - [anon_sym_out_GT] = ACTIONS(1519), - [anon_sym_e_GT] = ACTIONS(1519), - [anon_sym_o_GT] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT] = ACTIONS(1519), - [anon_sym_err_GT_GT] = ACTIONS(1521), - [anon_sym_out_GT_GT] = ACTIONS(1521), - [anon_sym_e_GT_GT] = ACTIONS(1521), - [anon_sym_o_GT_GT] = ACTIONS(1521), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1521), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1521), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1521), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1521), + [STATE(428)] = { + [sym_path] = STATE(458), + [sym_comment] = STATE(428), + [aux_sym__where_predicate_lhs_repeat1] = STATE(431), + [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(1651), + [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(427)] = { - [sym_path] = STATE(458), - [sym_comment] = STATE(427), - [aux_sym__where_predicate_lhs_repeat1] = STATE(437), + [STATE(429)] = { + [sym_comment] = STATE(429), [anon_sym_in] = ACTIONS(1506), [sym__newline] = ACTIONS(1506), [anon_sym_SEMI] = ACTIONS(1506), @@ -81442,7 +82431,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_EQ2] = ACTIONS(1506), [anon_sym_DOT_DOT_LT2] = ACTIONS(1506), [anon_sym_COLON2] = ACTIONS(1506), - [anon_sym_DOT2] = ACTIONS(1649), + [anon_sym_QMARK2] = ACTIONS(1506), + [anon_sym_BANG] = ACTIONS(1504), + [anon_sym_DOT2] = ACTIONS(1504), [anon_sym_err_GT] = ACTIONS(1504), [anon_sym_out_GT] = ACTIONS(1504), [anon_sym_e_GT] = ACTIONS(1504), @@ -81461,918 +82452,841 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1506), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(428)] = { - [sym_comment] = STATE(428), - [ts_builtin_sym_end] = ACTIONS(1582), - [anon_sym_EQ] = ACTIONS(1580), - [anon_sym_PLUS_EQ] = ACTIONS(1582), - [anon_sym_DASH_EQ] = ACTIONS(1582), - [anon_sym_STAR_EQ] = ACTIONS(1582), - [anon_sym_SLASH_EQ] = ACTIONS(1582), - [anon_sym_PLUS_PLUS_EQ] = 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_COLON] = ACTIONS(1582), - [anon_sym_GT2] = ACTIONS(1580), - [anon_sym_DASH2] = ACTIONS(1580), - [anon_sym_STAR2] = ACTIONS(1580), - [anon_sym_and2] = ACTIONS(1582), - [anon_sym_xor2] = ACTIONS(1582), - [anon_sym_or2] = ACTIONS(1582), - [anon_sym_not_DASHin2] = ACTIONS(1582), - [anon_sym_has2] = ACTIONS(1582), - [anon_sym_not_DASHhas2] = ACTIONS(1582), - [anon_sym_starts_DASHwith2] = ACTIONS(1582), - [anon_sym_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(1580), - [anon_sym_LT_EQ2] = ACTIONS(1582), - [anon_sym_GT_EQ2] = ACTIONS(1582), - [anon_sym_EQ_TILDE2] = ACTIONS(1582), - [anon_sym_BANG_TILDE2] = ACTIONS(1582), - [anon_sym_like2] = ACTIONS(1582), - [anon_sym_not_DASHlike2] = ACTIONS(1582), - [anon_sym_STAR_STAR2] = ACTIONS(1582), - [anon_sym_PLUS_PLUS2] = ACTIONS(1580), - [anon_sym_SLASH2] = ACTIONS(1580), - [anon_sym_mod2] = ACTIONS(1582), - [anon_sym_SLASH_SLASH2] = ACTIONS(1582), - [anon_sym_PLUS2] = ACTIONS(1580), - [anon_sym_bit_DASHshl2] = ACTIONS(1582), - [anon_sym_bit_DASHshr2] = ACTIONS(1582), - [anon_sym_bit_DASHand2] = ACTIONS(1582), - [anon_sym_bit_DASHxor2] = ACTIONS(1582), - [anon_sym_bit_DASHor2] = ACTIONS(1582), - [anon_sym_DOT_DOT2] = ACTIONS(1580), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1582), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1582), - [anon_sym_err_GT] = ACTIONS(1580), - [anon_sym_out_GT] = ACTIONS(1580), - [anon_sym_e_GT] = ACTIONS(1580), - [anon_sym_o_GT] = ACTIONS(1580), - [anon_sym_err_PLUSout_GT] = ACTIONS(1580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1580), - [anon_sym_o_PLUSe_GT] = ACTIONS(1580), - [anon_sym_e_PLUSo_GT] = ACTIONS(1580), - [anon_sym_err_GT_GT] = ACTIONS(1582), - [anon_sym_out_GT_GT] = ACTIONS(1582), - [anon_sym_e_GT_GT] = ACTIONS(1582), - [anon_sym_o_GT_GT] = ACTIONS(1582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1582), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(429)] = { - [sym_comment] = STATE(429), - [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_RPAREN] = ACTIONS(1533), - [anon_sym_GT2] = ACTIONS(1531), - [anon_sym_DASH2] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1533), - [anon_sym_RBRACE] = ACTIONS(1533), - [anon_sym_EQ_GT] = ACTIONS(1533), - [anon_sym_STAR2] = ACTIONS(1531), - [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(1531), - [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(1531), - [anon_sym_mod2] = ACTIONS(1533), - [anon_sym_SLASH_SLASH2] = ACTIONS(1533), - [anon_sym_PLUS2] = ACTIONS(1531), - [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(1531), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1533), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1533), - [anon_sym_COLON2] = ACTIONS(1533), - [anon_sym_QMARK2] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_DOT2] = ACTIONS(1531), - [anon_sym_err_GT] = ACTIONS(1531), - [anon_sym_out_GT] = ACTIONS(1531), - [anon_sym_e_GT] = ACTIONS(1531), - [anon_sym_o_GT] = ACTIONS(1531), - [anon_sym_err_PLUSout_GT] = ACTIONS(1531), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1531), - [anon_sym_o_PLUSe_GT] = ACTIONS(1531), - [anon_sym_e_PLUSo_GT] = ACTIONS(1531), - [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(3), - }, [STATE(430)] = { [sym_comment] = STATE(430), - [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_QMARK2] = ACTIONS(1537), - [anon_sym_BANG] = 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(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), + [ts_builtin_sym_end] = ACTIONS(1553), + [anon_sym_EQ] = ACTIONS(1551), + [anon_sym_PLUS_EQ] = ACTIONS(1553), + [anon_sym_DASH_EQ] = ACTIONS(1553), + [anon_sym_STAR_EQ] = ACTIONS(1553), + [anon_sym_SLASH_EQ] = ACTIONS(1553), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1553), + [anon_sym_in] = ACTIONS(1553), + [sym__newline] = ACTIONS(1553), + [anon_sym_SEMI] = ACTIONS(1553), + [anon_sym_PIPE] = ACTIONS(1553), + [anon_sym_err_GT_PIPE] = ACTIONS(1553), + [anon_sym_out_GT_PIPE] = ACTIONS(1553), + [anon_sym_e_GT_PIPE] = ACTIONS(1553), + [anon_sym_o_GT_PIPE] = ACTIONS(1553), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1553), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1553), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1553), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1553), + [anon_sym_GT2] = ACTIONS(1551), + [anon_sym_DASH2] = ACTIONS(1551), + [anon_sym_STAR2] = ACTIONS(1551), + [anon_sym_and2] = ACTIONS(1553), + [anon_sym_xor2] = ACTIONS(1553), + [anon_sym_or2] = ACTIONS(1553), + [anon_sym_not_DASHin2] = ACTIONS(1553), + [anon_sym_has2] = ACTIONS(1553), + [anon_sym_not_DASHhas2] = ACTIONS(1553), + [anon_sym_starts_DASHwith2] = ACTIONS(1553), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1553), + [anon_sym_ends_DASHwith2] = ACTIONS(1553), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1553), + [anon_sym_EQ_EQ2] = ACTIONS(1553), + [anon_sym_BANG_EQ2] = ACTIONS(1553), + [anon_sym_LT2] = ACTIONS(1551), + [anon_sym_LT_EQ2] = ACTIONS(1553), + [anon_sym_GT_EQ2] = ACTIONS(1553), + [anon_sym_EQ_TILDE2] = ACTIONS(1553), + [anon_sym_BANG_TILDE2] = ACTIONS(1553), + [anon_sym_like2] = ACTIONS(1553), + [anon_sym_not_DASHlike2] = ACTIONS(1553), + [anon_sym_STAR_STAR2] = ACTIONS(1553), + [anon_sym_PLUS_PLUS2] = ACTIONS(1551), + [anon_sym_SLASH2] = ACTIONS(1551), + [anon_sym_mod2] = ACTIONS(1553), + [anon_sym_SLASH_SLASH2] = ACTIONS(1553), + [anon_sym_PLUS2] = ACTIONS(1551), + [anon_sym_bit_DASHshl2] = ACTIONS(1553), + [anon_sym_bit_DASHshr2] = ACTIONS(1553), + [anon_sym_bit_DASHand2] = ACTIONS(1553), + [anon_sym_bit_DASHxor2] = ACTIONS(1553), + [anon_sym_bit_DASHor2] = ACTIONS(1553), + [anon_sym_DOT_DOT2] = ACTIONS(1551), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1553), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1553), + [anon_sym_DOT2] = ACTIONS(1551), + [anon_sym_err_GT] = ACTIONS(1551), + [anon_sym_out_GT] = ACTIONS(1551), + [anon_sym_e_GT] = ACTIONS(1551), + [anon_sym_o_GT] = ACTIONS(1551), + [anon_sym_err_PLUSout_GT] = ACTIONS(1551), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1551), + [anon_sym_o_PLUSe_GT] = ACTIONS(1551), + [anon_sym_e_PLUSo_GT] = ACTIONS(1551), + [anon_sym_err_GT_GT] = ACTIONS(1553), + [anon_sym_out_GT_GT] = ACTIONS(1553), + [anon_sym_e_GT_GT] = ACTIONS(1553), + [anon_sym_o_GT_GT] = ACTIONS(1553), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1553), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1553), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1553), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1553), [anon_sym_POUND] = ACTIONS(3), }, [STATE(431)] = { + [sym_path] = STATE(458), [sym_comment] = STATE(431), - [anon_sym_EQ] = ACTIONS(1612), - [anon_sym_PLUS_EQ] = ACTIONS(1711), - [anon_sym_DASH_EQ] = ACTIONS(1711), - [anon_sym_STAR_EQ] = ACTIONS(1711), - [anon_sym_SLASH_EQ] = ACTIONS(1711), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1711), - [anon_sym_in] = ACTIONS(1713), - [sym__newline] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1713), - [anon_sym_err_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_GT_PIPE] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), - [anon_sym_GT2] = ACTIONS(1614), - [anon_sym_DASH2] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(1713), - [anon_sym_STAR2] = ACTIONS(1614), - [anon_sym_and2] = ACTIONS(1713), - [anon_sym_xor2] = ACTIONS(1713), - [anon_sym_or2] = ACTIONS(1713), - [anon_sym_not_DASHin2] = ACTIONS(1713), - [anon_sym_has2] = ACTIONS(1713), - [anon_sym_not_DASHhas2] = ACTIONS(1713), - [anon_sym_starts_DASHwith2] = ACTIONS(1713), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1713), - [anon_sym_ends_DASHwith2] = ACTIONS(1713), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1713), - [anon_sym_EQ_EQ2] = ACTIONS(1713), - [anon_sym_BANG_EQ2] = ACTIONS(1713), - [anon_sym_LT2] = ACTIONS(1614), - [anon_sym_LT_EQ2] = ACTIONS(1713), - [anon_sym_GT_EQ2] = ACTIONS(1713), - [anon_sym_EQ_TILDE2] = ACTIONS(1713), - [anon_sym_BANG_TILDE2] = ACTIONS(1713), - [anon_sym_like2] = ACTIONS(1713), - [anon_sym_not_DASHlike2] = ACTIONS(1713), - [anon_sym_STAR_STAR2] = ACTIONS(1713), - [anon_sym_PLUS_PLUS2] = ACTIONS(1614), - [anon_sym_SLASH2] = ACTIONS(1614), - [anon_sym_mod2] = ACTIONS(1713), - [anon_sym_SLASH_SLASH2] = ACTIONS(1713), - [anon_sym_PLUS2] = ACTIONS(1614), - [anon_sym_bit_DASHshl2] = ACTIONS(1713), - [anon_sym_bit_DASHshr2] = ACTIONS(1713), - [anon_sym_bit_DASHand2] = ACTIONS(1713), - [anon_sym_bit_DASHxor2] = ACTIONS(1713), - [anon_sym_bit_DASHor2] = ACTIONS(1713), - [anon_sym_DOT_DOT2] = ACTIONS(1618), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1620), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1620), - [anon_sym_COLON2] = ACTIONS(1715), - [anon_sym_err_GT] = ACTIONS(1614), - [anon_sym_out_GT] = ACTIONS(1614), - [anon_sym_e_GT] = ACTIONS(1614), - [anon_sym_o_GT] = ACTIONS(1614), - [anon_sym_err_PLUSout_GT] = ACTIONS(1614), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1614), - [anon_sym_o_PLUSe_GT] = ACTIONS(1614), - [anon_sym_e_PLUSo_GT] = ACTIONS(1614), - [anon_sym_err_GT_GT] = ACTIONS(1713), - [anon_sym_out_GT_GT] = ACTIONS(1713), - [anon_sym_e_GT_GT] = ACTIONS(1713), - [anon_sym_o_GT_GT] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), + [aux_sym__where_predicate_lhs_repeat1] = STATE(431), + [anon_sym_in] = ACTIONS(1534), + [sym__newline] = ACTIONS(1534), + [anon_sym_SEMI] = ACTIONS(1534), + [anon_sym_PIPE] = ACTIONS(1534), + [anon_sym_err_GT_PIPE] = ACTIONS(1534), + [anon_sym_out_GT_PIPE] = ACTIONS(1534), + [anon_sym_e_GT_PIPE] = ACTIONS(1534), + [anon_sym_o_GT_PIPE] = ACTIONS(1534), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1534), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1534), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1534), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1534), + [anon_sym_RPAREN] = ACTIONS(1534), + [anon_sym_GT2] = ACTIONS(1532), + [anon_sym_DASH2] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_RBRACE] = ACTIONS(1534), + [anon_sym_EQ_GT] = ACTIONS(1534), + [anon_sym_STAR2] = ACTIONS(1532), + [anon_sym_and2] = ACTIONS(1534), + [anon_sym_xor2] = ACTIONS(1534), + [anon_sym_or2] = ACTIONS(1534), + [anon_sym_not_DASHin2] = ACTIONS(1534), + [anon_sym_has2] = ACTIONS(1534), + [anon_sym_not_DASHhas2] = ACTIONS(1534), + [anon_sym_starts_DASHwith2] = ACTIONS(1534), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1534), + [anon_sym_ends_DASHwith2] = ACTIONS(1534), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1534), + [anon_sym_EQ_EQ2] = ACTIONS(1534), + [anon_sym_BANG_EQ2] = ACTIONS(1534), + [anon_sym_LT2] = ACTIONS(1532), + [anon_sym_LT_EQ2] = ACTIONS(1534), + [anon_sym_GT_EQ2] = ACTIONS(1534), + [anon_sym_EQ_TILDE2] = ACTIONS(1534), + [anon_sym_BANG_TILDE2] = ACTIONS(1534), + [anon_sym_like2] = ACTIONS(1534), + [anon_sym_not_DASHlike2] = ACTIONS(1534), + [anon_sym_STAR_STAR2] = ACTIONS(1534), + [anon_sym_PLUS_PLUS2] = ACTIONS(1534), + [anon_sym_SLASH2] = ACTIONS(1532), + [anon_sym_mod2] = ACTIONS(1534), + [anon_sym_SLASH_SLASH2] = ACTIONS(1534), + [anon_sym_PLUS2] = ACTIONS(1532), + [anon_sym_bit_DASHshl2] = ACTIONS(1534), + [anon_sym_bit_DASHshr2] = ACTIONS(1534), + [anon_sym_bit_DASHand2] = ACTIONS(1534), + [anon_sym_bit_DASHxor2] = ACTIONS(1534), + [anon_sym_bit_DASHor2] = ACTIONS(1534), + [anon_sym_DOT_DOT2] = ACTIONS(1532), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1534), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1534), + [anon_sym_COLON2] = ACTIONS(1534), + [anon_sym_DOT2] = ACTIONS(1715), + [anon_sym_err_GT] = ACTIONS(1532), + [anon_sym_out_GT] = ACTIONS(1532), + [anon_sym_e_GT] = ACTIONS(1532), + [anon_sym_o_GT] = ACTIONS(1532), + [anon_sym_err_PLUSout_GT] = ACTIONS(1532), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1532), + [anon_sym_o_PLUSe_GT] = ACTIONS(1532), + [anon_sym_e_PLUSo_GT] = ACTIONS(1532), + [anon_sym_err_GT_GT] = ACTIONS(1534), + [anon_sym_out_GT_GT] = ACTIONS(1534), + [anon_sym_e_GT_GT] = ACTIONS(1534), + [anon_sym_o_GT_GT] = ACTIONS(1534), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1534), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1534), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1534), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1534), [anon_sym_POUND] = ACTIONS(3), }, [STATE(432)] = { [sym_comment] = STATE(432), - [anon_sym_in] = ACTIONS(1541), - [sym__newline] = ACTIONS(1541), - [anon_sym_SEMI] = ACTIONS(1541), - [anon_sym_PIPE] = ACTIONS(1541), - [anon_sym_err_GT_PIPE] = ACTIONS(1541), - [anon_sym_out_GT_PIPE] = ACTIONS(1541), - [anon_sym_e_GT_PIPE] = ACTIONS(1541), - [anon_sym_o_GT_PIPE] = ACTIONS(1541), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1541), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1541), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1541), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1541), - [anon_sym_RPAREN] = ACTIONS(1541), - [anon_sym_GT2] = ACTIONS(1539), - [anon_sym_DASH2] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_RBRACE] = ACTIONS(1541), - [anon_sym_EQ_GT] = ACTIONS(1541), - [anon_sym_STAR2] = ACTIONS(1539), - [anon_sym_and2] = ACTIONS(1541), - [anon_sym_xor2] = ACTIONS(1541), - [anon_sym_or2] = ACTIONS(1541), - [anon_sym_not_DASHin2] = ACTIONS(1541), - [anon_sym_has2] = ACTIONS(1541), - [anon_sym_not_DASHhas2] = ACTIONS(1541), - [anon_sym_starts_DASHwith2] = ACTIONS(1541), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1541), - [anon_sym_ends_DASHwith2] = ACTIONS(1541), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1541), - [anon_sym_EQ_EQ2] = ACTIONS(1541), - [anon_sym_BANG_EQ2] = ACTIONS(1541), - [anon_sym_LT2] = ACTIONS(1539), - [anon_sym_LT_EQ2] = ACTIONS(1541), - [anon_sym_GT_EQ2] = ACTIONS(1541), - [anon_sym_EQ_TILDE2] = ACTIONS(1541), - [anon_sym_BANG_TILDE2] = ACTIONS(1541), - [anon_sym_like2] = ACTIONS(1541), - [anon_sym_not_DASHlike2] = ACTIONS(1541), - [anon_sym_STAR_STAR2] = ACTIONS(1541), - [anon_sym_PLUS_PLUS2] = ACTIONS(1541), - [anon_sym_SLASH2] = ACTIONS(1539), - [anon_sym_mod2] = ACTIONS(1541), - [anon_sym_SLASH_SLASH2] = ACTIONS(1541), - [anon_sym_PLUS2] = ACTIONS(1539), - [anon_sym_bit_DASHshl2] = ACTIONS(1541), - [anon_sym_bit_DASHshr2] = ACTIONS(1541), - [anon_sym_bit_DASHand2] = ACTIONS(1541), - [anon_sym_bit_DASHxor2] = ACTIONS(1541), - [anon_sym_bit_DASHor2] = ACTIONS(1541), - [anon_sym_DOT_DOT2] = ACTIONS(1539), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1541), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1541), - [anon_sym_COLON2] = ACTIONS(1541), - [anon_sym_QMARK2] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1539), - [anon_sym_DOT2] = ACTIONS(1539), - [anon_sym_err_GT] = ACTIONS(1539), - [anon_sym_out_GT] = ACTIONS(1539), - [anon_sym_e_GT] = ACTIONS(1539), - [anon_sym_o_GT] = ACTIONS(1539), - [anon_sym_err_PLUSout_GT] = ACTIONS(1539), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1539), - [anon_sym_o_PLUSe_GT] = ACTIONS(1539), - [anon_sym_e_PLUSo_GT] = ACTIONS(1539), - [anon_sym_err_GT_GT] = ACTIONS(1541), - [anon_sym_out_GT_GT] = ACTIONS(1541), - [anon_sym_e_GT_GT] = ACTIONS(1541), - [anon_sym_o_GT_GT] = ACTIONS(1541), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1541), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1541), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1541), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1541), + [ts_builtin_sym_end] = ACTIONS(1580), + [anon_sym_EQ] = ACTIONS(1578), + [anon_sym_PLUS_EQ] = ACTIONS(1580), + [anon_sym_DASH_EQ] = ACTIONS(1580), + [anon_sym_STAR_EQ] = ACTIONS(1580), + [anon_sym_SLASH_EQ] = ACTIONS(1580), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1580), + [anon_sym_in] = ACTIONS(1580), + [sym__newline] = ACTIONS(1580), + [anon_sym_SEMI] = ACTIONS(1580), + [anon_sym_PIPE] = ACTIONS(1580), + [anon_sym_err_GT_PIPE] = ACTIONS(1580), + [anon_sym_out_GT_PIPE] = ACTIONS(1580), + [anon_sym_e_GT_PIPE] = ACTIONS(1580), + [anon_sym_o_GT_PIPE] = ACTIONS(1580), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1580), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1580), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1580), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1580), + [anon_sym_COLON] = ACTIONS(1580), + [anon_sym_GT2] = ACTIONS(1578), + [anon_sym_DASH2] = ACTIONS(1578), + [anon_sym_STAR2] = ACTIONS(1578), + [anon_sym_and2] = ACTIONS(1580), + [anon_sym_xor2] = ACTIONS(1580), + [anon_sym_or2] = ACTIONS(1580), + [anon_sym_not_DASHin2] = ACTIONS(1580), + [anon_sym_has2] = ACTIONS(1580), + [anon_sym_not_DASHhas2] = ACTIONS(1580), + [anon_sym_starts_DASHwith2] = ACTIONS(1580), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1580), + [anon_sym_ends_DASHwith2] = ACTIONS(1580), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1580), + [anon_sym_EQ_EQ2] = ACTIONS(1580), + [anon_sym_BANG_EQ2] = ACTIONS(1580), + [anon_sym_LT2] = ACTIONS(1578), + [anon_sym_LT_EQ2] = ACTIONS(1580), + [anon_sym_GT_EQ2] = ACTIONS(1580), + [anon_sym_EQ_TILDE2] = ACTIONS(1580), + [anon_sym_BANG_TILDE2] = ACTIONS(1580), + [anon_sym_like2] = ACTIONS(1580), + [anon_sym_not_DASHlike2] = ACTIONS(1580), + [anon_sym_STAR_STAR2] = ACTIONS(1580), + [anon_sym_PLUS_PLUS2] = ACTIONS(1578), + [anon_sym_SLASH2] = ACTIONS(1578), + [anon_sym_mod2] = ACTIONS(1580), + [anon_sym_SLASH_SLASH2] = ACTIONS(1580), + [anon_sym_PLUS2] = ACTIONS(1578), + [anon_sym_bit_DASHshl2] = ACTIONS(1580), + [anon_sym_bit_DASHshr2] = ACTIONS(1580), + [anon_sym_bit_DASHand2] = ACTIONS(1580), + [anon_sym_bit_DASHxor2] = ACTIONS(1580), + [anon_sym_bit_DASHor2] = ACTIONS(1580), + [anon_sym_DOT_DOT2] = ACTIONS(1578), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1580), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1580), + [anon_sym_err_GT] = ACTIONS(1578), + [anon_sym_out_GT] = ACTIONS(1578), + [anon_sym_e_GT] = ACTIONS(1578), + [anon_sym_o_GT] = ACTIONS(1578), + [anon_sym_err_PLUSout_GT] = ACTIONS(1578), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1578), + [anon_sym_o_PLUSe_GT] = ACTIONS(1578), + [anon_sym_e_PLUSo_GT] = ACTIONS(1578), + [anon_sym_err_GT_GT] = ACTIONS(1580), + [anon_sym_out_GT_GT] = ACTIONS(1580), + [anon_sym_e_GT_GT] = ACTIONS(1580), + [anon_sym_o_GT_GT] = ACTIONS(1580), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1580), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1580), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1580), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1580), [anon_sym_POUND] = ACTIONS(3), }, [STATE(433)] = { [sym_comment] = STATE(433), - [ts_builtin_sym_end] = ACTIONS(1564), - [anon_sym_EQ] = ACTIONS(1562), - [anon_sym_PLUS_EQ] = ACTIONS(1564), - [anon_sym_DASH_EQ] = ACTIONS(1564), - [anon_sym_STAR_EQ] = ACTIONS(1564), - [anon_sym_SLASH_EQ] = ACTIONS(1564), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1564), - [anon_sym_in] = ACTIONS(1564), - [sym__newline] = ACTIONS(1564), - [anon_sym_SEMI] = ACTIONS(1564), - [anon_sym_PIPE] = ACTIONS(1564), - [anon_sym_err_GT_PIPE] = ACTIONS(1564), - [anon_sym_out_GT_PIPE] = ACTIONS(1564), - [anon_sym_e_GT_PIPE] = ACTIONS(1564), - [anon_sym_o_GT_PIPE] = ACTIONS(1564), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1564), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1564), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1564), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1564), - [anon_sym_GT2] = ACTIONS(1562), - [anon_sym_DASH2] = ACTIONS(1562), - [anon_sym_STAR2] = ACTIONS(1562), - [anon_sym_and2] = ACTIONS(1564), - [anon_sym_xor2] = ACTIONS(1564), - [anon_sym_or2] = ACTIONS(1564), - [anon_sym_not_DASHin2] = ACTIONS(1564), - [anon_sym_has2] = ACTIONS(1564), - [anon_sym_not_DASHhas2] = ACTIONS(1564), - [anon_sym_starts_DASHwith2] = ACTIONS(1564), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1564), - [anon_sym_ends_DASHwith2] = ACTIONS(1564), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1564), - [anon_sym_EQ_EQ2] = ACTIONS(1564), - [anon_sym_BANG_EQ2] = ACTIONS(1564), - [anon_sym_LT2] = ACTIONS(1562), - [anon_sym_LT_EQ2] = ACTIONS(1564), - [anon_sym_GT_EQ2] = ACTIONS(1564), - [anon_sym_EQ_TILDE2] = ACTIONS(1564), - [anon_sym_BANG_TILDE2] = ACTIONS(1564), - [anon_sym_like2] = ACTIONS(1564), - [anon_sym_not_DASHlike2] = ACTIONS(1564), - [anon_sym_STAR_STAR2] = ACTIONS(1564), - [anon_sym_PLUS_PLUS2] = ACTIONS(1562), - [anon_sym_SLASH2] = ACTIONS(1562), - [anon_sym_mod2] = ACTIONS(1564), - [anon_sym_SLASH_SLASH2] = ACTIONS(1564), - [anon_sym_PLUS2] = ACTIONS(1562), - [anon_sym_bit_DASHshl2] = ACTIONS(1564), - [anon_sym_bit_DASHshr2] = ACTIONS(1564), - [anon_sym_bit_DASHand2] = ACTIONS(1564), - [anon_sym_bit_DASHxor2] = ACTIONS(1564), - [anon_sym_bit_DASHor2] = ACTIONS(1564), - [anon_sym_DOT_DOT2] = ACTIONS(1562), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1564), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1564), - [anon_sym_DOT2] = ACTIONS(1562), - [anon_sym_err_GT] = ACTIONS(1562), - [anon_sym_out_GT] = ACTIONS(1562), - [anon_sym_e_GT] = ACTIONS(1562), - [anon_sym_o_GT] = ACTIONS(1562), - [anon_sym_err_PLUSout_GT] = ACTIONS(1562), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1562), - [anon_sym_o_PLUSe_GT] = ACTIONS(1562), - [anon_sym_e_PLUSo_GT] = ACTIONS(1562), - [anon_sym_err_GT_GT] = ACTIONS(1564), - [anon_sym_out_GT_GT] = ACTIONS(1564), - [anon_sym_e_GT_GT] = ACTIONS(1564), - [anon_sym_o_GT_GT] = ACTIONS(1564), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1564), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1564), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1564), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1564), + [anon_sym_in] = ACTIONS(1530), + [sym__newline] = ACTIONS(1530), + [anon_sym_SEMI] = ACTIONS(1530), + [anon_sym_PIPE] = ACTIONS(1530), + [anon_sym_err_GT_PIPE] = ACTIONS(1530), + [anon_sym_out_GT_PIPE] = ACTIONS(1530), + [anon_sym_e_GT_PIPE] = ACTIONS(1530), + [anon_sym_o_GT_PIPE] = ACTIONS(1530), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1530), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1530), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1530), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1530), + [anon_sym_RPAREN] = ACTIONS(1530), + [anon_sym_GT2] = ACTIONS(1528), + [anon_sym_DASH2] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(1530), + [anon_sym_RBRACE] = ACTIONS(1530), + [anon_sym_EQ_GT] = ACTIONS(1530), + [anon_sym_STAR2] = ACTIONS(1528), + [anon_sym_and2] = ACTIONS(1530), + [anon_sym_xor2] = ACTIONS(1530), + [anon_sym_or2] = ACTIONS(1530), + [anon_sym_not_DASHin2] = ACTIONS(1530), + [anon_sym_has2] = ACTIONS(1530), + [anon_sym_not_DASHhas2] = ACTIONS(1530), + [anon_sym_starts_DASHwith2] = ACTIONS(1530), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1530), + [anon_sym_ends_DASHwith2] = ACTIONS(1530), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1530), + [anon_sym_EQ_EQ2] = ACTIONS(1530), + [anon_sym_BANG_EQ2] = ACTIONS(1530), + [anon_sym_LT2] = ACTIONS(1528), + [anon_sym_LT_EQ2] = ACTIONS(1530), + [anon_sym_GT_EQ2] = ACTIONS(1530), + [anon_sym_EQ_TILDE2] = ACTIONS(1530), + [anon_sym_BANG_TILDE2] = ACTIONS(1530), + [anon_sym_like2] = ACTIONS(1530), + [anon_sym_not_DASHlike2] = ACTIONS(1530), + [anon_sym_STAR_STAR2] = ACTIONS(1530), + [anon_sym_PLUS_PLUS2] = ACTIONS(1530), + [anon_sym_SLASH2] = ACTIONS(1528), + [anon_sym_mod2] = ACTIONS(1530), + [anon_sym_SLASH_SLASH2] = ACTIONS(1530), + [anon_sym_PLUS2] = ACTIONS(1528), + [anon_sym_bit_DASHshl2] = ACTIONS(1530), + [anon_sym_bit_DASHshr2] = ACTIONS(1530), + [anon_sym_bit_DASHand2] = ACTIONS(1530), + [anon_sym_bit_DASHxor2] = ACTIONS(1530), + [anon_sym_bit_DASHor2] = ACTIONS(1530), + [anon_sym_DOT_DOT2] = ACTIONS(1528), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1530), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1530), + [anon_sym_COLON2] = ACTIONS(1530), + [anon_sym_QMARK2] = ACTIONS(1530), + [anon_sym_BANG] = ACTIONS(1528), + [anon_sym_DOT2] = ACTIONS(1528), + [anon_sym_err_GT] = ACTIONS(1528), + [anon_sym_out_GT] = ACTIONS(1528), + [anon_sym_e_GT] = ACTIONS(1528), + [anon_sym_o_GT] = ACTIONS(1528), + [anon_sym_err_PLUSout_GT] = ACTIONS(1528), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), + [anon_sym_o_PLUSe_GT] = ACTIONS(1528), + [anon_sym_e_PLUSo_GT] = ACTIONS(1528), + [anon_sym_err_GT_GT] = ACTIONS(1530), + [anon_sym_out_GT_GT] = ACTIONS(1530), + [anon_sym_e_GT_GT] = ACTIONS(1530), + [anon_sym_o_GT_GT] = ACTIONS(1530), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1530), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1530), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1530), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1530), [anon_sym_POUND] = ACTIONS(3), }, [STATE(434)] = { [sym_comment] = STATE(434), - [anon_sym_if] = 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_RPAREN] = ACTIONS(1450), - [anon_sym_GT2] = ACTIONS(1448), - [anon_sym_DASH2] = ACTIONS(1450), - [anon_sym_LBRACE] = ACTIONS(1450), - [anon_sym_RBRACE] = ACTIONS(1450), - [anon_sym_EQ_GT] = ACTIONS(1450), - [anon_sym_STAR2] = ACTIONS(1448), - [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(1448), - [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(1448), - [anon_sym_mod2] = ACTIONS(1450), - [anon_sym_SLASH_SLASH2] = ACTIONS(1450), - [anon_sym_PLUS2] = ACTIONS(1448), - [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(1448), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1450), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1450), - [anon_sym_COLON2] = ACTIONS(1450), - [anon_sym_QMARK2] = ACTIONS(1717), - [anon_sym_DOT2] = ACTIONS(1448), - [anon_sym_err_GT] = ACTIONS(1448), - [anon_sym_out_GT] = ACTIONS(1448), - [anon_sym_e_GT] = ACTIONS(1448), - [anon_sym_o_GT] = ACTIONS(1448), - [anon_sym_err_PLUSout_GT] = ACTIONS(1448), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1448), - [anon_sym_o_PLUSe_GT] = ACTIONS(1448), - [anon_sym_e_PLUSo_GT] = ACTIONS(1448), - [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), + [ts_builtin_sym_end] = ACTIONS(1470), + [anon_sym_EQ] = ACTIONS(1468), + [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(1468), + [anon_sym_DASH2] = ACTIONS(1468), + [anon_sym_STAR2] = ACTIONS(1468), + [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(1468), + [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(1468), + [anon_sym_SLASH2] = ACTIONS(1468), + [anon_sym_mod2] = ACTIONS(1470), + [anon_sym_SLASH_SLASH2] = ACTIONS(1470), + [anon_sym_PLUS2] = ACTIONS(1468), + [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(1468), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1470), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1470), + [anon_sym_DOT2] = ACTIONS(1468), + [anon_sym_err_GT] = ACTIONS(1468), + [anon_sym_out_GT] = ACTIONS(1468), + [anon_sym_e_GT] = ACTIONS(1468), + [anon_sym_o_GT] = ACTIONS(1468), + [anon_sym_err_PLUSout_GT] = ACTIONS(1468), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1468), + [anon_sym_o_PLUSe_GT] = ACTIONS(1468), + [anon_sym_e_PLUSo_GT] = ACTIONS(1468), + [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(3), }, [STATE(435)] = { - [sym__expr_parenthesized_immediate] = STATE(929), - [sym__immediate_decimal] = STATE(935), - [sym_val_variable] = STATE(929), + [sym__expr_parenthesized_immediate] = STATE(1288), + [sym__immediate_decimal] = STATE(1031), + [sym_val_variable] = STATE(1288), [sym_comment] = STATE(435), - [ts_builtin_sym_end] = ACTIONS(1598), - [anon_sym_in] = ACTIONS(1598), - [sym__newline] = ACTIONS(1598), - [anon_sym_SEMI] = ACTIONS(1598), - [anon_sym_PIPE] = ACTIONS(1598), - [anon_sym_err_GT_PIPE] = ACTIONS(1598), - [anon_sym_out_GT_PIPE] = ACTIONS(1598), - [anon_sym_e_GT_PIPE] = ACTIONS(1598), - [anon_sym_o_GT_PIPE] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1598), + [ts_builtin_sym_end] = ACTIONS(1681), + [anon_sym_in] = ACTIONS(1681), + [sym__newline] = ACTIONS(1681), + [anon_sym_SEMI] = ACTIONS(1681), + [anon_sym_PIPE] = ACTIONS(1681), + [anon_sym_err_GT_PIPE] = ACTIONS(1681), + [anon_sym_out_GT_PIPE] = ACTIONS(1681), + [anon_sym_e_GT_PIPE] = ACTIONS(1681), + [anon_sym_o_GT_PIPE] = ACTIONS(1681), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1681), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1681), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1681), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1681), [anon_sym_DOLLAR] = ACTIONS(1685), - [anon_sym_GT2] = ACTIONS(1602), - [anon_sym_DASH2] = ACTIONS(1602), - [anon_sym_STAR2] = ACTIONS(1602), - [anon_sym_and2] = ACTIONS(1598), - [anon_sym_xor2] = ACTIONS(1598), - [anon_sym_or2] = ACTIONS(1598), - [anon_sym_not_DASHin2] = ACTIONS(1598), - [anon_sym_has2] = ACTIONS(1598), - [anon_sym_not_DASHhas2] = ACTIONS(1598), - [anon_sym_starts_DASHwith2] = ACTIONS(1598), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1598), - [anon_sym_ends_DASHwith2] = ACTIONS(1598), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1598), - [anon_sym_EQ_EQ2] = ACTIONS(1598), - [anon_sym_BANG_EQ2] = ACTIONS(1598), - [anon_sym_LT2] = ACTIONS(1602), - [anon_sym_LT_EQ2] = ACTIONS(1598), - [anon_sym_GT_EQ2] = ACTIONS(1598), - [anon_sym_EQ_TILDE2] = ACTIONS(1598), - [anon_sym_BANG_TILDE2] = ACTIONS(1598), - [anon_sym_like2] = ACTIONS(1598), - [anon_sym_not_DASHlike2] = ACTIONS(1598), + [anon_sym_GT2] = ACTIONS(1683), + [anon_sym_DASH2] = ACTIONS(1683), + [anon_sym_STAR2] = ACTIONS(1683), + [anon_sym_and2] = ACTIONS(1681), + [anon_sym_xor2] = ACTIONS(1681), + [anon_sym_or2] = ACTIONS(1681), + [anon_sym_not_DASHin2] = ACTIONS(1681), + [anon_sym_has2] = ACTIONS(1681), + [anon_sym_not_DASHhas2] = ACTIONS(1681), + [anon_sym_starts_DASHwith2] = ACTIONS(1681), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1681), + [anon_sym_ends_DASHwith2] = ACTIONS(1681), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1681), + [anon_sym_EQ_EQ2] = ACTIONS(1681), + [anon_sym_BANG_EQ2] = ACTIONS(1681), + [anon_sym_LT2] = ACTIONS(1683), + [anon_sym_LT_EQ2] = ACTIONS(1681), + [anon_sym_GT_EQ2] = ACTIONS(1681), + [anon_sym_EQ_TILDE2] = ACTIONS(1681), + [anon_sym_BANG_TILDE2] = ACTIONS(1681), + [anon_sym_like2] = ACTIONS(1681), + [anon_sym_not_DASHlike2] = ACTIONS(1681), [anon_sym_LPAREN2] = ACTIONS(1687), - [anon_sym_STAR_STAR2] = ACTIONS(1598), - [anon_sym_PLUS_PLUS2] = ACTIONS(1598), - [anon_sym_SLASH2] = ACTIONS(1602), - [anon_sym_mod2] = ACTIONS(1598), - [anon_sym_SLASH_SLASH2] = ACTIONS(1598), - [anon_sym_PLUS2] = ACTIONS(1602), - [anon_sym_bit_DASHshl2] = ACTIONS(1598), - [anon_sym_bit_DASHshr2] = ACTIONS(1598), - [anon_sym_bit_DASHand2] = ACTIONS(1598), - [anon_sym_bit_DASHxor2] = ACTIONS(1598), - [anon_sym_bit_DASHor2] = ACTIONS(1598), - [anon_sym_DOT] = ACTIONS(1719), - [aux_sym__immediate_decimal_token1] = ACTIONS(1691), - [aux_sym__immediate_decimal_token2] = ACTIONS(1691), - [aux_sym__immediate_decimal_token3] = ACTIONS(1693), - [aux_sym__immediate_decimal_token4] = ACTIONS(1693), - [anon_sym_err_GT] = ACTIONS(1602), - [anon_sym_out_GT] = ACTIONS(1602), - [anon_sym_e_GT] = ACTIONS(1602), - [anon_sym_o_GT] = ACTIONS(1602), - [anon_sym_err_PLUSout_GT] = ACTIONS(1602), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1602), - [anon_sym_o_PLUSe_GT] = ACTIONS(1602), - [anon_sym_e_PLUSo_GT] = ACTIONS(1602), - [anon_sym_err_GT_GT] = ACTIONS(1598), - [anon_sym_out_GT_GT] = ACTIONS(1598), - [anon_sym_e_GT_GT] = ACTIONS(1598), - [anon_sym_o_GT_GT] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1598), + [anon_sym_STAR_STAR2] = ACTIONS(1681), + [anon_sym_PLUS_PLUS2] = ACTIONS(1681), + [anon_sym_SLASH2] = ACTIONS(1683), + [anon_sym_mod2] = ACTIONS(1681), + [anon_sym_SLASH_SLASH2] = ACTIONS(1681), + [anon_sym_PLUS2] = ACTIONS(1683), + [anon_sym_bit_DASHshl2] = ACTIONS(1681), + [anon_sym_bit_DASHshr2] = ACTIONS(1681), + [anon_sym_bit_DASHand2] = ACTIONS(1681), + [anon_sym_bit_DASHxor2] = ACTIONS(1681), + [anon_sym_bit_DASHor2] = ACTIONS(1681), + [aux_sym__immediate_decimal_token1] = ACTIONS(1718), + [aux_sym__immediate_decimal_token2] = ACTIONS(1718), + [aux_sym__immediate_decimal_token3] = ACTIONS(1720), + [aux_sym__immediate_decimal_token4] = ACTIONS(1720), + [anon_sym_err_GT] = ACTIONS(1683), + [anon_sym_out_GT] = ACTIONS(1683), + [anon_sym_e_GT] = ACTIONS(1683), + [anon_sym_o_GT] = ACTIONS(1683), + [anon_sym_err_PLUSout_GT] = ACTIONS(1683), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1683), + [anon_sym_o_PLUSe_GT] = ACTIONS(1683), + [anon_sym_e_PLUSo_GT] = ACTIONS(1683), + [anon_sym_err_GT_GT] = ACTIONS(1681), + [anon_sym_out_GT_GT] = ACTIONS(1681), + [anon_sym_e_GT_GT] = ACTIONS(1681), + [anon_sym_o_GT_GT] = ACTIONS(1681), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1681), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1681), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1681), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1681), + [sym__unquoted_pattern] = ACTIONS(1695), [anon_sym_POUND] = ACTIONS(3), }, [STATE(436)] = { + [sym__expr_parenthesized_immediate] = STATE(949), + [sym__immediate_decimal] = STATE(952), + [sym_val_variable] = STATE(949), [sym_comment] = STATE(436), - [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(1496), - [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), + [ts_builtin_sym_end] = ACTIONS(1599), + [anon_sym_in] = ACTIONS(1599), + [sym__newline] = ACTIONS(1599), + [anon_sym_SEMI] = ACTIONS(1599), + [anon_sym_PIPE] = ACTIONS(1599), + [anon_sym_err_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_GT_PIPE] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1599), + [anon_sym_DOLLAR] = ACTIONS(1685), + [anon_sym_GT2] = ACTIONS(1603), + [anon_sym_DASH2] = ACTIONS(1603), + [anon_sym_STAR2] = ACTIONS(1603), + [anon_sym_and2] = ACTIONS(1599), + [anon_sym_xor2] = ACTIONS(1599), + [anon_sym_or2] = ACTIONS(1599), + [anon_sym_not_DASHin2] = ACTIONS(1599), + [anon_sym_has2] = ACTIONS(1599), + [anon_sym_not_DASHhas2] = ACTIONS(1599), + [anon_sym_starts_DASHwith2] = ACTIONS(1599), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1599), + [anon_sym_ends_DASHwith2] = ACTIONS(1599), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1599), + [anon_sym_EQ_EQ2] = ACTIONS(1599), + [anon_sym_BANG_EQ2] = ACTIONS(1599), + [anon_sym_LT2] = ACTIONS(1603), + [anon_sym_LT_EQ2] = ACTIONS(1599), + [anon_sym_GT_EQ2] = ACTIONS(1599), + [anon_sym_EQ_TILDE2] = ACTIONS(1599), + [anon_sym_BANG_TILDE2] = ACTIONS(1599), + [anon_sym_like2] = ACTIONS(1599), + [anon_sym_not_DASHlike2] = ACTIONS(1599), + [anon_sym_LPAREN2] = ACTIONS(1687), + [anon_sym_STAR_STAR2] = ACTIONS(1599), + [anon_sym_PLUS_PLUS2] = ACTIONS(1599), + [anon_sym_SLASH2] = ACTIONS(1603), + [anon_sym_mod2] = ACTIONS(1599), + [anon_sym_SLASH_SLASH2] = ACTIONS(1599), + [anon_sym_PLUS2] = ACTIONS(1603), + [anon_sym_bit_DASHshl2] = ACTIONS(1599), + [anon_sym_bit_DASHshr2] = ACTIONS(1599), + [anon_sym_bit_DASHand2] = ACTIONS(1599), + [anon_sym_bit_DASHxor2] = ACTIONS(1599), + [anon_sym_bit_DASHor2] = ACTIONS(1599), + [anon_sym_DOT] = ACTIONS(1722), + [aux_sym__immediate_decimal_token1] = ACTIONS(1691), + [aux_sym__immediate_decimal_token2] = ACTIONS(1691), + [aux_sym__immediate_decimal_token3] = ACTIONS(1693), + [aux_sym__immediate_decimal_token4] = ACTIONS(1693), + [anon_sym_err_GT] = ACTIONS(1603), + [anon_sym_out_GT] = ACTIONS(1603), + [anon_sym_e_GT] = ACTIONS(1603), + [anon_sym_o_GT] = ACTIONS(1603), + [anon_sym_err_PLUSout_GT] = ACTIONS(1603), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1603), + [anon_sym_o_PLUSe_GT] = ACTIONS(1603), + [anon_sym_e_PLUSo_GT] = ACTIONS(1603), + [anon_sym_err_GT_GT] = ACTIONS(1599), + [anon_sym_out_GT_GT] = ACTIONS(1599), + [anon_sym_e_GT_GT] = ACTIONS(1599), + [anon_sym_o_GT_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1599), [anon_sym_POUND] = ACTIONS(3), }, [STATE(437)] = { - [sym_path] = STATE(458), + [sym__expr_parenthesized_immediate] = STATE(1351), + [sym__immediate_decimal] = STATE(1013), + [sym_val_variable] = STATE(1351), [sym_comment] = STATE(437), - [aux_sym__where_predicate_lhs_repeat1] = STATE(437), - [anon_sym_in] = ACTIONS(1510), - [sym__newline] = ACTIONS(1510), - [anon_sym_SEMI] = ACTIONS(1510), - [anon_sym_PIPE] = ACTIONS(1510), - [anon_sym_err_GT_PIPE] = ACTIONS(1510), - [anon_sym_out_GT_PIPE] = ACTIONS(1510), - [anon_sym_e_GT_PIPE] = ACTIONS(1510), - [anon_sym_o_GT_PIPE] = ACTIONS(1510), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1510), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1510), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1510), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1510), - [anon_sym_RPAREN] = ACTIONS(1510), - [anon_sym_GT2] = ACTIONS(1508), - [anon_sym_DASH2] = ACTIONS(1510), - [anon_sym_LBRACE] = ACTIONS(1510), - [anon_sym_RBRACE] = ACTIONS(1510), - [anon_sym_EQ_GT] = ACTIONS(1510), - [anon_sym_STAR2] = ACTIONS(1508), - [anon_sym_and2] = ACTIONS(1510), - [anon_sym_xor2] = ACTIONS(1510), - [anon_sym_or2] = ACTIONS(1510), - [anon_sym_not_DASHin2] = ACTIONS(1510), - [anon_sym_has2] = ACTIONS(1510), - [anon_sym_not_DASHhas2] = ACTIONS(1510), - [anon_sym_starts_DASHwith2] = ACTIONS(1510), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1510), - [anon_sym_ends_DASHwith2] = ACTIONS(1510), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1510), - [anon_sym_EQ_EQ2] = ACTIONS(1510), - [anon_sym_BANG_EQ2] = ACTIONS(1510), - [anon_sym_LT2] = ACTIONS(1508), - [anon_sym_LT_EQ2] = ACTIONS(1510), - [anon_sym_GT_EQ2] = ACTIONS(1510), - [anon_sym_EQ_TILDE2] = ACTIONS(1510), - [anon_sym_BANG_TILDE2] = ACTIONS(1510), - [anon_sym_like2] = ACTIONS(1510), - [anon_sym_not_DASHlike2] = ACTIONS(1510), - [anon_sym_STAR_STAR2] = ACTIONS(1510), - [anon_sym_PLUS_PLUS2] = ACTIONS(1510), - [anon_sym_SLASH2] = ACTIONS(1508), - [anon_sym_mod2] = ACTIONS(1510), - [anon_sym_SLASH_SLASH2] = ACTIONS(1510), - [anon_sym_PLUS2] = ACTIONS(1508), - [anon_sym_bit_DASHshl2] = ACTIONS(1510), - [anon_sym_bit_DASHshr2] = ACTIONS(1510), - [anon_sym_bit_DASHand2] = ACTIONS(1510), - [anon_sym_bit_DASHxor2] = ACTIONS(1510), - [anon_sym_bit_DASHor2] = ACTIONS(1510), - [anon_sym_DOT_DOT2] = ACTIONS(1508), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1510), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1510), - [anon_sym_COLON2] = ACTIONS(1510), - [anon_sym_DOT2] = ACTIONS(1721), - [anon_sym_err_GT] = ACTIONS(1508), - [anon_sym_out_GT] = ACTIONS(1508), - [anon_sym_e_GT] = ACTIONS(1508), - [anon_sym_o_GT] = ACTIONS(1508), - [anon_sym_err_PLUSout_GT] = ACTIONS(1508), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1508), - [anon_sym_o_PLUSe_GT] = ACTIONS(1508), - [anon_sym_e_PLUSo_GT] = ACTIONS(1508), - [anon_sym_err_GT_GT] = ACTIONS(1510), - [anon_sym_out_GT_GT] = ACTIONS(1510), - [anon_sym_e_GT_GT] = ACTIONS(1510), - [anon_sym_o_GT_GT] = ACTIONS(1510), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1510), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1510), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1510), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1510), + [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(1685), + [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(1687), + [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(1718), + [aux_sym__immediate_decimal_token2] = ACTIONS(1718), + [aux_sym__immediate_decimal_token3] = ACTIONS(1720), + [aux_sym__immediate_decimal_token4] = ACTIONS(1720), + [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(1637), [anon_sym_POUND] = ACTIONS(3), }, [STATE(438)] = { - [sym__expr_parenthesized_immediate] = STATE(4801), [sym_comment] = STATE(438), - [anon_sym_in] = ACTIONS(886), - [sym__newline] = ACTIONS(886), - [anon_sym_SEMI] = ACTIONS(886), - [anon_sym_PIPE] = ACTIONS(886), - [anon_sym_err_GT_PIPE] = ACTIONS(886), - [anon_sym_out_GT_PIPE] = ACTIONS(886), - [anon_sym_e_GT_PIPE] = ACTIONS(886), - [anon_sym_o_GT_PIPE] = ACTIONS(886), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(886), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(886), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(886), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(886), - [anon_sym_GT2] = ACTIONS(866), - [anon_sym_DASH2] = ACTIONS(886), - [anon_sym_RBRACE] = ACTIONS(886), - [anon_sym_STAR2] = ACTIONS(866), - [anon_sym_and2] = ACTIONS(886), - [anon_sym_xor2] = ACTIONS(886), - [anon_sym_or2] = ACTIONS(886), - [anon_sym_not_DASHin2] = ACTIONS(886), - [anon_sym_has2] = ACTIONS(886), - [anon_sym_not_DASHhas2] = ACTIONS(886), - [anon_sym_starts_DASHwith2] = ACTIONS(886), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(886), - [anon_sym_ends_DASHwith2] = ACTIONS(886), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(886), - [anon_sym_EQ_EQ2] = ACTIONS(886), - [anon_sym_BANG_EQ2] = ACTIONS(886), - [anon_sym_LT2] = ACTIONS(866), - [anon_sym_LT_EQ2] = ACTIONS(886), - [anon_sym_GT_EQ2] = ACTIONS(886), - [anon_sym_EQ_TILDE2] = ACTIONS(886), - [anon_sym_BANG_TILDE2] = ACTIONS(886), - [anon_sym_like2] = ACTIONS(886), - [anon_sym_not_DASHlike2] = ACTIONS(886), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_STAR_STAR2] = ACTIONS(886), - [anon_sym_PLUS_PLUS2] = ACTIONS(886), - [anon_sym_SLASH2] = ACTIONS(866), - [anon_sym_mod2] = ACTIONS(886), - [anon_sym_SLASH_SLASH2] = ACTIONS(886), - [anon_sym_PLUS2] = ACTIONS(866), - [anon_sym_bit_DASHshl2] = ACTIONS(886), - [anon_sym_bit_DASHshr2] = ACTIONS(886), - [anon_sym_bit_DASHand2] = ACTIONS(886), - [anon_sym_bit_DASHxor2] = ACTIONS(886), - [anon_sym_bit_DASHor2] = ACTIONS(886), - [anon_sym_DOT_DOT2] = ACTIONS(1726), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1728), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1728), - [sym_filesize_unit] = ACTIONS(1730), - [sym_duration_unit] = ACTIONS(1732), - [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(886), - [anon_sym_out_GT_GT] = ACTIONS(886), - [anon_sym_e_GT_GT] = ACTIONS(886), - [anon_sym_o_GT_GT] = ACTIONS(886), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(886), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(886), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(886), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(886), - [sym__unquoted_pattern] = ACTIONS(1734), + [anon_sym_EQ] = ACTIONS(1724), + [anon_sym_PLUS_EQ] = ACTIONS(1726), + [anon_sym_DASH_EQ] = ACTIONS(1726), + [anon_sym_STAR_EQ] = ACTIONS(1726), + [anon_sym_SLASH_EQ] = ACTIONS(1726), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1726), + [anon_sym_in] = ACTIONS(1699), + [sym__newline] = ACTIONS(1699), + [anon_sym_SEMI] = ACTIONS(1699), + [anon_sym_PIPE] = ACTIONS(1699), + [anon_sym_err_GT_PIPE] = ACTIONS(1699), + [anon_sym_out_GT_PIPE] = ACTIONS(1699), + [anon_sym_e_GT_PIPE] = ACTIONS(1699), + [anon_sym_o_GT_PIPE] = ACTIONS(1699), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1699), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1699), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1699), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1699), + [anon_sym_RPAREN] = ACTIONS(1699), + [anon_sym_GT2] = ACTIONS(1615), + [anon_sym_DASH2] = ACTIONS(1615), + [anon_sym_STAR2] = ACTIONS(1615), + [anon_sym_and2] = ACTIONS(1699), + [anon_sym_xor2] = ACTIONS(1699), + [anon_sym_or2] = ACTIONS(1699), + [anon_sym_not_DASHin2] = ACTIONS(1699), + [anon_sym_has2] = ACTIONS(1699), + [anon_sym_not_DASHhas2] = ACTIONS(1699), + [anon_sym_starts_DASHwith2] = ACTIONS(1699), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1699), + [anon_sym_ends_DASHwith2] = ACTIONS(1699), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1699), + [anon_sym_EQ_EQ2] = ACTIONS(1699), + [anon_sym_BANG_EQ2] = ACTIONS(1699), + [anon_sym_LT2] = ACTIONS(1615), + [anon_sym_LT_EQ2] = ACTIONS(1699), + [anon_sym_GT_EQ2] = ACTIONS(1699), + [anon_sym_EQ_TILDE2] = ACTIONS(1699), + [anon_sym_BANG_TILDE2] = ACTIONS(1699), + [anon_sym_like2] = ACTIONS(1699), + [anon_sym_not_DASHlike2] = ACTIONS(1699), + [anon_sym_STAR_STAR2] = ACTIONS(1699), + [anon_sym_PLUS_PLUS2] = ACTIONS(1615), + [anon_sym_SLASH2] = ACTIONS(1615), + [anon_sym_mod2] = ACTIONS(1699), + [anon_sym_SLASH_SLASH2] = ACTIONS(1699), + [anon_sym_PLUS2] = ACTIONS(1615), + [anon_sym_bit_DASHshl2] = ACTIONS(1699), + [anon_sym_bit_DASHshr2] = ACTIONS(1699), + [anon_sym_bit_DASHand2] = ACTIONS(1699), + [anon_sym_bit_DASHxor2] = ACTIONS(1699), + [anon_sym_bit_DASHor2] = ACTIONS(1699), + [anon_sym_DOT_DOT2] = ACTIONS(1619), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1621), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1621), + [anon_sym_err_GT] = ACTIONS(1615), + [anon_sym_out_GT] = ACTIONS(1615), + [anon_sym_e_GT] = ACTIONS(1615), + [anon_sym_o_GT] = ACTIONS(1615), + [anon_sym_err_PLUSout_GT] = ACTIONS(1615), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1615), + [anon_sym_o_PLUSe_GT] = ACTIONS(1615), + [anon_sym_e_PLUSo_GT] = ACTIONS(1615), + [anon_sym_err_GT_GT] = ACTIONS(1699), + [anon_sym_out_GT_GT] = ACTIONS(1699), + [anon_sym_e_GT_GT] = ACTIONS(1699), + [anon_sym_o_GT_GT] = ACTIONS(1699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1699), [anon_sym_POUND] = ACTIONS(3), }, [STATE(439)] = { + [sym__expr_parenthesized_immediate] = STATE(1351), + [sym__immediate_decimal] = STATE(1352), + [sym_val_variable] = STATE(1351), [sym_comment] = STATE(439), - [anon_sym_EQ] = ACTIONS(1736), - [anon_sym_PLUS_EQ] = ACTIONS(1738), - [anon_sym_DASH_EQ] = ACTIONS(1738), - [anon_sym_STAR_EQ] = ACTIONS(1738), - [anon_sym_SLASH_EQ] = ACTIONS(1738), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1738), - [anon_sym_in] = ACTIONS(1713), - [sym__newline] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1713), - [anon_sym_err_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_GT_PIPE] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), - [anon_sym_RPAREN] = ACTIONS(1713), - [anon_sym_GT2] = ACTIONS(1614), - [anon_sym_DASH2] = ACTIONS(1614), - [anon_sym_STAR2] = ACTIONS(1614), - [anon_sym_and2] = ACTIONS(1713), - [anon_sym_xor2] = ACTIONS(1713), - [anon_sym_or2] = ACTIONS(1713), - [anon_sym_not_DASHin2] = ACTIONS(1713), - [anon_sym_has2] = ACTIONS(1713), - [anon_sym_not_DASHhas2] = ACTIONS(1713), - [anon_sym_starts_DASHwith2] = ACTIONS(1713), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1713), - [anon_sym_ends_DASHwith2] = ACTIONS(1713), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1713), - [anon_sym_EQ_EQ2] = ACTIONS(1713), - [anon_sym_BANG_EQ2] = ACTIONS(1713), - [anon_sym_LT2] = ACTIONS(1614), - [anon_sym_LT_EQ2] = ACTIONS(1713), - [anon_sym_GT_EQ2] = ACTIONS(1713), - [anon_sym_EQ_TILDE2] = ACTIONS(1713), - [anon_sym_BANG_TILDE2] = ACTIONS(1713), - [anon_sym_like2] = ACTIONS(1713), - [anon_sym_not_DASHlike2] = ACTIONS(1713), - [anon_sym_STAR_STAR2] = ACTIONS(1713), - [anon_sym_PLUS_PLUS2] = ACTIONS(1614), - [anon_sym_SLASH2] = ACTIONS(1614), - [anon_sym_mod2] = ACTIONS(1713), - [anon_sym_SLASH_SLASH2] = ACTIONS(1713), - [anon_sym_PLUS2] = ACTIONS(1614), - [anon_sym_bit_DASHshl2] = ACTIONS(1713), - [anon_sym_bit_DASHshr2] = ACTIONS(1713), - [anon_sym_bit_DASHand2] = ACTIONS(1713), - [anon_sym_bit_DASHxor2] = ACTIONS(1713), - [anon_sym_bit_DASHor2] = ACTIONS(1713), - [anon_sym_DOT_DOT2] = ACTIONS(1618), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1620), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1620), - [anon_sym_err_GT] = ACTIONS(1614), - [anon_sym_out_GT] = ACTIONS(1614), - [anon_sym_e_GT] = ACTIONS(1614), - [anon_sym_o_GT] = ACTIONS(1614), - [anon_sym_err_PLUSout_GT] = ACTIONS(1614), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1614), - [anon_sym_o_PLUSe_GT] = ACTIONS(1614), - [anon_sym_e_PLUSo_GT] = ACTIONS(1614), - [anon_sym_err_GT_GT] = ACTIONS(1713), - [anon_sym_out_GT_GT] = ACTIONS(1713), - [anon_sym_e_GT_GT] = ACTIONS(1713), - [anon_sym_o_GT_GT] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), + [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(1685), + [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(1687), + [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(1728), + [aux_sym__immediate_decimal_token2] = ACTIONS(1728), + [aux_sym__immediate_decimal_token3] = ACTIONS(1693), + [aux_sym__immediate_decimal_token4] = ACTIONS(1693), + [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(440)] = { [sym_comment] = STATE(440), + [anon_sym_in] = ACTIONS(1730), + [sym__newline] = ACTIONS(1730), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_PIPE] = ACTIONS(1730), + [anon_sym_err_GT_PIPE] = ACTIONS(1730), + [anon_sym_out_GT_PIPE] = ACTIONS(1730), + [anon_sym_e_GT_PIPE] = ACTIONS(1730), + [anon_sym_o_GT_PIPE] = ACTIONS(1730), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1730), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1730), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1730), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1730), + [anon_sym_RPAREN] = ACTIONS(1730), + [anon_sym_GT2] = ACTIONS(1732), + [anon_sym_DASH2] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(1730), + [anon_sym_STAR2] = ACTIONS(1732), + [anon_sym_and2] = ACTIONS(1730), + [anon_sym_xor2] = ACTIONS(1730), + [anon_sym_or2] = ACTIONS(1730), + [anon_sym_not_DASHin2] = ACTIONS(1730), + [anon_sym_has2] = ACTIONS(1730), + [anon_sym_not_DASHhas2] = ACTIONS(1730), + [anon_sym_starts_DASHwith2] = ACTIONS(1730), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1730), + [anon_sym_ends_DASHwith2] = ACTIONS(1730), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1730), + [anon_sym_EQ_EQ2] = ACTIONS(1730), + [anon_sym_BANG_EQ2] = ACTIONS(1730), + [anon_sym_LT2] = ACTIONS(1732), + [anon_sym_LT_EQ2] = ACTIONS(1730), + [anon_sym_GT_EQ2] = ACTIONS(1730), + [anon_sym_EQ_TILDE2] = ACTIONS(1730), + [anon_sym_BANG_TILDE2] = ACTIONS(1730), + [anon_sym_like2] = ACTIONS(1730), + [anon_sym_not_DASHlike2] = ACTIONS(1730), + [anon_sym_LPAREN2] = ACTIONS(1730), + [anon_sym_STAR_STAR2] = ACTIONS(1730), + [anon_sym_PLUS_PLUS2] = ACTIONS(1730), + [anon_sym_SLASH2] = ACTIONS(1732), + [anon_sym_mod2] = ACTIONS(1730), + [anon_sym_SLASH_SLASH2] = ACTIONS(1730), + [anon_sym_PLUS2] = ACTIONS(1732), + [anon_sym_bit_DASHshl2] = ACTIONS(1730), + [anon_sym_bit_DASHshr2] = ACTIONS(1730), + [anon_sym_bit_DASHand2] = ACTIONS(1730), + [anon_sym_bit_DASHxor2] = ACTIONS(1730), + [anon_sym_bit_DASHor2] = ACTIONS(1730), + [anon_sym_DOT_DOT2] = ACTIONS(1732), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1730), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1730), + [aux_sym__immediate_decimal_token1] = ACTIONS(1734), + [aux_sym__immediate_decimal_token5] = ACTIONS(1736), + [anon_sym_err_GT] = ACTIONS(1732), + [anon_sym_out_GT] = ACTIONS(1732), + [anon_sym_e_GT] = ACTIONS(1732), + [anon_sym_o_GT] = ACTIONS(1732), + [anon_sym_err_PLUSout_GT] = ACTIONS(1732), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1732), + [anon_sym_o_PLUSe_GT] = ACTIONS(1732), + [anon_sym_e_PLUSo_GT] = ACTIONS(1732), + [anon_sym_err_GT_GT] = ACTIONS(1730), + [anon_sym_out_GT_GT] = ACTIONS(1730), + [anon_sym_e_GT_GT] = ACTIONS(1730), + [anon_sym_o_GT_GT] = ACTIONS(1730), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1730), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1730), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1730), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1730), + [sym__unquoted_pattern] = ACTIONS(1732), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(441)] = { + [sym_comment] = STATE(441), [ts_builtin_sym_end] = ACTIONS(749), [anon_sym_in] = ACTIONS(749), [sym__newline] = ACTIONS(749), @@ -82421,10 +83335,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(749), [anon_sym_bit_DASHor2] = ACTIONS(749), [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token5] = ACTIONS(1742), + [aux_sym__immediate_decimal_token5] = ACTIONS(1740), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_err_GT] = ACTIONS(747), @@ -82446,158 +83360,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_pattern] = ACTIONS(747), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(441)] = { - [sym_comment] = STATE(441), - [anon_sym_in] = ACTIONS(1744), - [sym__newline] = ACTIONS(1744), - [anon_sym_SEMI] = ACTIONS(1744), - [anon_sym_PIPE] = ACTIONS(1744), - [anon_sym_err_GT_PIPE] = ACTIONS(1744), - [anon_sym_out_GT_PIPE] = ACTIONS(1744), - [anon_sym_e_GT_PIPE] = ACTIONS(1744), - [anon_sym_o_GT_PIPE] = ACTIONS(1744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1744), - [anon_sym_RPAREN] = ACTIONS(1744), - [anon_sym_GT2] = ACTIONS(1746), - [anon_sym_DASH2] = ACTIONS(1744), - [anon_sym_LBRACE] = ACTIONS(1744), - [anon_sym_RBRACE] = ACTIONS(1744), - [anon_sym_STAR2] = ACTIONS(1746), - [anon_sym_and2] = ACTIONS(1744), - [anon_sym_xor2] = ACTIONS(1744), - [anon_sym_or2] = ACTIONS(1744), - [anon_sym_not_DASHin2] = ACTIONS(1744), - [anon_sym_has2] = ACTIONS(1744), - [anon_sym_not_DASHhas2] = ACTIONS(1744), - [anon_sym_starts_DASHwith2] = ACTIONS(1744), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1744), - [anon_sym_ends_DASHwith2] = ACTIONS(1744), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1744), - [anon_sym_EQ_EQ2] = ACTIONS(1744), - [anon_sym_BANG_EQ2] = ACTIONS(1744), - [anon_sym_LT2] = ACTIONS(1746), - [anon_sym_LT_EQ2] = ACTIONS(1744), - [anon_sym_GT_EQ2] = ACTIONS(1744), - [anon_sym_EQ_TILDE2] = ACTIONS(1744), - [anon_sym_BANG_TILDE2] = ACTIONS(1744), - [anon_sym_like2] = ACTIONS(1744), - [anon_sym_not_DASHlike2] = ACTIONS(1744), - [anon_sym_LPAREN2] = ACTIONS(1744), - [anon_sym_STAR_STAR2] = ACTIONS(1744), - [anon_sym_PLUS_PLUS2] = ACTIONS(1744), - [anon_sym_SLASH2] = ACTIONS(1746), - [anon_sym_mod2] = ACTIONS(1744), - [anon_sym_SLASH_SLASH2] = ACTIONS(1744), - [anon_sym_PLUS2] = ACTIONS(1746), - [anon_sym_bit_DASHshl2] = ACTIONS(1744), - [anon_sym_bit_DASHshr2] = ACTIONS(1744), - [anon_sym_bit_DASHand2] = ACTIONS(1744), - [anon_sym_bit_DASHxor2] = ACTIONS(1744), - [anon_sym_bit_DASHor2] = ACTIONS(1744), - [anon_sym_DOT_DOT2] = ACTIONS(1746), - [anon_sym_DOT] = ACTIONS(1748), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1744), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1744), - [aux_sym__immediate_decimal_token5] = ACTIONS(1750), - [anon_sym_err_GT] = ACTIONS(1746), - [anon_sym_out_GT] = ACTIONS(1746), - [anon_sym_e_GT] = ACTIONS(1746), - [anon_sym_o_GT] = ACTIONS(1746), - [anon_sym_err_PLUSout_GT] = ACTIONS(1746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1746), - [anon_sym_o_PLUSe_GT] = ACTIONS(1746), - [anon_sym_e_PLUSo_GT] = ACTIONS(1746), - [anon_sym_err_GT_GT] = ACTIONS(1744), - [anon_sym_out_GT_GT] = ACTIONS(1744), - [anon_sym_e_GT_GT] = ACTIONS(1744), - [anon_sym_o_GT_GT] = ACTIONS(1744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1744), - [sym__unquoted_pattern] = ACTIONS(1746), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(442)] = { [sym_comment] = STATE(442), - [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_RPAREN] = ACTIONS(1450), - [anon_sym_GT2] = ACTIONS(1448), - [anon_sym_DASH2] = ACTIONS(1450), - [anon_sym_LBRACE] = ACTIONS(1450), - [anon_sym_RBRACE] = ACTIONS(1450), - [anon_sym_EQ_GT] = ACTIONS(1450), - [anon_sym_STAR2] = ACTIONS(1448), - [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(1448), - [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(1448), - [anon_sym_mod2] = ACTIONS(1450), - [anon_sym_SLASH_SLASH2] = ACTIONS(1450), - [anon_sym_PLUS2] = ACTIONS(1448), - [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(1448), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1450), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1450), - [anon_sym_COLON2] = ACTIONS(1450), - [anon_sym_BANG] = ACTIONS(1752), - [anon_sym_DOT2] = ACTIONS(1448), - [anon_sym_err_GT] = ACTIONS(1448), - [anon_sym_out_GT] = ACTIONS(1448), - [anon_sym_e_GT] = ACTIONS(1448), - [anon_sym_o_GT] = ACTIONS(1448), - [anon_sym_err_PLUSout_GT] = ACTIONS(1448), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1448), - [anon_sym_o_PLUSe_GT] = ACTIONS(1448), - [anon_sym_e_PLUSo_GT] = ACTIONS(1448), - [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(3), - }, - [STATE(443)] = { - [sym_comment] = STATE(443), [ts_builtin_sym_end] = ACTIONS(741), [anon_sym_in] = ACTIONS(741), [sym__newline] = ACTIONS(741), @@ -82648,8 +83412,8 @@ 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_token1] = ACTIONS(1754), - [aux_sym__immediate_decimal_token5] = ACTIONS(1756), + [aux_sym__immediate_decimal_token1] = ACTIONS(1742), + [aux_sym__immediate_decimal_token5] = ACTIONS(1744), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_err_GT] = ACTIONS(739), @@ -82671,1155 +83435,930 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_pattern] = ACTIONS(739), [anon_sym_POUND] = ACTIONS(3), }, + [STATE(443)] = { + [sym_comment] = STATE(443), + [anon_sym_if] = ACTIONS(1553), + [anon_sym_in] = ACTIONS(1553), + [sym__newline] = ACTIONS(1553), + [anon_sym_SEMI] = ACTIONS(1553), + [anon_sym_PIPE] = ACTIONS(1553), + [anon_sym_err_GT_PIPE] = ACTIONS(1553), + [anon_sym_out_GT_PIPE] = ACTIONS(1553), + [anon_sym_e_GT_PIPE] = ACTIONS(1553), + [anon_sym_o_GT_PIPE] = ACTIONS(1553), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1553), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1553), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1553), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1553), + [anon_sym_RPAREN] = ACTIONS(1553), + [anon_sym_GT2] = ACTIONS(1551), + [anon_sym_DASH2] = ACTIONS(1553), + [anon_sym_LBRACE] = ACTIONS(1553), + [anon_sym_RBRACE] = ACTIONS(1553), + [anon_sym_EQ_GT] = ACTIONS(1553), + [anon_sym_STAR2] = ACTIONS(1551), + [anon_sym_and2] = ACTIONS(1553), + [anon_sym_xor2] = ACTIONS(1553), + [anon_sym_or2] = ACTIONS(1553), + [anon_sym_not_DASHin2] = ACTIONS(1553), + [anon_sym_has2] = ACTIONS(1553), + [anon_sym_not_DASHhas2] = ACTIONS(1553), + [anon_sym_starts_DASHwith2] = ACTIONS(1553), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1553), + [anon_sym_ends_DASHwith2] = ACTIONS(1553), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1553), + [anon_sym_EQ_EQ2] = ACTIONS(1553), + [anon_sym_BANG_EQ2] = ACTIONS(1553), + [anon_sym_LT2] = ACTIONS(1551), + [anon_sym_LT_EQ2] = ACTIONS(1553), + [anon_sym_GT_EQ2] = ACTIONS(1553), + [anon_sym_EQ_TILDE2] = ACTIONS(1553), + [anon_sym_BANG_TILDE2] = ACTIONS(1553), + [anon_sym_like2] = ACTIONS(1553), + [anon_sym_not_DASHlike2] = ACTIONS(1553), + [anon_sym_STAR_STAR2] = ACTIONS(1553), + [anon_sym_PLUS_PLUS2] = ACTIONS(1553), + [anon_sym_SLASH2] = ACTIONS(1551), + [anon_sym_mod2] = ACTIONS(1553), + [anon_sym_SLASH_SLASH2] = ACTIONS(1553), + [anon_sym_PLUS2] = ACTIONS(1551), + [anon_sym_bit_DASHshl2] = ACTIONS(1553), + [anon_sym_bit_DASHshr2] = ACTIONS(1553), + [anon_sym_bit_DASHand2] = ACTIONS(1553), + [anon_sym_bit_DASHxor2] = ACTIONS(1553), + [anon_sym_bit_DASHor2] = ACTIONS(1553), + [anon_sym_DOT_DOT2] = ACTIONS(1551), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1553), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1553), + [anon_sym_COLON2] = ACTIONS(1553), + [anon_sym_DOT2] = ACTIONS(1551), + [anon_sym_err_GT] = ACTIONS(1551), + [anon_sym_out_GT] = ACTIONS(1551), + [anon_sym_e_GT] = ACTIONS(1551), + [anon_sym_o_GT] = ACTIONS(1551), + [anon_sym_err_PLUSout_GT] = ACTIONS(1551), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1551), + [anon_sym_o_PLUSe_GT] = ACTIONS(1551), + [anon_sym_e_PLUSo_GT] = ACTIONS(1551), + [anon_sym_err_GT_GT] = ACTIONS(1553), + [anon_sym_out_GT_GT] = ACTIONS(1553), + [anon_sym_e_GT_GT] = ACTIONS(1553), + [anon_sym_o_GT_GT] = ACTIONS(1553), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1553), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1553), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1553), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1553), + [anon_sym_POUND] = ACTIONS(3), + }, [STATE(444)] = { [sym_comment] = STATE(444), - [anon_sym_if] = ACTIONS(1564), - [anon_sym_in] = ACTIONS(1564), - [sym__newline] = ACTIONS(1564), - [anon_sym_SEMI] = ACTIONS(1564), - [anon_sym_PIPE] = ACTIONS(1564), - [anon_sym_err_GT_PIPE] = ACTIONS(1564), - [anon_sym_out_GT_PIPE] = ACTIONS(1564), - [anon_sym_e_GT_PIPE] = ACTIONS(1564), - [anon_sym_o_GT_PIPE] = ACTIONS(1564), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1564), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1564), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1564), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1564), - [anon_sym_RPAREN] = ACTIONS(1564), - [anon_sym_GT2] = ACTIONS(1562), - [anon_sym_DASH2] = ACTIONS(1564), - [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_RBRACE] = ACTIONS(1564), - [anon_sym_EQ_GT] = ACTIONS(1564), - [anon_sym_STAR2] = ACTIONS(1562), - [anon_sym_and2] = ACTIONS(1564), - [anon_sym_xor2] = ACTIONS(1564), - [anon_sym_or2] = ACTIONS(1564), - [anon_sym_not_DASHin2] = ACTIONS(1564), - [anon_sym_has2] = ACTIONS(1564), - [anon_sym_not_DASHhas2] = ACTIONS(1564), - [anon_sym_starts_DASHwith2] = ACTIONS(1564), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1564), - [anon_sym_ends_DASHwith2] = ACTIONS(1564), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1564), - [anon_sym_EQ_EQ2] = ACTIONS(1564), - [anon_sym_BANG_EQ2] = ACTIONS(1564), - [anon_sym_LT2] = ACTIONS(1562), - [anon_sym_LT_EQ2] = ACTIONS(1564), - [anon_sym_GT_EQ2] = ACTIONS(1564), - [anon_sym_EQ_TILDE2] = ACTIONS(1564), - [anon_sym_BANG_TILDE2] = ACTIONS(1564), - [anon_sym_like2] = ACTIONS(1564), - [anon_sym_not_DASHlike2] = ACTIONS(1564), - [anon_sym_STAR_STAR2] = ACTIONS(1564), - [anon_sym_PLUS_PLUS2] = ACTIONS(1564), - [anon_sym_SLASH2] = ACTIONS(1562), - [anon_sym_mod2] = ACTIONS(1564), - [anon_sym_SLASH_SLASH2] = ACTIONS(1564), - [anon_sym_PLUS2] = ACTIONS(1562), - [anon_sym_bit_DASHshl2] = ACTIONS(1564), - [anon_sym_bit_DASHshr2] = ACTIONS(1564), - [anon_sym_bit_DASHand2] = ACTIONS(1564), - [anon_sym_bit_DASHxor2] = ACTIONS(1564), - [anon_sym_bit_DASHor2] = ACTIONS(1564), - [anon_sym_DOT_DOT2] = ACTIONS(1562), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1564), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1564), - [anon_sym_COLON2] = ACTIONS(1564), - [anon_sym_DOT2] = ACTIONS(1562), - [anon_sym_err_GT] = ACTIONS(1562), - [anon_sym_out_GT] = ACTIONS(1562), - [anon_sym_e_GT] = ACTIONS(1562), - [anon_sym_o_GT] = ACTIONS(1562), - [anon_sym_err_PLUSout_GT] = ACTIONS(1562), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1562), - [anon_sym_o_PLUSe_GT] = ACTIONS(1562), - [anon_sym_e_PLUSo_GT] = ACTIONS(1562), - [anon_sym_err_GT_GT] = ACTIONS(1564), - [anon_sym_out_GT_GT] = ACTIONS(1564), - [anon_sym_e_GT_GT] = ACTIONS(1564), - [anon_sym_o_GT_GT] = ACTIONS(1564), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1564), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1564), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1564), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1564), + [ts_builtin_sym_end] = ACTIONS(1699), + [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(1699), + [sym__newline] = ACTIONS(1699), + [anon_sym_SEMI] = ACTIONS(1699), + [anon_sym_PIPE] = ACTIONS(1699), + [anon_sym_err_GT_PIPE] = ACTIONS(1699), + [anon_sym_out_GT_PIPE] = ACTIONS(1699), + [anon_sym_e_GT_PIPE] = ACTIONS(1699), + [anon_sym_o_GT_PIPE] = ACTIONS(1699), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1699), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1699), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1699), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1699), + [anon_sym_GT2] = ACTIONS(1615), + [anon_sym_DASH2] = ACTIONS(1615), + [anon_sym_STAR2] = ACTIONS(1615), + [anon_sym_and2] = ACTIONS(1699), + [anon_sym_xor2] = ACTIONS(1699), + [anon_sym_or2] = ACTIONS(1699), + [anon_sym_not_DASHin2] = ACTIONS(1699), + [anon_sym_has2] = ACTIONS(1699), + [anon_sym_not_DASHhas2] = ACTIONS(1699), + [anon_sym_starts_DASHwith2] = ACTIONS(1699), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1699), + [anon_sym_ends_DASHwith2] = ACTIONS(1699), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1699), + [anon_sym_EQ_EQ2] = ACTIONS(1699), + [anon_sym_BANG_EQ2] = ACTIONS(1699), + [anon_sym_LT2] = ACTIONS(1615), + [anon_sym_LT_EQ2] = ACTIONS(1699), + [anon_sym_GT_EQ2] = ACTIONS(1699), + [anon_sym_EQ_TILDE2] = ACTIONS(1699), + [anon_sym_BANG_TILDE2] = ACTIONS(1699), + [anon_sym_like2] = ACTIONS(1699), + [anon_sym_not_DASHlike2] = ACTIONS(1699), + [anon_sym_STAR_STAR2] = ACTIONS(1699), + [anon_sym_PLUS_PLUS2] = ACTIONS(1615), + [anon_sym_SLASH2] = ACTIONS(1615), + [anon_sym_mod2] = ACTIONS(1699), + [anon_sym_SLASH_SLASH2] = ACTIONS(1699), + [anon_sym_PLUS2] = ACTIONS(1615), + [anon_sym_bit_DASHshl2] = ACTIONS(1699), + [anon_sym_bit_DASHshr2] = ACTIONS(1699), + [anon_sym_bit_DASHand2] = ACTIONS(1699), + [anon_sym_bit_DASHxor2] = ACTIONS(1699), + [anon_sym_bit_DASHor2] = ACTIONS(1699), + [anon_sym_DOT_DOT2] = ACTIONS(1750), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1752), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1752), + [anon_sym_err_GT] = ACTIONS(1615), + [anon_sym_out_GT] = ACTIONS(1615), + [anon_sym_e_GT] = ACTIONS(1615), + [anon_sym_o_GT] = ACTIONS(1615), + [anon_sym_err_PLUSout_GT] = ACTIONS(1615), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1615), + [anon_sym_o_PLUSe_GT] = ACTIONS(1615), + [anon_sym_e_PLUSo_GT] = ACTIONS(1615), + [anon_sym_err_GT_GT] = ACTIONS(1699), + [anon_sym_out_GT_GT] = ACTIONS(1699), + [anon_sym_e_GT_GT] = ACTIONS(1699), + [anon_sym_o_GT_GT] = ACTIONS(1699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1699), [anon_sym_POUND] = ACTIONS(3), }, [STATE(445)] = { - [sym__expr_parenthesized_immediate] = STATE(1315), - [sym__immediate_decimal] = STATE(1340), - [sym_val_variable] = STATE(1315), + [sym_cmd_identifier] = STATE(4519), + [sym_expr_parenthesized] = STATE(5494), + [sym__spread_parenthesized] = STATE(5018), + [sym__spread_variable] = STATE(5020), + [sym_val_variable] = STATE(5494), + [sym_val_number] = STATE(5494), + [sym__val_number_decimal] = STATE(1998), + [sym__val_number] = STATE(710), + [sym_val_string] = STATE(5494), + [sym__raw_str] = STATE(2274), + [sym__str_double_quotes] = STATE(2274), + [sym__str_single_quotes] = STATE(2274), + [sym__str_back_ticks] = STATE(2274), + [sym_val_interpolated] = STATE(5494), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym__spread_record] = STATE(5018), + [sym_record_body] = STATE(5276), + [sym_record_entry] = STATE(4653), + [sym__record_key] = STATE(5156), [sym_comment] = STATE(445), - [ts_builtin_sym_end] = ACTIONS(1639), - [anon_sym_in] = ACTIONS(1639), - [sym__newline] = ACTIONS(1639), - [anon_sym_SEMI] = ACTIONS(1639), - [anon_sym_PIPE] = ACTIONS(1639), - [anon_sym_err_GT_PIPE] = ACTIONS(1639), - [anon_sym_out_GT_PIPE] = ACTIONS(1639), - [anon_sym_e_GT_PIPE] = ACTIONS(1639), - [anon_sym_o_GT_PIPE] = ACTIONS(1639), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1639), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1639), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1639), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1639), - [anon_sym_DOLLAR] = ACTIONS(1685), - [anon_sym_GT2] = ACTIONS(1641), - [anon_sym_DASH2] = ACTIONS(1641), - [anon_sym_STAR2] = ACTIONS(1641), - [anon_sym_and2] = ACTIONS(1639), - [anon_sym_xor2] = ACTIONS(1639), - [anon_sym_or2] = ACTIONS(1639), - [anon_sym_not_DASHin2] = ACTIONS(1639), - [anon_sym_has2] = ACTIONS(1639), - [anon_sym_not_DASHhas2] = ACTIONS(1639), - [anon_sym_starts_DASHwith2] = ACTIONS(1639), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1639), - [anon_sym_ends_DASHwith2] = ACTIONS(1639), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1639), - [anon_sym_EQ_EQ2] = ACTIONS(1639), - [anon_sym_BANG_EQ2] = ACTIONS(1639), - [anon_sym_LT2] = ACTIONS(1641), - [anon_sym_LT_EQ2] = ACTIONS(1639), - [anon_sym_GT_EQ2] = ACTIONS(1639), - [anon_sym_EQ_TILDE2] = ACTIONS(1639), - [anon_sym_BANG_TILDE2] = ACTIONS(1639), - [anon_sym_like2] = ACTIONS(1639), - [anon_sym_not_DASHlike2] = ACTIONS(1639), - [anon_sym_LPAREN2] = ACTIONS(1687), - [anon_sym_STAR_STAR2] = ACTIONS(1639), - [anon_sym_PLUS_PLUS2] = ACTIONS(1639), - [anon_sym_SLASH2] = ACTIONS(1641), - [anon_sym_mod2] = ACTIONS(1639), - [anon_sym_SLASH_SLASH2] = ACTIONS(1639), - [anon_sym_PLUS2] = ACTIONS(1641), - [anon_sym_bit_DASHshl2] = ACTIONS(1639), - [anon_sym_bit_DASHshr2] = ACTIONS(1639), - [anon_sym_bit_DASHand2] = ACTIONS(1639), - [anon_sym_bit_DASHxor2] = ACTIONS(1639), - [anon_sym_bit_DASHor2] = ACTIONS(1639), - [aux_sym__immediate_decimal_token1] = ACTIONS(1758), - [aux_sym__immediate_decimal_token2] = ACTIONS(1758), - [aux_sym__immediate_decimal_token3] = ACTIONS(1693), - [aux_sym__immediate_decimal_token4] = ACTIONS(1693), - [anon_sym_err_GT] = ACTIONS(1641), - [anon_sym_out_GT] = ACTIONS(1641), - [anon_sym_e_GT] = ACTIONS(1641), - [anon_sym_o_GT] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT] = ACTIONS(1641), - [anon_sym_err_GT_GT] = ACTIONS(1639), - [anon_sym_out_GT_GT] = ACTIONS(1639), - [anon_sym_e_GT_GT] = ACTIONS(1639), - [anon_sym_o_GT_GT] = ACTIONS(1639), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1639), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1639), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1639), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1639), + [aux_sym__types_body_repeat1] = STATE(514), + [aux_sym_record_body_repeat1] = STATE(721), + [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_finally] = ACTIONS(137), + [anon_sym_match] = ACTIONS(137), + [anon_sym_in] = ACTIONS(143), + [anon_sym_true] = ACTIONS(1754), + [anon_sym_false] = ACTIONS(1754), + [anon_sym_null] = ACTIONS(1754), + [aux_sym_cmd_identifier_token3] = ACTIONS(1756), + [aux_sym_cmd_identifier_token4] = ACTIONS(1756), + [aux_sym_cmd_identifier_token5] = ACTIONS(1756), + [sym__newline] = ACTIONS(1758), + [anon_sym_LPAREN] = ACTIONS(1760), + [anon_sym_DOLLAR] = ACTIONS(1762), + [anon_sym_DASH2] = ACTIONS(175), + [anon_sym_RBRACE] = ACTIONS(1764), + [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(1766), + [aux_sym__val_number_decimal_token2] = ACTIONS(1768), + [aux_sym__val_number_decimal_token3] = ACTIONS(1770), + [aux_sym__val_number_decimal_token4] = ACTIONS(1770), + [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(1772), + [anon_sym_SQUOTE] = ACTIONS(1774), + [anon_sym_BQUOTE] = ACTIONS(1776), + [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(1778), }, [STATE(446)] = { [sym_comment] = STATE(446), - [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(1760), - [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_EQ] = ACTIONS(1780), + [anon_sym_PLUS_EQ] = ACTIONS(1782), + [anon_sym_DASH_EQ] = ACTIONS(1782), + [anon_sym_STAR_EQ] = ACTIONS(1782), + [anon_sym_SLASH_EQ] = ACTIONS(1782), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1699), + [sym__newline] = ACTIONS(1699), + [anon_sym_SEMI] = ACTIONS(1699), + [anon_sym_PIPE] = ACTIONS(1699), + [anon_sym_err_GT_PIPE] = ACTIONS(1699), + [anon_sym_out_GT_PIPE] = ACTIONS(1699), + [anon_sym_e_GT_PIPE] = ACTIONS(1699), + [anon_sym_o_GT_PIPE] = ACTIONS(1699), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1699), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1699), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1699), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1699), + [anon_sym_RPAREN] = ACTIONS(1699), + [anon_sym_GT2] = ACTIONS(1615), + [anon_sym_DASH2] = ACTIONS(1615), + [anon_sym_STAR2] = ACTIONS(1615), + [anon_sym_and2] = ACTIONS(1699), + [anon_sym_xor2] = ACTIONS(1699), + [anon_sym_or2] = ACTIONS(1699), + [anon_sym_not_DASHin2] = ACTIONS(1699), + [anon_sym_has2] = ACTIONS(1699), + [anon_sym_not_DASHhas2] = ACTIONS(1699), + [anon_sym_starts_DASHwith2] = ACTIONS(1699), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1699), + [anon_sym_ends_DASHwith2] = ACTIONS(1699), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1699), + [anon_sym_EQ_EQ2] = ACTIONS(1699), + [anon_sym_BANG_EQ2] = ACTIONS(1699), + [anon_sym_LT2] = ACTIONS(1615), + [anon_sym_LT_EQ2] = ACTIONS(1699), + [anon_sym_GT_EQ2] = ACTIONS(1699), + [anon_sym_EQ_TILDE2] = ACTIONS(1699), + [anon_sym_BANG_TILDE2] = ACTIONS(1699), + [anon_sym_like2] = ACTIONS(1699), + [anon_sym_not_DASHlike2] = ACTIONS(1699), + [anon_sym_STAR_STAR2] = ACTIONS(1699), + [anon_sym_PLUS_PLUS2] = ACTIONS(1615), + [anon_sym_SLASH2] = ACTIONS(1615), + [anon_sym_mod2] = ACTIONS(1699), + [anon_sym_SLASH_SLASH2] = ACTIONS(1699), + [anon_sym_PLUS2] = ACTIONS(1615), + [anon_sym_bit_DASHshl2] = ACTIONS(1699), + [anon_sym_bit_DASHshr2] = ACTIONS(1699), + [anon_sym_bit_DASHand2] = ACTIONS(1699), + [anon_sym_bit_DASHxor2] = ACTIONS(1699), + [anon_sym_bit_DASHor2] = ACTIONS(1699), + [anon_sym_DOT_DOT2] = ACTIONS(1619), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1621), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1621), + [anon_sym_err_GT] = ACTIONS(1615), + [anon_sym_out_GT] = ACTIONS(1615), + [anon_sym_e_GT] = ACTIONS(1615), + [anon_sym_o_GT] = ACTIONS(1615), + [anon_sym_err_PLUSout_GT] = ACTIONS(1615), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1615), + [anon_sym_o_PLUSe_GT] = ACTIONS(1615), + [anon_sym_e_PLUSo_GT] = ACTIONS(1615), + [anon_sym_err_GT_GT] = ACTIONS(1699), + [anon_sym_out_GT_GT] = ACTIONS(1699), + [anon_sym_e_GT_GT] = ACTIONS(1699), + [anon_sym_o_GT_GT] = ACTIONS(1699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1699), [anon_sym_POUND] = ACTIONS(3), }, [STATE(447)] = { + [sym_cmd_identifier] = STATE(4519), + [sym_expr_parenthesized] = STATE(5494), + [sym__spread_parenthesized] = STATE(5018), + [sym__spread_variable] = STATE(5020), + [sym_val_variable] = STATE(5494), + [sym_val_number] = STATE(5494), + [sym__val_number_decimal] = STATE(1998), + [sym__val_number] = STATE(710), + [sym_val_string] = STATE(5494), + [sym__raw_str] = STATE(2274), + [sym__str_double_quotes] = STATE(2274), + [sym__str_single_quotes] = STATE(2274), + [sym__str_back_ticks] = STATE(2274), + [sym_val_interpolated] = STATE(5494), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym__spread_record] = STATE(5018), + [sym_record_body] = STATE(5384), + [sym_record_entry] = STATE(4653), + [sym__record_key] = STATE(5156), [sym_comment] = STATE(447), - [ts_builtin_sym_end] = ACTIONS(1713), - [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(1713), - [sym__newline] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1713), - [anon_sym_err_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_GT_PIPE] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), - [anon_sym_GT2] = ACTIONS(1614), - [anon_sym_DASH2] = ACTIONS(1614), - [anon_sym_STAR2] = ACTIONS(1614), - [anon_sym_and2] = ACTIONS(1713), - [anon_sym_xor2] = ACTIONS(1713), - [anon_sym_or2] = ACTIONS(1713), - [anon_sym_not_DASHin2] = ACTIONS(1713), - [anon_sym_has2] = ACTIONS(1713), - [anon_sym_not_DASHhas2] = ACTIONS(1713), - [anon_sym_starts_DASHwith2] = ACTIONS(1713), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1713), - [anon_sym_ends_DASHwith2] = ACTIONS(1713), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1713), - [anon_sym_EQ_EQ2] = ACTIONS(1713), - [anon_sym_BANG_EQ2] = ACTIONS(1713), - [anon_sym_LT2] = ACTIONS(1614), - [anon_sym_LT_EQ2] = ACTIONS(1713), - [anon_sym_GT_EQ2] = ACTIONS(1713), - [anon_sym_EQ_TILDE2] = ACTIONS(1713), - [anon_sym_BANG_TILDE2] = ACTIONS(1713), - [anon_sym_like2] = ACTIONS(1713), - [anon_sym_not_DASHlike2] = ACTIONS(1713), - [anon_sym_STAR_STAR2] = ACTIONS(1713), - [anon_sym_PLUS_PLUS2] = ACTIONS(1614), - [anon_sym_SLASH2] = ACTIONS(1614), - [anon_sym_mod2] = ACTIONS(1713), - [anon_sym_SLASH_SLASH2] = ACTIONS(1713), - [anon_sym_PLUS2] = ACTIONS(1614), - [anon_sym_bit_DASHshl2] = ACTIONS(1713), - [anon_sym_bit_DASHshr2] = ACTIONS(1713), - [anon_sym_bit_DASHand2] = ACTIONS(1713), - [anon_sym_bit_DASHxor2] = ACTIONS(1713), - [anon_sym_bit_DASHor2] = ACTIONS(1713), - [anon_sym_DOT_DOT2] = ACTIONS(1766), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1768), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1768), - [anon_sym_err_GT] = ACTIONS(1614), - [anon_sym_out_GT] = ACTIONS(1614), - [anon_sym_e_GT] = ACTIONS(1614), - [anon_sym_o_GT] = ACTIONS(1614), - [anon_sym_err_PLUSout_GT] = ACTIONS(1614), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1614), - [anon_sym_o_PLUSe_GT] = ACTIONS(1614), - [anon_sym_e_PLUSo_GT] = ACTIONS(1614), - [anon_sym_err_GT_GT] = ACTIONS(1713), - [anon_sym_out_GT_GT] = ACTIONS(1713), - [anon_sym_e_GT_GT] = ACTIONS(1713), - [anon_sym_o_GT_GT] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), + [aux_sym__types_body_repeat1] = STATE(514), + [aux_sym_record_body_repeat1] = STATE(721), + [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_finally] = ACTIONS(137), + [anon_sym_match] = ACTIONS(137), + [anon_sym_in] = ACTIONS(143), + [anon_sym_true] = ACTIONS(1754), + [anon_sym_false] = ACTIONS(1754), + [anon_sym_null] = ACTIONS(1754), + [aux_sym_cmd_identifier_token3] = ACTIONS(1756), + [aux_sym_cmd_identifier_token4] = ACTIONS(1756), + [aux_sym_cmd_identifier_token5] = ACTIONS(1756), + [sym__newline] = ACTIONS(1758), + [anon_sym_LPAREN] = ACTIONS(1760), + [anon_sym_DOLLAR] = ACTIONS(1762), + [anon_sym_DASH2] = ACTIONS(175), + [anon_sym_RBRACE] = ACTIONS(1784), + [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(1766), + [aux_sym__val_number_decimal_token2] = ACTIONS(1768), + [aux_sym__val_number_decimal_token3] = ACTIONS(1770), + [aux_sym__val_number_decimal_token4] = ACTIONS(1770), + [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(1772), + [anon_sym_SQUOTE] = ACTIONS(1774), + [anon_sym_BQUOTE] = ACTIONS(1776), + [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(1778), }, [STATE(448)] = { [sym_comment] = STATE(448), - [anon_sym_if] = 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(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(1496), - [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_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_RPAREN] = ACTIONS(1462), + [anon_sym_GT2] = ACTIONS(1460), + [anon_sym_DASH2] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1462), + [anon_sym_RBRACE] = ACTIONS(1462), + [anon_sym_EQ_GT] = ACTIONS(1462), + [anon_sym_STAR2] = ACTIONS(1460), + [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(1460), + [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(1460), + [anon_sym_mod2] = ACTIONS(1462), + [anon_sym_SLASH_SLASH2] = ACTIONS(1462), + [anon_sym_PLUS2] = ACTIONS(1460), + [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(1460), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1462), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1462), + [anon_sym_COLON2] = ACTIONS(1462), + [anon_sym_BANG] = ACTIONS(1786), + [anon_sym_DOT2] = ACTIONS(1460), + [anon_sym_err_GT] = ACTIONS(1460), + [anon_sym_out_GT] = ACTIONS(1460), + [anon_sym_e_GT] = ACTIONS(1460), + [anon_sym_o_GT] = ACTIONS(1460), + [anon_sym_err_PLUSout_GT] = ACTIONS(1460), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1460), + [anon_sym_o_PLUSe_GT] = ACTIONS(1460), + [anon_sym_e_PLUSo_GT] = ACTIONS(1460), + [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(3), }, [STATE(449)] = { + [sym_cmd_identifier] = STATE(4519), + [sym_expr_parenthesized] = STATE(5494), + [sym__spread_parenthesized] = STATE(5018), + [sym__spread_variable] = STATE(5020), + [sym_val_variable] = STATE(5494), + [sym_val_number] = STATE(5494), + [sym__val_number_decimal] = STATE(1998), + [sym__val_number] = STATE(710), + [sym_val_string] = STATE(5494), + [sym__raw_str] = STATE(2274), + [sym__str_double_quotes] = STATE(2274), + [sym__str_single_quotes] = STATE(2274), + [sym__str_back_ticks] = STATE(2274), + [sym_val_interpolated] = STATE(5494), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym__spread_record] = STATE(5018), + [sym_record_body] = STATE(5220), + [sym_record_entry] = STATE(4653), + [sym__record_key] = STATE(5156), [sym_comment] = STATE(449), - [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), - [aux_sym__immediate_decimal_token5] = ACTIONS(1705), - [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), + [aux_sym__types_body_repeat1] = STATE(514), + [aux_sym_record_body_repeat1] = STATE(721), + [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_finally] = ACTIONS(137), + [anon_sym_match] = ACTIONS(137), + [anon_sym_in] = ACTIONS(143), + [anon_sym_true] = ACTIONS(1754), + [anon_sym_false] = ACTIONS(1754), + [anon_sym_null] = ACTIONS(1754), + [aux_sym_cmd_identifier_token3] = ACTIONS(1756), + [aux_sym_cmd_identifier_token4] = ACTIONS(1756), + [aux_sym_cmd_identifier_token5] = ACTIONS(1756), + [sym__newline] = ACTIONS(1758), + [anon_sym_LPAREN] = ACTIONS(1760), + [anon_sym_DOLLAR] = ACTIONS(1762), + [anon_sym_DASH2] = ACTIONS(175), + [anon_sym_RBRACE] = ACTIONS(1788), + [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(1766), + [aux_sym__val_number_decimal_token2] = ACTIONS(1768), + [aux_sym__val_number_decimal_token3] = ACTIONS(1770), + [aux_sym__val_number_decimal_token4] = ACTIONS(1770), + [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(1772), + [anon_sym_SQUOTE] = ACTIONS(1774), + [anon_sym_BQUOTE] = ACTIONS(1776), + [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(1778), }, [STATE(450)] = { - [sym__expr_parenthesized_immediate] = STATE(1337), - [sym__immediate_decimal] = STATE(1339), - [sym_val_variable] = STATE(1337), [sym_comment] = STATE(450), - [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(1685), - [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(1687), - [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(1758), - [aux_sym__immediate_decimal_token2] = ACTIONS(1758), - [aux_sym__immediate_decimal_token3] = ACTIONS(1693), - [aux_sym__immediate_decimal_token4] = ACTIONS(1693), - [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_in] = ACTIONS(1790), + [sym__newline] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym_PIPE] = ACTIONS(1790), + [anon_sym_err_GT_PIPE] = ACTIONS(1790), + [anon_sym_out_GT_PIPE] = ACTIONS(1790), + [anon_sym_e_GT_PIPE] = ACTIONS(1790), + [anon_sym_o_GT_PIPE] = ACTIONS(1790), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1790), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1790), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1790), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1790), + [anon_sym_RPAREN] = ACTIONS(1790), + [anon_sym_GT2] = ACTIONS(1792), + [anon_sym_DASH2] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1790), + [anon_sym_RBRACE] = ACTIONS(1790), + [anon_sym_STAR2] = ACTIONS(1792), + [anon_sym_and2] = ACTIONS(1790), + [anon_sym_xor2] = ACTIONS(1790), + [anon_sym_or2] = ACTIONS(1790), + [anon_sym_not_DASHin2] = ACTIONS(1790), + [anon_sym_has2] = ACTIONS(1790), + [anon_sym_not_DASHhas2] = ACTIONS(1790), + [anon_sym_starts_DASHwith2] = ACTIONS(1790), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1790), + [anon_sym_ends_DASHwith2] = ACTIONS(1790), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1790), + [anon_sym_EQ_EQ2] = ACTIONS(1790), + [anon_sym_BANG_EQ2] = ACTIONS(1790), + [anon_sym_LT2] = ACTIONS(1792), + [anon_sym_LT_EQ2] = ACTIONS(1790), + [anon_sym_GT_EQ2] = ACTIONS(1790), + [anon_sym_EQ_TILDE2] = ACTIONS(1790), + [anon_sym_BANG_TILDE2] = ACTIONS(1790), + [anon_sym_like2] = ACTIONS(1790), + [anon_sym_not_DASHlike2] = ACTIONS(1790), + [anon_sym_LPAREN2] = ACTIONS(1790), + [anon_sym_STAR_STAR2] = ACTIONS(1790), + [anon_sym_PLUS_PLUS2] = ACTIONS(1790), + [anon_sym_SLASH2] = ACTIONS(1792), + [anon_sym_mod2] = ACTIONS(1790), + [anon_sym_SLASH_SLASH2] = ACTIONS(1790), + [anon_sym_PLUS2] = ACTIONS(1792), + [anon_sym_bit_DASHshl2] = ACTIONS(1790), + [anon_sym_bit_DASHshr2] = ACTIONS(1790), + [anon_sym_bit_DASHand2] = ACTIONS(1790), + [anon_sym_bit_DASHxor2] = ACTIONS(1790), + [anon_sym_bit_DASHor2] = ACTIONS(1790), + [anon_sym_DOT_DOT2] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1794), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1790), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1790), + [aux_sym__immediate_decimal_token5] = ACTIONS(1796), + [anon_sym_err_GT] = ACTIONS(1792), + [anon_sym_out_GT] = ACTIONS(1792), + [anon_sym_e_GT] = ACTIONS(1792), + [anon_sym_o_GT] = ACTIONS(1792), + [anon_sym_err_PLUSout_GT] = ACTIONS(1792), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1792), + [anon_sym_o_PLUSe_GT] = ACTIONS(1792), + [anon_sym_e_PLUSo_GT] = ACTIONS(1792), + [anon_sym_err_GT_GT] = ACTIONS(1790), + [anon_sym_out_GT_GT] = ACTIONS(1790), + [anon_sym_e_GT_GT] = ACTIONS(1790), + [anon_sym_o_GT_GT] = ACTIONS(1790), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1790), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1790), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1790), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1790), + [sym__unquoted_pattern] = ACTIONS(1792), [anon_sym_POUND] = ACTIONS(3), }, [STATE(451)] = { [sym_comment] = STATE(451), - [anon_sym_EQ] = ACTIONS(1612), - [anon_sym_PLUS_EQ] = ACTIONS(1711), - [anon_sym_DASH_EQ] = ACTIONS(1711), - [anon_sym_STAR_EQ] = ACTIONS(1711), - [anon_sym_SLASH_EQ] = ACTIONS(1711), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1711), - [anon_sym_in] = ACTIONS(1713), - [sym__newline] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1713), - [anon_sym_err_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_GT_PIPE] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), - [anon_sym_GT2] = ACTIONS(1614), - [anon_sym_DASH2] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(1713), - [anon_sym_STAR2] = ACTIONS(1614), - [anon_sym_and2] = ACTIONS(1713), - [anon_sym_xor2] = ACTIONS(1713), - [anon_sym_or2] = ACTIONS(1713), - [anon_sym_not_DASHin2] = ACTIONS(1713), - [anon_sym_has2] = ACTIONS(1713), - [anon_sym_not_DASHhas2] = ACTIONS(1713), - [anon_sym_starts_DASHwith2] = ACTIONS(1713), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1713), - [anon_sym_ends_DASHwith2] = ACTIONS(1713), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1713), - [anon_sym_EQ_EQ2] = ACTIONS(1713), - [anon_sym_BANG_EQ2] = ACTIONS(1713), - [anon_sym_LT2] = ACTIONS(1614), - [anon_sym_LT_EQ2] = ACTIONS(1713), - [anon_sym_GT_EQ2] = ACTIONS(1713), - [anon_sym_EQ_TILDE2] = ACTIONS(1713), - [anon_sym_BANG_TILDE2] = ACTIONS(1713), - [anon_sym_like2] = ACTIONS(1713), - [anon_sym_not_DASHlike2] = ACTIONS(1713), - [anon_sym_STAR_STAR2] = ACTIONS(1713), - [anon_sym_PLUS_PLUS2] = ACTIONS(1614), - [anon_sym_SLASH2] = ACTIONS(1614), - [anon_sym_mod2] = ACTIONS(1713), - [anon_sym_SLASH_SLASH2] = ACTIONS(1713), - [anon_sym_PLUS2] = ACTIONS(1614), - [anon_sym_bit_DASHshl2] = ACTIONS(1713), - [anon_sym_bit_DASHshr2] = ACTIONS(1713), - [anon_sym_bit_DASHand2] = ACTIONS(1713), - [anon_sym_bit_DASHxor2] = ACTIONS(1713), - [anon_sym_bit_DASHor2] = ACTIONS(1713), - [anon_sym_DOT_DOT2] = ACTIONS(1618), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1620), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1620), - [anon_sym_err_GT] = ACTIONS(1614), - [anon_sym_out_GT] = ACTIONS(1614), - [anon_sym_e_GT] = ACTIONS(1614), - [anon_sym_o_GT] = ACTIONS(1614), - [anon_sym_err_PLUSout_GT] = ACTIONS(1614), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1614), - [anon_sym_o_PLUSe_GT] = ACTIONS(1614), - [anon_sym_e_PLUSo_GT] = ACTIONS(1614), - [anon_sym_err_GT_GT] = ACTIONS(1713), - [anon_sym_out_GT_GT] = ACTIONS(1713), - [anon_sym_e_GT_GT] = ACTIONS(1713), - [anon_sym_o_GT_GT] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), + [anon_sym_EQ] = ACTIONS(1613), + [anon_sym_PLUS_EQ] = ACTIONS(1697), + [anon_sym_DASH_EQ] = ACTIONS(1697), + [anon_sym_STAR_EQ] = ACTIONS(1697), + [anon_sym_SLASH_EQ] = ACTIONS(1697), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1697), + [anon_sym_in] = ACTIONS(1699), + [sym__newline] = ACTIONS(1699), + [anon_sym_SEMI] = ACTIONS(1699), + [anon_sym_PIPE] = ACTIONS(1699), + [anon_sym_err_GT_PIPE] = ACTIONS(1699), + [anon_sym_out_GT_PIPE] = ACTIONS(1699), + [anon_sym_e_GT_PIPE] = ACTIONS(1699), + [anon_sym_o_GT_PIPE] = ACTIONS(1699), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1699), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1699), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1699), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1699), + [anon_sym_GT2] = ACTIONS(1615), + [anon_sym_DASH2] = ACTIONS(1615), + [anon_sym_RBRACE] = ACTIONS(1699), + [anon_sym_STAR2] = ACTIONS(1615), + [anon_sym_and2] = ACTIONS(1699), + [anon_sym_xor2] = ACTIONS(1699), + [anon_sym_or2] = ACTIONS(1699), + [anon_sym_not_DASHin2] = ACTIONS(1699), + [anon_sym_has2] = ACTIONS(1699), + [anon_sym_not_DASHhas2] = ACTIONS(1699), + [anon_sym_starts_DASHwith2] = ACTIONS(1699), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1699), + [anon_sym_ends_DASHwith2] = ACTIONS(1699), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1699), + [anon_sym_EQ_EQ2] = ACTIONS(1699), + [anon_sym_BANG_EQ2] = ACTIONS(1699), + [anon_sym_LT2] = ACTIONS(1615), + [anon_sym_LT_EQ2] = ACTIONS(1699), + [anon_sym_GT_EQ2] = ACTIONS(1699), + [anon_sym_EQ_TILDE2] = ACTIONS(1699), + [anon_sym_BANG_TILDE2] = ACTIONS(1699), + [anon_sym_like2] = ACTIONS(1699), + [anon_sym_not_DASHlike2] = ACTIONS(1699), + [anon_sym_STAR_STAR2] = ACTIONS(1699), + [anon_sym_PLUS_PLUS2] = ACTIONS(1615), + [anon_sym_SLASH2] = ACTIONS(1615), + [anon_sym_mod2] = ACTIONS(1699), + [anon_sym_SLASH_SLASH2] = ACTIONS(1699), + [anon_sym_PLUS2] = ACTIONS(1615), + [anon_sym_bit_DASHshl2] = ACTIONS(1699), + [anon_sym_bit_DASHshr2] = ACTIONS(1699), + [anon_sym_bit_DASHand2] = ACTIONS(1699), + [anon_sym_bit_DASHxor2] = ACTIONS(1699), + [anon_sym_bit_DASHor2] = ACTIONS(1699), + [anon_sym_DOT_DOT2] = ACTIONS(1619), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1621), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1621), + [anon_sym_err_GT] = ACTIONS(1615), + [anon_sym_out_GT] = ACTIONS(1615), + [anon_sym_e_GT] = ACTIONS(1615), + [anon_sym_o_GT] = ACTIONS(1615), + [anon_sym_err_PLUSout_GT] = ACTIONS(1615), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1615), + [anon_sym_o_PLUSe_GT] = ACTIONS(1615), + [anon_sym_e_PLUSo_GT] = ACTIONS(1615), + [anon_sym_err_GT_GT] = ACTIONS(1699), + [anon_sym_out_GT_GT] = ACTIONS(1699), + [anon_sym_e_GT_GT] = ACTIONS(1699), + [anon_sym_o_GT_GT] = ACTIONS(1699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1699), [anon_sym_POUND] = ACTIONS(3), }, [STATE(452)] = { - [sym__expr_parenthesized_immediate] = STATE(1342), - [sym__immediate_decimal] = STATE(1350), - [sym_val_variable] = STATE(1342), + [sym_cmd_identifier] = STATE(4519), + [sym__match_pattern_record_body] = STATE(5118), + [sym_expr_parenthesized] = STATE(5494), + [sym__spread_parenthesized] = STATE(5018), + [sym__spread_variable] = STATE(5020), + [sym_val_variable] = STATE(4401), + [sym_val_number] = STATE(5494), + [sym__val_number_decimal] = STATE(1998), + [sym__val_number] = STATE(710), + [sym_val_string] = STATE(5494), + [sym__raw_str] = STATE(2274), + [sym__str_double_quotes] = STATE(2274), + [sym__str_single_quotes] = STATE(2274), + [sym__str_back_ticks] = STATE(2274), + [sym_val_interpolated] = STATE(5494), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym__spread_record] = STATE(5018), + [sym_record_entry] = STATE(4737), + [sym__record_key] = STATE(5156), [sym_comment] = STATE(452), - [ts_builtin_sym_end] = ACTIONS(1681), - [anon_sym_in] = ACTIONS(1681), - [sym__newline] = ACTIONS(1681), - [anon_sym_SEMI] = ACTIONS(1681), - [anon_sym_PIPE] = ACTIONS(1681), - [anon_sym_err_GT_PIPE] = ACTIONS(1681), - [anon_sym_out_GT_PIPE] = ACTIONS(1681), - [anon_sym_e_GT_PIPE] = ACTIONS(1681), - [anon_sym_o_GT_PIPE] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1681), - [anon_sym_DOLLAR] = ACTIONS(1685), - [anon_sym_GT2] = ACTIONS(1683), - [anon_sym_DASH2] = ACTIONS(1683), - [anon_sym_STAR2] = ACTIONS(1683), - [anon_sym_and2] = ACTIONS(1681), - [anon_sym_xor2] = ACTIONS(1681), - [anon_sym_or2] = ACTIONS(1681), - [anon_sym_not_DASHin2] = ACTIONS(1681), - [anon_sym_has2] = ACTIONS(1681), - [anon_sym_not_DASHhas2] = ACTIONS(1681), - [anon_sym_starts_DASHwith2] = ACTIONS(1681), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1681), - [anon_sym_ends_DASHwith2] = ACTIONS(1681), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1681), - [anon_sym_EQ_EQ2] = ACTIONS(1681), - [anon_sym_BANG_EQ2] = ACTIONS(1681), - [anon_sym_LT2] = ACTIONS(1683), - [anon_sym_LT_EQ2] = ACTIONS(1681), - [anon_sym_GT_EQ2] = ACTIONS(1681), - [anon_sym_EQ_TILDE2] = ACTIONS(1681), - [anon_sym_BANG_TILDE2] = ACTIONS(1681), - [anon_sym_like2] = ACTIONS(1681), - [anon_sym_not_DASHlike2] = ACTIONS(1681), - [anon_sym_LPAREN2] = ACTIONS(1687), - [anon_sym_STAR_STAR2] = ACTIONS(1681), - [anon_sym_PLUS_PLUS2] = ACTIONS(1681), - [anon_sym_SLASH2] = ACTIONS(1683), - [anon_sym_mod2] = ACTIONS(1681), - [anon_sym_SLASH_SLASH2] = ACTIONS(1681), - [anon_sym_PLUS2] = ACTIONS(1683), - [anon_sym_bit_DASHshl2] = ACTIONS(1681), - [anon_sym_bit_DASHshr2] = ACTIONS(1681), - [anon_sym_bit_DASHand2] = ACTIONS(1681), - [anon_sym_bit_DASHxor2] = ACTIONS(1681), - [anon_sym_bit_DASHor2] = ACTIONS(1681), - [aux_sym__immediate_decimal_token1] = ACTIONS(1758), - [aux_sym__immediate_decimal_token2] = ACTIONS(1758), - [aux_sym__immediate_decimal_token3] = ACTIONS(1693), - [aux_sym__immediate_decimal_token4] = ACTIONS(1693), - [anon_sym_err_GT] = ACTIONS(1683), - [anon_sym_out_GT] = ACTIONS(1683), - [anon_sym_e_GT] = ACTIONS(1683), - [anon_sym_o_GT] = ACTIONS(1683), - [anon_sym_err_PLUSout_GT] = ACTIONS(1683), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1683), - [anon_sym_o_PLUSe_GT] = ACTIONS(1683), - [anon_sym_e_PLUSo_GT] = ACTIONS(1683), - [anon_sym_err_GT_GT] = ACTIONS(1681), - [anon_sym_out_GT_GT] = ACTIONS(1681), - [anon_sym_e_GT_GT] = ACTIONS(1681), - [anon_sym_o_GT_GT] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1681), + [aux_sym__types_body_repeat1] = STATE(499), + [aux_sym__match_pattern_record_body_repeat1] = STATE(698), + [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_finally] = ACTIONS(137), + [anon_sym_match] = ACTIONS(137), + [anon_sym_in] = ACTIONS(143), + [anon_sym_true] = ACTIONS(1754), + [anon_sym_false] = ACTIONS(1754), + [anon_sym_null] = ACTIONS(1754), + [aux_sym_cmd_identifier_token3] = ACTIONS(1756), + [aux_sym_cmd_identifier_token4] = ACTIONS(1756), + [aux_sym_cmd_identifier_token5] = ACTIONS(1756), + [sym__newline] = ACTIONS(1758), + [anon_sym_LPAREN] = ACTIONS(1760), + [anon_sym_DOLLAR] = ACTIONS(1798), + [anon_sym_DASH2] = ACTIONS(175), + [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(1766), + [aux_sym__val_number_decimal_token2] = ACTIONS(1768), + [aux_sym__val_number_decimal_token3] = ACTIONS(1770), + [aux_sym__val_number_decimal_token4] = ACTIONS(1770), + [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(1772), + [anon_sym_SQUOTE] = ACTIONS(1774), + [anon_sym_BQUOTE] = ACTIONS(1776), + [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(1778), }, [STATE(453)] = { [sym_comment] = STATE(453), - [anon_sym_in] = ACTIONS(1770), - [sym__newline] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1770), - [anon_sym_PIPE] = ACTIONS(1770), - [anon_sym_err_GT_PIPE] = ACTIONS(1770), - [anon_sym_out_GT_PIPE] = ACTIONS(1770), - [anon_sym_e_GT_PIPE] = ACTIONS(1770), - [anon_sym_o_GT_PIPE] = ACTIONS(1770), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1770), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1770), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1770), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1770), - [anon_sym_RPAREN] = ACTIONS(1770), - [anon_sym_GT2] = ACTIONS(1772), - [anon_sym_DASH2] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1770), - [anon_sym_RBRACE] = ACTIONS(1770), - [anon_sym_STAR2] = ACTIONS(1772), - [anon_sym_and2] = ACTIONS(1770), - [anon_sym_xor2] = ACTIONS(1770), - [anon_sym_or2] = ACTIONS(1770), - [anon_sym_not_DASHin2] = ACTIONS(1770), - [anon_sym_has2] = ACTIONS(1770), - [anon_sym_not_DASHhas2] = ACTIONS(1770), - [anon_sym_starts_DASHwith2] = ACTIONS(1770), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1770), - [anon_sym_ends_DASHwith2] = ACTIONS(1770), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1770), - [anon_sym_EQ_EQ2] = ACTIONS(1770), - [anon_sym_BANG_EQ2] = ACTIONS(1770), - [anon_sym_LT2] = ACTIONS(1772), - [anon_sym_LT_EQ2] = ACTIONS(1770), - [anon_sym_GT_EQ2] = ACTIONS(1770), - [anon_sym_EQ_TILDE2] = ACTIONS(1770), - [anon_sym_BANG_TILDE2] = ACTIONS(1770), - [anon_sym_like2] = ACTIONS(1770), - [anon_sym_not_DASHlike2] = ACTIONS(1770), - [anon_sym_LPAREN2] = ACTIONS(1770), - [anon_sym_STAR_STAR2] = ACTIONS(1770), - [anon_sym_PLUS_PLUS2] = ACTIONS(1770), - [anon_sym_SLASH2] = ACTIONS(1772), - [anon_sym_mod2] = ACTIONS(1770), - [anon_sym_SLASH_SLASH2] = ACTIONS(1770), - [anon_sym_PLUS2] = ACTIONS(1772), - [anon_sym_bit_DASHshl2] = ACTIONS(1770), - [anon_sym_bit_DASHshr2] = ACTIONS(1770), - [anon_sym_bit_DASHand2] = ACTIONS(1770), - [anon_sym_bit_DASHxor2] = ACTIONS(1770), - [anon_sym_bit_DASHor2] = ACTIONS(1770), - [anon_sym_DOT_DOT2] = ACTIONS(1772), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1770), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1770), - [aux_sym__immediate_decimal_token1] = ACTIONS(1774), - [aux_sym__immediate_decimal_token5] = ACTIONS(1776), - [anon_sym_err_GT] = ACTIONS(1772), - [anon_sym_out_GT] = ACTIONS(1772), - [anon_sym_e_GT] = ACTIONS(1772), - [anon_sym_o_GT] = ACTIONS(1772), - [anon_sym_err_PLUSout_GT] = ACTIONS(1772), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1772), - [anon_sym_o_PLUSe_GT] = ACTIONS(1772), - [anon_sym_e_PLUSo_GT] = ACTIONS(1772), - [anon_sym_err_GT_GT] = ACTIONS(1770), - [anon_sym_out_GT_GT] = ACTIONS(1770), - [anon_sym_e_GT_GT] = ACTIONS(1770), - [anon_sym_o_GT_GT] = ACTIONS(1770), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1770), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1770), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1770), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1770), - [sym__unquoted_pattern] = ACTIONS(1772), + [anon_sym_in] = ACTIONS(769), + [sym__newline] = ACTIONS(769), + [anon_sym_SEMI] = ACTIONS(769), + [anon_sym_PIPE] = ACTIONS(769), + [anon_sym_err_GT_PIPE] = ACTIONS(769), + [anon_sym_out_GT_PIPE] = ACTIONS(769), + [anon_sym_e_GT_PIPE] = ACTIONS(769), + [anon_sym_o_GT_PIPE] = ACTIONS(769), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(769), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(769), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(769), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(769), + [anon_sym_RPAREN] = ACTIONS(769), + [anon_sym_GT2] = ACTIONS(767), + [anon_sym_DASH2] = ACTIONS(769), + [anon_sym_RBRACE] = ACTIONS(769), + [anon_sym_STAR2] = ACTIONS(767), + [anon_sym_and2] = ACTIONS(769), + [anon_sym_xor2] = ACTIONS(769), + [anon_sym_or2] = ACTIONS(769), + [anon_sym_not_DASHin2] = ACTIONS(769), + [anon_sym_has2] = ACTIONS(769), + [anon_sym_not_DASHhas2] = ACTIONS(769), + [anon_sym_starts_DASHwith2] = ACTIONS(769), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(769), + [anon_sym_ends_DASHwith2] = ACTIONS(769), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(769), + [anon_sym_EQ_EQ2] = ACTIONS(769), + [anon_sym_BANG_EQ2] = ACTIONS(769), + [anon_sym_LT2] = ACTIONS(767), + [anon_sym_LT_EQ2] = ACTIONS(769), + [anon_sym_GT_EQ2] = ACTIONS(769), + [anon_sym_EQ_TILDE2] = ACTIONS(769), + [anon_sym_BANG_TILDE2] = ACTIONS(769), + [anon_sym_like2] = ACTIONS(769), + [anon_sym_not_DASHlike2] = ACTIONS(769), + [anon_sym_LPAREN2] = ACTIONS(769), + [anon_sym_STAR_STAR2] = ACTIONS(769), + [anon_sym_PLUS_PLUS2] = ACTIONS(769), + [anon_sym_SLASH2] = ACTIONS(767), + [anon_sym_mod2] = ACTIONS(769), + [anon_sym_SLASH_SLASH2] = ACTIONS(769), + [anon_sym_PLUS2] = ACTIONS(767), + [anon_sym_bit_DASHshl2] = ACTIONS(769), + [anon_sym_bit_DASHshr2] = ACTIONS(769), + [anon_sym_bit_DASHand2] = ACTIONS(769), + [anon_sym_bit_DASHxor2] = ACTIONS(769), + [anon_sym_bit_DASHor2] = ACTIONS(769), + [anon_sym_DOT_DOT2] = ACTIONS(767), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(769), + [aux_sym__immediate_decimal_token5] = ACTIONS(1802), + [sym_filesize_unit] = ACTIONS(767), + [sym_duration_unit] = ACTIONS(769), + [anon_sym_err_GT] = ACTIONS(767), + [anon_sym_out_GT] = ACTIONS(767), + [anon_sym_e_GT] = ACTIONS(767), + [anon_sym_o_GT] = ACTIONS(767), + [anon_sym_err_PLUSout_GT] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT] = ACTIONS(767), + [anon_sym_o_PLUSe_GT] = ACTIONS(767), + [anon_sym_e_PLUSo_GT] = ACTIONS(767), + [anon_sym_err_GT_GT] = ACTIONS(769), + [anon_sym_out_GT_GT] = ACTIONS(769), + [anon_sym_e_GT_GT] = ACTIONS(769), + [anon_sym_o_GT_GT] = ACTIONS(769), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(769), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(769), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(769), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(769), + [sym__unquoted_pattern] = ACTIONS(767), [anon_sym_POUND] = ACTIONS(3), }, [STATE(454)] = { + [sym_cmd_identifier] = STATE(4519), + [sym_expr_parenthesized] = STATE(5494), + [sym__spread_parenthesized] = STATE(5018), + [sym__spread_variable] = STATE(5020), + [sym_val_variable] = STATE(5494), + [sym_val_number] = STATE(5494), + [sym__val_number_decimal] = STATE(1998), + [sym__val_number] = STATE(710), + [sym_val_string] = STATE(5494), + [sym__raw_str] = STATE(2274), + [sym__str_double_quotes] = STATE(2274), + [sym__str_single_quotes] = STATE(2274), + [sym__str_back_ticks] = STATE(2274), + [sym_val_interpolated] = STATE(5494), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym__spread_record] = STATE(5018), + [sym_record_body] = STATE(5334), + [sym_record_entry] = STATE(4653), + [sym__record_key] = STATE(5156), [sym_comment] = STATE(454), - [anon_sym_EQ] = ACTIONS(1778), - [anon_sym_PLUS_EQ] = ACTIONS(1780), - [anon_sym_DASH_EQ] = ACTIONS(1780), - [anon_sym_STAR_EQ] = ACTIONS(1780), - [anon_sym_SLASH_EQ] = ACTIONS(1780), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1780), - [anon_sym_in] = ACTIONS(1713), - [sym__newline] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1713), - [anon_sym_err_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_GT_PIPE] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), - [anon_sym_RPAREN] = ACTIONS(1713), - [anon_sym_GT2] = ACTIONS(1614), - [anon_sym_DASH2] = ACTIONS(1614), - [anon_sym_STAR2] = ACTIONS(1614), - [anon_sym_and2] = ACTIONS(1713), - [anon_sym_xor2] = ACTIONS(1713), - [anon_sym_or2] = ACTIONS(1713), - [anon_sym_not_DASHin2] = ACTIONS(1713), - [anon_sym_has2] = ACTIONS(1713), - [anon_sym_not_DASHhas2] = ACTIONS(1713), - [anon_sym_starts_DASHwith2] = ACTIONS(1713), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1713), - [anon_sym_ends_DASHwith2] = ACTIONS(1713), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1713), - [anon_sym_EQ_EQ2] = ACTIONS(1713), - [anon_sym_BANG_EQ2] = ACTIONS(1713), - [anon_sym_LT2] = ACTIONS(1614), - [anon_sym_LT_EQ2] = ACTIONS(1713), - [anon_sym_GT_EQ2] = ACTIONS(1713), - [anon_sym_EQ_TILDE2] = ACTIONS(1713), - [anon_sym_BANG_TILDE2] = ACTIONS(1713), - [anon_sym_like2] = ACTIONS(1713), - [anon_sym_not_DASHlike2] = ACTIONS(1713), - [anon_sym_STAR_STAR2] = ACTIONS(1713), - [anon_sym_PLUS_PLUS2] = ACTIONS(1614), - [anon_sym_SLASH2] = ACTIONS(1614), - [anon_sym_mod2] = ACTIONS(1713), - [anon_sym_SLASH_SLASH2] = ACTIONS(1713), - [anon_sym_PLUS2] = ACTIONS(1614), - [anon_sym_bit_DASHshl2] = ACTIONS(1713), - [anon_sym_bit_DASHshr2] = ACTIONS(1713), - [anon_sym_bit_DASHand2] = ACTIONS(1713), - [anon_sym_bit_DASHxor2] = ACTIONS(1713), - [anon_sym_bit_DASHor2] = ACTIONS(1713), - [anon_sym_DOT_DOT2] = ACTIONS(1618), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1620), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1620), - [anon_sym_err_GT] = ACTIONS(1614), - [anon_sym_out_GT] = ACTIONS(1614), - [anon_sym_e_GT] = ACTIONS(1614), - [anon_sym_o_GT] = ACTIONS(1614), - [anon_sym_err_PLUSout_GT] = ACTIONS(1614), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1614), - [anon_sym_o_PLUSe_GT] = ACTIONS(1614), - [anon_sym_e_PLUSo_GT] = ACTIONS(1614), - [anon_sym_err_GT_GT] = ACTIONS(1713), - [anon_sym_out_GT_GT] = ACTIONS(1713), - [anon_sym_e_GT_GT] = ACTIONS(1713), - [anon_sym_o_GT_GT] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), + [aux_sym__types_body_repeat1] = STATE(514), + [aux_sym_record_body_repeat1] = STATE(721), + [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_finally] = ACTIONS(137), + [anon_sym_match] = ACTIONS(137), + [anon_sym_in] = ACTIONS(143), + [anon_sym_true] = ACTIONS(1754), + [anon_sym_false] = ACTIONS(1754), + [anon_sym_null] = ACTIONS(1754), + [aux_sym_cmd_identifier_token3] = ACTIONS(1756), + [aux_sym_cmd_identifier_token4] = ACTIONS(1756), + [aux_sym_cmd_identifier_token5] = ACTIONS(1756), + [sym__newline] = ACTIONS(1758), + [anon_sym_LPAREN] = ACTIONS(1760), + [anon_sym_DOLLAR] = ACTIONS(1762), + [anon_sym_DASH2] = ACTIONS(175), + [anon_sym_RBRACE] = ACTIONS(1804), + [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(1766), + [aux_sym__val_number_decimal_token2] = ACTIONS(1768), + [aux_sym__val_number_decimal_token3] = ACTIONS(1770), + [aux_sym__val_number_decimal_token4] = ACTIONS(1770), + [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(1772), + [anon_sym_SQUOTE] = ACTIONS(1774), + [anon_sym_BQUOTE] = ACTIONS(1776), + [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(1778), }, [STATE(455)] = { - [sym__expr_parenthesized_immediate] = STATE(1352), - [sym__immediate_decimal] = STATE(1278), - [sym_val_variable] = STATE(1352), + [sym_cmd_identifier] = STATE(4519), + [sym_expr_parenthesized] = STATE(5494), + [sym__spread_parenthesized] = STATE(5018), + [sym__spread_variable] = STATE(5020), + [sym_val_variable] = STATE(5494), + [sym_val_number] = STATE(5494), + [sym__val_number_decimal] = STATE(1998), + [sym__val_number] = STATE(710), + [sym_val_string] = STATE(5494), + [sym__raw_str] = STATE(2274), + [sym__str_double_quotes] = STATE(2274), + [sym__str_single_quotes] = STATE(2274), + [sym__str_back_ticks] = STATE(2274), + [sym_val_interpolated] = STATE(5494), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym__spread_record] = STATE(5018), + [sym_record_body] = STATE(5095), + [sym_record_entry] = STATE(4653), + [sym__record_key] = STATE(5156), [sym_comment] = STATE(455), - [ts_builtin_sym_end] = ACTIONS(1663), - [anon_sym_in] = ACTIONS(1663), - [sym__newline] = ACTIONS(1663), - [anon_sym_SEMI] = ACTIONS(1663), - [anon_sym_PIPE] = ACTIONS(1663), - [anon_sym_err_GT_PIPE] = ACTIONS(1663), - [anon_sym_out_GT_PIPE] = ACTIONS(1663), - [anon_sym_e_GT_PIPE] = ACTIONS(1663), - [anon_sym_o_GT_PIPE] = ACTIONS(1663), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1663), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1663), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1663), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1663), - [anon_sym_DOLLAR] = ACTIONS(1685), - [anon_sym_GT2] = ACTIONS(1665), - [anon_sym_DASH2] = ACTIONS(1665), - [anon_sym_STAR2] = ACTIONS(1665), - [anon_sym_and2] = ACTIONS(1663), - [anon_sym_xor2] = ACTIONS(1663), - [anon_sym_or2] = ACTIONS(1663), - [anon_sym_not_DASHin2] = ACTIONS(1663), - [anon_sym_has2] = ACTIONS(1663), - [anon_sym_not_DASHhas2] = ACTIONS(1663), - [anon_sym_starts_DASHwith2] = ACTIONS(1663), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1663), - [anon_sym_ends_DASHwith2] = ACTIONS(1663), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1663), - [anon_sym_EQ_EQ2] = ACTIONS(1663), - [anon_sym_BANG_EQ2] = ACTIONS(1663), - [anon_sym_LT2] = ACTIONS(1665), - [anon_sym_LT_EQ2] = ACTIONS(1663), - [anon_sym_GT_EQ2] = ACTIONS(1663), - [anon_sym_EQ_TILDE2] = ACTIONS(1663), - [anon_sym_BANG_TILDE2] = ACTIONS(1663), - [anon_sym_like2] = ACTIONS(1663), - [anon_sym_not_DASHlike2] = ACTIONS(1663), - [anon_sym_LPAREN2] = ACTIONS(1687), - [anon_sym_STAR_STAR2] = ACTIONS(1663), - [anon_sym_PLUS_PLUS2] = ACTIONS(1663), - [anon_sym_SLASH2] = ACTIONS(1665), - [anon_sym_mod2] = ACTIONS(1663), - [anon_sym_SLASH_SLASH2] = ACTIONS(1663), - [anon_sym_PLUS2] = ACTIONS(1665), - [anon_sym_bit_DASHshl2] = ACTIONS(1663), - [anon_sym_bit_DASHshr2] = ACTIONS(1663), - [anon_sym_bit_DASHand2] = ACTIONS(1663), - [anon_sym_bit_DASHxor2] = ACTIONS(1663), - [anon_sym_bit_DASHor2] = ACTIONS(1663), - [aux_sym__immediate_decimal_token1] = ACTIONS(1758), - [aux_sym__immediate_decimal_token2] = ACTIONS(1758), - [aux_sym__immediate_decimal_token3] = ACTIONS(1693), - [aux_sym__immediate_decimal_token4] = ACTIONS(1693), - [anon_sym_err_GT] = ACTIONS(1665), - [anon_sym_out_GT] = ACTIONS(1665), - [anon_sym_e_GT] = ACTIONS(1665), - [anon_sym_o_GT] = ACTIONS(1665), - [anon_sym_err_PLUSout_GT] = ACTIONS(1665), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1665), - [anon_sym_o_PLUSe_GT] = ACTIONS(1665), - [anon_sym_e_PLUSo_GT] = ACTIONS(1665), - [anon_sym_err_GT_GT] = ACTIONS(1663), - [anon_sym_out_GT_GT] = ACTIONS(1663), - [anon_sym_e_GT_GT] = ACTIONS(1663), - [anon_sym_o_GT_GT] = ACTIONS(1663), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1663), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1663), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1663), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1663), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(456)] = { - [sym__expr_parenthesized_immediate] = STATE(1279), - [sym__immediate_decimal] = STATE(1282), - [sym_val_variable] = STATE(1279), - [sym_comment] = STATE(456), - [ts_builtin_sym_end] = ACTIONS(1651), - [anon_sym_in] = ACTIONS(1651), - [sym__newline] = ACTIONS(1651), - [anon_sym_SEMI] = ACTIONS(1651), - [anon_sym_PIPE] = ACTIONS(1651), - [anon_sym_err_GT_PIPE] = ACTIONS(1651), - [anon_sym_out_GT_PIPE] = ACTIONS(1651), - [anon_sym_e_GT_PIPE] = ACTIONS(1651), - [anon_sym_o_GT_PIPE] = ACTIONS(1651), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1651), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1651), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1651), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1651), - [anon_sym_DOLLAR] = ACTIONS(1685), - [anon_sym_GT2] = ACTIONS(1653), - [anon_sym_DASH2] = ACTIONS(1653), - [anon_sym_STAR2] = ACTIONS(1653), - [anon_sym_and2] = ACTIONS(1651), - [anon_sym_xor2] = ACTIONS(1651), - [anon_sym_or2] = ACTIONS(1651), - [anon_sym_not_DASHin2] = ACTIONS(1651), - [anon_sym_has2] = ACTIONS(1651), - [anon_sym_not_DASHhas2] = ACTIONS(1651), - [anon_sym_starts_DASHwith2] = ACTIONS(1651), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1651), - [anon_sym_ends_DASHwith2] = ACTIONS(1651), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1651), - [anon_sym_EQ_EQ2] = ACTIONS(1651), - [anon_sym_BANG_EQ2] = ACTIONS(1651), - [anon_sym_LT2] = ACTIONS(1653), - [anon_sym_LT_EQ2] = ACTIONS(1651), - [anon_sym_GT_EQ2] = ACTIONS(1651), - [anon_sym_EQ_TILDE2] = ACTIONS(1651), - [anon_sym_BANG_TILDE2] = ACTIONS(1651), - [anon_sym_like2] = ACTIONS(1651), - [anon_sym_not_DASHlike2] = ACTIONS(1651), - [anon_sym_LPAREN2] = ACTIONS(1687), - [anon_sym_STAR_STAR2] = ACTIONS(1651), - [anon_sym_PLUS_PLUS2] = ACTIONS(1651), - [anon_sym_SLASH2] = ACTIONS(1653), - [anon_sym_mod2] = ACTIONS(1651), - [anon_sym_SLASH_SLASH2] = ACTIONS(1651), - [anon_sym_PLUS2] = ACTIONS(1653), - [anon_sym_bit_DASHshl2] = ACTIONS(1651), - [anon_sym_bit_DASHshr2] = ACTIONS(1651), - [anon_sym_bit_DASHand2] = ACTIONS(1651), - [anon_sym_bit_DASHxor2] = ACTIONS(1651), - [anon_sym_bit_DASHor2] = ACTIONS(1651), - [aux_sym__immediate_decimal_token1] = ACTIONS(1758), - [aux_sym__immediate_decimal_token2] = ACTIONS(1758), - [aux_sym__immediate_decimal_token3] = ACTIONS(1693), - [aux_sym__immediate_decimal_token4] = ACTIONS(1693), - [anon_sym_err_GT] = ACTIONS(1653), - [anon_sym_out_GT] = ACTIONS(1653), - [anon_sym_e_GT] = ACTIONS(1653), - [anon_sym_o_GT] = ACTIONS(1653), - [anon_sym_err_PLUSout_GT] = ACTIONS(1653), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1653), - [anon_sym_o_PLUSe_GT] = ACTIONS(1653), - [anon_sym_e_PLUSo_GT] = ACTIONS(1653), - [anon_sym_err_GT_GT] = ACTIONS(1651), - [anon_sym_out_GT_GT] = ACTIONS(1651), - [anon_sym_e_GT_GT] = ACTIONS(1651), - [anon_sym_o_GT_GT] = ACTIONS(1651), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1651), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1651), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1651), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1651), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(457)] = { - [sym__expr_parenthesized_immediate] = STATE(1299), - [sym__immediate_decimal] = STATE(1312), - [sym_val_variable] = STATE(1299), - [sym_comment] = STATE(457), - [ts_builtin_sym_end] = ACTIONS(1598), - [anon_sym_in] = ACTIONS(1598), - [sym__newline] = ACTIONS(1598), - [anon_sym_SEMI] = ACTIONS(1598), - [anon_sym_PIPE] = ACTIONS(1598), - [anon_sym_err_GT_PIPE] = ACTIONS(1598), - [anon_sym_out_GT_PIPE] = ACTIONS(1598), - [anon_sym_e_GT_PIPE] = ACTIONS(1598), - [anon_sym_o_GT_PIPE] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1598), - [anon_sym_DOLLAR] = ACTIONS(1685), - [anon_sym_GT2] = ACTIONS(1602), - [anon_sym_DASH2] = ACTIONS(1602), - [anon_sym_STAR2] = ACTIONS(1602), - [anon_sym_and2] = ACTIONS(1598), - [anon_sym_xor2] = ACTIONS(1598), - [anon_sym_or2] = ACTIONS(1598), - [anon_sym_not_DASHin2] = ACTIONS(1598), - [anon_sym_has2] = ACTIONS(1598), - [anon_sym_not_DASHhas2] = ACTIONS(1598), - [anon_sym_starts_DASHwith2] = ACTIONS(1598), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1598), - [anon_sym_ends_DASHwith2] = ACTIONS(1598), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1598), - [anon_sym_EQ_EQ2] = ACTIONS(1598), - [anon_sym_BANG_EQ2] = ACTIONS(1598), - [anon_sym_LT2] = ACTIONS(1602), - [anon_sym_LT_EQ2] = ACTIONS(1598), - [anon_sym_GT_EQ2] = ACTIONS(1598), - [anon_sym_EQ_TILDE2] = ACTIONS(1598), - [anon_sym_BANG_TILDE2] = ACTIONS(1598), - [anon_sym_like2] = ACTIONS(1598), - [anon_sym_not_DASHlike2] = ACTIONS(1598), - [anon_sym_LPAREN2] = ACTIONS(1687), - [anon_sym_STAR_STAR2] = ACTIONS(1598), - [anon_sym_PLUS_PLUS2] = ACTIONS(1598), - [anon_sym_SLASH2] = ACTIONS(1602), - [anon_sym_mod2] = ACTIONS(1598), - [anon_sym_SLASH_SLASH2] = ACTIONS(1598), - [anon_sym_PLUS2] = ACTIONS(1602), - [anon_sym_bit_DASHshl2] = ACTIONS(1598), - [anon_sym_bit_DASHshr2] = ACTIONS(1598), - [anon_sym_bit_DASHand2] = ACTIONS(1598), - [anon_sym_bit_DASHxor2] = ACTIONS(1598), - [anon_sym_bit_DASHor2] = ACTIONS(1598), - [aux_sym__immediate_decimal_token1] = ACTIONS(1758), - [aux_sym__immediate_decimal_token2] = ACTIONS(1758), - [aux_sym__immediate_decimal_token3] = ACTIONS(1693), - [aux_sym__immediate_decimal_token4] = ACTIONS(1693), - [anon_sym_err_GT] = ACTIONS(1602), - [anon_sym_out_GT] = ACTIONS(1602), - [anon_sym_e_GT] = ACTIONS(1602), - [anon_sym_o_GT] = ACTIONS(1602), - [anon_sym_err_PLUSout_GT] = ACTIONS(1602), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1602), - [anon_sym_o_PLUSe_GT] = ACTIONS(1602), - [anon_sym_e_PLUSo_GT] = ACTIONS(1602), - [anon_sym_err_GT_GT] = ACTIONS(1598), - [anon_sym_out_GT_GT] = ACTIONS(1598), - [anon_sym_e_GT_GT] = ACTIONS(1598), - [anon_sym_o_GT_GT] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1598), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(458)] = { - [sym_comment] = STATE(458), - [anon_sym_if] = ACTIONS(1549), - [anon_sym_in] = ACTIONS(1549), - [sym__newline] = ACTIONS(1549), - [anon_sym_SEMI] = ACTIONS(1549), - [anon_sym_PIPE] = ACTIONS(1549), - [anon_sym_err_GT_PIPE] = ACTIONS(1549), - [anon_sym_out_GT_PIPE] = ACTIONS(1549), - [anon_sym_e_GT_PIPE] = ACTIONS(1549), - [anon_sym_o_GT_PIPE] = ACTIONS(1549), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1549), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1549), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1549), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1549), - [anon_sym_RPAREN] = ACTIONS(1549), - [anon_sym_GT2] = ACTIONS(1547), - [anon_sym_DASH2] = ACTIONS(1549), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_RBRACE] = ACTIONS(1549), - [anon_sym_EQ_GT] = ACTIONS(1549), - [anon_sym_STAR2] = ACTIONS(1547), - [anon_sym_and2] = ACTIONS(1549), - [anon_sym_xor2] = ACTIONS(1549), - [anon_sym_or2] = ACTIONS(1549), - [anon_sym_not_DASHin2] = ACTIONS(1549), - [anon_sym_has2] = ACTIONS(1549), - [anon_sym_not_DASHhas2] = ACTIONS(1549), - [anon_sym_starts_DASHwith2] = ACTIONS(1549), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1549), - [anon_sym_ends_DASHwith2] = ACTIONS(1549), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1549), - [anon_sym_EQ_EQ2] = ACTIONS(1549), - [anon_sym_BANG_EQ2] = ACTIONS(1549), - [anon_sym_LT2] = ACTIONS(1547), - [anon_sym_LT_EQ2] = ACTIONS(1549), - [anon_sym_GT_EQ2] = ACTIONS(1549), - [anon_sym_EQ_TILDE2] = ACTIONS(1549), - [anon_sym_BANG_TILDE2] = ACTIONS(1549), - [anon_sym_like2] = ACTIONS(1549), - [anon_sym_not_DASHlike2] = ACTIONS(1549), - [anon_sym_STAR_STAR2] = ACTIONS(1549), - [anon_sym_PLUS_PLUS2] = ACTIONS(1549), - [anon_sym_SLASH2] = ACTIONS(1547), - [anon_sym_mod2] = ACTIONS(1549), - [anon_sym_SLASH_SLASH2] = ACTIONS(1549), - [anon_sym_PLUS2] = ACTIONS(1547), - [anon_sym_bit_DASHshl2] = ACTIONS(1549), - [anon_sym_bit_DASHshr2] = ACTIONS(1549), - [anon_sym_bit_DASHand2] = ACTIONS(1549), - [anon_sym_bit_DASHxor2] = ACTIONS(1549), - [anon_sym_bit_DASHor2] = ACTIONS(1549), - [anon_sym_DOT_DOT2] = ACTIONS(1547), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1549), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1549), - [anon_sym_COLON2] = ACTIONS(1549), - [anon_sym_DOT2] = ACTIONS(1547), - [anon_sym_err_GT] = ACTIONS(1547), - [anon_sym_out_GT] = ACTIONS(1547), - [anon_sym_e_GT] = ACTIONS(1547), - [anon_sym_o_GT] = ACTIONS(1547), - [anon_sym_err_PLUSout_GT] = ACTIONS(1547), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1547), - [anon_sym_o_PLUSe_GT] = ACTIONS(1547), - [anon_sym_e_PLUSo_GT] = ACTIONS(1547), - [anon_sym_err_GT_GT] = ACTIONS(1549), - [anon_sym_out_GT_GT] = ACTIONS(1549), - [anon_sym_e_GT_GT] = ACTIONS(1549), - [anon_sym_o_GT_GT] = ACTIONS(1549), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1549), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1549), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1549), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1549), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(459)] = { - [sym_cmd_identifier] = STATE(4276), - [sym_expr_parenthesized] = STATE(5339), - [sym__spread_parenthesized] = STATE(4883), - [sym__spread_variable] = STATE(4892), - [sym_val_variable] = STATE(5339), - [sym_val_number] = STATE(5339), - [sym__val_number_decimal] = STATE(1984), - [sym__val_number] = STATE(707), - [sym_val_string] = STATE(5339), - [sym__raw_str] = STATE(2266), - [sym__str_double_quotes] = STATE(2266), - [sym__str_single_quotes] = STATE(2266), - [sym__str_back_ticks] = STATE(2266), - [sym_val_interpolated] = STATE(5339), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym__spread_record] = STATE(4883), - [sym_record_body] = STATE(5161), - [sym_record_entry] = STATE(4687), - [sym__record_key] = STATE(5341), - [sym_comment] = STATE(459), - [aux_sym__types_body_repeat1] = STATE(584), - [aux_sym_record_body_repeat1] = STATE(813), + [aux_sym__types_body_repeat1] = STATE(514), + [aux_sym_record_body_repeat1] = STATE(721), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -83838,62 +84377,363 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(137), [anon_sym_try] = ACTIONS(137), [anon_sym_catch] = ACTIONS(137), + [anon_sym_finally] = ACTIONS(137), [anon_sym_match] = ACTIONS(137), [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1782), - [anon_sym_false] = ACTIONS(1782), - [anon_sym_null] = ACTIONS(1782), - [aux_sym_cmd_identifier_token3] = ACTIONS(1784), - [aux_sym_cmd_identifier_token4] = ACTIONS(1784), - [aux_sym_cmd_identifier_token5] = ACTIONS(1784), - [sym__newline] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1788), - [anon_sym_DOLLAR] = ACTIONS(1790), + [anon_sym_true] = ACTIONS(1754), + [anon_sym_false] = ACTIONS(1754), + [anon_sym_null] = ACTIONS(1754), + [aux_sym_cmd_identifier_token3] = ACTIONS(1756), + [aux_sym_cmd_identifier_token4] = ACTIONS(1756), + [aux_sym_cmd_identifier_token5] = ACTIONS(1756), + [sym__newline] = ACTIONS(1758), + [anon_sym_LPAREN] = ACTIONS(1760), + [anon_sym_DOLLAR] = ACTIONS(1762), [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1806), [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(1794), - [aux_sym__val_number_decimal_token2] = ACTIONS(1796), - [aux_sym__val_number_decimal_token3] = ACTIONS(1798), - [aux_sym__val_number_decimal_token4] = ACTIONS(1798), + [aux_sym__val_number_decimal_token1] = ACTIONS(1766), + [aux_sym__val_number_decimal_token2] = ACTIONS(1768), + [aux_sym__val_number_decimal_token3] = ACTIONS(1770), + [aux_sym__val_number_decimal_token4] = ACTIONS(1770), [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(1800), - [anon_sym_SQUOTE] = ACTIONS(1802), - [anon_sym_BQUOTE] = ACTIONS(1804), + [anon_sym_DQUOTE] = ACTIONS(1772), + [anon_sym_SQUOTE] = ACTIONS(1774), + [anon_sym_BQUOTE] = ACTIONS(1776), [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(1806), + [sym_raw_string_begin] = ACTIONS(1778), + }, + [STATE(456)] = { + [sym_comment] = STATE(456), + [anon_sym_if] = 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_RPAREN] = ACTIONS(1470), + [anon_sym_GT2] = ACTIONS(1468), + [anon_sym_DASH2] = ACTIONS(1470), + [anon_sym_LBRACE] = ACTIONS(1470), + [anon_sym_RBRACE] = ACTIONS(1470), + [anon_sym_EQ_GT] = ACTIONS(1470), + [anon_sym_STAR2] = ACTIONS(1468), + [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(1468), + [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(1468), + [anon_sym_mod2] = ACTIONS(1470), + [anon_sym_SLASH_SLASH2] = ACTIONS(1470), + [anon_sym_PLUS2] = ACTIONS(1468), + [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(1468), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1470), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1470), + [anon_sym_COLON2] = ACTIONS(1470), + [anon_sym_DOT2] = ACTIONS(1468), + [anon_sym_err_GT] = ACTIONS(1468), + [anon_sym_out_GT] = ACTIONS(1468), + [anon_sym_e_GT] = ACTIONS(1468), + [anon_sym_o_GT] = ACTIONS(1468), + [anon_sym_err_PLUSout_GT] = ACTIONS(1468), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1468), + [anon_sym_o_PLUSe_GT] = ACTIONS(1468), + [anon_sym_e_PLUSo_GT] = ACTIONS(1468), + [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(3), + }, + [STATE(457)] = { + [sym__expr_parenthesized_immediate] = STATE(1282), + [sym__immediate_decimal] = STATE(1283), + [sym_val_variable] = STATE(1282), + [sym_comment] = STATE(457), + [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_DOLLAR] = ACTIONS(1685), + [anon_sym_GT2] = ACTIONS(1679), + [anon_sym_DASH2] = ACTIONS(1679), + [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_LPAREN2] = ACTIONS(1687), + [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), + [aux_sym__immediate_decimal_token1] = ACTIONS(1728), + [aux_sym__immediate_decimal_token2] = ACTIONS(1728), + [aux_sym__immediate_decimal_token3] = ACTIONS(1693), + [aux_sym__immediate_decimal_token4] = ACTIONS(1693), + [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(458)] = { + [sym_comment] = STATE(458), + [anon_sym_if] = 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(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_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(459)] = { + [sym__expr_parenthesized_immediate] = STATE(1284), + [sym__immediate_decimal] = STATE(1285), + [sym_val_variable] = STATE(1284), + [sym_comment] = STATE(459), + [ts_builtin_sym_end] = ACTIONS(1659), + [anon_sym_in] = ACTIONS(1659), + [sym__newline] = ACTIONS(1659), + [anon_sym_SEMI] = ACTIONS(1659), + [anon_sym_PIPE] = ACTIONS(1659), + [anon_sym_err_GT_PIPE] = ACTIONS(1659), + [anon_sym_out_GT_PIPE] = ACTIONS(1659), + [anon_sym_e_GT_PIPE] = ACTIONS(1659), + [anon_sym_o_GT_PIPE] = ACTIONS(1659), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1659), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1659), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1659), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(1685), + [anon_sym_GT2] = ACTIONS(1661), + [anon_sym_DASH2] = ACTIONS(1661), + [anon_sym_STAR2] = ACTIONS(1661), + [anon_sym_and2] = ACTIONS(1659), + [anon_sym_xor2] = ACTIONS(1659), + [anon_sym_or2] = ACTIONS(1659), + [anon_sym_not_DASHin2] = ACTIONS(1659), + [anon_sym_has2] = ACTIONS(1659), + [anon_sym_not_DASHhas2] = ACTIONS(1659), + [anon_sym_starts_DASHwith2] = ACTIONS(1659), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1659), + [anon_sym_ends_DASHwith2] = ACTIONS(1659), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1659), + [anon_sym_EQ_EQ2] = ACTIONS(1659), + [anon_sym_BANG_EQ2] = ACTIONS(1659), + [anon_sym_LT2] = ACTIONS(1661), + [anon_sym_LT_EQ2] = ACTIONS(1659), + [anon_sym_GT_EQ2] = ACTIONS(1659), + [anon_sym_EQ_TILDE2] = ACTIONS(1659), + [anon_sym_BANG_TILDE2] = ACTIONS(1659), + [anon_sym_like2] = ACTIONS(1659), + [anon_sym_not_DASHlike2] = ACTIONS(1659), + [anon_sym_LPAREN2] = ACTIONS(1687), + [anon_sym_STAR_STAR2] = ACTIONS(1659), + [anon_sym_PLUS_PLUS2] = ACTIONS(1659), + [anon_sym_SLASH2] = ACTIONS(1661), + [anon_sym_mod2] = ACTIONS(1659), + [anon_sym_SLASH_SLASH2] = ACTIONS(1659), + [anon_sym_PLUS2] = ACTIONS(1661), + [anon_sym_bit_DASHshl2] = ACTIONS(1659), + [anon_sym_bit_DASHshr2] = ACTIONS(1659), + [anon_sym_bit_DASHand2] = ACTIONS(1659), + [anon_sym_bit_DASHxor2] = ACTIONS(1659), + [anon_sym_bit_DASHor2] = ACTIONS(1659), + [aux_sym__immediate_decimal_token1] = ACTIONS(1728), + [aux_sym__immediate_decimal_token2] = ACTIONS(1728), + [aux_sym__immediate_decimal_token3] = ACTIONS(1693), + [aux_sym__immediate_decimal_token4] = ACTIONS(1693), + [anon_sym_err_GT] = ACTIONS(1661), + [anon_sym_out_GT] = ACTIONS(1661), + [anon_sym_e_GT] = ACTIONS(1661), + [anon_sym_o_GT] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT] = ACTIONS(1661), + [anon_sym_err_GT_GT] = ACTIONS(1659), + [anon_sym_out_GT_GT] = ACTIONS(1659), + [anon_sym_e_GT_GT] = ACTIONS(1659), + [anon_sym_o_GT_GT] = ACTIONS(1659), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1659), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1659), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1659), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1659), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(460)] = { - [sym_cmd_identifier] = STATE(4276), - [sym_expr_parenthesized] = STATE(5339), - [sym__spread_parenthesized] = STATE(4883), - [sym__spread_variable] = STATE(4892), - [sym_val_variable] = STATE(5339), - [sym_val_number] = STATE(5339), - [sym__val_number_decimal] = STATE(1984), - [sym__val_number] = STATE(707), - [sym_val_string] = STATE(5339), - [sym__raw_str] = STATE(2266), - [sym__str_double_quotes] = STATE(2266), - [sym__str_single_quotes] = STATE(2266), - [sym__str_back_ticks] = STATE(2266), - [sym_val_interpolated] = STATE(5339), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym__spread_record] = STATE(4883), - [sym_record_body] = STATE(5220), - [sym_record_entry] = STATE(4687), - [sym__record_key] = STATE(5341), + [sym_cmd_identifier] = STATE(4519), + [sym_expr_parenthesized] = STATE(5494), + [sym__spread_parenthesized] = STATE(5018), + [sym__spread_variable] = STATE(5020), + [sym_val_variable] = STATE(5494), + [sym_val_number] = STATE(5494), + [sym__val_number_decimal] = STATE(1998), + [sym__val_number] = STATE(710), + [sym_val_string] = STATE(5494), + [sym__raw_str] = STATE(2274), + [sym__str_double_quotes] = STATE(2274), + [sym__str_single_quotes] = STATE(2274), + [sym__str_back_ticks] = STATE(2274), + [sym_val_interpolated] = STATE(5494), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym__spread_record] = STATE(5018), + [sym_record_body] = STATE(5110), + [sym_record_entry] = STATE(4653), + [sym__record_key] = STATE(5156), [sym_comment] = STATE(460), - [aux_sym__types_body_repeat1] = STATE(584), - [aux_sym_record_body_repeat1] = STATE(813), + [aux_sym__types_body_repeat1] = STATE(514), + [aux_sym_record_body_repeat1] = STATE(721), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -83912,136 +84752,288 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(137), [anon_sym_try] = ACTIONS(137), [anon_sym_catch] = ACTIONS(137), + [anon_sym_finally] = ACTIONS(137), [anon_sym_match] = ACTIONS(137), [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1782), - [anon_sym_false] = ACTIONS(1782), - [anon_sym_null] = ACTIONS(1782), - [aux_sym_cmd_identifier_token3] = ACTIONS(1784), - [aux_sym_cmd_identifier_token4] = ACTIONS(1784), - [aux_sym_cmd_identifier_token5] = ACTIONS(1784), - [sym__newline] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1788), - [anon_sym_DOLLAR] = ACTIONS(1790), + [anon_sym_true] = ACTIONS(1754), + [anon_sym_false] = ACTIONS(1754), + [anon_sym_null] = ACTIONS(1754), + [aux_sym_cmd_identifier_token3] = ACTIONS(1756), + [aux_sym_cmd_identifier_token4] = ACTIONS(1756), + [aux_sym_cmd_identifier_token5] = ACTIONS(1756), + [sym__newline] = ACTIONS(1758), + [anon_sym_LPAREN] = ACTIONS(1760), + [anon_sym_DOLLAR] = ACTIONS(1762), [anon_sym_DASH2] = ACTIONS(175), [anon_sym_RBRACE] = ACTIONS(1808), [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(1794), - [aux_sym__val_number_decimal_token2] = ACTIONS(1796), - [aux_sym__val_number_decimal_token3] = ACTIONS(1798), - [aux_sym__val_number_decimal_token4] = ACTIONS(1798), + [aux_sym__val_number_decimal_token1] = ACTIONS(1766), + [aux_sym__val_number_decimal_token2] = ACTIONS(1768), + [aux_sym__val_number_decimal_token3] = ACTIONS(1770), + [aux_sym__val_number_decimal_token4] = ACTIONS(1770), [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(1800), - [anon_sym_SQUOTE] = ACTIONS(1802), - [anon_sym_BQUOTE] = ACTIONS(1804), + [anon_sym_DQUOTE] = ACTIONS(1772), + [anon_sym_SQUOTE] = ACTIONS(1774), + [anon_sym_BQUOTE] = ACTIONS(1776), [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(1806), + [sym_raw_string_begin] = ACTIONS(1778), }, [STATE(461)] = { + [sym__expr_parenthesized_immediate] = STATE(1286), + [sym__immediate_decimal] = STATE(1287), + [sym_val_variable] = STATE(1286), [sym_comment] = STATE(461), - [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), - [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), + [ts_builtin_sym_end] = ACTIONS(1669), + [anon_sym_in] = ACTIONS(1669), + [sym__newline] = ACTIONS(1669), + [anon_sym_SEMI] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1669), + [anon_sym_err_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_GT_PIPE] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), + [anon_sym_DOLLAR] = ACTIONS(1685), + [anon_sym_GT2] = ACTIONS(1671), + [anon_sym_DASH2] = ACTIONS(1671), + [anon_sym_STAR2] = ACTIONS(1671), + [anon_sym_and2] = ACTIONS(1669), + [anon_sym_xor2] = ACTIONS(1669), + [anon_sym_or2] = ACTIONS(1669), + [anon_sym_not_DASHin2] = ACTIONS(1669), + [anon_sym_has2] = ACTIONS(1669), + [anon_sym_not_DASHhas2] = ACTIONS(1669), + [anon_sym_starts_DASHwith2] = ACTIONS(1669), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1669), + [anon_sym_ends_DASHwith2] = ACTIONS(1669), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1669), + [anon_sym_EQ_EQ2] = ACTIONS(1669), + [anon_sym_BANG_EQ2] = ACTIONS(1669), + [anon_sym_LT2] = ACTIONS(1671), + [anon_sym_LT_EQ2] = ACTIONS(1669), + [anon_sym_GT_EQ2] = ACTIONS(1669), + [anon_sym_EQ_TILDE2] = ACTIONS(1669), + [anon_sym_BANG_TILDE2] = ACTIONS(1669), + [anon_sym_like2] = ACTIONS(1669), + [anon_sym_not_DASHlike2] = ACTIONS(1669), + [anon_sym_LPAREN2] = ACTIONS(1687), + [anon_sym_STAR_STAR2] = ACTIONS(1669), + [anon_sym_PLUS_PLUS2] = ACTIONS(1669), + [anon_sym_SLASH2] = ACTIONS(1671), + [anon_sym_mod2] = ACTIONS(1669), + [anon_sym_SLASH_SLASH2] = ACTIONS(1669), + [anon_sym_PLUS2] = ACTIONS(1671), + [anon_sym_bit_DASHshl2] = ACTIONS(1669), + [anon_sym_bit_DASHshr2] = ACTIONS(1669), + [anon_sym_bit_DASHand2] = ACTIONS(1669), + [anon_sym_bit_DASHxor2] = ACTIONS(1669), + [anon_sym_bit_DASHor2] = ACTIONS(1669), + [aux_sym__immediate_decimal_token1] = ACTIONS(1728), + [aux_sym__immediate_decimal_token2] = ACTIONS(1728), + [aux_sym__immediate_decimal_token3] = ACTIONS(1693), + [aux_sym__immediate_decimal_token4] = ACTIONS(1693), + [anon_sym_err_GT] = ACTIONS(1671), + [anon_sym_out_GT] = ACTIONS(1671), + [anon_sym_e_GT] = ACTIONS(1671), + [anon_sym_o_GT] = ACTIONS(1671), + [anon_sym_err_PLUSout_GT] = ACTIONS(1671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1671), + [anon_sym_o_PLUSe_GT] = ACTIONS(1671), + [anon_sym_e_PLUSo_GT] = ACTIONS(1671), + [anon_sym_err_GT_GT] = ACTIONS(1669), + [anon_sym_out_GT_GT] = ACTIONS(1669), + [anon_sym_e_GT_GT] = ACTIONS(1669), + [anon_sym_o_GT_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1669), [anon_sym_POUND] = ACTIONS(3), }, [STATE(462)] = { - [sym_cmd_identifier] = STATE(4276), - [sym_expr_parenthesized] = STATE(5339), - [sym__spread_parenthesized] = STATE(4883), - [sym__spread_variable] = STATE(4892), - [sym_val_variable] = STATE(5339), - [sym_val_number] = STATE(5339), - [sym__val_number_decimal] = STATE(1984), - [sym__val_number] = STATE(707), - [sym_val_string] = STATE(5339), - [sym__raw_str] = STATE(2266), - [sym__str_double_quotes] = STATE(2266), - [sym__str_single_quotes] = STATE(2266), - [sym__str_back_ticks] = STATE(2266), - [sym_val_interpolated] = STATE(5339), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym__spread_record] = STATE(4883), - [sym_record_body] = STATE(5116), - [sym_record_entry] = STATE(4687), - [sym__record_key] = STATE(5341), + [sym__expr_parenthesized_immediate] = STATE(1288), + [sym__immediate_decimal] = STATE(1289), + [sym_val_variable] = STATE(1288), [sym_comment] = STATE(462), - [aux_sym__types_body_repeat1] = STATE(584), - [aux_sym_record_body_repeat1] = STATE(813), + [ts_builtin_sym_end] = ACTIONS(1681), + [anon_sym_in] = ACTIONS(1681), + [sym__newline] = ACTIONS(1681), + [anon_sym_SEMI] = ACTIONS(1681), + [anon_sym_PIPE] = ACTIONS(1681), + [anon_sym_err_GT_PIPE] = ACTIONS(1681), + [anon_sym_out_GT_PIPE] = ACTIONS(1681), + [anon_sym_e_GT_PIPE] = ACTIONS(1681), + [anon_sym_o_GT_PIPE] = ACTIONS(1681), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1681), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1681), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1681), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1681), + [anon_sym_DOLLAR] = ACTIONS(1685), + [anon_sym_GT2] = ACTIONS(1683), + [anon_sym_DASH2] = ACTIONS(1683), + [anon_sym_STAR2] = ACTIONS(1683), + [anon_sym_and2] = ACTIONS(1681), + [anon_sym_xor2] = ACTIONS(1681), + [anon_sym_or2] = ACTIONS(1681), + [anon_sym_not_DASHin2] = ACTIONS(1681), + [anon_sym_has2] = ACTIONS(1681), + [anon_sym_not_DASHhas2] = ACTIONS(1681), + [anon_sym_starts_DASHwith2] = ACTIONS(1681), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1681), + [anon_sym_ends_DASHwith2] = ACTIONS(1681), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1681), + [anon_sym_EQ_EQ2] = ACTIONS(1681), + [anon_sym_BANG_EQ2] = ACTIONS(1681), + [anon_sym_LT2] = ACTIONS(1683), + [anon_sym_LT_EQ2] = ACTIONS(1681), + [anon_sym_GT_EQ2] = ACTIONS(1681), + [anon_sym_EQ_TILDE2] = ACTIONS(1681), + [anon_sym_BANG_TILDE2] = ACTIONS(1681), + [anon_sym_like2] = ACTIONS(1681), + [anon_sym_not_DASHlike2] = ACTIONS(1681), + [anon_sym_LPAREN2] = ACTIONS(1687), + [anon_sym_STAR_STAR2] = ACTIONS(1681), + [anon_sym_PLUS_PLUS2] = ACTIONS(1681), + [anon_sym_SLASH2] = ACTIONS(1683), + [anon_sym_mod2] = ACTIONS(1681), + [anon_sym_SLASH_SLASH2] = ACTIONS(1681), + [anon_sym_PLUS2] = ACTIONS(1683), + [anon_sym_bit_DASHshl2] = ACTIONS(1681), + [anon_sym_bit_DASHshr2] = ACTIONS(1681), + [anon_sym_bit_DASHand2] = ACTIONS(1681), + [anon_sym_bit_DASHxor2] = ACTIONS(1681), + [anon_sym_bit_DASHor2] = ACTIONS(1681), + [aux_sym__immediate_decimal_token1] = ACTIONS(1728), + [aux_sym__immediate_decimal_token2] = ACTIONS(1728), + [aux_sym__immediate_decimal_token3] = ACTIONS(1693), + [aux_sym__immediate_decimal_token4] = ACTIONS(1693), + [anon_sym_err_GT] = ACTIONS(1683), + [anon_sym_out_GT] = ACTIONS(1683), + [anon_sym_e_GT] = ACTIONS(1683), + [anon_sym_o_GT] = ACTIONS(1683), + [anon_sym_err_PLUSout_GT] = ACTIONS(1683), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1683), + [anon_sym_o_PLUSe_GT] = ACTIONS(1683), + [anon_sym_e_PLUSo_GT] = ACTIONS(1683), + [anon_sym_err_GT_GT] = ACTIONS(1681), + [anon_sym_out_GT_GT] = ACTIONS(1681), + [anon_sym_e_GT_GT] = ACTIONS(1681), + [anon_sym_o_GT_GT] = ACTIONS(1681), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1681), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1681), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1681), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1681), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(463)] = { + [sym__expr_parenthesized_immediate] = STATE(1348), + [sym__immediate_decimal] = STATE(1349), + [sym_val_variable] = STATE(1348), + [sym_comment] = STATE(463), + [ts_builtin_sym_end] = ACTIONS(1599), + [anon_sym_in] = ACTIONS(1599), + [sym__newline] = ACTIONS(1599), + [anon_sym_SEMI] = ACTIONS(1599), + [anon_sym_PIPE] = ACTIONS(1599), + [anon_sym_err_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_GT_PIPE] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1599), + [anon_sym_DOLLAR] = ACTIONS(1685), + [anon_sym_GT2] = ACTIONS(1603), + [anon_sym_DASH2] = ACTIONS(1603), + [anon_sym_STAR2] = ACTIONS(1603), + [anon_sym_and2] = ACTIONS(1599), + [anon_sym_xor2] = ACTIONS(1599), + [anon_sym_or2] = ACTIONS(1599), + [anon_sym_not_DASHin2] = ACTIONS(1599), + [anon_sym_has2] = ACTIONS(1599), + [anon_sym_not_DASHhas2] = ACTIONS(1599), + [anon_sym_starts_DASHwith2] = ACTIONS(1599), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1599), + [anon_sym_ends_DASHwith2] = ACTIONS(1599), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1599), + [anon_sym_EQ_EQ2] = ACTIONS(1599), + [anon_sym_BANG_EQ2] = ACTIONS(1599), + [anon_sym_LT2] = ACTIONS(1603), + [anon_sym_LT_EQ2] = ACTIONS(1599), + [anon_sym_GT_EQ2] = ACTIONS(1599), + [anon_sym_EQ_TILDE2] = ACTIONS(1599), + [anon_sym_BANG_TILDE2] = ACTIONS(1599), + [anon_sym_like2] = ACTIONS(1599), + [anon_sym_not_DASHlike2] = ACTIONS(1599), + [anon_sym_LPAREN2] = ACTIONS(1687), + [anon_sym_STAR_STAR2] = ACTIONS(1599), + [anon_sym_PLUS_PLUS2] = ACTIONS(1599), + [anon_sym_SLASH2] = ACTIONS(1603), + [anon_sym_mod2] = ACTIONS(1599), + [anon_sym_SLASH_SLASH2] = ACTIONS(1599), + [anon_sym_PLUS2] = ACTIONS(1603), + [anon_sym_bit_DASHshl2] = ACTIONS(1599), + [anon_sym_bit_DASHshr2] = ACTIONS(1599), + [anon_sym_bit_DASHand2] = ACTIONS(1599), + [anon_sym_bit_DASHxor2] = ACTIONS(1599), + [anon_sym_bit_DASHor2] = ACTIONS(1599), + [aux_sym__immediate_decimal_token1] = ACTIONS(1728), + [aux_sym__immediate_decimal_token2] = ACTIONS(1728), + [aux_sym__immediate_decimal_token3] = ACTIONS(1693), + [aux_sym__immediate_decimal_token4] = ACTIONS(1693), + [anon_sym_err_GT] = ACTIONS(1603), + [anon_sym_out_GT] = ACTIONS(1603), + [anon_sym_e_GT] = ACTIONS(1603), + [anon_sym_o_GT] = ACTIONS(1603), + [anon_sym_err_PLUSout_GT] = ACTIONS(1603), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1603), + [anon_sym_o_PLUSe_GT] = ACTIONS(1603), + [anon_sym_e_PLUSo_GT] = ACTIONS(1603), + [anon_sym_err_GT_GT] = ACTIONS(1599), + [anon_sym_out_GT_GT] = ACTIONS(1599), + [anon_sym_e_GT_GT] = ACTIONS(1599), + [anon_sym_o_GT_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1599), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(464)] = { + [sym_cmd_identifier] = STATE(4519), + [sym_expr_parenthesized] = STATE(5494), + [sym__spread_parenthesized] = STATE(5018), + [sym__spread_variable] = STATE(5020), + [sym_val_variable] = STATE(5494), + [sym_val_number] = STATE(5494), + [sym__val_number_decimal] = STATE(1998), + [sym__val_number] = STATE(710), + [sym_val_string] = STATE(5494), + [sym__raw_str] = STATE(2274), + [sym__str_double_quotes] = STATE(2274), + [sym__str_single_quotes] = STATE(2274), + [sym__str_back_ticks] = STATE(2274), + [sym_val_interpolated] = STATE(5494), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym__spread_record] = STATE(5018), + [sym_record_body] = STATE(5120), + [sym_record_entry] = STATE(4653), + [sym__record_key] = STATE(5156), + [sym_comment] = STATE(464), + [aux_sym__types_body_repeat1] = STATE(514), + [aux_sym_record_body_repeat1] = STATE(721), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -84060,358 +85052,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(137), [anon_sym_try] = ACTIONS(137), [anon_sym_catch] = ACTIONS(137), + [anon_sym_finally] = ACTIONS(137), [anon_sym_match] = ACTIONS(137), [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1782), - [anon_sym_false] = ACTIONS(1782), - [anon_sym_null] = ACTIONS(1782), - [aux_sym_cmd_identifier_token3] = ACTIONS(1784), - [aux_sym_cmd_identifier_token4] = ACTIONS(1784), - [aux_sym_cmd_identifier_token5] = ACTIONS(1784), - [sym__newline] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1788), - [anon_sym_DOLLAR] = ACTIONS(1790), + [anon_sym_true] = ACTIONS(1754), + [anon_sym_false] = ACTIONS(1754), + [anon_sym_null] = ACTIONS(1754), + [aux_sym_cmd_identifier_token3] = ACTIONS(1756), + [aux_sym_cmd_identifier_token4] = ACTIONS(1756), + [aux_sym_cmd_identifier_token5] = ACTIONS(1756), + [sym__newline] = ACTIONS(1758), + [anon_sym_LPAREN] = ACTIONS(1760), + [anon_sym_DOLLAR] = ACTIONS(1762), [anon_sym_DASH2] = ACTIONS(175), [anon_sym_RBRACE] = ACTIONS(1810), [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(1794), - [aux_sym__val_number_decimal_token2] = ACTIONS(1796), - [aux_sym__val_number_decimal_token3] = ACTIONS(1798), - [aux_sym__val_number_decimal_token4] = ACTIONS(1798), + [aux_sym__val_number_decimal_token1] = ACTIONS(1766), + [aux_sym__val_number_decimal_token2] = ACTIONS(1768), + [aux_sym__val_number_decimal_token3] = ACTIONS(1770), + [aux_sym__val_number_decimal_token4] = ACTIONS(1770), [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(1800), - [anon_sym_SQUOTE] = ACTIONS(1802), - [anon_sym_BQUOTE] = ACTIONS(1804), + [anon_sym_DQUOTE] = ACTIONS(1772), + [anon_sym_SQUOTE] = ACTIONS(1774), + [anon_sym_BQUOTE] = ACTIONS(1776), [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(1806), - }, - [STATE(463)] = { - [sym__expr_parenthesized_immediate] = STATE(4881), - [sym_comment] = STATE(463), - [ts_builtin_sym_end] = ACTIONS(886), - [anon_sym_in] = ACTIONS(886), - [sym__newline] = ACTIONS(886), - [anon_sym_SEMI] = ACTIONS(886), - [anon_sym_PIPE] = ACTIONS(886), - [anon_sym_err_GT_PIPE] = ACTIONS(886), - [anon_sym_out_GT_PIPE] = ACTIONS(886), - [anon_sym_e_GT_PIPE] = ACTIONS(886), - [anon_sym_o_GT_PIPE] = ACTIONS(886), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(886), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(886), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(886), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(886), - [anon_sym_GT2] = ACTIONS(866), - [anon_sym_DASH2] = ACTIONS(886), - [anon_sym_STAR2] = ACTIONS(866), - [anon_sym_and2] = ACTIONS(886), - [anon_sym_xor2] = ACTIONS(886), - [anon_sym_or2] = ACTIONS(886), - [anon_sym_not_DASHin2] = ACTIONS(886), - [anon_sym_has2] = ACTIONS(886), - [anon_sym_not_DASHhas2] = ACTIONS(886), - [anon_sym_starts_DASHwith2] = ACTIONS(886), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(886), - [anon_sym_ends_DASHwith2] = ACTIONS(886), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(886), - [anon_sym_EQ_EQ2] = ACTIONS(886), - [anon_sym_BANG_EQ2] = ACTIONS(886), - [anon_sym_LT2] = ACTIONS(866), - [anon_sym_LT_EQ2] = ACTIONS(886), - [anon_sym_GT_EQ2] = ACTIONS(886), - [anon_sym_EQ_TILDE2] = ACTIONS(886), - [anon_sym_BANG_TILDE2] = ACTIONS(886), - [anon_sym_like2] = ACTIONS(886), - [anon_sym_not_DASHlike2] = ACTIONS(886), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_STAR_STAR2] = ACTIONS(886), - [anon_sym_PLUS_PLUS2] = ACTIONS(886), - [anon_sym_SLASH2] = ACTIONS(866), - [anon_sym_mod2] = ACTIONS(886), - [anon_sym_SLASH_SLASH2] = ACTIONS(886), - [anon_sym_PLUS2] = ACTIONS(866), - [anon_sym_bit_DASHshl2] = ACTIONS(886), - [anon_sym_bit_DASHshr2] = ACTIONS(886), - [anon_sym_bit_DASHand2] = ACTIONS(886), - [anon_sym_bit_DASHxor2] = ACTIONS(886), - [anon_sym_bit_DASHor2] = ACTIONS(886), - [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(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(886), - [anon_sym_out_GT_GT] = ACTIONS(886), - [anon_sym_e_GT_GT] = ACTIONS(886), - [anon_sym_o_GT_GT] = ACTIONS(886), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(886), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(886), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(886), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(886), - [sym__unquoted_pattern] = ACTIONS(1820), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(464)] = { - [sym_comment] = STATE(464), - [anon_sym_in] = ACTIONS(1744), - [sym__newline] = ACTIONS(1744), - [anon_sym_SEMI] = ACTIONS(1744), - [anon_sym_PIPE] = ACTIONS(1744), - [anon_sym_err_GT_PIPE] = ACTIONS(1744), - [anon_sym_out_GT_PIPE] = ACTIONS(1744), - [anon_sym_e_GT_PIPE] = ACTIONS(1744), - [anon_sym_o_GT_PIPE] = ACTIONS(1744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1744), - [anon_sym_RPAREN] = ACTIONS(1744), - [anon_sym_GT2] = ACTIONS(1746), - [anon_sym_DASH2] = ACTIONS(1744), - [anon_sym_LBRACE] = ACTIONS(1744), - [anon_sym_RBRACE] = ACTIONS(1744), - [anon_sym_STAR2] = ACTIONS(1746), - [anon_sym_and2] = ACTIONS(1744), - [anon_sym_xor2] = ACTIONS(1744), - [anon_sym_or2] = ACTIONS(1744), - [anon_sym_not_DASHin2] = ACTIONS(1744), - [anon_sym_has2] = ACTIONS(1744), - [anon_sym_not_DASHhas2] = ACTIONS(1744), - [anon_sym_starts_DASHwith2] = ACTIONS(1744), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1744), - [anon_sym_ends_DASHwith2] = ACTIONS(1744), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1744), - [anon_sym_EQ_EQ2] = ACTIONS(1744), - [anon_sym_BANG_EQ2] = ACTIONS(1744), - [anon_sym_LT2] = ACTIONS(1746), - [anon_sym_LT_EQ2] = ACTIONS(1744), - [anon_sym_GT_EQ2] = ACTIONS(1744), - [anon_sym_EQ_TILDE2] = ACTIONS(1744), - [anon_sym_BANG_TILDE2] = ACTIONS(1744), - [anon_sym_like2] = ACTIONS(1744), - [anon_sym_not_DASHlike2] = ACTIONS(1744), - [anon_sym_LPAREN2] = ACTIONS(1744), - [anon_sym_STAR_STAR2] = ACTIONS(1744), - [anon_sym_PLUS_PLUS2] = ACTIONS(1744), - [anon_sym_SLASH2] = ACTIONS(1746), - [anon_sym_mod2] = ACTIONS(1744), - [anon_sym_SLASH_SLASH2] = ACTIONS(1744), - [anon_sym_PLUS2] = ACTIONS(1746), - [anon_sym_bit_DASHshl2] = ACTIONS(1744), - [anon_sym_bit_DASHshr2] = ACTIONS(1744), - [anon_sym_bit_DASHand2] = ACTIONS(1744), - [anon_sym_bit_DASHxor2] = ACTIONS(1744), - [anon_sym_bit_DASHor2] = ACTIONS(1744), - [anon_sym_DOT_DOT2] = ACTIONS(1746), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1744), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1744), - [aux_sym__immediate_decimal_token5] = ACTIONS(1750), - [anon_sym_err_GT] = ACTIONS(1746), - [anon_sym_out_GT] = ACTIONS(1746), - [anon_sym_e_GT] = ACTIONS(1746), - [anon_sym_o_GT] = ACTIONS(1746), - [anon_sym_err_PLUSout_GT] = ACTIONS(1746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1746), - [anon_sym_o_PLUSe_GT] = ACTIONS(1746), - [anon_sym_e_PLUSo_GT] = ACTIONS(1746), - [anon_sym_err_GT_GT] = ACTIONS(1744), - [anon_sym_out_GT_GT] = ACTIONS(1744), - [anon_sym_e_GT_GT] = ACTIONS(1744), - [anon_sym_o_GT_GT] = ACTIONS(1744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1744), - [sym__unquoted_pattern] = ACTIONS(1746), - [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1778), }, [STATE(465)] = { - [sym_expr_parenthesized] = STATE(4132), - [sym__spread_parenthesized] = STATE(4915), - [sym_val_range] = STATE(4939), - [sym__val_range] = STATE(4693), - [sym__value] = STATE(4939), - [sym_val_nothing] = STATE(4538), - [sym_val_bool] = STATE(4320), - [sym__spread_variable] = STATE(4943), - [sym_val_variable] = STATE(3965), - [sym_val_cellpath] = STATE(4538), - [sym_val_number] = STATE(4538), - [sym__val_number_decimal] = STATE(3621), - [sym__val_number] = STATE(4386), - [sym_val_duration] = STATE(4538), - [sym_val_filesize] = STATE(4538), - [sym_val_binary] = STATE(4538), - [sym_val_string] = STATE(4538), - [sym__raw_str] = STATE(3665), - [sym__str_double_quotes] = STATE(3665), - [sym__str_single_quotes] = STATE(3665), - [sym__str_back_ticks] = STATE(3665), - [sym_val_interpolated] = STATE(4538), - [sym__inter_single_quotes] = STATE(4680), - [sym__inter_double_quotes] = STATE(4683), - [sym_val_list] = STATE(4538), - [sym__spread_list] = STATE(4915), - [sym_val_entry] = STATE(4777), - [sym_val_record] = STATE(4538), - [sym_val_table] = STATE(4538), - [sym_val_closure] = STATE(4538), - [sym__unquoted_in_list] = STATE(4401), - [sym__unquoted_in_list_with_expr] = STATE(4939), - [sym__unquoted_anonymous_prefix] = STATE(4693), + [sym_cmd_identifier] = STATE(4519), + [sym_expr_parenthesized] = STATE(5494), + [sym__spread_parenthesized] = STATE(5018), + [sym__spread_variable] = STATE(5020), + [sym_val_variable] = STATE(5494), + [sym_val_number] = STATE(5494), + [sym__val_number_decimal] = STATE(1998), + [sym__val_number] = STATE(710), + [sym_val_string] = STATE(5494), + [sym__raw_str] = STATE(2274), + [sym__str_double_quotes] = STATE(2274), + [sym__str_single_quotes] = STATE(2274), + [sym__str_back_ticks] = STATE(2274), + [sym_val_interpolated] = STATE(5494), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym__spread_record] = STATE(5018), + [sym_record_body] = STATE(5458), + [sym_record_entry] = STATE(4653), + [sym__record_key] = STATE(5156), [sym_comment] = STATE(465), - [aux_sym__types_body_repeat1] = STATE(2153), - [aux_sym_list_body_repeat1] = STATE(530), - [anon_sym_true] = ACTIONS(1468), - [anon_sym_false] = ACTIONS(1468), - [anon_sym_null] = ACTIONS(1470), - [aux_sym_cmd_identifier_token3] = ACTIONS(1472), - [aux_sym_cmd_identifier_token4] = ACTIONS(1472), - [aux_sym_cmd_identifier_token5] = ACTIONS(1472), - [sym__newline] = ACTIONS(1572), - [anon_sym_LBRACK] = ACTIONS(1588), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1482), - [anon_sym_DOT_DOT] = ACTIONS(1484), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1486), - [anon_sym_DOT_DOT_LT] = ACTIONS(1486), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1488), - [aux_sym__val_number_decimal_token2] = ACTIONS(1490), - [aux_sym__val_number_decimal_token3] = ACTIONS(1492), - [aux_sym__val_number_decimal_token4] = ACTIONS(1492), - [aux_sym__val_number_token1] = ACTIONS(1414), - [aux_sym__val_number_token2] = ACTIONS(1414), - [aux_sym__val_number_token3] = ACTIONS(1414), - [anon_sym_0b] = ACTIONS(1416), - [anon_sym_0o] = ACTIONS(1418), - [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1494), - [anon_sym_DQUOTE] = ACTIONS(1422), - [anon_sym_SQUOTE] = ACTIONS(1424), - [anon_sym_BQUOTE] = ACTIONS(1426), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1428), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1430), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1432), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1436), - }, - [STATE(466)] = { - [sym_comment] = STATE(466), - [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), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(467)] = { - [sym_cmd_identifier] = STATE(4276), - [sym_expr_parenthesized] = STATE(5339), - [sym__spread_parenthesized] = STATE(4883), - [sym__spread_variable] = STATE(4892), - [sym_val_variable] = STATE(5339), - [sym_val_number] = STATE(5339), - [sym__val_number_decimal] = STATE(1984), - [sym__val_number] = STATE(707), - [sym_val_string] = STATE(5339), - [sym__raw_str] = STATE(2266), - [sym__str_double_quotes] = STATE(2266), - [sym__str_single_quotes] = STATE(2266), - [sym__str_back_ticks] = STATE(2266), - [sym_val_interpolated] = STATE(5339), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym__spread_record] = STATE(4883), - [sym_record_body] = STATE(5088), - [sym_record_entry] = STATE(4687), - [sym__record_key] = STATE(5341), - [sym_comment] = STATE(467), - [aux_sym__types_body_repeat1] = STATE(584), - [aux_sym_record_body_repeat1] = STATE(813), + [aux_sym__types_body_repeat1] = STATE(514), + [aux_sym_record_body_repeat1] = STATE(721), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -84430,115 +85127,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(137), [anon_sym_try] = ACTIONS(137), [anon_sym_catch] = ACTIONS(137), + [anon_sym_finally] = ACTIONS(137), [anon_sym_match] = ACTIONS(137), [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1782), - [anon_sym_false] = ACTIONS(1782), - [anon_sym_null] = ACTIONS(1782), - [aux_sym_cmd_identifier_token3] = ACTIONS(1784), - [aux_sym_cmd_identifier_token4] = ACTIONS(1784), - [aux_sym_cmd_identifier_token5] = ACTIONS(1784), - [sym__newline] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1788), - [anon_sym_DOLLAR] = ACTIONS(1790), + [anon_sym_true] = ACTIONS(1754), + [anon_sym_false] = ACTIONS(1754), + [anon_sym_null] = ACTIONS(1754), + [aux_sym_cmd_identifier_token3] = ACTIONS(1756), + [aux_sym_cmd_identifier_token4] = ACTIONS(1756), + [aux_sym_cmd_identifier_token5] = ACTIONS(1756), + [sym__newline] = ACTIONS(1758), + [anon_sym_LPAREN] = ACTIONS(1760), + [anon_sym_DOLLAR] = ACTIONS(1762), [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_RBRACE] = ACTIONS(1822), + [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(1794), - [aux_sym__val_number_decimal_token2] = ACTIONS(1796), - [aux_sym__val_number_decimal_token3] = ACTIONS(1798), - [aux_sym__val_number_decimal_token4] = ACTIONS(1798), + [aux_sym__val_number_decimal_token1] = ACTIONS(1766), + [aux_sym__val_number_decimal_token2] = ACTIONS(1768), + [aux_sym__val_number_decimal_token3] = ACTIONS(1770), + [aux_sym__val_number_decimal_token4] = ACTIONS(1770), [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(1800), - [anon_sym_SQUOTE] = ACTIONS(1802), - [anon_sym_BQUOTE] = ACTIONS(1804), + [anon_sym_DQUOTE] = ACTIONS(1772), + [anon_sym_SQUOTE] = ACTIONS(1774), + [anon_sym_BQUOTE] = ACTIONS(1776), [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(1806), - }, - [STATE(468)] = { - [sym_comment] = STATE(468), - [anon_sym_in] = ACTIONS(862), - [sym__newline] = ACTIONS(862), - [anon_sym_SEMI] = ACTIONS(862), - [anon_sym_PIPE] = ACTIONS(862), - [anon_sym_err_GT_PIPE] = ACTIONS(862), - [anon_sym_out_GT_PIPE] = ACTIONS(862), - [anon_sym_e_GT_PIPE] = ACTIONS(862), - [anon_sym_o_GT_PIPE] = ACTIONS(862), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(862), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(862), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(862), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(862), - [anon_sym_RPAREN] = ACTIONS(862), - [anon_sym_GT2] = ACTIONS(860), - [anon_sym_DASH2] = ACTIONS(862), - [anon_sym_RBRACE] = ACTIONS(862), - [anon_sym_STAR2] = ACTIONS(860), - [anon_sym_and2] = ACTIONS(862), - [anon_sym_xor2] = ACTIONS(862), - [anon_sym_or2] = ACTIONS(862), - [anon_sym_not_DASHin2] = ACTIONS(862), - [anon_sym_has2] = ACTIONS(862), - [anon_sym_not_DASHhas2] = ACTIONS(862), - [anon_sym_starts_DASHwith2] = ACTIONS(862), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(862), - [anon_sym_ends_DASHwith2] = ACTIONS(862), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(862), - [anon_sym_EQ_EQ2] = ACTIONS(862), - [anon_sym_BANG_EQ2] = ACTIONS(862), - [anon_sym_LT2] = ACTIONS(860), - [anon_sym_LT_EQ2] = ACTIONS(862), - [anon_sym_GT_EQ2] = ACTIONS(862), - [anon_sym_EQ_TILDE2] = ACTIONS(862), - [anon_sym_BANG_TILDE2] = ACTIONS(862), - [anon_sym_like2] = ACTIONS(862), - [anon_sym_not_DASHlike2] = ACTIONS(862), - [anon_sym_LPAREN2] = ACTIONS(862), - [anon_sym_STAR_STAR2] = ACTIONS(862), - [anon_sym_PLUS_PLUS2] = ACTIONS(862), - [anon_sym_SLASH2] = ACTIONS(860), - [anon_sym_mod2] = ACTIONS(862), - [anon_sym_SLASH_SLASH2] = ACTIONS(862), - [anon_sym_PLUS2] = ACTIONS(860), - [anon_sym_bit_DASHshl2] = ACTIONS(862), - [anon_sym_bit_DASHshr2] = ACTIONS(862), - [anon_sym_bit_DASHand2] = ACTIONS(862), - [anon_sym_bit_DASHxor2] = ACTIONS(862), - [anon_sym_bit_DASHor2] = ACTIONS(862), - [anon_sym_DOT_DOT2] = ACTIONS(860), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(862), - [anon_sym_DOT_DOT_LT2] = ACTIONS(862), - [sym_filesize_unit] = ACTIONS(860), - [sym_duration_unit] = ACTIONS(862), - [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(862), - [anon_sym_out_GT_GT] = ACTIONS(862), - [anon_sym_e_GT_GT] = ACTIONS(862), - [anon_sym_o_GT_GT] = ACTIONS(862), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(862), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(862), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(862), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(862), - [sym__unquoted_pattern] = ACTIONS(860), - [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1778), }, - [STATE(469)] = { - [sym_comment] = STATE(469), - [ts_builtin_sym_end] = ACTIONS(749), + [STATE(466)] = { + [sym_comment] = STATE(466), [anon_sym_in] = ACTIONS(749), [sym__newline] = ACTIONS(749), [anon_sym_SEMI] = ACTIONS(749), @@ -84551,8 +85174,10 @@ 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), @@ -84588,7 +85213,7 @@ 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_token5] = ACTIONS(1742), + [aux_sym__immediate_decimal_token5] = ACTIONS(1705), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_err_GT] = ACTIONS(747), @@ -84610,30 +85235,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_pattern] = ACTIONS(747), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(470)] = { - [sym_cmd_identifier] = STATE(4276), - [sym_expr_parenthesized] = STATE(5339), - [sym__spread_parenthesized] = STATE(4883), - [sym__spread_variable] = STATE(4892), - [sym_val_variable] = STATE(5339), - [sym_val_number] = STATE(5339), - [sym__val_number_decimal] = STATE(1984), - [sym__val_number] = STATE(707), - [sym_val_string] = STATE(5339), - [sym__raw_str] = STATE(2266), - [sym__str_double_quotes] = STATE(2266), - [sym__str_single_quotes] = STATE(2266), - [sym__str_back_ticks] = STATE(2266), - [sym_val_interpolated] = STATE(5339), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym__spread_record] = STATE(4883), - [sym_record_body] = STATE(5202), - [sym_record_entry] = STATE(4687), - [sym__record_key] = STATE(5341), - [sym_comment] = STATE(470), - [aux_sym__types_body_repeat1] = STATE(584), - [aux_sym_record_body_repeat1] = STATE(813), + [STATE(467)] = { + [sym_cmd_identifier] = STATE(4519), + [sym__match_pattern_record_body] = STATE(5279), + [sym_expr_parenthesized] = STATE(5494), + [sym__spread_parenthesized] = STATE(5018), + [sym__spread_variable] = STATE(5020), + [sym_val_variable] = STATE(4401), + [sym_val_number] = STATE(5494), + [sym__val_number_decimal] = STATE(1998), + [sym__val_number] = STATE(710), + [sym_val_string] = STATE(5494), + [sym__raw_str] = STATE(2274), + [sym__str_double_quotes] = STATE(2274), + [sym__str_single_quotes] = STATE(2274), + [sym__str_back_ticks] = STATE(2274), + [sym_val_interpolated] = STATE(5494), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym__spread_record] = STATE(5018), + [sym_record_entry] = STATE(4737), + [sym__record_key] = STATE(5156), + [sym_comment] = STATE(467), + [aux_sym__types_body_repeat1] = STATE(499), + [aux_sym__match_pattern_record_body_repeat1] = STATE(698), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -84652,136 +85277,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(137), [anon_sym_try] = ACTIONS(137), [anon_sym_catch] = ACTIONS(137), + [anon_sym_finally] = ACTIONS(137), [anon_sym_match] = ACTIONS(137), [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1782), - [anon_sym_false] = ACTIONS(1782), - [anon_sym_null] = ACTIONS(1782), - [aux_sym_cmd_identifier_token3] = ACTIONS(1784), - [aux_sym_cmd_identifier_token4] = ACTIONS(1784), - [aux_sym_cmd_identifier_token5] = ACTIONS(1784), - [sym__newline] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1788), - [anon_sym_DOLLAR] = ACTIONS(1790), + [anon_sym_true] = ACTIONS(1754), + [anon_sym_false] = ACTIONS(1754), + [anon_sym_null] = ACTIONS(1754), + [aux_sym_cmd_identifier_token3] = ACTIONS(1756), + [aux_sym_cmd_identifier_token4] = ACTIONS(1756), + [aux_sym_cmd_identifier_token5] = ACTIONS(1756), + [sym__newline] = ACTIONS(1758), + [anon_sym_LPAREN] = ACTIONS(1760), + [anon_sym_DOLLAR] = ACTIONS(1798), [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_RBRACE] = ACTIONS(1824), + [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(1794), - [aux_sym__val_number_decimal_token2] = ACTIONS(1796), - [aux_sym__val_number_decimal_token3] = ACTIONS(1798), - [aux_sym__val_number_decimal_token4] = ACTIONS(1798), + [aux_sym__val_number_decimal_token1] = ACTIONS(1766), + [aux_sym__val_number_decimal_token2] = ACTIONS(1768), + [aux_sym__val_number_decimal_token3] = ACTIONS(1770), + [aux_sym__val_number_decimal_token4] = ACTIONS(1770), [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(1800), - [anon_sym_SQUOTE] = ACTIONS(1802), - [anon_sym_BQUOTE] = ACTIONS(1804), + [anon_sym_DQUOTE] = ACTIONS(1772), + [anon_sym_SQUOTE] = ACTIONS(1774), + [anon_sym_BQUOTE] = ACTIONS(1776), [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(1806), - }, - [STATE(471)] = { - [sym_comment] = STATE(471), - [anon_sym_if] = ACTIONS(1645), - [anon_sym_in] = ACTIONS(1645), - [sym__newline] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1645), - [anon_sym_err_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_GT_PIPE] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), - [anon_sym_RPAREN] = ACTIONS(1645), - [anon_sym_GT2] = ACTIONS(1647), - [anon_sym_DASH2] = ACTIONS(1645), - [anon_sym_LBRACE] = ACTIONS(1645), - [anon_sym_RBRACE] = ACTIONS(1645), - [anon_sym_EQ_GT] = ACTIONS(1645), - [anon_sym_STAR2] = ACTIONS(1647), - [anon_sym_and2] = ACTIONS(1645), - [anon_sym_xor2] = ACTIONS(1645), - [anon_sym_or2] = ACTIONS(1645), - [anon_sym_not_DASHin2] = ACTIONS(1645), - [anon_sym_has2] = ACTIONS(1645), - [anon_sym_not_DASHhas2] = ACTIONS(1645), - [anon_sym_starts_DASHwith2] = ACTIONS(1645), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1645), - [anon_sym_ends_DASHwith2] = ACTIONS(1645), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1645), - [anon_sym_EQ_EQ2] = ACTIONS(1645), - [anon_sym_BANG_EQ2] = ACTIONS(1645), - [anon_sym_LT2] = ACTIONS(1647), - [anon_sym_LT_EQ2] = ACTIONS(1645), - [anon_sym_GT_EQ2] = ACTIONS(1645), - [anon_sym_EQ_TILDE2] = ACTIONS(1645), - [anon_sym_BANG_TILDE2] = ACTIONS(1645), - [anon_sym_like2] = ACTIONS(1645), - [anon_sym_not_DASHlike2] = ACTIONS(1645), - [anon_sym_STAR_STAR2] = ACTIONS(1645), - [anon_sym_PLUS_PLUS2] = ACTIONS(1645), - [anon_sym_SLASH2] = ACTIONS(1647), - [anon_sym_mod2] = ACTIONS(1645), - [anon_sym_SLASH_SLASH2] = ACTIONS(1645), - [anon_sym_PLUS2] = ACTIONS(1647), - [anon_sym_bit_DASHshl2] = ACTIONS(1645), - [anon_sym_bit_DASHshr2] = ACTIONS(1645), - [anon_sym_bit_DASHand2] = ACTIONS(1645), - [anon_sym_bit_DASHxor2] = ACTIONS(1645), - [anon_sym_bit_DASHor2] = ACTIONS(1645), - [anon_sym_DOT_DOT2] = ACTIONS(1647), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1645), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1645), - [anon_sym_COLON2] = ACTIONS(1645), - [anon_sym_err_GT] = ACTIONS(1647), - [anon_sym_out_GT] = ACTIONS(1647), - [anon_sym_e_GT] = ACTIONS(1647), - [anon_sym_o_GT] = ACTIONS(1647), - [anon_sym_err_PLUSout_GT] = ACTIONS(1647), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1647), - [anon_sym_o_PLUSe_GT] = ACTIONS(1647), - [anon_sym_e_PLUSo_GT] = ACTIONS(1647), - [anon_sym_err_GT_GT] = ACTIONS(1645), - [anon_sym_out_GT_GT] = ACTIONS(1645), - [anon_sym_e_GT_GT] = ACTIONS(1645), - [anon_sym_o_GT_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), - [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1778), }, - [STATE(472)] = { - [sym_cmd_identifier] = STATE(4276), - [sym_expr_parenthesized] = STATE(5339), - [sym__spread_parenthesized] = STATE(4883), - [sym__spread_variable] = STATE(4892), - [sym_val_variable] = STATE(5339), - [sym_val_number] = STATE(5339), - [sym__val_number_decimal] = STATE(1984), - [sym__val_number] = STATE(707), - [sym_val_string] = STATE(5339), - [sym__raw_str] = STATE(2266), - [sym__str_double_quotes] = STATE(2266), - [sym__str_single_quotes] = STATE(2266), - [sym__str_back_ticks] = STATE(2266), - [sym_val_interpolated] = STATE(5339), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym__spread_record] = STATE(4883), - [sym_record_body] = STATE(4977), - [sym_record_entry] = STATE(4687), - [sym__record_key] = STATE(5341), - [sym_comment] = STATE(472), - [aux_sym__types_body_repeat1] = STATE(584), - [aux_sym_record_body_repeat1] = STATE(813), + [STATE(468)] = { + [sym_cmd_identifier] = STATE(4519), + [sym_expr_parenthesized] = STATE(5494), + [sym__spread_parenthesized] = STATE(5018), + [sym__spread_variable] = STATE(5020), + [sym_val_variable] = STATE(5494), + [sym_val_number] = STATE(5494), + [sym__val_number_decimal] = STATE(1998), + [sym__val_number] = STATE(710), + [sym_val_string] = STATE(5494), + [sym__raw_str] = STATE(2274), + [sym__str_double_quotes] = STATE(2274), + [sym__str_single_quotes] = STATE(2274), + [sym__str_back_ticks] = STATE(2274), + [sym_val_interpolated] = STATE(5494), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym__spread_record] = STATE(5018), + [sym_record_body] = STATE(5495), + [sym_record_entry] = STATE(4653), + [sym__record_key] = STATE(5156), + [sym_comment] = STATE(468), + [aux_sym__types_body_repeat1] = STATE(514), + [aux_sym_record_body_repeat1] = STATE(721), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -84800,62 +85352,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(137), [anon_sym_try] = ACTIONS(137), [anon_sym_catch] = ACTIONS(137), + [anon_sym_finally] = ACTIONS(137), [anon_sym_match] = ACTIONS(137), [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1782), - [anon_sym_false] = ACTIONS(1782), - [anon_sym_null] = ACTIONS(1782), - [aux_sym_cmd_identifier_token3] = ACTIONS(1784), - [aux_sym_cmd_identifier_token4] = ACTIONS(1784), - [aux_sym_cmd_identifier_token5] = ACTIONS(1784), - [sym__newline] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1788), - [anon_sym_DOLLAR] = ACTIONS(1790), + [anon_sym_true] = ACTIONS(1754), + [anon_sym_false] = ACTIONS(1754), + [anon_sym_null] = ACTIONS(1754), + [aux_sym_cmd_identifier_token3] = ACTIONS(1756), + [aux_sym_cmd_identifier_token4] = ACTIONS(1756), + [aux_sym_cmd_identifier_token5] = ACTIONS(1756), + [sym__newline] = ACTIONS(1758), + [anon_sym_LPAREN] = ACTIONS(1760), + [anon_sym_DOLLAR] = ACTIONS(1762), [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_RBRACE] = ACTIONS(1826), + [anon_sym_RBRACE] = ACTIONS(1816), [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(1794), - [aux_sym__val_number_decimal_token2] = ACTIONS(1796), - [aux_sym__val_number_decimal_token3] = ACTIONS(1798), - [aux_sym__val_number_decimal_token4] = ACTIONS(1798), + [aux_sym__val_number_decimal_token1] = ACTIONS(1766), + [aux_sym__val_number_decimal_token2] = ACTIONS(1768), + [aux_sym__val_number_decimal_token3] = ACTIONS(1770), + [aux_sym__val_number_decimal_token4] = ACTIONS(1770), [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(1800), - [anon_sym_SQUOTE] = ACTIONS(1802), - [anon_sym_BQUOTE] = ACTIONS(1804), + [anon_sym_DQUOTE] = ACTIONS(1772), + [anon_sym_SQUOTE] = ACTIONS(1774), + [anon_sym_BQUOTE] = ACTIONS(1776), [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(1806), + [sym_raw_string_begin] = ACTIONS(1778), }, - [STATE(473)] = { - [sym_cmd_identifier] = STATE(4276), - [sym_expr_parenthesized] = STATE(5339), - [sym__spread_parenthesized] = STATE(4883), - [sym__spread_variable] = STATE(4892), - [sym_val_variable] = STATE(5339), - [sym_val_number] = STATE(5339), - [sym__val_number_decimal] = STATE(1984), - [sym__val_number] = STATE(707), - [sym_val_string] = STATE(5339), - [sym__raw_str] = STATE(2266), - [sym__str_double_quotes] = STATE(2266), - [sym__str_single_quotes] = STATE(2266), - [sym__str_back_ticks] = STATE(2266), - [sym_val_interpolated] = STATE(5339), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym__spread_record] = STATE(4883), - [sym_record_body] = STATE(5359), - [sym_record_entry] = STATE(4687), - [sym__record_key] = STATE(5341), - [sym_comment] = STATE(473), - [aux_sym__types_body_repeat1] = STATE(584), - [aux_sym_record_body_repeat1] = STATE(813), + [STATE(469)] = { + [sym__expr_parenthesized_immediate] = STATE(5072), + [sym_comment] = STATE(469), + [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(847), + [anon_sym_DASH2] = ACTIONS(968), + [anon_sym_RBRACE] = ACTIONS(968), + [anon_sym_STAR2] = ACTIONS(847), + [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(847), + [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(1818), + [anon_sym_STAR_STAR2] = ACTIONS(968), + [anon_sym_PLUS_PLUS2] = ACTIONS(968), + [anon_sym_SLASH2] = ACTIONS(847), + [anon_sym_mod2] = ACTIONS(968), + [anon_sym_SLASH_SLASH2] = ACTIONS(968), + [anon_sym_PLUS2] = ACTIONS(847), + [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(1820), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1822), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1822), + [sym_filesize_unit] = ACTIONS(1824), + [sym_duration_unit] = ACTIONS(1826), + [anon_sym_err_GT] = ACTIONS(847), + [anon_sym_out_GT] = ACTIONS(847), + [anon_sym_e_GT] = ACTIONS(847), + [anon_sym_o_GT] = ACTIONS(847), + [anon_sym_err_PLUSout_GT] = ACTIONS(847), + [anon_sym_out_PLUSerr_GT] = ACTIONS(847), + [anon_sym_o_PLUSe_GT] = ACTIONS(847), + [anon_sym_e_PLUSo_GT] = ACTIONS(847), + [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(1828), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(470)] = { + [sym_cmd_identifier] = STATE(4519), + [sym__match_pattern_record_body] = STATE(5323), + [sym_expr_parenthesized] = STATE(5494), + [sym__spread_parenthesized] = STATE(5018), + [sym__spread_variable] = STATE(5020), + [sym_val_variable] = STATE(4401), + [sym_val_number] = STATE(5494), + [sym__val_number_decimal] = STATE(1998), + [sym__val_number] = STATE(710), + [sym_val_string] = STATE(5494), + [sym__raw_str] = STATE(2274), + [sym__str_double_quotes] = STATE(2274), + [sym__str_single_quotes] = STATE(2274), + [sym__str_back_ticks] = STATE(2274), + [sym_val_interpolated] = STATE(5494), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym__spread_record] = STATE(5018), + [sym_record_entry] = STATE(4737), + [sym__record_key] = STATE(5156), + [sym_comment] = STATE(470), + [aux_sym__types_body_repeat1] = STATE(499), + [aux_sym__match_pattern_record_body_repeat1] = STATE(698), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -84874,136 +85502,359 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(137), [anon_sym_try] = ACTIONS(137), [anon_sym_catch] = ACTIONS(137), + [anon_sym_finally] = ACTIONS(137), [anon_sym_match] = ACTIONS(137), [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1782), - [anon_sym_false] = ACTIONS(1782), - [anon_sym_null] = ACTIONS(1782), - [aux_sym_cmd_identifier_token3] = ACTIONS(1784), - [aux_sym_cmd_identifier_token4] = ACTIONS(1784), - [aux_sym_cmd_identifier_token5] = ACTIONS(1784), - [sym__newline] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1788), - [anon_sym_DOLLAR] = ACTIONS(1790), + [anon_sym_true] = ACTIONS(1754), + [anon_sym_false] = ACTIONS(1754), + [anon_sym_null] = ACTIONS(1754), + [aux_sym_cmd_identifier_token3] = ACTIONS(1756), + [aux_sym_cmd_identifier_token4] = ACTIONS(1756), + [aux_sym_cmd_identifier_token5] = ACTIONS(1756), + [sym__newline] = ACTIONS(1758), + [anon_sym_LPAREN] = ACTIONS(1760), + [anon_sym_DOLLAR] = ACTIONS(1798), [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_RBRACE] = ACTIONS(1828), + [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(1794), - [aux_sym__val_number_decimal_token2] = ACTIONS(1796), - [aux_sym__val_number_decimal_token3] = ACTIONS(1798), - [aux_sym__val_number_decimal_token4] = ACTIONS(1798), + [aux_sym__val_number_decimal_token1] = ACTIONS(1766), + [aux_sym__val_number_decimal_token2] = ACTIONS(1768), + [aux_sym__val_number_decimal_token3] = ACTIONS(1770), + [aux_sym__val_number_decimal_token4] = ACTIONS(1770), [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(1800), - [anon_sym_SQUOTE] = ACTIONS(1802), - [anon_sym_BQUOTE] = ACTIONS(1804), + [anon_sym_DQUOTE] = ACTIONS(1772), + [anon_sym_SQUOTE] = ACTIONS(1774), + [anon_sym_BQUOTE] = ACTIONS(1776), [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(1806), + [sym_raw_string_begin] = ACTIONS(1778), + }, + [STATE(471)] = { + [sym__expr_parenthesized_immediate] = STATE(4972), + [sym_comment] = STATE(471), + [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(847), + [anon_sym_DASH2] = ACTIONS(968), + [anon_sym_STAR2] = ACTIONS(847), + [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(847), + [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(1818), + [anon_sym_STAR_STAR2] = ACTIONS(968), + [anon_sym_PLUS_PLUS2] = ACTIONS(968), + [anon_sym_SLASH2] = ACTIONS(847), + [anon_sym_mod2] = ACTIONS(968), + [anon_sym_SLASH_SLASH2] = ACTIONS(968), + [anon_sym_PLUS2] = ACTIONS(847), + [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(1832), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1834), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1834), + [sym_filesize_unit] = ACTIONS(1836), + [sym_duration_unit] = ACTIONS(1838), + [anon_sym_err_GT] = ACTIONS(847), + [anon_sym_out_GT] = ACTIONS(847), + [anon_sym_e_GT] = ACTIONS(847), + [anon_sym_o_GT] = ACTIONS(847), + [anon_sym_err_PLUSout_GT] = ACTIONS(847), + [anon_sym_out_PLUSerr_GT] = ACTIONS(847), + [anon_sym_o_PLUSe_GT] = ACTIONS(847), + [anon_sym_e_PLUSo_GT] = ACTIONS(847), + [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(1840), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(472)] = { + [sym_comment] = STATE(472), + [anon_sym_if] = ACTIONS(1842), + [anon_sym_in] = ACTIONS(1842), + [sym__newline] = ACTIONS(1842), + [anon_sym_SEMI] = ACTIONS(1842), + [anon_sym_PIPE] = ACTIONS(1842), + [anon_sym_err_GT_PIPE] = ACTIONS(1842), + [anon_sym_out_GT_PIPE] = ACTIONS(1842), + [anon_sym_e_GT_PIPE] = ACTIONS(1842), + [anon_sym_o_GT_PIPE] = ACTIONS(1842), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1842), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1842), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1842), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1842), + [anon_sym_RPAREN] = ACTIONS(1842), + [anon_sym_GT2] = ACTIONS(1844), + [anon_sym_DASH2] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1842), + [anon_sym_RBRACE] = ACTIONS(1842), + [anon_sym_EQ_GT] = ACTIONS(1842), + [anon_sym_STAR2] = ACTIONS(1844), + [anon_sym_and2] = ACTIONS(1842), + [anon_sym_xor2] = ACTIONS(1842), + [anon_sym_or2] = ACTIONS(1842), + [anon_sym_not_DASHin2] = ACTIONS(1842), + [anon_sym_has2] = ACTIONS(1842), + [anon_sym_not_DASHhas2] = ACTIONS(1842), + [anon_sym_starts_DASHwith2] = ACTIONS(1842), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1842), + [anon_sym_ends_DASHwith2] = ACTIONS(1842), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1842), + [anon_sym_EQ_EQ2] = ACTIONS(1842), + [anon_sym_BANG_EQ2] = ACTIONS(1842), + [anon_sym_LT2] = ACTIONS(1844), + [anon_sym_LT_EQ2] = ACTIONS(1842), + [anon_sym_GT_EQ2] = ACTIONS(1842), + [anon_sym_EQ_TILDE2] = ACTIONS(1842), + [anon_sym_BANG_TILDE2] = ACTIONS(1842), + [anon_sym_like2] = ACTIONS(1842), + [anon_sym_not_DASHlike2] = ACTIONS(1842), + [anon_sym_STAR_STAR2] = ACTIONS(1842), + [anon_sym_PLUS_PLUS2] = ACTIONS(1842), + [anon_sym_SLASH2] = ACTIONS(1844), + [anon_sym_mod2] = ACTIONS(1842), + [anon_sym_SLASH_SLASH2] = ACTIONS(1842), + [anon_sym_PLUS2] = ACTIONS(1844), + [anon_sym_bit_DASHshl2] = ACTIONS(1842), + [anon_sym_bit_DASHshr2] = ACTIONS(1842), + [anon_sym_bit_DASHand2] = ACTIONS(1842), + [anon_sym_bit_DASHxor2] = ACTIONS(1842), + [anon_sym_bit_DASHor2] = ACTIONS(1842), + [anon_sym_DOT_DOT2] = ACTIONS(1844), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1842), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1842), + [anon_sym_COLON2] = ACTIONS(1842), + [anon_sym_err_GT] = ACTIONS(1844), + [anon_sym_out_GT] = ACTIONS(1844), + [anon_sym_e_GT] = ACTIONS(1844), + [anon_sym_o_GT] = ACTIONS(1844), + [anon_sym_err_PLUSout_GT] = ACTIONS(1844), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1844), + [anon_sym_o_PLUSe_GT] = ACTIONS(1844), + [anon_sym_e_PLUSo_GT] = ACTIONS(1844), + [anon_sym_err_GT_GT] = ACTIONS(1842), + [anon_sym_out_GT_GT] = ACTIONS(1842), + [anon_sym_e_GT_GT] = ACTIONS(1842), + [anon_sym_o_GT_GT] = ACTIONS(1842), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1842), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1842), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1842), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1842), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(473)] = { + [sym_comment] = STATE(473), + [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_token5] = ACTIONS(1740), + [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(474)] = { [sym_comment] = STATE(474), - [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(1830), - [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_in] = ACTIONS(769), + [sym__newline] = ACTIONS(769), + [anon_sym_SEMI] = ACTIONS(769), + [anon_sym_PIPE] = ACTIONS(769), + [anon_sym_err_GT_PIPE] = ACTIONS(769), + [anon_sym_out_GT_PIPE] = ACTIONS(769), + [anon_sym_e_GT_PIPE] = ACTIONS(769), + [anon_sym_o_GT_PIPE] = ACTIONS(769), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(769), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(769), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(769), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(769), + [anon_sym_RPAREN] = ACTIONS(769), + [anon_sym_GT2] = ACTIONS(767), + [anon_sym_DASH2] = ACTIONS(769), + [anon_sym_RBRACE] = ACTIONS(769), + [anon_sym_STAR2] = ACTIONS(767), + [anon_sym_and2] = ACTIONS(769), + [anon_sym_xor2] = ACTIONS(769), + [anon_sym_or2] = ACTIONS(769), + [anon_sym_not_DASHin2] = ACTIONS(769), + [anon_sym_has2] = ACTIONS(769), + [anon_sym_not_DASHhas2] = ACTIONS(769), + [anon_sym_starts_DASHwith2] = ACTIONS(769), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(769), + [anon_sym_ends_DASHwith2] = ACTIONS(769), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(769), + [anon_sym_EQ_EQ2] = ACTIONS(769), + [anon_sym_BANG_EQ2] = ACTIONS(769), + [anon_sym_LT2] = ACTIONS(767), + [anon_sym_LT_EQ2] = ACTIONS(769), + [anon_sym_GT_EQ2] = ACTIONS(769), + [anon_sym_EQ_TILDE2] = ACTIONS(769), + [anon_sym_BANG_TILDE2] = ACTIONS(769), + [anon_sym_like2] = ACTIONS(769), + [anon_sym_not_DASHlike2] = ACTIONS(769), + [anon_sym_LPAREN2] = ACTIONS(769), + [anon_sym_STAR_STAR2] = ACTIONS(769), + [anon_sym_PLUS_PLUS2] = ACTIONS(769), + [anon_sym_SLASH2] = ACTIONS(767), + [anon_sym_mod2] = ACTIONS(769), + [anon_sym_SLASH_SLASH2] = ACTIONS(769), + [anon_sym_PLUS2] = ACTIONS(767), + [anon_sym_bit_DASHshl2] = ACTIONS(769), + [anon_sym_bit_DASHshr2] = ACTIONS(769), + [anon_sym_bit_DASHand2] = ACTIONS(769), + [anon_sym_bit_DASHxor2] = ACTIONS(769), + [anon_sym_bit_DASHor2] = ACTIONS(769), + [anon_sym_DOT_DOT2] = ACTIONS(767), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(769), + [sym_filesize_unit] = ACTIONS(767), + [sym_duration_unit] = ACTIONS(769), + [anon_sym_err_GT] = ACTIONS(767), + [anon_sym_out_GT] = ACTIONS(767), + [anon_sym_e_GT] = ACTIONS(767), + [anon_sym_o_GT] = ACTIONS(767), + [anon_sym_err_PLUSout_GT] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT] = ACTIONS(767), + [anon_sym_o_PLUSe_GT] = ACTIONS(767), + [anon_sym_e_PLUSo_GT] = ACTIONS(767), + [anon_sym_err_GT_GT] = ACTIONS(769), + [anon_sym_out_GT_GT] = ACTIONS(769), + [anon_sym_e_GT_GT] = ACTIONS(769), + [anon_sym_o_GT_GT] = ACTIONS(769), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(769), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(769), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(769), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(769), + [sym__unquoted_pattern] = ACTIONS(767), [anon_sym_POUND] = ACTIONS(3), }, [STATE(475)] = { - [sym_cmd_identifier] = STATE(4276), - [sym_expr_parenthesized] = STATE(5339), - [sym__spread_parenthesized] = STATE(4883), - [sym__spread_variable] = STATE(4892), - [sym_val_variable] = STATE(5339), - [sym_val_number] = STATE(5339), - [sym__val_number_decimal] = STATE(1984), - [sym__val_number] = STATE(707), - [sym_val_string] = STATE(5339), - [sym__raw_str] = STATE(2266), - [sym__str_double_quotes] = STATE(2266), - [sym__str_single_quotes] = STATE(2266), - [sym__str_back_ticks] = STATE(2266), - [sym_val_interpolated] = STATE(5339), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym__spread_record] = STATE(4883), - [sym_record_body] = STATE(5216), - [sym_record_entry] = STATE(4687), - [sym__record_key] = STATE(5341), + [sym_cmd_identifier] = STATE(4519), + [sym_expr_parenthesized] = STATE(5494), + [sym__spread_parenthesized] = STATE(5018), + [sym__spread_variable] = STATE(5020), + [sym_val_variable] = STATE(4344), + [sym_val_number] = STATE(5494), + [sym__val_number_decimal] = STATE(1998), + [sym__val_number] = STATE(710), + [sym_val_string] = STATE(5494), + [sym__raw_str] = STATE(2274), + [sym__str_double_quotes] = STATE(2274), + [sym__str_single_quotes] = STATE(2274), + [sym__str_back_ticks] = STATE(2274), + [sym_val_interpolated] = STATE(5494), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym__spread_record] = STATE(5018), + [sym_record_entry] = STATE(4735), + [sym__record_key] = STATE(5156), [sym_comment] = STATE(475), - [aux_sym__types_body_repeat1] = STATE(584), - [aux_sym_record_body_repeat1] = STATE(813), + [aux_sym__types_body_repeat1] = STATE(1499), + [aux_sym__match_pattern_record_body_repeat1] = STATE(722), + [aux_sym_record_body_repeat1] = STATE(719), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -85022,710 +85873,712 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(137), [anon_sym_try] = ACTIONS(137), [anon_sym_catch] = ACTIONS(137), + [anon_sym_finally] = ACTIONS(137), [anon_sym_match] = ACTIONS(137), [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1782), - [anon_sym_false] = ACTIONS(1782), - [anon_sym_null] = ACTIONS(1782), - [aux_sym_cmd_identifier_token3] = ACTIONS(1784), - [aux_sym_cmd_identifier_token4] = ACTIONS(1784), - [aux_sym_cmd_identifier_token5] = ACTIONS(1784), - [sym__newline] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1788), - [anon_sym_DOLLAR] = ACTIONS(1790), + [anon_sym_true] = ACTIONS(1754), + [anon_sym_false] = ACTIONS(1754), + [anon_sym_null] = ACTIONS(1754), + [aux_sym_cmd_identifier_token3] = ACTIONS(1756), + [aux_sym_cmd_identifier_token4] = ACTIONS(1756), + [aux_sym_cmd_identifier_token5] = ACTIONS(1756), + [sym__newline] = ACTIONS(1758), + [anon_sym_LPAREN] = ACTIONS(1760), + [anon_sym_DOLLAR] = ACTIONS(1798), [anon_sym_DASH2] = ACTIONS(175), - [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(1794), - [aux_sym__val_number_decimal_token2] = ACTIONS(1796), - [aux_sym__val_number_decimal_token3] = ACTIONS(1798), - [aux_sym__val_number_decimal_token4] = ACTIONS(1798), + [aux_sym__val_number_decimal_token1] = ACTIONS(1766), + [aux_sym__val_number_decimal_token2] = ACTIONS(1768), + [aux_sym__val_number_decimal_token3] = ACTIONS(1770), + [aux_sym__val_number_decimal_token4] = ACTIONS(1770), [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(1800), - [anon_sym_SQUOTE] = ACTIONS(1802), - [anon_sym_BQUOTE] = ACTIONS(1804), + [anon_sym_DQUOTE] = ACTIONS(1772), + [anon_sym_SQUOTE] = ACTIONS(1774), + [anon_sym_BQUOTE] = ACTIONS(1776), [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(1806), + [sym_raw_string_begin] = ACTIONS(1778), }, [STATE(476)] = { - [sym_cmd_identifier] = STATE(4276), - [sym_expr_parenthesized] = STATE(5339), - [sym__spread_parenthesized] = STATE(4883), - [sym__spread_variable] = STATE(4892), - [sym_val_variable] = STATE(5339), - [sym_val_number] = STATE(5339), - [sym__val_number_decimal] = STATE(1984), - [sym__val_number] = STATE(707), - [sym_val_string] = STATE(5339), - [sym__raw_str] = STATE(2266), - [sym__str_double_quotes] = STATE(2266), - [sym__str_single_quotes] = STATE(2266), - [sym__str_back_ticks] = STATE(2266), - [sym_val_interpolated] = STATE(5339), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym__spread_record] = STATE(4883), - [sym_record_body] = STATE(4962), - [sym_record_entry] = STATE(4687), - [sym__record_key] = STATE(5341), [sym_comment] = STATE(476), - [aux_sym__types_body_repeat1] = STATE(584), - [aux_sym_record_body_repeat1] = STATE(813), - [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(1782), - [anon_sym_false] = ACTIONS(1782), - [anon_sym_null] = ACTIONS(1782), - [aux_sym_cmd_identifier_token3] = ACTIONS(1784), - [aux_sym_cmd_identifier_token4] = ACTIONS(1784), - [aux_sym_cmd_identifier_token5] = ACTIONS(1784), - [sym__newline] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1788), - [anon_sym_DOLLAR] = ACTIONS(1790), - [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_RBRACE] = ACTIONS(1834), - [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(1794), - [aux_sym__val_number_decimal_token2] = ACTIONS(1796), - [aux_sym__val_number_decimal_token3] = ACTIONS(1798), - [aux_sym__val_number_decimal_token4] = ACTIONS(1798), - [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(1800), - [anon_sym_SQUOTE] = ACTIONS(1802), - [anon_sym_BQUOTE] = ACTIONS(1804), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), + [anon_sym_in] = ACTIONS(865), + [sym__newline] = ACTIONS(865), + [anon_sym_SEMI] = ACTIONS(865), + [anon_sym_PIPE] = ACTIONS(865), + [anon_sym_err_GT_PIPE] = ACTIONS(865), + [anon_sym_out_GT_PIPE] = ACTIONS(865), + [anon_sym_e_GT_PIPE] = ACTIONS(865), + [anon_sym_o_GT_PIPE] = ACTIONS(865), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(865), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(865), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(865), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(865), + [anon_sym_RPAREN] = ACTIONS(865), + [anon_sym_GT2] = ACTIONS(863), + [anon_sym_DASH2] = ACTIONS(865), + [anon_sym_RBRACE] = ACTIONS(865), + [anon_sym_STAR2] = ACTIONS(863), + [anon_sym_and2] = ACTIONS(865), + [anon_sym_xor2] = ACTIONS(865), + [anon_sym_or2] = ACTIONS(865), + [anon_sym_not_DASHin2] = ACTIONS(865), + [anon_sym_has2] = ACTIONS(865), + [anon_sym_not_DASHhas2] = ACTIONS(865), + [anon_sym_starts_DASHwith2] = ACTIONS(865), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(865), + [anon_sym_ends_DASHwith2] = ACTIONS(865), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(865), + [anon_sym_EQ_EQ2] = ACTIONS(865), + [anon_sym_BANG_EQ2] = ACTIONS(865), + [anon_sym_LT2] = ACTIONS(863), + [anon_sym_LT_EQ2] = ACTIONS(865), + [anon_sym_GT_EQ2] = ACTIONS(865), + [anon_sym_EQ_TILDE2] = ACTIONS(865), + [anon_sym_BANG_TILDE2] = ACTIONS(865), + [anon_sym_like2] = ACTIONS(865), + [anon_sym_not_DASHlike2] = ACTIONS(865), + [anon_sym_LPAREN2] = ACTIONS(865), + [anon_sym_STAR_STAR2] = ACTIONS(865), + [anon_sym_PLUS_PLUS2] = ACTIONS(865), + [anon_sym_SLASH2] = ACTIONS(863), + [anon_sym_mod2] = ACTIONS(865), + [anon_sym_SLASH_SLASH2] = ACTIONS(865), + [anon_sym_PLUS2] = ACTIONS(863), + [anon_sym_bit_DASHshl2] = ACTIONS(865), + [anon_sym_bit_DASHshr2] = ACTIONS(865), + [anon_sym_bit_DASHand2] = ACTIONS(865), + [anon_sym_bit_DASHxor2] = ACTIONS(865), + [anon_sym_bit_DASHor2] = ACTIONS(865), + [anon_sym_DOT_DOT2] = ACTIONS(863), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(865), + [anon_sym_DOT_DOT_LT2] = ACTIONS(865), + [sym_filesize_unit] = ACTIONS(863), + [sym_duration_unit] = ACTIONS(865), + [anon_sym_err_GT] = ACTIONS(863), + [anon_sym_out_GT] = ACTIONS(863), + [anon_sym_e_GT] = ACTIONS(863), + [anon_sym_o_GT] = ACTIONS(863), + [anon_sym_err_PLUSout_GT] = ACTIONS(863), + [anon_sym_out_PLUSerr_GT] = ACTIONS(863), + [anon_sym_o_PLUSe_GT] = ACTIONS(863), + [anon_sym_e_PLUSo_GT] = ACTIONS(863), + [anon_sym_err_GT_GT] = ACTIONS(865), + [anon_sym_out_GT_GT] = ACTIONS(865), + [anon_sym_e_GT_GT] = ACTIONS(865), + [anon_sym_o_GT_GT] = ACTIONS(865), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(865), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(865), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(865), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(865), + [sym__unquoted_pattern] = ACTIONS(863), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1806), }, [STATE(477)] = { - [sym_cmd_identifier] = STATE(4276), - [sym__match_pattern_record_body] = STATE(5370), - [sym_expr_parenthesized] = STATE(5339), - [sym__spread_parenthesized] = STATE(4883), - [sym__spread_variable] = STATE(4892), - [sym_val_variable] = STATE(4438), - [sym_val_number] = STATE(5339), - [sym__val_number_decimal] = STATE(1984), - [sym__val_number] = STATE(707), - [sym_val_string] = STATE(5339), - [sym__raw_str] = STATE(2266), - [sym__str_double_quotes] = STATE(2266), - [sym__str_single_quotes] = STATE(2266), - [sym__str_back_ticks] = STATE(2266), - [sym_val_interpolated] = STATE(5339), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym__spread_record] = STATE(4883), - [sym_record_entry] = STATE(4659), - [sym__record_key] = STATE(5341), [sym_comment] = STATE(477), - [aux_sym__types_body_repeat1] = STATE(529), - [aux_sym__match_pattern_record_body_repeat1] = STATE(793), - [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(1782), - [anon_sym_false] = ACTIONS(1782), - [anon_sym_null] = ACTIONS(1782), - [aux_sym_cmd_identifier_token3] = ACTIONS(1784), - [aux_sym_cmd_identifier_token4] = ACTIONS(1784), - [aux_sym_cmd_identifier_token5] = ACTIONS(1784), - [sym__newline] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1788), - [anon_sym_DOLLAR] = ACTIONS(1836), - [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(1794), - [aux_sym__val_number_decimal_token2] = ACTIONS(1796), - [aux_sym__val_number_decimal_token3] = ACTIONS(1798), - [aux_sym__val_number_decimal_token4] = ACTIONS(1798), - [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(1800), - [anon_sym_SQUOTE] = ACTIONS(1802), - [anon_sym_BQUOTE] = ACTIONS(1804), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), + [anon_sym_in] = ACTIONS(1846), + [sym__newline] = ACTIONS(1846), + [anon_sym_SEMI] = ACTIONS(1846), + [anon_sym_PIPE] = ACTIONS(1846), + [anon_sym_err_GT_PIPE] = ACTIONS(1846), + [anon_sym_out_GT_PIPE] = ACTIONS(1846), + [anon_sym_e_GT_PIPE] = ACTIONS(1846), + [anon_sym_o_GT_PIPE] = ACTIONS(1846), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1846), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1846), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1846), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1846), + [anon_sym_RPAREN] = ACTIONS(1846), + [anon_sym_GT2] = ACTIONS(1848), + [anon_sym_DASH2] = ACTIONS(1846), + [anon_sym_LBRACE] = ACTIONS(1846), + [anon_sym_RBRACE] = ACTIONS(1846), + [anon_sym_STAR2] = ACTIONS(1848), + [anon_sym_and2] = ACTIONS(1846), + [anon_sym_xor2] = ACTIONS(1846), + [anon_sym_or2] = ACTIONS(1846), + [anon_sym_not_DASHin2] = ACTIONS(1846), + [anon_sym_has2] = ACTIONS(1846), + [anon_sym_not_DASHhas2] = ACTIONS(1846), + [anon_sym_starts_DASHwith2] = ACTIONS(1846), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1846), + [anon_sym_ends_DASHwith2] = ACTIONS(1846), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1846), + [anon_sym_EQ_EQ2] = ACTIONS(1846), + [anon_sym_BANG_EQ2] = ACTIONS(1846), + [anon_sym_LT2] = ACTIONS(1848), + [anon_sym_LT_EQ2] = ACTIONS(1846), + [anon_sym_GT_EQ2] = ACTIONS(1846), + [anon_sym_EQ_TILDE2] = ACTIONS(1846), + [anon_sym_BANG_TILDE2] = ACTIONS(1846), + [anon_sym_like2] = ACTIONS(1846), + [anon_sym_not_DASHlike2] = ACTIONS(1846), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_STAR_STAR2] = ACTIONS(1846), + [anon_sym_PLUS_PLUS2] = ACTIONS(1846), + [anon_sym_SLASH2] = ACTIONS(1848), + [anon_sym_mod2] = ACTIONS(1846), + [anon_sym_SLASH_SLASH2] = ACTIONS(1846), + [anon_sym_PLUS2] = ACTIONS(1848), + [anon_sym_bit_DASHshl2] = ACTIONS(1846), + [anon_sym_bit_DASHshr2] = ACTIONS(1846), + [anon_sym_bit_DASHand2] = ACTIONS(1846), + [anon_sym_bit_DASHxor2] = ACTIONS(1846), + [anon_sym_bit_DASHor2] = ACTIONS(1846), + [anon_sym_DOT_DOT2] = ACTIONS(1848), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1846), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1846), + [aux_sym__immediate_decimal_token5] = ACTIONS(1850), + [anon_sym_err_GT] = ACTIONS(1848), + [anon_sym_out_GT] = ACTIONS(1848), + [anon_sym_e_GT] = ACTIONS(1848), + [anon_sym_o_GT] = ACTIONS(1848), + [anon_sym_err_PLUSout_GT] = ACTIONS(1848), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1848), + [anon_sym_o_PLUSe_GT] = ACTIONS(1848), + [anon_sym_e_PLUSo_GT] = ACTIONS(1848), + [anon_sym_err_GT_GT] = ACTIONS(1846), + [anon_sym_out_GT_GT] = ACTIONS(1846), + [anon_sym_e_GT_GT] = ACTIONS(1846), + [anon_sym_o_GT_GT] = ACTIONS(1846), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1846), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1846), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1846), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1846), + [sym__unquoted_pattern] = ACTIONS(1848), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1806), }, [STATE(478)] = { [sym_comment] = STATE(478), - [anon_sym_EQ] = ACTIONS(1840), - [anon_sym_PLUS_EQ] = ACTIONS(1842), - [anon_sym_DASH_EQ] = ACTIONS(1842), - [anon_sym_STAR_EQ] = ACTIONS(1842), - [anon_sym_SLASH_EQ] = ACTIONS(1842), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1842), - [anon_sym_in] = ACTIONS(1713), - [sym__newline] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1713), - [anon_sym_err_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_GT_PIPE] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), - [anon_sym_GT2] = ACTIONS(1614), - [anon_sym_DASH2] = ACTIONS(1614), - [anon_sym_STAR2] = ACTIONS(1614), - [anon_sym_and2] = ACTIONS(1713), - [anon_sym_xor2] = ACTIONS(1713), - [anon_sym_or2] = ACTIONS(1713), - [anon_sym_not_DASHin2] = ACTIONS(1713), - [anon_sym_has2] = ACTIONS(1713), - [anon_sym_not_DASHhas2] = ACTIONS(1713), - [anon_sym_starts_DASHwith2] = ACTIONS(1713), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1713), - [anon_sym_ends_DASHwith2] = ACTIONS(1713), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1713), - [anon_sym_EQ_EQ2] = ACTIONS(1713), - [anon_sym_BANG_EQ2] = ACTIONS(1713), - [anon_sym_LT2] = ACTIONS(1614), - [anon_sym_LT_EQ2] = ACTIONS(1713), - [anon_sym_GT_EQ2] = ACTIONS(1713), - [anon_sym_EQ_TILDE2] = ACTIONS(1713), - [anon_sym_BANG_TILDE2] = ACTIONS(1713), - [anon_sym_like2] = ACTIONS(1713), - [anon_sym_not_DASHlike2] = ACTIONS(1713), - [anon_sym_STAR_STAR2] = ACTIONS(1713), - [anon_sym_PLUS_PLUS2] = ACTIONS(1614), - [anon_sym_SLASH2] = ACTIONS(1614), - [anon_sym_mod2] = ACTIONS(1713), - [anon_sym_SLASH_SLASH2] = ACTIONS(1713), - [anon_sym_PLUS2] = ACTIONS(1614), - [anon_sym_bit_DASHshl2] = ACTIONS(1713), - [anon_sym_bit_DASHshr2] = ACTIONS(1713), - [anon_sym_bit_DASHand2] = ACTIONS(1713), - [anon_sym_bit_DASHxor2] = ACTIONS(1713), - [anon_sym_bit_DASHor2] = ACTIONS(1713), - [anon_sym_DOT_DOT2] = ACTIONS(1618), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1620), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1620), - [anon_sym_err_GT] = ACTIONS(1614), - [anon_sym_out_GT] = ACTIONS(1614), - [anon_sym_e_GT] = ACTIONS(1614), - [anon_sym_o_GT] = ACTIONS(1614), - [anon_sym_err_PLUSout_GT] = ACTIONS(1614), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1614), - [anon_sym_o_PLUSe_GT] = ACTIONS(1614), - [anon_sym_e_PLUSo_GT] = ACTIONS(1614), - [anon_sym_err_GT_GT] = ACTIONS(1713), - [anon_sym_out_GT_GT] = ACTIONS(1713), - [anon_sym_e_GT_GT] = ACTIONS(1713), - [anon_sym_o_GT_GT] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), + [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(479)] = { - [sym_cmd_identifier] = STATE(4276), - [sym__match_pattern_record_body] = STATE(5155), - [sym_expr_parenthesized] = STATE(5339), - [sym__spread_parenthesized] = STATE(4883), - [sym__spread_variable] = STATE(4892), - [sym_val_variable] = STATE(4438), - [sym_val_number] = STATE(5339), - [sym__val_number_decimal] = STATE(1984), - [sym__val_number] = STATE(707), - [sym_val_string] = STATE(5339), - [sym__raw_str] = STATE(2266), - [sym__str_double_quotes] = STATE(2266), - [sym__str_single_quotes] = STATE(2266), - [sym__str_back_ticks] = STATE(2266), - [sym_val_interpolated] = STATE(5339), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym__spread_record] = STATE(4883), - [sym_record_entry] = STATE(4659), - [sym__record_key] = STATE(5341), [sym_comment] = STATE(479), - [aux_sym__types_body_repeat1] = STATE(529), - [aux_sym__match_pattern_record_body_repeat1] = STATE(793), - [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(1782), - [anon_sym_false] = ACTIONS(1782), - [anon_sym_null] = ACTIONS(1782), - [aux_sym_cmd_identifier_token3] = ACTIONS(1784), - [aux_sym_cmd_identifier_token4] = ACTIONS(1784), - [aux_sym_cmd_identifier_token5] = ACTIONS(1784), - [sym__newline] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1788), - [anon_sym_DOLLAR] = ACTIONS(1836), - [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_RBRACE] = ACTIONS(1844), - [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(1794), - [aux_sym__val_number_decimal_token2] = ACTIONS(1796), - [aux_sym__val_number_decimal_token3] = ACTIONS(1798), - [aux_sym__val_number_decimal_token4] = ACTIONS(1798), - [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(1800), - [anon_sym_SQUOTE] = ACTIONS(1802), - [anon_sym_BQUOTE] = ACTIONS(1804), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), + [ts_builtin_sym_end] = ACTIONS(769), + [anon_sym_in] = ACTIONS(769), + [sym__newline] = ACTIONS(769), + [anon_sym_SEMI] = ACTIONS(769), + [anon_sym_PIPE] = ACTIONS(769), + [anon_sym_err_GT_PIPE] = ACTIONS(769), + [anon_sym_out_GT_PIPE] = ACTIONS(769), + [anon_sym_e_GT_PIPE] = ACTIONS(769), + [anon_sym_o_GT_PIPE] = ACTIONS(769), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(769), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(769), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(769), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(769), + [anon_sym_GT2] = ACTIONS(767), + [anon_sym_DASH2] = ACTIONS(769), + [anon_sym_STAR2] = ACTIONS(767), + [anon_sym_and2] = ACTIONS(769), + [anon_sym_xor2] = ACTIONS(769), + [anon_sym_or2] = ACTIONS(769), + [anon_sym_not_DASHin2] = ACTIONS(769), + [anon_sym_has2] = ACTIONS(769), + [anon_sym_not_DASHhas2] = ACTIONS(769), + [anon_sym_starts_DASHwith2] = ACTIONS(769), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(769), + [anon_sym_ends_DASHwith2] = ACTIONS(769), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(769), + [anon_sym_EQ_EQ2] = ACTIONS(769), + [anon_sym_BANG_EQ2] = ACTIONS(769), + [anon_sym_LT2] = ACTIONS(767), + [anon_sym_LT_EQ2] = ACTIONS(769), + [anon_sym_GT_EQ2] = ACTIONS(769), + [anon_sym_EQ_TILDE2] = ACTIONS(769), + [anon_sym_BANG_TILDE2] = ACTIONS(769), + [anon_sym_like2] = ACTIONS(769), + [anon_sym_not_DASHlike2] = ACTIONS(769), + [anon_sym_LPAREN2] = ACTIONS(769), + [anon_sym_STAR_STAR2] = ACTIONS(769), + [anon_sym_PLUS_PLUS2] = ACTIONS(769), + [anon_sym_SLASH2] = ACTIONS(767), + [anon_sym_mod2] = ACTIONS(769), + [anon_sym_SLASH_SLASH2] = ACTIONS(769), + [anon_sym_PLUS2] = ACTIONS(767), + [anon_sym_bit_DASHshl2] = ACTIONS(769), + [anon_sym_bit_DASHshr2] = ACTIONS(769), + [anon_sym_bit_DASHand2] = ACTIONS(769), + [anon_sym_bit_DASHxor2] = ACTIONS(769), + [anon_sym_bit_DASHor2] = ACTIONS(769), + [anon_sym_DOT_DOT2] = ACTIONS(767), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(769), + [aux_sym__immediate_decimal_token5] = ACTIONS(1852), + [sym_filesize_unit] = ACTIONS(767), + [sym_duration_unit] = ACTIONS(769), + [anon_sym_err_GT] = ACTIONS(767), + [anon_sym_out_GT] = ACTIONS(767), + [anon_sym_e_GT] = ACTIONS(767), + [anon_sym_o_GT] = ACTIONS(767), + [anon_sym_err_PLUSout_GT] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT] = ACTIONS(767), + [anon_sym_o_PLUSe_GT] = ACTIONS(767), + [anon_sym_e_PLUSo_GT] = ACTIONS(767), + [anon_sym_err_GT_GT] = ACTIONS(769), + [anon_sym_out_GT_GT] = ACTIONS(769), + [anon_sym_e_GT_GT] = ACTIONS(769), + [anon_sym_o_GT_GT] = ACTIONS(769), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(769), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(769), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(769), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(769), + [sym__unquoted_pattern] = ACTIONS(767), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1806), }, [STATE(480)] = { - [sym_cmd_identifier] = STATE(4276), - [sym__match_pattern_record_body] = STATE(5091), - [sym_expr_parenthesized] = STATE(5339), - [sym__spread_parenthesized] = STATE(4883), - [sym__spread_variable] = STATE(4892), - [sym_val_variable] = STATE(4438), - [sym_val_number] = STATE(5339), - [sym__val_number_decimal] = STATE(1984), - [sym__val_number] = STATE(707), - [sym_val_string] = STATE(5339), - [sym__raw_str] = STATE(2266), - [sym__str_double_quotes] = STATE(2266), - [sym__str_single_quotes] = STATE(2266), - [sym__str_back_ticks] = STATE(2266), - [sym_val_interpolated] = STATE(5339), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym__spread_record] = STATE(4883), - [sym_record_entry] = STATE(4659), - [sym__record_key] = STATE(5341), [sym_comment] = STATE(480), - [aux_sym__types_body_repeat1] = STATE(529), - [aux_sym__match_pattern_record_body_repeat1] = STATE(793), - [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(1782), - [anon_sym_false] = ACTIONS(1782), - [anon_sym_null] = ACTIONS(1782), - [aux_sym_cmd_identifier_token3] = ACTIONS(1784), - [aux_sym_cmd_identifier_token4] = ACTIONS(1784), - [aux_sym_cmd_identifier_token5] = ACTIONS(1784), - [sym__newline] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1788), - [anon_sym_DOLLAR] = ACTIONS(1836), - [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_RBRACE] = ACTIONS(1846), - [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(1794), - [aux_sym__val_number_decimal_token2] = ACTIONS(1796), - [aux_sym__val_number_decimal_token3] = ACTIONS(1798), - [aux_sym__val_number_decimal_token4] = ACTIONS(1798), - [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(1800), - [anon_sym_SQUOTE] = ACTIONS(1802), - [anon_sym_BQUOTE] = ACTIONS(1804), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), + [anon_sym_EQ] = ACTIONS(1854), + [anon_sym_PLUS_EQ] = ACTIONS(1856), + [anon_sym_DASH_EQ] = ACTIONS(1856), + [anon_sym_STAR_EQ] = ACTIONS(1856), + [anon_sym_SLASH_EQ] = ACTIONS(1856), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1856), + [anon_sym_in] = ACTIONS(1699), + [sym__newline] = ACTIONS(1699), + [anon_sym_SEMI] = ACTIONS(1699), + [anon_sym_PIPE] = ACTIONS(1699), + [anon_sym_err_GT_PIPE] = ACTIONS(1699), + [anon_sym_out_GT_PIPE] = ACTIONS(1699), + [anon_sym_e_GT_PIPE] = ACTIONS(1699), + [anon_sym_o_GT_PIPE] = ACTIONS(1699), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1699), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1699), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1699), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1699), + [anon_sym_GT2] = ACTIONS(1615), + [anon_sym_DASH2] = ACTIONS(1615), + [anon_sym_STAR2] = ACTIONS(1615), + [anon_sym_and2] = ACTIONS(1699), + [anon_sym_xor2] = ACTIONS(1699), + [anon_sym_or2] = ACTIONS(1699), + [anon_sym_not_DASHin2] = ACTIONS(1699), + [anon_sym_has2] = ACTIONS(1699), + [anon_sym_not_DASHhas2] = ACTIONS(1699), + [anon_sym_starts_DASHwith2] = ACTIONS(1699), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1699), + [anon_sym_ends_DASHwith2] = ACTIONS(1699), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1699), + [anon_sym_EQ_EQ2] = ACTIONS(1699), + [anon_sym_BANG_EQ2] = ACTIONS(1699), + [anon_sym_LT2] = ACTIONS(1615), + [anon_sym_LT_EQ2] = ACTIONS(1699), + [anon_sym_GT_EQ2] = ACTIONS(1699), + [anon_sym_EQ_TILDE2] = ACTIONS(1699), + [anon_sym_BANG_TILDE2] = ACTIONS(1699), + [anon_sym_like2] = ACTIONS(1699), + [anon_sym_not_DASHlike2] = ACTIONS(1699), + [anon_sym_STAR_STAR2] = ACTIONS(1699), + [anon_sym_PLUS_PLUS2] = ACTIONS(1615), + [anon_sym_SLASH2] = ACTIONS(1615), + [anon_sym_mod2] = ACTIONS(1699), + [anon_sym_SLASH_SLASH2] = ACTIONS(1699), + [anon_sym_PLUS2] = ACTIONS(1615), + [anon_sym_bit_DASHshl2] = ACTIONS(1699), + [anon_sym_bit_DASHshr2] = ACTIONS(1699), + [anon_sym_bit_DASHand2] = ACTIONS(1699), + [anon_sym_bit_DASHxor2] = ACTIONS(1699), + [anon_sym_bit_DASHor2] = ACTIONS(1699), + [anon_sym_DOT_DOT2] = ACTIONS(1619), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1621), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1621), + [anon_sym_err_GT] = ACTIONS(1615), + [anon_sym_out_GT] = ACTIONS(1615), + [anon_sym_e_GT] = ACTIONS(1615), + [anon_sym_o_GT] = ACTIONS(1615), + [anon_sym_err_PLUSout_GT] = ACTIONS(1615), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1615), + [anon_sym_o_PLUSe_GT] = ACTIONS(1615), + [anon_sym_e_PLUSo_GT] = ACTIONS(1615), + [anon_sym_err_GT_GT] = ACTIONS(1699), + [anon_sym_out_GT_GT] = ACTIONS(1699), + [anon_sym_e_GT_GT] = ACTIONS(1699), + [anon_sym_o_GT_GT] = ACTIONS(1699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1699), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1806), }, [STATE(481)] = { [sym_comment] = STATE(481), - [anon_sym_EQ] = ACTIONS(1848), - [anon_sym_PLUS_EQ] = ACTIONS(1850), - [anon_sym_DASH_EQ] = ACTIONS(1850), - [anon_sym_STAR_EQ] = ACTIONS(1850), - [anon_sym_SLASH_EQ] = ACTIONS(1850), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1850), - [anon_sym_in] = ACTIONS(1713), - [sym__newline] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1713), - [anon_sym_err_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_GT_PIPE] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), - [anon_sym_GT2] = ACTIONS(1614), - [anon_sym_DASH2] = ACTIONS(1614), - [anon_sym_STAR2] = ACTIONS(1614), - [anon_sym_and2] = ACTIONS(1713), - [anon_sym_xor2] = ACTIONS(1713), - [anon_sym_or2] = ACTIONS(1713), - [anon_sym_not_DASHin2] = ACTIONS(1713), - [anon_sym_has2] = ACTIONS(1713), - [anon_sym_not_DASHhas2] = ACTIONS(1713), - [anon_sym_starts_DASHwith2] = ACTIONS(1713), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1713), - [anon_sym_ends_DASHwith2] = ACTIONS(1713), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1713), - [anon_sym_EQ_EQ2] = ACTIONS(1713), - [anon_sym_BANG_EQ2] = ACTIONS(1713), - [anon_sym_LT2] = ACTIONS(1614), - [anon_sym_LT_EQ2] = ACTIONS(1713), - [anon_sym_GT_EQ2] = ACTIONS(1713), - [anon_sym_EQ_TILDE2] = ACTIONS(1713), - [anon_sym_BANG_TILDE2] = ACTIONS(1713), - [anon_sym_like2] = ACTIONS(1713), - [anon_sym_not_DASHlike2] = ACTIONS(1713), - [anon_sym_STAR_STAR2] = ACTIONS(1713), - [anon_sym_PLUS_PLUS2] = ACTIONS(1614), - [anon_sym_SLASH2] = ACTIONS(1614), - [anon_sym_mod2] = ACTIONS(1713), - [anon_sym_SLASH_SLASH2] = ACTIONS(1713), - [anon_sym_PLUS2] = ACTIONS(1614), - [anon_sym_bit_DASHshl2] = ACTIONS(1713), - [anon_sym_bit_DASHshr2] = ACTIONS(1713), - [anon_sym_bit_DASHand2] = ACTIONS(1713), - [anon_sym_bit_DASHxor2] = ACTIONS(1713), - [anon_sym_bit_DASHor2] = ACTIONS(1713), - [anon_sym_DOT_DOT2] = ACTIONS(1618), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1620), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1620), - [anon_sym_err_GT] = ACTIONS(1614), - [anon_sym_out_GT] = ACTIONS(1614), - [anon_sym_e_GT] = ACTIONS(1614), - [anon_sym_o_GT] = ACTIONS(1614), - [anon_sym_err_PLUSout_GT] = ACTIONS(1614), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1614), - [anon_sym_o_PLUSe_GT] = ACTIONS(1614), - [anon_sym_e_PLUSo_GT] = ACTIONS(1614), - [anon_sym_err_GT_GT] = ACTIONS(1713), - [anon_sym_out_GT_GT] = ACTIONS(1713), - [anon_sym_e_GT_GT] = ACTIONS(1713), - [anon_sym_o_GT_GT] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), + [anon_sym_in] = ACTIONS(1790), + [sym__newline] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym_PIPE] = ACTIONS(1790), + [anon_sym_err_GT_PIPE] = ACTIONS(1790), + [anon_sym_out_GT_PIPE] = ACTIONS(1790), + [anon_sym_e_GT_PIPE] = ACTIONS(1790), + [anon_sym_o_GT_PIPE] = ACTIONS(1790), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1790), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1790), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1790), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1790), + [anon_sym_RPAREN] = ACTIONS(1790), + [anon_sym_GT2] = ACTIONS(1792), + [anon_sym_DASH2] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1790), + [anon_sym_RBRACE] = ACTIONS(1790), + [anon_sym_STAR2] = ACTIONS(1792), + [anon_sym_and2] = ACTIONS(1790), + [anon_sym_xor2] = ACTIONS(1790), + [anon_sym_or2] = ACTIONS(1790), + [anon_sym_not_DASHin2] = ACTIONS(1790), + [anon_sym_has2] = ACTIONS(1790), + [anon_sym_not_DASHhas2] = ACTIONS(1790), + [anon_sym_starts_DASHwith2] = ACTIONS(1790), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1790), + [anon_sym_ends_DASHwith2] = ACTIONS(1790), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1790), + [anon_sym_EQ_EQ2] = ACTIONS(1790), + [anon_sym_BANG_EQ2] = ACTIONS(1790), + [anon_sym_LT2] = ACTIONS(1792), + [anon_sym_LT_EQ2] = ACTIONS(1790), + [anon_sym_GT_EQ2] = ACTIONS(1790), + [anon_sym_EQ_TILDE2] = ACTIONS(1790), + [anon_sym_BANG_TILDE2] = ACTIONS(1790), + [anon_sym_like2] = ACTIONS(1790), + [anon_sym_not_DASHlike2] = ACTIONS(1790), + [anon_sym_LPAREN2] = ACTIONS(1790), + [anon_sym_STAR_STAR2] = ACTIONS(1790), + [anon_sym_PLUS_PLUS2] = ACTIONS(1790), + [anon_sym_SLASH2] = ACTIONS(1792), + [anon_sym_mod2] = ACTIONS(1790), + [anon_sym_SLASH_SLASH2] = ACTIONS(1790), + [anon_sym_PLUS2] = ACTIONS(1792), + [anon_sym_bit_DASHshl2] = ACTIONS(1790), + [anon_sym_bit_DASHshr2] = ACTIONS(1790), + [anon_sym_bit_DASHand2] = ACTIONS(1790), + [anon_sym_bit_DASHxor2] = ACTIONS(1790), + [anon_sym_bit_DASHor2] = ACTIONS(1790), + [anon_sym_DOT_DOT2] = ACTIONS(1792), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1790), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1790), + [aux_sym__immediate_decimal_token5] = ACTIONS(1796), + [anon_sym_err_GT] = ACTIONS(1792), + [anon_sym_out_GT] = ACTIONS(1792), + [anon_sym_e_GT] = ACTIONS(1792), + [anon_sym_o_GT] = ACTIONS(1792), + [anon_sym_err_PLUSout_GT] = ACTIONS(1792), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1792), + [anon_sym_o_PLUSe_GT] = ACTIONS(1792), + [anon_sym_e_PLUSo_GT] = ACTIONS(1792), + [anon_sym_err_GT_GT] = ACTIONS(1790), + [anon_sym_out_GT_GT] = ACTIONS(1790), + [anon_sym_e_GT_GT] = ACTIONS(1790), + [anon_sym_o_GT_GT] = ACTIONS(1790), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1790), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1790), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1790), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1790), + [sym__unquoted_pattern] = ACTIONS(1792), [anon_sym_POUND] = ACTIONS(3), }, [STATE(482)] = { + [sym_expr_parenthesized] = STATE(4280), + [sym__spread_parenthesized] = STATE(4959), + [sym_val_range] = STATE(4961), + [sym__val_range] = STATE(4729), + [sym__value] = STATE(4961), + [sym_val_nothing] = STATE(4862), + [sym_val_bool] = STATE(4431), + [sym__spread_variable] = STATE(4968), + [sym_val_variable] = STATE(4050), + [sym_val_cellpath] = STATE(4862), + [sym_val_number] = STATE(4862), + [sym__val_number_decimal] = STATE(3653), + [sym__val_number] = STATE(4628), + [sym_val_duration] = STATE(4862), + [sym_val_filesize] = STATE(4862), + [sym_val_binary] = STATE(4862), + [sym_val_string] = STATE(4862), + [sym__raw_str] = STATE(3725), + [sym__str_double_quotes] = STATE(3725), + [sym__str_single_quotes] = STATE(3725), + [sym__str_back_ticks] = STATE(3725), + [sym_val_interpolated] = STATE(4862), + [sym__inter_single_quotes] = STATE(4846), + [sym__inter_double_quotes] = STATE(4847), + [sym_val_list] = STATE(4862), + [sym__spread_list] = STATE(4959), + [sym_val_entry] = STATE(4778), + [sym_val_record] = STATE(4862), + [sym_val_table] = STATE(4862), + [sym_val_closure] = STATE(4862), + [sym__unquoted_in_list] = STATE(4479), + [sym__unquoted_in_list_with_expr] = STATE(4961), + [sym__unquoted_anonymous_prefix] = STATE(4729), [sym_comment] = STATE(482), - [anon_sym_in] = ACTIONS(1852), - [sym__newline] = ACTIONS(1852), - [anon_sym_SEMI] = ACTIONS(1852), - [anon_sym_PIPE] = ACTIONS(1852), - [anon_sym_err_GT_PIPE] = ACTIONS(1852), - [anon_sym_out_GT_PIPE] = ACTIONS(1852), - [anon_sym_e_GT_PIPE] = ACTIONS(1852), - [anon_sym_o_GT_PIPE] = ACTIONS(1852), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1852), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1852), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1852), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1852), - [anon_sym_RPAREN] = ACTIONS(1852), - [anon_sym_GT2] = ACTIONS(1854), - [anon_sym_DASH2] = ACTIONS(1852), - [anon_sym_LBRACE] = ACTIONS(1852), - [anon_sym_RBRACE] = ACTIONS(1852), - [anon_sym_STAR2] = ACTIONS(1854), - [anon_sym_and2] = ACTIONS(1852), - [anon_sym_xor2] = ACTIONS(1852), - [anon_sym_or2] = ACTIONS(1852), - [anon_sym_not_DASHin2] = ACTIONS(1852), - [anon_sym_has2] = ACTIONS(1852), - [anon_sym_not_DASHhas2] = ACTIONS(1852), - [anon_sym_starts_DASHwith2] = ACTIONS(1852), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1852), - [anon_sym_ends_DASHwith2] = ACTIONS(1852), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1852), - [anon_sym_EQ_EQ2] = ACTIONS(1852), - [anon_sym_BANG_EQ2] = ACTIONS(1852), - [anon_sym_LT2] = ACTIONS(1854), - [anon_sym_LT_EQ2] = ACTIONS(1852), - [anon_sym_GT_EQ2] = ACTIONS(1852), - [anon_sym_EQ_TILDE2] = ACTIONS(1852), - [anon_sym_BANG_TILDE2] = ACTIONS(1852), - [anon_sym_like2] = ACTIONS(1852), - [anon_sym_not_DASHlike2] = ACTIONS(1852), - [anon_sym_LPAREN2] = ACTIONS(1852), - [anon_sym_STAR_STAR2] = ACTIONS(1852), - [anon_sym_PLUS_PLUS2] = ACTIONS(1852), - [anon_sym_SLASH2] = ACTIONS(1854), - [anon_sym_mod2] = ACTIONS(1852), - [anon_sym_SLASH_SLASH2] = ACTIONS(1852), - [anon_sym_PLUS2] = ACTIONS(1854), - [anon_sym_bit_DASHshl2] = ACTIONS(1852), - [anon_sym_bit_DASHshr2] = ACTIONS(1852), - [anon_sym_bit_DASHand2] = ACTIONS(1852), - [anon_sym_bit_DASHxor2] = ACTIONS(1852), - [anon_sym_bit_DASHor2] = ACTIONS(1852), - [anon_sym_DOT_DOT2] = ACTIONS(1854), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1852), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1852), - [aux_sym__immediate_decimal_token5] = ACTIONS(1856), - [anon_sym_err_GT] = ACTIONS(1854), - [anon_sym_out_GT] = ACTIONS(1854), - [anon_sym_e_GT] = ACTIONS(1854), - [anon_sym_o_GT] = ACTIONS(1854), - [anon_sym_err_PLUSout_GT] = ACTIONS(1854), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1854), - [anon_sym_o_PLUSe_GT] = ACTIONS(1854), - [anon_sym_e_PLUSo_GT] = ACTIONS(1854), - [anon_sym_err_GT_GT] = ACTIONS(1852), - [anon_sym_out_GT_GT] = ACTIONS(1852), - [anon_sym_e_GT_GT] = ACTIONS(1852), - [anon_sym_o_GT_GT] = ACTIONS(1852), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1852), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1852), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1852), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1852), - [sym__unquoted_pattern] = ACTIONS(1854), + [aux_sym__types_body_repeat1] = STATE(2185), + [aux_sym_list_body_repeat1] = STATE(624), + [anon_sym_true] = ACTIONS(1472), + [anon_sym_false] = ACTIONS(1472), + [anon_sym_null] = ACTIONS(1474), + [aux_sym_cmd_identifier_token3] = ACTIONS(1476), + [aux_sym_cmd_identifier_token4] = ACTIONS(1476), + [aux_sym_cmd_identifier_token5] = ACTIONS(1476), + [sym__newline] = ACTIONS(1566), + [anon_sym_LBRACK] = ACTIONS(1588), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_DOT_DOT] = ACTIONS(1488), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1490), + [anon_sym_DOT_DOT_LT] = ACTIONS(1490), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1492), + [aux_sym__val_number_decimal_token2] = ACTIONS(1494), + [aux_sym__val_number_decimal_token3] = ACTIONS(1496), + [aux_sym__val_number_decimal_token4] = ACTIONS(1496), + [aux_sym__val_number_token1] = ACTIONS(1414), + [aux_sym__val_number_token2] = ACTIONS(1414), + [aux_sym__val_number_token3] = ACTIONS(1414), + [anon_sym_0b] = ACTIONS(1416), + [anon_sym_0o] = ACTIONS(1418), + [anon_sym_0x] = ACTIONS(1418), + [sym_val_date] = ACTIONS(1498), + [anon_sym_DQUOTE] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_BQUOTE] = ACTIONS(1426), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1428), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1430), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1432), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1436), }, [STATE(483)] = { [sym_comment] = STATE(483), - [anon_sym_if] = 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_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_DOT_DOT2] = ACTIONS(1860), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1858), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1858), - [anon_sym_COLON2] = 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_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), + [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(484)] = { [sym_comment] = STATE(484), - [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_LBRACE] = 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_QMARK2] = ACTIONS(1537), - [anon_sym_BANG] = 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(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_EQ] = ACTIONS(1858), + [anon_sym_PLUS_EQ] = ACTIONS(1860), + [anon_sym_DASH_EQ] = ACTIONS(1860), + [anon_sym_STAR_EQ] = ACTIONS(1860), + [anon_sym_SLASH_EQ] = ACTIONS(1860), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1860), + [anon_sym_in] = ACTIONS(1699), + [sym__newline] = ACTIONS(1699), + [anon_sym_SEMI] = ACTIONS(1699), + [anon_sym_PIPE] = ACTIONS(1699), + [anon_sym_err_GT_PIPE] = ACTIONS(1699), + [anon_sym_out_GT_PIPE] = ACTIONS(1699), + [anon_sym_e_GT_PIPE] = ACTIONS(1699), + [anon_sym_o_GT_PIPE] = ACTIONS(1699), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1699), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1699), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1699), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1699), + [anon_sym_GT2] = ACTIONS(1615), + [anon_sym_DASH2] = ACTIONS(1615), + [anon_sym_STAR2] = ACTIONS(1615), + [anon_sym_and2] = ACTIONS(1699), + [anon_sym_xor2] = ACTIONS(1699), + [anon_sym_or2] = ACTIONS(1699), + [anon_sym_not_DASHin2] = ACTIONS(1699), + [anon_sym_has2] = ACTIONS(1699), + [anon_sym_not_DASHhas2] = ACTIONS(1699), + [anon_sym_starts_DASHwith2] = ACTIONS(1699), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1699), + [anon_sym_ends_DASHwith2] = ACTIONS(1699), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1699), + [anon_sym_EQ_EQ2] = ACTIONS(1699), + [anon_sym_BANG_EQ2] = ACTIONS(1699), + [anon_sym_LT2] = ACTIONS(1615), + [anon_sym_LT_EQ2] = ACTIONS(1699), + [anon_sym_GT_EQ2] = ACTIONS(1699), + [anon_sym_EQ_TILDE2] = ACTIONS(1699), + [anon_sym_BANG_TILDE2] = ACTIONS(1699), + [anon_sym_like2] = ACTIONS(1699), + [anon_sym_not_DASHlike2] = ACTIONS(1699), + [anon_sym_STAR_STAR2] = ACTIONS(1699), + [anon_sym_PLUS_PLUS2] = ACTIONS(1615), + [anon_sym_SLASH2] = ACTIONS(1615), + [anon_sym_mod2] = ACTIONS(1699), + [anon_sym_SLASH_SLASH2] = ACTIONS(1699), + [anon_sym_PLUS2] = ACTIONS(1615), + [anon_sym_bit_DASHshl2] = ACTIONS(1699), + [anon_sym_bit_DASHshr2] = ACTIONS(1699), + [anon_sym_bit_DASHand2] = ACTIONS(1699), + [anon_sym_bit_DASHxor2] = ACTIONS(1699), + [anon_sym_bit_DASHor2] = ACTIONS(1699), + [anon_sym_DOT_DOT2] = ACTIONS(1619), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1621), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1621), + [anon_sym_err_GT] = ACTIONS(1615), + [anon_sym_out_GT] = ACTIONS(1615), + [anon_sym_e_GT] = ACTIONS(1615), + [anon_sym_o_GT] = ACTIONS(1615), + [anon_sym_err_PLUSout_GT] = ACTIONS(1615), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1615), + [anon_sym_o_PLUSe_GT] = ACTIONS(1615), + [anon_sym_e_PLUSo_GT] = ACTIONS(1615), + [anon_sym_err_GT_GT] = ACTIONS(1699), + [anon_sym_out_GT_GT] = ACTIONS(1699), + [anon_sym_e_GT_GT] = ACTIONS(1699), + [anon_sym_o_GT_GT] = ACTIONS(1699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1699), [anon_sym_POUND] = ACTIONS(3), }, [STATE(485)] = { - [sym_cell_path] = STATE(949), - [sym_path] = STATE(458), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(485), - [aux_sym__where_predicate_lhs_repeat1] = STATE(427), + [anon_sym_else] = ACTIONS(1862), + [anon_sym_catch] = ACTIONS(1862), + [anon_sym_finally] = ACTIONS(1862), [anon_sym_in] = ACTIONS(1862), - [sym__newline] = ACTIONS(1862), + [sym__newline] = ACTIONS(1864), [anon_sym_SEMI] = ACTIONS(1862), [anon_sym_PIPE] = ACTIONS(1862), [anon_sym_err_GT_PIPE] = ACTIONS(1862), @@ -85736,13 +86589,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_COLON] = ACTIONS(1862), + [anon_sym_LBRACK] = ACTIONS(1862), [anon_sym_RPAREN] = ACTIONS(1862), - [anon_sym_GT2] = ACTIONS(1864), + [anon_sym_GT2] = ACTIONS(1867), [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_STAR2] = ACTIONS(1867), [anon_sym_and2] = ACTIONS(1862), [anon_sym_xor2] = ACTIONS(1862), [anon_sym_or2] = ACTIONS(1862), @@ -85755,7 +86608,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_LT2] = ACTIONS(1867), [anon_sym_LT_EQ2] = ACTIONS(1862), [anon_sym_GT_EQ2] = ACTIONS(1862), [anon_sym_EQ_TILDE2] = ACTIONS(1862), @@ -85764,24 +86617,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_SLASH2] = ACTIONS(1867), [anon_sym_mod2] = ACTIONS(1862), [anon_sym_SLASH_SLASH2] = ACTIONS(1862), - [anon_sym_PLUS2] = ACTIONS(1864), + [anon_sym_PLUS2] = ACTIONS(1867), [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(1866), - [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] = ACTIONS(1867), + [anon_sym_out_GT] = ACTIONS(1867), + [anon_sym_e_GT] = ACTIONS(1867), + [anon_sym_o_GT] = ACTIONS(1867), + [anon_sym_err_PLUSout_GT] = ACTIONS(1867), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1867), + [anon_sym_o_PLUSe_GT] = ACTIONS(1867), + [anon_sym_e_PLUSo_GT] = ACTIONS(1867), [anon_sym_err_GT_GT] = ACTIONS(1862), [anon_sym_out_GT_GT] = ACTIONS(1862), [anon_sym_e_GT_GT] = ACTIONS(1862), @@ -85793,222 +86645,222 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [STATE(486)] = { - [sym_cell_path] = STATE(972), - [sym_path] = STATE(720), [sym_comment] = STATE(486), - [aux_sym__where_predicate_lhs_repeat1] = STATE(622), - [ts_builtin_sym_end] = 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(1442), - [anon_sym_DASH2] = ACTIONS(1444), - [anon_sym_STAR2] = ACTIONS(1442), - [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(1442), - [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(1442), - [anon_sym_mod2] = ACTIONS(1444), - [anon_sym_SLASH_SLASH2] = ACTIONS(1444), - [anon_sym_PLUS2] = ACTIONS(1442), - [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(1442), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1444), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1444), - [anon_sym_DOT2] = ACTIONS(1868), - [anon_sym_err_GT] = ACTIONS(1442), - [anon_sym_out_GT] = ACTIONS(1442), - [anon_sym_e_GT] = ACTIONS(1442), - [anon_sym_o_GT] = ACTIONS(1442), - [anon_sym_err_PLUSout_GT] = ACTIONS(1442), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1442), - [anon_sym_o_PLUSe_GT] = ACTIONS(1442), - [anon_sym_e_PLUSo_GT] = ACTIONS(1442), - [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), + [ts_builtin_sym_end] = ACTIONS(769), + [anon_sym_in] = ACTIONS(769), + [sym__newline] = ACTIONS(769), + [anon_sym_SEMI] = ACTIONS(769), + [anon_sym_PIPE] = ACTIONS(769), + [anon_sym_err_GT_PIPE] = ACTIONS(769), + [anon_sym_out_GT_PIPE] = ACTIONS(769), + [anon_sym_e_GT_PIPE] = ACTIONS(769), + [anon_sym_o_GT_PIPE] = ACTIONS(769), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(769), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(769), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(769), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(769), + [anon_sym_GT2] = ACTIONS(767), + [anon_sym_DASH2] = ACTIONS(769), + [anon_sym_STAR2] = ACTIONS(767), + [anon_sym_and2] = ACTIONS(769), + [anon_sym_xor2] = ACTIONS(769), + [anon_sym_or2] = ACTIONS(769), + [anon_sym_not_DASHin2] = ACTIONS(769), + [anon_sym_has2] = ACTIONS(769), + [anon_sym_not_DASHhas2] = ACTIONS(769), + [anon_sym_starts_DASHwith2] = ACTIONS(769), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(769), + [anon_sym_ends_DASHwith2] = ACTIONS(769), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(769), + [anon_sym_EQ_EQ2] = ACTIONS(769), + [anon_sym_BANG_EQ2] = ACTIONS(769), + [anon_sym_LT2] = ACTIONS(767), + [anon_sym_LT_EQ2] = ACTIONS(769), + [anon_sym_GT_EQ2] = ACTIONS(769), + [anon_sym_EQ_TILDE2] = ACTIONS(769), + [anon_sym_BANG_TILDE2] = ACTIONS(769), + [anon_sym_like2] = ACTIONS(769), + [anon_sym_not_DASHlike2] = ACTIONS(769), + [anon_sym_LPAREN2] = ACTIONS(769), + [anon_sym_STAR_STAR2] = ACTIONS(769), + [anon_sym_PLUS_PLUS2] = ACTIONS(769), + [anon_sym_SLASH2] = ACTIONS(767), + [anon_sym_mod2] = ACTIONS(769), + [anon_sym_SLASH_SLASH2] = ACTIONS(769), + [anon_sym_PLUS2] = ACTIONS(767), + [anon_sym_bit_DASHshl2] = ACTIONS(769), + [anon_sym_bit_DASHshr2] = ACTIONS(769), + [anon_sym_bit_DASHand2] = ACTIONS(769), + [anon_sym_bit_DASHxor2] = ACTIONS(769), + [anon_sym_bit_DASHor2] = ACTIONS(769), + [anon_sym_DOT_DOT2] = ACTIONS(767), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(769), + [sym_filesize_unit] = ACTIONS(767), + [sym_duration_unit] = ACTIONS(769), + [anon_sym_err_GT] = ACTIONS(767), + [anon_sym_out_GT] = ACTIONS(767), + [anon_sym_e_GT] = ACTIONS(767), + [anon_sym_o_GT] = ACTIONS(767), + [anon_sym_err_PLUSout_GT] = ACTIONS(767), + [anon_sym_out_PLUSerr_GT] = ACTIONS(767), + [anon_sym_o_PLUSe_GT] = ACTIONS(767), + [anon_sym_e_PLUSo_GT] = ACTIONS(767), + [anon_sym_err_GT_GT] = ACTIONS(769), + [anon_sym_out_GT_GT] = ACTIONS(769), + [anon_sym_e_GT_GT] = ACTIONS(769), + [anon_sym_o_GT_GT] = ACTIONS(769), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(769), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(769), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(769), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(769), + [sym__unquoted_pattern] = ACTIONS(767), [anon_sym_POUND] = ACTIONS(3), }, [STATE(487)] = { + [sym_cell_path] = STATE(969), + [sym_path] = STATE(715), [sym_comment] = STATE(487), - [ts_builtin_sym_end] = ACTIONS(1541), - [anon_sym_in] = ACTIONS(1541), - [sym__newline] = ACTIONS(1541), - [anon_sym_SEMI] = ACTIONS(1541), - [anon_sym_PIPE] = ACTIONS(1541), - [anon_sym_err_GT_PIPE] = ACTIONS(1541), - [anon_sym_out_GT_PIPE] = ACTIONS(1541), - [anon_sym_e_GT_PIPE] = ACTIONS(1541), - [anon_sym_o_GT_PIPE] = ACTIONS(1541), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1541), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1541), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1541), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1541), - [anon_sym_GT2] = ACTIONS(1539), - [anon_sym_DASH2] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_STAR2] = ACTIONS(1539), - [anon_sym_and2] = ACTIONS(1541), - [anon_sym_xor2] = ACTIONS(1541), - [anon_sym_or2] = ACTIONS(1541), - [anon_sym_not_DASHin2] = ACTIONS(1541), - [anon_sym_has2] = ACTIONS(1541), - [anon_sym_not_DASHhas2] = ACTIONS(1541), - [anon_sym_starts_DASHwith2] = ACTIONS(1541), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1541), - [anon_sym_ends_DASHwith2] = ACTIONS(1541), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1541), - [anon_sym_EQ_EQ2] = ACTIONS(1541), - [anon_sym_BANG_EQ2] = ACTIONS(1541), - [anon_sym_LT2] = ACTIONS(1539), - [anon_sym_LT_EQ2] = ACTIONS(1541), - [anon_sym_GT_EQ2] = ACTIONS(1541), - [anon_sym_EQ_TILDE2] = ACTIONS(1541), - [anon_sym_BANG_TILDE2] = ACTIONS(1541), - [anon_sym_like2] = ACTIONS(1541), - [anon_sym_not_DASHlike2] = ACTIONS(1541), - [anon_sym_STAR_STAR2] = ACTIONS(1541), - [anon_sym_PLUS_PLUS2] = ACTIONS(1541), - [anon_sym_SLASH2] = ACTIONS(1539), - [anon_sym_mod2] = ACTIONS(1541), - [anon_sym_SLASH_SLASH2] = ACTIONS(1541), - [anon_sym_PLUS2] = ACTIONS(1539), - [anon_sym_bit_DASHshl2] = ACTIONS(1541), - [anon_sym_bit_DASHshr2] = ACTIONS(1541), - [anon_sym_bit_DASHand2] = ACTIONS(1541), - [anon_sym_bit_DASHxor2] = ACTIONS(1541), - [anon_sym_bit_DASHor2] = ACTIONS(1541), - [anon_sym_DOT_DOT2] = ACTIONS(1539), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1541), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1541), - [anon_sym_QMARK2] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1539), - [anon_sym_DOT2] = ACTIONS(1539), - [anon_sym_err_GT] = ACTIONS(1539), - [anon_sym_out_GT] = ACTIONS(1539), - [anon_sym_e_GT] = ACTIONS(1539), - [anon_sym_o_GT] = ACTIONS(1539), - [anon_sym_err_PLUSout_GT] = ACTIONS(1539), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1539), - [anon_sym_o_PLUSe_GT] = ACTIONS(1539), - [anon_sym_e_PLUSo_GT] = ACTIONS(1539), - [anon_sym_err_GT_GT] = ACTIONS(1541), - [anon_sym_out_GT_GT] = ACTIONS(1541), - [anon_sym_e_GT_GT] = ACTIONS(1541), - [anon_sym_o_GT_GT] = ACTIONS(1541), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1541), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1541), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1541), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1541), + [aux_sym__where_predicate_lhs_repeat1] = STATE(526), + [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_GT2] = ACTIONS(1655), + [anon_sym_DASH2] = 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_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), + [anon_sym_DOT_DOT2] = ACTIONS(1655), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1653), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1653), + [anon_sym_DOT2] = ACTIONS(1869), + [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(488)] = { [sym_comment] = STATE(488), - [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_in] = ACTIONS(1846), + [sym__newline] = ACTIONS(1846), + [anon_sym_SEMI] = ACTIONS(1846), + [anon_sym_PIPE] = ACTIONS(1846), + [anon_sym_err_GT_PIPE] = ACTIONS(1846), + [anon_sym_out_GT_PIPE] = ACTIONS(1846), + [anon_sym_e_GT_PIPE] = ACTIONS(1846), + [anon_sym_o_GT_PIPE] = ACTIONS(1846), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1846), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1846), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1846), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1846), + [anon_sym_RPAREN] = ACTIONS(1846), + [anon_sym_GT2] = ACTIONS(1848), + [anon_sym_DASH2] = ACTIONS(1846), + [anon_sym_LBRACE] = ACTIONS(1846), + [anon_sym_RBRACE] = ACTIONS(1846), + [anon_sym_STAR2] = ACTIONS(1848), + [anon_sym_and2] = ACTIONS(1846), + [anon_sym_xor2] = ACTIONS(1846), + [anon_sym_or2] = ACTIONS(1846), + [anon_sym_not_DASHin2] = ACTIONS(1846), + [anon_sym_has2] = ACTIONS(1846), + [anon_sym_not_DASHhas2] = ACTIONS(1846), + [anon_sym_starts_DASHwith2] = ACTIONS(1846), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1846), + [anon_sym_ends_DASHwith2] = ACTIONS(1846), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1846), + [anon_sym_EQ_EQ2] = ACTIONS(1846), + [anon_sym_BANG_EQ2] = ACTIONS(1846), + [anon_sym_LT2] = ACTIONS(1848), + [anon_sym_LT_EQ2] = ACTIONS(1846), + [anon_sym_GT_EQ2] = ACTIONS(1846), + [anon_sym_EQ_TILDE2] = ACTIONS(1846), + [anon_sym_BANG_TILDE2] = ACTIONS(1846), + [anon_sym_like2] = ACTIONS(1846), + [anon_sym_not_DASHlike2] = ACTIONS(1846), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_STAR_STAR2] = ACTIONS(1846), + [anon_sym_PLUS_PLUS2] = ACTIONS(1846), + [anon_sym_SLASH2] = ACTIONS(1848), + [anon_sym_mod2] = ACTIONS(1846), + [anon_sym_SLASH_SLASH2] = ACTIONS(1846), + [anon_sym_PLUS2] = ACTIONS(1848), + [anon_sym_bit_DASHshl2] = ACTIONS(1846), + [anon_sym_bit_DASHshr2] = ACTIONS(1846), + [anon_sym_bit_DASHand2] = ACTIONS(1846), + [anon_sym_bit_DASHxor2] = ACTIONS(1846), + [anon_sym_bit_DASHor2] = ACTIONS(1846), + [anon_sym_DOT_DOT2] = ACTIONS(1848), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1846), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1846), + [anon_sym_err_GT] = ACTIONS(1848), + [anon_sym_out_GT] = ACTIONS(1848), + [anon_sym_e_GT] = ACTIONS(1848), + [anon_sym_o_GT] = ACTIONS(1848), + [anon_sym_err_PLUSout_GT] = ACTIONS(1848), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1848), + [anon_sym_o_PLUSe_GT] = ACTIONS(1848), + [anon_sym_e_PLUSo_GT] = ACTIONS(1848), + [anon_sym_err_GT_GT] = ACTIONS(1846), + [anon_sym_out_GT_GT] = ACTIONS(1846), + [anon_sym_e_GT_GT] = ACTIONS(1846), + [anon_sym_o_GT_GT] = ACTIONS(1846), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1846), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1846), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1846), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1846), + [sym__unquoted_pattern] = ACTIONS(1848), [anon_sym_POUND] = ACTIONS(3), }, [STATE(489)] = { @@ -86085,279 +86937,425 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [STATE(490)] = { - [sym__path_suffix] = STATE(712), [sym_comment] = STATE(490), - [ts_builtin_sym_end] = 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(1456), - [anon_sym_DASH2] = ACTIONS(1458), - [anon_sym_STAR2] = ACTIONS(1456), - [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(1456), - [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(1456), - [anon_sym_mod2] = ACTIONS(1458), - [anon_sym_SLASH_SLASH2] = ACTIONS(1458), - [anon_sym_PLUS2] = ACTIONS(1456), - [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(1456), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1458), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1458), - [anon_sym_QMARK2] = ACTIONS(1874), - [anon_sym_BANG] = ACTIONS(1876), - [anon_sym_DOT2] = ACTIONS(1456), - [anon_sym_err_GT] = ACTIONS(1456), - [anon_sym_out_GT] = ACTIONS(1456), - [anon_sym_e_GT] = ACTIONS(1456), - [anon_sym_o_GT] = ACTIONS(1456), - [anon_sym_err_PLUSout_GT] = ACTIONS(1456), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1456), - [anon_sym_o_PLUSe_GT] = ACTIONS(1456), - [anon_sym_e_PLUSo_GT] = ACTIONS(1456), - [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), + [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_LBRACE] = 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_QMARK2] = ACTIONS(1522), + [anon_sym_BANG] = 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(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(491)] = { + [sym_cell_path] = STATE(927), + [sym_path] = STATE(458), [sym_comment] = STATE(491), - [anon_sym_if] = 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_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_DOT_DOT2] = ACTIONS(1880), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1878), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1878), - [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), + [aux_sym__where_predicate_lhs_repeat1] = STATE(428), + [anon_sym_in] = ACTIONS(1871), + [sym__newline] = ACTIONS(1871), + [anon_sym_SEMI] = ACTIONS(1871), + [anon_sym_PIPE] = ACTIONS(1871), + [anon_sym_err_GT_PIPE] = ACTIONS(1871), + [anon_sym_out_GT_PIPE] = ACTIONS(1871), + [anon_sym_e_GT_PIPE] = ACTIONS(1871), + [anon_sym_o_GT_PIPE] = ACTIONS(1871), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1871), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1871), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1871), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1871), + [anon_sym_RPAREN] = ACTIONS(1871), + [anon_sym_GT2] = ACTIONS(1874), + [anon_sym_DASH2] = ACTIONS(1871), + [anon_sym_LBRACE] = ACTIONS(1871), + [anon_sym_RBRACE] = ACTIONS(1871), + [anon_sym_EQ_GT] = ACTIONS(1871), + [anon_sym_STAR2] = ACTIONS(1874), + [anon_sym_and2] = ACTIONS(1871), + [anon_sym_xor2] = ACTIONS(1871), + [anon_sym_or2] = ACTIONS(1871), + [anon_sym_not_DASHin2] = ACTIONS(1871), + [anon_sym_has2] = ACTIONS(1871), + [anon_sym_not_DASHhas2] = ACTIONS(1871), + [anon_sym_starts_DASHwith2] = ACTIONS(1871), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1871), + [anon_sym_ends_DASHwith2] = ACTIONS(1871), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1871), + [anon_sym_EQ_EQ2] = ACTIONS(1871), + [anon_sym_BANG_EQ2] = ACTIONS(1871), + [anon_sym_LT2] = ACTIONS(1874), + [anon_sym_LT_EQ2] = ACTIONS(1871), + [anon_sym_GT_EQ2] = ACTIONS(1871), + [anon_sym_EQ_TILDE2] = ACTIONS(1871), + [anon_sym_BANG_TILDE2] = ACTIONS(1871), + [anon_sym_like2] = ACTIONS(1871), + [anon_sym_not_DASHlike2] = ACTIONS(1871), + [anon_sym_STAR_STAR2] = ACTIONS(1871), + [anon_sym_PLUS_PLUS2] = ACTIONS(1871), + [anon_sym_SLASH2] = ACTIONS(1874), + [anon_sym_mod2] = ACTIONS(1871), + [anon_sym_SLASH_SLASH2] = ACTIONS(1871), + [anon_sym_PLUS2] = ACTIONS(1874), + [anon_sym_bit_DASHshl2] = ACTIONS(1871), + [anon_sym_bit_DASHshr2] = ACTIONS(1871), + [anon_sym_bit_DASHand2] = ACTIONS(1871), + [anon_sym_bit_DASHxor2] = ACTIONS(1871), + [anon_sym_bit_DASHor2] = ACTIONS(1871), + [anon_sym_DOT2] = ACTIONS(1877), + [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(1871), + [anon_sym_out_GT_GT] = ACTIONS(1871), + [anon_sym_e_GT_GT] = ACTIONS(1871), + [anon_sym_o_GT_GT] = ACTIONS(1871), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1871), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1871), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1871), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1871), [anon_sym_POUND] = ACTIONS(3), }, [STATE(492)] = { - [sym_cell_path] = STATE(963), - [sym_path] = STATE(720), [sym_comment] = STATE(492), - [aux_sym__where_predicate_lhs_repeat1] = STATE(622), - [ts_builtin_sym_end] = ACTIONS(1657), - [anon_sym_in] = ACTIONS(1657), - [sym__newline] = ACTIONS(1657), - [anon_sym_SEMI] = ACTIONS(1657), - [anon_sym_PIPE] = ACTIONS(1657), - [anon_sym_err_GT_PIPE] = ACTIONS(1657), - [anon_sym_out_GT_PIPE] = ACTIONS(1657), - [anon_sym_e_GT_PIPE] = ACTIONS(1657), - [anon_sym_o_GT_PIPE] = ACTIONS(1657), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1657), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1657), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1657), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1657), - [anon_sym_GT2] = ACTIONS(1659), - [anon_sym_DASH2] = ACTIONS(1657), - [anon_sym_STAR2] = ACTIONS(1659), - [anon_sym_and2] = ACTIONS(1657), - [anon_sym_xor2] = ACTIONS(1657), - [anon_sym_or2] = ACTIONS(1657), - [anon_sym_not_DASHin2] = ACTIONS(1657), - [anon_sym_has2] = ACTIONS(1657), - [anon_sym_not_DASHhas2] = ACTIONS(1657), - [anon_sym_starts_DASHwith2] = ACTIONS(1657), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1657), - [anon_sym_ends_DASHwith2] = ACTIONS(1657), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1657), - [anon_sym_EQ_EQ2] = ACTIONS(1657), - [anon_sym_BANG_EQ2] = ACTIONS(1657), - [anon_sym_LT2] = ACTIONS(1659), - [anon_sym_LT_EQ2] = ACTIONS(1657), - [anon_sym_GT_EQ2] = ACTIONS(1657), - [anon_sym_EQ_TILDE2] = ACTIONS(1657), - [anon_sym_BANG_TILDE2] = ACTIONS(1657), - [anon_sym_like2] = ACTIONS(1657), - [anon_sym_not_DASHlike2] = ACTIONS(1657), - [anon_sym_STAR_STAR2] = ACTIONS(1657), - [anon_sym_PLUS_PLUS2] = ACTIONS(1657), - [anon_sym_SLASH2] = ACTIONS(1659), - [anon_sym_mod2] = ACTIONS(1657), - [anon_sym_SLASH_SLASH2] = ACTIONS(1657), - [anon_sym_PLUS2] = ACTIONS(1659), - [anon_sym_bit_DASHshl2] = ACTIONS(1657), - [anon_sym_bit_DASHshr2] = ACTIONS(1657), - [anon_sym_bit_DASHand2] = ACTIONS(1657), - [anon_sym_bit_DASHxor2] = ACTIONS(1657), - [anon_sym_bit_DASHor2] = ACTIONS(1657), - [anon_sym_DOT_DOT2] = ACTIONS(1659), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1657), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1657), - [anon_sym_DOT2] = ACTIONS(1868), - [anon_sym_err_GT] = ACTIONS(1659), - [anon_sym_out_GT] = ACTIONS(1659), - [anon_sym_e_GT] = ACTIONS(1659), - [anon_sym_o_GT] = ACTIONS(1659), - [anon_sym_err_PLUSout_GT] = ACTIONS(1659), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1659), - [anon_sym_o_PLUSe_GT] = ACTIONS(1659), - [anon_sym_e_PLUSo_GT] = ACTIONS(1659), - [anon_sym_err_GT_GT] = ACTIONS(1657), - [anon_sym_out_GT_GT] = ACTIONS(1657), - [anon_sym_e_GT_GT] = ACTIONS(1657), - [anon_sym_o_GT_GT] = ACTIONS(1657), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1657), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1657), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1657), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1657), + [ts_builtin_sym_end] = ACTIONS(1506), + [anon_sym_in] = ACTIONS(1506), + [sym__newline] = ACTIONS(1506), + [anon_sym_SEMI] = ACTIONS(1506), + [anon_sym_PIPE] = ACTIONS(1506), + [anon_sym_err_GT_PIPE] = ACTIONS(1506), + [anon_sym_out_GT_PIPE] = ACTIONS(1506), + [anon_sym_e_GT_PIPE] = ACTIONS(1506), + [anon_sym_o_GT_PIPE] = ACTIONS(1506), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1506), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1506), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1506), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1506), + [anon_sym_GT2] = ACTIONS(1504), + [anon_sym_DASH2] = ACTIONS(1506), + [anon_sym_LBRACE] = ACTIONS(1506), + [anon_sym_STAR2] = ACTIONS(1504), + [anon_sym_and2] = ACTIONS(1506), + [anon_sym_xor2] = ACTIONS(1506), + [anon_sym_or2] = ACTIONS(1506), + [anon_sym_not_DASHin2] = ACTIONS(1506), + [anon_sym_has2] = ACTIONS(1506), + [anon_sym_not_DASHhas2] = ACTIONS(1506), + [anon_sym_starts_DASHwith2] = ACTIONS(1506), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1506), + [anon_sym_ends_DASHwith2] = ACTIONS(1506), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1506), + [anon_sym_EQ_EQ2] = ACTIONS(1506), + [anon_sym_BANG_EQ2] = ACTIONS(1506), + [anon_sym_LT2] = ACTIONS(1504), + [anon_sym_LT_EQ2] = ACTIONS(1506), + [anon_sym_GT_EQ2] = ACTIONS(1506), + [anon_sym_EQ_TILDE2] = ACTIONS(1506), + [anon_sym_BANG_TILDE2] = ACTIONS(1506), + [anon_sym_like2] = ACTIONS(1506), + [anon_sym_not_DASHlike2] = ACTIONS(1506), + [anon_sym_STAR_STAR2] = ACTIONS(1506), + [anon_sym_PLUS_PLUS2] = ACTIONS(1506), + [anon_sym_SLASH2] = ACTIONS(1504), + [anon_sym_mod2] = ACTIONS(1506), + [anon_sym_SLASH_SLASH2] = ACTIONS(1506), + [anon_sym_PLUS2] = ACTIONS(1504), + [anon_sym_bit_DASHshl2] = ACTIONS(1506), + [anon_sym_bit_DASHshr2] = ACTIONS(1506), + [anon_sym_bit_DASHand2] = ACTIONS(1506), + [anon_sym_bit_DASHxor2] = ACTIONS(1506), + [anon_sym_bit_DASHor2] = ACTIONS(1506), + [anon_sym_DOT_DOT2] = ACTIONS(1504), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1506), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1506), + [anon_sym_QMARK2] = ACTIONS(1506), + [anon_sym_BANG] = ACTIONS(1504), + [anon_sym_DOT2] = ACTIONS(1504), + [anon_sym_err_GT] = ACTIONS(1504), + [anon_sym_out_GT] = ACTIONS(1504), + [anon_sym_e_GT] = ACTIONS(1504), + [anon_sym_o_GT] = ACTIONS(1504), + [anon_sym_err_PLUSout_GT] = ACTIONS(1504), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1504), + [anon_sym_o_PLUSe_GT] = ACTIONS(1504), + [anon_sym_e_PLUSo_GT] = ACTIONS(1504), + [anon_sym_err_GT_GT] = ACTIONS(1506), + [anon_sym_out_GT_GT] = ACTIONS(1506), + [anon_sym_e_GT_GT] = ACTIONS(1506), + [anon_sym_o_GT_GT] = ACTIONS(1506), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1506), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1506), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1506), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1506), [anon_sym_POUND] = ACTIONS(3), }, [STATE(493)] = { - [sym_cell_path] = STATE(932), - [sym_path] = STATE(458), [sym_comment] = STATE(493), - [aux_sym__where_predicate_lhs_repeat1] = STATE(427), - [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_in] = ACTIONS(1730), + [sym__newline] = ACTIONS(1730), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_PIPE] = ACTIONS(1730), + [anon_sym_err_GT_PIPE] = ACTIONS(1730), + [anon_sym_out_GT_PIPE] = ACTIONS(1730), + [anon_sym_e_GT_PIPE] = ACTIONS(1730), + [anon_sym_o_GT_PIPE] = ACTIONS(1730), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1730), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1730), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1730), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1730), + [anon_sym_RPAREN] = ACTIONS(1730), + [anon_sym_GT2] = ACTIONS(1732), + [anon_sym_DASH2] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(1730), + [anon_sym_STAR2] = ACTIONS(1732), + [anon_sym_and2] = ACTIONS(1730), + [anon_sym_xor2] = ACTIONS(1730), + [anon_sym_or2] = ACTIONS(1730), + [anon_sym_not_DASHin2] = ACTIONS(1730), + [anon_sym_has2] = ACTIONS(1730), + [anon_sym_not_DASHhas2] = ACTIONS(1730), + [anon_sym_starts_DASHwith2] = ACTIONS(1730), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1730), + [anon_sym_ends_DASHwith2] = ACTIONS(1730), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1730), + [anon_sym_EQ_EQ2] = ACTIONS(1730), + [anon_sym_BANG_EQ2] = ACTIONS(1730), + [anon_sym_LT2] = ACTIONS(1732), + [anon_sym_LT_EQ2] = ACTIONS(1730), + [anon_sym_GT_EQ2] = ACTIONS(1730), + [anon_sym_EQ_TILDE2] = ACTIONS(1730), + [anon_sym_BANG_TILDE2] = ACTIONS(1730), + [anon_sym_like2] = ACTIONS(1730), + [anon_sym_not_DASHlike2] = ACTIONS(1730), + [anon_sym_LPAREN2] = ACTIONS(1730), + [anon_sym_STAR_STAR2] = ACTIONS(1730), + [anon_sym_PLUS_PLUS2] = ACTIONS(1730), + [anon_sym_SLASH2] = ACTIONS(1732), + [anon_sym_mod2] = ACTIONS(1730), + [anon_sym_SLASH_SLASH2] = ACTIONS(1730), + [anon_sym_PLUS2] = ACTIONS(1732), + [anon_sym_bit_DASHshl2] = ACTIONS(1730), + [anon_sym_bit_DASHshr2] = ACTIONS(1730), + [anon_sym_bit_DASHand2] = ACTIONS(1730), + [anon_sym_bit_DASHxor2] = ACTIONS(1730), + [anon_sym_bit_DASHor2] = ACTIONS(1730), + [anon_sym_DOT_DOT2] = ACTIONS(1732), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1730), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1730), + [anon_sym_err_GT] = ACTIONS(1732), + [anon_sym_out_GT] = ACTIONS(1732), + [anon_sym_e_GT] = ACTIONS(1732), + [anon_sym_o_GT] = ACTIONS(1732), + [anon_sym_err_PLUSout_GT] = ACTIONS(1732), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1732), + [anon_sym_o_PLUSe_GT] = ACTIONS(1732), + [anon_sym_e_PLUSo_GT] = ACTIONS(1732), + [anon_sym_err_GT_GT] = ACTIONS(1730), + [anon_sym_out_GT_GT] = ACTIONS(1730), + [anon_sym_e_GT_GT] = ACTIONS(1730), + [anon_sym_o_GT_GT] = ACTIONS(1730), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1730), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1730), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1730), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1730), + [sym__unquoted_pattern] = ACTIONS(1732), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(494)] = { + [sym_comment] = STATE(494), + [ts_builtin_sym_end] = ACTIONS(1730), + [anon_sym_in] = ACTIONS(1730), + [sym__newline] = ACTIONS(1730), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_PIPE] = ACTIONS(1730), + [anon_sym_err_GT_PIPE] = ACTIONS(1730), + [anon_sym_out_GT_PIPE] = ACTIONS(1730), + [anon_sym_e_GT_PIPE] = ACTIONS(1730), + [anon_sym_o_GT_PIPE] = ACTIONS(1730), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1730), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1730), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1730), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1730), + [anon_sym_GT2] = ACTIONS(1732), + [anon_sym_DASH2] = ACTIONS(1730), + [anon_sym_STAR2] = ACTIONS(1732), + [anon_sym_and2] = ACTIONS(1730), + [anon_sym_xor2] = ACTIONS(1730), + [anon_sym_or2] = ACTIONS(1730), + [anon_sym_not_DASHin2] = ACTIONS(1730), + [anon_sym_has2] = ACTIONS(1730), + [anon_sym_not_DASHhas2] = ACTIONS(1730), + [anon_sym_starts_DASHwith2] = ACTIONS(1730), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1730), + [anon_sym_ends_DASHwith2] = ACTIONS(1730), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1730), + [anon_sym_EQ_EQ2] = ACTIONS(1730), + [anon_sym_BANG_EQ2] = ACTIONS(1730), + [anon_sym_LT2] = ACTIONS(1732), + [anon_sym_LT_EQ2] = ACTIONS(1730), + [anon_sym_GT_EQ2] = ACTIONS(1730), + [anon_sym_EQ_TILDE2] = ACTIONS(1730), + [anon_sym_BANG_TILDE2] = ACTIONS(1730), + [anon_sym_like2] = ACTIONS(1730), + [anon_sym_not_DASHlike2] = ACTIONS(1730), + [anon_sym_LPAREN2] = ACTIONS(1730), + [anon_sym_STAR_STAR2] = ACTIONS(1730), + [anon_sym_PLUS_PLUS2] = ACTIONS(1730), + [anon_sym_SLASH2] = ACTIONS(1732), + [anon_sym_mod2] = ACTIONS(1730), + [anon_sym_SLASH_SLASH2] = ACTIONS(1730), + [anon_sym_PLUS2] = ACTIONS(1732), + [anon_sym_bit_DASHshl2] = ACTIONS(1730), + [anon_sym_bit_DASHshr2] = ACTIONS(1730), + [anon_sym_bit_DASHand2] = ACTIONS(1730), + [anon_sym_bit_DASHxor2] = ACTIONS(1730), + [anon_sym_bit_DASHor2] = ACTIONS(1730), + [anon_sym_DOT_DOT2] = ACTIONS(1732), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1730), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1730), + [aux_sym__immediate_decimal_token1] = ACTIONS(1879), + [aux_sym__immediate_decimal_token5] = ACTIONS(1881), + [anon_sym_err_GT] = ACTIONS(1732), + [anon_sym_out_GT] = ACTIONS(1732), + [anon_sym_e_GT] = ACTIONS(1732), + [anon_sym_o_GT] = ACTIONS(1732), + [anon_sym_err_PLUSout_GT] = ACTIONS(1732), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1732), + [anon_sym_o_PLUSe_GT] = ACTIONS(1732), + [anon_sym_e_PLUSo_GT] = ACTIONS(1732), + [anon_sym_err_GT_GT] = ACTIONS(1730), + [anon_sym_out_GT_GT] = ACTIONS(1730), + [anon_sym_e_GT_GT] = ACTIONS(1730), + [anon_sym_o_GT_GT] = ACTIONS(1730), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1730), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1730), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1730), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1730), + [sym__unquoted_pattern] = ACTIONS(1732), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(495)] = { + [sym_cell_path] = STATE(914), + [sym_path] = STATE(458), + [sym_comment] = STATE(495), + [aux_sym__where_predicate_lhs_repeat1] = STATE(428), + [anon_sym_in] = ACTIONS(1883), + [sym__newline] = ACTIONS(1883), + [anon_sym_SEMI] = ACTIONS(1883), + [anon_sym_PIPE] = ACTIONS(1883), + [anon_sym_err_GT_PIPE] = ACTIONS(1883), + [anon_sym_out_GT_PIPE] = ACTIONS(1883), + [anon_sym_e_GT_PIPE] = ACTIONS(1883), + [anon_sym_o_GT_PIPE] = ACTIONS(1883), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1883), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1883), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1883), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1883), + [anon_sym_RPAREN] = ACTIONS(1883), [anon_sym_GT2] = ACTIONS(1885), - [anon_sym_DASH2] = ACTIONS(1882), - [anon_sym_LBRACE] = ACTIONS(1882), - [anon_sym_RBRACE] = ACTIONS(1882), - [anon_sym_EQ_GT] = ACTIONS(1882), + [anon_sym_DASH2] = ACTIONS(1883), + [anon_sym_LBRACE] = ACTIONS(1883), + [anon_sym_RBRACE] = ACTIONS(1883), + [anon_sym_EQ_GT] = ACTIONS(1883), [anon_sym_STAR2] = ACTIONS(1885), - [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_and2] = ACTIONS(1883), + [anon_sym_xor2] = ACTIONS(1883), + [anon_sym_or2] = ACTIONS(1883), + [anon_sym_not_DASHin2] = ACTIONS(1883), + [anon_sym_has2] = ACTIONS(1883), + [anon_sym_not_DASHhas2] = ACTIONS(1883), + [anon_sym_starts_DASHwith2] = ACTIONS(1883), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1883), + [anon_sym_ends_DASHwith2] = ACTIONS(1883), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1883), + [anon_sym_EQ_EQ2] = ACTIONS(1883), + [anon_sym_BANG_EQ2] = ACTIONS(1883), [anon_sym_LT2] = ACTIONS(1885), - [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_LT_EQ2] = ACTIONS(1883), + [anon_sym_GT_EQ2] = ACTIONS(1883), + [anon_sym_EQ_TILDE2] = ACTIONS(1883), + [anon_sym_BANG_TILDE2] = ACTIONS(1883), + [anon_sym_like2] = ACTIONS(1883), + [anon_sym_not_DASHlike2] = ACTIONS(1883), + [anon_sym_STAR_STAR2] = ACTIONS(1883), + [anon_sym_PLUS_PLUS2] = ACTIONS(1883), [anon_sym_SLASH2] = ACTIONS(1885), - [anon_sym_mod2] = ACTIONS(1882), - [anon_sym_SLASH_SLASH2] = ACTIONS(1882), + [anon_sym_mod2] = ACTIONS(1883), + [anon_sym_SLASH_SLASH2] = ACTIONS(1883), [anon_sym_PLUS2] = ACTIONS(1885), - [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(1866), + [anon_sym_bit_DASHshl2] = ACTIONS(1883), + [anon_sym_bit_DASHshr2] = ACTIONS(1883), + [anon_sym_bit_DASHand2] = ACTIONS(1883), + [anon_sym_bit_DASHxor2] = ACTIONS(1883), + [anon_sym_bit_DASHor2] = ACTIONS(1883), + [anon_sym_DOT2] = ACTIONS(1877), [anon_sym_err_GT] = ACTIONS(1885), [anon_sym_out_GT] = ACTIONS(1885), [anon_sym_e_GT] = ACTIONS(1885), @@ -86366,1281 +87364,1353 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT] = ACTIONS(1885), [anon_sym_o_PLUSe_GT] = ACTIONS(1885), [anon_sym_e_PLUSo_GT] = ACTIONS(1885), - [anon_sym_err_GT_GT] = ACTIONS(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(494)] = { - [sym_cell_path] = STATE(938), - [sym_path] = STATE(720), - [sym_comment] = STATE(494), - [aux_sym__where_predicate_lhs_repeat1] = STATE(622), - [ts_builtin_sym_end] = ACTIONS(1645), - [anon_sym_in] = ACTIONS(1645), - [sym__newline] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1645), - [anon_sym_err_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_GT_PIPE] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), - [anon_sym_GT2] = ACTIONS(1647), - [anon_sym_DASH2] = ACTIONS(1645), - [anon_sym_STAR2] = ACTIONS(1647), - [anon_sym_and2] = ACTIONS(1645), - [anon_sym_xor2] = ACTIONS(1645), - [anon_sym_or2] = ACTIONS(1645), - [anon_sym_not_DASHin2] = ACTIONS(1645), - [anon_sym_has2] = ACTIONS(1645), - [anon_sym_not_DASHhas2] = ACTIONS(1645), - [anon_sym_starts_DASHwith2] = ACTIONS(1645), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1645), - [anon_sym_ends_DASHwith2] = ACTIONS(1645), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1645), - [anon_sym_EQ_EQ2] = ACTIONS(1645), - [anon_sym_BANG_EQ2] = ACTIONS(1645), - [anon_sym_LT2] = ACTIONS(1647), - [anon_sym_LT_EQ2] = ACTIONS(1645), - [anon_sym_GT_EQ2] = ACTIONS(1645), - [anon_sym_EQ_TILDE2] = ACTIONS(1645), - [anon_sym_BANG_TILDE2] = ACTIONS(1645), - [anon_sym_like2] = ACTIONS(1645), - [anon_sym_not_DASHlike2] = ACTIONS(1645), - [anon_sym_STAR_STAR2] = ACTIONS(1645), - [anon_sym_PLUS_PLUS2] = ACTIONS(1645), - [anon_sym_SLASH2] = ACTIONS(1647), - [anon_sym_mod2] = ACTIONS(1645), - [anon_sym_SLASH_SLASH2] = ACTIONS(1645), - [anon_sym_PLUS2] = ACTIONS(1647), - [anon_sym_bit_DASHshl2] = ACTIONS(1645), - [anon_sym_bit_DASHshr2] = ACTIONS(1645), - [anon_sym_bit_DASHand2] = ACTIONS(1645), - [anon_sym_bit_DASHxor2] = ACTIONS(1645), - [anon_sym_bit_DASHor2] = ACTIONS(1645), - [anon_sym_DOT_DOT2] = ACTIONS(1647), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1645), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1645), - [anon_sym_DOT2] = ACTIONS(1868), - [anon_sym_err_GT] = ACTIONS(1647), - [anon_sym_out_GT] = ACTIONS(1647), - [anon_sym_e_GT] = ACTIONS(1647), - [anon_sym_o_GT] = ACTIONS(1647), - [anon_sym_err_PLUSout_GT] = ACTIONS(1647), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1647), - [anon_sym_o_PLUSe_GT] = ACTIONS(1647), - [anon_sym_e_PLUSo_GT] = ACTIONS(1647), - [anon_sym_err_GT_GT] = ACTIONS(1645), - [anon_sym_out_GT_GT] = ACTIONS(1645), - [anon_sym_e_GT_GT] = ACTIONS(1645), - [anon_sym_o_GT_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(495)] = { - [sym_cell_path] = STATE(731), - [sym_path] = STATE(458), - [sym_comment] = STATE(495), - [aux_sym__where_predicate_lhs_repeat1] = STATE(427), - [anon_sym_in] = ACTIONS(1888), - [sym__newline] = ACTIONS(1888), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_PIPE] = ACTIONS(1888), - [anon_sym_err_GT_PIPE] = ACTIONS(1888), - [anon_sym_out_GT_PIPE] = ACTIONS(1888), - [anon_sym_e_GT_PIPE] = ACTIONS(1888), - [anon_sym_o_GT_PIPE] = ACTIONS(1888), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1888), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1888), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1888), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1888), - [anon_sym_RPAREN] = ACTIONS(1888), - [anon_sym_GT2] = ACTIONS(1890), - [anon_sym_DASH2] = ACTIONS(1888), - [anon_sym_LBRACE] = ACTIONS(1888), - [anon_sym_RBRACE] = ACTIONS(1888), - [anon_sym_EQ_GT] = ACTIONS(1888), - [anon_sym_STAR2] = ACTIONS(1890), - [anon_sym_and2] = ACTIONS(1888), - [anon_sym_xor2] = ACTIONS(1888), - [anon_sym_or2] = ACTIONS(1888), - [anon_sym_not_DASHin2] = ACTIONS(1888), - [anon_sym_has2] = ACTIONS(1888), - [anon_sym_not_DASHhas2] = ACTIONS(1888), - [anon_sym_starts_DASHwith2] = ACTIONS(1888), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1888), - [anon_sym_ends_DASHwith2] = ACTIONS(1888), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1888), - [anon_sym_EQ_EQ2] = ACTIONS(1888), - [anon_sym_BANG_EQ2] = ACTIONS(1888), - [anon_sym_LT2] = ACTIONS(1890), - [anon_sym_LT_EQ2] = ACTIONS(1888), - [anon_sym_GT_EQ2] = ACTIONS(1888), - [anon_sym_EQ_TILDE2] = ACTIONS(1888), - [anon_sym_BANG_TILDE2] = ACTIONS(1888), - [anon_sym_like2] = ACTIONS(1888), - [anon_sym_not_DASHlike2] = ACTIONS(1888), - [anon_sym_STAR_STAR2] = ACTIONS(1888), - [anon_sym_PLUS_PLUS2] = ACTIONS(1888), - [anon_sym_SLASH2] = ACTIONS(1890), - [anon_sym_mod2] = ACTIONS(1888), - [anon_sym_SLASH_SLASH2] = ACTIONS(1888), - [anon_sym_PLUS2] = ACTIONS(1890), - [anon_sym_bit_DASHshl2] = ACTIONS(1888), - [anon_sym_bit_DASHshr2] = ACTIONS(1888), - [anon_sym_bit_DASHand2] = ACTIONS(1888), - [anon_sym_bit_DASHxor2] = ACTIONS(1888), - [anon_sym_bit_DASHor2] = ACTIONS(1888), - [anon_sym_DOT2] = ACTIONS(1866), - [anon_sym_err_GT] = ACTIONS(1890), - [anon_sym_out_GT] = ACTIONS(1890), - [anon_sym_e_GT] = ACTIONS(1890), - [anon_sym_o_GT] = ACTIONS(1890), - [anon_sym_err_PLUSout_GT] = ACTIONS(1890), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1890), - [anon_sym_o_PLUSe_GT] = ACTIONS(1890), - [anon_sym_e_PLUSo_GT] = ACTIONS(1890), - [anon_sym_err_GT_GT] = ACTIONS(1888), - [anon_sym_out_GT_GT] = ACTIONS(1888), - [anon_sym_e_GT_GT] = ACTIONS(1888), - [anon_sym_o_GT_GT] = ACTIONS(1888), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1888), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1888), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1888), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1888), + [anon_sym_err_GT_GT] = ACTIONS(1883), + [anon_sym_out_GT_GT] = ACTIONS(1883), + [anon_sym_e_GT_GT] = ACTIONS(1883), + [anon_sym_o_GT_GT] = ACTIONS(1883), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1883), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1883), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1883), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1883), [anon_sym_POUND] = ACTIONS(3), }, [STATE(496)] = { + [sym_cell_path] = STATE(967), + [sym_path] = STATE(458), [sym_comment] = STATE(496), - [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_GT2] = ACTIONS(1580), - [anon_sym_DASH2] = ACTIONS(1582), - [anon_sym_LBRACE] = ACTIONS(1582), - [anon_sym_RBRACE] = ACTIONS(1582), - [anon_sym_EQ_GT] = ACTIONS(1582), - [anon_sym_STAR2] = ACTIONS(1580), - [anon_sym_and2] = ACTIONS(1582), - [anon_sym_xor2] = ACTIONS(1582), - [anon_sym_or2] = ACTIONS(1582), - [anon_sym_not_DASHin2] = ACTIONS(1582), - [anon_sym_has2] = ACTIONS(1582), - [anon_sym_not_DASHhas2] = ACTIONS(1582), - [anon_sym_starts_DASHwith2] = ACTIONS(1582), - [anon_sym_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(1580), - [anon_sym_LT_EQ2] = ACTIONS(1582), - [anon_sym_GT_EQ2] = ACTIONS(1582), - [anon_sym_EQ_TILDE2] = ACTIONS(1582), - [anon_sym_BANG_TILDE2] = ACTIONS(1582), - [anon_sym_like2] = ACTIONS(1582), - [anon_sym_not_DASHlike2] = ACTIONS(1582), - [anon_sym_STAR_STAR2] = ACTIONS(1582), - [anon_sym_PLUS_PLUS2] = ACTIONS(1582), - [anon_sym_SLASH2] = ACTIONS(1580), - [anon_sym_mod2] = ACTIONS(1582), - [anon_sym_SLASH_SLASH2] = ACTIONS(1582), - [anon_sym_PLUS2] = ACTIONS(1580), - [anon_sym_bit_DASHshl2] = ACTIONS(1582), - [anon_sym_bit_DASHshr2] = ACTIONS(1582), - [anon_sym_bit_DASHand2] = ACTIONS(1582), - [anon_sym_bit_DASHxor2] = ACTIONS(1582), - [anon_sym_bit_DASHor2] = ACTIONS(1582), - [anon_sym_DOT_DOT2] = ACTIONS(1580), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1582), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1582), - [anon_sym_COLON2] = ACTIONS(1582), - [anon_sym_err_GT] = ACTIONS(1580), - [anon_sym_out_GT] = ACTIONS(1580), - [anon_sym_e_GT] = ACTIONS(1580), - [anon_sym_o_GT] = ACTIONS(1580), - [anon_sym_err_PLUSout_GT] = ACTIONS(1580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1580), - [anon_sym_o_PLUSe_GT] = ACTIONS(1580), - [anon_sym_e_PLUSo_GT] = ACTIONS(1580), - [anon_sym_err_GT_GT] = ACTIONS(1582), - [anon_sym_out_GT_GT] = ACTIONS(1582), - [anon_sym_e_GT_GT] = ACTIONS(1582), - [anon_sym_o_GT_GT] = ACTIONS(1582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1582), + [aux_sym__where_predicate_lhs_repeat1] = STATE(428), + [anon_sym_in] = ACTIONS(1887), + [sym__newline] = ACTIONS(1887), + [anon_sym_SEMI] = ACTIONS(1887), + [anon_sym_PIPE] = ACTIONS(1887), + [anon_sym_err_GT_PIPE] = ACTIONS(1887), + [anon_sym_out_GT_PIPE] = ACTIONS(1887), + [anon_sym_e_GT_PIPE] = ACTIONS(1887), + [anon_sym_o_GT_PIPE] = ACTIONS(1887), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1887), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1887), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1887), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1887), + [anon_sym_RPAREN] = ACTIONS(1887), + [anon_sym_GT2] = ACTIONS(1889), + [anon_sym_DASH2] = ACTIONS(1887), + [anon_sym_LBRACE] = ACTIONS(1887), + [anon_sym_RBRACE] = ACTIONS(1887), + [anon_sym_EQ_GT] = ACTIONS(1887), + [anon_sym_STAR2] = ACTIONS(1889), + [anon_sym_and2] = ACTIONS(1887), + [anon_sym_xor2] = ACTIONS(1887), + [anon_sym_or2] = ACTIONS(1887), + [anon_sym_not_DASHin2] = ACTIONS(1887), + [anon_sym_has2] = ACTIONS(1887), + [anon_sym_not_DASHhas2] = ACTIONS(1887), + [anon_sym_starts_DASHwith2] = ACTIONS(1887), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1887), + [anon_sym_ends_DASHwith2] = ACTIONS(1887), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1887), + [anon_sym_EQ_EQ2] = ACTIONS(1887), + [anon_sym_BANG_EQ2] = ACTIONS(1887), + [anon_sym_LT2] = ACTIONS(1889), + [anon_sym_LT_EQ2] = ACTIONS(1887), + [anon_sym_GT_EQ2] = ACTIONS(1887), + [anon_sym_EQ_TILDE2] = ACTIONS(1887), + [anon_sym_BANG_TILDE2] = ACTIONS(1887), + [anon_sym_like2] = ACTIONS(1887), + [anon_sym_not_DASHlike2] = ACTIONS(1887), + [anon_sym_STAR_STAR2] = ACTIONS(1887), + [anon_sym_PLUS_PLUS2] = ACTIONS(1887), + [anon_sym_SLASH2] = ACTIONS(1889), + [anon_sym_mod2] = ACTIONS(1887), + [anon_sym_SLASH_SLASH2] = ACTIONS(1887), + [anon_sym_PLUS2] = ACTIONS(1889), + [anon_sym_bit_DASHshl2] = ACTIONS(1887), + [anon_sym_bit_DASHshr2] = ACTIONS(1887), + [anon_sym_bit_DASHand2] = ACTIONS(1887), + [anon_sym_bit_DASHxor2] = ACTIONS(1887), + [anon_sym_bit_DASHor2] = ACTIONS(1887), + [anon_sym_DOT2] = ACTIONS(1877), + [anon_sym_err_GT] = ACTIONS(1889), + [anon_sym_out_GT] = ACTIONS(1889), + [anon_sym_e_GT] = ACTIONS(1889), + [anon_sym_o_GT] = ACTIONS(1889), + [anon_sym_err_PLUSout_GT] = ACTIONS(1889), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1889), + [anon_sym_o_PLUSe_GT] = ACTIONS(1889), + [anon_sym_e_PLUSo_GT] = ACTIONS(1889), + [anon_sym_err_GT_GT] = ACTIONS(1887), + [anon_sym_out_GT_GT] = ACTIONS(1887), + [anon_sym_e_GT_GT] = ACTIONS(1887), + [anon_sym_o_GT_GT] = ACTIONS(1887), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1887), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1887), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1887), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1887), [anon_sym_POUND] = ACTIONS(3), }, [STATE(497)] = { + [sym_cell_path] = STATE(790), + [sym_path] = STATE(458), [sym_comment] = STATE(497), - [anon_sym_in] = ACTIONS(1770), - [sym__newline] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1770), - [anon_sym_PIPE] = ACTIONS(1770), - [anon_sym_err_GT_PIPE] = ACTIONS(1770), - [anon_sym_out_GT_PIPE] = ACTIONS(1770), - [anon_sym_e_GT_PIPE] = ACTIONS(1770), - [anon_sym_o_GT_PIPE] = ACTIONS(1770), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1770), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1770), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1770), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1770), - [anon_sym_RPAREN] = ACTIONS(1770), - [anon_sym_GT2] = ACTIONS(1772), - [anon_sym_DASH2] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1770), - [anon_sym_RBRACE] = ACTIONS(1770), - [anon_sym_STAR2] = ACTIONS(1772), - [anon_sym_and2] = ACTIONS(1770), - [anon_sym_xor2] = ACTIONS(1770), - [anon_sym_or2] = ACTIONS(1770), - [anon_sym_not_DASHin2] = ACTIONS(1770), - [anon_sym_has2] = ACTIONS(1770), - [anon_sym_not_DASHhas2] = ACTIONS(1770), - [anon_sym_starts_DASHwith2] = ACTIONS(1770), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1770), - [anon_sym_ends_DASHwith2] = ACTIONS(1770), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1770), - [anon_sym_EQ_EQ2] = ACTIONS(1770), - [anon_sym_BANG_EQ2] = ACTIONS(1770), - [anon_sym_LT2] = ACTIONS(1772), - [anon_sym_LT_EQ2] = ACTIONS(1770), - [anon_sym_GT_EQ2] = ACTIONS(1770), - [anon_sym_EQ_TILDE2] = ACTIONS(1770), - [anon_sym_BANG_TILDE2] = ACTIONS(1770), - [anon_sym_like2] = ACTIONS(1770), - [anon_sym_not_DASHlike2] = ACTIONS(1770), - [anon_sym_LPAREN2] = ACTIONS(1770), - [anon_sym_STAR_STAR2] = ACTIONS(1770), - [anon_sym_PLUS_PLUS2] = ACTIONS(1770), - [anon_sym_SLASH2] = ACTIONS(1772), - [anon_sym_mod2] = ACTIONS(1770), - [anon_sym_SLASH_SLASH2] = ACTIONS(1770), - [anon_sym_PLUS2] = ACTIONS(1772), - [anon_sym_bit_DASHshl2] = ACTIONS(1770), - [anon_sym_bit_DASHshr2] = ACTIONS(1770), - [anon_sym_bit_DASHand2] = ACTIONS(1770), - [anon_sym_bit_DASHxor2] = ACTIONS(1770), - [anon_sym_bit_DASHor2] = ACTIONS(1770), - [anon_sym_DOT_DOT2] = ACTIONS(1772), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1770), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1770), - [anon_sym_err_GT] = ACTIONS(1772), - [anon_sym_out_GT] = ACTIONS(1772), - [anon_sym_e_GT] = ACTIONS(1772), - [anon_sym_o_GT] = ACTIONS(1772), - [anon_sym_err_PLUSout_GT] = ACTIONS(1772), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1772), - [anon_sym_o_PLUSe_GT] = ACTIONS(1772), - [anon_sym_e_PLUSo_GT] = ACTIONS(1772), - [anon_sym_err_GT_GT] = ACTIONS(1770), - [anon_sym_out_GT_GT] = ACTIONS(1770), - [anon_sym_e_GT_GT] = ACTIONS(1770), - [anon_sym_o_GT_GT] = ACTIONS(1770), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1770), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1770), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1770), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1770), - [sym__unquoted_pattern] = ACTIONS(1772), + [aux_sym__where_predicate_lhs_repeat1] = STATE(428), + [anon_sym_in] = ACTIONS(1891), + [sym__newline] = ACTIONS(1891), + [anon_sym_SEMI] = ACTIONS(1891), + [anon_sym_PIPE] = ACTIONS(1891), + [anon_sym_err_GT_PIPE] = ACTIONS(1891), + [anon_sym_out_GT_PIPE] = ACTIONS(1891), + [anon_sym_e_GT_PIPE] = ACTIONS(1891), + [anon_sym_o_GT_PIPE] = ACTIONS(1891), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1891), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1891), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1891), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1891), + [anon_sym_RPAREN] = ACTIONS(1891), + [anon_sym_GT2] = ACTIONS(1893), + [anon_sym_DASH2] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1891), + [anon_sym_RBRACE] = ACTIONS(1891), + [anon_sym_EQ_GT] = ACTIONS(1891), + [anon_sym_STAR2] = ACTIONS(1893), + [anon_sym_and2] = ACTIONS(1891), + [anon_sym_xor2] = ACTIONS(1891), + [anon_sym_or2] = ACTIONS(1891), + [anon_sym_not_DASHin2] = ACTIONS(1891), + [anon_sym_has2] = ACTIONS(1891), + [anon_sym_not_DASHhas2] = ACTIONS(1891), + [anon_sym_starts_DASHwith2] = ACTIONS(1891), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1891), + [anon_sym_ends_DASHwith2] = ACTIONS(1891), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1891), + [anon_sym_EQ_EQ2] = ACTIONS(1891), + [anon_sym_BANG_EQ2] = ACTIONS(1891), + [anon_sym_LT2] = ACTIONS(1893), + [anon_sym_LT_EQ2] = ACTIONS(1891), + [anon_sym_GT_EQ2] = ACTIONS(1891), + [anon_sym_EQ_TILDE2] = ACTIONS(1891), + [anon_sym_BANG_TILDE2] = ACTIONS(1891), + [anon_sym_like2] = ACTIONS(1891), + [anon_sym_not_DASHlike2] = ACTIONS(1891), + [anon_sym_STAR_STAR2] = ACTIONS(1891), + [anon_sym_PLUS_PLUS2] = ACTIONS(1891), + [anon_sym_SLASH2] = ACTIONS(1893), + [anon_sym_mod2] = ACTIONS(1891), + [anon_sym_SLASH_SLASH2] = ACTIONS(1891), + [anon_sym_PLUS2] = ACTIONS(1893), + [anon_sym_bit_DASHshl2] = ACTIONS(1891), + [anon_sym_bit_DASHshr2] = ACTIONS(1891), + [anon_sym_bit_DASHand2] = ACTIONS(1891), + [anon_sym_bit_DASHxor2] = ACTIONS(1891), + [anon_sym_bit_DASHor2] = ACTIONS(1891), + [anon_sym_DOT2] = ACTIONS(1877), + [anon_sym_err_GT] = ACTIONS(1893), + [anon_sym_out_GT] = ACTIONS(1893), + [anon_sym_e_GT] = ACTIONS(1893), + [anon_sym_o_GT] = ACTIONS(1893), + [anon_sym_err_PLUSout_GT] = ACTIONS(1893), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1893), + [anon_sym_o_PLUSe_GT] = ACTIONS(1893), + [anon_sym_e_PLUSo_GT] = ACTIONS(1893), + [anon_sym_err_GT_GT] = ACTIONS(1891), + [anon_sym_out_GT_GT] = ACTIONS(1891), + [anon_sym_e_GT_GT] = ACTIONS(1891), + [anon_sym_o_GT_GT] = ACTIONS(1891), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1891), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1891), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1891), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1891), [anon_sym_POUND] = ACTIONS(3), }, [STATE(498)] = { [sym_comment] = STATE(498), - [anon_sym_if] = ACTIONS(1892), - [anon_sym_in] = ACTIONS(1892), - [sym__newline] = ACTIONS(1892), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_err_GT_PIPE] = ACTIONS(1892), - [anon_sym_out_GT_PIPE] = ACTIONS(1892), - [anon_sym_e_GT_PIPE] = ACTIONS(1892), - [anon_sym_o_GT_PIPE] = ACTIONS(1892), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1892), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1892), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1892), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1892), - [anon_sym_RPAREN] = ACTIONS(1892), - [anon_sym_GT2] = ACTIONS(1894), - [anon_sym_DASH2] = ACTIONS(1892), - [anon_sym_LBRACE] = ACTIONS(1892), - [anon_sym_RBRACE] = ACTIONS(1892), - [anon_sym_EQ_GT] = ACTIONS(1892), - [anon_sym_STAR2] = ACTIONS(1894), - [anon_sym_and2] = ACTIONS(1892), - [anon_sym_xor2] = ACTIONS(1892), - [anon_sym_or2] = ACTIONS(1892), - [anon_sym_not_DASHin2] = ACTIONS(1892), - [anon_sym_has2] = ACTIONS(1892), - [anon_sym_not_DASHhas2] = ACTIONS(1892), - [anon_sym_starts_DASHwith2] = ACTIONS(1892), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1892), - [anon_sym_ends_DASHwith2] = ACTIONS(1892), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1892), - [anon_sym_EQ_EQ2] = ACTIONS(1892), - [anon_sym_BANG_EQ2] = ACTIONS(1892), - [anon_sym_LT2] = ACTIONS(1894), - [anon_sym_LT_EQ2] = ACTIONS(1892), - [anon_sym_GT_EQ2] = ACTIONS(1892), - [anon_sym_EQ_TILDE2] = ACTIONS(1892), - [anon_sym_BANG_TILDE2] = ACTIONS(1892), - [anon_sym_like2] = ACTIONS(1892), - [anon_sym_not_DASHlike2] = ACTIONS(1892), - [anon_sym_STAR_STAR2] = ACTIONS(1892), - [anon_sym_PLUS_PLUS2] = ACTIONS(1892), - [anon_sym_SLASH2] = ACTIONS(1894), - [anon_sym_mod2] = ACTIONS(1892), - [anon_sym_SLASH_SLASH2] = ACTIONS(1892), - [anon_sym_PLUS2] = ACTIONS(1894), - [anon_sym_bit_DASHshl2] = ACTIONS(1892), - [anon_sym_bit_DASHshr2] = ACTIONS(1892), - [anon_sym_bit_DASHand2] = ACTIONS(1892), - [anon_sym_bit_DASHxor2] = ACTIONS(1892), - [anon_sym_bit_DASHor2] = ACTIONS(1892), - [anon_sym_DOT_DOT2] = ACTIONS(1894), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1892), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1892), - [anon_sym_err_GT] = ACTIONS(1894), - [anon_sym_out_GT] = ACTIONS(1894), - [anon_sym_e_GT] = ACTIONS(1894), - [anon_sym_o_GT] = ACTIONS(1894), - [anon_sym_err_PLUSout_GT] = ACTIONS(1894), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1894), - [anon_sym_o_PLUSe_GT] = ACTIONS(1894), - [anon_sym_e_PLUSo_GT] = ACTIONS(1894), - [anon_sym_err_GT_GT] = ACTIONS(1892), - [anon_sym_out_GT_GT] = ACTIONS(1892), - [anon_sym_e_GT_GT] = ACTIONS(1892), - [anon_sym_o_GT_GT] = ACTIONS(1892), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1892), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1892), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1892), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1892), + [anon_sym_in] = ACTIONS(1895), + [sym__newline] = ACTIONS(1895), + [anon_sym_SEMI] = ACTIONS(1895), + [anon_sym_PIPE] = ACTIONS(1895), + [anon_sym_err_GT_PIPE] = ACTIONS(1895), + [anon_sym_out_GT_PIPE] = ACTIONS(1895), + [anon_sym_e_GT_PIPE] = ACTIONS(1895), + [anon_sym_o_GT_PIPE] = ACTIONS(1895), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1895), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1895), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1895), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1895), + [anon_sym_RPAREN] = ACTIONS(1895), + [anon_sym_GT2] = ACTIONS(1897), + [anon_sym_DASH2] = ACTIONS(1895), + [anon_sym_LBRACE] = ACTIONS(1895), + [anon_sym_RBRACE] = ACTIONS(1895), + [anon_sym_STAR2] = ACTIONS(1897), + [anon_sym_and2] = ACTIONS(1895), + [anon_sym_xor2] = ACTIONS(1895), + [anon_sym_or2] = ACTIONS(1895), + [anon_sym_not_DASHin2] = ACTIONS(1895), + [anon_sym_has2] = ACTIONS(1895), + [anon_sym_not_DASHhas2] = ACTIONS(1895), + [anon_sym_starts_DASHwith2] = ACTIONS(1895), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1895), + [anon_sym_ends_DASHwith2] = ACTIONS(1895), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1895), + [anon_sym_EQ_EQ2] = ACTIONS(1895), + [anon_sym_BANG_EQ2] = ACTIONS(1895), + [anon_sym_LT2] = ACTIONS(1897), + [anon_sym_LT_EQ2] = ACTIONS(1895), + [anon_sym_GT_EQ2] = ACTIONS(1895), + [anon_sym_EQ_TILDE2] = ACTIONS(1895), + [anon_sym_BANG_TILDE2] = ACTIONS(1895), + [anon_sym_like2] = ACTIONS(1895), + [anon_sym_not_DASHlike2] = ACTIONS(1895), + [anon_sym_LPAREN2] = ACTIONS(1895), + [anon_sym_STAR_STAR2] = ACTIONS(1895), + [anon_sym_PLUS_PLUS2] = ACTIONS(1895), + [anon_sym_SLASH2] = ACTIONS(1897), + [anon_sym_mod2] = ACTIONS(1895), + [anon_sym_SLASH_SLASH2] = ACTIONS(1895), + [anon_sym_PLUS2] = ACTIONS(1897), + [anon_sym_bit_DASHshl2] = ACTIONS(1895), + [anon_sym_bit_DASHshr2] = ACTIONS(1895), + [anon_sym_bit_DASHand2] = ACTIONS(1895), + [anon_sym_bit_DASHxor2] = ACTIONS(1895), + [anon_sym_bit_DASHor2] = ACTIONS(1895), + [anon_sym_DOT_DOT2] = ACTIONS(1897), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1895), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1895), + [anon_sym_err_GT] = ACTIONS(1897), + [anon_sym_out_GT] = ACTIONS(1897), + [anon_sym_e_GT] = ACTIONS(1897), + [anon_sym_o_GT] = ACTIONS(1897), + [anon_sym_err_PLUSout_GT] = ACTIONS(1897), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1897), + [anon_sym_o_PLUSe_GT] = ACTIONS(1897), + [anon_sym_e_PLUSo_GT] = ACTIONS(1897), + [anon_sym_err_GT_GT] = ACTIONS(1895), + [anon_sym_out_GT_GT] = ACTIONS(1895), + [anon_sym_e_GT_GT] = ACTIONS(1895), + [anon_sym_o_GT_GT] = ACTIONS(1895), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1895), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1895), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1895), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1895), + [sym__unquoted_pattern] = ACTIONS(1897), [anon_sym_POUND] = ACTIONS(3), }, [STATE(499)] = { + [sym_cmd_identifier] = STATE(4519), + [sym_expr_parenthesized] = STATE(5494), + [sym__spread_parenthesized] = STATE(5018), + [sym__spread_variable] = STATE(5020), + [sym_val_variable] = STATE(4344), + [sym_val_number] = STATE(5494), + [sym__val_number_decimal] = STATE(1998), + [sym__val_number] = STATE(710), + [sym_val_string] = STATE(5494), + [sym__raw_str] = STATE(2274), + [sym__str_double_quotes] = STATE(2274), + [sym__str_single_quotes] = STATE(2274), + [sym__str_back_ticks] = STATE(2274), + [sym_val_interpolated] = STATE(5494), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym__spread_record] = STATE(5018), + [sym_record_entry] = STATE(4699), + [sym__record_key] = STATE(5156), [sym_comment] = STATE(499), - [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), + [aux_sym__types_body_repeat1] = STATE(1499), + [aux_sym__match_pattern_record_body_repeat1] = STATE(722), + [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_finally] = ACTIONS(137), + [anon_sym_match] = ACTIONS(137), + [anon_sym_in] = ACTIONS(143), + [anon_sym_true] = ACTIONS(1754), + [anon_sym_false] = ACTIONS(1754), + [anon_sym_null] = ACTIONS(1754), + [aux_sym_cmd_identifier_token3] = ACTIONS(1756), + [aux_sym_cmd_identifier_token4] = ACTIONS(1756), + [aux_sym_cmd_identifier_token5] = ACTIONS(1756), + [sym__newline] = ACTIONS(1758), + [anon_sym_LPAREN] = ACTIONS(1760), + [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(1766), + [aux_sym__val_number_decimal_token2] = ACTIONS(1768), + [aux_sym__val_number_decimal_token3] = ACTIONS(1770), + [aux_sym__val_number_decimal_token4] = ACTIONS(1770), + [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(1772), + [anon_sym_SQUOTE] = ACTIONS(1774), + [anon_sym_BQUOTE] = ACTIONS(1776), + [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(1778), }, [STATE(500)] = { [sym_comment] = STATE(500), - [ts_builtin_sym_end] = 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_GT2] = ACTIONS(1527), - [anon_sym_DASH2] = ACTIONS(1529), - [anon_sym_LBRACE] = ACTIONS(1529), - [anon_sym_STAR2] = ACTIONS(1527), - [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(1527), - [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(1527), - [anon_sym_mod2] = ACTIONS(1529), - [anon_sym_SLASH_SLASH2] = ACTIONS(1529), - [anon_sym_PLUS2] = ACTIONS(1527), - [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(1527), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1529), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1529), - [anon_sym_QMARK2] = ACTIONS(1529), - [anon_sym_BANG] = ACTIONS(1527), - [anon_sym_DOT2] = ACTIONS(1527), - [anon_sym_err_GT] = ACTIONS(1527), - [anon_sym_out_GT] = ACTIONS(1527), - [anon_sym_e_GT] = ACTIONS(1527), - [anon_sym_o_GT] = ACTIONS(1527), - [anon_sym_err_PLUSout_GT] = ACTIONS(1527), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1527), - [anon_sym_o_PLUSe_GT] = ACTIONS(1527), - [anon_sym_e_PLUSo_GT] = ACTIONS(1527), - [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), + [ts_builtin_sym_end] = ACTIONS(1790), + [anon_sym_in] = ACTIONS(1790), + [sym__newline] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym_PIPE] = ACTIONS(1790), + [anon_sym_err_GT_PIPE] = ACTIONS(1790), + [anon_sym_out_GT_PIPE] = ACTIONS(1790), + [anon_sym_e_GT_PIPE] = ACTIONS(1790), + [anon_sym_o_GT_PIPE] = ACTIONS(1790), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1790), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1790), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1790), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1790), + [anon_sym_GT2] = ACTIONS(1792), + [anon_sym_DASH2] = ACTIONS(1790), + [anon_sym_STAR2] = ACTIONS(1792), + [anon_sym_and2] = ACTIONS(1790), + [anon_sym_xor2] = ACTIONS(1790), + [anon_sym_or2] = ACTIONS(1790), + [anon_sym_not_DASHin2] = ACTIONS(1790), + [anon_sym_has2] = ACTIONS(1790), + [anon_sym_not_DASHhas2] = ACTIONS(1790), + [anon_sym_starts_DASHwith2] = ACTIONS(1790), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1790), + [anon_sym_ends_DASHwith2] = ACTIONS(1790), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1790), + [anon_sym_EQ_EQ2] = ACTIONS(1790), + [anon_sym_BANG_EQ2] = ACTIONS(1790), + [anon_sym_LT2] = ACTIONS(1792), + [anon_sym_LT_EQ2] = ACTIONS(1790), + [anon_sym_GT_EQ2] = ACTIONS(1790), + [anon_sym_EQ_TILDE2] = ACTIONS(1790), + [anon_sym_BANG_TILDE2] = ACTIONS(1790), + [anon_sym_like2] = ACTIONS(1790), + [anon_sym_not_DASHlike2] = ACTIONS(1790), + [anon_sym_LPAREN2] = ACTIONS(1790), + [anon_sym_STAR_STAR2] = ACTIONS(1790), + [anon_sym_PLUS_PLUS2] = ACTIONS(1790), + [anon_sym_SLASH2] = ACTIONS(1792), + [anon_sym_mod2] = ACTIONS(1790), + [anon_sym_SLASH_SLASH2] = ACTIONS(1790), + [anon_sym_PLUS2] = ACTIONS(1792), + [anon_sym_bit_DASHshl2] = ACTIONS(1790), + [anon_sym_bit_DASHshr2] = ACTIONS(1790), + [anon_sym_bit_DASHand2] = ACTIONS(1790), + [anon_sym_bit_DASHxor2] = ACTIONS(1790), + [anon_sym_bit_DASHor2] = ACTIONS(1790), + [anon_sym_DOT_DOT2] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1899), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1790), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1790), + [aux_sym__immediate_decimal_token5] = ACTIONS(1901), + [anon_sym_err_GT] = ACTIONS(1792), + [anon_sym_out_GT] = ACTIONS(1792), + [anon_sym_e_GT] = ACTIONS(1792), + [anon_sym_o_GT] = ACTIONS(1792), + [anon_sym_err_PLUSout_GT] = ACTIONS(1792), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1792), + [anon_sym_o_PLUSe_GT] = ACTIONS(1792), + [anon_sym_e_PLUSo_GT] = ACTIONS(1792), + [anon_sym_err_GT_GT] = ACTIONS(1790), + [anon_sym_out_GT_GT] = ACTIONS(1790), + [anon_sym_e_GT_GT] = ACTIONS(1790), + [anon_sym_o_GT_GT] = ACTIONS(1790), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1790), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1790), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1790), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1790), + [sym__unquoted_pattern] = ACTIONS(1792), [anon_sym_POUND] = ACTIONS(3), }, [STATE(501)] = { [sym_comment] = STATE(501), - [ts_builtin_sym_end] = ACTIONS(862), - [anon_sym_in] = ACTIONS(862), - [sym__newline] = ACTIONS(862), - [anon_sym_SEMI] = ACTIONS(862), - [anon_sym_PIPE] = ACTIONS(862), - [anon_sym_err_GT_PIPE] = ACTIONS(862), - [anon_sym_out_GT_PIPE] = ACTIONS(862), - [anon_sym_e_GT_PIPE] = ACTIONS(862), - [anon_sym_o_GT_PIPE] = ACTIONS(862), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(862), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(862), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(862), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(862), - [anon_sym_GT2] = ACTIONS(860), - [anon_sym_DASH2] = ACTIONS(862), - [anon_sym_STAR2] = ACTIONS(860), - [anon_sym_and2] = ACTIONS(862), - [anon_sym_xor2] = ACTIONS(862), - [anon_sym_or2] = ACTIONS(862), - [anon_sym_not_DASHin2] = ACTIONS(862), - [anon_sym_has2] = ACTIONS(862), - [anon_sym_not_DASHhas2] = ACTIONS(862), - [anon_sym_starts_DASHwith2] = ACTIONS(862), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(862), - [anon_sym_ends_DASHwith2] = ACTIONS(862), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(862), - [anon_sym_EQ_EQ2] = ACTIONS(862), - [anon_sym_BANG_EQ2] = ACTIONS(862), - [anon_sym_LT2] = ACTIONS(860), - [anon_sym_LT_EQ2] = ACTIONS(862), - [anon_sym_GT_EQ2] = ACTIONS(862), - [anon_sym_EQ_TILDE2] = ACTIONS(862), - [anon_sym_BANG_TILDE2] = ACTIONS(862), - [anon_sym_like2] = ACTIONS(862), - [anon_sym_not_DASHlike2] = ACTIONS(862), - [anon_sym_LPAREN2] = ACTIONS(862), - [anon_sym_STAR_STAR2] = ACTIONS(862), - [anon_sym_PLUS_PLUS2] = ACTIONS(862), - [anon_sym_SLASH2] = ACTIONS(860), - [anon_sym_mod2] = ACTIONS(862), - [anon_sym_SLASH_SLASH2] = ACTIONS(862), - [anon_sym_PLUS2] = ACTIONS(860), - [anon_sym_bit_DASHshl2] = ACTIONS(862), - [anon_sym_bit_DASHshr2] = ACTIONS(862), - [anon_sym_bit_DASHand2] = ACTIONS(862), - [anon_sym_bit_DASHxor2] = ACTIONS(862), - [anon_sym_bit_DASHor2] = ACTIONS(862), - [anon_sym_DOT_DOT2] = ACTIONS(860), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(862), - [anon_sym_DOT_DOT_LT2] = ACTIONS(862), - [sym_filesize_unit] = ACTIONS(860), - [sym_duration_unit] = ACTIONS(862), - [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(862), - [anon_sym_out_GT_GT] = ACTIONS(862), - [anon_sym_e_GT_GT] = ACTIONS(862), - [anon_sym_o_GT_GT] = ACTIONS(862), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(862), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(862), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(862), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(862), - [sym__unquoted_pattern] = ACTIONS(860), + [anon_sym_in] = ACTIONS(1580), + [sym__newline] = ACTIONS(1580), + [anon_sym_SEMI] = ACTIONS(1580), + [anon_sym_PIPE] = ACTIONS(1580), + [anon_sym_err_GT_PIPE] = ACTIONS(1580), + [anon_sym_out_GT_PIPE] = ACTIONS(1580), + [anon_sym_e_GT_PIPE] = ACTIONS(1580), + [anon_sym_o_GT_PIPE] = ACTIONS(1580), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1580), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1580), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1580), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1580), + [anon_sym_RPAREN] = ACTIONS(1580), + [anon_sym_GT2] = ACTIONS(1578), + [anon_sym_DASH2] = ACTIONS(1580), + [anon_sym_LBRACE] = ACTIONS(1580), + [anon_sym_RBRACE] = ACTIONS(1580), + [anon_sym_EQ_GT] = ACTIONS(1580), + [anon_sym_STAR2] = ACTIONS(1578), + [anon_sym_and2] = ACTIONS(1580), + [anon_sym_xor2] = ACTIONS(1580), + [anon_sym_or2] = ACTIONS(1580), + [anon_sym_not_DASHin2] = ACTIONS(1580), + [anon_sym_has2] = ACTIONS(1580), + [anon_sym_not_DASHhas2] = ACTIONS(1580), + [anon_sym_starts_DASHwith2] = ACTIONS(1580), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1580), + [anon_sym_ends_DASHwith2] = ACTIONS(1580), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1580), + [anon_sym_EQ_EQ2] = ACTIONS(1580), + [anon_sym_BANG_EQ2] = ACTIONS(1580), + [anon_sym_LT2] = ACTIONS(1578), + [anon_sym_LT_EQ2] = ACTIONS(1580), + [anon_sym_GT_EQ2] = ACTIONS(1580), + [anon_sym_EQ_TILDE2] = ACTIONS(1580), + [anon_sym_BANG_TILDE2] = ACTIONS(1580), + [anon_sym_like2] = ACTIONS(1580), + [anon_sym_not_DASHlike2] = ACTIONS(1580), + [anon_sym_STAR_STAR2] = ACTIONS(1580), + [anon_sym_PLUS_PLUS2] = ACTIONS(1580), + [anon_sym_SLASH2] = ACTIONS(1578), + [anon_sym_mod2] = ACTIONS(1580), + [anon_sym_SLASH_SLASH2] = ACTIONS(1580), + [anon_sym_PLUS2] = ACTIONS(1578), + [anon_sym_bit_DASHshl2] = ACTIONS(1580), + [anon_sym_bit_DASHshr2] = ACTIONS(1580), + [anon_sym_bit_DASHand2] = ACTIONS(1580), + [anon_sym_bit_DASHxor2] = ACTIONS(1580), + [anon_sym_bit_DASHor2] = ACTIONS(1580), + [anon_sym_DOT_DOT2] = ACTIONS(1578), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1580), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1580), + [anon_sym_COLON2] = ACTIONS(1580), + [anon_sym_err_GT] = ACTIONS(1578), + [anon_sym_out_GT] = ACTIONS(1578), + [anon_sym_e_GT] = ACTIONS(1578), + [anon_sym_o_GT] = ACTIONS(1578), + [anon_sym_err_PLUSout_GT] = ACTIONS(1578), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1578), + [anon_sym_o_PLUSe_GT] = ACTIONS(1578), + [anon_sym_e_PLUSo_GT] = ACTIONS(1578), + [anon_sym_err_GT_GT] = ACTIONS(1580), + [anon_sym_out_GT_GT] = ACTIONS(1580), + [anon_sym_e_GT_GT] = ACTIONS(1580), + [anon_sym_o_GT_GT] = ACTIONS(1580), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1580), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1580), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1580), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1580), [anon_sym_POUND] = ACTIONS(3), }, [STATE(502)] = { [sym_comment] = STATE(502), - [ts_builtin_sym_end] = 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(1519), - [anon_sym_DASH2] = ACTIONS(1521), - [anon_sym_LBRACE] = ACTIONS(1521), - [anon_sym_STAR2] = ACTIONS(1519), - [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(1519), - [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(1519), - [anon_sym_mod2] = ACTIONS(1521), - [anon_sym_SLASH_SLASH2] = ACTIONS(1521), - [anon_sym_PLUS2] = ACTIONS(1519), - [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(1519), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1521), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1521), - [anon_sym_QMARK2] = ACTIONS(1521), - [anon_sym_BANG] = ACTIONS(1519), - [anon_sym_DOT2] = ACTIONS(1519), - [anon_sym_err_GT] = ACTIONS(1519), - [anon_sym_out_GT] = ACTIONS(1519), - [anon_sym_e_GT] = ACTIONS(1519), - [anon_sym_o_GT] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT] = ACTIONS(1519), - [anon_sym_err_GT_GT] = ACTIONS(1521), - [anon_sym_out_GT_GT] = ACTIONS(1521), - [anon_sym_e_GT_GT] = ACTIONS(1521), - [anon_sym_o_GT_GT] = ACTIONS(1521), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1521), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1521), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1521), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1521), + [ts_builtin_sym_end] = ACTIONS(1510), + [anon_sym_in] = ACTIONS(1510), + [sym__newline] = ACTIONS(1510), + [anon_sym_SEMI] = ACTIONS(1510), + [anon_sym_PIPE] = ACTIONS(1510), + [anon_sym_err_GT_PIPE] = ACTIONS(1510), + [anon_sym_out_GT_PIPE] = ACTIONS(1510), + [anon_sym_e_GT_PIPE] = ACTIONS(1510), + [anon_sym_o_GT_PIPE] = ACTIONS(1510), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1510), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1510), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1510), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1510), + [anon_sym_GT2] = ACTIONS(1508), + [anon_sym_DASH2] = ACTIONS(1510), + [anon_sym_LBRACE] = ACTIONS(1510), + [anon_sym_STAR2] = ACTIONS(1508), + [anon_sym_and2] = ACTIONS(1510), + [anon_sym_xor2] = ACTIONS(1510), + [anon_sym_or2] = ACTIONS(1510), + [anon_sym_not_DASHin2] = ACTIONS(1510), + [anon_sym_has2] = ACTIONS(1510), + [anon_sym_not_DASHhas2] = ACTIONS(1510), + [anon_sym_starts_DASHwith2] = ACTIONS(1510), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1510), + [anon_sym_ends_DASHwith2] = ACTIONS(1510), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1510), + [anon_sym_EQ_EQ2] = ACTIONS(1510), + [anon_sym_BANG_EQ2] = ACTIONS(1510), + [anon_sym_LT2] = ACTIONS(1508), + [anon_sym_LT_EQ2] = ACTIONS(1510), + [anon_sym_GT_EQ2] = ACTIONS(1510), + [anon_sym_EQ_TILDE2] = ACTIONS(1510), + [anon_sym_BANG_TILDE2] = ACTIONS(1510), + [anon_sym_like2] = ACTIONS(1510), + [anon_sym_not_DASHlike2] = ACTIONS(1510), + [anon_sym_STAR_STAR2] = ACTIONS(1510), + [anon_sym_PLUS_PLUS2] = ACTIONS(1510), + [anon_sym_SLASH2] = ACTIONS(1508), + [anon_sym_mod2] = ACTIONS(1510), + [anon_sym_SLASH_SLASH2] = ACTIONS(1510), + [anon_sym_PLUS2] = ACTIONS(1508), + [anon_sym_bit_DASHshl2] = ACTIONS(1510), + [anon_sym_bit_DASHshr2] = ACTIONS(1510), + [anon_sym_bit_DASHand2] = ACTIONS(1510), + [anon_sym_bit_DASHxor2] = ACTIONS(1510), + [anon_sym_bit_DASHor2] = ACTIONS(1510), + [anon_sym_DOT_DOT2] = ACTIONS(1508), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1510), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1510), + [anon_sym_QMARK2] = ACTIONS(1510), + [anon_sym_BANG] = ACTIONS(1508), + [anon_sym_DOT2] = ACTIONS(1508), + [anon_sym_err_GT] = ACTIONS(1508), + [anon_sym_out_GT] = ACTIONS(1508), + [anon_sym_e_GT] = ACTIONS(1508), + [anon_sym_o_GT] = ACTIONS(1508), + [anon_sym_err_PLUSout_GT] = ACTIONS(1508), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1508), + [anon_sym_o_PLUSe_GT] = ACTIONS(1508), + [anon_sym_e_PLUSo_GT] = ACTIONS(1508), + [anon_sym_err_GT_GT] = ACTIONS(1510), + [anon_sym_out_GT_GT] = ACTIONS(1510), + [anon_sym_e_GT_GT] = ACTIONS(1510), + [anon_sym_o_GT_GT] = ACTIONS(1510), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1510), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1510), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1510), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1510), [anon_sym_POUND] = ACTIONS(3), }, [STATE(503)] = { - [sym_cell_path] = STATE(741), - [sym_path] = STATE(458), [sym_comment] = STATE(503), - [aux_sym__where_predicate_lhs_repeat1] = STATE(427), - [anon_sym_in] = ACTIONS(1896), - [sym__newline] = ACTIONS(1896), - [anon_sym_SEMI] = ACTIONS(1896), - [anon_sym_PIPE] = ACTIONS(1896), - [anon_sym_err_GT_PIPE] = ACTIONS(1896), - [anon_sym_out_GT_PIPE] = ACTIONS(1896), - [anon_sym_e_GT_PIPE] = ACTIONS(1896), - [anon_sym_o_GT_PIPE] = ACTIONS(1896), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1896), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1896), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1896), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1896), - [anon_sym_RPAREN] = ACTIONS(1896), - [anon_sym_GT2] = ACTIONS(1898), - [anon_sym_DASH2] = ACTIONS(1896), - [anon_sym_LBRACE] = ACTIONS(1896), - [anon_sym_RBRACE] = ACTIONS(1896), - [anon_sym_EQ_GT] = ACTIONS(1896), - [anon_sym_STAR2] = ACTIONS(1898), - [anon_sym_and2] = ACTIONS(1896), - [anon_sym_xor2] = ACTIONS(1896), - [anon_sym_or2] = ACTIONS(1896), - [anon_sym_not_DASHin2] = ACTIONS(1896), - [anon_sym_has2] = ACTIONS(1896), - [anon_sym_not_DASHhas2] = ACTIONS(1896), - [anon_sym_starts_DASHwith2] = ACTIONS(1896), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1896), - [anon_sym_ends_DASHwith2] = ACTIONS(1896), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1896), - [anon_sym_EQ_EQ2] = ACTIONS(1896), - [anon_sym_BANG_EQ2] = ACTIONS(1896), - [anon_sym_LT2] = ACTIONS(1898), - [anon_sym_LT_EQ2] = ACTIONS(1896), - [anon_sym_GT_EQ2] = ACTIONS(1896), - [anon_sym_EQ_TILDE2] = ACTIONS(1896), - [anon_sym_BANG_TILDE2] = ACTIONS(1896), - [anon_sym_like2] = ACTIONS(1896), - [anon_sym_not_DASHlike2] = ACTIONS(1896), - [anon_sym_STAR_STAR2] = ACTIONS(1896), - [anon_sym_PLUS_PLUS2] = ACTIONS(1896), - [anon_sym_SLASH2] = ACTIONS(1898), - [anon_sym_mod2] = ACTIONS(1896), - [anon_sym_SLASH_SLASH2] = ACTIONS(1896), - [anon_sym_PLUS2] = ACTIONS(1898), - [anon_sym_bit_DASHshl2] = ACTIONS(1896), - [anon_sym_bit_DASHshr2] = ACTIONS(1896), - [anon_sym_bit_DASHand2] = ACTIONS(1896), - [anon_sym_bit_DASHxor2] = ACTIONS(1896), - [anon_sym_bit_DASHor2] = ACTIONS(1896), - [anon_sym_DOT2] = ACTIONS(1866), - [anon_sym_err_GT] = ACTIONS(1898), - [anon_sym_out_GT] = ACTIONS(1898), - [anon_sym_e_GT] = ACTIONS(1898), - [anon_sym_o_GT] = ACTIONS(1898), - [anon_sym_err_PLUSout_GT] = ACTIONS(1898), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1898), - [anon_sym_o_PLUSe_GT] = ACTIONS(1898), - [anon_sym_e_PLUSo_GT] = ACTIONS(1898), - [anon_sym_err_GT_GT] = ACTIONS(1896), - [anon_sym_out_GT_GT] = ACTIONS(1896), - [anon_sym_e_GT_GT] = ACTIONS(1896), - [anon_sym_o_GT_GT] = ACTIONS(1896), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1896), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1896), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1896), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1896), + [anon_sym_if] = ACTIONS(1903), + [anon_sym_in] = ACTIONS(1903), + [sym__newline] = ACTIONS(1903), + [anon_sym_SEMI] = ACTIONS(1903), + [anon_sym_PIPE] = ACTIONS(1903), + [anon_sym_err_GT_PIPE] = ACTIONS(1903), + [anon_sym_out_GT_PIPE] = ACTIONS(1903), + [anon_sym_e_GT_PIPE] = ACTIONS(1903), + [anon_sym_o_GT_PIPE] = ACTIONS(1903), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1903), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1903), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1903), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1903), + [anon_sym_RPAREN] = ACTIONS(1903), + [anon_sym_GT2] = ACTIONS(1905), + [anon_sym_DASH2] = ACTIONS(1903), + [anon_sym_LBRACE] = ACTIONS(1903), + [anon_sym_RBRACE] = ACTIONS(1903), + [anon_sym_EQ_GT] = ACTIONS(1903), + [anon_sym_STAR2] = ACTIONS(1905), + [anon_sym_and2] = ACTIONS(1903), + [anon_sym_xor2] = ACTIONS(1903), + [anon_sym_or2] = ACTIONS(1903), + [anon_sym_not_DASHin2] = ACTIONS(1903), + [anon_sym_has2] = ACTIONS(1903), + [anon_sym_not_DASHhas2] = ACTIONS(1903), + [anon_sym_starts_DASHwith2] = ACTIONS(1903), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1903), + [anon_sym_ends_DASHwith2] = ACTIONS(1903), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1903), + [anon_sym_EQ_EQ2] = ACTIONS(1903), + [anon_sym_BANG_EQ2] = ACTIONS(1903), + [anon_sym_LT2] = ACTIONS(1905), + [anon_sym_LT_EQ2] = ACTIONS(1903), + [anon_sym_GT_EQ2] = ACTIONS(1903), + [anon_sym_EQ_TILDE2] = ACTIONS(1903), + [anon_sym_BANG_TILDE2] = ACTIONS(1903), + [anon_sym_like2] = ACTIONS(1903), + [anon_sym_not_DASHlike2] = ACTIONS(1903), + [anon_sym_STAR_STAR2] = ACTIONS(1903), + [anon_sym_PLUS_PLUS2] = ACTIONS(1903), + [anon_sym_SLASH2] = ACTIONS(1905), + [anon_sym_mod2] = ACTIONS(1903), + [anon_sym_SLASH_SLASH2] = ACTIONS(1903), + [anon_sym_PLUS2] = ACTIONS(1905), + [anon_sym_bit_DASHshl2] = ACTIONS(1903), + [anon_sym_bit_DASHshr2] = ACTIONS(1903), + [anon_sym_bit_DASHand2] = ACTIONS(1903), + [anon_sym_bit_DASHxor2] = ACTIONS(1903), + [anon_sym_bit_DASHor2] = ACTIONS(1903), + [anon_sym_DOT_DOT2] = ACTIONS(1905), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1903), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1903), + [anon_sym_err_GT] = ACTIONS(1905), + [anon_sym_out_GT] = ACTIONS(1905), + [anon_sym_e_GT] = ACTIONS(1905), + [anon_sym_o_GT] = ACTIONS(1905), + [anon_sym_err_PLUSout_GT] = ACTIONS(1905), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1905), + [anon_sym_o_PLUSe_GT] = ACTIONS(1905), + [anon_sym_e_PLUSo_GT] = ACTIONS(1905), + [anon_sym_err_GT_GT] = ACTIONS(1903), + [anon_sym_out_GT_GT] = ACTIONS(1903), + [anon_sym_e_GT_GT] = ACTIONS(1903), + [anon_sym_o_GT_GT] = ACTIONS(1903), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1903), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1903), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1903), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1903), [anon_sym_POUND] = ACTIONS(3), }, [STATE(504)] = { + [sym_cell_path] = STATE(968), + [sym_path] = STATE(715), [sym_comment] = STATE(504), - [ts_builtin_sym_end] = 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(1523), - [anon_sym_DASH2] = ACTIONS(1525), - [anon_sym_LBRACE] = ACTIONS(1525), - [anon_sym_STAR2] = ACTIONS(1523), - [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(1523), - [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(1523), - [anon_sym_mod2] = ACTIONS(1525), - [anon_sym_SLASH_SLASH2] = ACTIONS(1525), - [anon_sym_PLUS2] = ACTIONS(1523), - [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(1523), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1525), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1525), - [anon_sym_QMARK2] = ACTIONS(1525), - [anon_sym_BANG] = ACTIONS(1523), - [anon_sym_DOT2] = ACTIONS(1523), - [anon_sym_err_GT] = ACTIONS(1523), - [anon_sym_out_GT] = ACTIONS(1523), - [anon_sym_e_GT] = ACTIONS(1523), - [anon_sym_o_GT] = ACTIONS(1523), - [anon_sym_err_PLUSout_GT] = ACTIONS(1523), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1523), - [anon_sym_o_PLUSe_GT] = ACTIONS(1523), - [anon_sym_e_PLUSo_GT] = ACTIONS(1523), - [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), + [aux_sym__where_predicate_lhs_repeat1] = STATE(526), + [ts_builtin_sym_end] = ACTIONS(1456), + [anon_sym_in] = ACTIONS(1456), + [sym__newline] = ACTIONS(1456), + [anon_sym_SEMI] = ACTIONS(1456), + [anon_sym_PIPE] = ACTIONS(1456), + [anon_sym_err_GT_PIPE] = ACTIONS(1456), + [anon_sym_out_GT_PIPE] = ACTIONS(1456), + [anon_sym_e_GT_PIPE] = ACTIONS(1456), + [anon_sym_o_GT_PIPE] = ACTIONS(1456), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1456), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1456), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1456), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1456), + [anon_sym_GT2] = ACTIONS(1454), + [anon_sym_DASH2] = ACTIONS(1456), + [anon_sym_STAR2] = ACTIONS(1454), + [anon_sym_and2] = ACTIONS(1456), + [anon_sym_xor2] = ACTIONS(1456), + [anon_sym_or2] = ACTIONS(1456), + [anon_sym_not_DASHin2] = ACTIONS(1456), + [anon_sym_has2] = ACTIONS(1456), + [anon_sym_not_DASHhas2] = ACTIONS(1456), + [anon_sym_starts_DASHwith2] = ACTIONS(1456), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1456), + [anon_sym_ends_DASHwith2] = ACTIONS(1456), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1456), + [anon_sym_EQ_EQ2] = ACTIONS(1456), + [anon_sym_BANG_EQ2] = ACTIONS(1456), + [anon_sym_LT2] = ACTIONS(1454), + [anon_sym_LT_EQ2] = ACTIONS(1456), + [anon_sym_GT_EQ2] = ACTIONS(1456), + [anon_sym_EQ_TILDE2] = ACTIONS(1456), + [anon_sym_BANG_TILDE2] = ACTIONS(1456), + [anon_sym_like2] = ACTIONS(1456), + [anon_sym_not_DASHlike2] = ACTIONS(1456), + [anon_sym_STAR_STAR2] = ACTIONS(1456), + [anon_sym_PLUS_PLUS2] = ACTIONS(1456), + [anon_sym_SLASH2] = ACTIONS(1454), + [anon_sym_mod2] = ACTIONS(1456), + [anon_sym_SLASH_SLASH2] = ACTIONS(1456), + [anon_sym_PLUS2] = ACTIONS(1454), + [anon_sym_bit_DASHshl2] = ACTIONS(1456), + [anon_sym_bit_DASHshr2] = ACTIONS(1456), + [anon_sym_bit_DASHand2] = ACTIONS(1456), + [anon_sym_bit_DASHxor2] = ACTIONS(1456), + [anon_sym_bit_DASHor2] = ACTIONS(1456), + [anon_sym_DOT_DOT2] = ACTIONS(1454), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1456), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1456), + [anon_sym_DOT2] = ACTIONS(1869), + [anon_sym_err_GT] = ACTIONS(1454), + [anon_sym_out_GT] = ACTIONS(1454), + [anon_sym_e_GT] = ACTIONS(1454), + [anon_sym_o_GT] = ACTIONS(1454), + [anon_sym_err_PLUSout_GT] = ACTIONS(1454), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1454), + [anon_sym_o_PLUSe_GT] = ACTIONS(1454), + [anon_sym_e_PLUSo_GT] = ACTIONS(1454), + [anon_sym_err_GT_GT] = ACTIONS(1456), + [anon_sym_out_GT_GT] = ACTIONS(1456), + [anon_sym_e_GT_GT] = ACTIONS(1456), + [anon_sym_o_GT_GT] = ACTIONS(1456), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1456), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1456), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1456), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1456), [anon_sym_POUND] = ACTIONS(3), }, [STATE(505)] = { - [sym_cell_path] = STATE(939), + [sym_cell_path] = STATE(918), [sym_path] = STATE(458), [sym_comment] = STATE(505), - [aux_sym__where_predicate_lhs_repeat1] = STATE(427), - [anon_sym_in] = ACTIONS(1900), - [sym__newline] = ACTIONS(1900), - [anon_sym_SEMI] = ACTIONS(1900), - [anon_sym_PIPE] = ACTIONS(1900), - [anon_sym_err_GT_PIPE] = ACTIONS(1900), - [anon_sym_out_GT_PIPE] = ACTIONS(1900), - [anon_sym_e_GT_PIPE] = ACTIONS(1900), - [anon_sym_o_GT_PIPE] = ACTIONS(1900), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1900), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1900), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1900), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1900), - [anon_sym_RPAREN] = ACTIONS(1900), - [anon_sym_GT2] = ACTIONS(1902), - [anon_sym_DASH2] = ACTIONS(1900), - [anon_sym_LBRACE] = ACTIONS(1900), - [anon_sym_RBRACE] = ACTIONS(1900), - [anon_sym_EQ_GT] = ACTIONS(1900), - [anon_sym_STAR2] = ACTIONS(1902), - [anon_sym_and2] = ACTIONS(1900), - [anon_sym_xor2] = ACTIONS(1900), - [anon_sym_or2] = ACTIONS(1900), - [anon_sym_not_DASHin2] = ACTIONS(1900), - [anon_sym_has2] = ACTIONS(1900), - [anon_sym_not_DASHhas2] = ACTIONS(1900), - [anon_sym_starts_DASHwith2] = ACTIONS(1900), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1900), - [anon_sym_ends_DASHwith2] = ACTIONS(1900), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1900), - [anon_sym_EQ_EQ2] = ACTIONS(1900), - [anon_sym_BANG_EQ2] = ACTIONS(1900), - [anon_sym_LT2] = ACTIONS(1902), - [anon_sym_LT_EQ2] = ACTIONS(1900), - [anon_sym_GT_EQ2] = ACTIONS(1900), - [anon_sym_EQ_TILDE2] = ACTIONS(1900), - [anon_sym_BANG_TILDE2] = ACTIONS(1900), - [anon_sym_like2] = ACTIONS(1900), - [anon_sym_not_DASHlike2] = ACTIONS(1900), - [anon_sym_STAR_STAR2] = ACTIONS(1900), - [anon_sym_PLUS_PLUS2] = ACTIONS(1900), - [anon_sym_SLASH2] = ACTIONS(1902), - [anon_sym_mod2] = ACTIONS(1900), - [anon_sym_SLASH_SLASH2] = ACTIONS(1900), - [anon_sym_PLUS2] = ACTIONS(1902), - [anon_sym_bit_DASHshl2] = ACTIONS(1900), - [anon_sym_bit_DASHshr2] = ACTIONS(1900), - [anon_sym_bit_DASHand2] = ACTIONS(1900), - [anon_sym_bit_DASHxor2] = ACTIONS(1900), - [anon_sym_bit_DASHor2] = ACTIONS(1900), - [anon_sym_DOT2] = ACTIONS(1866), - [anon_sym_err_GT] = ACTIONS(1902), - [anon_sym_out_GT] = ACTIONS(1902), - [anon_sym_e_GT] = ACTIONS(1902), - [anon_sym_o_GT] = ACTIONS(1902), - [anon_sym_err_PLUSout_GT] = ACTIONS(1902), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1902), - [anon_sym_o_PLUSe_GT] = ACTIONS(1902), - [anon_sym_e_PLUSo_GT] = ACTIONS(1902), - [anon_sym_err_GT_GT] = ACTIONS(1900), - [anon_sym_out_GT_GT] = ACTIONS(1900), - [anon_sym_e_GT_GT] = ACTIONS(1900), - [anon_sym_o_GT_GT] = ACTIONS(1900), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1900), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1900), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1900), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1900), + [aux_sym__where_predicate_lhs_repeat1] = STATE(428), + [anon_sym_in] = ACTIONS(1907), + [sym__newline] = ACTIONS(1907), + [anon_sym_SEMI] = ACTIONS(1907), + [anon_sym_PIPE] = ACTIONS(1907), + [anon_sym_err_GT_PIPE] = ACTIONS(1907), + [anon_sym_out_GT_PIPE] = ACTIONS(1907), + [anon_sym_e_GT_PIPE] = ACTIONS(1907), + [anon_sym_o_GT_PIPE] = ACTIONS(1907), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1907), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1907), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1907), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1907), + [anon_sym_RPAREN] = ACTIONS(1907), + [anon_sym_GT2] = ACTIONS(1909), + [anon_sym_DASH2] = ACTIONS(1907), + [anon_sym_LBRACE] = ACTIONS(1907), + [anon_sym_RBRACE] = ACTIONS(1907), + [anon_sym_EQ_GT] = ACTIONS(1907), + [anon_sym_STAR2] = ACTIONS(1909), + [anon_sym_and2] = ACTIONS(1907), + [anon_sym_xor2] = ACTIONS(1907), + [anon_sym_or2] = ACTIONS(1907), + [anon_sym_not_DASHin2] = ACTIONS(1907), + [anon_sym_has2] = ACTIONS(1907), + [anon_sym_not_DASHhas2] = ACTIONS(1907), + [anon_sym_starts_DASHwith2] = ACTIONS(1907), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1907), + [anon_sym_ends_DASHwith2] = ACTIONS(1907), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1907), + [anon_sym_EQ_EQ2] = ACTIONS(1907), + [anon_sym_BANG_EQ2] = ACTIONS(1907), + [anon_sym_LT2] = ACTIONS(1909), + [anon_sym_LT_EQ2] = ACTIONS(1907), + [anon_sym_GT_EQ2] = ACTIONS(1907), + [anon_sym_EQ_TILDE2] = ACTIONS(1907), + [anon_sym_BANG_TILDE2] = ACTIONS(1907), + [anon_sym_like2] = ACTIONS(1907), + [anon_sym_not_DASHlike2] = ACTIONS(1907), + [anon_sym_STAR_STAR2] = ACTIONS(1907), + [anon_sym_PLUS_PLUS2] = ACTIONS(1907), + [anon_sym_SLASH2] = ACTIONS(1909), + [anon_sym_mod2] = ACTIONS(1907), + [anon_sym_SLASH_SLASH2] = ACTIONS(1907), + [anon_sym_PLUS2] = ACTIONS(1909), + [anon_sym_bit_DASHshl2] = ACTIONS(1907), + [anon_sym_bit_DASHshr2] = ACTIONS(1907), + [anon_sym_bit_DASHand2] = ACTIONS(1907), + [anon_sym_bit_DASHxor2] = ACTIONS(1907), + [anon_sym_bit_DASHor2] = ACTIONS(1907), + [anon_sym_DOT2] = ACTIONS(1877), + [anon_sym_err_GT] = ACTIONS(1909), + [anon_sym_out_GT] = ACTIONS(1909), + [anon_sym_e_GT] = ACTIONS(1909), + [anon_sym_o_GT] = ACTIONS(1909), + [anon_sym_err_PLUSout_GT] = ACTIONS(1909), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1909), + [anon_sym_o_PLUSe_GT] = ACTIONS(1909), + [anon_sym_e_PLUSo_GT] = ACTIONS(1909), + [anon_sym_err_GT_GT] = ACTIONS(1907), + [anon_sym_out_GT_GT] = ACTIONS(1907), + [anon_sym_e_GT_GT] = ACTIONS(1907), + [anon_sym_o_GT_GT] = ACTIONS(1907), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1907), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1907), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1907), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1907), [anon_sym_POUND] = ACTIONS(3), }, [STATE(506)] = { [sym_comment] = STATE(506), - [ts_builtin_sym_end] = 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_GT2] = ACTIONS(1531), - [anon_sym_DASH2] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1533), - [anon_sym_STAR2] = ACTIONS(1531), - [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(1531), - [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(1531), - [anon_sym_mod2] = ACTIONS(1533), - [anon_sym_SLASH_SLASH2] = ACTIONS(1533), - [anon_sym_PLUS2] = ACTIONS(1531), - [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(1531), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1533), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1533), - [anon_sym_QMARK2] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_DOT2] = ACTIONS(1531), - [anon_sym_err_GT] = ACTIONS(1531), - [anon_sym_out_GT] = ACTIONS(1531), - [anon_sym_e_GT] = ACTIONS(1531), - [anon_sym_o_GT] = ACTIONS(1531), - [anon_sym_err_PLUSout_GT] = ACTIONS(1531), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1531), - [anon_sym_o_PLUSe_GT] = ACTIONS(1531), - [anon_sym_e_PLUSo_GT] = ACTIONS(1531), - [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), + [ts_builtin_sym_end] = ACTIONS(1530), + [anon_sym_in] = ACTIONS(1530), + [sym__newline] = ACTIONS(1530), + [anon_sym_SEMI] = ACTIONS(1530), + [anon_sym_PIPE] = ACTIONS(1530), + [anon_sym_err_GT_PIPE] = ACTIONS(1530), + [anon_sym_out_GT_PIPE] = ACTIONS(1530), + [anon_sym_e_GT_PIPE] = ACTIONS(1530), + [anon_sym_o_GT_PIPE] = ACTIONS(1530), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1530), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1530), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1530), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1530), + [anon_sym_GT2] = ACTIONS(1528), + [anon_sym_DASH2] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(1530), + [anon_sym_STAR2] = ACTIONS(1528), + [anon_sym_and2] = ACTIONS(1530), + [anon_sym_xor2] = ACTIONS(1530), + [anon_sym_or2] = ACTIONS(1530), + [anon_sym_not_DASHin2] = ACTIONS(1530), + [anon_sym_has2] = ACTIONS(1530), + [anon_sym_not_DASHhas2] = ACTIONS(1530), + [anon_sym_starts_DASHwith2] = ACTIONS(1530), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1530), + [anon_sym_ends_DASHwith2] = ACTIONS(1530), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1530), + [anon_sym_EQ_EQ2] = ACTIONS(1530), + [anon_sym_BANG_EQ2] = ACTIONS(1530), + [anon_sym_LT2] = ACTIONS(1528), + [anon_sym_LT_EQ2] = ACTIONS(1530), + [anon_sym_GT_EQ2] = ACTIONS(1530), + [anon_sym_EQ_TILDE2] = ACTIONS(1530), + [anon_sym_BANG_TILDE2] = ACTIONS(1530), + [anon_sym_like2] = ACTIONS(1530), + [anon_sym_not_DASHlike2] = ACTIONS(1530), + [anon_sym_STAR_STAR2] = ACTIONS(1530), + [anon_sym_PLUS_PLUS2] = ACTIONS(1530), + [anon_sym_SLASH2] = ACTIONS(1528), + [anon_sym_mod2] = ACTIONS(1530), + [anon_sym_SLASH_SLASH2] = ACTIONS(1530), + [anon_sym_PLUS2] = ACTIONS(1528), + [anon_sym_bit_DASHshl2] = ACTIONS(1530), + [anon_sym_bit_DASHshr2] = ACTIONS(1530), + [anon_sym_bit_DASHand2] = ACTIONS(1530), + [anon_sym_bit_DASHxor2] = ACTIONS(1530), + [anon_sym_bit_DASHor2] = ACTIONS(1530), + [anon_sym_DOT_DOT2] = ACTIONS(1528), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1530), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1530), + [anon_sym_QMARK2] = ACTIONS(1530), + [anon_sym_BANG] = ACTIONS(1528), + [anon_sym_DOT2] = ACTIONS(1528), + [anon_sym_err_GT] = ACTIONS(1528), + [anon_sym_out_GT] = ACTIONS(1528), + [anon_sym_e_GT] = ACTIONS(1528), + [anon_sym_o_GT] = ACTIONS(1528), + [anon_sym_err_PLUSout_GT] = ACTIONS(1528), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), + [anon_sym_o_PLUSe_GT] = ACTIONS(1528), + [anon_sym_e_PLUSo_GT] = ACTIONS(1528), + [anon_sym_err_GT_GT] = ACTIONS(1530), + [anon_sym_out_GT_GT] = ACTIONS(1530), + [anon_sym_e_GT_GT] = ACTIONS(1530), + [anon_sym_o_GT_GT] = ACTIONS(1530), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1530), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1530), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1530), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1530), [anon_sym_POUND] = ACTIONS(3), }, [STATE(507)] = { + [sym_cell_path] = STATE(799), + [sym_path] = STATE(458), [sym_comment] = STATE(507), - [ts_builtin_sym_end] = ACTIONS(1770), - [anon_sym_in] = ACTIONS(1770), - [sym__newline] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1770), - [anon_sym_PIPE] = ACTIONS(1770), - [anon_sym_err_GT_PIPE] = ACTIONS(1770), - [anon_sym_out_GT_PIPE] = ACTIONS(1770), - [anon_sym_e_GT_PIPE] = ACTIONS(1770), - [anon_sym_o_GT_PIPE] = ACTIONS(1770), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1770), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1770), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1770), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1770), - [anon_sym_GT2] = ACTIONS(1772), - [anon_sym_DASH2] = ACTIONS(1770), - [anon_sym_STAR2] = ACTIONS(1772), - [anon_sym_and2] = ACTIONS(1770), - [anon_sym_xor2] = ACTIONS(1770), - [anon_sym_or2] = ACTIONS(1770), - [anon_sym_not_DASHin2] = ACTIONS(1770), - [anon_sym_has2] = ACTIONS(1770), - [anon_sym_not_DASHhas2] = ACTIONS(1770), - [anon_sym_starts_DASHwith2] = ACTIONS(1770), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1770), - [anon_sym_ends_DASHwith2] = ACTIONS(1770), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1770), - [anon_sym_EQ_EQ2] = ACTIONS(1770), - [anon_sym_BANG_EQ2] = ACTIONS(1770), - [anon_sym_LT2] = ACTIONS(1772), - [anon_sym_LT_EQ2] = ACTIONS(1770), - [anon_sym_GT_EQ2] = ACTIONS(1770), - [anon_sym_EQ_TILDE2] = ACTIONS(1770), - [anon_sym_BANG_TILDE2] = ACTIONS(1770), - [anon_sym_like2] = ACTIONS(1770), - [anon_sym_not_DASHlike2] = ACTIONS(1770), - [anon_sym_LPAREN2] = ACTIONS(1770), - [anon_sym_STAR_STAR2] = ACTIONS(1770), - [anon_sym_PLUS_PLUS2] = ACTIONS(1770), - [anon_sym_SLASH2] = ACTIONS(1772), - [anon_sym_mod2] = ACTIONS(1770), - [anon_sym_SLASH_SLASH2] = ACTIONS(1770), - [anon_sym_PLUS2] = ACTIONS(1772), - [anon_sym_bit_DASHshl2] = ACTIONS(1770), - [anon_sym_bit_DASHshr2] = ACTIONS(1770), - [anon_sym_bit_DASHand2] = ACTIONS(1770), - [anon_sym_bit_DASHxor2] = ACTIONS(1770), - [anon_sym_bit_DASHor2] = ACTIONS(1770), - [anon_sym_DOT_DOT2] = ACTIONS(1772), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1770), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1770), - [aux_sym__immediate_decimal_token1] = ACTIONS(1904), - [aux_sym__immediate_decimal_token5] = ACTIONS(1906), - [anon_sym_err_GT] = ACTIONS(1772), - [anon_sym_out_GT] = ACTIONS(1772), - [anon_sym_e_GT] = ACTIONS(1772), - [anon_sym_o_GT] = ACTIONS(1772), - [anon_sym_err_PLUSout_GT] = ACTIONS(1772), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1772), - [anon_sym_o_PLUSe_GT] = ACTIONS(1772), - [anon_sym_e_PLUSo_GT] = ACTIONS(1772), - [anon_sym_err_GT_GT] = ACTIONS(1770), - [anon_sym_out_GT_GT] = ACTIONS(1770), - [anon_sym_e_GT_GT] = ACTIONS(1770), - [anon_sym_o_GT_GT] = ACTIONS(1770), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1770), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1770), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1770), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1770), - [sym__unquoted_pattern] = ACTIONS(1772), + [aux_sym__where_predicate_lhs_repeat1] = STATE(428), + [anon_sym_in] = ACTIONS(1911), + [sym__newline] = ACTIONS(1911), + [anon_sym_SEMI] = ACTIONS(1911), + [anon_sym_PIPE] = ACTIONS(1911), + [anon_sym_err_GT_PIPE] = ACTIONS(1911), + [anon_sym_out_GT_PIPE] = ACTIONS(1911), + [anon_sym_e_GT_PIPE] = ACTIONS(1911), + [anon_sym_o_GT_PIPE] = ACTIONS(1911), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1911), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1911), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1911), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1911), + [anon_sym_RPAREN] = ACTIONS(1911), + [anon_sym_GT2] = ACTIONS(1913), + [anon_sym_DASH2] = ACTIONS(1911), + [anon_sym_LBRACE] = ACTIONS(1911), + [anon_sym_RBRACE] = ACTIONS(1911), + [anon_sym_EQ_GT] = ACTIONS(1911), + [anon_sym_STAR2] = ACTIONS(1913), + [anon_sym_and2] = ACTIONS(1911), + [anon_sym_xor2] = ACTIONS(1911), + [anon_sym_or2] = ACTIONS(1911), + [anon_sym_not_DASHin2] = ACTIONS(1911), + [anon_sym_has2] = ACTIONS(1911), + [anon_sym_not_DASHhas2] = ACTIONS(1911), + [anon_sym_starts_DASHwith2] = ACTIONS(1911), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1911), + [anon_sym_ends_DASHwith2] = ACTIONS(1911), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1911), + [anon_sym_EQ_EQ2] = ACTIONS(1911), + [anon_sym_BANG_EQ2] = ACTIONS(1911), + [anon_sym_LT2] = ACTIONS(1913), + [anon_sym_LT_EQ2] = ACTIONS(1911), + [anon_sym_GT_EQ2] = ACTIONS(1911), + [anon_sym_EQ_TILDE2] = ACTIONS(1911), + [anon_sym_BANG_TILDE2] = ACTIONS(1911), + [anon_sym_like2] = ACTIONS(1911), + [anon_sym_not_DASHlike2] = ACTIONS(1911), + [anon_sym_STAR_STAR2] = ACTIONS(1911), + [anon_sym_PLUS_PLUS2] = ACTIONS(1911), + [anon_sym_SLASH2] = ACTIONS(1913), + [anon_sym_mod2] = ACTIONS(1911), + [anon_sym_SLASH_SLASH2] = ACTIONS(1911), + [anon_sym_PLUS2] = ACTIONS(1913), + [anon_sym_bit_DASHshl2] = ACTIONS(1911), + [anon_sym_bit_DASHshr2] = ACTIONS(1911), + [anon_sym_bit_DASHand2] = ACTIONS(1911), + [anon_sym_bit_DASHxor2] = ACTIONS(1911), + [anon_sym_bit_DASHor2] = ACTIONS(1911), + [anon_sym_DOT2] = ACTIONS(1877), + [anon_sym_err_GT] = ACTIONS(1913), + [anon_sym_out_GT] = ACTIONS(1913), + [anon_sym_e_GT] = ACTIONS(1913), + [anon_sym_o_GT] = ACTIONS(1913), + [anon_sym_err_PLUSout_GT] = ACTIONS(1913), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1913), + [anon_sym_o_PLUSe_GT] = ACTIONS(1913), + [anon_sym_e_PLUSo_GT] = ACTIONS(1913), + [anon_sym_err_GT_GT] = ACTIONS(1911), + [anon_sym_out_GT_GT] = ACTIONS(1911), + [anon_sym_e_GT_GT] = ACTIONS(1911), + [anon_sym_o_GT_GT] = ACTIONS(1911), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1911), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1911), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1911), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1911), [anon_sym_POUND] = ACTIONS(3), }, [STATE(508)] = { [sym_comment] = STATE(508), - [ts_builtin_sym_end] = ACTIONS(1744), - [anon_sym_in] = ACTIONS(1744), - [sym__newline] = ACTIONS(1744), - [anon_sym_SEMI] = ACTIONS(1744), - [anon_sym_PIPE] = ACTIONS(1744), - [anon_sym_err_GT_PIPE] = ACTIONS(1744), - [anon_sym_out_GT_PIPE] = ACTIONS(1744), - [anon_sym_e_GT_PIPE] = ACTIONS(1744), - [anon_sym_o_GT_PIPE] = ACTIONS(1744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1744), - [anon_sym_GT2] = ACTIONS(1746), - [anon_sym_DASH2] = ACTIONS(1744), - [anon_sym_STAR2] = ACTIONS(1746), - [anon_sym_and2] = ACTIONS(1744), - [anon_sym_xor2] = ACTIONS(1744), - [anon_sym_or2] = ACTIONS(1744), - [anon_sym_not_DASHin2] = ACTIONS(1744), - [anon_sym_has2] = ACTIONS(1744), - [anon_sym_not_DASHhas2] = ACTIONS(1744), - [anon_sym_starts_DASHwith2] = ACTIONS(1744), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1744), - [anon_sym_ends_DASHwith2] = ACTIONS(1744), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1744), - [anon_sym_EQ_EQ2] = ACTIONS(1744), - [anon_sym_BANG_EQ2] = ACTIONS(1744), - [anon_sym_LT2] = ACTIONS(1746), - [anon_sym_LT_EQ2] = ACTIONS(1744), - [anon_sym_GT_EQ2] = ACTIONS(1744), - [anon_sym_EQ_TILDE2] = ACTIONS(1744), - [anon_sym_BANG_TILDE2] = ACTIONS(1744), - [anon_sym_like2] = ACTIONS(1744), - [anon_sym_not_DASHlike2] = ACTIONS(1744), - [anon_sym_LPAREN2] = ACTIONS(1744), - [anon_sym_STAR_STAR2] = ACTIONS(1744), - [anon_sym_PLUS_PLUS2] = ACTIONS(1744), - [anon_sym_SLASH2] = ACTIONS(1746), - [anon_sym_mod2] = ACTIONS(1744), - [anon_sym_SLASH_SLASH2] = ACTIONS(1744), - [anon_sym_PLUS2] = ACTIONS(1746), - [anon_sym_bit_DASHshl2] = ACTIONS(1744), - [anon_sym_bit_DASHshr2] = ACTIONS(1744), - [anon_sym_bit_DASHand2] = ACTIONS(1744), - [anon_sym_bit_DASHxor2] = ACTIONS(1744), - [anon_sym_bit_DASHor2] = ACTIONS(1744), - [anon_sym_DOT_DOT2] = ACTIONS(1746), - [anon_sym_DOT] = ACTIONS(1908), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1744), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1744), - [aux_sym__immediate_decimal_token5] = ACTIONS(1910), - [anon_sym_err_GT] = ACTIONS(1746), - [anon_sym_out_GT] = ACTIONS(1746), - [anon_sym_e_GT] = ACTIONS(1746), - [anon_sym_o_GT] = ACTIONS(1746), - [anon_sym_err_PLUSout_GT] = ACTIONS(1746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1746), - [anon_sym_o_PLUSe_GT] = ACTIONS(1746), - [anon_sym_e_PLUSo_GT] = ACTIONS(1746), - [anon_sym_err_GT_GT] = ACTIONS(1744), - [anon_sym_out_GT_GT] = ACTIONS(1744), - [anon_sym_e_GT_GT] = ACTIONS(1744), - [anon_sym_o_GT_GT] = ACTIONS(1744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1744), - [sym__unquoted_pattern] = ACTIONS(1746), + [anon_sym_if] = ACTIONS(1915), + [anon_sym_in] = ACTIONS(1915), + [sym__newline] = ACTIONS(1915), + [anon_sym_SEMI] = ACTIONS(1915), + [anon_sym_PIPE] = ACTIONS(1915), + [anon_sym_err_GT_PIPE] = ACTIONS(1915), + [anon_sym_out_GT_PIPE] = ACTIONS(1915), + [anon_sym_e_GT_PIPE] = ACTIONS(1915), + [anon_sym_o_GT_PIPE] = ACTIONS(1915), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1915), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1915), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1915), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1915), + [anon_sym_RPAREN] = ACTIONS(1915), + [anon_sym_GT2] = ACTIONS(1917), + [anon_sym_DASH2] = ACTIONS(1915), + [anon_sym_LBRACE] = ACTIONS(1915), + [anon_sym_RBRACE] = ACTIONS(1915), + [anon_sym_EQ_GT] = ACTIONS(1915), + [anon_sym_STAR2] = ACTIONS(1917), + [anon_sym_and2] = ACTIONS(1915), + [anon_sym_xor2] = ACTIONS(1915), + [anon_sym_or2] = ACTIONS(1915), + [anon_sym_not_DASHin2] = ACTIONS(1915), + [anon_sym_has2] = ACTIONS(1915), + [anon_sym_not_DASHhas2] = ACTIONS(1915), + [anon_sym_starts_DASHwith2] = ACTIONS(1915), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1915), + [anon_sym_ends_DASHwith2] = ACTIONS(1915), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1915), + [anon_sym_EQ_EQ2] = ACTIONS(1915), + [anon_sym_BANG_EQ2] = ACTIONS(1915), + [anon_sym_LT2] = ACTIONS(1917), + [anon_sym_LT_EQ2] = ACTIONS(1915), + [anon_sym_GT_EQ2] = ACTIONS(1915), + [anon_sym_EQ_TILDE2] = ACTIONS(1915), + [anon_sym_BANG_TILDE2] = ACTIONS(1915), + [anon_sym_like2] = ACTIONS(1915), + [anon_sym_not_DASHlike2] = ACTIONS(1915), + [anon_sym_STAR_STAR2] = ACTIONS(1915), + [anon_sym_PLUS_PLUS2] = ACTIONS(1915), + [anon_sym_SLASH2] = ACTIONS(1917), + [anon_sym_mod2] = ACTIONS(1915), + [anon_sym_SLASH_SLASH2] = ACTIONS(1915), + [anon_sym_PLUS2] = ACTIONS(1917), + [anon_sym_bit_DASHshl2] = ACTIONS(1915), + [anon_sym_bit_DASHshr2] = ACTIONS(1915), + [anon_sym_bit_DASHand2] = ACTIONS(1915), + [anon_sym_bit_DASHxor2] = ACTIONS(1915), + [anon_sym_bit_DASHor2] = ACTIONS(1915), + [anon_sym_DOT_DOT2] = ACTIONS(1917), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1915), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1915), + [anon_sym_err_GT] = ACTIONS(1917), + [anon_sym_out_GT] = ACTIONS(1917), + [anon_sym_e_GT] = ACTIONS(1917), + [anon_sym_o_GT] = ACTIONS(1917), + [anon_sym_err_PLUSout_GT] = ACTIONS(1917), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1917), + [anon_sym_o_PLUSe_GT] = ACTIONS(1917), + [anon_sym_e_PLUSo_GT] = ACTIONS(1917), + [anon_sym_err_GT_GT] = ACTIONS(1915), + [anon_sym_out_GT_GT] = ACTIONS(1915), + [anon_sym_e_GT_GT] = ACTIONS(1915), + [anon_sym_o_GT_GT] = ACTIONS(1915), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1915), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1915), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1915), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1915), [anon_sym_POUND] = ACTIONS(3), }, [STATE(509)] = { - [sym_cell_path] = STATE(906), - [sym_path] = STATE(458), + [sym__path_suffix] = STATE(692), [sym_comment] = STATE(509), - [aux_sym__where_predicate_lhs_repeat1] = STATE(427), - [anon_sym_in] = ACTIONS(1912), - [sym__newline] = ACTIONS(1912), - [anon_sym_SEMI] = ACTIONS(1912), - [anon_sym_PIPE] = ACTIONS(1912), - [anon_sym_err_GT_PIPE] = ACTIONS(1912), - [anon_sym_out_GT_PIPE] = ACTIONS(1912), - [anon_sym_e_GT_PIPE] = ACTIONS(1912), - [anon_sym_o_GT_PIPE] = ACTIONS(1912), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1912), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1912), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1912), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1912), - [anon_sym_RPAREN] = ACTIONS(1912), - [anon_sym_GT2] = ACTIONS(1914), - [anon_sym_DASH2] = ACTIONS(1912), - [anon_sym_LBRACE] = ACTIONS(1912), - [anon_sym_RBRACE] = ACTIONS(1912), - [anon_sym_EQ_GT] = ACTIONS(1912), - [anon_sym_STAR2] = ACTIONS(1914), - [anon_sym_and2] = ACTIONS(1912), - [anon_sym_xor2] = ACTIONS(1912), - [anon_sym_or2] = ACTIONS(1912), - [anon_sym_not_DASHin2] = ACTIONS(1912), - [anon_sym_has2] = ACTIONS(1912), - [anon_sym_not_DASHhas2] = ACTIONS(1912), - [anon_sym_starts_DASHwith2] = ACTIONS(1912), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1912), - [anon_sym_ends_DASHwith2] = ACTIONS(1912), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1912), - [anon_sym_EQ_EQ2] = ACTIONS(1912), - [anon_sym_BANG_EQ2] = ACTIONS(1912), - [anon_sym_LT2] = ACTIONS(1914), - [anon_sym_LT_EQ2] = ACTIONS(1912), - [anon_sym_GT_EQ2] = ACTIONS(1912), - [anon_sym_EQ_TILDE2] = ACTIONS(1912), - [anon_sym_BANG_TILDE2] = ACTIONS(1912), - [anon_sym_like2] = ACTIONS(1912), - [anon_sym_not_DASHlike2] = ACTIONS(1912), - [anon_sym_STAR_STAR2] = ACTIONS(1912), - [anon_sym_PLUS_PLUS2] = ACTIONS(1912), - [anon_sym_SLASH2] = ACTIONS(1914), - [anon_sym_mod2] = ACTIONS(1912), - [anon_sym_SLASH_SLASH2] = ACTIONS(1912), - [anon_sym_PLUS2] = ACTIONS(1914), - [anon_sym_bit_DASHshl2] = ACTIONS(1912), - [anon_sym_bit_DASHshr2] = ACTIONS(1912), - [anon_sym_bit_DASHand2] = ACTIONS(1912), - [anon_sym_bit_DASHxor2] = ACTIONS(1912), - [anon_sym_bit_DASHor2] = ACTIONS(1912), - [anon_sym_DOT2] = ACTIONS(1866), - [anon_sym_err_GT] = ACTIONS(1914), - [anon_sym_out_GT] = ACTIONS(1914), - [anon_sym_e_GT] = ACTIONS(1914), - [anon_sym_o_GT] = ACTIONS(1914), - [anon_sym_err_PLUSout_GT] = ACTIONS(1914), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1914), - [anon_sym_o_PLUSe_GT] = ACTIONS(1914), - [anon_sym_e_PLUSo_GT] = ACTIONS(1914), - [anon_sym_err_GT_GT] = ACTIONS(1912), - [anon_sym_out_GT_GT] = ACTIONS(1912), - [anon_sym_e_GT_GT] = ACTIONS(1912), - [anon_sym_o_GT_GT] = ACTIONS(1912), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1912), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1912), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1912), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1912), + [ts_builtin_sym_end] = 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(1442), + [anon_sym_DASH2] = ACTIONS(1444), + [anon_sym_STAR2] = ACTIONS(1442), + [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(1442), + [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(1442), + [anon_sym_mod2] = ACTIONS(1444), + [anon_sym_SLASH_SLASH2] = ACTIONS(1444), + [anon_sym_PLUS2] = ACTIONS(1442), + [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(1442), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1444), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1444), + [anon_sym_QMARK2] = ACTIONS(1919), + [anon_sym_BANG] = ACTIONS(1921), + [anon_sym_DOT2] = ACTIONS(1442), + [anon_sym_err_GT] = ACTIONS(1442), + [anon_sym_out_GT] = ACTIONS(1442), + [anon_sym_e_GT] = ACTIONS(1442), + [anon_sym_o_GT] = ACTIONS(1442), + [anon_sym_err_PLUSout_GT] = ACTIONS(1442), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1442), + [anon_sym_o_PLUSe_GT] = ACTIONS(1442), + [anon_sym_e_PLUSo_GT] = ACTIONS(1442), + [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(3), }, [STATE(510)] = { [sym_comment] = STATE(510), - [anon_sym_in] = ACTIONS(1852), - [sym__newline] = ACTIONS(1852), - [anon_sym_SEMI] = ACTIONS(1852), - [anon_sym_PIPE] = ACTIONS(1852), - [anon_sym_err_GT_PIPE] = ACTIONS(1852), - [anon_sym_out_GT_PIPE] = ACTIONS(1852), - [anon_sym_e_GT_PIPE] = ACTIONS(1852), - [anon_sym_o_GT_PIPE] = ACTIONS(1852), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1852), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1852), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1852), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1852), - [anon_sym_RPAREN] = ACTIONS(1852), - [anon_sym_GT2] = ACTIONS(1854), - [anon_sym_DASH2] = ACTIONS(1852), - [anon_sym_LBRACE] = ACTIONS(1852), - [anon_sym_RBRACE] = ACTIONS(1852), - [anon_sym_STAR2] = ACTIONS(1854), - [anon_sym_and2] = ACTIONS(1852), - [anon_sym_xor2] = ACTIONS(1852), - [anon_sym_or2] = ACTIONS(1852), - [anon_sym_not_DASHin2] = ACTIONS(1852), - [anon_sym_has2] = ACTIONS(1852), - [anon_sym_not_DASHhas2] = ACTIONS(1852), - [anon_sym_starts_DASHwith2] = ACTIONS(1852), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1852), - [anon_sym_ends_DASHwith2] = ACTIONS(1852), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1852), - [anon_sym_EQ_EQ2] = ACTIONS(1852), - [anon_sym_BANG_EQ2] = ACTIONS(1852), - [anon_sym_LT2] = ACTIONS(1854), - [anon_sym_LT_EQ2] = ACTIONS(1852), - [anon_sym_GT_EQ2] = ACTIONS(1852), - [anon_sym_EQ_TILDE2] = ACTIONS(1852), - [anon_sym_BANG_TILDE2] = ACTIONS(1852), - [anon_sym_like2] = ACTIONS(1852), - [anon_sym_not_DASHlike2] = ACTIONS(1852), - [anon_sym_LPAREN2] = ACTIONS(1852), - [anon_sym_STAR_STAR2] = ACTIONS(1852), - [anon_sym_PLUS_PLUS2] = ACTIONS(1852), - [anon_sym_SLASH2] = ACTIONS(1854), - [anon_sym_mod2] = ACTIONS(1852), - [anon_sym_SLASH_SLASH2] = ACTIONS(1852), - [anon_sym_PLUS2] = ACTIONS(1854), - [anon_sym_bit_DASHshl2] = ACTIONS(1852), - [anon_sym_bit_DASHshr2] = ACTIONS(1852), - [anon_sym_bit_DASHand2] = ACTIONS(1852), - [anon_sym_bit_DASHxor2] = ACTIONS(1852), - [anon_sym_bit_DASHor2] = ACTIONS(1852), - [anon_sym_DOT_DOT2] = ACTIONS(1854), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1852), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1852), - [anon_sym_err_GT] = ACTIONS(1854), - [anon_sym_out_GT] = ACTIONS(1854), - [anon_sym_e_GT] = ACTIONS(1854), - [anon_sym_o_GT] = ACTIONS(1854), - [anon_sym_err_PLUSout_GT] = ACTIONS(1854), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1854), - [anon_sym_o_PLUSe_GT] = ACTIONS(1854), - [anon_sym_e_PLUSo_GT] = ACTIONS(1854), - [anon_sym_err_GT_GT] = ACTIONS(1852), - [anon_sym_out_GT_GT] = ACTIONS(1852), - [anon_sym_e_GT_GT] = ACTIONS(1852), - [anon_sym_o_GT_GT] = ACTIONS(1852), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1852), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1852), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1852), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1852), - [sym__unquoted_pattern] = ACTIONS(1854), + [ts_builtin_sym_end] = ACTIONS(865), + [anon_sym_in] = ACTIONS(865), + [sym__newline] = ACTIONS(865), + [anon_sym_SEMI] = ACTIONS(865), + [anon_sym_PIPE] = ACTIONS(865), + [anon_sym_err_GT_PIPE] = ACTIONS(865), + [anon_sym_out_GT_PIPE] = ACTIONS(865), + [anon_sym_e_GT_PIPE] = ACTIONS(865), + [anon_sym_o_GT_PIPE] = ACTIONS(865), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(865), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(865), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(865), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(865), + [anon_sym_GT2] = ACTIONS(863), + [anon_sym_DASH2] = ACTIONS(865), + [anon_sym_STAR2] = ACTIONS(863), + [anon_sym_and2] = ACTIONS(865), + [anon_sym_xor2] = ACTIONS(865), + [anon_sym_or2] = ACTIONS(865), + [anon_sym_not_DASHin2] = ACTIONS(865), + [anon_sym_has2] = ACTIONS(865), + [anon_sym_not_DASHhas2] = ACTIONS(865), + [anon_sym_starts_DASHwith2] = ACTIONS(865), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(865), + [anon_sym_ends_DASHwith2] = ACTIONS(865), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(865), + [anon_sym_EQ_EQ2] = ACTIONS(865), + [anon_sym_BANG_EQ2] = ACTIONS(865), + [anon_sym_LT2] = ACTIONS(863), + [anon_sym_LT_EQ2] = ACTIONS(865), + [anon_sym_GT_EQ2] = ACTIONS(865), + [anon_sym_EQ_TILDE2] = ACTIONS(865), + [anon_sym_BANG_TILDE2] = ACTIONS(865), + [anon_sym_like2] = ACTIONS(865), + [anon_sym_not_DASHlike2] = ACTIONS(865), + [anon_sym_LPAREN2] = ACTIONS(865), + [anon_sym_STAR_STAR2] = ACTIONS(865), + [anon_sym_PLUS_PLUS2] = ACTIONS(865), + [anon_sym_SLASH2] = ACTIONS(863), + [anon_sym_mod2] = ACTIONS(865), + [anon_sym_SLASH_SLASH2] = ACTIONS(865), + [anon_sym_PLUS2] = ACTIONS(863), + [anon_sym_bit_DASHshl2] = ACTIONS(865), + [anon_sym_bit_DASHshr2] = ACTIONS(865), + [anon_sym_bit_DASHand2] = ACTIONS(865), + [anon_sym_bit_DASHxor2] = ACTIONS(865), + [anon_sym_bit_DASHor2] = ACTIONS(865), + [anon_sym_DOT_DOT2] = ACTIONS(863), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(865), + [anon_sym_DOT_DOT_LT2] = ACTIONS(865), + [sym_filesize_unit] = ACTIONS(863), + [sym_duration_unit] = ACTIONS(865), + [anon_sym_err_GT] = ACTIONS(863), + [anon_sym_out_GT] = ACTIONS(863), + [anon_sym_e_GT] = ACTIONS(863), + [anon_sym_o_GT] = ACTIONS(863), + [anon_sym_err_PLUSout_GT] = ACTIONS(863), + [anon_sym_out_PLUSerr_GT] = ACTIONS(863), + [anon_sym_o_PLUSe_GT] = ACTIONS(863), + [anon_sym_e_PLUSo_GT] = ACTIONS(863), + [anon_sym_err_GT_GT] = ACTIONS(865), + [anon_sym_out_GT_GT] = ACTIONS(865), + [anon_sym_e_GT_GT] = ACTIONS(865), + [anon_sym_o_GT_GT] = ACTIONS(865), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(865), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(865), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(865), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(865), + [sym__unquoted_pattern] = ACTIONS(863), [anon_sym_POUND] = ACTIONS(3), }, [STATE(511)] = { - [sym_cmd_identifier] = STATE(4276), - [sym_expr_parenthesized] = STATE(5339), - [sym__spread_parenthesized] = STATE(4883), - [sym__spread_variable] = STATE(4892), - [sym_val_variable] = STATE(4345), - [sym_val_number] = STATE(5339), - [sym__val_number_decimal] = STATE(1984), - [sym__val_number] = STATE(707), - [sym_val_string] = STATE(5339), - [sym__raw_str] = STATE(2266), - [sym__str_double_quotes] = STATE(2266), - [sym__str_single_quotes] = STATE(2266), - [sym__str_back_ticks] = STATE(2266), - [sym_val_interpolated] = STATE(5339), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym__spread_record] = STATE(4883), - [sym_record_entry] = STATE(4587), - [sym__record_key] = STATE(5341), + [sym_cell_path] = STATE(937), + [sym_path] = STATE(715), [sym_comment] = STATE(511), - [aux_sym__types_body_repeat1] = STATE(1516), - [aux_sym__match_pattern_record_body_repeat1] = STATE(838), - [aux_sym_record_body_repeat1] = STATE(867), + [aux_sym__where_predicate_lhs_repeat1] = STATE(526), + [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(1869), + [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(512)] = { + [sym_comment] = STATE(512), + [ts_builtin_sym_end] = 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(1512), + [anon_sym_DASH2] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(1514), + [anon_sym_STAR2] = ACTIONS(1512), + [anon_sym_and2] = ACTIONS(1514), + [anon_sym_xor2] = ACTIONS(1514), + [anon_sym_or2] = ACTIONS(1514), + [anon_sym_not_DASHin2] = ACTIONS(1514), + [anon_sym_has2] = ACTIONS(1514), + [anon_sym_not_DASHhas2] = ACTIONS(1514), + [anon_sym_starts_DASHwith2] = ACTIONS(1514), + [anon_sym_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(1512), + [anon_sym_LT_EQ2] = ACTIONS(1514), + [anon_sym_GT_EQ2] = ACTIONS(1514), + [anon_sym_EQ_TILDE2] = ACTIONS(1514), + [anon_sym_BANG_TILDE2] = ACTIONS(1514), + [anon_sym_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(1512), + [anon_sym_mod2] = ACTIONS(1514), + [anon_sym_SLASH_SLASH2] = ACTIONS(1514), + [anon_sym_PLUS2] = ACTIONS(1512), + [anon_sym_bit_DASHshl2] = ACTIONS(1514), + [anon_sym_bit_DASHshr2] = ACTIONS(1514), + [anon_sym_bit_DASHand2] = ACTIONS(1514), + [anon_sym_bit_DASHxor2] = ACTIONS(1514), + [anon_sym_bit_DASHor2] = ACTIONS(1514), + [anon_sym_DOT_DOT2] = ACTIONS(1512), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1514), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1514), + [anon_sym_QMARK2] = ACTIONS(1514), + [anon_sym_BANG] = ACTIONS(1512), + [anon_sym_DOT2] = ACTIONS(1512), + [anon_sym_err_GT] = ACTIONS(1512), + [anon_sym_out_GT] = ACTIONS(1512), + [anon_sym_e_GT] = ACTIONS(1512), + [anon_sym_o_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT] = ACTIONS(1512), + [anon_sym_err_GT_GT] = ACTIONS(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), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(513)] = { + [sym_comment] = STATE(513), + [ts_builtin_sym_end] = ACTIONS(1502), + [anon_sym_in] = ACTIONS(1502), + [sym__newline] = ACTIONS(1502), + [anon_sym_SEMI] = ACTIONS(1502), + [anon_sym_PIPE] = ACTIONS(1502), + [anon_sym_err_GT_PIPE] = ACTIONS(1502), + [anon_sym_out_GT_PIPE] = ACTIONS(1502), + [anon_sym_e_GT_PIPE] = ACTIONS(1502), + [anon_sym_o_GT_PIPE] = ACTIONS(1502), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1502), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1502), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1502), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1502), + [anon_sym_GT2] = ACTIONS(1500), + [anon_sym_DASH2] = ACTIONS(1502), + [anon_sym_LBRACE] = ACTIONS(1502), + [anon_sym_STAR2] = ACTIONS(1500), + [anon_sym_and2] = ACTIONS(1502), + [anon_sym_xor2] = ACTIONS(1502), + [anon_sym_or2] = ACTIONS(1502), + [anon_sym_not_DASHin2] = ACTIONS(1502), + [anon_sym_has2] = ACTIONS(1502), + [anon_sym_not_DASHhas2] = ACTIONS(1502), + [anon_sym_starts_DASHwith2] = ACTIONS(1502), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1502), + [anon_sym_ends_DASHwith2] = ACTIONS(1502), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1502), + [anon_sym_EQ_EQ2] = ACTIONS(1502), + [anon_sym_BANG_EQ2] = ACTIONS(1502), + [anon_sym_LT2] = ACTIONS(1500), + [anon_sym_LT_EQ2] = ACTIONS(1502), + [anon_sym_GT_EQ2] = ACTIONS(1502), + [anon_sym_EQ_TILDE2] = ACTIONS(1502), + [anon_sym_BANG_TILDE2] = ACTIONS(1502), + [anon_sym_like2] = ACTIONS(1502), + [anon_sym_not_DASHlike2] = ACTIONS(1502), + [anon_sym_STAR_STAR2] = ACTIONS(1502), + [anon_sym_PLUS_PLUS2] = ACTIONS(1502), + [anon_sym_SLASH2] = ACTIONS(1500), + [anon_sym_mod2] = ACTIONS(1502), + [anon_sym_SLASH_SLASH2] = ACTIONS(1502), + [anon_sym_PLUS2] = ACTIONS(1500), + [anon_sym_bit_DASHshl2] = ACTIONS(1502), + [anon_sym_bit_DASHshr2] = ACTIONS(1502), + [anon_sym_bit_DASHand2] = ACTIONS(1502), + [anon_sym_bit_DASHxor2] = ACTIONS(1502), + [anon_sym_bit_DASHor2] = ACTIONS(1502), + [anon_sym_DOT_DOT2] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1502), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1502), + [anon_sym_QMARK2] = ACTIONS(1502), + [anon_sym_BANG] = ACTIONS(1500), + [anon_sym_DOT2] = ACTIONS(1500), + [anon_sym_err_GT] = ACTIONS(1500), + [anon_sym_out_GT] = ACTIONS(1500), + [anon_sym_e_GT] = ACTIONS(1500), + [anon_sym_o_GT] = ACTIONS(1500), + [anon_sym_err_PLUSout_GT] = ACTIONS(1500), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1500), + [anon_sym_o_PLUSe_GT] = ACTIONS(1500), + [anon_sym_e_PLUSo_GT] = ACTIONS(1500), + [anon_sym_err_GT_GT] = ACTIONS(1502), + [anon_sym_out_GT_GT] = ACTIONS(1502), + [anon_sym_e_GT_GT] = ACTIONS(1502), + [anon_sym_o_GT_GT] = ACTIONS(1502), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1502), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1502), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1502), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1502), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(514)] = { + [sym_cmd_identifier] = STATE(4519), + [sym_expr_parenthesized] = STATE(5494), + [sym__spread_parenthesized] = STATE(5018), + [sym__spread_variable] = STATE(5020), + [sym_val_variable] = STATE(5494), + [sym_val_number] = STATE(5494), + [sym__val_number_decimal] = STATE(1998), + [sym__val_number] = STATE(710), + [sym_val_string] = STATE(5494), + [sym__raw_str] = STATE(2274), + [sym__str_double_quotes] = STATE(2274), + [sym__str_single_quotes] = STATE(2274), + [sym__str_back_ticks] = STATE(2274), + [sym_val_interpolated] = STATE(5494), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym__spread_record] = STATE(5018), + [sym_record_entry] = STATE(4816), + [sym__record_key] = STATE(5156), + [sym_comment] = STATE(514), + [aux_sym__types_body_repeat1] = STATE(1499), + [aux_sym_record_body_repeat1] = STATE(719), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -87659,1124 +88729,909 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(137), [anon_sym_try] = ACTIONS(137), [anon_sym_catch] = ACTIONS(137), + [anon_sym_finally] = ACTIONS(137), [anon_sym_match] = ACTIONS(137), [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1782), - [anon_sym_false] = ACTIONS(1782), - [anon_sym_null] = ACTIONS(1782), - [aux_sym_cmd_identifier_token3] = ACTIONS(1784), - [aux_sym_cmd_identifier_token4] = ACTIONS(1784), - [aux_sym_cmd_identifier_token5] = ACTIONS(1784), - [sym__newline] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1788), - [anon_sym_DOLLAR] = ACTIONS(1836), + [anon_sym_true] = ACTIONS(1754), + [anon_sym_false] = ACTIONS(1754), + [anon_sym_null] = ACTIONS(1754), + [aux_sym_cmd_identifier_token3] = ACTIONS(1756), + [aux_sym_cmd_identifier_token4] = ACTIONS(1756), + [aux_sym_cmd_identifier_token5] = ACTIONS(1756), + [sym__newline] = ACTIONS(1758), + [anon_sym_LPAREN] = ACTIONS(1760), + [anon_sym_DOLLAR] = ACTIONS(1762), [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(1794), - [aux_sym__val_number_decimal_token2] = ACTIONS(1796), - [aux_sym__val_number_decimal_token3] = ACTIONS(1798), - [aux_sym__val_number_decimal_token4] = ACTIONS(1798), + [aux_sym__val_number_decimal_token1] = ACTIONS(1766), + [aux_sym__val_number_decimal_token2] = ACTIONS(1768), + [aux_sym__val_number_decimal_token3] = ACTIONS(1770), + [aux_sym__val_number_decimal_token4] = ACTIONS(1770), [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(1800), - [anon_sym_SQUOTE] = ACTIONS(1802), - [anon_sym_BQUOTE] = ACTIONS(1804), + [anon_sym_DQUOTE] = ACTIONS(1772), + [anon_sym_SQUOTE] = ACTIONS(1774), + [anon_sym_BQUOTE] = ACTIONS(1776), [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(1806), - }, - [STATE(512)] = { - [aux_sym__repeat_newline] = STATE(513), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(2063), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1983), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1738), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(831), - [sym__unquoted_with_expr] = STATE(1023), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [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(1922), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1924), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), - [anon_sym_DOT_DOT_LT] = ACTIONS(1926), - [aux_sym__val_number_decimal_token1] = ACTIONS(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1930), - [aux_sym__val_number_decimal_token3] = ACTIONS(1932), - [aux_sym__val_number_decimal_token4] = ACTIONS(1932), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1934), - [anon_sym_DQUOTE] = 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(1936), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(513)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(2094), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1983), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1738), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(859), - [sym__unquoted_with_expr] = STATE(1075), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [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(1922), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1924), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), - [anon_sym_DOT_DOT_LT] = ACTIONS(1926), - [aux_sym__val_number_decimal_token1] = ACTIONS(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1930), - [aux_sym__val_number_decimal_token3] = ACTIONS(1932), - [aux_sym__val_number_decimal_token4] = ACTIONS(1932), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1934), - [anon_sym_DQUOTE] = 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(1936), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(514)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(2096), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1983), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1738), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(860), - [sym__unquoted_with_expr] = STATE(1077), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [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(1922), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1924), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), - [anon_sym_DOT_DOT_LT] = ACTIONS(1926), - [aux_sym__val_number_decimal_token1] = ACTIONS(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1930), - [aux_sym__val_number_decimal_token3] = ACTIONS(1932), - [aux_sym__val_number_decimal_token4] = ACTIONS(1932), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1934), - [anon_sym_DQUOTE] = 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(1936), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [sym_raw_string_begin] = ACTIONS(1778), }, [STATE(515)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1079), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1983), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1738), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(861), - [sym__unquoted_with_expr] = STATE(1080), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1547), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1495), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1414), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(744), + [sym__unquoted_with_expr] = STATE(1027), + [sym__unquoted_anonymous_prefix] = STATE(4753), [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(1922), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [anon_sym_null] = ACTIONS(1925), + [aux_sym_cmd_identifier_token3] = ACTIONS(1927), + [aux_sym_cmd_identifier_token4] = ACTIONS(1927), + [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1924), + [anon_sym_DOT_DOT] = ACTIONS(1931), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), - [anon_sym_DOT_DOT_LT] = ACTIONS(1926), - [aux_sym__val_number_decimal_token1] = ACTIONS(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1930), - [aux_sym__val_number_decimal_token3] = ACTIONS(1932), - [aux_sym__val_number_decimal_token4] = ACTIONS(1932), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), + [anon_sym_DOT_DOT_LT] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1937), + [aux_sym__val_number_decimal_token3] = ACTIONS(1939), + [aux_sym__val_number_decimal_token4] = ACTIONS(1939), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1934), + [sym_val_date] = ACTIONS(1941), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(516)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(2098), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1983), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1738), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(862), - [sym__unquoted_with_expr] = STATE(1084), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(534), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1153), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(469), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(869), + [sym__unquoted_with_expr] = STATE(1051), + [sym__unquoted_anonymous_prefix] = STATE(4753), [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(1922), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1947), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1924), + [anon_sym_DOT_DOT] = ACTIONS(1951), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), - [anon_sym_DOT_DOT_LT] = ACTIONS(1926), - [aux_sym__val_number_decimal_token1] = ACTIONS(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1930), - [aux_sym__val_number_decimal_token3] = ACTIONS(1932), - [aux_sym__val_number_decimal_token4] = ACTIONS(1932), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), + [anon_sym_DOT_DOT_LT] = ACTIONS(1953), + [aux_sym__val_number_decimal_token1] = ACTIONS(1955), + [aux_sym__val_number_decimal_token2] = ACTIONS(1957), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1934), + [sym_val_date] = ACTIONS(1961), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(517)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(2100), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1983), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1738), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(863), - [sym__unquoted_with_expr] = STATE(1086), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(535), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1235), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(469), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(871), + [sym__unquoted_with_expr] = STATE(1063), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(517), - [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(1922), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1947), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1924), + [anon_sym_DOT_DOT] = ACTIONS(1951), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), - [anon_sym_DOT_DOT_LT] = ACTIONS(1926), - [aux_sym__val_number_decimal_token1] = ACTIONS(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1930), - [aux_sym__val_number_decimal_token3] = ACTIONS(1932), - [aux_sym__val_number_decimal_token4] = ACTIONS(1932), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), + [anon_sym_DOT_DOT_LT] = ACTIONS(1953), + [aux_sym__val_number_decimal_token1] = ACTIONS(1955), + [aux_sym__val_number_decimal_token2] = ACTIONS(1957), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1934), + [sym_val_date] = ACTIONS(1961), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(518)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(2102), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1983), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1738), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(864), - [sym__unquoted_with_expr] = STATE(1088), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(536), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1216), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(469), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(874), + [sym__unquoted_with_expr] = STATE(1076), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(518), - [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(1922), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1947), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1924), + [anon_sym_DOT_DOT] = ACTIONS(1951), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), - [anon_sym_DOT_DOT_LT] = ACTIONS(1926), - [aux_sym__val_number_decimal_token1] = ACTIONS(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1930), - [aux_sym__val_number_decimal_token3] = ACTIONS(1932), - [aux_sym__val_number_decimal_token4] = ACTIONS(1932), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), + [anon_sym_DOT_DOT_LT] = ACTIONS(1953), + [aux_sym__val_number_decimal_token1] = ACTIONS(1955), + [aux_sym__val_number_decimal_token2] = ACTIONS(1957), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1934), + [sym_val_date] = ACTIONS(1961), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(519)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(2104), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1983), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1738), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(865), - [sym__unquoted_with_expr] = STATE(1090), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(537), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1079), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(469), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(875), + [sym__unquoted_with_expr] = STATE(1082), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(519), - [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(1922), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1947), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1924), + [anon_sym_DOT_DOT] = ACTIONS(1951), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), - [anon_sym_DOT_DOT_LT] = ACTIONS(1926), - [aux_sym__val_number_decimal_token1] = ACTIONS(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1930), - [aux_sym__val_number_decimal_token3] = ACTIONS(1932), - [aux_sym__val_number_decimal_token4] = ACTIONS(1932), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), + [anon_sym_DOT_DOT_LT] = ACTIONS(1953), + [aux_sym__val_number_decimal_token1] = ACTIONS(1955), + [aux_sym__val_number_decimal_token2] = ACTIONS(1957), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1934), + [sym_val_date] = ACTIONS(1961), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(520)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1255), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(942), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(438), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(807), - [sym__unquoted_with_expr] = STATE(1009), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(538), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1179), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(469), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(876), + [sym__unquoted_with_expr] = STATE(1095), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(520), - [anon_sym_true] = ACTIONS(1938), - [anon_sym_false] = ACTIONS(1938), - [anon_sym_null] = ACTIONS(1940), - [aux_sym_cmd_identifier_token3] = ACTIONS(1942), - [aux_sym_cmd_identifier_token4] = ACTIONS(1942), - [aux_sym_cmd_identifier_token5] = ACTIONS(1942), - [sym__newline] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1947), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1944), + [anon_sym_DOT_DOT] = ACTIONS(1951), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), - [anon_sym_DOT_DOT_LT] = ACTIONS(1946), - [aux_sym__val_number_decimal_token1] = ACTIONS(1948), - [aux_sym__val_number_decimal_token2] = ACTIONS(1950), - [aux_sym__val_number_decimal_token3] = ACTIONS(1952), - [aux_sym__val_number_decimal_token4] = ACTIONS(1952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), + [anon_sym_DOT_DOT_LT] = ACTIONS(1953), + [aux_sym__val_number_decimal_token1] = ACTIONS(1955), + [aux_sym__val_number_decimal_token2] = ACTIONS(1957), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1954), + [sym_val_date] = ACTIONS(1961), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(521)] = { - [aux_sym__repeat_newline] = STATE(666), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1093), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(942), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(438), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(782), - [sym__unquoted_with_expr] = STATE(1109), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(539), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1191), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(469), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(877), + [sym__unquoted_with_expr] = STATE(1098), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(521), - [anon_sym_true] = ACTIONS(1938), - [anon_sym_false] = ACTIONS(1938), - [anon_sym_null] = ACTIONS(1940), - [aux_sym_cmd_identifier_token3] = ACTIONS(1942), - [aux_sym_cmd_identifier_token4] = ACTIONS(1942), - [aux_sym_cmd_identifier_token5] = ACTIONS(1942), - [sym__newline] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1947), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1944), + [anon_sym_DOT_DOT] = ACTIONS(1951), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), - [anon_sym_DOT_DOT_LT] = ACTIONS(1946), - [aux_sym__val_number_decimal_token1] = ACTIONS(1948), - [aux_sym__val_number_decimal_token2] = ACTIONS(1950), - [aux_sym__val_number_decimal_token3] = ACTIONS(1952), - [aux_sym__val_number_decimal_token4] = ACTIONS(1952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), + [anon_sym_DOT_DOT_LT] = ACTIONS(1953), + [aux_sym__val_number_decimal_token1] = ACTIONS(1955), + [aux_sym__val_number_decimal_token2] = ACTIONS(1957), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1954), + [sym_val_date] = ACTIONS(1961), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(522)] = { - [aux_sym__repeat_newline] = STATE(673), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1248), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(942), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(438), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(783), - [sym__unquoted_with_expr] = STATE(1111), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(540), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1197), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(469), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(880), + [sym__unquoted_with_expr] = STATE(1103), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(522), - [anon_sym_true] = ACTIONS(1938), - [anon_sym_false] = ACTIONS(1938), - [anon_sym_null] = ACTIONS(1940), - [aux_sym_cmd_identifier_token3] = ACTIONS(1942), - [aux_sym_cmd_identifier_token4] = ACTIONS(1942), - [aux_sym_cmd_identifier_token5] = ACTIONS(1942), - [sym__newline] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1947), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1944), + [anon_sym_DOT_DOT] = ACTIONS(1951), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), - [anon_sym_DOT_DOT_LT] = ACTIONS(1946), - [aux_sym__val_number_decimal_token1] = ACTIONS(1948), - [aux_sym__val_number_decimal_token2] = ACTIONS(1950), - [aux_sym__val_number_decimal_token3] = ACTIONS(1952), - [aux_sym__val_number_decimal_token4] = ACTIONS(1952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), + [anon_sym_DOT_DOT_LT] = ACTIONS(1953), + [aux_sym__val_number_decimal_token1] = ACTIONS(1955), + [aux_sym__val_number_decimal_token2] = ACTIONS(1957), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1954), + [sym_val_date] = ACTIONS(1961), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(523)] = { - [aux_sym__repeat_newline] = STATE(520), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1250), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(942), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(438), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(785), - [sym__unquoted_with_expr] = STATE(1113), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(541), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1217), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(469), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(882), + [sym__unquoted_with_expr] = STATE(1114), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(523), - [anon_sym_true] = ACTIONS(1938), - [anon_sym_false] = ACTIONS(1938), - [anon_sym_null] = ACTIONS(1940), - [aux_sym_cmd_identifier_token3] = ACTIONS(1942), - [aux_sym_cmd_identifier_token4] = ACTIONS(1942), - [aux_sym_cmd_identifier_token5] = ACTIONS(1942), - [sym__newline] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1947), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1944), + [anon_sym_DOT_DOT] = ACTIONS(1951), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), - [anon_sym_DOT_DOT_LT] = ACTIONS(1946), - [aux_sym__val_number_decimal_token1] = ACTIONS(1948), - [aux_sym__val_number_decimal_token2] = ACTIONS(1950), - [aux_sym__val_number_decimal_token3] = ACTIONS(1952), - [aux_sym__val_number_decimal_token4] = ACTIONS(1952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), + [anon_sym_DOT_DOT_LT] = ACTIONS(1953), + [aux_sym__val_number_decimal_token1] = ACTIONS(1955), + [aux_sym__val_number_decimal_token2] = ACTIONS(1957), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1954), + [sym_val_date] = ACTIONS(1961), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(524)] = { - [aux_sym__repeat_newline] = STATE(609), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1173), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(942), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(438), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(775), - [sym__unquoted_with_expr] = STATE(1037), - [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(524), - [anon_sym_true] = ACTIONS(1938), - [anon_sym_false] = ACTIONS(1938), - [anon_sym_null] = ACTIONS(1940), - [aux_sym_cmd_identifier_token3] = ACTIONS(1942), - [aux_sym_cmd_identifier_token4] = ACTIONS(1942), - [aux_sym_cmd_identifier_token5] = ACTIONS(1942), - [sym__newline] = ACTIONS(1922), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1944), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), - [anon_sym_DOT_DOT_LT] = ACTIONS(1946), - [aux_sym__val_number_decimal_token1] = ACTIONS(1948), - [aux_sym__val_number_decimal_token2] = ACTIONS(1950), - [aux_sym__val_number_decimal_token3] = ACTIONS(1952), - [aux_sym__val_number_decimal_token4] = ACTIONS(1952), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1954), - [anon_sym_DQUOTE] = 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(1936), + [ts_builtin_sym_end] = ACTIONS(1790), + [anon_sym_in] = ACTIONS(1790), + [sym__newline] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym_PIPE] = ACTIONS(1790), + [anon_sym_err_GT_PIPE] = ACTIONS(1790), + [anon_sym_out_GT_PIPE] = ACTIONS(1790), + [anon_sym_e_GT_PIPE] = ACTIONS(1790), + [anon_sym_o_GT_PIPE] = ACTIONS(1790), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1790), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1790), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1790), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1790), + [anon_sym_GT2] = ACTIONS(1792), + [anon_sym_DASH2] = ACTIONS(1790), + [anon_sym_STAR2] = ACTIONS(1792), + [anon_sym_and2] = ACTIONS(1790), + [anon_sym_xor2] = ACTIONS(1790), + [anon_sym_or2] = ACTIONS(1790), + [anon_sym_not_DASHin2] = ACTIONS(1790), + [anon_sym_has2] = ACTIONS(1790), + [anon_sym_not_DASHhas2] = ACTIONS(1790), + [anon_sym_starts_DASHwith2] = ACTIONS(1790), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1790), + [anon_sym_ends_DASHwith2] = ACTIONS(1790), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1790), + [anon_sym_EQ_EQ2] = ACTIONS(1790), + [anon_sym_BANG_EQ2] = ACTIONS(1790), + [anon_sym_LT2] = ACTIONS(1792), + [anon_sym_LT_EQ2] = ACTIONS(1790), + [anon_sym_GT_EQ2] = ACTIONS(1790), + [anon_sym_EQ_TILDE2] = ACTIONS(1790), + [anon_sym_BANG_TILDE2] = ACTIONS(1790), + [anon_sym_like2] = ACTIONS(1790), + [anon_sym_not_DASHlike2] = ACTIONS(1790), + [anon_sym_LPAREN2] = ACTIONS(1790), + [anon_sym_STAR_STAR2] = ACTIONS(1790), + [anon_sym_PLUS_PLUS2] = ACTIONS(1790), + [anon_sym_SLASH2] = ACTIONS(1792), + [anon_sym_mod2] = ACTIONS(1790), + [anon_sym_SLASH_SLASH2] = ACTIONS(1790), + [anon_sym_PLUS2] = ACTIONS(1792), + [anon_sym_bit_DASHshl2] = ACTIONS(1790), + [anon_sym_bit_DASHshr2] = ACTIONS(1790), + [anon_sym_bit_DASHand2] = ACTIONS(1790), + [anon_sym_bit_DASHxor2] = ACTIONS(1790), + [anon_sym_bit_DASHor2] = ACTIONS(1790), + [anon_sym_DOT_DOT2] = ACTIONS(1792), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1790), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1790), + [aux_sym__immediate_decimal_token5] = ACTIONS(1901), + [anon_sym_err_GT] = ACTIONS(1792), + [anon_sym_out_GT] = ACTIONS(1792), + [anon_sym_e_GT] = ACTIONS(1792), + [anon_sym_o_GT] = ACTIONS(1792), + [anon_sym_err_PLUSout_GT] = ACTIONS(1792), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1792), + [anon_sym_o_PLUSe_GT] = ACTIONS(1792), + [anon_sym_e_PLUSo_GT] = ACTIONS(1792), + [anon_sym_err_GT_GT] = ACTIONS(1790), + [anon_sym_out_GT_GT] = ACTIONS(1790), + [anon_sym_e_GT_GT] = ACTIONS(1790), + [anon_sym_o_GT_GT] = ACTIONS(1790), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1790), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1790), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1790), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1790), + [sym__unquoted_pattern] = ACTIONS(1792), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(525)] = { - [aux_sym__repeat_newline] = STATE(610), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1177), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(942), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(438), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(776), - [sym__unquoted_with_expr] = STATE(1054), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_path] = STATE(715), [sym_comment] = STATE(525), - [anon_sym_true] = ACTIONS(1938), - [anon_sym_false] = ACTIONS(1938), - [anon_sym_null] = ACTIONS(1940), - [aux_sym_cmd_identifier_token3] = ACTIONS(1942), - [aux_sym_cmd_identifier_token4] = ACTIONS(1942), - [aux_sym_cmd_identifier_token5] = ACTIONS(1942), - [sym__newline] = ACTIONS(1922), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1944), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), - [anon_sym_DOT_DOT_LT] = ACTIONS(1946), - [aux_sym__val_number_decimal_token1] = ACTIONS(1948), - [aux_sym__val_number_decimal_token2] = ACTIONS(1950), - [aux_sym__val_number_decimal_token3] = ACTIONS(1952), - [aux_sym__val_number_decimal_token4] = ACTIONS(1952), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1954), - [anon_sym_DQUOTE] = 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(1936), + [aux_sym__where_predicate_lhs_repeat1] = STATE(525), + [ts_builtin_sym_end] = ACTIONS(1534), + [anon_sym_in] = ACTIONS(1534), + [sym__newline] = ACTIONS(1534), + [anon_sym_SEMI] = ACTIONS(1534), + [anon_sym_PIPE] = ACTIONS(1534), + [anon_sym_err_GT_PIPE] = ACTIONS(1534), + [anon_sym_out_GT_PIPE] = ACTIONS(1534), + [anon_sym_e_GT_PIPE] = ACTIONS(1534), + [anon_sym_o_GT_PIPE] = ACTIONS(1534), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1534), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1534), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1534), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1534), + [anon_sym_GT2] = ACTIONS(1532), + [anon_sym_DASH2] = ACTIONS(1534), + [anon_sym_STAR2] = ACTIONS(1532), + [anon_sym_and2] = ACTIONS(1534), + [anon_sym_xor2] = ACTIONS(1534), + [anon_sym_or2] = ACTIONS(1534), + [anon_sym_not_DASHin2] = ACTIONS(1534), + [anon_sym_has2] = ACTIONS(1534), + [anon_sym_not_DASHhas2] = ACTIONS(1534), + [anon_sym_starts_DASHwith2] = ACTIONS(1534), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1534), + [anon_sym_ends_DASHwith2] = ACTIONS(1534), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1534), + [anon_sym_EQ_EQ2] = ACTIONS(1534), + [anon_sym_BANG_EQ2] = ACTIONS(1534), + [anon_sym_LT2] = ACTIONS(1532), + [anon_sym_LT_EQ2] = ACTIONS(1534), + [anon_sym_GT_EQ2] = ACTIONS(1534), + [anon_sym_EQ_TILDE2] = ACTIONS(1534), + [anon_sym_BANG_TILDE2] = ACTIONS(1534), + [anon_sym_like2] = ACTIONS(1534), + [anon_sym_not_DASHlike2] = ACTIONS(1534), + [anon_sym_STAR_STAR2] = ACTIONS(1534), + [anon_sym_PLUS_PLUS2] = ACTIONS(1534), + [anon_sym_SLASH2] = ACTIONS(1532), + [anon_sym_mod2] = ACTIONS(1534), + [anon_sym_SLASH_SLASH2] = ACTIONS(1534), + [anon_sym_PLUS2] = ACTIONS(1532), + [anon_sym_bit_DASHshl2] = ACTIONS(1534), + [anon_sym_bit_DASHshr2] = ACTIONS(1534), + [anon_sym_bit_DASHand2] = ACTIONS(1534), + [anon_sym_bit_DASHxor2] = ACTIONS(1534), + [anon_sym_bit_DASHor2] = ACTIONS(1534), + [anon_sym_DOT_DOT2] = ACTIONS(1532), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1534), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1534), + [anon_sym_DOT2] = ACTIONS(1963), + [anon_sym_err_GT] = ACTIONS(1532), + [anon_sym_out_GT] = ACTIONS(1532), + [anon_sym_e_GT] = ACTIONS(1532), + [anon_sym_o_GT] = ACTIONS(1532), + [anon_sym_err_PLUSout_GT] = ACTIONS(1532), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1532), + [anon_sym_o_PLUSe_GT] = ACTIONS(1532), + [anon_sym_e_PLUSo_GT] = ACTIONS(1532), + [anon_sym_err_GT_GT] = ACTIONS(1534), + [anon_sym_out_GT_GT] = ACTIONS(1534), + [anon_sym_e_GT_GT] = ACTIONS(1534), + [anon_sym_o_GT_GT] = ACTIONS(1534), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1534), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1534), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1534), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1534), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(526)] = { + [sym_path] = STATE(715), [sym_comment] = STATE(526), - [anon_sym_in] = ACTIONS(1956), - [sym__newline] = ACTIONS(1956), - [anon_sym_SEMI] = ACTIONS(1956), - [anon_sym_PIPE] = ACTIONS(1956), - [anon_sym_err_GT_PIPE] = ACTIONS(1956), - [anon_sym_out_GT_PIPE] = ACTIONS(1956), - [anon_sym_e_GT_PIPE] = ACTIONS(1956), - [anon_sym_o_GT_PIPE] = ACTIONS(1956), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1956), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1956), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1956), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1956), - [anon_sym_RPAREN] = ACTIONS(1956), - [anon_sym_GT2] = ACTIONS(1958), - [anon_sym_DASH2] = ACTIONS(1956), - [anon_sym_RBRACE] = ACTIONS(1956), - [anon_sym_STAR2] = ACTIONS(1958), - [anon_sym_and2] = ACTIONS(1956), - [anon_sym_xor2] = ACTIONS(1956), - [anon_sym_or2] = ACTIONS(1956), - [anon_sym_not_DASHin2] = ACTIONS(1956), - [anon_sym_has2] = ACTIONS(1956), - [anon_sym_not_DASHhas2] = ACTIONS(1956), - [anon_sym_starts_DASHwith2] = ACTIONS(1956), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1956), - [anon_sym_ends_DASHwith2] = ACTIONS(1956), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1956), - [anon_sym_EQ_EQ2] = ACTIONS(1956), - [anon_sym_BANG_EQ2] = ACTIONS(1956), - [anon_sym_LT2] = ACTIONS(1958), - [anon_sym_LT_EQ2] = ACTIONS(1956), - [anon_sym_GT_EQ2] = ACTIONS(1956), - [anon_sym_EQ_TILDE2] = ACTIONS(1956), - [anon_sym_BANG_TILDE2] = ACTIONS(1956), - [anon_sym_like2] = ACTIONS(1956), - [anon_sym_not_DASHlike2] = ACTIONS(1956), - [anon_sym_LPAREN2] = ACTIONS(1960), - [anon_sym_STAR_STAR2] = ACTIONS(1956), - [anon_sym_PLUS_PLUS2] = ACTIONS(1956), - [anon_sym_SLASH2] = ACTIONS(1958), - [anon_sym_mod2] = ACTIONS(1956), - [anon_sym_SLASH_SLASH2] = ACTIONS(1956), - [anon_sym_PLUS2] = ACTIONS(1958), - [anon_sym_bit_DASHshl2] = ACTIONS(1956), - [anon_sym_bit_DASHshr2] = ACTIONS(1956), - [anon_sym_bit_DASHand2] = ACTIONS(1956), - [anon_sym_bit_DASHxor2] = ACTIONS(1956), - [anon_sym_bit_DASHor2] = ACTIONS(1956), - [anon_sym_DOT_DOT2] = ACTIONS(1962), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1964), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1964), - [anon_sym_err_GT] = ACTIONS(1958), - [anon_sym_out_GT] = ACTIONS(1958), - [anon_sym_e_GT] = ACTIONS(1958), - [anon_sym_o_GT] = ACTIONS(1958), - [anon_sym_err_PLUSout_GT] = ACTIONS(1958), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1958), - [anon_sym_o_PLUSe_GT] = ACTIONS(1958), - [anon_sym_e_PLUSo_GT] = ACTIONS(1958), - [anon_sym_err_GT_GT] = ACTIONS(1956), - [anon_sym_out_GT_GT] = ACTIONS(1956), - [anon_sym_e_GT_GT] = ACTIONS(1956), - [anon_sym_o_GT_GT] = ACTIONS(1956), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1956), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1956), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1956), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1956), - [sym__unquoted_pattern] = ACTIONS(1635), + [aux_sym__where_predicate_lhs_repeat1] = STATE(525), + [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(1869), + [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(527)] = { - [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(527), [anon_sym_else] = ACTIONS(1966), [anon_sym_catch] = ACTIONS(1966), + [anon_sym_finally] = ACTIONS(1966), [anon_sym_in] = ACTIONS(1966), - [sym__newline] = ACTIONS(1968), + [sym__newline] = ACTIONS(1966), [anon_sym_SEMI] = ACTIONS(1966), [anon_sym_PIPE] = ACTIONS(1966), [anon_sym_err_GT_PIPE] = ACTIONS(1966), @@ -88790,10 +89645,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(1966), [anon_sym_LBRACK] = ACTIONS(1966), [anon_sym_RPAREN] = ACTIONS(1966), - [anon_sym_GT2] = ACTIONS(1971), + [anon_sym_GT2] = ACTIONS(1968), [anon_sym_DASH2] = ACTIONS(1966), [anon_sym_LBRACE] = ACTIONS(1966), - [anon_sym_STAR2] = ACTIONS(1971), + [anon_sym_STAR2] = ACTIONS(1968), [anon_sym_and2] = ACTIONS(1966), [anon_sym_xor2] = ACTIONS(1966), [anon_sym_or2] = ACTIONS(1966), @@ -88806,7 +89661,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1966), [anon_sym_EQ_EQ2] = ACTIONS(1966), [anon_sym_BANG_EQ2] = ACTIONS(1966), - [anon_sym_LT2] = ACTIONS(1971), + [anon_sym_LT2] = ACTIONS(1968), [anon_sym_LT_EQ2] = ACTIONS(1966), [anon_sym_GT_EQ2] = ACTIONS(1966), [anon_sym_EQ_TILDE2] = ACTIONS(1966), @@ -88815,23 +89670,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_DASHlike2] = ACTIONS(1966), [anon_sym_STAR_STAR2] = ACTIONS(1966), [anon_sym_PLUS_PLUS2] = ACTIONS(1966), - [anon_sym_SLASH2] = ACTIONS(1971), + [anon_sym_SLASH2] = ACTIONS(1968), [anon_sym_mod2] = ACTIONS(1966), [anon_sym_SLASH_SLASH2] = ACTIONS(1966), - [anon_sym_PLUS2] = ACTIONS(1971), + [anon_sym_PLUS2] = ACTIONS(1968), [anon_sym_bit_DASHshl2] = ACTIONS(1966), [anon_sym_bit_DASHshr2] = ACTIONS(1966), [anon_sym_bit_DASHand2] = ACTIONS(1966), [anon_sym_bit_DASHxor2] = ACTIONS(1966), [anon_sym_bit_DASHor2] = ACTIONS(1966), - [anon_sym_err_GT] = ACTIONS(1971), - [anon_sym_out_GT] = ACTIONS(1971), - [anon_sym_e_GT] = ACTIONS(1971), - [anon_sym_o_GT] = ACTIONS(1971), - [anon_sym_err_PLUSout_GT] = ACTIONS(1971), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1971), - [anon_sym_o_PLUSe_GT] = ACTIONS(1971), - [anon_sym_e_PLUSo_GT] = ACTIONS(1971), + [anon_sym_err_GT] = ACTIONS(1968), + [anon_sym_out_GT] = ACTIONS(1968), + [anon_sym_e_GT] = ACTIONS(1968), + [anon_sym_o_GT] = ACTIONS(1968), + [anon_sym_err_PLUSout_GT] = ACTIONS(1968), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1968), + [anon_sym_o_PLUSe_GT] = ACTIONS(1968), + [anon_sym_e_PLUSo_GT] = ACTIONS(1968), [anon_sym_err_GT_GT] = ACTIONS(1966), [anon_sym_out_GT_GT] = ACTIONS(1966), [anon_sym_e_GT_GT] = ACTIONS(1966), @@ -88844,12869 +89699,13579 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(528)] = { [sym_comment] = STATE(528), - [anon_sym_in] = ACTIONS(1973), - [sym__newline] = ACTIONS(1973), - [anon_sym_SEMI] = ACTIONS(1973), - [anon_sym_PIPE] = ACTIONS(1973), - [anon_sym_err_GT_PIPE] = ACTIONS(1973), - [anon_sym_out_GT_PIPE] = ACTIONS(1973), - [anon_sym_e_GT_PIPE] = ACTIONS(1973), - [anon_sym_o_GT_PIPE] = ACTIONS(1973), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1973), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1973), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1973), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1973), - [anon_sym_RPAREN] = ACTIONS(1973), - [anon_sym_GT2] = ACTIONS(1975), - [anon_sym_DASH2] = ACTIONS(1973), - [anon_sym_RBRACE] = ACTIONS(1973), - [anon_sym_STAR2] = ACTIONS(1975), - [anon_sym_and2] = ACTIONS(1973), - [anon_sym_xor2] = ACTIONS(1973), - [anon_sym_or2] = ACTIONS(1973), - [anon_sym_not_DASHin2] = ACTIONS(1973), - [anon_sym_has2] = ACTIONS(1973), - [anon_sym_not_DASHhas2] = ACTIONS(1973), - [anon_sym_starts_DASHwith2] = ACTIONS(1973), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1973), - [anon_sym_ends_DASHwith2] = ACTIONS(1973), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1973), - [anon_sym_EQ_EQ2] = ACTIONS(1973), - [anon_sym_BANG_EQ2] = ACTIONS(1973), - [anon_sym_LT2] = ACTIONS(1975), - [anon_sym_LT_EQ2] = ACTIONS(1973), - [anon_sym_GT_EQ2] = ACTIONS(1973), - [anon_sym_EQ_TILDE2] = ACTIONS(1973), - [anon_sym_BANG_TILDE2] = ACTIONS(1973), - [anon_sym_like2] = ACTIONS(1973), - [anon_sym_not_DASHlike2] = ACTIONS(1973), - [anon_sym_LPAREN2] = ACTIONS(1977), - [anon_sym_STAR_STAR2] = ACTIONS(1973), - [anon_sym_PLUS_PLUS2] = ACTIONS(1973), - [anon_sym_SLASH2] = ACTIONS(1975), - [anon_sym_mod2] = ACTIONS(1973), - [anon_sym_SLASH_SLASH2] = ACTIONS(1973), - [anon_sym_PLUS2] = ACTIONS(1975), - [anon_sym_bit_DASHshl2] = ACTIONS(1973), - [anon_sym_bit_DASHshr2] = ACTIONS(1973), - [anon_sym_bit_DASHand2] = ACTIONS(1973), - [anon_sym_bit_DASHxor2] = ACTIONS(1973), - [anon_sym_bit_DASHor2] = ACTIONS(1973), - [anon_sym_DOT_DOT2] = ACTIONS(1979), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1981), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1981), - [anon_sym_err_GT] = ACTIONS(1975), - [anon_sym_out_GT] = ACTIONS(1975), - [anon_sym_e_GT] = ACTIONS(1975), - [anon_sym_o_GT] = ACTIONS(1975), - [anon_sym_err_PLUSout_GT] = ACTIONS(1975), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1975), - [anon_sym_o_PLUSe_GT] = ACTIONS(1975), - [anon_sym_e_PLUSo_GT] = ACTIONS(1975), - [anon_sym_err_GT_GT] = ACTIONS(1973), - [anon_sym_out_GT_GT] = ACTIONS(1973), - [anon_sym_e_GT_GT] = ACTIONS(1973), - [anon_sym_o_GT_GT] = ACTIONS(1973), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1973), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1973), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1973), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1973), - [sym__unquoted_pattern] = ACTIONS(1983), + [ts_builtin_sym_end] = 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_COLON] = ACTIONS(1462), + [anon_sym_GT2] = ACTIONS(1460), + [anon_sym_DASH2] = ACTIONS(1462), + [anon_sym_STAR2] = ACTIONS(1460), + [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(1460), + [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(1460), + [anon_sym_mod2] = ACTIONS(1462), + [anon_sym_SLASH_SLASH2] = ACTIONS(1462), + [anon_sym_PLUS2] = ACTIONS(1460), + [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(1460), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1462), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1462), + [anon_sym_QMARK2] = ACTIONS(1970), + [anon_sym_DOT2] = ACTIONS(1460), + [anon_sym_err_GT] = ACTIONS(1460), + [anon_sym_out_GT] = ACTIONS(1460), + [anon_sym_e_GT] = ACTIONS(1460), + [anon_sym_o_GT] = ACTIONS(1460), + [anon_sym_err_PLUSout_GT] = ACTIONS(1460), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1460), + [anon_sym_o_PLUSe_GT] = ACTIONS(1460), + [anon_sym_e_PLUSo_GT] = ACTIONS(1460), + [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(3), }, [STATE(529)] = { - [sym_cmd_identifier] = STATE(4276), - [sym_expr_parenthesized] = STATE(5339), - [sym__spread_parenthesized] = STATE(4883), - [sym__spread_variable] = STATE(4892), - [sym_val_variable] = STATE(4345), - [sym_val_number] = STATE(5339), - [sym__val_number_decimal] = STATE(1984), - [sym__val_number] = STATE(707), - [sym_val_string] = STATE(5339), - [sym__raw_str] = STATE(2266), - [sym__str_double_quotes] = STATE(2266), - [sym__str_single_quotes] = STATE(2266), - [sym__str_back_ticks] = STATE(2266), - [sym_val_interpolated] = STATE(5339), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym__spread_record] = STATE(4883), - [sym_record_entry] = STATE(4701), - [sym__record_key] = STATE(5341), + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1273), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(469), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(740), + [sym__unquoted_with_expr] = STATE(1015), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(529), - [aux_sym__types_body_repeat1] = STATE(1516), - [aux_sym__match_pattern_record_body_repeat1] = STATE(838), - [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(1782), - [anon_sym_false] = ACTIONS(1782), - [anon_sym_null] = ACTIONS(1782), - [aux_sym_cmd_identifier_token3] = ACTIONS(1784), - [aux_sym_cmd_identifier_token4] = ACTIONS(1784), - [aux_sym_cmd_identifier_token5] = ACTIONS(1784), - [sym__newline] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1788), - [anon_sym_DOLLAR] = ACTIONS(1836), - [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(1794), - [aux_sym__val_number_decimal_token2] = ACTIONS(1796), - [aux_sym__val_number_decimal_token3] = ACTIONS(1798), - [aux_sym__val_number_decimal_token4] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1947), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [sym__newline] = ACTIONS(1929), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1951), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), + [anon_sym_DOT_DOT_LT] = ACTIONS(1953), + [aux_sym__val_number_decimal_token1] = ACTIONS(1955), + [aux_sym__val_number_decimal_token2] = ACTIONS(1957), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), [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(1800), - [anon_sym_SQUOTE] = ACTIONS(1802), - [anon_sym_BQUOTE] = ACTIONS(1804), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1961), + [anon_sym_DQUOTE] = 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(1943), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1806), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(530)] = { - [sym_expr_parenthesized] = STATE(4132), - [sym__spread_parenthesized] = STATE(4915), - [sym_val_range] = STATE(4939), - [sym__val_range] = STATE(4693), - [sym__value] = STATE(4939), - [sym_val_nothing] = STATE(4538), - [sym_val_bool] = STATE(4320), - [sym__spread_variable] = STATE(4943), - [sym_val_variable] = STATE(3965), - [sym_val_cellpath] = STATE(4538), - [sym_val_number] = STATE(4538), - [sym__val_number_decimal] = STATE(3621), - [sym__val_number] = STATE(4386), - [sym_val_duration] = STATE(4538), - [sym_val_filesize] = STATE(4538), - [sym_val_binary] = STATE(4538), - [sym_val_string] = STATE(4538), - [sym__raw_str] = STATE(3665), - [sym__str_double_quotes] = STATE(3665), - [sym__str_single_quotes] = STATE(3665), - [sym__str_back_ticks] = STATE(3665), - [sym_val_interpolated] = STATE(4538), - [sym__inter_single_quotes] = STATE(4680), - [sym__inter_double_quotes] = STATE(4683), - [sym_val_list] = STATE(4538), - [sym__spread_list] = STATE(4915), - [sym_val_entry] = STATE(4549), - [sym_val_record] = STATE(4538), - [sym_val_table] = STATE(4538), - [sym_val_closure] = STATE(4538), - [sym__unquoted_in_list] = STATE(4401), - [sym__unquoted_in_list_with_expr] = STATE(4939), - [sym__unquoted_anonymous_prefix] = STATE(4693), + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1151), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(469), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(741), + [sym__unquoted_with_expr] = STATE(1018), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(530), - [aux_sym_list_body_repeat1] = STATE(532), - [anon_sym_true] = ACTIONS(1468), - [anon_sym_false] = ACTIONS(1468), - [anon_sym_null] = ACTIONS(1470), - [aux_sym_cmd_identifier_token3] = ACTIONS(1472), - [aux_sym_cmd_identifier_token4] = ACTIONS(1472), - [aux_sym_cmd_identifier_token5] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1588), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1482), - [anon_sym_DOT_DOT] = ACTIONS(1484), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1486), - [anon_sym_DOT_DOT_LT] = ACTIONS(1486), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1488), - [aux_sym__val_number_decimal_token2] = ACTIONS(1490), - [aux_sym__val_number_decimal_token3] = ACTIONS(1492), - [aux_sym__val_number_decimal_token4] = ACTIONS(1492), - [aux_sym__val_number_token1] = ACTIONS(1414), - [aux_sym__val_number_token2] = ACTIONS(1414), - [aux_sym__val_number_token3] = ACTIONS(1414), - [anon_sym_0b] = ACTIONS(1416), - [anon_sym_0o] = ACTIONS(1418), - [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1494), - [anon_sym_DQUOTE] = ACTIONS(1422), - [anon_sym_SQUOTE] = ACTIONS(1424), - [anon_sym_BQUOTE] = ACTIONS(1426), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1428), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1430), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1432), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1947), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [sym__newline] = ACTIONS(1929), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1951), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), + [anon_sym_DOT_DOT_LT] = ACTIONS(1953), + [aux_sym__val_number_decimal_token1] = ACTIONS(1955), + [aux_sym__val_number_decimal_token2] = ACTIONS(1957), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1961), + [anon_sym_DQUOTE] = 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(1943), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1436), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(531)] = { - [aux_sym__repeat_newline] = STATE(612), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1251), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(942), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(438), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(786), - [sym__unquoted_with_expr] = STATE(1118), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1188), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(469), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(742), + [sym__unquoted_with_expr] = STATE(1024), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(531), - [anon_sym_true] = ACTIONS(1938), - [anon_sym_false] = ACTIONS(1938), - [anon_sym_null] = ACTIONS(1940), - [aux_sym_cmd_identifier_token3] = ACTIONS(1942), - [aux_sym_cmd_identifier_token4] = ACTIONS(1942), - [aux_sym_cmd_identifier_token5] = ACTIONS(1942), - [sym__newline] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1947), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1944), + [anon_sym_DOT_DOT] = ACTIONS(1951), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), - [anon_sym_DOT_DOT_LT] = ACTIONS(1946), - [aux_sym__val_number_decimal_token1] = ACTIONS(1948), - [aux_sym__val_number_decimal_token2] = ACTIONS(1950), - [aux_sym__val_number_decimal_token3] = ACTIONS(1952), - [aux_sym__val_number_decimal_token4] = ACTIONS(1952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), + [anon_sym_DOT_DOT_LT] = ACTIONS(1953), + [aux_sym__val_number_decimal_token1] = ACTIONS(1955), + [aux_sym__val_number_decimal_token2] = ACTIONS(1957), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1954), + [sym_val_date] = ACTIONS(1961), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(532)] = { - [sym_expr_parenthesized] = STATE(4132), - [sym__spread_parenthesized] = STATE(4915), - [sym_val_range] = STATE(4939), - [sym__val_range] = STATE(4693), - [sym__value] = STATE(4939), - [sym_val_nothing] = STATE(4538), - [sym_val_bool] = STATE(4320), - [sym__spread_variable] = STATE(4943), - [sym_val_variable] = STATE(3965), - [sym_val_cellpath] = STATE(4538), - [sym_val_number] = STATE(4538), - [sym__val_number_decimal] = STATE(3621), - [sym__val_number] = STATE(4386), - [sym_val_duration] = STATE(4538), - [sym_val_filesize] = STATE(4538), - [sym_val_binary] = STATE(4538), - [sym_val_string] = STATE(4538), - [sym__raw_str] = STATE(3665), - [sym__str_double_quotes] = STATE(3665), - [sym__str_single_quotes] = STATE(3665), - [sym__str_back_ticks] = STATE(3665), - [sym_val_interpolated] = STATE(4538), - [sym__inter_single_quotes] = STATE(4680), - [sym__inter_double_quotes] = STATE(4683), - [sym_val_list] = STATE(4538), - [sym__spread_list] = STATE(4915), - [sym_val_entry] = STATE(4830), - [sym_val_record] = STATE(4538), - [sym_val_table] = STATE(4538), - [sym_val_closure] = STATE(4538), - [sym__unquoted_in_list] = STATE(4401), - [sym__unquoted_in_list_with_expr] = STATE(4939), - [sym__unquoted_anonymous_prefix] = STATE(4693), + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1237), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(469), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(744), + [sym__unquoted_with_expr] = STATE(1027), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(532), - [aux_sym_list_body_repeat1] = STATE(532), - [anon_sym_true] = ACTIONS(1985), - [anon_sym_false] = ACTIONS(1985), - [anon_sym_null] = ACTIONS(1988), - [aux_sym_cmd_identifier_token3] = ACTIONS(1991), - [aux_sym_cmd_identifier_token4] = ACTIONS(1991), - [aux_sym_cmd_identifier_token5] = ACTIONS(1991), - [anon_sym_LBRACK] = ACTIONS(1994), - [anon_sym_LPAREN] = ACTIONS(1997), - [anon_sym_DOLLAR] = ACTIONS(2000), - [anon_sym_LBRACE] = ACTIONS(2003), - [anon_sym_DOT_DOT] = ACTIONS(2006), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2009), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2012), - [anon_sym_DOT_DOT_LT] = ACTIONS(2012), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2015), - [aux_sym__val_number_decimal_token1] = ACTIONS(2018), - [aux_sym__val_number_decimal_token2] = ACTIONS(2021), - [aux_sym__val_number_decimal_token3] = ACTIONS(2024), - [aux_sym__val_number_decimal_token4] = ACTIONS(2024), - [aux_sym__val_number_token1] = ACTIONS(2027), - [aux_sym__val_number_token2] = ACTIONS(2027), - [aux_sym__val_number_token3] = ACTIONS(2027), - [anon_sym_0b] = ACTIONS(2030), - [anon_sym_0o] = ACTIONS(2033), - [anon_sym_0x] = ACTIONS(2033), - [sym_val_date] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2039), - [anon_sym_SQUOTE] = ACTIONS(2042), - [anon_sym_BQUOTE] = ACTIONS(2045), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2048), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2051), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2054), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2057), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2060), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1947), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [sym__newline] = ACTIONS(1929), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1951), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), + [anon_sym_DOT_DOT_LT] = ACTIONS(1953), + [aux_sym__val_number_decimal_token1] = ACTIONS(1955), + [aux_sym__val_number_decimal_token2] = ACTIONS(1957), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1961), + [anon_sym_DQUOTE] = 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(1943), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(533)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1194), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(942), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(438), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(853), - [sym__unquoted_with_expr] = STATE(1060), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1269), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(469), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(745), + [sym__unquoted_with_expr] = STATE(1032), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(533), - [anon_sym_true] = ACTIONS(1938), - [anon_sym_false] = ACTIONS(1938), - [anon_sym_null] = ACTIONS(1940), - [aux_sym_cmd_identifier_token3] = ACTIONS(1942), - [aux_sym_cmd_identifier_token4] = ACTIONS(1942), - [aux_sym_cmd_identifier_token5] = ACTIONS(1942), - [sym__newline] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1947), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1944), + [anon_sym_DOT_DOT] = ACTIONS(1951), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), - [anon_sym_DOT_DOT_LT] = ACTIONS(1946), - [aux_sym__val_number_decimal_token1] = ACTIONS(1948), - [aux_sym__val_number_decimal_token2] = ACTIONS(1950), - [aux_sym__val_number_decimal_token3] = ACTIONS(1952), - [aux_sym__val_number_decimal_token4] = ACTIONS(1952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), + [anon_sym_DOT_DOT_LT] = ACTIONS(1953), + [aux_sym__val_number_decimal_token1] = ACTIONS(1955), + [aux_sym__val_number_decimal_token2] = ACTIONS(1957), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1954), + [sym_val_date] = ACTIONS(1961), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(534)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1199), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(942), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(438), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(854), - [sym__unquoted_with_expr] = STATE(1063), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1146), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(469), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(733), + [sym__unquoted_with_expr] = STATE(1049), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(534), - [anon_sym_true] = ACTIONS(1938), - [anon_sym_false] = ACTIONS(1938), - [anon_sym_null] = ACTIONS(1940), - [aux_sym_cmd_identifier_token3] = ACTIONS(1942), - [aux_sym_cmd_identifier_token4] = ACTIONS(1942), - [aux_sym_cmd_identifier_token5] = ACTIONS(1942), - [sym__newline] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1947), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1944), + [anon_sym_DOT_DOT] = ACTIONS(1951), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), - [anon_sym_DOT_DOT_LT] = ACTIONS(1946), - [aux_sym__val_number_decimal_token1] = ACTIONS(1948), - [aux_sym__val_number_decimal_token2] = ACTIONS(1950), - [aux_sym__val_number_decimal_token3] = ACTIONS(1952), - [aux_sym__val_number_decimal_token4] = ACTIONS(1952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), + [anon_sym_DOT_DOT_LT] = ACTIONS(1953), + [aux_sym__val_number_decimal_token1] = ACTIONS(1955), + [aux_sym__val_number_decimal_token2] = ACTIONS(1957), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1954), + [sym_val_date] = ACTIONS(1961), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(535)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1202), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(942), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(438), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(855), - [sym__unquoted_with_expr] = STATE(1065), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1210), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(469), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(748), + [sym__unquoted_with_expr] = STATE(1052), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(535), - [anon_sym_true] = ACTIONS(1938), - [anon_sym_false] = ACTIONS(1938), - [anon_sym_null] = ACTIONS(1940), - [aux_sym_cmd_identifier_token3] = ACTIONS(1942), - [aux_sym_cmd_identifier_token4] = ACTIONS(1942), - [aux_sym_cmd_identifier_token5] = ACTIONS(1942), - [sym__newline] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1947), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1944), + [anon_sym_DOT_DOT] = ACTIONS(1951), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), - [anon_sym_DOT_DOT_LT] = ACTIONS(1946), - [aux_sym__val_number_decimal_token1] = ACTIONS(1948), - [aux_sym__val_number_decimal_token2] = ACTIONS(1950), - [aux_sym__val_number_decimal_token3] = ACTIONS(1952), - [aux_sym__val_number_decimal_token4] = ACTIONS(1952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), + [anon_sym_DOT_DOT_LT] = ACTIONS(1953), + [aux_sym__val_number_decimal_token1] = ACTIONS(1955), + [aux_sym__val_number_decimal_token2] = ACTIONS(1957), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1954), + [sym_val_date] = ACTIONS(1961), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(536)] = { - [aux_sym__repeat_newline] = STATE(613), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1254), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(942), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(438), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(787), - [sym__unquoted_with_expr] = STATE(1122), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1218), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(469), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(749), + [sym__unquoted_with_expr] = STATE(1054), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(536), - [anon_sym_true] = ACTIONS(1938), - [anon_sym_false] = ACTIONS(1938), - [anon_sym_null] = ACTIONS(1940), - [aux_sym_cmd_identifier_token3] = ACTIONS(1942), - [aux_sym_cmd_identifier_token4] = ACTIONS(1942), - [aux_sym_cmd_identifier_token5] = ACTIONS(1942), - [sym__newline] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1947), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1944), + [anon_sym_DOT_DOT] = ACTIONS(1951), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), - [anon_sym_DOT_DOT_LT] = ACTIONS(1946), - [aux_sym__val_number_decimal_token1] = ACTIONS(1948), - [aux_sym__val_number_decimal_token2] = ACTIONS(1950), - [aux_sym__val_number_decimal_token3] = ACTIONS(1952), - [aux_sym__val_number_decimal_token4] = ACTIONS(1952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), + [anon_sym_DOT_DOT_LT] = ACTIONS(1953), + [aux_sym__val_number_decimal_token1] = ACTIONS(1955), + [aux_sym__val_number_decimal_token2] = ACTIONS(1957), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1954), + [sym_val_date] = ACTIONS(1961), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(537)] = { - [aux_sym__repeat_newline] = STATE(607), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1159), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(942), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(438), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(772), - [sym__unquoted_with_expr] = STATE(1020), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1057), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(469), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(750), + [sym__unquoted_with_expr] = STATE(1060), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(537), - [anon_sym_true] = ACTIONS(1938), - [anon_sym_false] = ACTIONS(1938), - [anon_sym_null] = ACTIONS(1940), - [aux_sym_cmd_identifier_token3] = ACTIONS(1942), - [aux_sym_cmd_identifier_token4] = ACTIONS(1942), - [aux_sym_cmd_identifier_token5] = ACTIONS(1942), - [sym__newline] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1947), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1944), + [anon_sym_DOT_DOT] = ACTIONS(1951), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), - [anon_sym_DOT_DOT_LT] = ACTIONS(1946), - [aux_sym__val_number_decimal_token1] = ACTIONS(1948), - [aux_sym__val_number_decimal_token2] = ACTIONS(1950), - [aux_sym__val_number_decimal_token3] = ACTIONS(1952), - [aux_sym__val_number_decimal_token4] = ACTIONS(1952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), + [anon_sym_DOT_DOT_LT] = ACTIONS(1953), + [aux_sym__val_number_decimal_token1] = ACTIONS(1955), + [aux_sym__val_number_decimal_token2] = ACTIONS(1957), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1954), + [sym_val_date] = ACTIONS(1961), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(538)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1204), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(942), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(438), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(856), - [sym__unquoted_with_expr] = STATE(1067), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1250), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(469), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(752), + [sym__unquoted_with_expr] = STATE(1064), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(538), - [anon_sym_true] = ACTIONS(1938), - [anon_sym_false] = ACTIONS(1938), - [anon_sym_null] = ACTIONS(1940), - [aux_sym_cmd_identifier_token3] = ACTIONS(1942), - [aux_sym_cmd_identifier_token4] = ACTIONS(1942), - [aux_sym_cmd_identifier_token5] = ACTIONS(1942), - [sym__newline] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1947), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1944), + [anon_sym_DOT_DOT] = ACTIONS(1951), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), - [anon_sym_DOT_DOT_LT] = ACTIONS(1946), - [aux_sym__val_number_decimal_token1] = ACTIONS(1948), - [aux_sym__val_number_decimal_token2] = ACTIONS(1950), - [aux_sym__val_number_decimal_token3] = ACTIONS(1952), - [aux_sym__val_number_decimal_token4] = ACTIONS(1952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), + [anon_sym_DOT_DOT_LT] = ACTIONS(1953), + [aux_sym__val_number_decimal_token1] = ACTIONS(1955), + [aux_sym__val_number_decimal_token2] = ACTIONS(1957), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1954), + [sym_val_date] = ACTIONS(1961), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(539)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1207), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(942), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(438), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(857), - [sym__unquoted_with_expr] = STATE(1069), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1260), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(469), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(753), + [sym__unquoted_with_expr] = STATE(1067), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(539), - [anon_sym_true] = ACTIONS(1938), - [anon_sym_false] = ACTIONS(1938), - [anon_sym_null] = ACTIONS(1940), - [aux_sym_cmd_identifier_token3] = ACTIONS(1942), - [aux_sym_cmd_identifier_token4] = ACTIONS(1942), - [aux_sym_cmd_identifier_token5] = ACTIONS(1942), - [sym__newline] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1947), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1944), + [anon_sym_DOT_DOT] = ACTIONS(1951), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), - [anon_sym_DOT_DOT_LT] = ACTIONS(1946), - [aux_sym__val_number_decimal_token1] = ACTIONS(1948), - [aux_sym__val_number_decimal_token2] = ACTIONS(1950), - [aux_sym__val_number_decimal_token3] = ACTIONS(1952), - [aux_sym__val_number_decimal_token4] = ACTIONS(1952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), + [anon_sym_DOT_DOT_LT] = ACTIONS(1953), + [aux_sym__val_number_decimal_token1] = ACTIONS(1955), + [aux_sym__val_number_decimal_token2] = ACTIONS(1957), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1954), + [sym_val_date] = ACTIONS(1961), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(540)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1209), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(942), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(438), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(858), - [sym__unquoted_with_expr] = STATE(1072), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1267), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(469), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(754), + [sym__unquoted_with_expr] = STATE(1070), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(540), - [anon_sym_true] = ACTIONS(1938), - [anon_sym_false] = ACTIONS(1938), - [anon_sym_null] = ACTIONS(1940), - [aux_sym_cmd_identifier_token3] = ACTIONS(1942), - [aux_sym_cmd_identifier_token4] = ACTIONS(1942), - [aux_sym_cmd_identifier_token5] = ACTIONS(1942), - [sym__newline] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1947), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1944), + [anon_sym_DOT_DOT] = ACTIONS(1951), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), - [anon_sym_DOT_DOT_LT] = ACTIONS(1946), - [aux_sym__val_number_decimal_token1] = ACTIONS(1948), - [aux_sym__val_number_decimal_token2] = ACTIONS(1950), - [aux_sym__val_number_decimal_token3] = ACTIONS(1952), - [aux_sym__val_number_decimal_token4] = ACTIONS(1952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), + [anon_sym_DOT_DOT_LT] = ACTIONS(1953), + [aux_sym__val_number_decimal_token1] = ACTIONS(1955), + [aux_sym__val_number_decimal_token2] = ACTIONS(1957), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1954), + [sym_val_date] = ACTIONS(1961), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(541)] = { - [aux_sym__repeat_newline] = STATE(611), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1195), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(942), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(438), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(778), - [sym__unquoted_with_expr] = STATE(1057), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1215), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(469), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(755), + [sym__unquoted_with_expr] = STATE(1072), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(541), - [anon_sym_true] = ACTIONS(1938), - [anon_sym_false] = ACTIONS(1938), - [anon_sym_null] = ACTIONS(1940), - [aux_sym_cmd_identifier_token3] = ACTIONS(1942), - [aux_sym_cmd_identifier_token4] = ACTIONS(1942), - [aux_sym_cmd_identifier_token5] = ACTIONS(1942), - [sym__newline] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1947), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1944), + [anon_sym_DOT_DOT] = ACTIONS(1951), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), - [anon_sym_DOT_DOT_LT] = ACTIONS(1946), - [aux_sym__val_number_decimal_token1] = ACTIONS(1948), - [aux_sym__val_number_decimal_token2] = ACTIONS(1950), - [aux_sym__val_number_decimal_token3] = ACTIONS(1952), - [aux_sym__val_number_decimal_token4] = ACTIONS(1952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), + [anon_sym_DOT_DOT_LT] = ACTIONS(1953), + [aux_sym__val_number_decimal_token1] = ACTIONS(1955), + [aux_sym__val_number_decimal_token2] = ACTIONS(1957), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1954), + [sym_val_date] = ACTIONS(1961), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(542)] = { - [aux_sym__repeat_newline] = STATE(556), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1568), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1479), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1410), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(772), - [sym__unquoted_with_expr] = STATE(1020), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(559), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1148), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(469), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(756), + [sym__unquoted_with_expr] = STATE(1077), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(542), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2065), - [aux_sym_cmd_identifier_token3] = ACTIONS(2067), - [aux_sym_cmd_identifier_token4] = ACTIONS(2067), - [aux_sym_cmd_identifier_token5] = ACTIONS(2067), - [sym__newline] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1947), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2069), + [anon_sym_DOT_DOT] = ACTIONS(1951), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), - [anon_sym_DOT_DOT_LT] = ACTIONS(2071), - [aux_sym__val_number_decimal_token1] = ACTIONS(2073), - [aux_sym__val_number_decimal_token2] = ACTIONS(2075), - [aux_sym__val_number_decimal_token3] = ACTIONS(2077), - [aux_sym__val_number_decimal_token4] = ACTIONS(2077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), + [anon_sym_DOT_DOT_LT] = ACTIONS(1953), + [aux_sym__val_number_decimal_token1] = ACTIONS(1955), + [aux_sym__val_number_decimal_token2] = ACTIONS(1957), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2079), + [sym_val_date] = ACTIONS(1961), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(543)] = { - [aux_sym__repeat_newline] = STATE(557), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1569), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1479), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1410), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(774), - [sym__unquoted_with_expr] = STATE(1032), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(560), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1152), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(469), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(757), + [sym__unquoted_with_expr] = STATE(1080), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(543), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2065), - [aux_sym_cmd_identifier_token3] = ACTIONS(2067), - [aux_sym_cmd_identifier_token4] = ACTIONS(2067), - [aux_sym_cmd_identifier_token5] = ACTIONS(2067), - [sym__newline] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1947), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2069), + [anon_sym_DOT_DOT] = ACTIONS(1951), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), - [anon_sym_DOT_DOT_LT] = ACTIONS(2071), - [aux_sym__val_number_decimal_token1] = ACTIONS(2073), - [aux_sym__val_number_decimal_token2] = ACTIONS(2075), - [aux_sym__val_number_decimal_token3] = ACTIONS(2077), - [aux_sym__val_number_decimal_token4] = ACTIONS(2077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), + [anon_sym_DOT_DOT_LT] = ACTIONS(1953), + [aux_sym__val_number_decimal_token1] = ACTIONS(1955), + [aux_sym__val_number_decimal_token2] = ACTIONS(1957), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2079), + [sym_val_date] = ACTIONS(1961), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(544)] = { - [aux_sym__repeat_newline] = STATE(558), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1570), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1479), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1410), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(775), - [sym__unquoted_with_expr] = STATE(1037), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(561), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1156), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(469), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(759), + [sym__unquoted_with_expr] = STATE(1083), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(544), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2065), - [aux_sym_cmd_identifier_token3] = ACTIONS(2067), - [aux_sym_cmd_identifier_token4] = ACTIONS(2067), - [aux_sym_cmd_identifier_token5] = ACTIONS(2067), - [sym__newline] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1947), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2069), + [anon_sym_DOT_DOT] = ACTIONS(1951), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), - [anon_sym_DOT_DOT_LT] = ACTIONS(2071), - [aux_sym__val_number_decimal_token1] = ACTIONS(2073), - [aux_sym__val_number_decimal_token2] = ACTIONS(2075), - [aux_sym__val_number_decimal_token3] = ACTIONS(2077), - [aux_sym__val_number_decimal_token4] = ACTIONS(2077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), + [anon_sym_DOT_DOT_LT] = ACTIONS(1953), + [aux_sym__val_number_decimal_token1] = ACTIONS(1955), + [aux_sym__val_number_decimal_token2] = ACTIONS(1957), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2079), + [sym_val_date] = ACTIONS(1961), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(545)] = { - [aux_sym__repeat_newline] = STATE(559), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1571), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1479), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1410), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(776), - [sym__unquoted_with_expr] = STATE(1054), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(562), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1174), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(469), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(760), + [sym__unquoted_with_expr] = STATE(1094), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(545), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2065), - [aux_sym_cmd_identifier_token3] = ACTIONS(2067), - [aux_sym_cmd_identifier_token4] = ACTIONS(2067), - [aux_sym_cmd_identifier_token5] = ACTIONS(2067), - [sym__newline] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1947), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2069), + [anon_sym_DOT_DOT] = ACTIONS(1951), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), - [anon_sym_DOT_DOT_LT] = ACTIONS(2071), - [aux_sym__val_number_decimal_token1] = ACTIONS(2073), - [aux_sym__val_number_decimal_token2] = ACTIONS(2075), - [aux_sym__val_number_decimal_token3] = ACTIONS(2077), - [aux_sym__val_number_decimal_token4] = ACTIONS(2077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), + [anon_sym_DOT_DOT_LT] = ACTIONS(1953), + [aux_sym__val_number_decimal_token1] = ACTIONS(1955), + [aux_sym__val_number_decimal_token2] = ACTIONS(1957), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2079), + [sym_val_date] = ACTIONS(1961), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(546)] = { - [aux_sym__repeat_newline] = STATE(560), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1572), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1479), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1410), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(778), - [sym__unquoted_with_expr] = STATE(1057), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(563), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1186), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(469), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(762), + [sym__unquoted_with_expr] = STATE(1096), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(546), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2065), - [aux_sym_cmd_identifier_token3] = ACTIONS(2067), - [aux_sym_cmd_identifier_token4] = ACTIONS(2067), - [aux_sym_cmd_identifier_token5] = ACTIONS(2067), - [sym__newline] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1947), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2069), + [anon_sym_DOT_DOT] = ACTIONS(1951), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), - [anon_sym_DOT_DOT_LT] = ACTIONS(2071), - [aux_sym__val_number_decimal_token1] = ACTIONS(2073), - [aux_sym__val_number_decimal_token2] = ACTIONS(2075), - [aux_sym__val_number_decimal_token3] = ACTIONS(2077), - [aux_sym__val_number_decimal_token4] = ACTIONS(2077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), + [anon_sym_DOT_DOT_LT] = ACTIONS(1953), + [aux_sym__val_number_decimal_token1] = ACTIONS(1955), + [aux_sym__val_number_decimal_token2] = ACTIONS(1957), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2079), + [sym_val_date] = ACTIONS(1961), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(547)] = { - [aux_sym__repeat_newline] = STATE(561), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1573), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1479), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1410), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(779), - [sym__unquoted_with_expr] = STATE(1059), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(564), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1190), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(469), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(763), + [sym__unquoted_with_expr] = STATE(1097), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(547), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2065), - [aux_sym_cmd_identifier_token3] = ACTIONS(2067), - [aux_sym_cmd_identifier_token4] = ACTIONS(2067), - [aux_sym_cmd_identifier_token5] = ACTIONS(2067), - [sym__newline] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1947), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2069), + [anon_sym_DOT_DOT] = ACTIONS(1951), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), - [anon_sym_DOT_DOT_LT] = ACTIONS(2071), - [aux_sym__val_number_decimal_token1] = ACTIONS(2073), - [aux_sym__val_number_decimal_token2] = ACTIONS(2075), - [aux_sym__val_number_decimal_token3] = ACTIONS(2077), - [aux_sym__val_number_decimal_token4] = ACTIONS(2077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), + [anon_sym_DOT_DOT_LT] = ACTIONS(1953), + [aux_sym__val_number_decimal_token1] = ACTIONS(1955), + [aux_sym__val_number_decimal_token2] = ACTIONS(1957), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2079), + [sym_val_date] = ACTIONS(1961), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(548)] = { - [aux_sym__repeat_newline] = STATE(562), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1574), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1479), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1410), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(780), - [sym__unquoted_with_expr] = STATE(1071), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(565), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1242), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(469), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(787), + [sym__unquoted_with_expr] = STATE(987), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(548), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2065), - [aux_sym_cmd_identifier_token3] = ACTIONS(2067), - [aux_sym_cmd_identifier_token4] = ACTIONS(2067), - [aux_sym_cmd_identifier_token5] = ACTIONS(2067), - [sym__newline] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1947), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2069), + [anon_sym_DOT_DOT] = ACTIONS(1951), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), - [anon_sym_DOT_DOT_LT] = ACTIONS(2071), - [aux_sym__val_number_decimal_token1] = ACTIONS(2073), - [aux_sym__val_number_decimal_token2] = ACTIONS(2075), - [aux_sym__val_number_decimal_token3] = ACTIONS(2077), - [aux_sym__val_number_decimal_token4] = ACTIONS(2077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), + [anon_sym_DOT_DOT_LT] = ACTIONS(1953), + [aux_sym__val_number_decimal_token1] = ACTIONS(1955), + [aux_sym__val_number_decimal_token2] = ACTIONS(1957), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2079), + [sym_val_date] = ACTIONS(1961), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(549)] = { - [aux_sym__repeat_newline] = STATE(563), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1575), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1479), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1410), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(781), - [sym__unquoted_with_expr] = STATE(1092), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(579), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1198), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(469), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(789), + [sym__unquoted_with_expr] = STATE(1139), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(549), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2065), - [aux_sym_cmd_identifier_token3] = ACTIONS(2067), - [aux_sym_cmd_identifier_token4] = ACTIONS(2067), - [aux_sym_cmd_identifier_token5] = ACTIONS(2067), - [sym__newline] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1947), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2069), + [anon_sym_DOT_DOT] = ACTIONS(1951), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), - [anon_sym_DOT_DOT_LT] = ACTIONS(2071), - [aux_sym__val_number_decimal_token1] = ACTIONS(2073), - [aux_sym__val_number_decimal_token2] = ACTIONS(2075), - [aux_sym__val_number_decimal_token3] = ACTIONS(2077), - [aux_sym__val_number_decimal_token4] = ACTIONS(2077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), + [anon_sym_DOT_DOT_LT] = ACTIONS(1953), + [aux_sym__val_number_decimal_token1] = ACTIONS(1955), + [aux_sym__val_number_decimal_token2] = ACTIONS(1957), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2079), + [sym_val_date] = ACTIONS(1961), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(550)] = { - [aux_sym__repeat_newline] = STATE(564), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1093), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1479), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1410), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(782), - [sym__unquoted_with_expr] = STATE(1109), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(606), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1009), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(469), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(810), + [sym__unquoted_with_expr] = STATE(1011), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(550), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2065), - [aux_sym_cmd_identifier_token3] = ACTIONS(2067), - [aux_sym_cmd_identifier_token4] = ACTIONS(2067), - [aux_sym_cmd_identifier_token5] = ACTIONS(2067), - [sym__newline] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1947), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2069), + [anon_sym_DOT_DOT] = ACTIONS(1951), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), - [anon_sym_DOT_DOT_LT] = ACTIONS(2071), - [aux_sym__val_number_decimal_token1] = ACTIONS(2073), - [aux_sym__val_number_decimal_token2] = ACTIONS(2075), - [aux_sym__val_number_decimal_token3] = ACTIONS(2077), - [aux_sym__val_number_decimal_token4] = ACTIONS(2077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), + [anon_sym_DOT_DOT_LT] = ACTIONS(1953), + [aux_sym__val_number_decimal_token1] = ACTIONS(1955), + [aux_sym__val_number_decimal_token2] = ACTIONS(1957), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2079), + [sym_val_date] = ACTIONS(1961), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(551)] = { - [aux_sym__repeat_newline] = STATE(565), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1576), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1479), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1410), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(783), - [sym__unquoted_with_expr] = STATE(1111), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(607), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1158), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(469), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(823), + [sym__unquoted_with_expr] = STATE(1019), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(551), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2065), - [aux_sym_cmd_identifier_token3] = ACTIONS(2067), - [aux_sym_cmd_identifier_token4] = ACTIONS(2067), - [aux_sym_cmd_identifier_token5] = ACTIONS(2067), - [sym__newline] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1947), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2069), + [anon_sym_DOT_DOT] = ACTIONS(1951), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), - [anon_sym_DOT_DOT_LT] = ACTIONS(2071), - [aux_sym__val_number_decimal_token1] = ACTIONS(2073), - [aux_sym__val_number_decimal_token2] = ACTIONS(2075), - [aux_sym__val_number_decimal_token3] = ACTIONS(2077), - [aux_sym__val_number_decimal_token4] = ACTIONS(2077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), + [anon_sym_DOT_DOT_LT] = ACTIONS(1953), + [aux_sym__val_number_decimal_token1] = ACTIONS(1955), + [aux_sym__val_number_decimal_token2] = ACTIONS(1957), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2079), + [sym_val_date] = ACTIONS(1961), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(552)] = { - [aux_sym__repeat_newline] = STATE(566), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1577), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1479), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1410), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(785), - [sym__unquoted_with_expr] = STATE(1113), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(621), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1177), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(469), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(825), + [sym__unquoted_with_expr] = STATE(1021), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(552), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2065), - [aux_sym_cmd_identifier_token3] = ACTIONS(2067), - [aux_sym_cmd_identifier_token4] = ACTIONS(2067), - [aux_sym_cmd_identifier_token5] = ACTIONS(2067), - [sym__newline] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1947), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2069), + [anon_sym_DOT_DOT] = ACTIONS(1951), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), - [anon_sym_DOT_DOT_LT] = ACTIONS(2071), - [aux_sym__val_number_decimal_token1] = ACTIONS(2073), - [aux_sym__val_number_decimal_token2] = ACTIONS(2075), - [aux_sym__val_number_decimal_token3] = ACTIONS(2077), - [aux_sym__val_number_decimal_token4] = ACTIONS(2077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), + [anon_sym_DOT_DOT_LT] = ACTIONS(1953), + [aux_sym__val_number_decimal_token1] = ACTIONS(1955), + [aux_sym__val_number_decimal_token2] = ACTIONS(1957), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2079), + [sym_val_date] = ACTIONS(1961), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(553)] = { - [aux_sym__repeat_newline] = STATE(567), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1578), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1479), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1410), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(786), - [sym__unquoted_with_expr] = STATE(1118), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(622), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1192), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(469), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(827), + [sym__unquoted_with_expr] = STATE(1023), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(553), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2065), - [aux_sym_cmd_identifier_token3] = ACTIONS(2067), - [aux_sym_cmd_identifier_token4] = ACTIONS(2067), - [aux_sym_cmd_identifier_token5] = ACTIONS(2067), - [sym__newline] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1947), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2069), + [anon_sym_DOT_DOT] = ACTIONS(1951), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), - [anon_sym_DOT_DOT_LT] = ACTIONS(2071), - [aux_sym__val_number_decimal_token1] = ACTIONS(2073), - [aux_sym__val_number_decimal_token2] = ACTIONS(2075), - [aux_sym__val_number_decimal_token3] = ACTIONS(2077), - [aux_sym__val_number_decimal_token4] = ACTIONS(2077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), + [anon_sym_DOT_DOT_LT] = ACTIONS(1953), + [aux_sym__val_number_decimal_token1] = ACTIONS(1955), + [aux_sym__val_number_decimal_token2] = ACTIONS(1957), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2079), + [sym_val_date] = ACTIONS(1961), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(554)] = { - [aux_sym__repeat_newline] = STATE(568), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1579), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1479), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1410), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(787), - [sym__unquoted_with_expr] = STATE(1122), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(623), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1208), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(469), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(829), + [sym__unquoted_with_expr] = STATE(1025), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(554), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2065), - [aux_sym_cmd_identifier_token3] = ACTIONS(2067), - [aux_sym_cmd_identifier_token4] = ACTIONS(2067), - [aux_sym_cmd_identifier_token5] = ACTIONS(2067), - [sym__newline] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1947), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2069), + [anon_sym_DOT_DOT] = ACTIONS(1951), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), - [anon_sym_DOT_DOT_LT] = ACTIONS(2071), - [aux_sym__val_number_decimal_token1] = ACTIONS(2073), - [aux_sym__val_number_decimal_token2] = ACTIONS(2075), - [aux_sym__val_number_decimal_token3] = ACTIONS(2077), - [aux_sym__val_number_decimal_token4] = ACTIONS(2077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), + [anon_sym_DOT_DOT_LT] = ACTIONS(1953), + [aux_sym__val_number_decimal_token1] = ACTIONS(1955), + [aux_sym__val_number_decimal_token2] = ACTIONS(1957), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2079), + [sym_val_date] = ACTIONS(1961), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(555)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1270), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(942), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(438), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(859), - [sym__unquoted_with_expr] = STATE(1075), - [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(555), - [anon_sym_true] = ACTIONS(1938), - [anon_sym_false] = ACTIONS(1938), - [anon_sym_null] = ACTIONS(1940), - [aux_sym_cmd_identifier_token3] = ACTIONS(1942), - [aux_sym_cmd_identifier_token4] = ACTIONS(1942), - [aux_sym_cmd_identifier_token5] = ACTIONS(1942), - [sym__newline] = ACTIONS(1922), + [anon_sym_in] = ACTIONS(1972), + [sym__newline] = ACTIONS(1972), + [anon_sym_SEMI] = ACTIONS(1972), + [anon_sym_PIPE] = ACTIONS(1972), + [anon_sym_err_GT_PIPE] = ACTIONS(1972), + [anon_sym_out_GT_PIPE] = ACTIONS(1972), + [anon_sym_e_GT_PIPE] = ACTIONS(1972), + [anon_sym_o_GT_PIPE] = ACTIONS(1972), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1972), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1972), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1972), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1972), + [anon_sym_RPAREN] = ACTIONS(1972), + [anon_sym_GT2] = ACTIONS(1974), + [anon_sym_DASH2] = ACTIONS(1972), + [anon_sym_RBRACE] = ACTIONS(1972), + [anon_sym_STAR2] = ACTIONS(1974), + [anon_sym_and2] = ACTIONS(1972), + [anon_sym_xor2] = ACTIONS(1972), + [anon_sym_or2] = ACTIONS(1972), + [anon_sym_not_DASHin2] = ACTIONS(1972), + [anon_sym_has2] = ACTIONS(1972), + [anon_sym_not_DASHhas2] = ACTIONS(1972), + [anon_sym_starts_DASHwith2] = ACTIONS(1972), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1972), + [anon_sym_ends_DASHwith2] = ACTIONS(1972), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1972), + [anon_sym_EQ_EQ2] = ACTIONS(1972), + [anon_sym_BANG_EQ2] = ACTIONS(1972), + [anon_sym_LT2] = ACTIONS(1974), + [anon_sym_LT_EQ2] = ACTIONS(1972), + [anon_sym_GT_EQ2] = ACTIONS(1972), + [anon_sym_EQ_TILDE2] = ACTIONS(1972), + [anon_sym_BANG_TILDE2] = ACTIONS(1972), + [anon_sym_like2] = ACTIONS(1972), + [anon_sym_not_DASHlike2] = ACTIONS(1972), + [anon_sym_LPAREN2] = ACTIONS(1976), + [anon_sym_STAR_STAR2] = ACTIONS(1972), + [anon_sym_PLUS_PLUS2] = ACTIONS(1972), + [anon_sym_SLASH2] = ACTIONS(1974), + [anon_sym_mod2] = ACTIONS(1972), + [anon_sym_SLASH_SLASH2] = ACTIONS(1972), + [anon_sym_PLUS2] = ACTIONS(1974), + [anon_sym_bit_DASHshl2] = ACTIONS(1972), + [anon_sym_bit_DASHshr2] = ACTIONS(1972), + [anon_sym_bit_DASHand2] = ACTIONS(1972), + [anon_sym_bit_DASHxor2] = ACTIONS(1972), + [anon_sym_bit_DASHor2] = ACTIONS(1972), + [anon_sym_DOT_DOT2] = ACTIONS(1978), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1980), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1980), + [anon_sym_err_GT] = ACTIONS(1974), + [anon_sym_out_GT] = ACTIONS(1974), + [anon_sym_e_GT] = ACTIONS(1974), + [anon_sym_o_GT] = ACTIONS(1974), + [anon_sym_err_PLUSout_GT] = ACTIONS(1974), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1974), + [anon_sym_o_PLUSe_GT] = ACTIONS(1974), + [anon_sym_e_PLUSo_GT] = ACTIONS(1974), + [anon_sym_err_GT_GT] = ACTIONS(1972), + [anon_sym_out_GT_GT] = ACTIONS(1972), + [anon_sym_e_GT_GT] = ACTIONS(1972), + [anon_sym_o_GT_GT] = ACTIONS(1972), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1972), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1972), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1972), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1972), + [sym__unquoted_pattern] = ACTIONS(1637), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(556)] = { + [sym_comment] = STATE(556), + [anon_sym_in] = ACTIONS(1982), + [sym__newline] = ACTIONS(1982), + [anon_sym_SEMI] = ACTIONS(1982), + [anon_sym_PIPE] = ACTIONS(1982), + [anon_sym_err_GT_PIPE] = ACTIONS(1982), + [anon_sym_out_GT_PIPE] = ACTIONS(1982), + [anon_sym_e_GT_PIPE] = ACTIONS(1982), + [anon_sym_o_GT_PIPE] = ACTIONS(1982), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1982), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1982), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1982), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1982), + [anon_sym_RPAREN] = ACTIONS(1982), + [anon_sym_GT2] = ACTIONS(1984), + [anon_sym_DASH2] = ACTIONS(1982), + [anon_sym_RBRACE] = ACTIONS(1982), + [anon_sym_STAR2] = ACTIONS(1984), + [anon_sym_and2] = ACTIONS(1982), + [anon_sym_xor2] = ACTIONS(1982), + [anon_sym_or2] = ACTIONS(1982), + [anon_sym_not_DASHin2] = ACTIONS(1982), + [anon_sym_has2] = ACTIONS(1982), + [anon_sym_not_DASHhas2] = ACTIONS(1982), + [anon_sym_starts_DASHwith2] = ACTIONS(1982), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1982), + [anon_sym_ends_DASHwith2] = ACTIONS(1982), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1982), + [anon_sym_EQ_EQ2] = ACTIONS(1982), + [anon_sym_BANG_EQ2] = ACTIONS(1982), + [anon_sym_LT2] = ACTIONS(1984), + [anon_sym_LT_EQ2] = ACTIONS(1982), + [anon_sym_GT_EQ2] = ACTIONS(1982), + [anon_sym_EQ_TILDE2] = ACTIONS(1982), + [anon_sym_BANG_TILDE2] = ACTIONS(1982), + [anon_sym_like2] = ACTIONS(1982), + [anon_sym_not_DASHlike2] = ACTIONS(1982), + [anon_sym_LPAREN2] = ACTIONS(1986), + [anon_sym_STAR_STAR2] = ACTIONS(1982), + [anon_sym_PLUS_PLUS2] = ACTIONS(1982), + [anon_sym_SLASH2] = ACTIONS(1984), + [anon_sym_mod2] = ACTIONS(1982), + [anon_sym_SLASH_SLASH2] = ACTIONS(1982), + [anon_sym_PLUS2] = ACTIONS(1984), + [anon_sym_bit_DASHshl2] = ACTIONS(1982), + [anon_sym_bit_DASHshr2] = ACTIONS(1982), + [anon_sym_bit_DASHand2] = ACTIONS(1982), + [anon_sym_bit_DASHxor2] = ACTIONS(1982), + [anon_sym_bit_DASHor2] = ACTIONS(1982), + [anon_sym_DOT_DOT2] = ACTIONS(1988), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1990), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1990), + [anon_sym_err_GT] = ACTIONS(1984), + [anon_sym_out_GT] = ACTIONS(1984), + [anon_sym_e_GT] = ACTIONS(1984), + [anon_sym_o_GT] = ACTIONS(1984), + [anon_sym_err_PLUSout_GT] = ACTIONS(1984), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1984), + [anon_sym_o_PLUSe_GT] = ACTIONS(1984), + [anon_sym_e_PLUSo_GT] = ACTIONS(1984), + [anon_sym_err_GT_GT] = ACTIONS(1982), + [anon_sym_out_GT_GT] = ACTIONS(1982), + [anon_sym_e_GT_GT] = ACTIONS(1982), + [anon_sym_o_GT_GT] = ACTIONS(1982), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1982), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1982), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1982), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1982), + [sym__unquoted_pattern] = ACTIONS(1992), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(557)] = { + [sym_comment] = STATE(557), + [ts_builtin_sym_end] = ACTIONS(1846), + [anon_sym_in] = ACTIONS(1846), + [sym__newline] = ACTIONS(1846), + [anon_sym_SEMI] = ACTIONS(1846), + [anon_sym_PIPE] = ACTIONS(1846), + [anon_sym_err_GT_PIPE] = ACTIONS(1846), + [anon_sym_out_GT_PIPE] = ACTIONS(1846), + [anon_sym_e_GT_PIPE] = ACTIONS(1846), + [anon_sym_o_GT_PIPE] = ACTIONS(1846), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1846), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1846), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1846), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1846), + [anon_sym_GT2] = ACTIONS(1848), + [anon_sym_DASH2] = ACTIONS(1846), + [anon_sym_STAR2] = ACTIONS(1848), + [anon_sym_and2] = ACTIONS(1846), + [anon_sym_xor2] = ACTIONS(1846), + [anon_sym_or2] = ACTIONS(1846), + [anon_sym_not_DASHin2] = ACTIONS(1846), + [anon_sym_has2] = ACTIONS(1846), + [anon_sym_not_DASHhas2] = ACTIONS(1846), + [anon_sym_starts_DASHwith2] = ACTIONS(1846), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1846), + [anon_sym_ends_DASHwith2] = ACTIONS(1846), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1846), + [anon_sym_EQ_EQ2] = ACTIONS(1846), + [anon_sym_BANG_EQ2] = ACTIONS(1846), + [anon_sym_LT2] = ACTIONS(1848), + [anon_sym_LT_EQ2] = ACTIONS(1846), + [anon_sym_GT_EQ2] = ACTIONS(1846), + [anon_sym_EQ_TILDE2] = ACTIONS(1846), + [anon_sym_BANG_TILDE2] = ACTIONS(1846), + [anon_sym_like2] = ACTIONS(1846), + [anon_sym_not_DASHlike2] = ACTIONS(1846), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_STAR_STAR2] = ACTIONS(1846), + [anon_sym_PLUS_PLUS2] = ACTIONS(1846), + [anon_sym_SLASH2] = ACTIONS(1848), + [anon_sym_mod2] = ACTIONS(1846), + [anon_sym_SLASH_SLASH2] = ACTIONS(1846), + [anon_sym_PLUS2] = ACTIONS(1848), + [anon_sym_bit_DASHshl2] = ACTIONS(1846), + [anon_sym_bit_DASHshr2] = ACTIONS(1846), + [anon_sym_bit_DASHand2] = ACTIONS(1846), + [anon_sym_bit_DASHxor2] = ACTIONS(1846), + [anon_sym_bit_DASHor2] = ACTIONS(1846), + [anon_sym_DOT_DOT2] = ACTIONS(1848), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1846), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1846), + [aux_sym__immediate_decimal_token5] = ACTIONS(1994), + [anon_sym_err_GT] = ACTIONS(1848), + [anon_sym_out_GT] = ACTIONS(1848), + [anon_sym_e_GT] = ACTIONS(1848), + [anon_sym_o_GT] = ACTIONS(1848), + [anon_sym_err_PLUSout_GT] = ACTIONS(1848), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1848), + [anon_sym_o_PLUSe_GT] = ACTIONS(1848), + [anon_sym_e_PLUSo_GT] = ACTIONS(1848), + [anon_sym_err_GT_GT] = ACTIONS(1846), + [anon_sym_out_GT_GT] = ACTIONS(1846), + [anon_sym_e_GT_GT] = ACTIONS(1846), + [anon_sym_o_GT_GT] = ACTIONS(1846), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1846), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1846), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1846), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1846), + [sym__unquoted_pattern] = ACTIONS(1848), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(558)] = { + [sym_expr_parenthesized] = STATE(4280), + [sym__spread_parenthesized] = STATE(4959), + [sym_val_range] = STATE(4961), + [sym__val_range] = STATE(4729), + [sym__value] = STATE(4961), + [sym_val_nothing] = STATE(4862), + [sym_val_bool] = STATE(4431), + [sym__spread_variable] = STATE(4968), + [sym_val_variable] = STATE(4050), + [sym_val_cellpath] = STATE(4862), + [sym_val_number] = STATE(4862), + [sym__val_number_decimal] = STATE(3653), + [sym__val_number] = STATE(4628), + [sym_val_duration] = STATE(4862), + [sym_val_filesize] = STATE(4862), + [sym_val_binary] = STATE(4862), + [sym_val_string] = STATE(4862), + [sym__raw_str] = STATE(3725), + [sym__str_double_quotes] = STATE(3725), + [sym__str_single_quotes] = STATE(3725), + [sym__str_back_ticks] = STATE(3725), + [sym_val_interpolated] = STATE(4862), + [sym__inter_single_quotes] = STATE(4846), + [sym__inter_double_quotes] = STATE(4847), + [sym_val_list] = STATE(4862), + [sym__spread_list] = STATE(4959), + [sym_val_entry] = STATE(4824), + [sym_val_record] = STATE(4862), + [sym_val_table] = STATE(4862), + [sym_val_closure] = STATE(4862), + [sym__unquoted_in_list] = STATE(4479), + [sym__unquoted_in_list_with_expr] = STATE(4961), + [sym__unquoted_anonymous_prefix] = STATE(4729), + [sym_comment] = STATE(558), + [aux_sym_list_body_repeat1] = STATE(676), + [anon_sym_true] = ACTIONS(1472), + [anon_sym_false] = ACTIONS(1472), + [anon_sym_null] = ACTIONS(1474), + [aux_sym_cmd_identifier_token3] = ACTIONS(1476), + [aux_sym_cmd_identifier_token4] = ACTIONS(1476), + [aux_sym_cmd_identifier_token5] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1588), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_DOT_DOT] = ACTIONS(1488), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1490), + [anon_sym_DOT_DOT_LT] = ACTIONS(1490), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1492), + [aux_sym__val_number_decimal_token2] = ACTIONS(1494), + [aux_sym__val_number_decimal_token3] = ACTIONS(1496), + [aux_sym__val_number_decimal_token4] = ACTIONS(1496), + [aux_sym__val_number_token1] = ACTIONS(1414), + [aux_sym__val_number_token2] = ACTIONS(1414), + [aux_sym__val_number_token3] = ACTIONS(1414), + [anon_sym_0b] = ACTIONS(1416), + [anon_sym_0o] = ACTIONS(1418), + [anon_sym_0x] = ACTIONS(1418), + [sym_val_date] = ACTIONS(1498), + [anon_sym_DQUOTE] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_BQUOTE] = ACTIONS(1426), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1428), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1430), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1432), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1436), + }, + [STATE(559)] = { + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1145), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(469), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(886), + [sym__unquoted_with_expr] = STATE(1084), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(559), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1947), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1944), + [anon_sym_DOT_DOT] = ACTIONS(1951), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), - [anon_sym_DOT_DOT_LT] = ACTIONS(1946), - [aux_sym__val_number_decimal_token1] = ACTIONS(1948), - [aux_sym__val_number_decimal_token2] = ACTIONS(1950), - [aux_sym__val_number_decimal_token3] = ACTIONS(1952), - [aux_sym__val_number_decimal_token4] = ACTIONS(1952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), + [anon_sym_DOT_DOT_LT] = ACTIONS(1953), + [aux_sym__val_number_decimal_token1] = ACTIONS(1955), + [aux_sym__val_number_decimal_token2] = ACTIONS(1957), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1954), + [sym_val_date] = ACTIONS(1961), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(556)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1581), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1479), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1410), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(795), - [sym__unquoted_with_expr] = STATE(984), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [sym_comment] = STATE(556), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2065), - [aux_sym_cmd_identifier_token3] = ACTIONS(2067), - [aux_sym_cmd_identifier_token4] = ACTIONS(2067), - [aux_sym_cmd_identifier_token5] = ACTIONS(2067), - [sym__newline] = ACTIONS(1922), + [STATE(560)] = { + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1163), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(469), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(887), + [sym__unquoted_with_expr] = STATE(1086), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(560), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1947), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2069), + [anon_sym_DOT_DOT] = ACTIONS(1951), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), - [anon_sym_DOT_DOT_LT] = ACTIONS(2071), - [aux_sym__val_number_decimal_token1] = ACTIONS(2073), - [aux_sym__val_number_decimal_token2] = ACTIONS(2075), - [aux_sym__val_number_decimal_token3] = ACTIONS(2077), - [aux_sym__val_number_decimal_token4] = ACTIONS(2077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), + [anon_sym_DOT_DOT_LT] = ACTIONS(1953), + [aux_sym__val_number_decimal_token1] = ACTIONS(1955), + [aux_sym__val_number_decimal_token2] = ACTIONS(1957), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2079), + [sym_val_date] = ACTIONS(1961), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(557)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1583), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1479), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1410), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(797), - [sym__unquoted_with_expr] = STATE(986), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [sym_comment] = STATE(557), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2065), - [aux_sym_cmd_identifier_token3] = ACTIONS(2067), - [aux_sym_cmd_identifier_token4] = ACTIONS(2067), - [aux_sym_cmd_identifier_token5] = ACTIONS(2067), - [sym__newline] = ACTIONS(1922), + [STATE(561)] = { + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1168), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(469), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(888), + [sym__unquoted_with_expr] = STATE(1088), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(561), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1947), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2069), + [anon_sym_DOT_DOT] = ACTIONS(1951), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), - [anon_sym_DOT_DOT_LT] = ACTIONS(2071), - [aux_sym__val_number_decimal_token1] = ACTIONS(2073), - [aux_sym__val_number_decimal_token2] = ACTIONS(2075), - [aux_sym__val_number_decimal_token3] = ACTIONS(2077), - [aux_sym__val_number_decimal_token4] = ACTIONS(2077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), + [anon_sym_DOT_DOT_LT] = ACTIONS(1953), + [aux_sym__val_number_decimal_token1] = ACTIONS(1955), + [aux_sym__val_number_decimal_token2] = ACTIONS(1957), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2079), + [sym_val_date] = ACTIONS(1961), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(558)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1585), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1479), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1410), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(798), - [sym__unquoted_with_expr] = STATE(988), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [sym_comment] = STATE(558), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2065), - [aux_sym_cmd_identifier_token3] = ACTIONS(2067), - [aux_sym_cmd_identifier_token4] = ACTIONS(2067), - [aux_sym_cmd_identifier_token5] = ACTIONS(2067), - [sym__newline] = ACTIONS(1922), + [STATE(562)] = { + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1173), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(469), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(889), + [sym__unquoted_with_expr] = STATE(1090), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(562), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1947), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2069), + [anon_sym_DOT_DOT] = ACTIONS(1951), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), - [anon_sym_DOT_DOT_LT] = ACTIONS(2071), - [aux_sym__val_number_decimal_token1] = ACTIONS(2073), - [aux_sym__val_number_decimal_token2] = ACTIONS(2075), - [aux_sym__val_number_decimal_token3] = ACTIONS(2077), - [aux_sym__val_number_decimal_token4] = ACTIONS(2077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), + [anon_sym_DOT_DOT_LT] = ACTIONS(1953), + [aux_sym__val_number_decimal_token1] = ACTIONS(1955), + [aux_sym__val_number_decimal_token2] = ACTIONS(1957), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2079), + [sym_val_date] = ACTIONS(1961), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(559)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1587), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1479), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1410), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(801), - [sym__unquoted_with_expr] = STATE(992), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [sym_comment] = STATE(559), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2065), - [aux_sym_cmd_identifier_token3] = ACTIONS(2067), - [aux_sym_cmd_identifier_token4] = ACTIONS(2067), - [aux_sym_cmd_identifier_token5] = ACTIONS(2067), - [sym__newline] = ACTIONS(1922), + [STATE(563)] = { + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1178), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(469), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(890), + [sym__unquoted_with_expr] = STATE(1092), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(563), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1947), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2069), + [anon_sym_DOT_DOT] = ACTIONS(1951), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), - [anon_sym_DOT_DOT_LT] = ACTIONS(2071), - [aux_sym__val_number_decimal_token1] = ACTIONS(2073), - [aux_sym__val_number_decimal_token2] = ACTIONS(2075), - [aux_sym__val_number_decimal_token3] = ACTIONS(2077), - [aux_sym__val_number_decimal_token4] = ACTIONS(2077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), + [anon_sym_DOT_DOT_LT] = ACTIONS(1953), + [aux_sym__val_number_decimal_token1] = ACTIONS(1955), + [aux_sym__val_number_decimal_token2] = ACTIONS(1957), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2079), + [sym_val_date] = ACTIONS(1961), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(560)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1589), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1479), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1410), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(802), - [sym__unquoted_with_expr] = STATE(994), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [sym_comment] = STATE(560), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2065), - [aux_sym_cmd_identifier_token3] = ACTIONS(2067), - [aux_sym_cmd_identifier_token4] = ACTIONS(2067), - [aux_sym_cmd_identifier_token5] = ACTIONS(2067), - [sym__newline] = ACTIONS(1922), + [STATE(564)] = { + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1183), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(469), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(891), + [sym__unquoted_with_expr] = STATE(1099), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(564), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1947), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2069), + [anon_sym_DOT_DOT] = ACTIONS(1951), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), - [anon_sym_DOT_DOT_LT] = ACTIONS(2071), - [aux_sym__val_number_decimal_token1] = ACTIONS(2073), - [aux_sym__val_number_decimal_token2] = ACTIONS(2075), - [aux_sym__val_number_decimal_token3] = ACTIONS(2077), - [aux_sym__val_number_decimal_token4] = ACTIONS(2077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), + [anon_sym_DOT_DOT_LT] = ACTIONS(1953), + [aux_sym__val_number_decimal_token1] = ACTIONS(1955), + [aux_sym__val_number_decimal_token2] = ACTIONS(1957), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2079), + [sym_val_date] = ACTIONS(1961), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(561)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1591), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1479), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1410), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(803), - [sym__unquoted_with_expr] = STATE(996), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [sym_comment] = STATE(561), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2065), - [aux_sym_cmd_identifier_token3] = ACTIONS(2067), - [aux_sym_cmd_identifier_token4] = ACTIONS(2067), - [aux_sym_cmd_identifier_token5] = ACTIONS(2067), - [sym__newline] = ACTIONS(1922), + [STATE(565)] = { + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1201), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(469), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(905), + [sym__unquoted_with_expr] = STATE(1101), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(565), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1947), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2069), + [anon_sym_DOT_DOT] = ACTIONS(1951), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), - [anon_sym_DOT_DOT_LT] = ACTIONS(2071), - [aux_sym__val_number_decimal_token1] = ACTIONS(2073), - [aux_sym__val_number_decimal_token2] = ACTIONS(2075), - [aux_sym__val_number_decimal_token3] = ACTIONS(2077), - [aux_sym__val_number_decimal_token4] = ACTIONS(2077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), + [anon_sym_DOT_DOT_LT] = ACTIONS(1953), + [aux_sym__val_number_decimal_token1] = ACTIONS(1955), + [aux_sym__val_number_decimal_token2] = ACTIONS(1957), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2079), + [sym_val_date] = ACTIONS(1961), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(562)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1593), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1479), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1410), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(804), - [sym__unquoted_with_expr] = STATE(998), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [sym_comment] = STATE(562), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2065), - [aux_sym_cmd_identifier_token3] = ACTIONS(2067), - [aux_sym_cmd_identifier_token4] = ACTIONS(2067), - [aux_sym_cmd_identifier_token5] = ACTIONS(2067), - [sym__newline] = ACTIONS(1922), + [STATE(566)] = { + [aux_sym__repeat_newline] = STATE(580), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(2034), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1965), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1761), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(859), + [sym__unquoted_with_expr] = STATE(995), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(566), + [anon_sym_true] = ACTIONS(1996), + [anon_sym_false] = ACTIONS(1996), + [anon_sym_null] = ACTIONS(1998), + [aux_sym_cmd_identifier_token3] = ACTIONS(2000), + [aux_sym_cmd_identifier_token4] = ACTIONS(2000), + [aux_sym_cmd_identifier_token5] = ACTIONS(2000), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2069), + [anon_sym_DOT_DOT] = ACTIONS(2002), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), - [anon_sym_DOT_DOT_LT] = ACTIONS(2071), - [aux_sym__val_number_decimal_token1] = ACTIONS(2073), - [aux_sym__val_number_decimal_token2] = ACTIONS(2075), - [aux_sym__val_number_decimal_token3] = ACTIONS(2077), - [aux_sym__val_number_decimal_token4] = ACTIONS(2077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), + [anon_sym_DOT_DOT_LT] = ACTIONS(2004), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2008), + [aux_sym__val_number_decimal_token3] = ACTIONS(2010), + [aux_sym__val_number_decimal_token4] = ACTIONS(2010), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2079), + [sym_val_date] = ACTIONS(2012), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(563)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1595), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1479), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1410), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(805), - [sym__unquoted_with_expr] = STATE(1000), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [sym_comment] = STATE(563), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2065), - [aux_sym_cmd_identifier_token3] = ACTIONS(2067), - [aux_sym_cmd_identifier_token4] = ACTIONS(2067), - [aux_sym_cmd_identifier_token5] = ACTIONS(2067), - [sym__newline] = ACTIONS(1922), + [STATE(567)] = { + [aux_sym__repeat_newline] = STATE(581), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(2036), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1965), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1761), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(861), + [sym__unquoted_with_expr] = STATE(1002), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(567), + [anon_sym_true] = ACTIONS(1996), + [anon_sym_false] = ACTIONS(1996), + [anon_sym_null] = ACTIONS(1998), + [aux_sym_cmd_identifier_token3] = ACTIONS(2000), + [aux_sym_cmd_identifier_token4] = ACTIONS(2000), + [aux_sym_cmd_identifier_token5] = ACTIONS(2000), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2069), + [anon_sym_DOT_DOT] = ACTIONS(2002), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), - [anon_sym_DOT_DOT_LT] = ACTIONS(2071), - [aux_sym__val_number_decimal_token1] = ACTIONS(2073), - [aux_sym__val_number_decimal_token2] = ACTIONS(2075), - [aux_sym__val_number_decimal_token3] = ACTIONS(2077), - [aux_sym__val_number_decimal_token4] = ACTIONS(2077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), + [anon_sym_DOT_DOT_LT] = ACTIONS(2004), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2008), + [aux_sym__val_number_decimal_token3] = ACTIONS(2010), + [aux_sym__val_number_decimal_token4] = ACTIONS(2010), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2079), + [sym_val_date] = ACTIONS(2012), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(564)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1002), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1479), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1410), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(903), - [sym__unquoted_with_expr] = STATE(1003), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [sym_comment] = STATE(564), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2065), - [aux_sym_cmd_identifier_token3] = ACTIONS(2067), - [aux_sym_cmd_identifier_token4] = ACTIONS(2067), - [aux_sym_cmd_identifier_token5] = ACTIONS(2067), - [sym__newline] = ACTIONS(1922), + [STATE(568)] = { + [aux_sym__repeat_newline] = STATE(582), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(2037), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1965), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1761), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(863), + [sym__unquoted_with_expr] = STATE(1008), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(568), + [anon_sym_true] = ACTIONS(1996), + [anon_sym_false] = ACTIONS(1996), + [anon_sym_null] = ACTIONS(1998), + [aux_sym_cmd_identifier_token3] = ACTIONS(2000), + [aux_sym_cmd_identifier_token4] = ACTIONS(2000), + [aux_sym_cmd_identifier_token5] = ACTIONS(2000), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2069), + [anon_sym_DOT_DOT] = ACTIONS(2002), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), - [anon_sym_DOT_DOT_LT] = ACTIONS(2071), - [aux_sym__val_number_decimal_token1] = ACTIONS(2073), - [aux_sym__val_number_decimal_token2] = ACTIONS(2075), - [aux_sym__val_number_decimal_token3] = ACTIONS(2077), - [aux_sym__val_number_decimal_token4] = ACTIONS(2077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), + [anon_sym_DOT_DOT_LT] = ACTIONS(2004), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2008), + [aux_sym__val_number_decimal_token3] = ACTIONS(2010), + [aux_sym__val_number_decimal_token4] = ACTIONS(2010), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2079), + [sym_val_date] = ACTIONS(2012), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(565)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1597), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1479), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1410), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(806), - [sym__unquoted_with_expr] = STATE(1007), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [sym_comment] = STATE(565), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2065), - [aux_sym_cmd_identifier_token3] = ACTIONS(2067), - [aux_sym_cmd_identifier_token4] = ACTIONS(2067), - [aux_sym_cmd_identifier_token5] = ACTIONS(2067), - [sym__newline] = ACTIONS(1922), + [STATE(569)] = { + [aux_sym__repeat_newline] = STATE(583), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(2039), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1965), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1761), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(866), + [sym__unquoted_with_expr] = STATE(1017), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(569), + [anon_sym_true] = ACTIONS(1996), + [anon_sym_false] = ACTIONS(1996), + [anon_sym_null] = ACTIONS(1998), + [aux_sym_cmd_identifier_token3] = ACTIONS(2000), + [aux_sym_cmd_identifier_token4] = ACTIONS(2000), + [aux_sym_cmd_identifier_token5] = ACTIONS(2000), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2069), + [anon_sym_DOT_DOT] = ACTIONS(2002), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), - [anon_sym_DOT_DOT_LT] = ACTIONS(2071), - [aux_sym__val_number_decimal_token1] = ACTIONS(2073), - [aux_sym__val_number_decimal_token2] = ACTIONS(2075), - [aux_sym__val_number_decimal_token3] = ACTIONS(2077), - [aux_sym__val_number_decimal_token4] = ACTIONS(2077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), + [anon_sym_DOT_DOT_LT] = ACTIONS(2004), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2008), + [aux_sym__val_number_decimal_token3] = ACTIONS(2010), + [aux_sym__val_number_decimal_token4] = ACTIONS(2010), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2079), + [sym_val_date] = ACTIONS(2012), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(566)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1599), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1479), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1410), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(807), - [sym__unquoted_with_expr] = STATE(1009), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [sym_comment] = STATE(566), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2065), - [aux_sym_cmd_identifier_token3] = ACTIONS(2067), - [aux_sym_cmd_identifier_token4] = ACTIONS(2067), - [aux_sym_cmd_identifier_token5] = ACTIONS(2067), - [sym__newline] = ACTIONS(1922), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2069), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), - [anon_sym_DOT_DOT_LT] = ACTIONS(2071), - [aux_sym__val_number_decimal_token1] = ACTIONS(2073), - [aux_sym__val_number_decimal_token2] = ACTIONS(2075), - [aux_sym__val_number_decimal_token3] = ACTIONS(2077), - [aux_sym__val_number_decimal_token4] = ACTIONS(2077), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2079), - [anon_sym_DQUOTE] = 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(1936), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(567)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1601), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1479), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1410), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(808), - [sym__unquoted_with_expr] = STATE(1011), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [sym_comment] = STATE(567), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2065), - [aux_sym_cmd_identifier_token3] = ACTIONS(2067), - [aux_sym_cmd_identifier_token4] = ACTIONS(2067), - [aux_sym_cmd_identifier_token5] = ACTIONS(2067), - [sym__newline] = ACTIONS(1922), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2069), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), - [anon_sym_DOT_DOT_LT] = ACTIONS(2071), - [aux_sym__val_number_decimal_token1] = ACTIONS(2073), - [aux_sym__val_number_decimal_token2] = ACTIONS(2075), - [aux_sym__val_number_decimal_token3] = ACTIONS(2077), - [aux_sym__val_number_decimal_token4] = ACTIONS(2077), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2079), - [anon_sym_DQUOTE] = 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(1936), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(568)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1603), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1479), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1410), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(809), - [sym__unquoted_with_expr] = STATE(1013), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [sym_comment] = STATE(568), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2065), - [aux_sym_cmd_identifier_token3] = ACTIONS(2067), - [aux_sym_cmd_identifier_token4] = ACTIONS(2067), - [aux_sym_cmd_identifier_token5] = ACTIONS(2067), - [sym__newline] = ACTIONS(1922), + [STATE(570)] = { + [aux_sym__repeat_newline] = STATE(584), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(2041), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1965), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1761), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(867), + [sym__unquoted_with_expr] = STATE(1035), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(570), + [anon_sym_true] = ACTIONS(1996), + [anon_sym_false] = ACTIONS(1996), + [anon_sym_null] = ACTIONS(1998), + [aux_sym_cmd_identifier_token3] = ACTIONS(2000), + [aux_sym_cmd_identifier_token4] = ACTIONS(2000), + [aux_sym_cmd_identifier_token5] = ACTIONS(2000), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2069), + [anon_sym_DOT_DOT] = ACTIONS(2002), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), - [anon_sym_DOT_DOT_LT] = ACTIONS(2071), - [aux_sym__val_number_decimal_token1] = ACTIONS(2073), - [aux_sym__val_number_decimal_token2] = ACTIONS(2075), - [aux_sym__val_number_decimal_token3] = ACTIONS(2077), - [aux_sym__val_number_decimal_token4] = ACTIONS(2077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), + [anon_sym_DOT_DOT_LT] = ACTIONS(2004), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2008), + [aux_sym__val_number_decimal_token3] = ACTIONS(2010), + [aux_sym__val_number_decimal_token4] = ACTIONS(2010), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2079), + [sym_val_date] = ACTIONS(2012), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(569)] = { + [STATE(571)] = { [aux_sym__repeat_newline] = STATE(585), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1605), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1479), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1410), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(810), - [sym__unquoted_with_expr] = STATE(1015), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [sym_comment] = STATE(569), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2065), - [aux_sym_cmd_identifier_token3] = ACTIONS(2067), - [aux_sym_cmd_identifier_token4] = ACTIONS(2067), - [aux_sym_cmd_identifier_token5] = ACTIONS(2067), - [sym__newline] = ACTIONS(1922), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(2042), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1965), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1761), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(869), + [sym__unquoted_with_expr] = STATE(1051), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(571), + [anon_sym_true] = ACTIONS(1996), + [anon_sym_false] = ACTIONS(1996), + [anon_sym_null] = ACTIONS(1998), + [aux_sym_cmd_identifier_token3] = ACTIONS(2000), + [aux_sym_cmd_identifier_token4] = ACTIONS(2000), + [aux_sym_cmd_identifier_token5] = ACTIONS(2000), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2069), + [anon_sym_DOT_DOT] = ACTIONS(2002), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), - [anon_sym_DOT_DOT_LT] = ACTIONS(2071), - [aux_sym__val_number_decimal_token1] = ACTIONS(2073), - [aux_sym__val_number_decimal_token2] = ACTIONS(2075), - [aux_sym__val_number_decimal_token3] = ACTIONS(2077), - [aux_sym__val_number_decimal_token4] = ACTIONS(2077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), + [anon_sym_DOT_DOT_LT] = ACTIONS(2004), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2008), + [aux_sym__val_number_decimal_token3] = ACTIONS(2010), + [aux_sym__val_number_decimal_token4] = ACTIONS(2010), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2079), + [sym_val_date] = ACTIONS(2012), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(570)] = { + [STATE(572)] = { [aux_sym__repeat_newline] = STATE(586), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1606), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1479), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1410), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(811), - [sym__unquoted_with_expr] = STATE(1016), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [sym_comment] = STATE(570), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2065), - [aux_sym_cmd_identifier_token3] = ACTIONS(2067), - [aux_sym_cmd_identifier_token4] = ACTIONS(2067), - [aux_sym_cmd_identifier_token5] = ACTIONS(2067), - [sym__newline] = ACTIONS(1922), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(2044), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1965), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1761), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(871), + [sym__unquoted_with_expr] = STATE(1063), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(572), + [anon_sym_true] = ACTIONS(1996), + [anon_sym_false] = ACTIONS(1996), + [anon_sym_null] = ACTIONS(1998), + [aux_sym_cmd_identifier_token3] = ACTIONS(2000), + [aux_sym_cmd_identifier_token4] = ACTIONS(2000), + [aux_sym_cmd_identifier_token5] = ACTIONS(2000), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2069), + [anon_sym_DOT_DOT] = ACTIONS(2002), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), - [anon_sym_DOT_DOT_LT] = ACTIONS(2071), - [aux_sym__val_number_decimal_token1] = ACTIONS(2073), - [aux_sym__val_number_decimal_token2] = ACTIONS(2075), - [aux_sym__val_number_decimal_token3] = ACTIONS(2077), - [aux_sym__val_number_decimal_token4] = ACTIONS(2077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), + [anon_sym_DOT_DOT_LT] = ACTIONS(2004), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2008), + [aux_sym__val_number_decimal_token3] = ACTIONS(2010), + [aux_sym__val_number_decimal_token4] = ACTIONS(2010), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2079), + [sym_val_date] = ACTIONS(2012), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(571)] = { + [STATE(573)] = { [aux_sym__repeat_newline] = STATE(587), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1517), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1479), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1410), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(812), - [sym__unquoted_with_expr] = STATE(1017), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [sym_comment] = STATE(571), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2065), - [aux_sym_cmd_identifier_token3] = ACTIONS(2067), - [aux_sym_cmd_identifier_token4] = ACTIONS(2067), - [aux_sym_cmd_identifier_token5] = ACTIONS(2067), - [sym__newline] = ACTIONS(1922), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(2045), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1965), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1761), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(874), + [sym__unquoted_with_expr] = STATE(1076), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(573), + [anon_sym_true] = ACTIONS(1996), + [anon_sym_false] = ACTIONS(1996), + [anon_sym_null] = ACTIONS(1998), + [aux_sym_cmd_identifier_token3] = ACTIONS(2000), + [aux_sym_cmd_identifier_token4] = ACTIONS(2000), + [aux_sym_cmd_identifier_token5] = ACTIONS(2000), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2069), + [anon_sym_DOT_DOT] = ACTIONS(2002), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), - [anon_sym_DOT_DOT_LT] = ACTIONS(2071), - [aux_sym__val_number_decimal_token1] = ACTIONS(2073), - [aux_sym__val_number_decimal_token2] = ACTIONS(2075), - [aux_sym__val_number_decimal_token3] = ACTIONS(2077), - [aux_sym__val_number_decimal_token4] = ACTIONS(2077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), + [anon_sym_DOT_DOT_LT] = ACTIONS(2004), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2008), + [aux_sym__val_number_decimal_token3] = ACTIONS(2010), + [aux_sym__val_number_decimal_token4] = ACTIONS(2010), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2079), + [sym_val_date] = ACTIONS(2012), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(572)] = { - [aux_sym__repeat_newline] = STATE(680), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1608), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1479), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1410), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(814), - [sym__unquoted_with_expr] = STATE(1018), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [sym_comment] = STATE(572), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2065), - [aux_sym_cmd_identifier_token3] = ACTIONS(2067), - [aux_sym_cmd_identifier_token4] = ACTIONS(2067), - [aux_sym_cmd_identifier_token5] = ACTIONS(2067), - [sym__newline] = ACTIONS(1922), + [STATE(574)] = { + [aux_sym__repeat_newline] = STATE(588), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1079), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1965), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1761), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(875), + [sym__unquoted_with_expr] = STATE(1082), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(574), + [anon_sym_true] = ACTIONS(1996), + [anon_sym_false] = ACTIONS(1996), + [anon_sym_null] = ACTIONS(1998), + [aux_sym_cmd_identifier_token3] = ACTIONS(2000), + [aux_sym_cmd_identifier_token4] = ACTIONS(2000), + [aux_sym_cmd_identifier_token5] = ACTIONS(2000), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2069), + [anon_sym_DOT_DOT] = ACTIONS(2002), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), - [anon_sym_DOT_DOT_LT] = ACTIONS(2071), - [aux_sym__val_number_decimal_token1] = ACTIONS(2073), - [aux_sym__val_number_decimal_token2] = ACTIONS(2075), - [aux_sym__val_number_decimal_token3] = ACTIONS(2077), - [aux_sym__val_number_decimal_token4] = ACTIONS(2077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), + [anon_sym_DOT_DOT_LT] = ACTIONS(2004), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2008), + [aux_sym__val_number_decimal_token3] = ACTIONS(2010), + [aux_sym__val_number_decimal_token4] = ACTIONS(2010), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2079), + [sym_val_date] = ACTIONS(2012), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(573)] = { - [aux_sym__repeat_newline] = STATE(590), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1610), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1479), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1410), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(828), - [sym__unquoted_with_expr] = STATE(1021), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [sym_comment] = STATE(573), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2065), - [aux_sym_cmd_identifier_token3] = ACTIONS(2067), - [aux_sym_cmd_identifier_token4] = ACTIONS(2067), - [aux_sym_cmd_identifier_token5] = ACTIONS(2067), - [sym__newline] = ACTIONS(1922), + [STATE(575)] = { + [aux_sym__repeat_newline] = STATE(681), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(2046), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1965), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1761), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(876), + [sym__unquoted_with_expr] = STATE(1095), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(575), + [anon_sym_true] = ACTIONS(1996), + [anon_sym_false] = ACTIONS(1996), + [anon_sym_null] = ACTIONS(1998), + [aux_sym_cmd_identifier_token3] = ACTIONS(2000), + [aux_sym_cmd_identifier_token4] = ACTIONS(2000), + [aux_sym_cmd_identifier_token5] = ACTIONS(2000), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2069), + [anon_sym_DOT_DOT] = ACTIONS(2002), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), - [anon_sym_DOT_DOT_LT] = ACTIONS(2071), - [aux_sym__val_number_decimal_token1] = ACTIONS(2073), - [aux_sym__val_number_decimal_token2] = ACTIONS(2075), - [aux_sym__val_number_decimal_token3] = ACTIONS(2077), - [aux_sym__val_number_decimal_token4] = ACTIONS(2077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), + [anon_sym_DOT_DOT_LT] = ACTIONS(2004), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2008), + [aux_sym__val_number_decimal_token3] = ACTIONS(2010), + [aux_sym__val_number_decimal_token4] = ACTIONS(2010), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2079), + [sym_val_date] = ACTIONS(2012), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(574)] = { - [aux_sym__repeat_newline] = STATE(591), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1611), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1479), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1410), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(830), - [sym__unquoted_with_expr] = STATE(1022), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [sym_comment] = STATE(574), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2065), - [aux_sym_cmd_identifier_token3] = ACTIONS(2067), - [aux_sym_cmd_identifier_token4] = ACTIONS(2067), - [aux_sym_cmd_identifier_token5] = ACTIONS(2067), - [sym__newline] = ACTIONS(1922), + [STATE(576)] = { + [aux_sym__repeat_newline] = STATE(590), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(2047), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1965), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1761), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(877), + [sym__unquoted_with_expr] = STATE(1098), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(576), + [anon_sym_true] = ACTIONS(1996), + [anon_sym_false] = ACTIONS(1996), + [anon_sym_null] = ACTIONS(1998), + [aux_sym_cmd_identifier_token3] = ACTIONS(2000), + [aux_sym_cmd_identifier_token4] = ACTIONS(2000), + [aux_sym_cmd_identifier_token5] = ACTIONS(2000), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2069), + [anon_sym_DOT_DOT] = ACTIONS(2002), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), - [anon_sym_DOT_DOT_LT] = ACTIONS(2071), - [aux_sym__val_number_decimal_token1] = ACTIONS(2073), - [aux_sym__val_number_decimal_token2] = ACTIONS(2075), - [aux_sym__val_number_decimal_token3] = ACTIONS(2077), - [aux_sym__val_number_decimal_token4] = ACTIONS(2077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), + [anon_sym_DOT_DOT_LT] = ACTIONS(2004), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2008), + [aux_sym__val_number_decimal_token3] = ACTIONS(2010), + [aux_sym__val_number_decimal_token4] = ACTIONS(2010), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2079), + [sym_val_date] = ACTIONS(2012), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(575)] = { - [aux_sym__repeat_newline] = STATE(592), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1612), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1479), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1410), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(831), - [sym__unquoted_with_expr] = STATE(1023), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [sym_comment] = STATE(575), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2065), - [aux_sym_cmd_identifier_token3] = ACTIONS(2067), - [aux_sym_cmd_identifier_token4] = ACTIONS(2067), - [aux_sym_cmd_identifier_token5] = ACTIONS(2067), - [sym__newline] = ACTIONS(1922), + [STATE(577)] = { + [aux_sym__repeat_newline] = STATE(591), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(2048), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1965), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1761), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(880), + [sym__unquoted_with_expr] = STATE(1103), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(577), + [anon_sym_true] = ACTIONS(1996), + [anon_sym_false] = ACTIONS(1996), + [anon_sym_null] = ACTIONS(1998), + [aux_sym_cmd_identifier_token3] = ACTIONS(2000), + [aux_sym_cmd_identifier_token4] = ACTIONS(2000), + [aux_sym_cmd_identifier_token5] = ACTIONS(2000), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2069), + [anon_sym_DOT_DOT] = ACTIONS(2002), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), - [anon_sym_DOT_DOT_LT] = ACTIONS(2071), - [aux_sym__val_number_decimal_token1] = ACTIONS(2073), - [aux_sym__val_number_decimal_token2] = ACTIONS(2075), - [aux_sym__val_number_decimal_token3] = ACTIONS(2077), - [aux_sym__val_number_decimal_token4] = ACTIONS(2077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), + [anon_sym_DOT_DOT_LT] = ACTIONS(2004), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2008), + [aux_sym__val_number_decimal_token3] = ACTIONS(2010), + [aux_sym__val_number_decimal_token4] = ACTIONS(2010), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2079), + [sym_val_date] = ACTIONS(2012), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(576)] = { - [aux_sym__repeat_newline] = STATE(593), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1613), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1479), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1410), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(832), - [sym__unquoted_with_expr] = STATE(1026), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [sym_comment] = STATE(576), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2065), - [aux_sym_cmd_identifier_token3] = ACTIONS(2067), - [aux_sym_cmd_identifier_token4] = ACTIONS(2067), - [aux_sym_cmd_identifier_token5] = ACTIONS(2067), - [sym__newline] = ACTIONS(1922), + [STATE(578)] = { + [aux_sym__repeat_newline] = STATE(592), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(2049), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1965), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1761), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(882), + [sym__unquoted_with_expr] = STATE(1114), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(578), + [anon_sym_true] = ACTIONS(1996), + [anon_sym_false] = ACTIONS(1996), + [anon_sym_null] = ACTIONS(1998), + [aux_sym_cmd_identifier_token3] = ACTIONS(2000), + [aux_sym_cmd_identifier_token4] = ACTIONS(2000), + [aux_sym_cmd_identifier_token5] = ACTIONS(2000), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2069), + [anon_sym_DOT_DOT] = ACTIONS(2002), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), - [anon_sym_DOT_DOT_LT] = ACTIONS(2071), - [aux_sym__val_number_decimal_token1] = ACTIONS(2073), - [aux_sym__val_number_decimal_token2] = ACTIONS(2075), - [aux_sym__val_number_decimal_token3] = ACTIONS(2077), - [aux_sym__val_number_decimal_token4] = ACTIONS(2077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), + [anon_sym_DOT_DOT_LT] = ACTIONS(2004), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2008), + [aux_sym__val_number_decimal_token3] = ACTIONS(2010), + [aux_sym__val_number_decimal_token4] = ACTIONS(2010), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2079), + [sym_val_date] = ACTIONS(2012), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(577)] = { - [aux_sym__repeat_newline] = STATE(594), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1029), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1479), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1410), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(833), - [sym__unquoted_with_expr] = STATE(1031), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [sym_comment] = STATE(577), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2065), - [aux_sym_cmd_identifier_token3] = ACTIONS(2067), - [aux_sym_cmd_identifier_token4] = ACTIONS(2067), - [aux_sym_cmd_identifier_token5] = ACTIONS(2067), - [sym__newline] = ACTIONS(1922), + [STATE(579)] = { + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1206), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(469), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(906), + [sym__unquoted_with_expr] = STATE(1104), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(579), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1947), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2069), + [anon_sym_DOT_DOT] = ACTIONS(1951), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), - [anon_sym_DOT_DOT_LT] = ACTIONS(2071), - [aux_sym__val_number_decimal_token1] = ACTIONS(2073), - [aux_sym__val_number_decimal_token2] = ACTIONS(2075), - [aux_sym__val_number_decimal_token3] = ACTIONS(2077), - [aux_sym__val_number_decimal_token4] = ACTIONS(2077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), + [anon_sym_DOT_DOT_LT] = ACTIONS(1953), + [aux_sym__val_number_decimal_token1] = ACTIONS(1955), + [aux_sym__val_number_decimal_token2] = ACTIONS(1957), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2079), + [sym_val_date] = ACTIONS(1961), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(578)] = { - [aux_sym__repeat_newline] = STATE(595), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1614), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1479), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1410), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(834), - [sym__unquoted_with_expr] = STATE(1033), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [sym_comment] = STATE(578), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2065), - [aux_sym_cmd_identifier_token3] = ACTIONS(2067), - [aux_sym_cmd_identifier_token4] = ACTIONS(2067), - [aux_sym_cmd_identifier_token5] = ACTIONS(2067), - [sym__newline] = ACTIONS(1922), + [STATE(580)] = { + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(2054), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1965), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1761), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(740), + [sym__unquoted_with_expr] = STATE(1015), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(580), + [anon_sym_true] = ACTIONS(1996), + [anon_sym_false] = ACTIONS(1996), + [anon_sym_null] = ACTIONS(1998), + [aux_sym_cmd_identifier_token3] = ACTIONS(2000), + [aux_sym_cmd_identifier_token4] = ACTIONS(2000), + [aux_sym_cmd_identifier_token5] = ACTIONS(2000), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2069), + [anon_sym_DOT_DOT] = ACTIONS(2002), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), - [anon_sym_DOT_DOT_LT] = ACTIONS(2071), - [aux_sym__val_number_decimal_token1] = ACTIONS(2073), - [aux_sym__val_number_decimal_token2] = ACTIONS(2075), - [aux_sym__val_number_decimal_token3] = ACTIONS(2077), - [aux_sym__val_number_decimal_token4] = ACTIONS(2077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), + [anon_sym_DOT_DOT_LT] = ACTIONS(2004), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2008), + [aux_sym__val_number_decimal_token3] = ACTIONS(2010), + [aux_sym__val_number_decimal_token4] = ACTIONS(2010), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2079), + [sym_val_date] = ACTIONS(2012), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(579)] = { - [aux_sym__repeat_newline] = STATE(596), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1615), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1479), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1410), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(835), - [sym__unquoted_with_expr] = STATE(1034), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [sym_comment] = STATE(579), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2065), - [aux_sym_cmd_identifier_token3] = ACTIONS(2067), - [aux_sym_cmd_identifier_token4] = ACTIONS(2067), - [aux_sym_cmd_identifier_token5] = ACTIONS(2067), - [sym__newline] = ACTIONS(1922), + [STATE(581)] = { + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(2154), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1965), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1761), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(741), + [sym__unquoted_with_expr] = STATE(1018), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(581), + [anon_sym_true] = ACTIONS(1996), + [anon_sym_false] = ACTIONS(1996), + [anon_sym_null] = ACTIONS(1998), + [aux_sym_cmd_identifier_token3] = ACTIONS(2000), + [aux_sym_cmd_identifier_token4] = ACTIONS(2000), + [aux_sym_cmd_identifier_token5] = ACTIONS(2000), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2069), + [anon_sym_DOT_DOT] = ACTIONS(2002), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), - [anon_sym_DOT_DOT_LT] = ACTIONS(2071), - [aux_sym__val_number_decimal_token1] = ACTIONS(2073), - [aux_sym__val_number_decimal_token2] = ACTIONS(2075), - [aux_sym__val_number_decimal_token3] = ACTIONS(2077), - [aux_sym__val_number_decimal_token4] = ACTIONS(2077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), + [anon_sym_DOT_DOT_LT] = ACTIONS(2004), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2008), + [aux_sym__val_number_decimal_token3] = ACTIONS(2010), + [aux_sym__val_number_decimal_token4] = ACTIONS(2010), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2079), + [sym_val_date] = ACTIONS(2012), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(580)] = { - [aux_sym__repeat_newline] = STATE(597), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1616), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1479), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1410), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(836), - [sym__unquoted_with_expr] = STATE(1035), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [sym_comment] = STATE(580), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2065), - [aux_sym_cmd_identifier_token3] = ACTIONS(2067), - [aux_sym_cmd_identifier_token4] = ACTIONS(2067), - [aux_sym_cmd_identifier_token5] = ACTIONS(2067), - [sym__newline] = ACTIONS(1922), + [STATE(582)] = { + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(2058), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1965), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1761), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(742), + [sym__unquoted_with_expr] = STATE(1024), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(582), + [anon_sym_true] = ACTIONS(1996), + [anon_sym_false] = ACTIONS(1996), + [anon_sym_null] = ACTIONS(1998), + [aux_sym_cmd_identifier_token3] = ACTIONS(2000), + [aux_sym_cmd_identifier_token4] = ACTIONS(2000), + [aux_sym_cmd_identifier_token5] = ACTIONS(2000), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2069), + [anon_sym_DOT_DOT] = ACTIONS(2002), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), - [anon_sym_DOT_DOT_LT] = ACTIONS(2071), - [aux_sym__val_number_decimal_token1] = ACTIONS(2073), - [aux_sym__val_number_decimal_token2] = ACTIONS(2075), - [aux_sym__val_number_decimal_token3] = ACTIONS(2077), - [aux_sym__val_number_decimal_token4] = ACTIONS(2077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), + [anon_sym_DOT_DOT_LT] = ACTIONS(2004), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2008), + [aux_sym__val_number_decimal_token3] = ACTIONS(2010), + [aux_sym__val_number_decimal_token4] = ACTIONS(2010), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2079), + [sym_val_date] = ACTIONS(2012), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(581)] = { - [aux_sym__repeat_newline] = STATE(598), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1617), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1479), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1410), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(837), - [sym__unquoted_with_expr] = STATE(1036), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [sym_comment] = STATE(581), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2065), - [aux_sym_cmd_identifier_token3] = ACTIONS(2067), - [aux_sym_cmd_identifier_token4] = ACTIONS(2067), - [aux_sym_cmd_identifier_token5] = ACTIONS(2067), - [sym__newline] = ACTIONS(1922), + [STATE(583)] = { + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(2060), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1965), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1761), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(744), + [sym__unquoted_with_expr] = STATE(1027), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(583), + [anon_sym_true] = ACTIONS(1996), + [anon_sym_false] = ACTIONS(1996), + [anon_sym_null] = ACTIONS(1998), + [aux_sym_cmd_identifier_token3] = ACTIONS(2000), + [aux_sym_cmd_identifier_token4] = ACTIONS(2000), + [aux_sym_cmd_identifier_token5] = ACTIONS(2000), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2069), + [anon_sym_DOT_DOT] = ACTIONS(2002), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), - [anon_sym_DOT_DOT_LT] = ACTIONS(2071), - [aux_sym__val_number_decimal_token1] = ACTIONS(2073), - [aux_sym__val_number_decimal_token2] = ACTIONS(2075), - [aux_sym__val_number_decimal_token3] = ACTIONS(2077), - [aux_sym__val_number_decimal_token4] = ACTIONS(2077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), + [anon_sym_DOT_DOT_LT] = ACTIONS(2004), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2008), + [aux_sym__val_number_decimal_token3] = ACTIONS(2010), + [aux_sym__val_number_decimal_token4] = ACTIONS(2010), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2079), + [sym_val_date] = ACTIONS(2012), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(582)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1213), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(942), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(438), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(860), - [sym__unquoted_with_expr] = STATE(1077), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [sym_comment] = STATE(582), - [anon_sym_true] = ACTIONS(1938), - [anon_sym_false] = ACTIONS(1938), - [anon_sym_null] = ACTIONS(1940), - [aux_sym_cmd_identifier_token3] = ACTIONS(1942), - [aux_sym_cmd_identifier_token4] = ACTIONS(1942), - [aux_sym_cmd_identifier_token5] = ACTIONS(1942), - [sym__newline] = ACTIONS(1922), + [STATE(584)] = { + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(2062), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1965), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1761), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(745), + [sym__unquoted_with_expr] = STATE(1032), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(584), + [anon_sym_true] = ACTIONS(1996), + [anon_sym_false] = ACTIONS(1996), + [anon_sym_null] = ACTIONS(1998), + [aux_sym_cmd_identifier_token3] = ACTIONS(2000), + [aux_sym_cmd_identifier_token4] = ACTIONS(2000), + [aux_sym_cmd_identifier_token5] = ACTIONS(2000), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1944), + [anon_sym_DOT_DOT] = ACTIONS(2002), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), - [anon_sym_DOT_DOT_LT] = ACTIONS(1946), - [aux_sym__val_number_decimal_token1] = ACTIONS(1948), - [aux_sym__val_number_decimal_token2] = ACTIONS(1950), - [aux_sym__val_number_decimal_token3] = ACTIONS(1952), - [aux_sym__val_number_decimal_token4] = ACTIONS(1952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), + [anon_sym_DOT_DOT_LT] = ACTIONS(2004), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2008), + [aux_sym__val_number_decimal_token3] = ACTIONS(2010), + [aux_sym__val_number_decimal_token4] = ACTIONS(2010), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1954), + [sym_val_date] = ACTIONS(2012), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(583)] = { - [sym_comment] = STATE(583), - [ts_builtin_sym_end] = 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_COLON] = ACTIONS(1450), - [anon_sym_GT2] = ACTIONS(1448), - [anon_sym_DASH2] = ACTIONS(1450), - [anon_sym_STAR2] = ACTIONS(1448), - [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(1448), - [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(1448), - [anon_sym_mod2] = ACTIONS(1450), - [anon_sym_SLASH_SLASH2] = ACTIONS(1450), - [anon_sym_PLUS2] = ACTIONS(1448), - [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(1448), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1450), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1450), - [anon_sym_QMARK2] = ACTIONS(2081), - [anon_sym_DOT2] = ACTIONS(1448), - [anon_sym_err_GT] = ACTIONS(1448), - [anon_sym_out_GT] = ACTIONS(1448), - [anon_sym_e_GT] = ACTIONS(1448), - [anon_sym_o_GT] = ACTIONS(1448), - [anon_sym_err_PLUSout_GT] = ACTIONS(1448), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1448), - [anon_sym_o_PLUSe_GT] = ACTIONS(1448), - [anon_sym_e_PLUSo_GT] = ACTIONS(1448), - [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(3), - }, - [STATE(584)] = { - [sym_cmd_identifier] = STATE(4276), - [sym_expr_parenthesized] = STATE(5339), - [sym__spread_parenthesized] = STATE(4883), - [sym__spread_variable] = STATE(4892), - [sym_val_variable] = STATE(5339), - [sym_val_number] = STATE(5339), - [sym__val_number_decimal] = STATE(1984), - [sym__val_number] = STATE(707), - [sym_val_string] = STATE(5339), - [sym__raw_str] = STATE(2266), - [sym__str_double_quotes] = STATE(2266), - [sym__str_single_quotes] = STATE(2266), - [sym__str_back_ticks] = STATE(2266), - [sym_val_interpolated] = STATE(5339), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym__spread_record] = STATE(4883), - [sym_record_entry] = STATE(4526), - [sym__record_key] = STATE(5341), - [sym_comment] = STATE(584), - [aux_sym__types_body_repeat1] = STATE(1516), - [aux_sym_record_body_repeat1] = STATE(867), - [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(1782), - [anon_sym_false] = ACTIONS(1782), - [anon_sym_null] = ACTIONS(1782), - [aux_sym_cmd_identifier_token3] = ACTIONS(1784), - [aux_sym_cmd_identifier_token4] = ACTIONS(1784), - [aux_sym_cmd_identifier_token5] = ACTIONS(1784), - [sym__newline] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1788), - [anon_sym_DOLLAR] = ACTIONS(1790), - [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(1794), - [aux_sym__val_number_decimal_token2] = ACTIONS(1796), - [aux_sym__val_number_decimal_token3] = ACTIONS(1798), - [aux_sym__val_number_decimal_token4] = ACTIONS(1798), - [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(1800), - [anon_sym_SQUOTE] = ACTIONS(1802), - [anon_sym_BQUOTE] = ACTIONS(1804), - [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(1806), - }, [STATE(585)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1631), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1479), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1410), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(853), - [sym__unquoted_with_expr] = STATE(1060), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(2064), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1965), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1761), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(733), + [sym__unquoted_with_expr] = STATE(1049), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(585), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2065), - [aux_sym_cmd_identifier_token3] = ACTIONS(2067), - [aux_sym_cmd_identifier_token4] = ACTIONS(2067), - [aux_sym_cmd_identifier_token5] = ACTIONS(2067), - [sym__newline] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1996), + [anon_sym_false] = ACTIONS(1996), + [anon_sym_null] = ACTIONS(1998), + [aux_sym_cmd_identifier_token3] = ACTIONS(2000), + [aux_sym_cmd_identifier_token4] = ACTIONS(2000), + [aux_sym_cmd_identifier_token5] = ACTIONS(2000), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2069), + [anon_sym_DOT_DOT] = ACTIONS(2002), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), - [anon_sym_DOT_DOT_LT] = ACTIONS(2071), - [aux_sym__val_number_decimal_token1] = ACTIONS(2073), - [aux_sym__val_number_decimal_token2] = ACTIONS(2075), - [aux_sym__val_number_decimal_token3] = ACTIONS(2077), - [aux_sym__val_number_decimal_token4] = ACTIONS(2077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), + [anon_sym_DOT_DOT_LT] = ACTIONS(2004), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2008), + [aux_sym__val_number_decimal_token3] = ACTIONS(2010), + [aux_sym__val_number_decimal_token4] = ACTIONS(2010), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2079), + [sym_val_date] = ACTIONS(2012), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(586)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1633), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1479), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1410), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(854), - [sym__unquoted_with_expr] = STATE(1063), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(2066), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1965), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1761), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(748), + [sym__unquoted_with_expr] = STATE(1052), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(586), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2065), - [aux_sym_cmd_identifier_token3] = ACTIONS(2067), - [aux_sym_cmd_identifier_token4] = ACTIONS(2067), - [aux_sym_cmd_identifier_token5] = ACTIONS(2067), - [sym__newline] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1996), + [anon_sym_false] = ACTIONS(1996), + [anon_sym_null] = ACTIONS(1998), + [aux_sym_cmd_identifier_token3] = ACTIONS(2000), + [aux_sym_cmd_identifier_token4] = ACTIONS(2000), + [aux_sym_cmd_identifier_token5] = ACTIONS(2000), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2069), + [anon_sym_DOT_DOT] = ACTIONS(2002), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), - [anon_sym_DOT_DOT_LT] = ACTIONS(2071), - [aux_sym__val_number_decimal_token1] = ACTIONS(2073), - [aux_sym__val_number_decimal_token2] = ACTIONS(2075), - [aux_sym__val_number_decimal_token3] = ACTIONS(2077), - [aux_sym__val_number_decimal_token4] = ACTIONS(2077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), + [anon_sym_DOT_DOT_LT] = ACTIONS(2004), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2008), + [aux_sym__val_number_decimal_token3] = ACTIONS(2010), + [aux_sym__val_number_decimal_token4] = ACTIONS(2010), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2079), + [sym_val_date] = ACTIONS(2012), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(587)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1635), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1479), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1410), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(855), - [sym__unquoted_with_expr] = STATE(1065), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(2068), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1965), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1761), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(749), + [sym__unquoted_with_expr] = STATE(1054), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(587), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2065), - [aux_sym_cmd_identifier_token3] = ACTIONS(2067), - [aux_sym_cmd_identifier_token4] = ACTIONS(2067), - [aux_sym_cmd_identifier_token5] = ACTIONS(2067), - [sym__newline] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1996), + [anon_sym_false] = ACTIONS(1996), + [anon_sym_null] = ACTIONS(1998), + [aux_sym_cmd_identifier_token3] = ACTIONS(2000), + [aux_sym_cmd_identifier_token4] = ACTIONS(2000), + [aux_sym_cmd_identifier_token5] = ACTIONS(2000), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2069), + [anon_sym_DOT_DOT] = ACTIONS(2002), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), - [anon_sym_DOT_DOT_LT] = ACTIONS(2071), - [aux_sym__val_number_decimal_token1] = ACTIONS(2073), - [aux_sym__val_number_decimal_token2] = ACTIONS(2075), - [aux_sym__val_number_decimal_token3] = ACTIONS(2077), - [aux_sym__val_number_decimal_token4] = ACTIONS(2077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), + [anon_sym_DOT_DOT_LT] = ACTIONS(2004), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2008), + [aux_sym__val_number_decimal_token3] = ACTIONS(2010), + [aux_sym__val_number_decimal_token4] = ACTIONS(2010), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2079), + [sym_val_date] = ACTIONS(2012), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(588)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1079), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(942), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(438), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(861), - [sym__unquoted_with_expr] = STATE(1080), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1057), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1965), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1761), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(750), + [sym__unquoted_with_expr] = STATE(1060), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(588), - [anon_sym_true] = ACTIONS(1938), - [anon_sym_false] = ACTIONS(1938), - [anon_sym_null] = ACTIONS(1940), - [aux_sym_cmd_identifier_token3] = ACTIONS(1942), - [aux_sym_cmd_identifier_token4] = ACTIONS(1942), - [aux_sym_cmd_identifier_token5] = ACTIONS(1942), - [sym__newline] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1996), + [anon_sym_false] = ACTIONS(1996), + [anon_sym_null] = ACTIONS(1998), + [aux_sym_cmd_identifier_token3] = ACTIONS(2000), + [aux_sym_cmd_identifier_token4] = ACTIONS(2000), + [aux_sym_cmd_identifier_token5] = ACTIONS(2000), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1944), + [anon_sym_DOT_DOT] = ACTIONS(2002), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), - [anon_sym_DOT_DOT_LT] = ACTIONS(1946), - [aux_sym__val_number_decimal_token1] = ACTIONS(1948), - [aux_sym__val_number_decimal_token2] = ACTIONS(1950), - [aux_sym__val_number_decimal_token3] = ACTIONS(1952), - [aux_sym__val_number_decimal_token4] = ACTIONS(1952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), + [anon_sym_DOT_DOT_LT] = ACTIONS(2004), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2008), + [aux_sym__val_number_decimal_token3] = ACTIONS(2010), + [aux_sym__val_number_decimal_token4] = ACTIONS(2010), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1954), + [sym_val_date] = ACTIONS(2012), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(589)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(2092), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1983), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1738), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(858), - [sym__unquoted_with_expr] = STATE(1072), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(533), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1243), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(469), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(867), + [sym__unquoted_with_expr] = STATE(1035), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(589), - [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(1922), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1947), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1924), + [anon_sym_DOT_DOT] = ACTIONS(1951), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), - [anon_sym_DOT_DOT_LT] = ACTIONS(1926), - [aux_sym__val_number_decimal_token1] = ACTIONS(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1930), - [aux_sym__val_number_decimal_token3] = ACTIONS(1932), - [aux_sym__val_number_decimal_token4] = ACTIONS(1932), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), + [anon_sym_DOT_DOT_LT] = ACTIONS(1953), + [aux_sym__val_number_decimal_token1] = ACTIONS(1955), + [aux_sym__val_number_decimal_token2] = ACTIONS(1957), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1934), + [sym_val_date] = ACTIONS(1961), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(590)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1639), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1479), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1410), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(857), - [sym__unquoted_with_expr] = STATE(1069), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(2072), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1965), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1761), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(753), + [sym__unquoted_with_expr] = STATE(1067), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(590), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2065), - [aux_sym_cmd_identifier_token3] = ACTIONS(2067), - [aux_sym_cmd_identifier_token4] = ACTIONS(2067), - [aux_sym_cmd_identifier_token5] = ACTIONS(2067), - [sym__newline] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1996), + [anon_sym_false] = ACTIONS(1996), + [anon_sym_null] = ACTIONS(1998), + [aux_sym_cmd_identifier_token3] = ACTIONS(2000), + [aux_sym_cmd_identifier_token4] = ACTIONS(2000), + [aux_sym_cmd_identifier_token5] = ACTIONS(2000), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2069), + [anon_sym_DOT_DOT] = ACTIONS(2002), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), - [anon_sym_DOT_DOT_LT] = ACTIONS(2071), - [aux_sym__val_number_decimal_token1] = ACTIONS(2073), - [aux_sym__val_number_decimal_token2] = ACTIONS(2075), - [aux_sym__val_number_decimal_token3] = ACTIONS(2077), - [aux_sym__val_number_decimal_token4] = ACTIONS(2077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), + [anon_sym_DOT_DOT_LT] = ACTIONS(2004), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2008), + [aux_sym__val_number_decimal_token3] = ACTIONS(2010), + [aux_sym__val_number_decimal_token4] = ACTIONS(2010), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2079), + [sym_val_date] = ACTIONS(2012), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(591)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1641), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1479), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1410), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(858), - [sym__unquoted_with_expr] = STATE(1072), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(2074), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1965), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1761), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(754), + [sym__unquoted_with_expr] = STATE(1070), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(591), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2065), - [aux_sym_cmd_identifier_token3] = ACTIONS(2067), - [aux_sym_cmd_identifier_token4] = ACTIONS(2067), - [aux_sym_cmd_identifier_token5] = ACTIONS(2067), - [sym__newline] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1996), + [anon_sym_false] = ACTIONS(1996), + [anon_sym_null] = ACTIONS(1998), + [aux_sym_cmd_identifier_token3] = ACTIONS(2000), + [aux_sym_cmd_identifier_token4] = ACTIONS(2000), + [aux_sym_cmd_identifier_token5] = ACTIONS(2000), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2069), + [anon_sym_DOT_DOT] = ACTIONS(2002), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), - [anon_sym_DOT_DOT_LT] = ACTIONS(2071), - [aux_sym__val_number_decimal_token1] = ACTIONS(2073), - [aux_sym__val_number_decimal_token2] = ACTIONS(2075), - [aux_sym__val_number_decimal_token3] = ACTIONS(2077), - [aux_sym__val_number_decimal_token4] = ACTIONS(2077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), + [anon_sym_DOT_DOT_LT] = ACTIONS(2004), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2008), + [aux_sym__val_number_decimal_token3] = ACTIONS(2010), + [aux_sym__val_number_decimal_token4] = ACTIONS(2010), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2079), + [sym_val_date] = ACTIONS(2012), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(592)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1643), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1479), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1410), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(859), - [sym__unquoted_with_expr] = STATE(1075), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(2076), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1965), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1761), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(755), + [sym__unquoted_with_expr] = STATE(1072), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(592), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2065), - [aux_sym_cmd_identifier_token3] = ACTIONS(2067), - [aux_sym_cmd_identifier_token4] = ACTIONS(2067), - [aux_sym_cmd_identifier_token5] = ACTIONS(2067), - [sym__newline] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1996), + [anon_sym_false] = ACTIONS(1996), + [anon_sym_null] = ACTIONS(1998), + [aux_sym_cmd_identifier_token3] = ACTIONS(2000), + [aux_sym_cmd_identifier_token4] = ACTIONS(2000), + [aux_sym_cmd_identifier_token5] = ACTIONS(2000), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2069), + [anon_sym_DOT_DOT] = ACTIONS(2002), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), - [anon_sym_DOT_DOT_LT] = ACTIONS(2071), - [aux_sym__val_number_decimal_token1] = ACTIONS(2073), - [aux_sym__val_number_decimal_token2] = ACTIONS(2075), - [aux_sym__val_number_decimal_token3] = ACTIONS(2077), - [aux_sym__val_number_decimal_token4] = ACTIONS(2077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), + [anon_sym_DOT_DOT_LT] = ACTIONS(2004), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2008), + [aux_sym__val_number_decimal_token3] = ACTIONS(2010), + [aux_sym__val_number_decimal_token4] = ACTIONS(2010), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2079), + [sym_val_date] = ACTIONS(2012), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(593)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1645), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1479), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1410), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(860), + [aux_sym__repeat_newline] = STATE(608), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(2078), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1965), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1761), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(756), [sym__unquoted_with_expr] = STATE(1077), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(593), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2065), - [aux_sym_cmd_identifier_token3] = ACTIONS(2067), - [aux_sym_cmd_identifier_token4] = ACTIONS(2067), - [aux_sym_cmd_identifier_token5] = ACTIONS(2067), - [sym__newline] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1996), + [anon_sym_false] = ACTIONS(1996), + [anon_sym_null] = ACTIONS(1998), + [aux_sym_cmd_identifier_token3] = ACTIONS(2000), + [aux_sym_cmd_identifier_token4] = ACTIONS(2000), + [aux_sym_cmd_identifier_token5] = ACTIONS(2000), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2069), + [anon_sym_DOT_DOT] = ACTIONS(2002), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), - [anon_sym_DOT_DOT_LT] = ACTIONS(2071), - [aux_sym__val_number_decimal_token1] = ACTIONS(2073), - [aux_sym__val_number_decimal_token2] = ACTIONS(2075), - [aux_sym__val_number_decimal_token3] = ACTIONS(2077), - [aux_sym__val_number_decimal_token4] = ACTIONS(2077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), + [anon_sym_DOT_DOT_LT] = ACTIONS(2004), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2008), + [aux_sym__val_number_decimal_token3] = ACTIONS(2010), + [aux_sym__val_number_decimal_token4] = ACTIONS(2010), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2079), + [sym_val_date] = ACTIONS(2012), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(594)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1079), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1479), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1410), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(861), + [aux_sym__repeat_newline] = STATE(609), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(2079), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1965), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1761), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(757), [sym__unquoted_with_expr] = STATE(1080), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(594), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2065), - [aux_sym_cmd_identifier_token3] = ACTIONS(2067), - [aux_sym_cmd_identifier_token4] = ACTIONS(2067), - [aux_sym_cmd_identifier_token5] = ACTIONS(2067), - [sym__newline] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1996), + [anon_sym_false] = ACTIONS(1996), + [anon_sym_null] = ACTIONS(1998), + [aux_sym_cmd_identifier_token3] = ACTIONS(2000), + [aux_sym_cmd_identifier_token4] = ACTIONS(2000), + [aux_sym_cmd_identifier_token5] = ACTIONS(2000), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2069), + [anon_sym_DOT_DOT] = ACTIONS(2002), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), - [anon_sym_DOT_DOT_LT] = ACTIONS(2071), - [aux_sym__val_number_decimal_token1] = ACTIONS(2073), - [aux_sym__val_number_decimal_token2] = ACTIONS(2075), - [aux_sym__val_number_decimal_token3] = ACTIONS(2077), - [aux_sym__val_number_decimal_token4] = ACTIONS(2077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), + [anon_sym_DOT_DOT_LT] = ACTIONS(2004), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2008), + [aux_sym__val_number_decimal_token3] = ACTIONS(2010), + [aux_sym__val_number_decimal_token4] = ACTIONS(2010), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2079), + [sym_val_date] = ACTIONS(2012), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(595)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1647), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1479), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1410), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(862), - [sym__unquoted_with_expr] = STATE(1084), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(610), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(2080), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1965), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1761), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(759), + [sym__unquoted_with_expr] = STATE(1083), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(595), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2065), - [aux_sym_cmd_identifier_token3] = ACTIONS(2067), - [aux_sym_cmd_identifier_token4] = ACTIONS(2067), - [aux_sym_cmd_identifier_token5] = ACTIONS(2067), - [sym__newline] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1996), + [anon_sym_false] = ACTIONS(1996), + [anon_sym_null] = ACTIONS(1998), + [aux_sym_cmd_identifier_token3] = ACTIONS(2000), + [aux_sym_cmd_identifier_token4] = ACTIONS(2000), + [aux_sym_cmd_identifier_token5] = ACTIONS(2000), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2069), + [anon_sym_DOT_DOT] = ACTIONS(2002), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), - [anon_sym_DOT_DOT_LT] = ACTIONS(2071), - [aux_sym__val_number_decimal_token1] = ACTIONS(2073), - [aux_sym__val_number_decimal_token2] = ACTIONS(2075), - [aux_sym__val_number_decimal_token3] = ACTIONS(2077), - [aux_sym__val_number_decimal_token4] = ACTIONS(2077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), + [anon_sym_DOT_DOT_LT] = ACTIONS(2004), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2008), + [aux_sym__val_number_decimal_token3] = ACTIONS(2010), + [aux_sym__val_number_decimal_token4] = ACTIONS(2010), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2079), + [sym_val_date] = ACTIONS(2012), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(596)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1649), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1479), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1410), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(863), - [sym__unquoted_with_expr] = STATE(1086), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(611), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(2081), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1965), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1761), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(760), + [sym__unquoted_with_expr] = STATE(1094), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(596), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2065), - [aux_sym_cmd_identifier_token3] = ACTIONS(2067), - [aux_sym_cmd_identifier_token4] = ACTIONS(2067), - [aux_sym_cmd_identifier_token5] = ACTIONS(2067), - [sym__newline] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1996), + [anon_sym_false] = ACTIONS(1996), + [anon_sym_null] = ACTIONS(1998), + [aux_sym_cmd_identifier_token3] = ACTIONS(2000), + [aux_sym_cmd_identifier_token4] = ACTIONS(2000), + [aux_sym_cmd_identifier_token5] = ACTIONS(2000), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2069), + [anon_sym_DOT_DOT] = ACTIONS(2002), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), - [anon_sym_DOT_DOT_LT] = ACTIONS(2071), - [aux_sym__val_number_decimal_token1] = ACTIONS(2073), - [aux_sym__val_number_decimal_token2] = ACTIONS(2075), - [aux_sym__val_number_decimal_token3] = ACTIONS(2077), - [aux_sym__val_number_decimal_token4] = ACTIONS(2077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), + [anon_sym_DOT_DOT_LT] = ACTIONS(2004), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2008), + [aux_sym__val_number_decimal_token3] = ACTIONS(2010), + [aux_sym__val_number_decimal_token4] = ACTIONS(2010), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2079), + [sym_val_date] = ACTIONS(2012), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(597)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1651), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1479), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1410), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(864), - [sym__unquoted_with_expr] = STATE(1088), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(612), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(2082), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1965), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1761), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(762), + [sym__unquoted_with_expr] = STATE(1096), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(597), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2065), - [aux_sym_cmd_identifier_token3] = ACTIONS(2067), - [aux_sym_cmd_identifier_token4] = ACTIONS(2067), - [aux_sym_cmd_identifier_token5] = ACTIONS(2067), - [sym__newline] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1996), + [anon_sym_false] = ACTIONS(1996), + [anon_sym_null] = ACTIONS(1998), + [aux_sym_cmd_identifier_token3] = ACTIONS(2000), + [aux_sym_cmd_identifier_token4] = ACTIONS(2000), + [aux_sym_cmd_identifier_token5] = ACTIONS(2000), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2069), + [anon_sym_DOT_DOT] = ACTIONS(2002), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), - [anon_sym_DOT_DOT_LT] = ACTIONS(2071), - [aux_sym__val_number_decimal_token1] = ACTIONS(2073), - [aux_sym__val_number_decimal_token2] = ACTIONS(2075), - [aux_sym__val_number_decimal_token3] = ACTIONS(2077), - [aux_sym__val_number_decimal_token4] = ACTIONS(2077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), + [anon_sym_DOT_DOT_LT] = ACTIONS(2004), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2008), + [aux_sym__val_number_decimal_token3] = ACTIONS(2010), + [aux_sym__val_number_decimal_token4] = ACTIONS(2010), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2079), + [sym_val_date] = ACTIONS(2012), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(598)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1653), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1479), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1410), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(865), - [sym__unquoted_with_expr] = STATE(1090), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(613), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(2084), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1965), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1761), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(763), + [sym__unquoted_with_expr] = STATE(1097), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(598), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2065), - [aux_sym_cmd_identifier_token3] = ACTIONS(2067), - [aux_sym_cmd_identifier_token4] = ACTIONS(2067), - [aux_sym_cmd_identifier_token5] = ACTIONS(2067), - [sym__newline] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1996), + [anon_sym_false] = ACTIONS(1996), + [anon_sym_null] = ACTIONS(1998), + [aux_sym_cmd_identifier_token3] = ACTIONS(2000), + [aux_sym_cmd_identifier_token4] = ACTIONS(2000), + [aux_sym_cmd_identifier_token5] = ACTIONS(2000), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2069), + [anon_sym_DOT_DOT] = ACTIONS(2002), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), - [anon_sym_DOT_DOT_LT] = ACTIONS(2071), - [aux_sym__val_number_decimal_token1] = ACTIONS(2073), - [aux_sym__val_number_decimal_token2] = ACTIONS(2075), - [aux_sym__val_number_decimal_token3] = ACTIONS(2077), - [aux_sym__val_number_decimal_token4] = ACTIONS(2077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), + [anon_sym_DOT_DOT_LT] = ACTIONS(2004), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2008), + [aux_sym__val_number_decimal_token3] = ACTIONS(2010), + [aux_sym__val_number_decimal_token4] = ACTIONS(2010), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2079), + [sym_val_date] = ACTIONS(2012), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(599)] = { - [sym_expr_parenthesized] = STATE(4132), - [sym__spread_parenthesized] = STATE(4915), - [sym_val_range] = STATE(4939), - [sym__val_range] = STATE(4693), - [sym__value] = STATE(4939), - [sym_val_nothing] = STATE(4538), - [sym_val_bool] = STATE(4320), - [sym__spread_variable] = STATE(4943), - [sym_val_variable] = STATE(3965), - [sym_val_cellpath] = STATE(4538), - [sym_val_number] = STATE(4538), - [sym__val_number_decimal] = STATE(3621), - [sym__val_number] = STATE(4386), - [sym_val_duration] = STATE(4538), - [sym_val_filesize] = STATE(4538), - [sym_val_binary] = STATE(4538), - [sym_val_string] = STATE(4538), - [sym__raw_str] = STATE(3665), - [sym__str_double_quotes] = STATE(3665), - [sym__str_single_quotes] = STATE(3665), - [sym__str_back_ticks] = STATE(3665), - [sym_val_interpolated] = STATE(4538), - [sym__inter_single_quotes] = STATE(4680), - [sym__inter_double_quotes] = STATE(4683), - [sym_val_list] = STATE(4538), - [sym__spread_list] = STATE(4915), - [sym_val_entry] = STATE(4540), - [sym_val_record] = STATE(4538), - [sym_val_table] = STATE(4538), - [sym_val_closure] = STATE(4538), - [sym__unquoted_in_list] = STATE(4401), - [sym__unquoted_in_list_with_expr] = STATE(4939), - [sym__unquoted_anonymous_prefix] = STATE(4693), + [aux_sym__repeat_newline] = STATE(614), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(2086), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1965), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1761), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(787), + [sym__unquoted_with_expr] = STATE(987), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(599), - [aux_sym_list_body_repeat1] = STATE(532), - [anon_sym_true] = ACTIONS(1468), - [anon_sym_false] = ACTIONS(1468), - [anon_sym_null] = ACTIONS(1470), - [aux_sym_cmd_identifier_token3] = ACTIONS(1472), - [aux_sym_cmd_identifier_token4] = ACTIONS(1472), - [aux_sym_cmd_identifier_token5] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1588), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1482), - [anon_sym_DOT_DOT] = ACTIONS(1484), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1486), - [anon_sym_DOT_DOT_LT] = ACTIONS(1486), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1488), - [aux_sym__val_number_decimal_token2] = ACTIONS(1490), - [aux_sym__val_number_decimal_token3] = ACTIONS(1492), - [aux_sym__val_number_decimal_token4] = ACTIONS(1492), - [aux_sym__val_number_token1] = ACTIONS(1414), - [aux_sym__val_number_token2] = ACTIONS(1414), - [aux_sym__val_number_token3] = ACTIONS(1414), - [anon_sym_0b] = ACTIONS(1416), - [anon_sym_0o] = ACTIONS(1418), - [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1494), - [anon_sym_DQUOTE] = ACTIONS(1422), - [anon_sym_SQUOTE] = ACTIONS(1424), - [anon_sym_BQUOTE] = ACTIONS(1426), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1428), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1430), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1432), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), + [anon_sym_true] = ACTIONS(1996), + [anon_sym_false] = ACTIONS(1996), + [anon_sym_null] = ACTIONS(1998), + [aux_sym_cmd_identifier_token3] = ACTIONS(2000), + [aux_sym_cmd_identifier_token4] = ACTIONS(2000), + [aux_sym_cmd_identifier_token5] = ACTIONS(2000), + [sym__newline] = ACTIONS(1929), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2002), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), + [anon_sym_DOT_DOT_LT] = ACTIONS(2004), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2008), + [aux_sym__val_number_decimal_token3] = ACTIONS(2010), + [aux_sym__val_number_decimal_token4] = ACTIONS(2010), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2012), + [anon_sym_DQUOTE] = 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(1943), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1436), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(600)] = { - [aux_sym__repeat_newline] = STATE(618), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1196), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(942), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(438), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(779), - [sym__unquoted_with_expr] = STATE(1059), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(615), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(2088), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1965), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1761), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(789), + [sym__unquoted_with_expr] = STATE(1139), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(600), - [anon_sym_true] = ACTIONS(1938), - [anon_sym_false] = ACTIONS(1938), - [anon_sym_null] = ACTIONS(1940), - [aux_sym_cmd_identifier_token3] = ACTIONS(1942), - [aux_sym_cmd_identifier_token4] = ACTIONS(1942), - [aux_sym_cmd_identifier_token5] = ACTIONS(1942), - [sym__newline] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1996), + [anon_sym_false] = ACTIONS(1996), + [anon_sym_null] = ACTIONS(1998), + [aux_sym_cmd_identifier_token3] = ACTIONS(2000), + [aux_sym_cmd_identifier_token4] = ACTIONS(2000), + [aux_sym_cmd_identifier_token5] = ACTIONS(2000), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1944), + [anon_sym_DOT_DOT] = ACTIONS(2002), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), - [anon_sym_DOT_DOT_LT] = ACTIONS(1946), - [aux_sym__val_number_decimal_token1] = ACTIONS(1948), - [aux_sym__val_number_decimal_token2] = ACTIONS(1950), - [aux_sym__val_number_decimal_token3] = ACTIONS(1952), - [aux_sym__val_number_decimal_token4] = ACTIONS(1952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), + [anon_sym_DOT_DOT_LT] = ACTIONS(2004), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2008), + [aux_sym__val_number_decimal_token3] = ACTIONS(2010), + [aux_sym__val_number_decimal_token4] = ACTIONS(2010), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1954), + [sym_val_date] = ACTIONS(2012), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(601)] = { + [aux_sym__repeat_newline] = STATE(616), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1009), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1965), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1761), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(810), + [sym__unquoted_with_expr] = STATE(1011), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(601), - [ts_builtin_sym_end] = ACTIONS(1744), - [anon_sym_in] = ACTIONS(1744), - [sym__newline] = ACTIONS(1744), - [anon_sym_SEMI] = ACTIONS(1744), - [anon_sym_PIPE] = ACTIONS(1744), - [anon_sym_err_GT_PIPE] = ACTIONS(1744), - [anon_sym_out_GT_PIPE] = ACTIONS(1744), - [anon_sym_e_GT_PIPE] = ACTIONS(1744), - [anon_sym_o_GT_PIPE] = ACTIONS(1744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1744), - [anon_sym_GT2] = ACTIONS(1746), - [anon_sym_DASH2] = ACTIONS(1744), - [anon_sym_STAR2] = ACTIONS(1746), - [anon_sym_and2] = ACTIONS(1744), - [anon_sym_xor2] = ACTIONS(1744), - [anon_sym_or2] = ACTIONS(1744), - [anon_sym_not_DASHin2] = ACTIONS(1744), - [anon_sym_has2] = ACTIONS(1744), - [anon_sym_not_DASHhas2] = ACTIONS(1744), - [anon_sym_starts_DASHwith2] = ACTIONS(1744), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1744), - [anon_sym_ends_DASHwith2] = ACTIONS(1744), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1744), - [anon_sym_EQ_EQ2] = ACTIONS(1744), - [anon_sym_BANG_EQ2] = ACTIONS(1744), - [anon_sym_LT2] = ACTIONS(1746), - [anon_sym_LT_EQ2] = ACTIONS(1744), - [anon_sym_GT_EQ2] = ACTIONS(1744), - [anon_sym_EQ_TILDE2] = ACTIONS(1744), - [anon_sym_BANG_TILDE2] = ACTIONS(1744), - [anon_sym_like2] = ACTIONS(1744), - [anon_sym_not_DASHlike2] = ACTIONS(1744), - [anon_sym_LPAREN2] = ACTIONS(1744), - [anon_sym_STAR_STAR2] = ACTIONS(1744), - [anon_sym_PLUS_PLUS2] = ACTIONS(1744), - [anon_sym_SLASH2] = ACTIONS(1746), - [anon_sym_mod2] = ACTIONS(1744), - [anon_sym_SLASH_SLASH2] = ACTIONS(1744), - [anon_sym_PLUS2] = ACTIONS(1746), - [anon_sym_bit_DASHshl2] = ACTIONS(1744), - [anon_sym_bit_DASHshr2] = ACTIONS(1744), - [anon_sym_bit_DASHand2] = ACTIONS(1744), - [anon_sym_bit_DASHxor2] = ACTIONS(1744), - [anon_sym_bit_DASHor2] = ACTIONS(1744), - [anon_sym_DOT_DOT2] = ACTIONS(1746), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1744), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1744), - [aux_sym__immediate_decimal_token5] = ACTIONS(1910), - [anon_sym_err_GT] = ACTIONS(1746), - [anon_sym_out_GT] = ACTIONS(1746), - [anon_sym_e_GT] = ACTIONS(1746), - [anon_sym_o_GT] = ACTIONS(1746), - [anon_sym_err_PLUSout_GT] = ACTIONS(1746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1746), - [anon_sym_o_PLUSe_GT] = ACTIONS(1746), - [anon_sym_e_PLUSo_GT] = ACTIONS(1746), - [anon_sym_err_GT_GT] = ACTIONS(1744), - [anon_sym_out_GT_GT] = ACTIONS(1744), - [anon_sym_e_GT_GT] = ACTIONS(1744), - [anon_sym_o_GT_GT] = ACTIONS(1744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1744), - [sym__unquoted_pattern] = ACTIONS(1746), + [anon_sym_true] = ACTIONS(1996), + [anon_sym_false] = ACTIONS(1996), + [anon_sym_null] = ACTIONS(1998), + [aux_sym_cmd_identifier_token3] = ACTIONS(2000), + [aux_sym_cmd_identifier_token4] = ACTIONS(2000), + [aux_sym_cmd_identifier_token5] = ACTIONS(2000), + [sym__newline] = ACTIONS(1929), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2002), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), + [anon_sym_DOT_DOT_LT] = ACTIONS(2004), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2008), + [aux_sym__val_number_decimal_token3] = ACTIONS(2010), + [aux_sym__val_number_decimal_token4] = ACTIONS(2010), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2012), + [anon_sym_DQUOTE] = 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(1943), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(602)] = { - [aux_sym__repeat_newline] = STATE(623), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1205), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(942), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(438), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(780), - [sym__unquoted_with_expr] = STATE(1071), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(617), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(2089), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1965), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1761), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(823), + [sym__unquoted_with_expr] = STATE(1019), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(602), - [anon_sym_true] = ACTIONS(1938), - [anon_sym_false] = ACTIONS(1938), - [anon_sym_null] = ACTIONS(1940), - [aux_sym_cmd_identifier_token3] = ACTIONS(1942), - [aux_sym_cmd_identifier_token4] = ACTIONS(1942), - [aux_sym_cmd_identifier_token5] = ACTIONS(1942), - [sym__newline] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1996), + [anon_sym_false] = ACTIONS(1996), + [anon_sym_null] = ACTIONS(1998), + [aux_sym_cmd_identifier_token3] = ACTIONS(2000), + [aux_sym_cmd_identifier_token4] = ACTIONS(2000), + [aux_sym_cmd_identifier_token5] = ACTIONS(2000), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1944), + [anon_sym_DOT_DOT] = ACTIONS(2002), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), - [anon_sym_DOT_DOT_LT] = ACTIONS(1946), - [aux_sym__val_number_decimal_token1] = ACTIONS(1948), - [aux_sym__val_number_decimal_token2] = ACTIONS(1950), - [aux_sym__val_number_decimal_token3] = ACTIONS(1952), - [aux_sym__val_number_decimal_token4] = ACTIONS(1952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), + [anon_sym_DOT_DOT_LT] = ACTIONS(2004), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2008), + [aux_sym__val_number_decimal_token3] = ACTIONS(2010), + [aux_sym__val_number_decimal_token4] = ACTIONS(2010), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1954), + [sym_val_date] = ACTIONS(2012), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(603)] = { - [aux_sym__repeat_newline] = STATE(628), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1216), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(942), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(438), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(781), - [sym__unquoted_with_expr] = STATE(1092), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(618), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(2090), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1965), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1761), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(825), + [sym__unquoted_with_expr] = STATE(1021), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(603), - [anon_sym_true] = ACTIONS(1938), - [anon_sym_false] = ACTIONS(1938), - [anon_sym_null] = ACTIONS(1940), - [aux_sym_cmd_identifier_token3] = ACTIONS(1942), - [aux_sym_cmd_identifier_token4] = ACTIONS(1942), - [aux_sym_cmd_identifier_token5] = ACTIONS(1942), - [sym__newline] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1996), + [anon_sym_false] = ACTIONS(1996), + [anon_sym_null] = ACTIONS(1998), + [aux_sym_cmd_identifier_token3] = ACTIONS(2000), + [aux_sym_cmd_identifier_token4] = ACTIONS(2000), + [aux_sym_cmd_identifier_token5] = ACTIONS(2000), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1944), + [anon_sym_DOT_DOT] = ACTIONS(2002), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), - [anon_sym_DOT_DOT_LT] = ACTIONS(1946), - [aux_sym__val_number_decimal_token1] = ACTIONS(1948), - [aux_sym__val_number_decimal_token2] = ACTIONS(1950), - [aux_sym__val_number_decimal_token3] = ACTIONS(1952), - [aux_sym__val_number_decimal_token4] = ACTIONS(1952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), + [anon_sym_DOT_DOT_LT] = ACTIONS(2004), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2008), + [aux_sym__val_number_decimal_token3] = ACTIONS(2010), + [aux_sym__val_number_decimal_token4] = ACTIONS(2010), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1954), + [sym_val_date] = ACTIONS(2012), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(604)] = { - [aux_sym__repeat_newline] = STATE(608), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1165), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(942), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(438), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(774), - [sym__unquoted_with_expr] = STATE(1032), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(619), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(2091), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1965), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1761), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(827), + [sym__unquoted_with_expr] = STATE(1023), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(604), - [anon_sym_true] = ACTIONS(1938), - [anon_sym_false] = ACTIONS(1938), - [anon_sym_null] = ACTIONS(1940), - [aux_sym_cmd_identifier_token3] = ACTIONS(1942), - [aux_sym_cmd_identifier_token4] = ACTIONS(1942), - [aux_sym_cmd_identifier_token5] = ACTIONS(1942), - [sym__newline] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1996), + [anon_sym_false] = ACTIONS(1996), + [anon_sym_null] = ACTIONS(1998), + [aux_sym_cmd_identifier_token3] = ACTIONS(2000), + [aux_sym_cmd_identifier_token4] = ACTIONS(2000), + [aux_sym_cmd_identifier_token5] = ACTIONS(2000), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1944), + [anon_sym_DOT_DOT] = ACTIONS(2002), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), - [anon_sym_DOT_DOT_LT] = ACTIONS(1946), - [aux_sym__val_number_decimal_token1] = ACTIONS(1948), - [aux_sym__val_number_decimal_token2] = ACTIONS(1950), - [aux_sym__val_number_decimal_token3] = ACTIONS(1952), - [aux_sym__val_number_decimal_token4] = ACTIONS(1952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), + [anon_sym_DOT_DOT_LT] = ACTIONS(2004), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2008), + [aux_sym__val_number_decimal_token3] = ACTIONS(2010), + [aux_sym__val_number_decimal_token4] = ACTIONS(2010), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1954), + [sym_val_date] = ACTIONS(2012), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(605)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1218), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(942), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(438), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(862), - [sym__unquoted_with_expr] = STATE(1084), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(620), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(2092), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1965), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1761), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(829), + [sym__unquoted_with_expr] = STATE(1025), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(605), - [anon_sym_true] = ACTIONS(1938), - [anon_sym_false] = ACTIONS(1938), - [anon_sym_null] = ACTIONS(1940), - [aux_sym_cmd_identifier_token3] = ACTIONS(1942), - [aux_sym_cmd_identifier_token4] = ACTIONS(1942), - [aux_sym_cmd_identifier_token5] = ACTIONS(1942), - [sym__newline] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1996), + [anon_sym_false] = ACTIONS(1996), + [anon_sym_null] = ACTIONS(1998), + [aux_sym_cmd_identifier_token3] = ACTIONS(2000), + [aux_sym_cmd_identifier_token4] = ACTIONS(2000), + [aux_sym_cmd_identifier_token5] = ACTIONS(2000), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1944), + [anon_sym_DOT_DOT] = ACTIONS(2002), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), - [anon_sym_DOT_DOT_LT] = ACTIONS(1946), - [aux_sym__val_number_decimal_token1] = ACTIONS(1948), - [aux_sym__val_number_decimal_token2] = ACTIONS(1950), - [aux_sym__val_number_decimal_token3] = ACTIONS(1952), - [aux_sym__val_number_decimal_token4] = ACTIONS(1952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), + [anon_sym_DOT_DOT_LT] = ACTIONS(2004), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2008), + [aux_sym__val_number_decimal_token3] = ACTIONS(2010), + [aux_sym__val_number_decimal_token4] = ACTIONS(2010), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1954), + [sym_val_date] = ACTIONS(2012), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(606)] = { - [sym_path] = STATE(720), + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1106), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(469), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(907), + [sym__unquoted_with_expr] = STATE(1107), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(606), - [aux_sym__where_predicate_lhs_repeat1] = STATE(606), - [ts_builtin_sym_end] = ACTIONS(1510), - [anon_sym_in] = ACTIONS(1510), - [sym__newline] = ACTIONS(1510), - [anon_sym_SEMI] = ACTIONS(1510), - [anon_sym_PIPE] = ACTIONS(1510), - [anon_sym_err_GT_PIPE] = ACTIONS(1510), - [anon_sym_out_GT_PIPE] = ACTIONS(1510), - [anon_sym_e_GT_PIPE] = ACTIONS(1510), - [anon_sym_o_GT_PIPE] = ACTIONS(1510), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1510), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1510), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1510), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1510), - [anon_sym_GT2] = ACTIONS(1508), - [anon_sym_DASH2] = ACTIONS(1510), - [anon_sym_STAR2] = ACTIONS(1508), - [anon_sym_and2] = ACTIONS(1510), - [anon_sym_xor2] = ACTIONS(1510), - [anon_sym_or2] = ACTIONS(1510), - [anon_sym_not_DASHin2] = ACTIONS(1510), - [anon_sym_has2] = ACTIONS(1510), - [anon_sym_not_DASHhas2] = ACTIONS(1510), - [anon_sym_starts_DASHwith2] = ACTIONS(1510), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1510), - [anon_sym_ends_DASHwith2] = ACTIONS(1510), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1510), - [anon_sym_EQ_EQ2] = ACTIONS(1510), - [anon_sym_BANG_EQ2] = ACTIONS(1510), - [anon_sym_LT2] = ACTIONS(1508), - [anon_sym_LT_EQ2] = ACTIONS(1510), - [anon_sym_GT_EQ2] = ACTIONS(1510), - [anon_sym_EQ_TILDE2] = ACTIONS(1510), - [anon_sym_BANG_TILDE2] = ACTIONS(1510), - [anon_sym_like2] = ACTIONS(1510), - [anon_sym_not_DASHlike2] = ACTIONS(1510), - [anon_sym_STAR_STAR2] = ACTIONS(1510), - [anon_sym_PLUS_PLUS2] = ACTIONS(1510), - [anon_sym_SLASH2] = ACTIONS(1508), - [anon_sym_mod2] = ACTIONS(1510), - [anon_sym_SLASH_SLASH2] = ACTIONS(1510), - [anon_sym_PLUS2] = ACTIONS(1508), - [anon_sym_bit_DASHshl2] = ACTIONS(1510), - [anon_sym_bit_DASHshr2] = ACTIONS(1510), - [anon_sym_bit_DASHand2] = ACTIONS(1510), - [anon_sym_bit_DASHxor2] = ACTIONS(1510), - [anon_sym_bit_DASHor2] = ACTIONS(1510), - [anon_sym_DOT_DOT2] = ACTIONS(1508), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1510), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1510), - [anon_sym_DOT2] = ACTIONS(2083), - [anon_sym_err_GT] = ACTIONS(1508), - [anon_sym_out_GT] = ACTIONS(1508), - [anon_sym_e_GT] = ACTIONS(1508), - [anon_sym_o_GT] = ACTIONS(1508), - [anon_sym_err_PLUSout_GT] = ACTIONS(1508), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1508), - [anon_sym_o_PLUSe_GT] = ACTIONS(1508), - [anon_sym_e_PLUSo_GT] = ACTIONS(1508), - [anon_sym_err_GT_GT] = ACTIONS(1510), - [anon_sym_out_GT_GT] = ACTIONS(1510), - [anon_sym_e_GT_GT] = ACTIONS(1510), - [anon_sym_o_GT_GT] = ACTIONS(1510), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1510), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1510), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1510), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1510), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1947), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [sym__newline] = ACTIONS(1929), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1951), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), + [anon_sym_DOT_DOT_LT] = ACTIONS(1953), + [aux_sym__val_number_decimal_token1] = ACTIONS(1955), + [aux_sym__val_number_decimal_token2] = ACTIONS(1957), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1961), + [anon_sym_DQUOTE] = 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(1943), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(607)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1139), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(942), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(438), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(795), - [sym__unquoted_with_expr] = STATE(984), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1276), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(469), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(908), + [sym__unquoted_with_expr] = STATE(1110), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(607), - [anon_sym_true] = ACTIONS(1938), - [anon_sym_false] = ACTIONS(1938), - [anon_sym_null] = ACTIONS(1940), - [aux_sym_cmd_identifier_token3] = ACTIONS(1942), - [aux_sym_cmd_identifier_token4] = ACTIONS(1942), - [aux_sym_cmd_identifier_token5] = ACTIONS(1942), - [sym__newline] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1947), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1944), + [anon_sym_DOT_DOT] = ACTIONS(1951), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), - [anon_sym_DOT_DOT_LT] = ACTIONS(1946), - [aux_sym__val_number_decimal_token1] = ACTIONS(1948), - [aux_sym__val_number_decimal_token2] = ACTIONS(1950), - [aux_sym__val_number_decimal_token3] = ACTIONS(1952), - [aux_sym__val_number_decimal_token4] = ACTIONS(1952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), + [anon_sym_DOT_DOT_LT] = ACTIONS(1953), + [aux_sym__val_number_decimal_token1] = ACTIONS(1955), + [aux_sym__val_number_decimal_token2] = ACTIONS(1957), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1954), + [sym_val_date] = ACTIONS(1961), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(608)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1171), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(942), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(438), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(797), - [sym__unquoted_with_expr] = STATE(986), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(2107), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1965), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1761), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(886), + [sym__unquoted_with_expr] = STATE(1084), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(608), - [anon_sym_true] = ACTIONS(1938), - [anon_sym_false] = ACTIONS(1938), - [anon_sym_null] = ACTIONS(1940), - [aux_sym_cmd_identifier_token3] = ACTIONS(1942), - [aux_sym_cmd_identifier_token4] = ACTIONS(1942), - [aux_sym_cmd_identifier_token5] = ACTIONS(1942), - [sym__newline] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1996), + [anon_sym_false] = ACTIONS(1996), + [anon_sym_null] = ACTIONS(1998), + [aux_sym_cmd_identifier_token3] = ACTIONS(2000), + [aux_sym_cmd_identifier_token4] = ACTIONS(2000), + [aux_sym_cmd_identifier_token5] = ACTIONS(2000), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1944), + [anon_sym_DOT_DOT] = ACTIONS(2002), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), - [anon_sym_DOT_DOT_LT] = ACTIONS(1946), - [aux_sym__val_number_decimal_token1] = ACTIONS(1948), - [aux_sym__val_number_decimal_token2] = ACTIONS(1950), - [aux_sym__val_number_decimal_token3] = ACTIONS(1952), - [aux_sym__val_number_decimal_token4] = ACTIONS(1952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), + [anon_sym_DOT_DOT_LT] = ACTIONS(2004), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2008), + [aux_sym__val_number_decimal_token3] = ACTIONS(2010), + [aux_sym__val_number_decimal_token4] = ACTIONS(2010), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1954), + [sym_val_date] = ACTIONS(2012), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(609)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1180), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(942), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(438), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(798), - [sym__unquoted_with_expr] = STATE(988), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(2109), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1965), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1761), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(887), + [sym__unquoted_with_expr] = STATE(1086), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(609), - [anon_sym_true] = ACTIONS(1938), - [anon_sym_false] = ACTIONS(1938), - [anon_sym_null] = ACTIONS(1940), - [aux_sym_cmd_identifier_token3] = ACTIONS(1942), - [aux_sym_cmd_identifier_token4] = ACTIONS(1942), - [aux_sym_cmd_identifier_token5] = ACTIONS(1942), - [sym__newline] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1996), + [anon_sym_false] = ACTIONS(1996), + [anon_sym_null] = ACTIONS(1998), + [aux_sym_cmd_identifier_token3] = ACTIONS(2000), + [aux_sym_cmd_identifier_token4] = ACTIONS(2000), + [aux_sym_cmd_identifier_token5] = ACTIONS(2000), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1944), + [anon_sym_DOT_DOT] = ACTIONS(2002), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), - [anon_sym_DOT_DOT_LT] = ACTIONS(1946), - [aux_sym__val_number_decimal_token1] = ACTIONS(1948), - [aux_sym__val_number_decimal_token2] = ACTIONS(1950), - [aux_sym__val_number_decimal_token3] = ACTIONS(1952), - [aux_sym__val_number_decimal_token4] = ACTIONS(1952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), + [anon_sym_DOT_DOT_LT] = ACTIONS(2004), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2008), + [aux_sym__val_number_decimal_token3] = ACTIONS(2010), + [aux_sym__val_number_decimal_token4] = ACTIONS(2010), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1954), + [sym_val_date] = ACTIONS(2012), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(610)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1197), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(942), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(438), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(801), - [sym__unquoted_with_expr] = STATE(992), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(2111), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1965), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1761), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(888), + [sym__unquoted_with_expr] = STATE(1088), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(610), - [anon_sym_true] = ACTIONS(1938), - [anon_sym_false] = ACTIONS(1938), - [anon_sym_null] = ACTIONS(1940), - [aux_sym_cmd_identifier_token3] = ACTIONS(1942), - [aux_sym_cmd_identifier_token4] = ACTIONS(1942), - [aux_sym_cmd_identifier_token5] = ACTIONS(1942), - [sym__newline] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1996), + [anon_sym_false] = ACTIONS(1996), + [anon_sym_null] = ACTIONS(1998), + [aux_sym_cmd_identifier_token3] = ACTIONS(2000), + [aux_sym_cmd_identifier_token4] = ACTIONS(2000), + [aux_sym_cmd_identifier_token5] = ACTIONS(2000), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1944), + [anon_sym_DOT_DOT] = ACTIONS(2002), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), - [anon_sym_DOT_DOT_LT] = ACTIONS(1946), - [aux_sym__val_number_decimal_token1] = ACTIONS(1948), - [aux_sym__val_number_decimal_token2] = ACTIONS(1950), - [aux_sym__val_number_decimal_token3] = ACTIONS(1952), - [aux_sym__val_number_decimal_token4] = ACTIONS(1952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), + [anon_sym_DOT_DOT_LT] = ACTIONS(2004), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2008), + [aux_sym__val_number_decimal_token3] = ACTIONS(2010), + [aux_sym__val_number_decimal_token4] = ACTIONS(2010), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1954), + [sym_val_date] = ACTIONS(2012), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(611)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1217), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(942), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(438), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(802), - [sym__unquoted_with_expr] = STATE(994), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(2114), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1965), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1761), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(889), + [sym__unquoted_with_expr] = STATE(1090), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(611), - [anon_sym_true] = ACTIONS(1938), - [anon_sym_false] = ACTIONS(1938), - [anon_sym_null] = ACTIONS(1940), - [aux_sym_cmd_identifier_token3] = ACTIONS(1942), - [aux_sym_cmd_identifier_token4] = ACTIONS(1942), - [aux_sym_cmd_identifier_token5] = ACTIONS(1942), - [sym__newline] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1996), + [anon_sym_false] = ACTIONS(1996), + [anon_sym_null] = ACTIONS(1998), + [aux_sym_cmd_identifier_token3] = ACTIONS(2000), + [aux_sym_cmd_identifier_token4] = ACTIONS(2000), + [aux_sym_cmd_identifier_token5] = ACTIONS(2000), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1944), + [anon_sym_DOT_DOT] = ACTIONS(2002), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), - [anon_sym_DOT_DOT_LT] = ACTIONS(1946), - [aux_sym__val_number_decimal_token1] = ACTIONS(1948), - [aux_sym__val_number_decimal_token2] = ACTIONS(1950), - [aux_sym__val_number_decimal_token3] = ACTIONS(1952), - [aux_sym__val_number_decimal_token4] = ACTIONS(1952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), + [anon_sym_DOT_DOT_LT] = ACTIONS(2004), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2008), + [aux_sym__val_number_decimal_token3] = ACTIONS(2010), + [aux_sym__val_number_decimal_token4] = ACTIONS(2010), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1954), + [sym_val_date] = ACTIONS(2012), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(612)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1259), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(942), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(438), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(808), - [sym__unquoted_with_expr] = STATE(1011), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(2116), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1965), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1761), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(890), + [sym__unquoted_with_expr] = STATE(1092), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(612), - [anon_sym_true] = ACTIONS(1938), - [anon_sym_false] = ACTIONS(1938), - [anon_sym_null] = ACTIONS(1940), - [aux_sym_cmd_identifier_token3] = ACTIONS(1942), - [aux_sym_cmd_identifier_token4] = ACTIONS(1942), - [aux_sym_cmd_identifier_token5] = ACTIONS(1942), - [sym__newline] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1996), + [anon_sym_false] = ACTIONS(1996), + [anon_sym_null] = ACTIONS(1998), + [aux_sym_cmd_identifier_token3] = ACTIONS(2000), + [aux_sym_cmd_identifier_token4] = ACTIONS(2000), + [aux_sym_cmd_identifier_token5] = ACTIONS(2000), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1944), + [anon_sym_DOT_DOT] = ACTIONS(2002), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), - [anon_sym_DOT_DOT_LT] = ACTIONS(1946), - [aux_sym__val_number_decimal_token1] = ACTIONS(1948), - [aux_sym__val_number_decimal_token2] = ACTIONS(1950), - [aux_sym__val_number_decimal_token3] = ACTIONS(1952), - [aux_sym__val_number_decimal_token4] = ACTIONS(1952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), + [anon_sym_DOT_DOT_LT] = ACTIONS(2004), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2008), + [aux_sym__val_number_decimal_token3] = ACTIONS(2010), + [aux_sym__val_number_decimal_token4] = ACTIONS(2010), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1954), + [sym_val_date] = ACTIONS(2012), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(613)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1264), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(942), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(438), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(809), - [sym__unquoted_with_expr] = STATE(1013), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(2118), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1965), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1761), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(891), + [sym__unquoted_with_expr] = STATE(1099), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(613), - [anon_sym_true] = ACTIONS(1938), - [anon_sym_false] = ACTIONS(1938), - [anon_sym_null] = ACTIONS(1940), - [aux_sym_cmd_identifier_token3] = ACTIONS(1942), - [aux_sym_cmd_identifier_token4] = ACTIONS(1942), - [aux_sym_cmd_identifier_token5] = ACTIONS(1942), - [sym__newline] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1996), + [anon_sym_false] = ACTIONS(1996), + [anon_sym_null] = ACTIONS(1998), + [aux_sym_cmd_identifier_token3] = ACTIONS(2000), + [aux_sym_cmd_identifier_token4] = ACTIONS(2000), + [aux_sym_cmd_identifier_token5] = ACTIONS(2000), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1944), + [anon_sym_DOT_DOT] = ACTIONS(2002), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), - [anon_sym_DOT_DOT_LT] = ACTIONS(1946), - [aux_sym__val_number_decimal_token1] = ACTIONS(1948), - [aux_sym__val_number_decimal_token2] = ACTIONS(1950), - [aux_sym__val_number_decimal_token3] = ACTIONS(1952), - [aux_sym__val_number_decimal_token4] = ACTIONS(1952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), + [anon_sym_DOT_DOT_LT] = ACTIONS(2004), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2008), + [aux_sym__val_number_decimal_token3] = ACTIONS(2010), + [aux_sym__val_number_decimal_token4] = ACTIONS(2010), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1954), + [sym_val_date] = ACTIONS(2012), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(614)] = { - [aux_sym__repeat_newline] = STATE(533), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1211), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(942), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(438), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(810), - [sym__unquoted_with_expr] = STATE(1015), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(2121), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1965), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1761), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(905), + [sym__unquoted_with_expr] = STATE(1101), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(614), - [anon_sym_true] = ACTIONS(1938), - [anon_sym_false] = ACTIONS(1938), - [anon_sym_null] = ACTIONS(1940), - [aux_sym_cmd_identifier_token3] = ACTIONS(1942), - [aux_sym_cmd_identifier_token4] = ACTIONS(1942), - [aux_sym_cmd_identifier_token5] = ACTIONS(1942), - [sym__newline] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1996), + [anon_sym_false] = ACTIONS(1996), + [anon_sym_null] = ACTIONS(1998), + [aux_sym_cmd_identifier_token3] = ACTIONS(2000), + [aux_sym_cmd_identifier_token4] = ACTIONS(2000), + [aux_sym_cmd_identifier_token5] = ACTIONS(2000), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1944), + [anon_sym_DOT_DOT] = ACTIONS(2002), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), - [anon_sym_DOT_DOT_LT] = ACTIONS(1946), - [aux_sym__val_number_decimal_token1] = ACTIONS(1948), - [aux_sym__val_number_decimal_token2] = ACTIONS(1950), - [aux_sym__val_number_decimal_token3] = ACTIONS(1952), - [aux_sym__val_number_decimal_token4] = ACTIONS(1952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), + [anon_sym_DOT_DOT_LT] = ACTIONS(2004), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2008), + [aux_sym__val_number_decimal_token3] = ACTIONS(2010), + [aux_sym__val_number_decimal_token4] = ACTIONS(2010), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1954), + [sym_val_date] = ACTIONS(2012), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(615)] = { - [aux_sym__repeat_newline] = STATE(534), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1145), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(942), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(438), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(811), - [sym__unquoted_with_expr] = STATE(1016), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(2123), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1965), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1761), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(906), + [sym__unquoted_with_expr] = STATE(1104), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(615), - [anon_sym_true] = ACTIONS(1938), - [anon_sym_false] = ACTIONS(1938), - [anon_sym_null] = ACTIONS(1940), - [aux_sym_cmd_identifier_token3] = ACTIONS(1942), - [aux_sym_cmd_identifier_token4] = ACTIONS(1942), - [aux_sym_cmd_identifier_token5] = ACTIONS(1942), - [sym__newline] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1996), + [anon_sym_false] = ACTIONS(1996), + [anon_sym_null] = ACTIONS(1998), + [aux_sym_cmd_identifier_token3] = ACTIONS(2000), + [aux_sym_cmd_identifier_token4] = ACTIONS(2000), + [aux_sym_cmd_identifier_token5] = ACTIONS(2000), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1944), + [anon_sym_DOT_DOT] = ACTIONS(2002), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), - [anon_sym_DOT_DOT_LT] = ACTIONS(1946), - [aux_sym__val_number_decimal_token1] = ACTIONS(1948), - [aux_sym__val_number_decimal_token2] = ACTIONS(1950), - [aux_sym__val_number_decimal_token3] = ACTIONS(1952), - [aux_sym__val_number_decimal_token4] = ACTIONS(1952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), + [anon_sym_DOT_DOT_LT] = ACTIONS(2004), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2008), + [aux_sym__val_number_decimal_token3] = ACTIONS(2010), + [aux_sym__val_number_decimal_token4] = ACTIONS(2010), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1954), + [sym_val_date] = ACTIONS(2012), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(616)] = { - [aux_sym__repeat_newline] = STATE(535), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1148), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(942), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(438), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(812), - [sym__unquoted_with_expr] = STATE(1017), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1106), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1965), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1761), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(907), + [sym__unquoted_with_expr] = STATE(1107), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(616), - [anon_sym_true] = ACTIONS(1938), - [anon_sym_false] = ACTIONS(1938), - [anon_sym_null] = ACTIONS(1940), - [aux_sym_cmd_identifier_token3] = ACTIONS(1942), - [aux_sym_cmd_identifier_token4] = ACTIONS(1942), - [aux_sym_cmd_identifier_token5] = ACTIONS(1942), - [sym__newline] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1996), + [anon_sym_false] = ACTIONS(1996), + [anon_sym_null] = ACTIONS(1998), + [aux_sym_cmd_identifier_token3] = ACTIONS(2000), + [aux_sym_cmd_identifier_token4] = ACTIONS(2000), + [aux_sym_cmd_identifier_token5] = ACTIONS(2000), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1944), + [anon_sym_DOT_DOT] = ACTIONS(2002), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), - [anon_sym_DOT_DOT_LT] = ACTIONS(1946), - [aux_sym__val_number_decimal_token1] = ACTIONS(1948), - [aux_sym__val_number_decimal_token2] = ACTIONS(1950), - [aux_sym__val_number_decimal_token3] = ACTIONS(1952), - [aux_sym__val_number_decimal_token4] = ACTIONS(1952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), + [anon_sym_DOT_DOT_LT] = ACTIONS(2004), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2008), + [aux_sym__val_number_decimal_token3] = ACTIONS(2010), + [aux_sym__val_number_decimal_token4] = ACTIONS(2010), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1954), + [sym_val_date] = ACTIONS(2012), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(617)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1221), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(942), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(438), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(863), - [sym__unquoted_with_expr] = STATE(1086), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(2125), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1965), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1761), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(908), + [sym__unquoted_with_expr] = STATE(1110), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(617), - [anon_sym_true] = ACTIONS(1938), - [anon_sym_false] = ACTIONS(1938), - [anon_sym_null] = ACTIONS(1940), - [aux_sym_cmd_identifier_token3] = ACTIONS(1942), - [aux_sym_cmd_identifier_token4] = ACTIONS(1942), - [aux_sym_cmd_identifier_token5] = ACTIONS(1942), - [sym__newline] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1996), + [anon_sym_false] = ACTIONS(1996), + [anon_sym_null] = ACTIONS(1998), + [aux_sym_cmd_identifier_token3] = ACTIONS(2000), + [aux_sym_cmd_identifier_token4] = ACTIONS(2000), + [aux_sym_cmd_identifier_token5] = ACTIONS(2000), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1944), + [anon_sym_DOT_DOT] = ACTIONS(2002), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), - [anon_sym_DOT_DOT_LT] = ACTIONS(1946), - [aux_sym__val_number_decimal_token1] = ACTIONS(1948), - [aux_sym__val_number_decimal_token2] = ACTIONS(1950), - [aux_sym__val_number_decimal_token3] = ACTIONS(1952), - [aux_sym__val_number_decimal_token4] = ACTIONS(1952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), + [anon_sym_DOT_DOT_LT] = ACTIONS(2004), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2008), + [aux_sym__val_number_decimal_token3] = ACTIONS(2010), + [aux_sym__val_number_decimal_token4] = ACTIONS(2010), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1954), + [sym_val_date] = ACTIONS(2012), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(618)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1225), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(942), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(438), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(803), - [sym__unquoted_with_expr] = STATE(996), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(2128), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1965), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1761), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(909), + [sym__unquoted_with_expr] = STATE(1112), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(618), - [anon_sym_true] = ACTIONS(1938), - [anon_sym_false] = ACTIONS(1938), - [anon_sym_null] = ACTIONS(1940), - [aux_sym_cmd_identifier_token3] = ACTIONS(1942), - [aux_sym_cmd_identifier_token4] = ACTIONS(1942), - [aux_sym_cmd_identifier_token5] = ACTIONS(1942), - [sym__newline] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1996), + [anon_sym_false] = ACTIONS(1996), + [anon_sym_null] = ACTIONS(1998), + [aux_sym_cmd_identifier_token3] = ACTIONS(2000), + [aux_sym_cmd_identifier_token4] = ACTIONS(2000), + [aux_sym_cmd_identifier_token5] = ACTIONS(2000), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1944), + [anon_sym_DOT_DOT] = ACTIONS(2002), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), - [anon_sym_DOT_DOT_LT] = ACTIONS(1946), - [aux_sym__val_number_decimal_token1] = ACTIONS(1948), - [aux_sym__val_number_decimal_token2] = ACTIONS(1950), - [aux_sym__val_number_decimal_token3] = ACTIONS(1952), - [aux_sym__val_number_decimal_token4] = ACTIONS(1952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), + [anon_sym_DOT_DOT_LT] = ACTIONS(2004), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2008), + [aux_sym__val_number_decimal_token3] = ACTIONS(2010), + [aux_sym__val_number_decimal_token4] = ACTIONS(2010), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1954), + [sym_val_date] = ACTIONS(2012), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(619)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1223), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(942), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(438), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(864), - [sym__unquoted_with_expr] = STATE(1088), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1965), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1761), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(910), + [sym__unquoted_with_expr] = STATE(1115), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(619), - [anon_sym_true] = ACTIONS(1938), - [anon_sym_false] = ACTIONS(1938), - [anon_sym_null] = ACTIONS(1940), - [aux_sym_cmd_identifier_token3] = ACTIONS(1942), - [aux_sym_cmd_identifier_token4] = ACTIONS(1942), - [aux_sym_cmd_identifier_token5] = ACTIONS(1942), - [sym__newline] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1996), + [anon_sym_false] = ACTIONS(1996), + [anon_sym_null] = ACTIONS(1998), + [aux_sym_cmd_identifier_token3] = ACTIONS(2000), + [aux_sym_cmd_identifier_token4] = ACTIONS(2000), + [aux_sym_cmd_identifier_token5] = ACTIONS(2000), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1944), + [anon_sym_DOT_DOT] = ACTIONS(2002), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), - [anon_sym_DOT_DOT_LT] = ACTIONS(1946), - [aux_sym__val_number_decimal_token1] = ACTIONS(1948), - [aux_sym__val_number_decimal_token2] = ACTIONS(1950), - [aux_sym__val_number_decimal_token3] = ACTIONS(1952), - [aux_sym__val_number_decimal_token4] = ACTIONS(1952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), + [anon_sym_DOT_DOT_LT] = ACTIONS(2004), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2008), + [aux_sym__val_number_decimal_token3] = ACTIONS(2010), + [aux_sym__val_number_decimal_token4] = ACTIONS(2010), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1954), + [sym_val_date] = ACTIONS(2012), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(620)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1226), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(942), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(438), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(865), - [sym__unquoted_with_expr] = STATE(1090), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(2132), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1965), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1761), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(734), + [sym__unquoted_with_expr] = STATE(1117), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(620), - [anon_sym_true] = ACTIONS(1938), - [anon_sym_false] = ACTIONS(1938), - [anon_sym_null] = ACTIONS(1940), - [aux_sym_cmd_identifier_token3] = ACTIONS(1942), - [aux_sym_cmd_identifier_token4] = ACTIONS(1942), - [aux_sym_cmd_identifier_token5] = ACTIONS(1942), - [sym__newline] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1996), + [anon_sym_false] = ACTIONS(1996), + [anon_sym_null] = ACTIONS(1998), + [aux_sym_cmd_identifier_token3] = ACTIONS(2000), + [aux_sym_cmd_identifier_token4] = ACTIONS(2000), + [aux_sym_cmd_identifier_token5] = ACTIONS(2000), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1944), + [anon_sym_DOT_DOT] = ACTIONS(2002), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), - [anon_sym_DOT_DOT_LT] = ACTIONS(1946), - [aux_sym__val_number_decimal_token1] = ACTIONS(1948), - [aux_sym__val_number_decimal_token2] = ACTIONS(1950), - [aux_sym__val_number_decimal_token3] = ACTIONS(1952), - [aux_sym__val_number_decimal_token4] = ACTIONS(1952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), + [anon_sym_DOT_DOT_LT] = ACTIONS(2004), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2008), + [aux_sym__val_number_decimal_token3] = ACTIONS(2010), + [aux_sym__val_number_decimal_token4] = ACTIONS(2010), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1954), + [sym_val_date] = ACTIONS(2012), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(621)] = { - [aux_sym__repeat_newline] = STATE(538), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1151), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(942), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(438), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(814), - [sym__unquoted_with_expr] = STATE(1018), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1221), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(469), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(909), + [sym__unquoted_with_expr] = STATE(1112), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(621), - [anon_sym_true] = ACTIONS(1938), - [anon_sym_false] = ACTIONS(1938), - [anon_sym_null] = ACTIONS(1940), - [aux_sym_cmd_identifier_token3] = ACTIONS(1942), - [aux_sym_cmd_identifier_token4] = ACTIONS(1942), - [aux_sym_cmd_identifier_token5] = ACTIONS(1942), - [sym__newline] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1947), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1944), + [anon_sym_DOT_DOT] = ACTIONS(1951), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), - [anon_sym_DOT_DOT_LT] = ACTIONS(1946), - [aux_sym__val_number_decimal_token1] = ACTIONS(1948), - [aux_sym__val_number_decimal_token2] = ACTIONS(1950), - [aux_sym__val_number_decimal_token3] = ACTIONS(1952), - [aux_sym__val_number_decimal_token4] = ACTIONS(1952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), + [anon_sym_DOT_DOT_LT] = ACTIONS(1953), + [aux_sym__val_number_decimal_token1] = ACTIONS(1955), + [aux_sym__val_number_decimal_token2] = ACTIONS(1957), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1954), + [sym_val_date] = ACTIONS(1961), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(622)] = { - [sym_path] = STATE(720), + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1226), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(469), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(910), + [sym__unquoted_with_expr] = STATE(1115), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(622), - [aux_sym__where_predicate_lhs_repeat1] = STATE(606), - [ts_builtin_sym_end] = ACTIONS(1506), - [anon_sym_in] = ACTIONS(1506), - [sym__newline] = ACTIONS(1506), - [anon_sym_SEMI] = ACTIONS(1506), - [anon_sym_PIPE] = ACTIONS(1506), - [anon_sym_err_GT_PIPE] = ACTIONS(1506), - [anon_sym_out_GT_PIPE] = ACTIONS(1506), - [anon_sym_e_GT_PIPE] = ACTIONS(1506), - [anon_sym_o_GT_PIPE] = ACTIONS(1506), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1506), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1506), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1506), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1506), - [anon_sym_GT2] = ACTIONS(1504), - [anon_sym_DASH2] = ACTIONS(1506), - [anon_sym_STAR2] = ACTIONS(1504), - [anon_sym_and2] = ACTIONS(1506), - [anon_sym_xor2] = ACTIONS(1506), - [anon_sym_or2] = ACTIONS(1506), - [anon_sym_not_DASHin2] = ACTIONS(1506), - [anon_sym_has2] = ACTIONS(1506), - [anon_sym_not_DASHhas2] = ACTIONS(1506), - [anon_sym_starts_DASHwith2] = ACTIONS(1506), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1506), - [anon_sym_ends_DASHwith2] = ACTIONS(1506), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1506), - [anon_sym_EQ_EQ2] = ACTIONS(1506), - [anon_sym_BANG_EQ2] = ACTIONS(1506), - [anon_sym_LT2] = ACTIONS(1504), - [anon_sym_LT_EQ2] = ACTIONS(1506), - [anon_sym_GT_EQ2] = ACTIONS(1506), - [anon_sym_EQ_TILDE2] = ACTIONS(1506), - [anon_sym_BANG_TILDE2] = ACTIONS(1506), - [anon_sym_like2] = ACTIONS(1506), - [anon_sym_not_DASHlike2] = ACTIONS(1506), - [anon_sym_STAR_STAR2] = ACTIONS(1506), - [anon_sym_PLUS_PLUS2] = ACTIONS(1506), - [anon_sym_SLASH2] = ACTIONS(1504), - [anon_sym_mod2] = ACTIONS(1506), - [anon_sym_SLASH_SLASH2] = ACTIONS(1506), - [anon_sym_PLUS2] = ACTIONS(1504), - [anon_sym_bit_DASHshl2] = ACTIONS(1506), - [anon_sym_bit_DASHshr2] = ACTIONS(1506), - [anon_sym_bit_DASHand2] = ACTIONS(1506), - [anon_sym_bit_DASHxor2] = ACTIONS(1506), - [anon_sym_bit_DASHor2] = ACTIONS(1506), - [anon_sym_DOT_DOT2] = ACTIONS(1504), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1506), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1506), - [anon_sym_DOT2] = ACTIONS(1868), - [anon_sym_err_GT] = ACTIONS(1504), - [anon_sym_out_GT] = ACTIONS(1504), - [anon_sym_e_GT] = ACTIONS(1504), - [anon_sym_o_GT] = ACTIONS(1504), - [anon_sym_err_PLUSout_GT] = ACTIONS(1504), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1504), - [anon_sym_o_PLUSe_GT] = ACTIONS(1504), - [anon_sym_e_PLUSo_GT] = ACTIONS(1504), - [anon_sym_err_GT_GT] = ACTIONS(1506), - [anon_sym_out_GT_GT] = ACTIONS(1506), - [anon_sym_e_GT_GT] = ACTIONS(1506), - [anon_sym_o_GT_GT] = ACTIONS(1506), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1506), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1506), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1506), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1506), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(623)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1233), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(942), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(438), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(804), - [sym__unquoted_with_expr] = STATE(998), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [sym_comment] = STATE(623), - [anon_sym_true] = ACTIONS(1938), - [anon_sym_false] = ACTIONS(1938), - [anon_sym_null] = ACTIONS(1940), - [aux_sym_cmd_identifier_token3] = ACTIONS(1942), - [aux_sym_cmd_identifier_token4] = ACTIONS(1942), - [aux_sym_cmd_identifier_token5] = ACTIONS(1942), - [sym__newline] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1947), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1944), + [anon_sym_DOT_DOT] = ACTIONS(1951), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), - [anon_sym_DOT_DOT_LT] = ACTIONS(1946), - [aux_sym__val_number_decimal_token1] = ACTIONS(1948), - [aux_sym__val_number_decimal_token2] = ACTIONS(1950), - [aux_sym__val_number_decimal_token3] = ACTIONS(1952), - [aux_sym__val_number_decimal_token4] = ACTIONS(1952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), + [anon_sym_DOT_DOT_LT] = ACTIONS(1953), + [aux_sym__val_number_decimal_token1] = ACTIONS(1955), + [aux_sym__val_number_decimal_token2] = ACTIONS(1957), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1954), + [sym_val_date] = ACTIONS(1961), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(624)] = { - [aux_sym__repeat_newline] = STATE(539), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1162), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(942), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(438), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(828), - [sym__unquoted_with_expr] = STATE(1021), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [sym_comment] = STATE(624), - [anon_sym_true] = ACTIONS(1938), - [anon_sym_false] = ACTIONS(1938), - [anon_sym_null] = ACTIONS(1940), - [aux_sym_cmd_identifier_token3] = ACTIONS(1942), - [aux_sym_cmd_identifier_token4] = ACTIONS(1942), - [aux_sym_cmd_identifier_token5] = ACTIONS(1942), - [sym__newline] = ACTIONS(1922), + [STATE(623)] = { + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1231), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(469), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(734), + [sym__unquoted_with_expr] = STATE(1117), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(623), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1947), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1944), + [anon_sym_DOT_DOT] = ACTIONS(1951), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), - [anon_sym_DOT_DOT_LT] = ACTIONS(1946), - [aux_sym__val_number_decimal_token1] = ACTIONS(1948), - [aux_sym__val_number_decimal_token2] = ACTIONS(1950), - [aux_sym__val_number_decimal_token3] = ACTIONS(1952), - [aux_sym__val_number_decimal_token4] = ACTIONS(1952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), + [anon_sym_DOT_DOT_LT] = ACTIONS(1953), + [aux_sym__val_number_decimal_token1] = ACTIONS(1955), + [aux_sym__val_number_decimal_token2] = ACTIONS(1957), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1954), + [sym_val_date] = ACTIONS(1961), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, + [STATE(624)] = { + [sym_expr_parenthesized] = STATE(4280), + [sym__spread_parenthesized] = STATE(4959), + [sym_val_range] = STATE(4961), + [sym__val_range] = STATE(4729), + [sym__value] = STATE(4961), + [sym_val_nothing] = STATE(4862), + [sym_val_bool] = STATE(4431), + [sym__spread_variable] = STATE(4968), + [sym_val_variable] = STATE(4050), + [sym_val_cellpath] = STATE(4862), + [sym_val_number] = STATE(4862), + [sym__val_number_decimal] = STATE(3653), + [sym__val_number] = STATE(4628), + [sym_val_duration] = STATE(4862), + [sym_val_filesize] = STATE(4862), + [sym_val_binary] = STATE(4862), + [sym_val_string] = STATE(4862), + [sym__raw_str] = STATE(3725), + [sym__str_double_quotes] = STATE(3725), + [sym__str_single_quotes] = STATE(3725), + [sym__str_back_ticks] = STATE(3725), + [sym_val_interpolated] = STATE(4862), + [sym__inter_single_quotes] = STATE(4846), + [sym__inter_double_quotes] = STATE(4847), + [sym_val_list] = STATE(4862), + [sym__spread_list] = STATE(4959), + [sym_val_entry] = STATE(4893), + [sym_val_record] = STATE(4862), + [sym_val_table] = STATE(4862), + [sym_val_closure] = STATE(4862), + [sym__unquoted_in_list] = STATE(4479), + [sym__unquoted_in_list_with_expr] = STATE(4961), + [sym__unquoted_anonymous_prefix] = STATE(4729), + [sym_comment] = STATE(624), + [aux_sym_list_body_repeat1] = STATE(676), + [anon_sym_true] = ACTIONS(1472), + [anon_sym_false] = ACTIONS(1472), + [anon_sym_null] = ACTIONS(1474), + [aux_sym_cmd_identifier_token3] = ACTIONS(1476), + [aux_sym_cmd_identifier_token4] = ACTIONS(1476), + [aux_sym_cmd_identifier_token5] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1588), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_DOT_DOT] = ACTIONS(1488), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1490), + [anon_sym_DOT_DOT_LT] = ACTIONS(1490), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1492), + [aux_sym__val_number_decimal_token2] = ACTIONS(1494), + [aux_sym__val_number_decimal_token3] = ACTIONS(1496), + [aux_sym__val_number_decimal_token4] = ACTIONS(1496), + [aux_sym__val_number_token1] = ACTIONS(1414), + [aux_sym__val_number_token2] = ACTIONS(1414), + [aux_sym__val_number_token3] = ACTIONS(1414), + [anon_sym_0b] = ACTIONS(1416), + [anon_sym_0o] = ACTIONS(1418), + [anon_sym_0x] = ACTIONS(1418), + [sym_val_date] = ACTIONS(1498), + [anon_sym_DQUOTE] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_BQUOTE] = ACTIONS(1426), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1428), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1430), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1432), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1436), + }, [STATE(625)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1163), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(942), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(438), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(830), - [sym__unquoted_with_expr] = STATE(1022), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(638), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1664), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1495), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1414), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(859), + [sym__unquoted_with_expr] = STATE(995), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(625), - [anon_sym_true] = ACTIONS(1938), - [anon_sym_false] = ACTIONS(1938), - [anon_sym_null] = ACTIONS(1940), - [aux_sym_cmd_identifier_token3] = ACTIONS(1942), - [aux_sym_cmd_identifier_token4] = ACTIONS(1942), - [aux_sym_cmd_identifier_token5] = ACTIONS(1942), - [sym__newline] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [anon_sym_null] = ACTIONS(1925), + [aux_sym_cmd_identifier_token3] = ACTIONS(1927), + [aux_sym_cmd_identifier_token4] = ACTIONS(1927), + [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1944), + [anon_sym_DOT_DOT] = ACTIONS(1931), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), - [anon_sym_DOT_DOT_LT] = ACTIONS(1946), - [aux_sym__val_number_decimal_token1] = ACTIONS(1948), - [aux_sym__val_number_decimal_token2] = ACTIONS(1950), - [aux_sym__val_number_decimal_token3] = ACTIONS(1952), - [aux_sym__val_number_decimal_token4] = ACTIONS(1952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), + [anon_sym_DOT_DOT_LT] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1937), + [aux_sym__val_number_decimal_token3] = ACTIONS(1939), + [aux_sym__val_number_decimal_token4] = ACTIONS(1939), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1954), + [sym_val_date] = ACTIONS(1941), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(626)] = { - [aux_sym__repeat_newline] = STATE(555), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1164), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(942), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(438), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(831), - [sym__unquoted_with_expr] = STATE(1023), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(639), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1667), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1495), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1414), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(861), + [sym__unquoted_with_expr] = STATE(1002), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(626), - [anon_sym_true] = ACTIONS(1938), - [anon_sym_false] = ACTIONS(1938), - [anon_sym_null] = ACTIONS(1940), - [aux_sym_cmd_identifier_token3] = ACTIONS(1942), - [aux_sym_cmd_identifier_token4] = ACTIONS(1942), - [aux_sym_cmd_identifier_token5] = ACTIONS(1942), - [sym__newline] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [anon_sym_null] = ACTIONS(1925), + [aux_sym_cmd_identifier_token3] = ACTIONS(1927), + [aux_sym_cmd_identifier_token4] = ACTIONS(1927), + [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1944), + [anon_sym_DOT_DOT] = ACTIONS(1931), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), - [anon_sym_DOT_DOT_LT] = ACTIONS(1946), - [aux_sym__val_number_decimal_token1] = ACTIONS(1948), - [aux_sym__val_number_decimal_token2] = ACTIONS(1950), - [aux_sym__val_number_decimal_token3] = ACTIONS(1952), - [aux_sym__val_number_decimal_token4] = ACTIONS(1952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), + [anon_sym_DOT_DOT_LT] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1937), + [aux_sym__val_number_decimal_token3] = ACTIONS(1939), + [aux_sym__val_number_decimal_token4] = ACTIONS(1939), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1954), + [sym_val_date] = ACTIONS(1941), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(627)] = { - [aux_sym__repeat_newline] = STATE(582), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1166), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(942), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(438), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(832), - [sym__unquoted_with_expr] = STATE(1026), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(640), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1668), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1495), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1414), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(863), + [sym__unquoted_with_expr] = STATE(1008), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(627), - [anon_sym_true] = ACTIONS(1938), - [anon_sym_false] = ACTIONS(1938), - [anon_sym_null] = ACTIONS(1940), - [aux_sym_cmd_identifier_token3] = ACTIONS(1942), - [aux_sym_cmd_identifier_token4] = ACTIONS(1942), - [aux_sym_cmd_identifier_token5] = ACTIONS(1942), - [sym__newline] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [anon_sym_null] = ACTIONS(1925), + [aux_sym_cmd_identifier_token3] = ACTIONS(1927), + [aux_sym_cmd_identifier_token4] = ACTIONS(1927), + [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1944), + [anon_sym_DOT_DOT] = ACTIONS(1931), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), - [anon_sym_DOT_DOT_LT] = ACTIONS(1946), - [aux_sym__val_number_decimal_token1] = ACTIONS(1948), - [aux_sym__val_number_decimal_token2] = ACTIONS(1950), - [aux_sym__val_number_decimal_token3] = ACTIONS(1952), - [aux_sym__val_number_decimal_token4] = ACTIONS(1952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), + [anon_sym_DOT_DOT_LT] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1937), + [aux_sym__val_number_decimal_token3] = ACTIONS(1939), + [aux_sym__val_number_decimal_token4] = ACTIONS(1939), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1954), + [sym_val_date] = ACTIONS(1941), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(628)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1240), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(942), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(438), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(805), - [sym__unquoted_with_expr] = STATE(1000), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(515), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1669), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1495), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1414), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(866), + [sym__unquoted_with_expr] = STATE(1017), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(628), - [anon_sym_true] = ACTIONS(1938), - [anon_sym_false] = ACTIONS(1938), - [anon_sym_null] = ACTIONS(1940), - [aux_sym_cmd_identifier_token3] = ACTIONS(1942), - [aux_sym_cmd_identifier_token4] = ACTIONS(1942), - [aux_sym_cmd_identifier_token5] = ACTIONS(1942), - [sym__newline] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [anon_sym_null] = ACTIONS(1925), + [aux_sym_cmd_identifier_token3] = ACTIONS(1927), + [aux_sym_cmd_identifier_token4] = ACTIONS(1927), + [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1944), + [anon_sym_DOT_DOT] = ACTIONS(1931), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), - [anon_sym_DOT_DOT_LT] = ACTIONS(1946), - [aux_sym__val_number_decimal_token1] = ACTIONS(1948), - [aux_sym__val_number_decimal_token2] = ACTIONS(1950), - [aux_sym__val_number_decimal_token3] = ACTIONS(1952), - [aux_sym__val_number_decimal_token4] = ACTIONS(1952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), + [anon_sym_DOT_DOT_LT] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1937), + [aux_sym__val_number_decimal_token3] = ACTIONS(1939), + [aux_sym__val_number_decimal_token4] = ACTIONS(1939), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1954), + [sym_val_date] = ACTIONS(1941), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(629)] = { - [aux_sym__repeat_newline] = STATE(647), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(2019), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1983), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1738), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(772), - [sym__unquoted_with_expr] = STATE(1020), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(641), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1672), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1495), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1414), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(867), + [sym__unquoted_with_expr] = STATE(1035), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(629), - [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(1922), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [anon_sym_null] = ACTIONS(1925), + [aux_sym_cmd_identifier_token3] = ACTIONS(1927), + [aux_sym_cmd_identifier_token4] = ACTIONS(1927), + [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1924), + [anon_sym_DOT_DOT] = ACTIONS(1931), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), - [anon_sym_DOT_DOT_LT] = ACTIONS(1926), - [aux_sym__val_number_decimal_token1] = ACTIONS(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1930), - [aux_sym__val_number_decimal_token3] = ACTIONS(1932), - [aux_sym__val_number_decimal_token4] = ACTIONS(1932), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), + [anon_sym_DOT_DOT_LT] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1937), + [aux_sym__val_number_decimal_token3] = ACTIONS(1939), + [aux_sym__val_number_decimal_token4] = ACTIONS(1939), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1934), + [sym_val_date] = ACTIONS(1941), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(630)] = { - [aux_sym__repeat_newline] = STATE(648), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(2020), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1983), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1738), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(774), - [sym__unquoted_with_expr] = STATE(1032), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(642), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1673), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1495), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1414), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(869), + [sym__unquoted_with_expr] = STATE(1051), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(630), - [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(1922), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [anon_sym_null] = ACTIONS(1925), + [aux_sym_cmd_identifier_token3] = ACTIONS(1927), + [aux_sym_cmd_identifier_token4] = ACTIONS(1927), + [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1924), + [anon_sym_DOT_DOT] = ACTIONS(1931), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), - [anon_sym_DOT_DOT_LT] = ACTIONS(1926), - [aux_sym__val_number_decimal_token1] = ACTIONS(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1930), - [aux_sym__val_number_decimal_token3] = ACTIONS(1932), - [aux_sym__val_number_decimal_token4] = ACTIONS(1932), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), + [anon_sym_DOT_DOT_LT] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1937), + [aux_sym__val_number_decimal_token3] = ACTIONS(1939), + [aux_sym__val_number_decimal_token4] = ACTIONS(1939), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1934), + [sym_val_date] = ACTIONS(1941), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(631)] = { - [aux_sym__repeat_newline] = STATE(649), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(2021), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1983), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1738), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(775), - [sym__unquoted_with_expr] = STATE(1037), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(643), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1675), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1495), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1414), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(871), + [sym__unquoted_with_expr] = STATE(1063), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(631), - [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(1922), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [anon_sym_null] = ACTIONS(1925), + [aux_sym_cmd_identifier_token3] = ACTIONS(1927), + [aux_sym_cmd_identifier_token4] = ACTIONS(1927), + [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1924), + [anon_sym_DOT_DOT] = ACTIONS(1931), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), - [anon_sym_DOT_DOT_LT] = ACTIONS(1926), - [aux_sym__val_number_decimal_token1] = ACTIONS(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1930), - [aux_sym__val_number_decimal_token3] = ACTIONS(1932), - [aux_sym__val_number_decimal_token4] = ACTIONS(1932), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), + [anon_sym_DOT_DOT_LT] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1937), + [aux_sym__val_number_decimal_token3] = ACTIONS(1939), + [aux_sym__val_number_decimal_token4] = ACTIONS(1939), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1934), + [sym_val_date] = ACTIONS(1941), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(632)] = { - [aux_sym__repeat_newline] = STATE(650), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(2022), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1983), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1738), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(776), - [sym__unquoted_with_expr] = STATE(1054), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(644), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1678), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1495), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1414), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(874), + [sym__unquoted_with_expr] = STATE(1076), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(632), - [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(1922), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [anon_sym_null] = ACTIONS(1925), + [aux_sym_cmd_identifier_token3] = ACTIONS(1927), + [aux_sym_cmd_identifier_token4] = ACTIONS(1927), + [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1924), + [anon_sym_DOT_DOT] = ACTIONS(1931), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), - [anon_sym_DOT_DOT_LT] = ACTIONS(1926), - [aux_sym__val_number_decimal_token1] = ACTIONS(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1930), - [aux_sym__val_number_decimal_token3] = ACTIONS(1932), - [aux_sym__val_number_decimal_token4] = ACTIONS(1932), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), + [anon_sym_DOT_DOT_LT] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1937), + [aux_sym__val_number_decimal_token3] = ACTIONS(1939), + [aux_sym__val_number_decimal_token4] = ACTIONS(1939), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1934), + [sym_val_date] = ACTIONS(1941), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(633)] = { - [aux_sym__repeat_newline] = STATE(651), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(2024), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1983), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1738), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(778), - [sym__unquoted_with_expr] = STATE(1057), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(645), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1079), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1495), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1414), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(875), + [sym__unquoted_with_expr] = STATE(1082), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(633), - [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(1922), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [anon_sym_null] = ACTIONS(1925), + [aux_sym_cmd_identifier_token3] = ACTIONS(1927), + [aux_sym_cmd_identifier_token4] = ACTIONS(1927), + [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1924), + [anon_sym_DOT_DOT] = ACTIONS(1931), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), - [anon_sym_DOT_DOT_LT] = ACTIONS(1926), - [aux_sym__val_number_decimal_token1] = ACTIONS(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1930), - [aux_sym__val_number_decimal_token3] = ACTIONS(1932), - [aux_sym__val_number_decimal_token4] = ACTIONS(1932), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), + [anon_sym_DOT_DOT_LT] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1937), + [aux_sym__val_number_decimal_token3] = ACTIONS(1939), + [aux_sym__val_number_decimal_token4] = ACTIONS(1939), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1934), + [sym_val_date] = ACTIONS(1941), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(634)] = { - [aux_sym__repeat_newline] = STATE(652), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(2026), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1983), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1738), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(779), - [sym__unquoted_with_expr] = STATE(1059), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(646), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1683), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1495), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1414), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(876), + [sym__unquoted_with_expr] = STATE(1095), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(634), - [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(1922), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [anon_sym_null] = ACTIONS(1925), + [aux_sym_cmd_identifier_token3] = ACTIONS(1927), + [aux_sym_cmd_identifier_token4] = ACTIONS(1927), + [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1924), + [anon_sym_DOT_DOT] = ACTIONS(1931), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), - [anon_sym_DOT_DOT_LT] = ACTIONS(1926), - [aux_sym__val_number_decimal_token1] = ACTIONS(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1930), - [aux_sym__val_number_decimal_token3] = ACTIONS(1932), - [aux_sym__val_number_decimal_token4] = ACTIONS(1932), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), + [anon_sym_DOT_DOT_LT] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1937), + [aux_sym__val_number_decimal_token3] = ACTIONS(1939), + [aux_sym__val_number_decimal_token4] = ACTIONS(1939), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1934), + [sym_val_date] = ACTIONS(1941), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(635)] = { - [aux_sym__repeat_newline] = STATE(653), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(2027), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1983), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1738), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(780), - [sym__unquoted_with_expr] = STATE(1071), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(647), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1686), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1495), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1414), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(877), + [sym__unquoted_with_expr] = STATE(1098), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(635), - [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(1922), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [anon_sym_null] = ACTIONS(1925), + [aux_sym_cmd_identifier_token3] = ACTIONS(1927), + [aux_sym_cmd_identifier_token4] = ACTIONS(1927), + [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1924), + [anon_sym_DOT_DOT] = ACTIONS(1931), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), - [anon_sym_DOT_DOT_LT] = ACTIONS(1926), - [aux_sym__val_number_decimal_token1] = ACTIONS(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1930), - [aux_sym__val_number_decimal_token3] = ACTIONS(1932), - [aux_sym__val_number_decimal_token4] = ACTIONS(1932), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), + [anon_sym_DOT_DOT_LT] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1937), + [aux_sym__val_number_decimal_token3] = ACTIONS(1939), + [aux_sym__val_number_decimal_token4] = ACTIONS(1939), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1934), + [sym_val_date] = ACTIONS(1941), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(636)] = { - [aux_sym__repeat_newline] = STATE(654), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(2028), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1983), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1738), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(781), - [sym__unquoted_with_expr] = STATE(1092), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(648), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1531), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1495), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1414), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(880), + [sym__unquoted_with_expr] = STATE(1103), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(636), - [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(1922), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [anon_sym_null] = ACTIONS(1925), + [aux_sym_cmd_identifier_token3] = ACTIONS(1927), + [aux_sym_cmd_identifier_token4] = ACTIONS(1927), + [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1924), + [anon_sym_DOT_DOT] = ACTIONS(1931), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), - [anon_sym_DOT_DOT_LT] = ACTIONS(1926), - [aux_sym__val_number_decimal_token1] = ACTIONS(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1930), - [aux_sym__val_number_decimal_token3] = ACTIONS(1932), - [aux_sym__val_number_decimal_token4] = ACTIONS(1932), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), + [anon_sym_DOT_DOT_LT] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1937), + [aux_sym__val_number_decimal_token3] = ACTIONS(1939), + [aux_sym__val_number_decimal_token4] = ACTIONS(1939), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1934), + [sym_val_date] = ACTIONS(1941), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(637)] = { - [aux_sym__repeat_newline] = STATE(655), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1093), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1983), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1738), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(782), - [sym__unquoted_with_expr] = STATE(1109), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(649), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1532), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1495), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1414), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(882), + [sym__unquoted_with_expr] = STATE(1114), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(637), - [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(1922), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [anon_sym_null] = ACTIONS(1925), + [aux_sym_cmd_identifier_token3] = ACTIONS(1927), + [aux_sym_cmd_identifier_token4] = ACTIONS(1927), + [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1924), + [anon_sym_DOT_DOT] = ACTIONS(1931), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), - [anon_sym_DOT_DOT_LT] = ACTIONS(1926), - [aux_sym__val_number_decimal_token1] = ACTIONS(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1930), - [aux_sym__val_number_decimal_token3] = ACTIONS(1932), - [aux_sym__val_number_decimal_token4] = ACTIONS(1932), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), + [anon_sym_DOT_DOT_LT] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1937), + [aux_sym__val_number_decimal_token3] = ACTIONS(1939), + [aux_sym__val_number_decimal_token4] = ACTIONS(1939), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1934), + [sym_val_date] = ACTIONS(1941), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(638)] = { - [aux_sym__repeat_newline] = STATE(656), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(2029), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1983), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1738), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(783), - [sym__unquoted_with_expr] = STATE(1111), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1541), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1495), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1414), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(740), + [sym__unquoted_with_expr] = STATE(1015), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(638), - [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(1922), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [anon_sym_null] = ACTIONS(1925), + [aux_sym_cmd_identifier_token3] = ACTIONS(1927), + [aux_sym_cmd_identifier_token4] = ACTIONS(1927), + [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1924), + [anon_sym_DOT_DOT] = ACTIONS(1931), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), - [anon_sym_DOT_DOT_LT] = ACTIONS(1926), - [aux_sym__val_number_decimal_token1] = ACTIONS(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1930), - [aux_sym__val_number_decimal_token3] = ACTIONS(1932), - [aux_sym__val_number_decimal_token4] = ACTIONS(1932), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), + [anon_sym_DOT_DOT_LT] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1937), + [aux_sym__val_number_decimal_token3] = ACTIONS(1939), + [aux_sym__val_number_decimal_token4] = ACTIONS(1939), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1934), + [sym_val_date] = ACTIONS(1941), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(639)] = { - [aux_sym__repeat_newline] = STATE(657), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(2030), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1983), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1738), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(785), - [sym__unquoted_with_expr] = STATE(1113), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1543), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1495), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1414), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(741), + [sym__unquoted_with_expr] = STATE(1018), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(639), - [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(1922), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [anon_sym_null] = ACTIONS(1925), + [aux_sym_cmd_identifier_token3] = ACTIONS(1927), + [aux_sym_cmd_identifier_token4] = ACTIONS(1927), + [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1924), + [anon_sym_DOT_DOT] = ACTIONS(1931), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), - [anon_sym_DOT_DOT_LT] = ACTIONS(1926), - [aux_sym__val_number_decimal_token1] = ACTIONS(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1930), - [aux_sym__val_number_decimal_token3] = ACTIONS(1932), - [aux_sym__val_number_decimal_token4] = ACTIONS(1932), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), + [anon_sym_DOT_DOT_LT] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1937), + [aux_sym__val_number_decimal_token3] = ACTIONS(1939), + [aux_sym__val_number_decimal_token4] = ACTIONS(1939), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1934), + [sym_val_date] = ACTIONS(1941), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(640)] = { - [aux_sym__repeat_newline] = STATE(658), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(2031), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1983), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1738), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(786), - [sym__unquoted_with_expr] = STATE(1118), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1545), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1495), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1414), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(742), + [sym__unquoted_with_expr] = STATE(1024), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(640), - [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(1922), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [anon_sym_null] = ACTIONS(1925), + [aux_sym_cmd_identifier_token3] = ACTIONS(1927), + [aux_sym_cmd_identifier_token4] = ACTIONS(1927), + [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1924), + [anon_sym_DOT_DOT] = ACTIONS(1931), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), - [anon_sym_DOT_DOT_LT] = ACTIONS(1926), - [aux_sym__val_number_decimal_token1] = ACTIONS(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1930), - [aux_sym__val_number_decimal_token3] = ACTIONS(1932), - [aux_sym__val_number_decimal_token4] = ACTIONS(1932), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), + [anon_sym_DOT_DOT_LT] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1937), + [aux_sym__val_number_decimal_token3] = ACTIONS(1939), + [aux_sym__val_number_decimal_token4] = ACTIONS(1939), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1934), + [sym_val_date] = ACTIONS(1941), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(641)] = { - [aux_sym__repeat_newline] = STATE(659), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(2032), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1983), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1738), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(787), - [sym__unquoted_with_expr] = STATE(1122), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1549), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1495), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1414), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(745), + [sym__unquoted_with_expr] = STATE(1032), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(641), - [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(1922), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [anon_sym_null] = ACTIONS(1925), + [aux_sym_cmd_identifier_token3] = ACTIONS(1927), + [aux_sym_cmd_identifier_token4] = ACTIONS(1927), + [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1924), + [anon_sym_DOT_DOT] = ACTIONS(1931), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), - [anon_sym_DOT_DOT_LT] = ACTIONS(1926), - [aux_sym__val_number_decimal_token1] = ACTIONS(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1930), - [aux_sym__val_number_decimal_token3] = ACTIONS(1932), - [aux_sym__val_number_decimal_token4] = ACTIONS(1932), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), + [anon_sym_DOT_DOT_LT] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1937), + [aux_sym__val_number_decimal_token3] = ACTIONS(1939), + [aux_sym__val_number_decimal_token4] = ACTIONS(1939), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1934), + [sym_val_date] = ACTIONS(1941), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(642)] = { - [aux_sym__repeat_newline] = STATE(588), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1029), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(942), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(438), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(833), - [sym__unquoted_with_expr] = STATE(1031), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1551), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1495), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1414), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(733), + [sym__unquoted_with_expr] = STATE(1049), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(642), - [anon_sym_true] = ACTIONS(1938), - [anon_sym_false] = ACTIONS(1938), - [anon_sym_null] = ACTIONS(1940), - [aux_sym_cmd_identifier_token3] = ACTIONS(1942), - [aux_sym_cmd_identifier_token4] = ACTIONS(1942), - [aux_sym_cmd_identifier_token5] = ACTIONS(1942), - [sym__newline] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [anon_sym_null] = ACTIONS(1925), + [aux_sym_cmd_identifier_token3] = ACTIONS(1927), + [aux_sym_cmd_identifier_token4] = ACTIONS(1927), + [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1944), + [anon_sym_DOT_DOT] = ACTIONS(1931), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), - [anon_sym_DOT_DOT_LT] = ACTIONS(1946), - [aux_sym__val_number_decimal_token1] = ACTIONS(1948), - [aux_sym__val_number_decimal_token2] = ACTIONS(1950), - [aux_sym__val_number_decimal_token3] = ACTIONS(1952), - [aux_sym__val_number_decimal_token4] = ACTIONS(1952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), + [anon_sym_DOT_DOT_LT] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1937), + [aux_sym__val_number_decimal_token3] = ACTIONS(1939), + [aux_sym__val_number_decimal_token4] = ACTIONS(1939), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1954), + [sym_val_date] = ACTIONS(1941), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(643)] = { - [aux_sym__repeat_newline] = STATE(605), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1168), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(942), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(438), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(834), - [sym__unquoted_with_expr] = STATE(1033), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1553), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1495), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1414), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(748), + [sym__unquoted_with_expr] = STATE(1052), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(643), - [anon_sym_true] = ACTIONS(1938), - [anon_sym_false] = ACTIONS(1938), - [anon_sym_null] = ACTIONS(1940), - [aux_sym_cmd_identifier_token3] = ACTIONS(1942), - [aux_sym_cmd_identifier_token4] = ACTIONS(1942), - [aux_sym_cmd_identifier_token5] = ACTIONS(1942), - [sym__newline] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [anon_sym_null] = ACTIONS(1925), + [aux_sym_cmd_identifier_token3] = ACTIONS(1927), + [aux_sym_cmd_identifier_token4] = ACTIONS(1927), + [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1944), + [anon_sym_DOT_DOT] = ACTIONS(1931), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), - [anon_sym_DOT_DOT_LT] = ACTIONS(1946), - [aux_sym__val_number_decimal_token1] = ACTIONS(1948), - [aux_sym__val_number_decimal_token2] = ACTIONS(1950), - [aux_sym__val_number_decimal_token3] = ACTIONS(1952), - [aux_sym__val_number_decimal_token4] = ACTIONS(1952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), + [anon_sym_DOT_DOT_LT] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1937), + [aux_sym__val_number_decimal_token3] = ACTIONS(1939), + [aux_sym__val_number_decimal_token4] = ACTIONS(1939), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1954), + [sym_val_date] = ACTIONS(1941), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(644)] = { - [aux_sym__repeat_newline] = STATE(617), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1170), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(942), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(438), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(835), - [sym__unquoted_with_expr] = STATE(1034), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1555), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1495), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1414), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(749), + [sym__unquoted_with_expr] = STATE(1054), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(644), - [anon_sym_true] = ACTIONS(1938), - [anon_sym_false] = ACTIONS(1938), - [anon_sym_null] = ACTIONS(1940), - [aux_sym_cmd_identifier_token3] = ACTIONS(1942), - [aux_sym_cmd_identifier_token4] = ACTIONS(1942), - [aux_sym_cmd_identifier_token5] = ACTIONS(1942), - [sym__newline] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [anon_sym_null] = ACTIONS(1925), + [aux_sym_cmd_identifier_token3] = ACTIONS(1927), + [aux_sym_cmd_identifier_token4] = ACTIONS(1927), + [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1944), + [anon_sym_DOT_DOT] = ACTIONS(1931), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), - [anon_sym_DOT_DOT_LT] = ACTIONS(1946), - [aux_sym__val_number_decimal_token1] = ACTIONS(1948), - [aux_sym__val_number_decimal_token2] = ACTIONS(1950), - [aux_sym__val_number_decimal_token3] = ACTIONS(1952), - [aux_sym__val_number_decimal_token4] = ACTIONS(1952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), + [anon_sym_DOT_DOT_LT] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1937), + [aux_sym__val_number_decimal_token3] = ACTIONS(1939), + [aux_sym__val_number_decimal_token4] = ACTIONS(1939), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1954), + [sym_val_date] = ACTIONS(1941), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(645)] = { - [aux_sym__repeat_newline] = STATE(619), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1172), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(942), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(438), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(836), - [sym__unquoted_with_expr] = STATE(1035), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1057), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1495), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1414), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(750), + [sym__unquoted_with_expr] = STATE(1060), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(645), - [anon_sym_true] = ACTIONS(1938), - [anon_sym_false] = ACTIONS(1938), - [anon_sym_null] = ACTIONS(1940), - [aux_sym_cmd_identifier_token3] = ACTIONS(1942), - [aux_sym_cmd_identifier_token4] = ACTIONS(1942), - [aux_sym_cmd_identifier_token5] = ACTIONS(1942), - [sym__newline] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [anon_sym_null] = ACTIONS(1925), + [aux_sym_cmd_identifier_token3] = ACTIONS(1927), + [aux_sym_cmd_identifier_token4] = ACTIONS(1927), + [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1944), + [anon_sym_DOT_DOT] = ACTIONS(1931), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), - [anon_sym_DOT_DOT_LT] = ACTIONS(1946), - [aux_sym__val_number_decimal_token1] = ACTIONS(1948), - [aux_sym__val_number_decimal_token2] = ACTIONS(1950), - [aux_sym__val_number_decimal_token3] = ACTIONS(1952), - [aux_sym__val_number_decimal_token4] = ACTIONS(1952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), + [anon_sym_DOT_DOT_LT] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1937), + [aux_sym__val_number_decimal_token3] = ACTIONS(1939), + [aux_sym__val_number_decimal_token4] = ACTIONS(1939), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1954), + [sym_val_date] = ACTIONS(1941), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(646)] = { - [aux_sym__repeat_newline] = STATE(620), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1174), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(942), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(438), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(837), - [sym__unquoted_with_expr] = STATE(1036), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1557), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1495), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1414), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(752), + [sym__unquoted_with_expr] = STATE(1064), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(646), - [anon_sym_true] = ACTIONS(1938), - [anon_sym_false] = ACTIONS(1938), - [anon_sym_null] = ACTIONS(1940), - [aux_sym_cmd_identifier_token3] = ACTIONS(1942), - [aux_sym_cmd_identifier_token4] = ACTIONS(1942), - [aux_sym_cmd_identifier_token5] = ACTIONS(1942), - [sym__newline] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [anon_sym_null] = ACTIONS(1925), + [aux_sym_cmd_identifier_token3] = ACTIONS(1927), + [aux_sym_cmd_identifier_token4] = ACTIONS(1927), + [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1944), + [anon_sym_DOT_DOT] = ACTIONS(1931), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), - [anon_sym_DOT_DOT_LT] = ACTIONS(1946), - [aux_sym__val_number_decimal_token1] = ACTIONS(1948), - [aux_sym__val_number_decimal_token2] = ACTIONS(1950), - [aux_sym__val_number_decimal_token3] = ACTIONS(1952), - [aux_sym__val_number_decimal_token4] = ACTIONS(1952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), + [anon_sym_DOT_DOT_LT] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1937), + [aux_sym__val_number_decimal_token3] = ACTIONS(1939), + [aux_sym__val_number_decimal_token4] = ACTIONS(1939), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1954), + [sym_val_date] = ACTIONS(1941), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(647)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(2034), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1983), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1738), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(795), - [sym__unquoted_with_expr] = STATE(984), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1559), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1495), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1414), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(753), + [sym__unquoted_with_expr] = STATE(1067), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(647), - [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(1922), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [anon_sym_null] = ACTIONS(1925), + [aux_sym_cmd_identifier_token3] = ACTIONS(1927), + [aux_sym_cmd_identifier_token4] = ACTIONS(1927), + [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1924), + [anon_sym_DOT_DOT] = ACTIONS(1931), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), - [anon_sym_DOT_DOT_LT] = ACTIONS(1926), - [aux_sym__val_number_decimal_token1] = ACTIONS(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1930), - [aux_sym__val_number_decimal_token3] = ACTIONS(1932), - [aux_sym__val_number_decimal_token4] = ACTIONS(1932), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), + [anon_sym_DOT_DOT_LT] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1937), + [aux_sym__val_number_decimal_token3] = ACTIONS(1939), + [aux_sym__val_number_decimal_token4] = ACTIONS(1939), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1934), + [sym_val_date] = ACTIONS(1941), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(648)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(2036), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1983), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1738), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(797), - [sym__unquoted_with_expr] = STATE(986), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1561), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1495), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1414), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(754), + [sym__unquoted_with_expr] = STATE(1070), + [sym__unquoted_anonymous_prefix] = STATE(4753), [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(1922), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [anon_sym_null] = ACTIONS(1925), + [aux_sym_cmd_identifier_token3] = ACTIONS(1927), + [aux_sym_cmd_identifier_token4] = ACTIONS(1927), + [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1924), + [anon_sym_DOT_DOT] = ACTIONS(1931), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), - [anon_sym_DOT_DOT_LT] = ACTIONS(1926), - [aux_sym__val_number_decimal_token1] = ACTIONS(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1930), - [aux_sym__val_number_decimal_token3] = ACTIONS(1932), - [aux_sym__val_number_decimal_token4] = ACTIONS(1932), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), + [anon_sym_DOT_DOT_LT] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1937), + [aux_sym__val_number_decimal_token3] = ACTIONS(1939), + [aux_sym__val_number_decimal_token4] = ACTIONS(1939), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1934), + [sym_val_date] = ACTIONS(1941), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(649)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1997), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1983), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1738), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(798), - [sym__unquoted_with_expr] = STATE(988), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1563), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1495), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1414), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(755), + [sym__unquoted_with_expr] = STATE(1072), + [sym__unquoted_anonymous_prefix] = STATE(4753), [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(1922), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [anon_sym_null] = ACTIONS(1925), + [aux_sym_cmd_identifier_token3] = ACTIONS(1927), + [aux_sym_cmd_identifier_token4] = ACTIONS(1927), + [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1924), + [anon_sym_DOT_DOT] = ACTIONS(1931), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), - [anon_sym_DOT_DOT_LT] = ACTIONS(1926), - [aux_sym__val_number_decimal_token1] = ACTIONS(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1930), - [aux_sym__val_number_decimal_token3] = ACTIONS(1932), - [aux_sym__val_number_decimal_token4] = ACTIONS(1932), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), + [anon_sym_DOT_DOT_LT] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1937), + [aux_sym__val_number_decimal_token3] = ACTIONS(1939), + [aux_sym__val_number_decimal_token4] = ACTIONS(1939), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1934), + [sym_val_date] = ACTIONS(1941), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(650)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(2039), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1983), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1738), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(801), - [sym__unquoted_with_expr] = STATE(992), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(663), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1566), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1495), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1414), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(756), + [sym__unquoted_with_expr] = STATE(1077), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(650), - [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(1922), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [anon_sym_null] = ACTIONS(1925), + [aux_sym_cmd_identifier_token3] = ACTIONS(1927), + [aux_sym_cmd_identifier_token4] = ACTIONS(1927), + [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1924), + [anon_sym_DOT_DOT] = ACTIONS(1931), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), - [anon_sym_DOT_DOT_LT] = ACTIONS(1926), - [aux_sym__val_number_decimal_token1] = ACTIONS(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1930), - [aux_sym__val_number_decimal_token3] = ACTIONS(1932), - [aux_sym__val_number_decimal_token4] = ACTIONS(1932), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), + [anon_sym_DOT_DOT_LT] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1937), + [aux_sym__val_number_decimal_token3] = ACTIONS(1939), + [aux_sym__val_number_decimal_token4] = ACTIONS(1939), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1934), + [sym_val_date] = ACTIONS(1941), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(651)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(2041), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1983), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1738), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(802), - [sym__unquoted_with_expr] = STATE(994), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(664), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1568), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1495), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1414), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(757), + [sym__unquoted_with_expr] = STATE(1080), + [sym__unquoted_anonymous_prefix] = STATE(4753), [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(1922), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [anon_sym_null] = ACTIONS(1925), + [aux_sym_cmd_identifier_token3] = ACTIONS(1927), + [aux_sym_cmd_identifier_token4] = ACTIONS(1927), + [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1924), + [anon_sym_DOT_DOT] = ACTIONS(1931), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), - [anon_sym_DOT_DOT_LT] = ACTIONS(1926), - [aux_sym__val_number_decimal_token1] = ACTIONS(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1930), - [aux_sym__val_number_decimal_token3] = ACTIONS(1932), - [aux_sym__val_number_decimal_token4] = ACTIONS(1932), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), + [anon_sym_DOT_DOT_LT] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1937), + [aux_sym__val_number_decimal_token3] = ACTIONS(1939), + [aux_sym__val_number_decimal_token4] = ACTIONS(1939), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1934), + [sym_val_date] = ACTIONS(1941), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(652)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(2043), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1983), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1738), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(803), - [sym__unquoted_with_expr] = STATE(996), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(665), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1569), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1495), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1414), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(759), + [sym__unquoted_with_expr] = STATE(1083), + [sym__unquoted_anonymous_prefix] = STATE(4753), [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(1922), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [anon_sym_null] = ACTIONS(1925), + [aux_sym_cmd_identifier_token3] = ACTIONS(1927), + [aux_sym_cmd_identifier_token4] = ACTIONS(1927), + [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1924), + [anon_sym_DOT_DOT] = ACTIONS(1931), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), - [anon_sym_DOT_DOT_LT] = ACTIONS(1926), - [aux_sym__val_number_decimal_token1] = ACTIONS(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1930), - [aux_sym__val_number_decimal_token3] = ACTIONS(1932), - [aux_sym__val_number_decimal_token4] = ACTIONS(1932), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), + [anon_sym_DOT_DOT_LT] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1937), + [aux_sym__val_number_decimal_token3] = ACTIONS(1939), + [aux_sym__val_number_decimal_token4] = ACTIONS(1939), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1934), + [sym_val_date] = ACTIONS(1941), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(653)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(2045), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1983), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1738), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(804), - [sym__unquoted_with_expr] = STATE(998), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(666), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1570), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1495), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1414), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(760), + [sym__unquoted_with_expr] = STATE(1094), + [sym__unquoted_anonymous_prefix] = STATE(4753), [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(1922), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [anon_sym_null] = ACTIONS(1925), + [aux_sym_cmd_identifier_token3] = ACTIONS(1927), + [aux_sym_cmd_identifier_token4] = ACTIONS(1927), + [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1924), + [anon_sym_DOT_DOT] = ACTIONS(1931), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), - [anon_sym_DOT_DOT_LT] = ACTIONS(1926), - [aux_sym__val_number_decimal_token1] = ACTIONS(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1930), - [aux_sym__val_number_decimal_token3] = ACTIONS(1932), - [aux_sym__val_number_decimal_token4] = ACTIONS(1932), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), + [anon_sym_DOT_DOT_LT] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1937), + [aux_sym__val_number_decimal_token3] = ACTIONS(1939), + [aux_sym__val_number_decimal_token4] = ACTIONS(1939), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1934), + [sym_val_date] = ACTIONS(1941), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(654)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(2047), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1983), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1738), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(805), - [sym__unquoted_with_expr] = STATE(1000), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(667), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1571), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1495), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1414), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(762), + [sym__unquoted_with_expr] = STATE(1096), + [sym__unquoted_anonymous_prefix] = STATE(4753), [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(1922), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [anon_sym_null] = ACTIONS(1925), + [aux_sym_cmd_identifier_token3] = ACTIONS(1927), + [aux_sym_cmd_identifier_token4] = ACTIONS(1927), + [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1924), + [anon_sym_DOT_DOT] = ACTIONS(1931), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), - [anon_sym_DOT_DOT_LT] = ACTIONS(1926), - [aux_sym__val_number_decimal_token1] = ACTIONS(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1930), - [aux_sym__val_number_decimal_token3] = ACTIONS(1932), - [aux_sym__val_number_decimal_token4] = ACTIONS(1932), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), + [anon_sym_DOT_DOT_LT] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1937), + [aux_sym__val_number_decimal_token3] = ACTIONS(1939), + [aux_sym__val_number_decimal_token4] = ACTIONS(1939), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1934), + [sym_val_date] = ACTIONS(1941), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(655)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1002), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1983), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1738), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(903), - [sym__unquoted_with_expr] = STATE(1003), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(668), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1572), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1495), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1414), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(763), + [sym__unquoted_with_expr] = STATE(1097), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(655), - [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(1922), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [anon_sym_null] = ACTIONS(1925), + [aux_sym_cmd_identifier_token3] = ACTIONS(1927), + [aux_sym_cmd_identifier_token4] = ACTIONS(1927), + [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1924), + [anon_sym_DOT_DOT] = ACTIONS(1931), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), - [anon_sym_DOT_DOT_LT] = ACTIONS(1926), - [aux_sym__val_number_decimal_token1] = ACTIONS(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1930), - [aux_sym__val_number_decimal_token3] = ACTIONS(1932), - [aux_sym__val_number_decimal_token4] = ACTIONS(1932), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), + [anon_sym_DOT_DOT_LT] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1937), + [aux_sym__val_number_decimal_token3] = ACTIONS(1939), + [aux_sym__val_number_decimal_token4] = ACTIONS(1939), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1934), + [sym_val_date] = ACTIONS(1941), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(656)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(2049), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1983), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1738), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(806), - [sym__unquoted_with_expr] = STATE(1007), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(669), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1574), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1495), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1414), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(787), + [sym__unquoted_with_expr] = STATE(987), + [sym__unquoted_anonymous_prefix] = STATE(4753), [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(1922), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [anon_sym_null] = ACTIONS(1925), + [aux_sym_cmd_identifier_token3] = ACTIONS(1927), + [aux_sym_cmd_identifier_token4] = ACTIONS(1927), + [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1924), + [anon_sym_DOT_DOT] = ACTIONS(1931), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), - [anon_sym_DOT_DOT_LT] = ACTIONS(1926), - [aux_sym__val_number_decimal_token1] = ACTIONS(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1930), - [aux_sym__val_number_decimal_token3] = ACTIONS(1932), - [aux_sym__val_number_decimal_token4] = ACTIONS(1932), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), + [anon_sym_DOT_DOT_LT] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1937), + [aux_sym__val_number_decimal_token3] = ACTIONS(1939), + [aux_sym__val_number_decimal_token4] = ACTIONS(1939), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1934), + [sym_val_date] = ACTIONS(1941), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(657)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(2051), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1983), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1738), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(807), - [sym__unquoted_with_expr] = STATE(1009), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(670), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1575), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1495), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1414), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(789), + [sym__unquoted_with_expr] = STATE(1139), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(657), - [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(1922), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [anon_sym_null] = ACTIONS(1925), + [aux_sym_cmd_identifier_token3] = ACTIONS(1927), + [aux_sym_cmd_identifier_token4] = ACTIONS(1927), + [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1924), + [anon_sym_DOT_DOT] = ACTIONS(1931), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), - [anon_sym_DOT_DOT_LT] = ACTIONS(1926), - [aux_sym__val_number_decimal_token1] = ACTIONS(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1930), - [aux_sym__val_number_decimal_token3] = ACTIONS(1932), - [aux_sym__val_number_decimal_token4] = ACTIONS(1932), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), + [anon_sym_DOT_DOT_LT] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1937), + [aux_sym__val_number_decimal_token3] = ACTIONS(1939), + [aux_sym__val_number_decimal_token4] = ACTIONS(1939), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1934), + [sym_val_date] = ACTIONS(1941), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(658)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(2053), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1983), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1738), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(808), + [aux_sym__repeat_newline] = STATE(671), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1009), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1495), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1414), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(810), [sym__unquoted_with_expr] = STATE(1011), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym__unquoted_anonymous_prefix] = STATE(4753), [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(1922), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [anon_sym_null] = ACTIONS(1925), + [aux_sym_cmd_identifier_token3] = ACTIONS(1927), + [aux_sym_cmd_identifier_token4] = ACTIONS(1927), + [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1924), + [anon_sym_DOT_DOT] = ACTIONS(1931), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), - [anon_sym_DOT_DOT_LT] = ACTIONS(1926), - [aux_sym__val_number_decimal_token1] = ACTIONS(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1930), - [aux_sym__val_number_decimal_token3] = ACTIONS(1932), - [aux_sym__val_number_decimal_token4] = ACTIONS(1932), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), + [anon_sym_DOT_DOT_LT] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1937), + [aux_sym__val_number_decimal_token3] = ACTIONS(1939), + [aux_sym__val_number_decimal_token4] = ACTIONS(1939), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1934), + [sym_val_date] = ACTIONS(1941), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(659)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(2055), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1983), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1738), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(809), - [sym__unquoted_with_expr] = STATE(1013), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(672), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1577), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1495), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1414), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(823), + [sym__unquoted_with_expr] = STATE(1019), + [sym__unquoted_anonymous_prefix] = STATE(4753), [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(1922), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [anon_sym_null] = ACTIONS(1925), + [aux_sym_cmd_identifier_token3] = ACTIONS(1927), + [aux_sym_cmd_identifier_token4] = ACTIONS(1927), + [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1924), + [anon_sym_DOT_DOT] = ACTIONS(1931), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), - [anon_sym_DOT_DOT_LT] = ACTIONS(1926), - [aux_sym__val_number_decimal_token1] = ACTIONS(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1930), - [aux_sym__val_number_decimal_token3] = ACTIONS(1932), - [aux_sym__val_number_decimal_token4] = ACTIONS(1932), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), + [anon_sym_DOT_DOT_LT] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1937), + [aux_sym__val_number_decimal_token3] = ACTIONS(1939), + [aux_sym__val_number_decimal_token4] = ACTIONS(1939), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1934), + [sym_val_date] = ACTIONS(1941), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(660)] = { - [aux_sym__repeat_newline] = STATE(675), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(2057), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1983), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1738), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(810), - [sym__unquoted_with_expr] = STATE(1015), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(673), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1578), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1495), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1414), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(825), + [sym__unquoted_with_expr] = STATE(1021), + [sym__unquoted_anonymous_prefix] = STATE(4753), [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(1922), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [anon_sym_null] = ACTIONS(1925), + [aux_sym_cmd_identifier_token3] = ACTIONS(1927), + [aux_sym_cmd_identifier_token4] = ACTIONS(1927), + [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1924), + [anon_sym_DOT_DOT] = ACTIONS(1931), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), - [anon_sym_DOT_DOT_LT] = ACTIONS(1926), - [aux_sym__val_number_decimal_token1] = ACTIONS(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1930), - [aux_sym__val_number_decimal_token3] = ACTIONS(1932), - [aux_sym__val_number_decimal_token4] = ACTIONS(1932), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), + [anon_sym_DOT_DOT_LT] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1937), + [aux_sym__val_number_decimal_token3] = ACTIONS(1939), + [aux_sym__val_number_decimal_token4] = ACTIONS(1939), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1934), + [sym_val_date] = ACTIONS(1941), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(661)] = { - [aux_sym__repeat_newline] = STATE(676), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(2058), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1983), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1738), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(811), - [sym__unquoted_with_expr] = STATE(1016), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(674), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1579), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1495), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1414), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(827), + [sym__unquoted_with_expr] = STATE(1023), + [sym__unquoted_anonymous_prefix] = STATE(4753), [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(1922), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [anon_sym_null] = ACTIONS(1925), + [aux_sym_cmd_identifier_token3] = ACTIONS(1927), + [aux_sym_cmd_identifier_token4] = ACTIONS(1927), + [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1924), + [anon_sym_DOT_DOT] = ACTIONS(1931), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), - [anon_sym_DOT_DOT_LT] = ACTIONS(1926), - [aux_sym__val_number_decimal_token1] = ACTIONS(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1930), - [aux_sym__val_number_decimal_token3] = ACTIONS(1932), - [aux_sym__val_number_decimal_token4] = ACTIONS(1932), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), + [anon_sym_DOT_DOT_LT] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1937), + [aux_sym__val_number_decimal_token3] = ACTIONS(1939), + [aux_sym__val_number_decimal_token4] = ACTIONS(1939), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1934), + [sym_val_date] = ACTIONS(1941), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(662)] = { - [aux_sym__repeat_newline] = STATE(677), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(2059), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1983), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1738), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(812), - [sym__unquoted_with_expr] = STATE(1017), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(675), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1580), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1495), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1414), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(829), + [sym__unquoted_with_expr] = STATE(1025), + [sym__unquoted_anonymous_prefix] = STATE(4753), [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(1922), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [anon_sym_null] = ACTIONS(1925), + [aux_sym_cmd_identifier_token3] = ACTIONS(1927), + [aux_sym_cmd_identifier_token4] = ACTIONS(1927), + [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1924), + [anon_sym_DOT_DOT] = ACTIONS(1931), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), - [anon_sym_DOT_DOT_LT] = ACTIONS(1926), - [aux_sym__val_number_decimal_token1] = ACTIONS(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1930), - [aux_sym__val_number_decimal_token3] = ACTIONS(1932), - [aux_sym__val_number_decimal_token4] = ACTIONS(1932), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), + [anon_sym_DOT_DOT_LT] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1937), + [aux_sym__val_number_decimal_token3] = ACTIONS(1939), + [aux_sym__val_number_decimal_token4] = ACTIONS(1939), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1934), + [sym_val_date] = ACTIONS(1941), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(663)] = { - [aux_sym__repeat_newline] = STATE(678), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(2060), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1983), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1738), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(814), - [sym__unquoted_with_expr] = STATE(1018), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1593), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1495), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1414), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(886), + [sym__unquoted_with_expr] = STATE(1084), + [sym__unquoted_anonymous_prefix] = STATE(4753), [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(1922), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [anon_sym_null] = ACTIONS(1925), + [aux_sym_cmd_identifier_token3] = ACTIONS(1927), + [aux_sym_cmd_identifier_token4] = ACTIONS(1927), + [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1924), + [anon_sym_DOT_DOT] = ACTIONS(1931), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), - [anon_sym_DOT_DOT_LT] = ACTIONS(1926), - [aux_sym__val_number_decimal_token1] = ACTIONS(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1930), - [aux_sym__val_number_decimal_token3] = ACTIONS(1932), - [aux_sym__val_number_decimal_token4] = ACTIONS(1932), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), + [anon_sym_DOT_DOT_LT] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1937), + [aux_sym__val_number_decimal_token3] = ACTIONS(1939), + [aux_sym__val_number_decimal_token4] = ACTIONS(1939), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1934), + [sym_val_date] = ACTIONS(1941), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(664)] = { - [aux_sym__repeat_newline] = STATE(679), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(2061), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1983), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1738), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(828), - [sym__unquoted_with_expr] = STATE(1021), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1595), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1495), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1414), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(887), + [sym__unquoted_with_expr] = STATE(1086), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(664), - [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(1922), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [anon_sym_null] = ACTIONS(1925), + [aux_sym_cmd_identifier_token3] = ACTIONS(1927), + [aux_sym_cmd_identifier_token4] = ACTIONS(1927), + [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1924), + [anon_sym_DOT_DOT] = ACTIONS(1931), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), - [anon_sym_DOT_DOT_LT] = ACTIONS(1926), - [aux_sym__val_number_decimal_token1] = ACTIONS(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1930), - [aux_sym__val_number_decimal_token3] = ACTIONS(1932), - [aux_sym__val_number_decimal_token4] = ACTIONS(1932), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), + [anon_sym_DOT_DOT_LT] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1937), + [aux_sym__val_number_decimal_token3] = ACTIONS(1939), + [aux_sym__val_number_decimal_token4] = ACTIONS(1939), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1934), + [sym_val_date] = ACTIONS(1941), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(665)] = { - [aux_sym__repeat_newline] = STATE(589), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(2062), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1983), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1738), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(830), - [sym__unquoted_with_expr] = STATE(1022), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1597), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1495), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1414), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(888), + [sym__unquoted_with_expr] = STATE(1088), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(665), - [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(1922), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [anon_sym_null] = ACTIONS(1925), + [aux_sym_cmd_identifier_token3] = ACTIONS(1927), + [aux_sym_cmd_identifier_token4] = ACTIONS(1927), + [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1924), + [anon_sym_DOT_DOT] = ACTIONS(1931), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), - [anon_sym_DOT_DOT_LT] = ACTIONS(1926), - [aux_sym__val_number_decimal_token1] = ACTIONS(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1930), - [aux_sym__val_number_decimal_token3] = ACTIONS(1932), - [aux_sym__val_number_decimal_token4] = ACTIONS(1932), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), + [anon_sym_DOT_DOT_LT] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1937), + [aux_sym__val_number_decimal_token3] = ACTIONS(1939), + [aux_sym__val_number_decimal_token4] = ACTIONS(1939), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1934), + [sym_val_date] = ACTIONS(1941), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(666)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1002), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(942), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(438), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(903), - [sym__unquoted_with_expr] = STATE(1003), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1599), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1495), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1414), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(889), + [sym__unquoted_with_expr] = STATE(1090), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(666), - [anon_sym_true] = ACTIONS(1938), - [anon_sym_false] = ACTIONS(1938), - [anon_sym_null] = ACTIONS(1940), - [aux_sym_cmd_identifier_token3] = ACTIONS(1942), - [aux_sym_cmd_identifier_token4] = ACTIONS(1942), - [aux_sym_cmd_identifier_token5] = ACTIONS(1942), - [sym__newline] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [anon_sym_null] = ACTIONS(1925), + [aux_sym_cmd_identifier_token3] = ACTIONS(1927), + [aux_sym_cmd_identifier_token4] = ACTIONS(1927), + [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1944), + [anon_sym_DOT_DOT] = ACTIONS(1931), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), - [anon_sym_DOT_DOT_LT] = ACTIONS(1946), - [aux_sym__val_number_decimal_token1] = ACTIONS(1948), - [aux_sym__val_number_decimal_token2] = ACTIONS(1950), - [aux_sym__val_number_decimal_token3] = ACTIONS(1952), - [aux_sym__val_number_decimal_token4] = ACTIONS(1952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), + [anon_sym_DOT_DOT_LT] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1937), + [aux_sym__val_number_decimal_token3] = ACTIONS(1939), + [aux_sym__val_number_decimal_token4] = ACTIONS(1939), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1954), + [sym_val_date] = ACTIONS(1941), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(667)] = { - [aux_sym__repeat_newline] = STATE(514), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(2064), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1983), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1738), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(832), - [sym__unquoted_with_expr] = STATE(1026), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1601), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1495), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1414), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(890), + [sym__unquoted_with_expr] = STATE(1092), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(667), - [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(1922), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [anon_sym_null] = ACTIONS(1925), + [aux_sym_cmd_identifier_token3] = ACTIONS(1927), + [aux_sym_cmd_identifier_token4] = ACTIONS(1927), + [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1924), + [anon_sym_DOT_DOT] = ACTIONS(1931), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), - [anon_sym_DOT_DOT_LT] = ACTIONS(1926), - [aux_sym__val_number_decimal_token1] = ACTIONS(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1930), - [aux_sym__val_number_decimal_token3] = ACTIONS(1932), - [aux_sym__val_number_decimal_token4] = ACTIONS(1932), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), + [anon_sym_DOT_DOT_LT] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1937), + [aux_sym__val_number_decimal_token3] = ACTIONS(1939), + [aux_sym__val_number_decimal_token4] = ACTIONS(1939), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1934), + [sym_val_date] = ACTIONS(1941), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(668)] = { - [aux_sym__repeat_newline] = STATE(515), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1029), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1983), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1738), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(833), - [sym__unquoted_with_expr] = STATE(1031), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1603), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1495), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1414), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(891), + [sym__unquoted_with_expr] = STATE(1099), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(668), - [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(1922), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [anon_sym_null] = ACTIONS(1925), + [aux_sym_cmd_identifier_token3] = ACTIONS(1927), + [aux_sym_cmd_identifier_token4] = ACTIONS(1927), + [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1924), + [anon_sym_DOT_DOT] = ACTIONS(1931), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), - [anon_sym_DOT_DOT_LT] = ACTIONS(1926), - [aux_sym__val_number_decimal_token1] = ACTIONS(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1930), - [aux_sym__val_number_decimal_token3] = ACTIONS(1932), - [aux_sym__val_number_decimal_token4] = ACTIONS(1932), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), + [anon_sym_DOT_DOT_LT] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1937), + [aux_sym__val_number_decimal_token3] = ACTIONS(1939), + [aux_sym__val_number_decimal_token4] = ACTIONS(1939), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1934), + [sym_val_date] = ACTIONS(1941), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(669)] = { - [aux_sym__repeat_newline] = STATE(516), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(2065), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1983), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1738), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(834), - [sym__unquoted_with_expr] = STATE(1033), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1605), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1495), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1414), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(905), + [sym__unquoted_with_expr] = STATE(1101), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(669), - [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(1922), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [anon_sym_null] = ACTIONS(1925), + [aux_sym_cmd_identifier_token3] = ACTIONS(1927), + [aux_sym_cmd_identifier_token4] = ACTIONS(1927), + [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1924), + [anon_sym_DOT_DOT] = ACTIONS(1931), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), - [anon_sym_DOT_DOT_LT] = ACTIONS(1926), - [aux_sym__val_number_decimal_token1] = ACTIONS(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1930), - [aux_sym__val_number_decimal_token3] = ACTIONS(1932), - [aux_sym__val_number_decimal_token4] = ACTIONS(1932), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), + [anon_sym_DOT_DOT_LT] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1937), + [aux_sym__val_number_decimal_token3] = ACTIONS(1939), + [aux_sym__val_number_decimal_token4] = ACTIONS(1939), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1934), + [sym_val_date] = ACTIONS(1941), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(670)] = { - [aux_sym__repeat_newline] = STATE(517), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(2066), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1983), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1738), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(835), - [sym__unquoted_with_expr] = STATE(1034), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1607), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1495), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1414), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(906), + [sym__unquoted_with_expr] = STATE(1104), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(670), - [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(1922), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [anon_sym_null] = ACTIONS(1925), + [aux_sym_cmd_identifier_token3] = ACTIONS(1927), + [aux_sym_cmd_identifier_token4] = ACTIONS(1927), + [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1924), + [anon_sym_DOT_DOT] = ACTIONS(1931), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), - [anon_sym_DOT_DOT_LT] = ACTIONS(1926), - [aux_sym__val_number_decimal_token1] = ACTIONS(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1930), - [aux_sym__val_number_decimal_token3] = ACTIONS(1932), - [aux_sym__val_number_decimal_token4] = ACTIONS(1932), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), + [anon_sym_DOT_DOT_LT] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1937), + [aux_sym__val_number_decimal_token3] = ACTIONS(1939), + [aux_sym__val_number_decimal_token4] = ACTIONS(1939), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1934), + [sym_val_date] = ACTIONS(1941), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(671)] = { - [aux_sym__repeat_newline] = STATE(518), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(2067), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1983), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1738), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(836), - [sym__unquoted_with_expr] = STATE(1035), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1106), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1495), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1414), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(907), + [sym__unquoted_with_expr] = STATE(1107), + [sym__unquoted_anonymous_prefix] = STATE(4753), [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(1922), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [anon_sym_null] = ACTIONS(1925), + [aux_sym_cmd_identifier_token3] = ACTIONS(1927), + [aux_sym_cmd_identifier_token4] = ACTIONS(1927), + [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1924), + [anon_sym_DOT_DOT] = ACTIONS(1931), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), - [anon_sym_DOT_DOT_LT] = ACTIONS(1926), - [aux_sym__val_number_decimal_token1] = ACTIONS(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1930), - [aux_sym__val_number_decimal_token3] = ACTIONS(1932), - [aux_sym__val_number_decimal_token4] = ACTIONS(1932), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), + [anon_sym_DOT_DOT_LT] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1937), + [aux_sym__val_number_decimal_token3] = ACTIONS(1939), + [aux_sym__val_number_decimal_token4] = ACTIONS(1939), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1934), + [sym_val_date] = ACTIONS(1941), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(672)] = { - [aux_sym__repeat_newline] = STATE(519), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(2068), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1983), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1738), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(837), - [sym__unquoted_with_expr] = STATE(1036), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1609), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1495), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1414), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(908), + [sym__unquoted_with_expr] = STATE(1110), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(672), - [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(1922), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [anon_sym_null] = ACTIONS(1925), + [aux_sym_cmd_identifier_token3] = ACTIONS(1927), + [aux_sym_cmd_identifier_token4] = ACTIONS(1927), + [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1924), + [anon_sym_DOT_DOT] = ACTIONS(1931), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), - [anon_sym_DOT_DOT_LT] = ACTIONS(1926), - [aux_sym__val_number_decimal_token1] = ACTIONS(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1930), - [aux_sym__val_number_decimal_token3] = ACTIONS(1932), - [aux_sym__val_number_decimal_token4] = ACTIONS(1932), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), + [anon_sym_DOT_DOT_LT] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1937), + [aux_sym__val_number_decimal_token3] = ACTIONS(1939), + [aux_sym__val_number_decimal_token4] = ACTIONS(1939), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1934), + [sym_val_date] = ACTIONS(1941), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(673)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1249), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(942), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(438), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(806), - [sym__unquoted_with_expr] = STATE(1007), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1611), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1495), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1414), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(909), + [sym__unquoted_with_expr] = STATE(1112), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(673), - [anon_sym_true] = ACTIONS(1938), - [anon_sym_false] = ACTIONS(1938), - [anon_sym_null] = ACTIONS(1940), - [aux_sym_cmd_identifier_token3] = ACTIONS(1942), - [aux_sym_cmd_identifier_token4] = ACTIONS(1942), - [aux_sym_cmd_identifier_token5] = ACTIONS(1942), - [sym__newline] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [anon_sym_null] = ACTIONS(1925), + [aux_sym_cmd_identifier_token3] = ACTIONS(1927), + [aux_sym_cmd_identifier_token4] = ACTIONS(1927), + [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1944), + [anon_sym_DOT_DOT] = ACTIONS(1931), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), - [anon_sym_DOT_DOT_LT] = ACTIONS(1946), - [aux_sym__val_number_decimal_token1] = ACTIONS(1948), - [aux_sym__val_number_decimal_token2] = ACTIONS(1950), - [aux_sym__val_number_decimal_token3] = ACTIONS(1952), - [aux_sym__val_number_decimal_token4] = ACTIONS(1952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), + [anon_sym_DOT_DOT_LT] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1937), + [aux_sym__val_number_decimal_token3] = ACTIONS(1939), + [aux_sym__val_number_decimal_token4] = ACTIONS(1939), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1954), + [sym_val_date] = ACTIONS(1941), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(674)] = { + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1613), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1495), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1414), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(910), + [sym__unquoted_with_expr] = STATE(1115), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(674), - [ts_builtin_sym_end] = ACTIONS(1852), - [anon_sym_in] = ACTIONS(1852), - [sym__newline] = ACTIONS(1852), - [anon_sym_SEMI] = ACTIONS(1852), - [anon_sym_PIPE] = ACTIONS(1852), - [anon_sym_err_GT_PIPE] = ACTIONS(1852), - [anon_sym_out_GT_PIPE] = ACTIONS(1852), - [anon_sym_e_GT_PIPE] = ACTIONS(1852), - [anon_sym_o_GT_PIPE] = ACTIONS(1852), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1852), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1852), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1852), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1852), - [anon_sym_GT2] = ACTIONS(1854), - [anon_sym_DASH2] = ACTIONS(1852), - [anon_sym_STAR2] = ACTIONS(1854), - [anon_sym_and2] = ACTIONS(1852), - [anon_sym_xor2] = ACTIONS(1852), - [anon_sym_or2] = ACTIONS(1852), - [anon_sym_not_DASHin2] = ACTIONS(1852), - [anon_sym_has2] = ACTIONS(1852), - [anon_sym_not_DASHhas2] = ACTIONS(1852), - [anon_sym_starts_DASHwith2] = ACTIONS(1852), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1852), - [anon_sym_ends_DASHwith2] = ACTIONS(1852), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1852), - [anon_sym_EQ_EQ2] = ACTIONS(1852), - [anon_sym_BANG_EQ2] = ACTIONS(1852), - [anon_sym_LT2] = ACTIONS(1854), - [anon_sym_LT_EQ2] = ACTIONS(1852), - [anon_sym_GT_EQ2] = ACTIONS(1852), - [anon_sym_EQ_TILDE2] = ACTIONS(1852), - [anon_sym_BANG_TILDE2] = ACTIONS(1852), - [anon_sym_like2] = ACTIONS(1852), - [anon_sym_not_DASHlike2] = ACTIONS(1852), - [anon_sym_LPAREN2] = ACTIONS(1852), - [anon_sym_STAR_STAR2] = ACTIONS(1852), - [anon_sym_PLUS_PLUS2] = ACTIONS(1852), - [anon_sym_SLASH2] = ACTIONS(1854), - [anon_sym_mod2] = ACTIONS(1852), - [anon_sym_SLASH_SLASH2] = ACTIONS(1852), - [anon_sym_PLUS2] = ACTIONS(1854), - [anon_sym_bit_DASHshl2] = ACTIONS(1852), - [anon_sym_bit_DASHshr2] = ACTIONS(1852), - [anon_sym_bit_DASHand2] = ACTIONS(1852), - [anon_sym_bit_DASHxor2] = ACTIONS(1852), - [anon_sym_bit_DASHor2] = ACTIONS(1852), - [anon_sym_DOT_DOT2] = ACTIONS(1854), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1852), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1852), - [aux_sym__immediate_decimal_token5] = ACTIONS(2086), - [anon_sym_err_GT] = ACTIONS(1854), - [anon_sym_out_GT] = ACTIONS(1854), - [anon_sym_e_GT] = ACTIONS(1854), - [anon_sym_o_GT] = ACTIONS(1854), - [anon_sym_err_PLUSout_GT] = ACTIONS(1854), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1854), - [anon_sym_o_PLUSe_GT] = ACTIONS(1854), - [anon_sym_e_PLUSo_GT] = ACTIONS(1854), - [anon_sym_err_GT_GT] = ACTIONS(1852), - [anon_sym_out_GT_GT] = ACTIONS(1852), - [anon_sym_e_GT_GT] = ACTIONS(1852), - [anon_sym_o_GT_GT] = ACTIONS(1852), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1852), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1852), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1852), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1852), - [sym__unquoted_pattern] = ACTIONS(1854), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(675)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(2082), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1983), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1738), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(853), - [sym__unquoted_with_expr] = STATE(1060), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [sym_comment] = STATE(675), - [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(1922), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [anon_sym_null] = ACTIONS(1925), + [aux_sym_cmd_identifier_token3] = ACTIONS(1927), + [aux_sym_cmd_identifier_token4] = ACTIONS(1927), + [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1924), + [anon_sym_DOT_DOT] = ACTIONS(1931), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), - [anon_sym_DOT_DOT_LT] = ACTIONS(1926), - [aux_sym__val_number_decimal_token1] = ACTIONS(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1930), - [aux_sym__val_number_decimal_token3] = ACTIONS(1932), - [aux_sym__val_number_decimal_token4] = ACTIONS(1932), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), + [anon_sym_DOT_DOT_LT] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1937), + [aux_sym__val_number_decimal_token3] = ACTIONS(1939), + [aux_sym__val_number_decimal_token4] = ACTIONS(1939), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1934), + [sym_val_date] = ACTIONS(1941), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(676)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(2084), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1983), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1738), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(854), - [sym__unquoted_with_expr] = STATE(1063), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [sym_comment] = STATE(676), - [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(1922), + [STATE(675)] = { + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1615), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1495), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1414), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(734), + [sym__unquoted_with_expr] = STATE(1117), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(675), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [anon_sym_null] = ACTIONS(1925), + [aux_sym_cmd_identifier_token3] = ACTIONS(1927), + [aux_sym_cmd_identifier_token4] = ACTIONS(1927), + [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1924), + [anon_sym_DOT_DOT] = ACTIONS(1931), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), - [anon_sym_DOT_DOT_LT] = ACTIONS(1926), - [aux_sym__val_number_decimal_token1] = ACTIONS(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1930), - [aux_sym__val_number_decimal_token3] = ACTIONS(1932), - [aux_sym__val_number_decimal_token4] = ACTIONS(1932), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), + [anon_sym_DOT_DOT_LT] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1937), + [aux_sym__val_number_decimal_token3] = ACTIONS(1939), + [aux_sym__val_number_decimal_token4] = ACTIONS(1939), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1934), + [sym_val_date] = ACTIONS(1941), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, + [STATE(676)] = { + [sym_expr_parenthesized] = STATE(4280), + [sym__spread_parenthesized] = STATE(4959), + [sym_val_range] = STATE(4961), + [sym__val_range] = STATE(4729), + [sym__value] = STATE(4961), + [sym_val_nothing] = STATE(4862), + [sym_val_bool] = STATE(4431), + [sym__spread_variable] = STATE(4968), + [sym_val_variable] = STATE(4050), + [sym_val_cellpath] = STATE(4862), + [sym_val_number] = STATE(4862), + [sym__val_number_decimal] = STATE(3653), + [sym__val_number] = STATE(4628), + [sym_val_duration] = STATE(4862), + [sym_val_filesize] = STATE(4862), + [sym_val_binary] = STATE(4862), + [sym_val_string] = STATE(4862), + [sym__raw_str] = STATE(3725), + [sym__str_double_quotes] = STATE(3725), + [sym__str_single_quotes] = STATE(3725), + [sym__str_back_ticks] = STATE(3725), + [sym_val_interpolated] = STATE(4862), + [sym__inter_single_quotes] = STATE(4846), + [sym__inter_double_quotes] = STATE(4847), + [sym_val_list] = STATE(4862), + [sym__spread_list] = STATE(4959), + [sym_val_entry] = STATE(5015), + [sym_val_record] = STATE(4862), + [sym_val_table] = STATE(4862), + [sym_val_closure] = STATE(4862), + [sym__unquoted_in_list] = STATE(4479), + [sym__unquoted_in_list_with_expr] = STATE(4961), + [sym__unquoted_anonymous_prefix] = STATE(4729), + [sym_comment] = STATE(676), + [aux_sym_list_body_repeat1] = STATE(676), + [anon_sym_true] = ACTIONS(2014), + [anon_sym_false] = ACTIONS(2014), + [anon_sym_null] = ACTIONS(2017), + [aux_sym_cmd_identifier_token3] = ACTIONS(2020), + [aux_sym_cmd_identifier_token4] = ACTIONS(2020), + [aux_sym_cmd_identifier_token5] = ACTIONS(2020), + [anon_sym_LBRACK] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(2026), + [anon_sym_DOLLAR] = ACTIONS(2029), + [anon_sym_LBRACE] = ACTIONS(2032), + [anon_sym_DOT_DOT] = ACTIONS(2035), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2038), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2041), + [anon_sym_DOT_DOT_LT] = ACTIONS(2041), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2044), + [aux_sym__val_number_decimal_token1] = ACTIONS(2047), + [aux_sym__val_number_decimal_token2] = ACTIONS(2050), + [aux_sym__val_number_decimal_token3] = ACTIONS(2053), + [aux_sym__val_number_decimal_token4] = ACTIONS(2053), + [aux_sym__val_number_token1] = ACTIONS(2056), + [aux_sym__val_number_token2] = ACTIONS(2056), + [aux_sym__val_number_token3] = ACTIONS(2056), + [anon_sym_0b] = ACTIONS(2059), + [anon_sym_0o] = ACTIONS(2062), + [anon_sym_0x] = ACTIONS(2062), + [sym_val_date] = ACTIONS(2065), + [anon_sym_DQUOTE] = ACTIONS(2068), + [anon_sym_SQUOTE] = ACTIONS(2071), + [anon_sym_BQUOTE] = ACTIONS(2074), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2077), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2080), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2083), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2086), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2089), + }, [STATE(677)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(2086), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1983), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1738), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(855), - [sym__unquoted_with_expr] = STATE(1065), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(529), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1144), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(469), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(859), + [sym__unquoted_with_expr] = STATE(995), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(677), - [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(1922), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1947), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1924), + [anon_sym_DOT_DOT] = ACTIONS(1951), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), - [anon_sym_DOT_DOT_LT] = ACTIONS(1926), - [aux_sym__val_number_decimal_token1] = ACTIONS(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1930), - [aux_sym__val_number_decimal_token3] = ACTIONS(1932), - [aux_sym__val_number_decimal_token4] = ACTIONS(1932), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), + [anon_sym_DOT_DOT_LT] = ACTIONS(1953), + [aux_sym__val_number_decimal_token1] = ACTIONS(1955), + [aux_sym__val_number_decimal_token2] = ACTIONS(1957), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1934), + [sym_val_date] = ACTIONS(1961), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(678)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(2088), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1983), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1738), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(856), - [sym__unquoted_with_expr] = STATE(1067), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(530), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1187), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(469), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(861), + [sym__unquoted_with_expr] = STATE(1002), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(678), - [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(1922), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1947), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1924), + [anon_sym_DOT_DOT] = ACTIONS(1951), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), - [anon_sym_DOT_DOT_LT] = ACTIONS(1926), - [aux_sym__val_number_decimal_token1] = ACTIONS(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1930), - [aux_sym__val_number_decimal_token3] = ACTIONS(1932), - [aux_sym__val_number_decimal_token4] = ACTIONS(1932), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), + [anon_sym_DOT_DOT_LT] = ACTIONS(1953), + [aux_sym__val_number_decimal_token1] = ACTIONS(1955), + [aux_sym__val_number_decimal_token2] = ACTIONS(1957), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1934), + [sym_val_date] = ACTIONS(1961), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(679)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(2090), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1983), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1738), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(857), - [sym__unquoted_with_expr] = STATE(1069), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(531), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1162), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(469), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(863), + [sym__unquoted_with_expr] = STATE(1008), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(679), - [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(1922), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1947), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1924), + [anon_sym_DOT_DOT] = ACTIONS(1951), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), - [anon_sym_DOT_DOT_LT] = ACTIONS(1926), - [aux_sym__val_number_decimal_token1] = ACTIONS(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1930), - [aux_sym__val_number_decimal_token3] = ACTIONS(1932), - [aux_sym__val_number_decimal_token4] = ACTIONS(1932), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), + [anon_sym_DOT_DOT_LT] = ACTIONS(1953), + [aux_sym__val_number_decimal_token1] = ACTIONS(1955), + [aux_sym__val_number_decimal_token2] = ACTIONS(1957), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1934), + [sym_val_date] = ACTIONS(1961), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(680)] = { - [aux_sym__repeat_newline] = STATE(2193), - [sym_expr_unary] = STATE(1158), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1158), - [sym__expr_binary_expression_parenthesized] = STATE(1637), - [sym_expr_parenthesized] = STATE(771), - [sym_val_range] = STATE(1158), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(1158), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1479), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1410), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(856), - [sym__unquoted_with_expr] = STATE(1067), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(532), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(1265), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(469), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(866), + [sym__unquoted_with_expr] = STATE(1017), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(680), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2065), - [aux_sym_cmd_identifier_token3] = ACTIONS(2067), - [aux_sym_cmd_identifier_token4] = ACTIONS(2067), - [aux_sym_cmd_identifier_token5] = ACTIONS(2067), - [sym__newline] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1947), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [sym__newline] = ACTIONS(1929), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2069), + [anon_sym_DOT_DOT] = ACTIONS(1951), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), - [anon_sym_DOT_DOT_LT] = ACTIONS(2071), - [aux_sym__val_number_decimal_token1] = ACTIONS(2073), - [aux_sym__val_number_decimal_token2] = ACTIONS(2075), - [aux_sym__val_number_decimal_token3] = ACTIONS(2077), - [aux_sym__val_number_decimal_token4] = ACTIONS(2077), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), + [anon_sym_DOT_DOT_LT] = ACTIONS(1953), + [aux_sym__val_number_decimal_token1] = ACTIONS(1955), + [aux_sym__val_number_decimal_token2] = ACTIONS(1957), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2079), + [sym_val_date] = ACTIONS(1961), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(681)] = { + [aux_sym__repeat_newline] = STATE(2241), + [sym_expr_unary] = STATE(1246), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1246), + [sym__expr_binary_expression_parenthesized] = STATE(2070), + [sym_expr_parenthesized] = STATE(858), + [sym_val_range] = STATE(1246), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(1246), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1965), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1761), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(752), + [sym__unquoted_with_expr] = STATE(1064), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(681), - [anon_sym_if] = 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_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_LBRACK2] = ACTIONS(2092), - [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_true] = ACTIONS(1996), + [anon_sym_false] = ACTIONS(1996), + [anon_sym_null] = ACTIONS(1998), + [aux_sym_cmd_identifier_token3] = ACTIONS(2000), + [aux_sym_cmd_identifier_token4] = ACTIONS(2000), + [aux_sym_cmd_identifier_token5] = ACTIONS(2000), + [sym__newline] = ACTIONS(1929), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2002), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), + [anon_sym_DOT_DOT_LT] = ACTIONS(2004), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2008), + [aux_sym__val_number_decimal_token3] = ACTIONS(2010), + [aux_sym__val_number_decimal_token4] = ACTIONS(2010), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2012), + [anon_sym_DQUOTE] = 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(1943), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(682)] = { [sym_comment] = STATE(682), - [ts_builtin_sym_end] = ACTIONS(1956), - [anon_sym_in] = ACTIONS(1956), - [sym__newline] = ACTIONS(1956), - [anon_sym_SEMI] = ACTIONS(1956), - [anon_sym_PIPE] = ACTIONS(1956), - [anon_sym_err_GT_PIPE] = ACTIONS(1956), - [anon_sym_out_GT_PIPE] = ACTIONS(1956), - [anon_sym_e_GT_PIPE] = ACTIONS(1956), - [anon_sym_o_GT_PIPE] = ACTIONS(1956), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1956), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1956), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1956), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1956), - [anon_sym_GT2] = ACTIONS(1958), - [anon_sym_DASH2] = ACTIONS(1956), - [anon_sym_STAR2] = ACTIONS(1958), - [anon_sym_and2] = ACTIONS(1956), - [anon_sym_xor2] = ACTIONS(1956), - [anon_sym_or2] = ACTIONS(1956), - [anon_sym_not_DASHin2] = ACTIONS(1956), - [anon_sym_has2] = ACTIONS(1956), - [anon_sym_not_DASHhas2] = ACTIONS(1956), - [anon_sym_starts_DASHwith2] = ACTIONS(1956), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1956), - [anon_sym_ends_DASHwith2] = ACTIONS(1956), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1956), - [anon_sym_EQ_EQ2] = ACTIONS(1956), - [anon_sym_BANG_EQ2] = ACTIONS(1956), - [anon_sym_LT2] = ACTIONS(1958), - [anon_sym_LT_EQ2] = ACTIONS(1956), - [anon_sym_GT_EQ2] = ACTIONS(1956), - [anon_sym_EQ_TILDE2] = ACTIONS(1956), - [anon_sym_BANG_TILDE2] = ACTIONS(1956), - [anon_sym_like2] = ACTIONS(1956), - [anon_sym_not_DASHlike2] = ACTIONS(1956), - [anon_sym_LPAREN2] = ACTIONS(1960), - [anon_sym_STAR_STAR2] = ACTIONS(1956), - [anon_sym_PLUS_PLUS2] = ACTIONS(1956), - [anon_sym_SLASH2] = ACTIONS(1958), - [anon_sym_mod2] = ACTIONS(1956), - [anon_sym_SLASH_SLASH2] = ACTIONS(1956), - [anon_sym_PLUS2] = ACTIONS(1958), - [anon_sym_bit_DASHshl2] = ACTIONS(1956), - [anon_sym_bit_DASHshr2] = ACTIONS(1956), - [anon_sym_bit_DASHand2] = ACTIONS(1956), - [anon_sym_bit_DASHxor2] = ACTIONS(1956), - [anon_sym_bit_DASHor2] = ACTIONS(1956), - [anon_sym_DOT_DOT2] = ACTIONS(2094), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2096), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2096), - [anon_sym_err_GT] = ACTIONS(1958), - [anon_sym_out_GT] = ACTIONS(1958), - [anon_sym_e_GT] = ACTIONS(1958), - [anon_sym_o_GT] = ACTIONS(1958), - [anon_sym_err_PLUSout_GT] = ACTIONS(1958), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1958), - [anon_sym_o_PLUSe_GT] = ACTIONS(1958), - [anon_sym_e_PLUSo_GT] = ACTIONS(1958), - [anon_sym_err_GT_GT] = ACTIONS(1956), - [anon_sym_out_GT_GT] = ACTIONS(1956), - [anon_sym_e_GT_GT] = ACTIONS(1956), - [anon_sym_o_GT_GT] = ACTIONS(1956), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1956), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1956), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1956), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1956), - [sym__unquoted_pattern] = ACTIONS(1635), + [ts_builtin_sym_end] = 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_COLON] = ACTIONS(1470), + [anon_sym_GT2] = ACTIONS(1468), + [anon_sym_DASH2] = ACTIONS(1470), + [anon_sym_STAR2] = ACTIONS(1468), + [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(1468), + [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(1468), + [anon_sym_mod2] = ACTIONS(1470), + [anon_sym_SLASH_SLASH2] = ACTIONS(1470), + [anon_sym_PLUS2] = ACTIONS(1468), + [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(1468), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1470), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1470), + [anon_sym_DOT2] = ACTIONS(1468), + [anon_sym_err_GT] = ACTIONS(1468), + [anon_sym_out_GT] = ACTIONS(1468), + [anon_sym_e_GT] = ACTIONS(1468), + [anon_sym_o_GT] = ACTIONS(1468), + [anon_sym_err_PLUSout_GT] = ACTIONS(1468), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1468), + [anon_sym_o_PLUSe_GT] = ACTIONS(1468), + [anon_sym_e_PLUSo_GT] = ACTIONS(1468), + [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(3), }, [STATE(683)] = { - [sym__expr_parenthesized_immediate] = STATE(4802), + [sym__expr_parenthesized_immediate] = STATE(5073), [sym_comment] = STATE(683), - [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(1724), - [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_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(1818), + [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_POUND] = ACTIONS(3), }, [STATE(684)] = { - [sym__expr_parenthesized_immediate] = STATE(4802), + [sym__expr_parenthesized_immediate] = STATE(5073), [sym_comment] = STATE(684), - [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(1724), - [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_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(1818), + [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_POUND] = ACTIONS(3), }, [STATE(685)] = { - [sym__expr_parenthesized_immediate] = STATE(4802), + [sym__expr_parenthesized_immediate] = STATE(5073), [sym_comment] = STATE(685), - [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(1724), - [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_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(1818), + [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_POUND] = ACTIONS(3), }, [STATE(686)] = { + [sym__expr_parenthesized_immediate] = STATE(5073), [sym_comment] = STATE(686), - [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_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_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_DOT_DOT2] = ACTIONS(2106), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2108), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2108), - [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_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(1818), + [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_POUND] = ACTIONS(3), }, [STATE(687)] = { + [sym__expr_parenthesized_immediate] = STATE(5073), [sym_comment] = STATE(687), - [anon_sym_in] = ACTIONS(2110), - [sym__newline] = ACTIONS(2110), - [anon_sym_SEMI] = ACTIONS(2110), - [anon_sym_PIPE] = ACTIONS(2110), - [anon_sym_err_GT_PIPE] = ACTIONS(2110), - [anon_sym_out_GT_PIPE] = ACTIONS(2110), - [anon_sym_e_GT_PIPE] = ACTIONS(2110), - [anon_sym_o_GT_PIPE] = ACTIONS(2110), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2110), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2110), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2110), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2110), - [anon_sym_RPAREN] = ACTIONS(2110), - [anon_sym_GT2] = ACTIONS(2112), - [anon_sym_DASH2] = ACTIONS(2110), - [anon_sym_LBRACE] = ACTIONS(2110), - [anon_sym_RBRACE] = ACTIONS(2110), - [anon_sym_STAR2] = ACTIONS(2112), - [anon_sym_and2] = ACTIONS(2110), - [anon_sym_xor2] = ACTIONS(2110), - [anon_sym_or2] = ACTIONS(2110), - [anon_sym_not_DASHin2] = ACTIONS(2110), - [anon_sym_has2] = ACTIONS(2110), - [anon_sym_not_DASHhas2] = ACTIONS(2110), - [anon_sym_starts_DASHwith2] = ACTIONS(2110), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2110), - [anon_sym_ends_DASHwith2] = ACTIONS(2110), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2110), - [anon_sym_EQ_EQ2] = ACTIONS(2110), - [anon_sym_BANG_EQ2] = ACTIONS(2110), - [anon_sym_LT2] = ACTIONS(2112), - [anon_sym_LT_EQ2] = ACTIONS(2110), - [anon_sym_GT_EQ2] = ACTIONS(2110), - [anon_sym_EQ_TILDE2] = ACTIONS(2110), - [anon_sym_BANG_TILDE2] = ACTIONS(2110), - [anon_sym_like2] = ACTIONS(2110), - [anon_sym_not_DASHlike2] = ACTIONS(2110), - [anon_sym_STAR_STAR2] = ACTIONS(2110), - [anon_sym_PLUS_PLUS2] = ACTIONS(2110), - [anon_sym_SLASH2] = ACTIONS(2112), - [anon_sym_mod2] = ACTIONS(2110), - [anon_sym_SLASH_SLASH2] = ACTIONS(2110), - [anon_sym_PLUS2] = ACTIONS(2112), - [anon_sym_bit_DASHshl2] = ACTIONS(2110), - [anon_sym_bit_DASHshr2] = ACTIONS(2110), - [anon_sym_bit_DASHand2] = ACTIONS(2110), - [anon_sym_bit_DASHxor2] = ACTIONS(2110), - [anon_sym_bit_DASHor2] = ACTIONS(2110), - [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(2112), - [anon_sym_out_GT] = ACTIONS(2112), - [anon_sym_e_GT] = ACTIONS(2112), - [anon_sym_o_GT] = ACTIONS(2112), - [anon_sym_err_PLUSout_GT] = ACTIONS(2112), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2112), - [anon_sym_o_PLUSe_GT] = ACTIONS(2112), - [anon_sym_e_PLUSo_GT] = ACTIONS(2112), - [anon_sym_err_GT_GT] = ACTIONS(2110), - [anon_sym_out_GT_GT] = ACTIONS(2110), - [anon_sym_e_GT_GT] = ACTIONS(2110), - [anon_sym_o_GT_GT] = ACTIONS(2110), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2110), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2110), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2110), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2110), + [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(1818), + [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_POUND] = ACTIONS(3), }, [STATE(688)] = { + [sym__expr_parenthesized_immediate] = STATE(5073), [sym_comment] = STATE(688), - [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(2120), - [anon_sym_DASH2] = ACTIONS(2118), - [anon_sym_LBRACE] = ACTIONS(2118), - [anon_sym_RBRACE] = ACTIONS(2118), - [anon_sym_STAR2] = 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(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(2120), - [anon_sym_mod2] = ACTIONS(2118), - [anon_sym_SLASH_SLASH2] = ACTIONS(2118), - [anon_sym_PLUS2] = ACTIONS(2120), - [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(2122), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2124), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2124), - [anon_sym_err_GT] = ACTIONS(2120), - [anon_sym_out_GT] = ACTIONS(2120), - [anon_sym_e_GT] = ACTIONS(2120), - [anon_sym_o_GT] = ACTIONS(2120), - [anon_sym_err_PLUSout_GT] = ACTIONS(2120), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2120), - [anon_sym_o_PLUSe_GT] = ACTIONS(2120), - [anon_sym_e_PLUSo_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_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(1818), + [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_POUND] = ACTIONS(3), }, [STATE(689)] = { + [sym__expr_parenthesized_immediate] = STATE(5073), [sym_comment] = STATE(689), - [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(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(1818), + [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_POUND] = ACTIONS(3), }, [STATE(690)] = { + [sym__expr_parenthesized_immediate] = STATE(5073), [sym_comment] = STATE(690), - [anon_sym_in] = ACTIONS(1973), - [sym__newline] = ACTIONS(1973), - [anon_sym_SEMI] = ACTIONS(1973), - [anon_sym_PIPE] = ACTIONS(1973), - [anon_sym_err_GT_PIPE] = ACTIONS(1973), - [anon_sym_out_GT_PIPE] = ACTIONS(1973), - [anon_sym_e_GT_PIPE] = ACTIONS(1973), - [anon_sym_o_GT_PIPE] = ACTIONS(1973), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1973), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1973), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1973), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1973), - [anon_sym_RPAREN] = ACTIONS(1973), - [anon_sym_GT2] = ACTIONS(1975), - [anon_sym_DASH2] = ACTIONS(1973), - [anon_sym_LBRACE] = ACTIONS(1973), - [anon_sym_RBRACE] = ACTIONS(1973), - [anon_sym_STAR2] = ACTIONS(1975), - [anon_sym_and2] = ACTIONS(1973), - [anon_sym_xor2] = ACTIONS(1973), - [anon_sym_or2] = ACTIONS(1973), - [anon_sym_not_DASHin2] = ACTIONS(1973), - [anon_sym_has2] = ACTIONS(1973), - [anon_sym_not_DASHhas2] = ACTIONS(1973), - [anon_sym_starts_DASHwith2] = ACTIONS(1973), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1973), - [anon_sym_ends_DASHwith2] = ACTIONS(1973), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1973), - [anon_sym_EQ_EQ2] = ACTIONS(1973), - [anon_sym_BANG_EQ2] = ACTIONS(1973), - [anon_sym_LT2] = ACTIONS(1975), - [anon_sym_LT_EQ2] = ACTIONS(1973), - [anon_sym_GT_EQ2] = ACTIONS(1973), - [anon_sym_EQ_TILDE2] = ACTIONS(1973), - [anon_sym_BANG_TILDE2] = ACTIONS(1973), - [anon_sym_like2] = ACTIONS(1973), - [anon_sym_not_DASHlike2] = ACTIONS(1973), - [anon_sym_STAR_STAR2] = ACTIONS(1973), - [anon_sym_PLUS_PLUS2] = ACTIONS(1973), - [anon_sym_SLASH2] = ACTIONS(1975), - [anon_sym_mod2] = ACTIONS(1973), - [anon_sym_SLASH_SLASH2] = ACTIONS(1973), - [anon_sym_PLUS2] = ACTIONS(1975), - [anon_sym_bit_DASHshl2] = ACTIONS(1973), - [anon_sym_bit_DASHshr2] = ACTIONS(1973), - [anon_sym_bit_DASHand2] = ACTIONS(1973), - [anon_sym_bit_DASHxor2] = ACTIONS(1973), - [anon_sym_bit_DASHor2] = ACTIONS(1973), - [anon_sym_DOT_DOT2] = ACTIONS(2126), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2128), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2128), - [anon_sym_err_GT] = ACTIONS(1975), - [anon_sym_out_GT] = ACTIONS(1975), - [anon_sym_e_GT] = ACTIONS(1975), - [anon_sym_o_GT] = ACTIONS(1975), - [anon_sym_err_PLUSout_GT] = ACTIONS(1975), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1975), - [anon_sym_o_PLUSe_GT] = ACTIONS(1975), - [anon_sym_e_PLUSo_GT] = ACTIONS(1975), - [anon_sym_err_GT_GT] = ACTIONS(1973), - [anon_sym_out_GT_GT] = ACTIONS(1973), - [anon_sym_e_GT_GT] = ACTIONS(1973), - [anon_sym_o_GT_GT] = ACTIONS(1973), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1973), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1973), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1973), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1973), + [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(1818), + [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_POUND] = ACTIONS(3), }, [STATE(691)] = { - [sym__expr_parenthesized_immediate] = STATE(5171), + [sym__expr_parenthesized_immediate] = STATE(5073), [sym_comment] = STATE(691), - [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(1724), - [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_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(1818), + [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_POUND] = ACTIONS(3), }, [STATE(692)] = { - [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(692), - [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(1724), - [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), + [ts_builtin_sym_end] = ACTIONS(1553), + [anon_sym_in] = ACTIONS(1553), + [sym__newline] = ACTIONS(1553), + [anon_sym_SEMI] = ACTIONS(1553), + [anon_sym_PIPE] = ACTIONS(1553), + [anon_sym_err_GT_PIPE] = ACTIONS(1553), + [anon_sym_out_GT_PIPE] = ACTIONS(1553), + [anon_sym_e_GT_PIPE] = ACTIONS(1553), + [anon_sym_o_GT_PIPE] = ACTIONS(1553), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1553), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1553), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1553), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1553), + [anon_sym_COLON] = ACTIONS(1553), + [anon_sym_GT2] = ACTIONS(1551), + [anon_sym_DASH2] = ACTIONS(1553), + [anon_sym_STAR2] = ACTIONS(1551), + [anon_sym_and2] = ACTIONS(1553), + [anon_sym_xor2] = ACTIONS(1553), + [anon_sym_or2] = ACTIONS(1553), + [anon_sym_not_DASHin2] = ACTIONS(1553), + [anon_sym_has2] = ACTIONS(1553), + [anon_sym_not_DASHhas2] = ACTIONS(1553), + [anon_sym_starts_DASHwith2] = ACTIONS(1553), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1553), + [anon_sym_ends_DASHwith2] = ACTIONS(1553), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1553), + [anon_sym_EQ_EQ2] = ACTIONS(1553), + [anon_sym_BANG_EQ2] = ACTIONS(1553), + [anon_sym_LT2] = ACTIONS(1551), + [anon_sym_LT_EQ2] = ACTIONS(1553), + [anon_sym_GT_EQ2] = ACTIONS(1553), + [anon_sym_EQ_TILDE2] = ACTIONS(1553), + [anon_sym_BANG_TILDE2] = ACTIONS(1553), + [anon_sym_like2] = ACTIONS(1553), + [anon_sym_not_DASHlike2] = ACTIONS(1553), + [anon_sym_STAR_STAR2] = ACTIONS(1553), + [anon_sym_PLUS_PLUS2] = ACTIONS(1553), + [anon_sym_SLASH2] = ACTIONS(1551), + [anon_sym_mod2] = ACTIONS(1553), + [anon_sym_SLASH_SLASH2] = ACTIONS(1553), + [anon_sym_PLUS2] = ACTIONS(1551), + [anon_sym_bit_DASHshl2] = ACTIONS(1553), + [anon_sym_bit_DASHshr2] = ACTIONS(1553), + [anon_sym_bit_DASHand2] = ACTIONS(1553), + [anon_sym_bit_DASHxor2] = ACTIONS(1553), + [anon_sym_bit_DASHor2] = ACTIONS(1553), + [anon_sym_DOT_DOT2] = ACTIONS(1551), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1553), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1553), + [anon_sym_DOT2] = ACTIONS(1551), + [anon_sym_err_GT] = ACTIONS(1551), + [anon_sym_out_GT] = ACTIONS(1551), + [anon_sym_e_GT] = ACTIONS(1551), + [anon_sym_o_GT] = ACTIONS(1551), + [anon_sym_err_PLUSout_GT] = ACTIONS(1551), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1551), + [anon_sym_o_PLUSe_GT] = ACTIONS(1551), + [anon_sym_e_PLUSo_GT] = ACTIONS(1551), + [anon_sym_err_GT_GT] = ACTIONS(1553), + [anon_sym_out_GT_GT] = ACTIONS(1553), + [anon_sym_e_GT_GT] = ACTIONS(1553), + [anon_sym_o_GT_GT] = ACTIONS(1553), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1553), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1553), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1553), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1553), [anon_sym_POUND] = ACTIONS(3), }, [STATE(693)] = { + [sym__expr_parenthesized_immediate] = STATE(5073), [sym_comment] = STATE(693), - [anon_sym_in] = ACTIONS(1744), - [sym__newline] = ACTIONS(1744), - [anon_sym_SEMI] = ACTIONS(1744), - [anon_sym_PIPE] = ACTIONS(1744), - [anon_sym_err_GT_PIPE] = ACTIONS(1744), - [anon_sym_out_GT_PIPE] = ACTIONS(1744), - [anon_sym_e_GT_PIPE] = ACTIONS(1744), - [anon_sym_o_GT_PIPE] = ACTIONS(1744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1744), - [anon_sym_RPAREN] = ACTIONS(1744), - [anon_sym_GT2] = ACTIONS(1746), - [anon_sym_DASH2] = ACTIONS(1744), - [anon_sym_RBRACE] = ACTIONS(1744), - [anon_sym_STAR2] = ACTIONS(1746), - [anon_sym_and2] = ACTIONS(1744), - [anon_sym_xor2] = ACTIONS(1744), - [anon_sym_or2] = ACTIONS(1744), - [anon_sym_not_DASHin2] = ACTIONS(1744), - [anon_sym_has2] = ACTIONS(1744), - [anon_sym_not_DASHhas2] = ACTIONS(1744), - [anon_sym_starts_DASHwith2] = ACTIONS(1744), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1744), - [anon_sym_ends_DASHwith2] = ACTIONS(1744), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1744), - [anon_sym_EQ_EQ2] = ACTIONS(1744), - [anon_sym_BANG_EQ2] = ACTIONS(1744), - [anon_sym_LT2] = ACTIONS(1746), - [anon_sym_LT_EQ2] = ACTIONS(1744), - [anon_sym_GT_EQ2] = ACTIONS(1744), - [anon_sym_EQ_TILDE2] = ACTIONS(1744), - [anon_sym_BANG_TILDE2] = ACTIONS(1744), - [anon_sym_like2] = ACTIONS(1744), - [anon_sym_not_DASHlike2] = ACTIONS(1744), - [anon_sym_LPAREN2] = ACTIONS(1744), - [anon_sym_STAR_STAR2] = ACTIONS(1744), - [anon_sym_PLUS_PLUS2] = ACTIONS(1744), - [anon_sym_SLASH2] = ACTIONS(1746), - [anon_sym_mod2] = ACTIONS(1744), - [anon_sym_SLASH_SLASH2] = ACTIONS(1744), - [anon_sym_PLUS2] = ACTIONS(1746), - [anon_sym_bit_DASHshl2] = ACTIONS(1744), - [anon_sym_bit_DASHshr2] = ACTIONS(1744), - [anon_sym_bit_DASHand2] = ACTIONS(1744), - [anon_sym_bit_DASHxor2] = ACTIONS(1744), - [anon_sym_bit_DASHor2] = ACTIONS(1744), - [anon_sym_DOT] = ACTIONS(2134), - [aux_sym__immediate_decimal_token5] = ACTIONS(2136), - [anon_sym_err_GT] = ACTIONS(1746), - [anon_sym_out_GT] = ACTIONS(1746), - [anon_sym_e_GT] = ACTIONS(1746), - [anon_sym_o_GT] = ACTIONS(1746), - [anon_sym_err_PLUSout_GT] = ACTIONS(1746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1746), - [anon_sym_o_PLUSe_GT] = ACTIONS(1746), - [anon_sym_e_PLUSo_GT] = ACTIONS(1746), - [anon_sym_err_GT_GT] = ACTIONS(1744), - [anon_sym_out_GT_GT] = ACTIONS(1744), - [anon_sym_e_GT_GT] = ACTIONS(1744), - [anon_sym_o_GT_GT] = ACTIONS(1744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1744), - [sym__unquoted_pattern] = ACTIONS(1746), + [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(1818), + [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_POUND] = ACTIONS(3), }, [STATE(694)] = { + [sym__expr_parenthesized_immediate] = STATE(5073), [sym_comment] = STATE(694), - [ts_builtin_sym_end] = ACTIONS(1973), - [anon_sym_in] = ACTIONS(1973), - [sym__newline] = ACTIONS(1973), - [anon_sym_SEMI] = ACTIONS(1973), - [anon_sym_PIPE] = ACTIONS(1973), - [anon_sym_err_GT_PIPE] = ACTIONS(1973), - [anon_sym_out_GT_PIPE] = ACTIONS(1973), - [anon_sym_e_GT_PIPE] = ACTIONS(1973), - [anon_sym_o_GT_PIPE] = ACTIONS(1973), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1973), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1973), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1973), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1973), - [anon_sym_GT2] = ACTIONS(1975), - [anon_sym_DASH2] = ACTIONS(1973), - [anon_sym_STAR2] = ACTIONS(1975), - [anon_sym_and2] = ACTIONS(1973), - [anon_sym_xor2] = ACTIONS(1973), - [anon_sym_or2] = ACTIONS(1973), - [anon_sym_not_DASHin2] = ACTIONS(1973), - [anon_sym_has2] = ACTIONS(1973), - [anon_sym_not_DASHhas2] = ACTIONS(1973), - [anon_sym_starts_DASHwith2] = ACTIONS(1973), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1973), - [anon_sym_ends_DASHwith2] = ACTIONS(1973), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1973), - [anon_sym_EQ_EQ2] = ACTIONS(1973), - [anon_sym_BANG_EQ2] = ACTIONS(1973), - [anon_sym_LT2] = ACTIONS(1975), - [anon_sym_LT_EQ2] = ACTIONS(1973), - [anon_sym_GT_EQ2] = ACTIONS(1973), - [anon_sym_EQ_TILDE2] = ACTIONS(1973), - [anon_sym_BANG_TILDE2] = ACTIONS(1973), - [anon_sym_like2] = ACTIONS(1973), - [anon_sym_not_DASHlike2] = ACTIONS(1973), - [anon_sym_LPAREN2] = ACTIONS(1977), - [anon_sym_STAR_STAR2] = ACTIONS(1973), - [anon_sym_PLUS_PLUS2] = ACTIONS(1973), - [anon_sym_SLASH2] = ACTIONS(1975), - [anon_sym_mod2] = ACTIONS(1973), - [anon_sym_SLASH_SLASH2] = ACTIONS(1973), - [anon_sym_PLUS2] = ACTIONS(1975), - [anon_sym_bit_DASHshl2] = ACTIONS(1973), - [anon_sym_bit_DASHshr2] = ACTIONS(1973), - [anon_sym_bit_DASHand2] = ACTIONS(1973), - [anon_sym_bit_DASHxor2] = ACTIONS(1973), - [anon_sym_bit_DASHor2] = ACTIONS(1973), - [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(1975), - [anon_sym_out_GT] = ACTIONS(1975), - [anon_sym_e_GT] = ACTIONS(1975), - [anon_sym_o_GT] = ACTIONS(1975), - [anon_sym_err_PLUSout_GT] = ACTIONS(1975), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1975), - [anon_sym_o_PLUSe_GT] = ACTIONS(1975), - [anon_sym_e_PLUSo_GT] = ACTIONS(1975), - [anon_sym_err_GT_GT] = ACTIONS(1973), - [anon_sym_out_GT_GT] = ACTIONS(1973), - [anon_sym_e_GT_GT] = ACTIONS(1973), - [anon_sym_o_GT_GT] = ACTIONS(1973), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1973), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1973), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1973), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1973), - [sym__unquoted_pattern] = ACTIONS(1983), + [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(1818), + [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_POUND] = ACTIONS(3), }, [STATE(695)] = { + [sym__expr_parenthesized_immediate] = STATE(5073), [sym_comment] = STATE(695), - [anon_sym_if] = ACTIONS(2142), - [anon_sym_in] = ACTIONS(2142), - [sym__newline] = ACTIONS(2142), - [anon_sym_SEMI] = ACTIONS(2142), - [anon_sym_PIPE] = ACTIONS(2142), - [anon_sym_err_GT_PIPE] = ACTIONS(2142), - [anon_sym_out_GT_PIPE] = ACTIONS(2142), - [anon_sym_e_GT_PIPE] = ACTIONS(2142), - [anon_sym_o_GT_PIPE] = ACTIONS(2142), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2142), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2142), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2142), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2142), - [anon_sym_RPAREN] = ACTIONS(2142), - [anon_sym_GT2] = ACTIONS(2144), - [anon_sym_DASH2] = ACTIONS(2142), - [anon_sym_LBRACE] = ACTIONS(2142), - [anon_sym_RBRACE] = ACTIONS(2142), - [anon_sym_EQ_GT] = ACTIONS(2142), - [anon_sym_STAR2] = ACTIONS(2144), - [anon_sym_and2] = ACTIONS(2142), - [anon_sym_xor2] = ACTIONS(2142), - [anon_sym_or2] = ACTIONS(2142), - [anon_sym_not_DASHin2] = ACTIONS(2142), - [anon_sym_has2] = ACTIONS(2142), - [anon_sym_not_DASHhas2] = ACTIONS(2142), - [anon_sym_starts_DASHwith2] = ACTIONS(2142), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2142), - [anon_sym_ends_DASHwith2] = ACTIONS(2142), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2142), - [anon_sym_EQ_EQ2] = ACTIONS(2142), - [anon_sym_BANG_EQ2] = ACTIONS(2142), - [anon_sym_LT2] = ACTIONS(2144), - [anon_sym_LT_EQ2] = ACTIONS(2142), - [anon_sym_GT_EQ2] = ACTIONS(2142), - [anon_sym_EQ_TILDE2] = ACTIONS(2142), - [anon_sym_BANG_TILDE2] = ACTIONS(2142), - [anon_sym_like2] = ACTIONS(2142), - [anon_sym_not_DASHlike2] = ACTIONS(2142), - [anon_sym_LPAREN2] = ACTIONS(2142), - [anon_sym_STAR_STAR2] = ACTIONS(2142), - [anon_sym_PLUS_PLUS2] = ACTIONS(2142), - [anon_sym_SLASH2] = ACTIONS(2144), - [anon_sym_mod2] = ACTIONS(2142), - [anon_sym_SLASH_SLASH2] = ACTIONS(2142), - [anon_sym_PLUS2] = ACTIONS(2144), - [anon_sym_bit_DASHshl2] = ACTIONS(2142), - [anon_sym_bit_DASHshr2] = ACTIONS(2142), - [anon_sym_bit_DASHand2] = ACTIONS(2142), - [anon_sym_bit_DASHxor2] = ACTIONS(2142), - [anon_sym_bit_DASHor2] = ACTIONS(2142), - [anon_sym_err_GT] = ACTIONS(2144), - [anon_sym_out_GT] = ACTIONS(2144), - [anon_sym_e_GT] = ACTIONS(2144), - [anon_sym_o_GT] = ACTIONS(2144), - [anon_sym_err_PLUSout_GT] = ACTIONS(2144), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2144), - [anon_sym_o_PLUSe_GT] = ACTIONS(2144), - [anon_sym_e_PLUSo_GT] = ACTIONS(2144), - [anon_sym_err_GT_GT] = ACTIONS(2142), - [anon_sym_out_GT_GT] = ACTIONS(2142), - [anon_sym_e_GT_GT] = ACTIONS(2142), - [anon_sym_o_GT_GT] = ACTIONS(2142), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2142), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2142), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2142), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2142), + [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(1818), + [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_POUND] = ACTIONS(3), }, [STATE(696)] = { [sym_comment] = STATE(696), - [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), + [ts_builtin_sym_end] = ACTIONS(1846), + [anon_sym_in] = ACTIONS(1846), + [sym__newline] = ACTIONS(1846), + [anon_sym_SEMI] = ACTIONS(1846), + [anon_sym_PIPE] = ACTIONS(1846), + [anon_sym_err_GT_PIPE] = ACTIONS(1846), + [anon_sym_out_GT_PIPE] = ACTIONS(1846), + [anon_sym_e_GT_PIPE] = ACTIONS(1846), + [anon_sym_o_GT_PIPE] = ACTIONS(1846), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1846), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1846), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1846), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1846), + [anon_sym_GT2] = ACTIONS(1848), + [anon_sym_DASH2] = ACTIONS(1846), + [anon_sym_STAR2] = ACTIONS(1848), + [anon_sym_and2] = ACTIONS(1846), + [anon_sym_xor2] = ACTIONS(1846), + [anon_sym_or2] = ACTIONS(1846), + [anon_sym_not_DASHin2] = ACTIONS(1846), + [anon_sym_has2] = ACTIONS(1846), + [anon_sym_not_DASHhas2] = ACTIONS(1846), + [anon_sym_starts_DASHwith2] = ACTIONS(1846), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1846), + [anon_sym_ends_DASHwith2] = ACTIONS(1846), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1846), + [anon_sym_EQ_EQ2] = ACTIONS(1846), + [anon_sym_BANG_EQ2] = ACTIONS(1846), + [anon_sym_LT2] = ACTIONS(1848), + [anon_sym_LT_EQ2] = ACTIONS(1846), + [anon_sym_GT_EQ2] = ACTIONS(1846), + [anon_sym_EQ_TILDE2] = ACTIONS(1846), + [anon_sym_BANG_TILDE2] = ACTIONS(1846), + [anon_sym_like2] = ACTIONS(1846), + [anon_sym_not_DASHlike2] = ACTIONS(1846), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_STAR_STAR2] = ACTIONS(1846), + [anon_sym_PLUS_PLUS2] = ACTIONS(1846), + [anon_sym_SLASH2] = ACTIONS(1848), + [anon_sym_mod2] = ACTIONS(1846), + [anon_sym_SLASH_SLASH2] = ACTIONS(1846), + [anon_sym_PLUS2] = ACTIONS(1848), + [anon_sym_bit_DASHshl2] = ACTIONS(1846), + [anon_sym_bit_DASHshr2] = ACTIONS(1846), + [anon_sym_bit_DASHand2] = ACTIONS(1846), + [anon_sym_bit_DASHxor2] = ACTIONS(1846), + [anon_sym_bit_DASHor2] = ACTIONS(1846), + [anon_sym_DOT_DOT2] = ACTIONS(1848), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1846), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1846), + [anon_sym_err_GT] = ACTIONS(1848), + [anon_sym_out_GT] = ACTIONS(1848), + [anon_sym_e_GT] = ACTIONS(1848), + [anon_sym_o_GT] = ACTIONS(1848), + [anon_sym_err_PLUSout_GT] = ACTIONS(1848), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1848), + [anon_sym_o_PLUSe_GT] = ACTIONS(1848), + [anon_sym_e_PLUSo_GT] = ACTIONS(1848), + [anon_sym_err_GT_GT] = ACTIONS(1846), + [anon_sym_out_GT_GT] = ACTIONS(1846), + [anon_sym_e_GT_GT] = ACTIONS(1846), + [anon_sym_o_GT_GT] = ACTIONS(1846), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1846), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1846), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1846), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1846), + [sym__unquoted_pattern] = ACTIONS(1848), [anon_sym_POUND] = ACTIONS(3), }, [STATE(697)] = { - [sym__expr_parenthesized_immediate] = STATE(4802), + [sym__expr_parenthesized_immediate] = STATE(5073), [sym_comment] = STATE(697), - [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(1724), - [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_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(1818), + [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_POUND] = ACTIONS(3), }, [STATE(698)] = { + [sym_cmd_identifier] = STATE(4519), + [sym_expr_parenthesized] = STATE(5494), + [sym__spread_parenthesized] = STATE(5018), + [sym__spread_variable] = STATE(5020), + [sym_val_variable] = STATE(4345), + [sym_val_number] = STATE(5494), + [sym__val_number_decimal] = STATE(1998), + [sym__val_number] = STATE(710), + [sym_val_string] = STATE(5494), + [sym__raw_str] = STATE(2274), + [sym__str_double_quotes] = STATE(2274), + [sym__str_single_quotes] = STATE(2274), + [sym__str_back_ticks] = STATE(2274), + [sym_val_interpolated] = STATE(5494), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym__spread_record] = STATE(5018), + [sym_record_entry] = STATE(4814), + [sym__record_key] = STATE(5156), [sym_comment] = STATE(698), - [anon_sym_in] = ACTIONS(1770), - [sym__newline] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1770), - [anon_sym_PIPE] = ACTIONS(1770), - [anon_sym_err_GT_PIPE] = ACTIONS(1770), - [anon_sym_out_GT_PIPE] = ACTIONS(1770), - [anon_sym_e_GT_PIPE] = ACTIONS(1770), - [anon_sym_o_GT_PIPE] = ACTIONS(1770), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1770), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1770), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1770), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1770), - [anon_sym_RPAREN] = ACTIONS(1770), - [anon_sym_GT2] = ACTIONS(1772), - [anon_sym_DASH2] = ACTIONS(1770), - [anon_sym_RBRACE] = ACTIONS(1770), - [anon_sym_STAR2] = ACTIONS(1772), - [anon_sym_and2] = ACTIONS(1770), - [anon_sym_xor2] = ACTIONS(1770), - [anon_sym_or2] = ACTIONS(1770), - [anon_sym_not_DASHin2] = ACTIONS(1770), - [anon_sym_has2] = ACTIONS(1770), - [anon_sym_not_DASHhas2] = ACTIONS(1770), - [anon_sym_starts_DASHwith2] = ACTIONS(1770), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1770), - [anon_sym_ends_DASHwith2] = ACTIONS(1770), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1770), - [anon_sym_EQ_EQ2] = ACTIONS(1770), - [anon_sym_BANG_EQ2] = ACTIONS(1770), - [anon_sym_LT2] = ACTIONS(1772), - [anon_sym_LT_EQ2] = ACTIONS(1770), - [anon_sym_GT_EQ2] = ACTIONS(1770), - [anon_sym_EQ_TILDE2] = ACTIONS(1770), - [anon_sym_BANG_TILDE2] = ACTIONS(1770), - [anon_sym_like2] = ACTIONS(1770), - [anon_sym_not_DASHlike2] = ACTIONS(1770), - [anon_sym_LPAREN2] = ACTIONS(1770), - [anon_sym_STAR_STAR2] = ACTIONS(1770), - [anon_sym_PLUS_PLUS2] = ACTIONS(1770), - [anon_sym_SLASH2] = ACTIONS(1772), - [anon_sym_mod2] = ACTIONS(1770), - [anon_sym_SLASH_SLASH2] = ACTIONS(1770), - [anon_sym_PLUS2] = ACTIONS(1772), - [anon_sym_bit_DASHshl2] = ACTIONS(1770), - [anon_sym_bit_DASHshr2] = ACTIONS(1770), - [anon_sym_bit_DASHand2] = ACTIONS(1770), - [anon_sym_bit_DASHxor2] = ACTIONS(1770), - [anon_sym_bit_DASHor2] = ACTIONS(1770), - [aux_sym__immediate_decimal_token1] = ACTIONS(2150), - [aux_sym__immediate_decimal_token5] = ACTIONS(2152), - [anon_sym_err_GT] = ACTIONS(1772), - [anon_sym_out_GT] = ACTIONS(1772), - [anon_sym_e_GT] = ACTIONS(1772), - [anon_sym_o_GT] = ACTIONS(1772), - [anon_sym_err_PLUSout_GT] = ACTIONS(1772), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1772), - [anon_sym_o_PLUSe_GT] = ACTIONS(1772), - [anon_sym_e_PLUSo_GT] = ACTIONS(1772), - [anon_sym_err_GT_GT] = ACTIONS(1770), - [anon_sym_out_GT_GT] = ACTIONS(1770), - [anon_sym_e_GT_GT] = ACTIONS(1770), - [anon_sym_o_GT_GT] = ACTIONS(1770), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1770), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1770), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1770), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1770), - [sym__unquoted_pattern] = ACTIONS(1772), + [aux_sym__match_pattern_record_body_repeat1] = STATE(723), + [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_finally] = ACTIONS(137), + [anon_sym_match] = ACTIONS(137), + [anon_sym_in] = ACTIONS(143), + [anon_sym_true] = ACTIONS(1754), + [anon_sym_false] = ACTIONS(1754), + [anon_sym_null] = ACTIONS(1754), + [aux_sym_cmd_identifier_token3] = ACTIONS(1756), + [aux_sym_cmd_identifier_token4] = ACTIONS(1756), + [aux_sym_cmd_identifier_token5] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1760), + [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(1766), + [aux_sym__val_number_decimal_token2] = ACTIONS(1768), + [aux_sym__val_number_decimal_token3] = ACTIONS(1770), + [aux_sym__val_number_decimal_token4] = ACTIONS(1770), + [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(1772), + [anon_sym_SQUOTE] = ACTIONS(1774), + [anon_sym_BQUOTE] = ACTIONS(1776), + [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(1778), }, [STATE(699)] = { [sym_comment] = STATE(699), - [anon_sym_if] = ACTIONS(886), - [anon_sym_in] = ACTIONS(886), - [sym__newline] = ACTIONS(886), - [anon_sym_SEMI] = ACTIONS(886), - [anon_sym_PIPE] = ACTIONS(886), - [anon_sym_err_GT_PIPE] = ACTIONS(886), - [anon_sym_out_GT_PIPE] = ACTIONS(886), - [anon_sym_e_GT_PIPE] = ACTIONS(886), - [anon_sym_o_GT_PIPE] = ACTIONS(886), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(886), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(886), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(886), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(886), - [anon_sym_GT2] = ACTIONS(866), - [anon_sym_DASH2] = ACTIONS(886), - [anon_sym_LBRACE] = ACTIONS(886), - [anon_sym_RBRACE] = ACTIONS(886), - [anon_sym_EQ_GT] = ACTIONS(886), - [anon_sym_STAR2] = ACTIONS(866), - [anon_sym_and2] = ACTIONS(886), - [anon_sym_xor2] = ACTIONS(886), - [anon_sym_or2] = ACTIONS(886), - [anon_sym_not_DASHin2] = ACTIONS(886), - [anon_sym_has2] = ACTIONS(886), - [anon_sym_not_DASHhas2] = ACTIONS(886), - [anon_sym_starts_DASHwith2] = ACTIONS(886), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(886), - [anon_sym_ends_DASHwith2] = ACTIONS(886), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(886), - [anon_sym_EQ_EQ2] = ACTIONS(886), - [anon_sym_BANG_EQ2] = ACTIONS(886), - [anon_sym_LT2] = ACTIONS(866), - [anon_sym_LT_EQ2] = ACTIONS(886), - [anon_sym_GT_EQ2] = ACTIONS(886), - [anon_sym_EQ_TILDE2] = ACTIONS(886), - [anon_sym_BANG_TILDE2] = ACTIONS(886), - [anon_sym_like2] = ACTIONS(886), - [anon_sym_not_DASHlike2] = ACTIONS(886), - [anon_sym_STAR_STAR2] = ACTIONS(886), - [anon_sym_PLUS_PLUS2] = ACTIONS(886), - [anon_sym_SLASH2] = ACTIONS(866), - [anon_sym_mod2] = ACTIONS(886), - [anon_sym_SLASH_SLASH2] = ACTIONS(886), - [anon_sym_PLUS2] = ACTIONS(866), - [anon_sym_bit_DASHshl2] = ACTIONS(886), - [anon_sym_bit_DASHshr2] = ACTIONS(886), - [anon_sym_bit_DASHand2] = ACTIONS(886), - [anon_sym_bit_DASHxor2] = ACTIONS(886), - [anon_sym_bit_DASHor2] = ACTIONS(886), - [anon_sym_COLON2] = ACTIONS(886), - [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(886), - [anon_sym_out_GT_GT] = ACTIONS(886), - [anon_sym_e_GT_GT] = ACTIONS(886), - [anon_sym_o_GT_GT] = ACTIONS(886), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(886), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(886), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(886), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(886), + [anon_sym_in] = ACTIONS(1730), + [sym__newline] = ACTIONS(1730), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_PIPE] = ACTIONS(1730), + [anon_sym_err_GT_PIPE] = ACTIONS(1730), + [anon_sym_out_GT_PIPE] = ACTIONS(1730), + [anon_sym_e_GT_PIPE] = ACTIONS(1730), + [anon_sym_o_GT_PIPE] = ACTIONS(1730), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1730), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1730), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1730), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1730), + [anon_sym_RPAREN] = ACTIONS(1730), + [anon_sym_GT2] = ACTIONS(1732), + [anon_sym_DASH2] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(1730), + [anon_sym_STAR2] = ACTIONS(1732), + [anon_sym_and2] = ACTIONS(1730), + [anon_sym_xor2] = ACTIONS(1730), + [anon_sym_or2] = ACTIONS(1730), + [anon_sym_not_DASHin2] = ACTIONS(1730), + [anon_sym_has2] = ACTIONS(1730), + [anon_sym_not_DASHhas2] = ACTIONS(1730), + [anon_sym_starts_DASHwith2] = ACTIONS(1730), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1730), + [anon_sym_ends_DASHwith2] = ACTIONS(1730), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1730), + [anon_sym_EQ_EQ2] = ACTIONS(1730), + [anon_sym_BANG_EQ2] = ACTIONS(1730), + [anon_sym_LT2] = ACTIONS(1732), + [anon_sym_LT_EQ2] = ACTIONS(1730), + [anon_sym_GT_EQ2] = ACTIONS(1730), + [anon_sym_EQ_TILDE2] = ACTIONS(1730), + [anon_sym_BANG_TILDE2] = ACTIONS(1730), + [anon_sym_like2] = ACTIONS(1730), + [anon_sym_not_DASHlike2] = ACTIONS(1730), + [anon_sym_LPAREN2] = ACTIONS(1730), + [anon_sym_STAR_STAR2] = ACTIONS(1730), + [anon_sym_PLUS_PLUS2] = ACTIONS(1730), + [anon_sym_SLASH2] = ACTIONS(1732), + [anon_sym_mod2] = ACTIONS(1730), + [anon_sym_SLASH_SLASH2] = ACTIONS(1730), + [anon_sym_PLUS2] = ACTIONS(1732), + [anon_sym_bit_DASHshl2] = ACTIONS(1730), + [anon_sym_bit_DASHshr2] = ACTIONS(1730), + [anon_sym_bit_DASHand2] = ACTIONS(1730), + [anon_sym_bit_DASHxor2] = ACTIONS(1730), + [anon_sym_bit_DASHor2] = ACTIONS(1730), + [aux_sym__immediate_decimal_token1] = ACTIONS(2096), + [aux_sym__immediate_decimal_token5] = ACTIONS(2098), + [anon_sym_err_GT] = ACTIONS(1732), + [anon_sym_out_GT] = ACTIONS(1732), + [anon_sym_e_GT] = ACTIONS(1732), + [anon_sym_o_GT] = ACTIONS(1732), + [anon_sym_err_PLUSout_GT] = ACTIONS(1732), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1732), + [anon_sym_o_PLUSe_GT] = ACTIONS(1732), + [anon_sym_e_PLUSo_GT] = ACTIONS(1732), + [anon_sym_err_GT_GT] = ACTIONS(1730), + [anon_sym_out_GT_GT] = ACTIONS(1730), + [anon_sym_e_GT_GT] = ACTIONS(1730), + [anon_sym_o_GT_GT] = ACTIONS(1730), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1730), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1730), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1730), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1730), + [sym__unquoted_pattern] = ACTIONS(1732), [anon_sym_POUND] = ACTIONS(3), }, [STATE(700)] = { [sym_comment] = STATE(700), - [anon_sym_in] = ACTIONS(2154), - [sym__newline] = ACTIONS(2154), - [anon_sym_SEMI] = ACTIONS(2154), - [anon_sym_PIPE] = ACTIONS(2154), - [anon_sym_err_GT_PIPE] = ACTIONS(2154), - [anon_sym_out_GT_PIPE] = ACTIONS(2154), - [anon_sym_e_GT_PIPE] = ACTIONS(2154), - [anon_sym_o_GT_PIPE] = ACTIONS(2154), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2154), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2154), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2154), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2154), - [anon_sym_RPAREN] = ACTIONS(2154), - [anon_sym_GT2] = ACTIONS(2156), - [anon_sym_DASH2] = ACTIONS(2154), - [anon_sym_LBRACE] = ACTIONS(2154), - [anon_sym_RBRACE] = ACTIONS(2154), - [anon_sym_STAR2] = ACTIONS(2156), - [anon_sym_and2] = ACTIONS(2154), - [anon_sym_xor2] = ACTIONS(2154), - [anon_sym_or2] = ACTIONS(2154), - [anon_sym_not_DASHin2] = ACTIONS(2154), - [anon_sym_has2] = ACTIONS(2154), - [anon_sym_not_DASHhas2] = ACTIONS(2154), - [anon_sym_starts_DASHwith2] = ACTIONS(2154), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2154), - [anon_sym_ends_DASHwith2] = ACTIONS(2154), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2154), - [anon_sym_EQ_EQ2] = ACTIONS(2154), - [anon_sym_BANG_EQ2] = ACTIONS(2154), - [anon_sym_LT2] = ACTIONS(2156), - [anon_sym_LT_EQ2] = ACTIONS(2154), - [anon_sym_GT_EQ2] = ACTIONS(2154), - [anon_sym_EQ_TILDE2] = ACTIONS(2154), - [anon_sym_BANG_TILDE2] = ACTIONS(2154), - [anon_sym_like2] = ACTIONS(2154), - [anon_sym_not_DASHlike2] = ACTIONS(2154), - [anon_sym_STAR_STAR2] = ACTIONS(2154), - [anon_sym_PLUS_PLUS2] = ACTIONS(2154), - [anon_sym_SLASH2] = ACTIONS(2156), - [anon_sym_mod2] = ACTIONS(2154), - [anon_sym_SLASH_SLASH2] = ACTIONS(2154), - [anon_sym_PLUS2] = ACTIONS(2156), - [anon_sym_bit_DASHshl2] = ACTIONS(2154), - [anon_sym_bit_DASHshr2] = ACTIONS(2154), - [anon_sym_bit_DASHand2] = ACTIONS(2154), - [anon_sym_bit_DASHxor2] = ACTIONS(2154), - [anon_sym_bit_DASHor2] = ACTIONS(2154), - [anon_sym_DOT_DOT2] = ACTIONS(2158), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2160), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2160), - [anon_sym_err_GT] = ACTIONS(2156), - [anon_sym_out_GT] = ACTIONS(2156), - [anon_sym_e_GT] = ACTIONS(2156), - [anon_sym_o_GT] = ACTIONS(2156), - [anon_sym_err_PLUSout_GT] = ACTIONS(2156), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2156), - [anon_sym_o_PLUSe_GT] = ACTIONS(2156), - [anon_sym_e_PLUSo_GT] = ACTIONS(2156), - [anon_sym_err_GT_GT] = ACTIONS(2154), - [anon_sym_out_GT_GT] = ACTIONS(2154), - [anon_sym_e_GT_GT] = ACTIONS(2154), - [anon_sym_o_GT_GT] = ACTIONS(2154), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2154), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2154), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2154), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2154), + [anon_sym_in] = ACTIONS(1790), + [sym__newline] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym_PIPE] = ACTIONS(1790), + [anon_sym_err_GT_PIPE] = ACTIONS(1790), + [anon_sym_out_GT_PIPE] = ACTIONS(1790), + [anon_sym_e_GT_PIPE] = ACTIONS(1790), + [anon_sym_o_GT_PIPE] = ACTIONS(1790), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1790), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1790), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1790), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1790), + [anon_sym_RPAREN] = ACTIONS(1790), + [anon_sym_GT2] = ACTIONS(1792), + [anon_sym_DASH2] = ACTIONS(1790), + [anon_sym_RBRACE] = ACTIONS(1790), + [anon_sym_STAR2] = ACTIONS(1792), + [anon_sym_and2] = ACTIONS(1790), + [anon_sym_xor2] = ACTIONS(1790), + [anon_sym_or2] = ACTIONS(1790), + [anon_sym_not_DASHin2] = ACTIONS(1790), + [anon_sym_has2] = ACTIONS(1790), + [anon_sym_not_DASHhas2] = ACTIONS(1790), + [anon_sym_starts_DASHwith2] = ACTIONS(1790), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1790), + [anon_sym_ends_DASHwith2] = ACTIONS(1790), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1790), + [anon_sym_EQ_EQ2] = ACTIONS(1790), + [anon_sym_BANG_EQ2] = ACTIONS(1790), + [anon_sym_LT2] = ACTIONS(1792), + [anon_sym_LT_EQ2] = ACTIONS(1790), + [anon_sym_GT_EQ2] = ACTIONS(1790), + [anon_sym_EQ_TILDE2] = ACTIONS(1790), + [anon_sym_BANG_TILDE2] = ACTIONS(1790), + [anon_sym_like2] = ACTIONS(1790), + [anon_sym_not_DASHlike2] = ACTIONS(1790), + [anon_sym_LPAREN2] = ACTIONS(1790), + [anon_sym_STAR_STAR2] = ACTIONS(1790), + [anon_sym_PLUS_PLUS2] = ACTIONS(1790), + [anon_sym_SLASH2] = ACTIONS(1792), + [anon_sym_mod2] = ACTIONS(1790), + [anon_sym_SLASH_SLASH2] = ACTIONS(1790), + [anon_sym_PLUS2] = ACTIONS(1792), + [anon_sym_bit_DASHshl2] = ACTIONS(1790), + [anon_sym_bit_DASHshr2] = ACTIONS(1790), + [anon_sym_bit_DASHand2] = ACTIONS(1790), + [anon_sym_bit_DASHxor2] = ACTIONS(1790), + [anon_sym_bit_DASHor2] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(2100), + [aux_sym__immediate_decimal_token5] = ACTIONS(2102), + [anon_sym_err_GT] = ACTIONS(1792), + [anon_sym_out_GT] = ACTIONS(1792), + [anon_sym_e_GT] = ACTIONS(1792), + [anon_sym_o_GT] = ACTIONS(1792), + [anon_sym_err_PLUSout_GT] = ACTIONS(1792), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1792), + [anon_sym_o_PLUSe_GT] = ACTIONS(1792), + [anon_sym_e_PLUSo_GT] = ACTIONS(1792), + [anon_sym_err_GT_GT] = ACTIONS(1790), + [anon_sym_out_GT_GT] = ACTIONS(1790), + [anon_sym_e_GT_GT] = ACTIONS(1790), + [anon_sym_o_GT_GT] = ACTIONS(1790), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1790), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1790), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1790), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1790), + [sym__unquoted_pattern] = ACTIONS(1792), [anon_sym_POUND] = ACTIONS(3), }, [STATE(701)] = { - [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(701), - [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(1724), - [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_in] = ACTIONS(2104), + [sym__newline] = ACTIONS(2104), + [anon_sym_SEMI] = ACTIONS(2104), + [anon_sym_PIPE] = ACTIONS(2104), + [anon_sym_err_GT_PIPE] = ACTIONS(2104), + [anon_sym_out_GT_PIPE] = ACTIONS(2104), + [anon_sym_e_GT_PIPE] = ACTIONS(2104), + [anon_sym_o_GT_PIPE] = ACTIONS(2104), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2104), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2104), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2104), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2104), + [anon_sym_RPAREN] = ACTIONS(2104), + [anon_sym_GT2] = ACTIONS(2106), + [anon_sym_DASH2] = ACTIONS(2104), + [anon_sym_LBRACE] = ACTIONS(2104), + [anon_sym_RBRACE] = ACTIONS(2104), + [anon_sym_STAR2] = ACTIONS(2106), + [anon_sym_and2] = ACTIONS(2104), + [anon_sym_xor2] = ACTIONS(2104), + [anon_sym_or2] = ACTIONS(2104), + [anon_sym_not_DASHin2] = ACTIONS(2104), + [anon_sym_has2] = ACTIONS(2104), + [anon_sym_not_DASHhas2] = ACTIONS(2104), + [anon_sym_starts_DASHwith2] = ACTIONS(2104), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2104), + [anon_sym_ends_DASHwith2] = ACTIONS(2104), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2104), + [anon_sym_EQ_EQ2] = ACTIONS(2104), + [anon_sym_BANG_EQ2] = ACTIONS(2104), + [anon_sym_LT2] = ACTIONS(2106), + [anon_sym_LT_EQ2] = ACTIONS(2104), + [anon_sym_GT_EQ2] = ACTIONS(2104), + [anon_sym_EQ_TILDE2] = ACTIONS(2104), + [anon_sym_BANG_TILDE2] = ACTIONS(2104), + [anon_sym_like2] = ACTIONS(2104), + [anon_sym_not_DASHlike2] = ACTIONS(2104), + [anon_sym_STAR_STAR2] = ACTIONS(2104), + [anon_sym_PLUS_PLUS2] = ACTIONS(2104), + [anon_sym_SLASH2] = ACTIONS(2106), + [anon_sym_mod2] = ACTIONS(2104), + [anon_sym_SLASH_SLASH2] = ACTIONS(2104), + [anon_sym_PLUS2] = ACTIONS(2106), + [anon_sym_bit_DASHshl2] = ACTIONS(2104), + [anon_sym_bit_DASHshr2] = ACTIONS(2104), + [anon_sym_bit_DASHand2] = ACTIONS(2104), + [anon_sym_bit_DASHxor2] = ACTIONS(2104), + [anon_sym_bit_DASHor2] = ACTIONS(2104), + [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(2106), + [anon_sym_out_GT] = ACTIONS(2106), + [anon_sym_e_GT] = ACTIONS(2106), + [anon_sym_o_GT] = ACTIONS(2106), + [anon_sym_err_PLUSout_GT] = ACTIONS(2106), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2106), + [anon_sym_o_PLUSe_GT] = ACTIONS(2106), + [anon_sym_e_PLUSo_GT] = ACTIONS(2106), + [anon_sym_err_GT_GT] = ACTIONS(2104), + [anon_sym_out_GT_GT] = ACTIONS(2104), + [anon_sym_e_GT_GT] = ACTIONS(2104), + [anon_sym_o_GT_GT] = ACTIONS(2104), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2104), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2104), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2104), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2104), [anon_sym_POUND] = ACTIONS(3), }, [STATE(702)] = { [sym_comment] = STATE(702), - [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_COLON] = 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(1496), - [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_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_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_DOT_DOT2] = ACTIONS(2116), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2118), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2118), + [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(703)] = { [sym_comment] = STATE(703), - [anon_sym_in] = ACTIONS(2162), - [sym__newline] = ACTIONS(2162), - [anon_sym_SEMI] = ACTIONS(2162), - [anon_sym_PIPE] = ACTIONS(2162), - [anon_sym_err_GT_PIPE] = ACTIONS(2162), - [anon_sym_out_GT_PIPE] = ACTIONS(2162), - [anon_sym_e_GT_PIPE] = ACTIONS(2162), - [anon_sym_o_GT_PIPE] = ACTIONS(2162), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2162), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2162), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2162), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2162), - [anon_sym_RPAREN] = ACTIONS(2162), - [anon_sym_GT2] = ACTIONS(2164), - [anon_sym_DASH2] = ACTIONS(2162), - [anon_sym_LBRACE] = ACTIONS(2162), - [anon_sym_RBRACE] = ACTIONS(2162), - [anon_sym_STAR2] = ACTIONS(2164), - [anon_sym_and2] = ACTIONS(2162), - [anon_sym_xor2] = ACTIONS(2162), - [anon_sym_or2] = ACTIONS(2162), - [anon_sym_not_DASHin2] = ACTIONS(2162), - [anon_sym_has2] = ACTIONS(2162), - [anon_sym_not_DASHhas2] = ACTIONS(2162), - [anon_sym_starts_DASHwith2] = ACTIONS(2162), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2162), - [anon_sym_ends_DASHwith2] = ACTIONS(2162), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2162), - [anon_sym_EQ_EQ2] = ACTIONS(2162), - [anon_sym_BANG_EQ2] = ACTIONS(2162), - [anon_sym_LT2] = ACTIONS(2164), - [anon_sym_LT_EQ2] = ACTIONS(2162), - [anon_sym_GT_EQ2] = ACTIONS(2162), - [anon_sym_EQ_TILDE2] = ACTIONS(2162), - [anon_sym_BANG_TILDE2] = ACTIONS(2162), - [anon_sym_like2] = ACTIONS(2162), - [anon_sym_not_DASHlike2] = ACTIONS(2162), - [anon_sym_STAR_STAR2] = ACTIONS(2162), - [anon_sym_PLUS_PLUS2] = ACTIONS(2162), - [anon_sym_SLASH2] = ACTIONS(2164), - [anon_sym_mod2] = ACTIONS(2162), - [anon_sym_SLASH_SLASH2] = ACTIONS(2162), - [anon_sym_PLUS2] = ACTIONS(2164), - [anon_sym_bit_DASHshl2] = ACTIONS(2162), - [anon_sym_bit_DASHshr2] = ACTIONS(2162), - [anon_sym_bit_DASHand2] = ACTIONS(2162), - [anon_sym_bit_DASHxor2] = ACTIONS(2162), - [anon_sym_bit_DASHor2] = ACTIONS(2162), - [anon_sym_DOT_DOT2] = ACTIONS(1618), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1620), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1620), - [anon_sym_err_GT] = ACTIONS(2164), - [anon_sym_out_GT] = ACTIONS(2164), - [anon_sym_e_GT] = ACTIONS(2164), - [anon_sym_o_GT] = ACTIONS(2164), - [anon_sym_err_PLUSout_GT] = ACTIONS(2164), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2164), - [anon_sym_o_PLUSe_GT] = ACTIONS(2164), - [anon_sym_e_PLUSo_GT] = ACTIONS(2164), - [anon_sym_err_GT_GT] = ACTIONS(2162), - [anon_sym_out_GT_GT] = ACTIONS(2162), - [anon_sym_e_GT_GT] = ACTIONS(2162), - [anon_sym_o_GT_GT] = ACTIONS(2162), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2162), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2162), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2162), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2162), + [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), + [anon_sym_RPAREN] = ACTIONS(2120), + [anon_sym_GT2] = ACTIONS(2122), + [anon_sym_DASH2] = ACTIONS(2120), + [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_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_SLASH2] = ACTIONS(2122), + [anon_sym_mod2] = ACTIONS(2120), + [anon_sym_SLASH_SLASH2] = ACTIONS(2120), + [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_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(704)] = { [sym_comment] = STATE(704), - [anon_sym_in] = ACTIONS(2162), - [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(2164), - [anon_sym_DASH2] = ACTIONS(2162), - [anon_sym_LBRACE] = ACTIONS(2166), - [anon_sym_RBRACE] = ACTIONS(2166), - [anon_sym_STAR2] = ACTIONS(2164), - [anon_sym_and2] = ACTIONS(2162), - [anon_sym_xor2] = ACTIONS(2162), - [anon_sym_or2] = ACTIONS(2162), - [anon_sym_not_DASHin2] = ACTIONS(2162), - [anon_sym_has2] = ACTIONS(2162), - [anon_sym_not_DASHhas2] = ACTIONS(2162), - [anon_sym_starts_DASHwith2] = ACTIONS(2162), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2162), - [anon_sym_ends_DASHwith2] = ACTIONS(2162), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2162), - [anon_sym_EQ_EQ2] = ACTIONS(2162), - [anon_sym_BANG_EQ2] = ACTIONS(2162), - [anon_sym_LT2] = ACTIONS(2164), - [anon_sym_LT_EQ2] = ACTIONS(2162), - [anon_sym_GT_EQ2] = ACTIONS(2162), - [anon_sym_EQ_TILDE2] = ACTIONS(2162), - [anon_sym_BANG_TILDE2] = ACTIONS(2162), - [anon_sym_like2] = ACTIONS(2162), - [anon_sym_not_DASHlike2] = ACTIONS(2162), - [anon_sym_STAR_STAR2] = ACTIONS(2162), - [anon_sym_PLUS_PLUS2] = ACTIONS(2162), - [anon_sym_SLASH2] = ACTIONS(2164), - [anon_sym_mod2] = ACTIONS(2162), - [anon_sym_SLASH_SLASH2] = ACTIONS(2162), - [anon_sym_PLUS2] = ACTIONS(2164), - [anon_sym_bit_DASHshl2] = ACTIONS(2162), - [anon_sym_bit_DASHshr2] = ACTIONS(2162), - [anon_sym_bit_DASHand2] = ACTIONS(2162), - [anon_sym_bit_DASHxor2] = ACTIONS(2162), - [anon_sym_bit_DASHor2] = ACTIONS(2162), - [anon_sym_DOT_DOT2] = ACTIONS(1618), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1620), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1620), - [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_in] = ACTIONS(1982), + [sym__newline] = ACTIONS(1982), + [anon_sym_SEMI] = ACTIONS(1982), + [anon_sym_PIPE] = ACTIONS(1982), + [anon_sym_err_GT_PIPE] = ACTIONS(1982), + [anon_sym_out_GT_PIPE] = ACTIONS(1982), + [anon_sym_e_GT_PIPE] = ACTIONS(1982), + [anon_sym_o_GT_PIPE] = ACTIONS(1982), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1982), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1982), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1982), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1982), + [anon_sym_RPAREN] = ACTIONS(1982), + [anon_sym_GT2] = ACTIONS(1984), + [anon_sym_DASH2] = ACTIONS(1982), + [anon_sym_LBRACE] = ACTIONS(1982), + [anon_sym_RBRACE] = ACTIONS(1982), + [anon_sym_STAR2] = ACTIONS(1984), + [anon_sym_and2] = ACTIONS(1982), + [anon_sym_xor2] = ACTIONS(1982), + [anon_sym_or2] = ACTIONS(1982), + [anon_sym_not_DASHin2] = ACTIONS(1982), + [anon_sym_has2] = ACTIONS(1982), + [anon_sym_not_DASHhas2] = ACTIONS(1982), + [anon_sym_starts_DASHwith2] = ACTIONS(1982), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1982), + [anon_sym_ends_DASHwith2] = ACTIONS(1982), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1982), + [anon_sym_EQ_EQ2] = ACTIONS(1982), + [anon_sym_BANG_EQ2] = ACTIONS(1982), + [anon_sym_LT2] = ACTIONS(1984), + [anon_sym_LT_EQ2] = ACTIONS(1982), + [anon_sym_GT_EQ2] = ACTIONS(1982), + [anon_sym_EQ_TILDE2] = ACTIONS(1982), + [anon_sym_BANG_TILDE2] = ACTIONS(1982), + [anon_sym_like2] = ACTIONS(1982), + [anon_sym_not_DASHlike2] = ACTIONS(1982), + [anon_sym_STAR_STAR2] = ACTIONS(1982), + [anon_sym_PLUS_PLUS2] = ACTIONS(1982), + [anon_sym_SLASH2] = ACTIONS(1984), + [anon_sym_mod2] = ACTIONS(1982), + [anon_sym_SLASH_SLASH2] = ACTIONS(1982), + [anon_sym_PLUS2] = ACTIONS(1984), + [anon_sym_bit_DASHshl2] = ACTIONS(1982), + [anon_sym_bit_DASHshr2] = ACTIONS(1982), + [anon_sym_bit_DASHand2] = ACTIONS(1982), + [anon_sym_bit_DASHxor2] = ACTIONS(1982), + [anon_sym_bit_DASHor2] = ACTIONS(1982), + [anon_sym_DOT_DOT2] = ACTIONS(2128), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2130), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2130), + [anon_sym_err_GT] = ACTIONS(1984), + [anon_sym_out_GT] = ACTIONS(1984), + [anon_sym_e_GT] = ACTIONS(1984), + [anon_sym_o_GT] = ACTIONS(1984), + [anon_sym_err_PLUSout_GT] = ACTIONS(1984), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1984), + [anon_sym_o_PLUSe_GT] = ACTIONS(1984), + [anon_sym_e_PLUSo_GT] = ACTIONS(1984), + [anon_sym_err_GT_GT] = ACTIONS(1982), + [anon_sym_out_GT_GT] = ACTIONS(1982), + [anon_sym_e_GT_GT] = ACTIONS(1982), + [anon_sym_o_GT_GT] = ACTIONS(1982), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1982), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1982), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1982), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1982), [anon_sym_POUND] = ACTIONS(3), }, [STATE(705)] = { - [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(705), - [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(1724), - [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_in] = ACTIONS(1699), + [sym__newline] = ACTIONS(1699), + [anon_sym_SEMI] = ACTIONS(1699), + [anon_sym_PIPE] = ACTIONS(1699), + [anon_sym_err_GT_PIPE] = ACTIONS(1699), + [anon_sym_out_GT_PIPE] = ACTIONS(1699), + [anon_sym_e_GT_PIPE] = ACTIONS(1699), + [anon_sym_o_GT_PIPE] = ACTIONS(1699), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1699), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1699), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1699), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1699), + [anon_sym_RPAREN] = ACTIONS(1699), + [anon_sym_GT2] = ACTIONS(1615), + [anon_sym_DASH2] = ACTIONS(1699), + [anon_sym_LBRACE] = ACTIONS(1699), + [anon_sym_RBRACE] = ACTIONS(1699), + [anon_sym_STAR2] = ACTIONS(1615), + [anon_sym_and2] = ACTIONS(1699), + [anon_sym_xor2] = ACTIONS(1699), + [anon_sym_or2] = ACTIONS(1699), + [anon_sym_not_DASHin2] = ACTIONS(1699), + [anon_sym_has2] = ACTIONS(1699), + [anon_sym_not_DASHhas2] = ACTIONS(1699), + [anon_sym_starts_DASHwith2] = ACTIONS(1699), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1699), + [anon_sym_ends_DASHwith2] = ACTIONS(1699), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1699), + [anon_sym_EQ_EQ2] = ACTIONS(1699), + [anon_sym_BANG_EQ2] = ACTIONS(1699), + [anon_sym_LT2] = ACTIONS(1615), + [anon_sym_LT_EQ2] = ACTIONS(1699), + [anon_sym_GT_EQ2] = ACTIONS(1699), + [anon_sym_EQ_TILDE2] = ACTIONS(1699), + [anon_sym_BANG_TILDE2] = ACTIONS(1699), + [anon_sym_like2] = ACTIONS(1699), + [anon_sym_not_DASHlike2] = ACTIONS(1699), + [anon_sym_STAR_STAR2] = ACTIONS(1699), + [anon_sym_PLUS_PLUS2] = ACTIONS(1699), + [anon_sym_SLASH2] = ACTIONS(1615), + [anon_sym_mod2] = ACTIONS(1699), + [anon_sym_SLASH_SLASH2] = ACTIONS(1699), + [anon_sym_PLUS2] = ACTIONS(1615), + [anon_sym_bit_DASHshl2] = ACTIONS(1699), + [anon_sym_bit_DASHshr2] = ACTIONS(1699), + [anon_sym_bit_DASHand2] = ACTIONS(1699), + [anon_sym_bit_DASHxor2] = ACTIONS(1699), + [anon_sym_bit_DASHor2] = ACTIONS(1699), + [anon_sym_DOT_DOT2] = ACTIONS(1619), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1621), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1621), + [anon_sym_err_GT] = ACTIONS(1615), + [anon_sym_out_GT] = ACTIONS(1615), + [anon_sym_e_GT] = ACTIONS(1615), + [anon_sym_o_GT] = ACTIONS(1615), + [anon_sym_err_PLUSout_GT] = ACTIONS(1615), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1615), + [anon_sym_o_PLUSe_GT] = ACTIONS(1615), + [anon_sym_e_PLUSo_GT] = ACTIONS(1615), + [anon_sym_err_GT_GT] = ACTIONS(1699), + [anon_sym_out_GT_GT] = ACTIONS(1699), + [anon_sym_e_GT_GT] = ACTIONS(1699), + [anon_sym_o_GT_GT] = ACTIONS(1699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1699), [anon_sym_POUND] = ACTIONS(3), }, [STATE(706)] = { - [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(706), - [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(1724), - [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_in] = ACTIONS(2132), + [sym__newline] = ACTIONS(2132), + [anon_sym_SEMI] = ACTIONS(2132), + [anon_sym_PIPE] = ACTIONS(2132), + [anon_sym_err_GT_PIPE] = ACTIONS(2132), + [anon_sym_out_GT_PIPE] = ACTIONS(2132), + [anon_sym_e_GT_PIPE] = ACTIONS(2132), + [anon_sym_o_GT_PIPE] = ACTIONS(2132), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2132), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2132), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2132), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2132), + [anon_sym_RPAREN] = ACTIONS(2132), + [anon_sym_GT2] = ACTIONS(2134), + [anon_sym_DASH2] = ACTIONS(2132), + [anon_sym_LBRACE] = ACTIONS(2132), + [anon_sym_RBRACE] = ACTIONS(2132), + [anon_sym_STAR2] = ACTIONS(2134), + [anon_sym_and2] = ACTIONS(2132), + [anon_sym_xor2] = ACTIONS(2132), + [anon_sym_or2] = ACTIONS(2132), + [anon_sym_not_DASHin2] = ACTIONS(2132), + [anon_sym_has2] = ACTIONS(2132), + [anon_sym_not_DASHhas2] = ACTIONS(2132), + [anon_sym_starts_DASHwith2] = ACTIONS(2132), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2132), + [anon_sym_ends_DASHwith2] = ACTIONS(2132), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2132), + [anon_sym_EQ_EQ2] = ACTIONS(2132), + [anon_sym_BANG_EQ2] = ACTIONS(2132), + [anon_sym_LT2] = ACTIONS(2134), + [anon_sym_LT_EQ2] = ACTIONS(2132), + [anon_sym_GT_EQ2] = ACTIONS(2132), + [anon_sym_EQ_TILDE2] = ACTIONS(2132), + [anon_sym_BANG_TILDE2] = ACTIONS(2132), + [anon_sym_like2] = ACTIONS(2132), + [anon_sym_not_DASHlike2] = ACTIONS(2132), + [anon_sym_STAR_STAR2] = ACTIONS(2132), + [anon_sym_PLUS_PLUS2] = ACTIONS(2132), + [anon_sym_SLASH2] = ACTIONS(2134), + [anon_sym_mod2] = ACTIONS(2132), + [anon_sym_SLASH_SLASH2] = ACTIONS(2132), + [anon_sym_PLUS2] = ACTIONS(2134), + [anon_sym_bit_DASHshl2] = ACTIONS(2132), + [anon_sym_bit_DASHshr2] = ACTIONS(2132), + [anon_sym_bit_DASHand2] = ACTIONS(2132), + [anon_sym_bit_DASHxor2] = ACTIONS(2132), + [anon_sym_bit_DASHor2] = ACTIONS(2132), + [anon_sym_DOT_DOT2] = ACTIONS(1619), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1621), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1621), + [anon_sym_err_GT] = ACTIONS(2134), + [anon_sym_out_GT] = ACTIONS(2134), + [anon_sym_e_GT] = ACTIONS(2134), + [anon_sym_o_GT] = ACTIONS(2134), + [anon_sym_err_PLUSout_GT] = ACTIONS(2134), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2134), + [anon_sym_o_PLUSe_GT] = ACTIONS(2134), + [anon_sym_e_PLUSo_GT] = ACTIONS(2134), + [anon_sym_err_GT_GT] = ACTIONS(2132), + [anon_sym_out_GT_GT] = ACTIONS(2132), + [anon_sym_e_GT_GT] = ACTIONS(2132), + [anon_sym_o_GT_GT] = ACTIONS(2132), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2132), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2132), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2132), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2132), [anon_sym_POUND] = ACTIONS(3), }, [STATE(707)] = { + [sym__expr_parenthesized_immediate] = STATE(5483), [sym_comment] = STATE(707), - [anon_sym_if] = ACTIONS(2170), + [anon_sym_in] = ACTIONS(2136), + [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(2136), + [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(2136), + [anon_sym_xor2] = ACTIONS(2136), + [anon_sym_or2] = ACTIONS(2136), + [anon_sym_not_DASHin2] = ACTIONS(2136), + [anon_sym_has2] = ACTIONS(2136), + [anon_sym_not_DASHhas2] = ACTIONS(2136), + [anon_sym_starts_DASHwith2] = ACTIONS(2136), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2136), + [anon_sym_ends_DASHwith2] = ACTIONS(2136), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2136), + [anon_sym_EQ_EQ2] = ACTIONS(2136), + [anon_sym_BANG_EQ2] = ACTIONS(2136), + [anon_sym_LT2] = ACTIONS(2138), + [anon_sym_LT_EQ2] = ACTIONS(2136), + [anon_sym_GT_EQ2] = ACTIONS(2136), + [anon_sym_EQ_TILDE2] = ACTIONS(2136), + [anon_sym_BANG_TILDE2] = ACTIONS(2136), + [anon_sym_like2] = ACTIONS(2136), + [anon_sym_not_DASHlike2] = ACTIONS(2136), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_STAR_STAR2] = ACTIONS(2136), + [anon_sym_PLUS_PLUS2] = ACTIONS(2136), + [anon_sym_SLASH2] = ACTIONS(2138), + [anon_sym_mod2] = ACTIONS(2136), + [anon_sym_SLASH_SLASH2] = ACTIONS(2136), + [anon_sym_PLUS2] = ACTIONS(2138), + [anon_sym_bit_DASHshl2] = ACTIONS(2136), + [anon_sym_bit_DASHshr2] = ACTIONS(2136), + [anon_sym_bit_DASHand2] = ACTIONS(2136), + [anon_sym_bit_DASHxor2] = ACTIONS(2136), + [anon_sym_bit_DASHor2] = ACTIONS(2136), + [anon_sym_err_GT] = ACTIONS(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(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(708)] = { + [sym__expr_parenthesized_immediate] = STATE(5483), + [sym_comment] = STATE(708), + [anon_sym_in] = ACTIONS(2140), + [sym__newline] = ACTIONS(2140), + [anon_sym_SEMI] = ACTIONS(2140), + [anon_sym_PIPE] = ACTIONS(2140), + [anon_sym_err_GT_PIPE] = ACTIONS(2140), + [anon_sym_out_GT_PIPE] = ACTIONS(2140), + [anon_sym_e_GT_PIPE] = ACTIONS(2140), + [anon_sym_o_GT_PIPE] = ACTIONS(2140), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2140), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2140), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2140), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2140), + [anon_sym_RPAREN] = ACTIONS(2140), + [anon_sym_GT2] = ACTIONS(2142), + [anon_sym_DASH2] = ACTIONS(2140), + [anon_sym_LBRACE] = ACTIONS(2140), + [anon_sym_RBRACE] = ACTIONS(2140), + [anon_sym_EQ_GT] = ACTIONS(2140), + [anon_sym_STAR2] = ACTIONS(2142), + [anon_sym_and2] = ACTIONS(2140), + [anon_sym_xor2] = ACTIONS(2140), + [anon_sym_or2] = ACTIONS(2140), + [anon_sym_not_DASHin2] = ACTIONS(2140), + [anon_sym_has2] = ACTIONS(2140), + [anon_sym_not_DASHhas2] = ACTIONS(2140), + [anon_sym_starts_DASHwith2] = ACTIONS(2140), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2140), + [anon_sym_ends_DASHwith2] = ACTIONS(2140), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2140), + [anon_sym_EQ_EQ2] = ACTIONS(2140), + [anon_sym_BANG_EQ2] = ACTIONS(2140), + [anon_sym_LT2] = ACTIONS(2142), + [anon_sym_LT_EQ2] = ACTIONS(2140), + [anon_sym_GT_EQ2] = ACTIONS(2140), + [anon_sym_EQ_TILDE2] = ACTIONS(2140), + [anon_sym_BANG_TILDE2] = ACTIONS(2140), + [anon_sym_like2] = ACTIONS(2140), + [anon_sym_not_DASHlike2] = ACTIONS(2140), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_STAR_STAR2] = ACTIONS(2140), + [anon_sym_PLUS_PLUS2] = ACTIONS(2140), + [anon_sym_SLASH2] = ACTIONS(2142), + [anon_sym_mod2] = ACTIONS(2140), + [anon_sym_SLASH_SLASH2] = ACTIONS(2140), + [anon_sym_PLUS2] = ACTIONS(2142), + [anon_sym_bit_DASHshl2] = ACTIONS(2140), + [anon_sym_bit_DASHshr2] = ACTIONS(2140), + [anon_sym_bit_DASHand2] = ACTIONS(2140), + [anon_sym_bit_DASHxor2] = ACTIONS(2140), + [anon_sym_bit_DASHor2] = ACTIONS(2140), + [anon_sym_err_GT] = ACTIONS(2142), + [anon_sym_out_GT] = ACTIONS(2142), + [anon_sym_e_GT] = ACTIONS(2142), + [anon_sym_o_GT] = ACTIONS(2142), + [anon_sym_err_PLUSout_GT] = ACTIONS(2142), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2142), + [anon_sym_o_PLUSe_GT] = ACTIONS(2142), + [anon_sym_e_PLUSo_GT] = ACTIONS(2142), + [anon_sym_err_GT_GT] = ACTIONS(2140), + [anon_sym_out_GT_GT] = ACTIONS(2140), + [anon_sym_e_GT_GT] = ACTIONS(2140), + [anon_sym_o_GT_GT] = ACTIONS(2140), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2140), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2140), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2140), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2140), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(709)] = { + [sym__expr_parenthesized_immediate] = STATE(5483), + [sym_comment] = STATE(709), + [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(1818), + [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_POUND] = ACTIONS(3), + }, + [STATE(710)] = { + [sym_comment] = STATE(710), + [anon_sym_if] = 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_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_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_COLON2] = 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_POUND] = ACTIONS(3), + }, + [STATE(711)] = { + [sym_comment] = STATE(711), + [ts_builtin_sym_end] = ACTIONS(1972), + [anon_sym_in] = ACTIONS(1972), + [sym__newline] = ACTIONS(1972), + [anon_sym_SEMI] = ACTIONS(1972), + [anon_sym_PIPE] = ACTIONS(1972), + [anon_sym_err_GT_PIPE] = ACTIONS(1972), + [anon_sym_out_GT_PIPE] = ACTIONS(1972), + [anon_sym_e_GT_PIPE] = ACTIONS(1972), + [anon_sym_o_GT_PIPE] = ACTIONS(1972), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1972), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1972), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1972), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1972), + [anon_sym_GT2] = ACTIONS(1974), + [anon_sym_DASH2] = ACTIONS(1972), + [anon_sym_STAR2] = ACTIONS(1974), + [anon_sym_and2] = ACTIONS(1972), + [anon_sym_xor2] = ACTIONS(1972), + [anon_sym_or2] = ACTIONS(1972), + [anon_sym_not_DASHin2] = ACTIONS(1972), + [anon_sym_has2] = ACTIONS(1972), + [anon_sym_not_DASHhas2] = ACTIONS(1972), + [anon_sym_starts_DASHwith2] = ACTIONS(1972), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1972), + [anon_sym_ends_DASHwith2] = ACTIONS(1972), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1972), + [anon_sym_EQ_EQ2] = ACTIONS(1972), + [anon_sym_BANG_EQ2] = ACTIONS(1972), + [anon_sym_LT2] = ACTIONS(1974), + [anon_sym_LT_EQ2] = ACTIONS(1972), + [anon_sym_GT_EQ2] = ACTIONS(1972), + [anon_sym_EQ_TILDE2] = ACTIONS(1972), + [anon_sym_BANG_TILDE2] = ACTIONS(1972), + [anon_sym_like2] = ACTIONS(1972), + [anon_sym_not_DASHlike2] = ACTIONS(1972), + [anon_sym_LPAREN2] = ACTIONS(1976), + [anon_sym_STAR_STAR2] = ACTIONS(1972), + [anon_sym_PLUS_PLUS2] = ACTIONS(1972), + [anon_sym_SLASH2] = ACTIONS(1974), + [anon_sym_mod2] = ACTIONS(1972), + [anon_sym_SLASH_SLASH2] = ACTIONS(1972), + [anon_sym_PLUS2] = ACTIONS(1974), + [anon_sym_bit_DASHshl2] = ACTIONS(1972), + [anon_sym_bit_DASHshr2] = ACTIONS(1972), + [anon_sym_bit_DASHand2] = ACTIONS(1972), + [anon_sym_bit_DASHxor2] = ACTIONS(1972), + [anon_sym_bit_DASHor2] = ACTIONS(1972), + [anon_sym_DOT_DOT2] = ACTIONS(2152), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2154), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2154), + [anon_sym_err_GT] = ACTIONS(1974), + [anon_sym_out_GT] = ACTIONS(1974), + [anon_sym_e_GT] = ACTIONS(1974), + [anon_sym_o_GT] = ACTIONS(1974), + [anon_sym_err_PLUSout_GT] = ACTIONS(1974), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1974), + [anon_sym_o_PLUSe_GT] = ACTIONS(1974), + [anon_sym_e_PLUSo_GT] = ACTIONS(1974), + [anon_sym_err_GT_GT] = ACTIONS(1972), + [anon_sym_out_GT_GT] = ACTIONS(1972), + [anon_sym_e_GT_GT] = ACTIONS(1972), + [anon_sym_o_GT_GT] = ACTIONS(1972), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1972), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1972), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1972), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1972), + [sym__unquoted_pattern] = ACTIONS(1637), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(712)] = { + [sym_comment] = STATE(712), + [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(847), + [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(847), + [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(847), + [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(847), + [anon_sym_mod2] = ACTIONS(968), + [anon_sym_SLASH_SLASH2] = ACTIONS(968), + [anon_sym_PLUS2] = ACTIONS(847), + [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(847), + [anon_sym_out_GT] = ACTIONS(847), + [anon_sym_e_GT] = ACTIONS(847), + [anon_sym_o_GT] = ACTIONS(847), + [anon_sym_err_PLUSout_GT] = ACTIONS(847), + [anon_sym_out_PLUSerr_GT] = ACTIONS(847), + [anon_sym_o_PLUSe_GT] = ACTIONS(847), + [anon_sym_e_PLUSo_GT] = ACTIONS(847), + [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(713)] = { + [sym_comment] = STATE(713), + [anon_sym_if] = ACTIONS(2156), + [anon_sym_in] = ACTIONS(2156), + [sym__newline] = ACTIONS(2156), + [anon_sym_SEMI] = ACTIONS(2156), + [anon_sym_PIPE] = ACTIONS(2156), + [anon_sym_err_GT_PIPE] = ACTIONS(2156), + [anon_sym_out_GT_PIPE] = ACTIONS(2156), + [anon_sym_e_GT_PIPE] = ACTIONS(2156), + [anon_sym_o_GT_PIPE] = ACTIONS(2156), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2156), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2156), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2156), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2156), + [anon_sym_RPAREN] = ACTIONS(2156), + [anon_sym_GT2] = ACTIONS(2158), + [anon_sym_DASH2] = ACTIONS(2156), + [anon_sym_LBRACE] = ACTIONS(2156), + [anon_sym_RBRACE] = ACTIONS(2156), + [anon_sym_EQ_GT] = ACTIONS(2156), + [anon_sym_STAR2] = ACTIONS(2158), + [anon_sym_and2] = ACTIONS(2156), + [anon_sym_xor2] = ACTIONS(2156), + [anon_sym_or2] = ACTIONS(2156), + [anon_sym_not_DASHin2] = ACTIONS(2156), + [anon_sym_has2] = ACTIONS(2156), + [anon_sym_not_DASHhas2] = ACTIONS(2156), + [anon_sym_starts_DASHwith2] = ACTIONS(2156), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2156), + [anon_sym_ends_DASHwith2] = ACTIONS(2156), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2156), + [anon_sym_EQ_EQ2] = ACTIONS(2156), + [anon_sym_BANG_EQ2] = ACTIONS(2156), + [anon_sym_LT2] = ACTIONS(2158), + [anon_sym_LT_EQ2] = ACTIONS(2156), + [anon_sym_GT_EQ2] = ACTIONS(2156), + [anon_sym_EQ_TILDE2] = ACTIONS(2156), + [anon_sym_BANG_TILDE2] = ACTIONS(2156), + [anon_sym_like2] = ACTIONS(2156), + [anon_sym_not_DASHlike2] = ACTIONS(2156), + [anon_sym_LPAREN2] = ACTIONS(2156), + [anon_sym_STAR_STAR2] = ACTIONS(2156), + [anon_sym_PLUS_PLUS2] = ACTIONS(2156), + [anon_sym_SLASH2] = ACTIONS(2158), + [anon_sym_mod2] = ACTIONS(2156), + [anon_sym_SLASH_SLASH2] = ACTIONS(2156), + [anon_sym_PLUS2] = ACTIONS(2158), + [anon_sym_bit_DASHshl2] = ACTIONS(2156), + [anon_sym_bit_DASHshr2] = ACTIONS(2156), + [anon_sym_bit_DASHand2] = ACTIONS(2156), + [anon_sym_bit_DASHxor2] = ACTIONS(2156), + [anon_sym_bit_DASHor2] = ACTIONS(2156), + [anon_sym_err_GT] = ACTIONS(2158), + [anon_sym_out_GT] = ACTIONS(2158), + [anon_sym_e_GT] = ACTIONS(2158), + [anon_sym_o_GT] = ACTIONS(2158), + [anon_sym_err_PLUSout_GT] = ACTIONS(2158), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2158), + [anon_sym_o_PLUSe_GT] = ACTIONS(2158), + [anon_sym_e_PLUSo_GT] = ACTIONS(2158), + [anon_sym_err_GT_GT] = ACTIONS(2156), + [anon_sym_out_GT_GT] = ACTIONS(2156), + [anon_sym_e_GT_GT] = ACTIONS(2156), + [anon_sym_o_GT_GT] = ACTIONS(2156), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2156), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2156), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2156), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2156), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(714)] = { + [sym_comment] = STATE(714), + [ts_builtin_sym_end] = ACTIONS(1982), + [anon_sym_in] = ACTIONS(1982), + [sym__newline] = ACTIONS(1982), + [anon_sym_SEMI] = ACTIONS(1982), + [anon_sym_PIPE] = ACTIONS(1982), + [anon_sym_err_GT_PIPE] = ACTIONS(1982), + [anon_sym_out_GT_PIPE] = ACTIONS(1982), + [anon_sym_e_GT_PIPE] = ACTIONS(1982), + [anon_sym_o_GT_PIPE] = ACTIONS(1982), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1982), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1982), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1982), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1982), + [anon_sym_GT2] = ACTIONS(1984), + [anon_sym_DASH2] = ACTIONS(1982), + [anon_sym_STAR2] = ACTIONS(1984), + [anon_sym_and2] = ACTIONS(1982), + [anon_sym_xor2] = ACTIONS(1982), + [anon_sym_or2] = ACTIONS(1982), + [anon_sym_not_DASHin2] = ACTIONS(1982), + [anon_sym_has2] = ACTIONS(1982), + [anon_sym_not_DASHhas2] = ACTIONS(1982), + [anon_sym_starts_DASHwith2] = ACTIONS(1982), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1982), + [anon_sym_ends_DASHwith2] = ACTIONS(1982), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1982), + [anon_sym_EQ_EQ2] = ACTIONS(1982), + [anon_sym_BANG_EQ2] = ACTIONS(1982), + [anon_sym_LT2] = ACTIONS(1984), + [anon_sym_LT_EQ2] = ACTIONS(1982), + [anon_sym_GT_EQ2] = ACTIONS(1982), + [anon_sym_EQ_TILDE2] = ACTIONS(1982), + [anon_sym_BANG_TILDE2] = ACTIONS(1982), + [anon_sym_like2] = ACTIONS(1982), + [anon_sym_not_DASHlike2] = ACTIONS(1982), + [anon_sym_LPAREN2] = ACTIONS(1986), + [anon_sym_STAR_STAR2] = ACTIONS(1982), + [anon_sym_PLUS_PLUS2] = ACTIONS(1982), + [anon_sym_SLASH2] = ACTIONS(1984), + [anon_sym_mod2] = ACTIONS(1982), + [anon_sym_SLASH_SLASH2] = ACTIONS(1982), + [anon_sym_PLUS2] = ACTIONS(1984), + [anon_sym_bit_DASHshl2] = ACTIONS(1982), + [anon_sym_bit_DASHshr2] = ACTIONS(1982), + [anon_sym_bit_DASHand2] = ACTIONS(1982), + [anon_sym_bit_DASHxor2] = ACTIONS(1982), + [anon_sym_bit_DASHor2] = ACTIONS(1982), + [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(1984), + [anon_sym_out_GT] = ACTIONS(1984), + [anon_sym_e_GT] = ACTIONS(1984), + [anon_sym_o_GT] = ACTIONS(1984), + [anon_sym_err_PLUSout_GT] = ACTIONS(1984), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1984), + [anon_sym_o_PLUSe_GT] = ACTIONS(1984), + [anon_sym_e_PLUSo_GT] = ACTIONS(1984), + [anon_sym_err_GT_GT] = ACTIONS(1982), + [anon_sym_out_GT_GT] = ACTIONS(1982), + [anon_sym_e_GT_GT] = ACTIONS(1982), + [anon_sym_o_GT_GT] = ACTIONS(1982), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1982), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1982), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1982), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1982), + [sym__unquoted_pattern] = ACTIONS(1992), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(715)] = { + [sym_comment] = STATE(715), + [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_COLON] = ACTIONS(1545), + [anon_sym_GT2] = ACTIONS(1543), + [anon_sym_DASH2] = 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_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(716)] = { + [sym_comment] = STATE(716), + [anon_sym_if] = ACTIONS(2164), + [anon_sym_in] = ACTIONS(2164), + [sym__newline] = ACTIONS(2164), + [anon_sym_SEMI] = ACTIONS(2164), + [anon_sym_PIPE] = ACTIONS(2164), + [anon_sym_err_GT_PIPE] = ACTIONS(2164), + [anon_sym_out_GT_PIPE] = ACTIONS(2164), + [anon_sym_e_GT_PIPE] = ACTIONS(2164), + [anon_sym_o_GT_PIPE] = ACTIONS(2164), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2164), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2164), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2164), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2164), + [anon_sym_RPAREN] = ACTIONS(2164), + [anon_sym_GT2] = ACTIONS(2166), + [anon_sym_DASH2] = ACTIONS(2164), + [anon_sym_LBRACE] = ACTIONS(2164), + [anon_sym_RBRACE] = ACTIONS(2164), + [anon_sym_EQ_GT] = ACTIONS(2164), + [anon_sym_STAR2] = ACTIONS(2166), + [anon_sym_and2] = ACTIONS(2164), + [anon_sym_xor2] = ACTIONS(2164), + [anon_sym_or2] = ACTIONS(2164), + [anon_sym_not_DASHin2] = ACTIONS(2164), + [anon_sym_has2] = ACTIONS(2164), + [anon_sym_not_DASHhas2] = ACTIONS(2164), + [anon_sym_starts_DASHwith2] = ACTIONS(2164), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2164), + [anon_sym_ends_DASHwith2] = ACTIONS(2164), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2164), + [anon_sym_EQ_EQ2] = ACTIONS(2164), + [anon_sym_BANG_EQ2] = ACTIONS(2164), + [anon_sym_LT2] = ACTIONS(2166), + [anon_sym_LT_EQ2] = ACTIONS(2164), + [anon_sym_GT_EQ2] = ACTIONS(2164), + [anon_sym_EQ_TILDE2] = ACTIONS(2164), + [anon_sym_BANG_TILDE2] = ACTIONS(2164), + [anon_sym_like2] = ACTIONS(2164), + [anon_sym_not_DASHlike2] = ACTIONS(2164), + [anon_sym_STAR_STAR2] = ACTIONS(2164), + [anon_sym_PLUS_PLUS2] = ACTIONS(2164), + [anon_sym_SLASH2] = ACTIONS(2166), + [anon_sym_mod2] = ACTIONS(2164), + [anon_sym_SLASH_SLASH2] = ACTIONS(2164), + [anon_sym_PLUS2] = ACTIONS(2166), + [anon_sym_bit_DASHshl2] = ACTIONS(2164), + [anon_sym_bit_DASHshr2] = ACTIONS(2164), + [anon_sym_bit_DASHand2] = ACTIONS(2164), + [anon_sym_bit_DASHxor2] = ACTIONS(2164), + [anon_sym_bit_DASHor2] = ACTIONS(2164), + [anon_sym_LBRACK2] = ACTIONS(2168), + [anon_sym_err_GT] = ACTIONS(2166), + [anon_sym_out_GT] = ACTIONS(2166), + [anon_sym_e_GT] = ACTIONS(2166), + [anon_sym_o_GT] = ACTIONS(2166), + [anon_sym_err_PLUSout_GT] = ACTIONS(2166), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2166), + [anon_sym_o_PLUSe_GT] = ACTIONS(2166), + [anon_sym_e_PLUSo_GT] = ACTIONS(2166), + [anon_sym_err_GT_GT] = ACTIONS(2164), + [anon_sym_out_GT_GT] = ACTIONS(2164), + [anon_sym_e_GT_GT] = ACTIONS(2164), + [anon_sym_o_GT_GT] = ACTIONS(2164), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2164), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2164), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2164), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2164), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(717)] = { + [sym_comment] = STATE(717), [anon_sym_in] = ACTIONS(2170), [sym__newline] = ACTIONS(2170), [anon_sym_SEMI] = ACTIONS(2170), @@ -101724,7 +103289,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -101756,7 +103320,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(2170), [anon_sym_bit_DASHxor2] = ACTIONS(2170), [anon_sym_bit_DASHor2] = ACTIONS(2170), - [anon_sym_COLON2] = ACTIONS(2170), + [anon_sym_DOT_DOT2] = ACTIONS(2174), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2176), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2176), [anon_sym_err_GT] = ACTIONS(2172), [anon_sym_out_GT] = ACTIONS(2172), [anon_sym_e_GT] = ACTIONS(2172), @@ -101775,14434 +103341,10175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2170), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(708)] = { - [sym__expr_parenthesized_immediate] = STATE(4802), - [sym_comment] = STATE(708), - [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(1724), - [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(709)] = { - [sym__expr_parenthesized_immediate] = STATE(4802), - [sym_comment] = STATE(709), - [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(1724), - [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(710)] = { - [sym__expr_parenthesized_immediate] = STATE(4802), - [sym_comment] = STATE(710), - [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(1724), - [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(711)] = { - [sym__expr_parenthesized_immediate] = STATE(4802), - [sym_comment] = STATE(711), - [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(1724), - [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(712)] = { - [sym_comment] = STATE(712), - [ts_builtin_sym_end] = ACTIONS(1564), - [anon_sym_in] = ACTIONS(1564), - [sym__newline] = ACTIONS(1564), - [anon_sym_SEMI] = ACTIONS(1564), - [anon_sym_PIPE] = ACTIONS(1564), - [anon_sym_err_GT_PIPE] = ACTIONS(1564), - [anon_sym_out_GT_PIPE] = ACTIONS(1564), - [anon_sym_e_GT_PIPE] = ACTIONS(1564), - [anon_sym_o_GT_PIPE] = ACTIONS(1564), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1564), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1564), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1564), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1564), - [anon_sym_COLON] = ACTIONS(1564), - [anon_sym_GT2] = ACTIONS(1562), - [anon_sym_DASH2] = ACTIONS(1564), - [anon_sym_STAR2] = ACTIONS(1562), - [anon_sym_and2] = ACTIONS(1564), - [anon_sym_xor2] = ACTIONS(1564), - [anon_sym_or2] = ACTIONS(1564), - [anon_sym_not_DASHin2] = ACTIONS(1564), - [anon_sym_has2] = ACTIONS(1564), - [anon_sym_not_DASHhas2] = ACTIONS(1564), - [anon_sym_starts_DASHwith2] = ACTIONS(1564), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1564), - [anon_sym_ends_DASHwith2] = ACTIONS(1564), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1564), - [anon_sym_EQ_EQ2] = ACTIONS(1564), - [anon_sym_BANG_EQ2] = ACTIONS(1564), - [anon_sym_LT2] = ACTIONS(1562), - [anon_sym_LT_EQ2] = ACTIONS(1564), - [anon_sym_GT_EQ2] = ACTIONS(1564), - [anon_sym_EQ_TILDE2] = ACTIONS(1564), - [anon_sym_BANG_TILDE2] = ACTIONS(1564), - [anon_sym_like2] = ACTIONS(1564), - [anon_sym_not_DASHlike2] = ACTIONS(1564), - [anon_sym_STAR_STAR2] = ACTIONS(1564), - [anon_sym_PLUS_PLUS2] = ACTIONS(1564), - [anon_sym_SLASH2] = ACTIONS(1562), - [anon_sym_mod2] = ACTIONS(1564), - [anon_sym_SLASH_SLASH2] = ACTIONS(1564), - [anon_sym_PLUS2] = ACTIONS(1562), - [anon_sym_bit_DASHshl2] = ACTIONS(1564), - [anon_sym_bit_DASHshr2] = ACTIONS(1564), - [anon_sym_bit_DASHand2] = ACTIONS(1564), - [anon_sym_bit_DASHxor2] = ACTIONS(1564), - [anon_sym_bit_DASHor2] = ACTIONS(1564), - [anon_sym_DOT_DOT2] = ACTIONS(1562), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1564), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1564), - [anon_sym_DOT2] = ACTIONS(1562), - [anon_sym_err_GT] = ACTIONS(1562), - [anon_sym_out_GT] = ACTIONS(1562), - [anon_sym_e_GT] = ACTIONS(1562), - [anon_sym_o_GT] = ACTIONS(1562), - [anon_sym_err_PLUSout_GT] = ACTIONS(1562), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1562), - [anon_sym_o_PLUSe_GT] = ACTIONS(1562), - [anon_sym_e_PLUSo_GT] = ACTIONS(1562), - [anon_sym_err_GT_GT] = ACTIONS(1564), - [anon_sym_out_GT_GT] = ACTIONS(1564), - [anon_sym_e_GT_GT] = ACTIONS(1564), - [anon_sym_o_GT_GT] = ACTIONS(1564), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1564), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1564), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1564), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1564), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(713)] = { - [sym_comment] = STATE(713), - [anon_sym_in] = ACTIONS(1713), - [sym__newline] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1713), - [anon_sym_err_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_GT_PIPE] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), - [anon_sym_RPAREN] = ACTIONS(1713), - [anon_sym_GT2] = ACTIONS(1614), - [anon_sym_DASH2] = ACTIONS(1713), - [anon_sym_LBRACE] = ACTIONS(1713), - [anon_sym_RBRACE] = ACTIONS(1713), - [anon_sym_STAR2] = ACTIONS(1614), - [anon_sym_and2] = ACTIONS(1713), - [anon_sym_xor2] = ACTIONS(1713), - [anon_sym_or2] = ACTIONS(1713), - [anon_sym_not_DASHin2] = ACTIONS(1713), - [anon_sym_has2] = ACTIONS(1713), - [anon_sym_not_DASHhas2] = ACTIONS(1713), - [anon_sym_starts_DASHwith2] = ACTIONS(1713), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1713), - [anon_sym_ends_DASHwith2] = ACTIONS(1713), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1713), - [anon_sym_EQ_EQ2] = ACTIONS(1713), - [anon_sym_BANG_EQ2] = ACTIONS(1713), - [anon_sym_LT2] = ACTIONS(1614), - [anon_sym_LT_EQ2] = ACTIONS(1713), - [anon_sym_GT_EQ2] = ACTIONS(1713), - [anon_sym_EQ_TILDE2] = ACTIONS(1713), - [anon_sym_BANG_TILDE2] = ACTIONS(1713), - [anon_sym_like2] = ACTIONS(1713), - [anon_sym_not_DASHlike2] = ACTIONS(1713), - [anon_sym_STAR_STAR2] = ACTIONS(1713), - [anon_sym_PLUS_PLUS2] = ACTIONS(1713), - [anon_sym_SLASH2] = ACTIONS(1614), - [anon_sym_mod2] = ACTIONS(1713), - [anon_sym_SLASH_SLASH2] = ACTIONS(1713), - [anon_sym_PLUS2] = ACTIONS(1614), - [anon_sym_bit_DASHshl2] = ACTIONS(1713), - [anon_sym_bit_DASHshr2] = ACTIONS(1713), - [anon_sym_bit_DASHand2] = ACTIONS(1713), - [anon_sym_bit_DASHxor2] = ACTIONS(1713), - [anon_sym_bit_DASHor2] = ACTIONS(1713), - [anon_sym_DOT_DOT2] = ACTIONS(1618), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1620), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1620), - [anon_sym_err_GT] = ACTIONS(1614), - [anon_sym_out_GT] = ACTIONS(1614), - [anon_sym_e_GT] = ACTIONS(1614), - [anon_sym_o_GT] = ACTIONS(1614), - [anon_sym_err_PLUSout_GT] = ACTIONS(1614), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1614), - [anon_sym_o_PLUSe_GT] = ACTIONS(1614), - [anon_sym_e_PLUSo_GT] = ACTIONS(1614), - [anon_sym_err_GT_GT] = ACTIONS(1713), - [anon_sym_out_GT_GT] = ACTIONS(1713), - [anon_sym_e_GT_GT] = ACTIONS(1713), - [anon_sym_o_GT_GT] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(714)] = { - [sym__expr_parenthesized_immediate] = STATE(4802), - [sym_comment] = STATE(714), - [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(1724), - [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(715)] = { - [sym_comment] = STATE(715), - [anon_sym_if] = ACTIONS(2174), - [anon_sym_in] = ACTIONS(2174), - [sym__newline] = ACTIONS(2174), - [anon_sym_SEMI] = ACTIONS(2174), - [anon_sym_PIPE] = ACTIONS(2174), - [anon_sym_err_GT_PIPE] = ACTIONS(2174), - [anon_sym_out_GT_PIPE] = ACTIONS(2174), - [anon_sym_e_GT_PIPE] = ACTIONS(2174), - [anon_sym_o_GT_PIPE] = ACTIONS(2174), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2174), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2174), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2174), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2174), - [anon_sym_RPAREN] = ACTIONS(2174), - [anon_sym_GT2] = ACTIONS(2176), - [anon_sym_DASH2] = ACTIONS(2174), - [anon_sym_LBRACE] = ACTIONS(2174), - [anon_sym_RBRACE] = ACTIONS(2174), - [anon_sym_EQ_GT] = ACTIONS(2174), - [anon_sym_STAR2] = ACTIONS(2176), - [anon_sym_and2] = ACTIONS(2174), - [anon_sym_xor2] = ACTIONS(2174), - [anon_sym_or2] = ACTIONS(2174), - [anon_sym_not_DASHin2] = ACTIONS(2174), - [anon_sym_has2] = ACTIONS(2174), - [anon_sym_not_DASHhas2] = ACTIONS(2174), - [anon_sym_starts_DASHwith2] = ACTIONS(2174), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2174), - [anon_sym_ends_DASHwith2] = ACTIONS(2174), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2174), - [anon_sym_EQ_EQ2] = ACTIONS(2174), - [anon_sym_BANG_EQ2] = ACTIONS(2174), - [anon_sym_LT2] = ACTIONS(2176), - [anon_sym_LT_EQ2] = ACTIONS(2174), - [anon_sym_GT_EQ2] = ACTIONS(2174), - [anon_sym_EQ_TILDE2] = ACTIONS(2174), - [anon_sym_BANG_TILDE2] = ACTIONS(2174), - [anon_sym_like2] = ACTIONS(2174), - [anon_sym_not_DASHlike2] = ACTIONS(2174), - [anon_sym_LPAREN2] = ACTIONS(2174), - [anon_sym_STAR_STAR2] = ACTIONS(2174), - [anon_sym_PLUS_PLUS2] = ACTIONS(2174), - [anon_sym_SLASH2] = ACTIONS(2176), - [anon_sym_mod2] = ACTIONS(2174), - [anon_sym_SLASH_SLASH2] = ACTIONS(2174), - [anon_sym_PLUS2] = ACTIONS(2176), - [anon_sym_bit_DASHshl2] = ACTIONS(2174), - [anon_sym_bit_DASHshr2] = ACTIONS(2174), - [anon_sym_bit_DASHand2] = ACTIONS(2174), - [anon_sym_bit_DASHxor2] = ACTIONS(2174), - [anon_sym_bit_DASHor2] = ACTIONS(2174), - [anon_sym_err_GT] = ACTIONS(2176), - [anon_sym_out_GT] = ACTIONS(2176), - [anon_sym_e_GT] = ACTIONS(2176), - [anon_sym_o_GT] = ACTIONS(2176), - [anon_sym_err_PLUSout_GT] = ACTIONS(2176), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2176), - [anon_sym_o_PLUSe_GT] = ACTIONS(2176), - [anon_sym_e_PLUSo_GT] = ACTIONS(2176), - [anon_sym_err_GT_GT] = ACTIONS(2174), - [anon_sym_out_GT_GT] = ACTIONS(2174), - [anon_sym_e_GT_GT] = ACTIONS(2174), - [anon_sym_o_GT_GT] = ACTIONS(2174), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2174), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2174), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2174), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2174), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(716)] = { - [sym_comment] = STATE(716), - [ts_builtin_sym_end] = ACTIONS(1852), - [anon_sym_in] = ACTIONS(1852), - [sym__newline] = ACTIONS(1852), - [anon_sym_SEMI] = ACTIONS(1852), - [anon_sym_PIPE] = ACTIONS(1852), - [anon_sym_err_GT_PIPE] = ACTIONS(1852), - [anon_sym_out_GT_PIPE] = ACTIONS(1852), - [anon_sym_e_GT_PIPE] = ACTIONS(1852), - [anon_sym_o_GT_PIPE] = ACTIONS(1852), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1852), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1852), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1852), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1852), - [anon_sym_GT2] = ACTIONS(1854), - [anon_sym_DASH2] = ACTIONS(1852), - [anon_sym_STAR2] = ACTIONS(1854), - [anon_sym_and2] = ACTIONS(1852), - [anon_sym_xor2] = ACTIONS(1852), - [anon_sym_or2] = ACTIONS(1852), - [anon_sym_not_DASHin2] = ACTIONS(1852), - [anon_sym_has2] = ACTIONS(1852), - [anon_sym_not_DASHhas2] = ACTIONS(1852), - [anon_sym_starts_DASHwith2] = ACTIONS(1852), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1852), - [anon_sym_ends_DASHwith2] = ACTIONS(1852), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1852), - [anon_sym_EQ_EQ2] = ACTIONS(1852), - [anon_sym_BANG_EQ2] = ACTIONS(1852), - [anon_sym_LT2] = ACTIONS(1854), - [anon_sym_LT_EQ2] = ACTIONS(1852), - [anon_sym_GT_EQ2] = ACTIONS(1852), - [anon_sym_EQ_TILDE2] = ACTIONS(1852), - [anon_sym_BANG_TILDE2] = ACTIONS(1852), - [anon_sym_like2] = ACTIONS(1852), - [anon_sym_not_DASHlike2] = ACTIONS(1852), - [anon_sym_LPAREN2] = ACTIONS(1852), - [anon_sym_STAR_STAR2] = ACTIONS(1852), - [anon_sym_PLUS_PLUS2] = ACTIONS(1852), - [anon_sym_SLASH2] = ACTIONS(1854), - [anon_sym_mod2] = ACTIONS(1852), - [anon_sym_SLASH_SLASH2] = ACTIONS(1852), - [anon_sym_PLUS2] = ACTIONS(1854), - [anon_sym_bit_DASHshl2] = ACTIONS(1852), - [anon_sym_bit_DASHshr2] = ACTIONS(1852), - [anon_sym_bit_DASHand2] = ACTIONS(1852), - [anon_sym_bit_DASHxor2] = ACTIONS(1852), - [anon_sym_bit_DASHor2] = ACTIONS(1852), - [anon_sym_DOT_DOT2] = ACTIONS(1854), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1852), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1852), - [anon_sym_err_GT] = ACTIONS(1854), - [anon_sym_out_GT] = ACTIONS(1854), - [anon_sym_e_GT] = ACTIONS(1854), - [anon_sym_o_GT] = ACTIONS(1854), - [anon_sym_err_PLUSout_GT] = ACTIONS(1854), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1854), - [anon_sym_o_PLUSe_GT] = ACTIONS(1854), - [anon_sym_e_PLUSo_GT] = ACTIONS(1854), - [anon_sym_err_GT_GT] = ACTIONS(1852), - [anon_sym_out_GT_GT] = ACTIONS(1852), - [anon_sym_e_GT_GT] = ACTIONS(1852), - [anon_sym_o_GT_GT] = ACTIONS(1852), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1852), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1852), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1852), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1852), - [sym__unquoted_pattern] = ACTIONS(1854), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(717)] = { - [sym__expr_parenthesized_immediate] = STATE(5171), - [sym_comment] = STATE(717), - [anon_sym_in] = ACTIONS(2178), - [sym__newline] = ACTIONS(2178), - [anon_sym_SEMI] = ACTIONS(2178), - [anon_sym_PIPE] = ACTIONS(2178), - [anon_sym_err_GT_PIPE] = ACTIONS(2178), - [anon_sym_out_GT_PIPE] = ACTIONS(2178), - [anon_sym_e_GT_PIPE] = ACTIONS(2178), - [anon_sym_o_GT_PIPE] = ACTIONS(2178), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2178), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2178), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2178), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2178), - [anon_sym_RPAREN] = ACTIONS(2178), - [anon_sym_GT2] = ACTIONS(2180), - [anon_sym_DASH2] = ACTIONS(2178), - [anon_sym_LBRACE] = ACTIONS(2178), - [anon_sym_RBRACE] = ACTIONS(2178), - [anon_sym_EQ_GT] = ACTIONS(2178), - [anon_sym_STAR2] = ACTIONS(2180), - [anon_sym_and2] = ACTIONS(2178), - [anon_sym_xor2] = ACTIONS(2178), - [anon_sym_or2] = ACTIONS(2178), - [anon_sym_not_DASHin2] = ACTIONS(2178), - [anon_sym_has2] = ACTIONS(2178), - [anon_sym_not_DASHhas2] = ACTIONS(2178), - [anon_sym_starts_DASHwith2] = ACTIONS(2178), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2178), - [anon_sym_ends_DASHwith2] = ACTIONS(2178), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2178), - [anon_sym_EQ_EQ2] = ACTIONS(2178), - [anon_sym_BANG_EQ2] = ACTIONS(2178), - [anon_sym_LT2] = ACTIONS(2180), - [anon_sym_LT_EQ2] = ACTIONS(2178), - [anon_sym_GT_EQ2] = ACTIONS(2178), - [anon_sym_EQ_TILDE2] = ACTIONS(2178), - [anon_sym_BANG_TILDE2] = ACTIONS(2178), - [anon_sym_like2] = ACTIONS(2178), - [anon_sym_not_DASHlike2] = ACTIONS(2178), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_STAR_STAR2] = ACTIONS(2178), - [anon_sym_PLUS_PLUS2] = ACTIONS(2178), - [anon_sym_SLASH2] = ACTIONS(2180), - [anon_sym_mod2] = ACTIONS(2178), - [anon_sym_SLASH_SLASH2] = ACTIONS(2178), - [anon_sym_PLUS2] = ACTIONS(2180), - [anon_sym_bit_DASHshl2] = ACTIONS(2178), - [anon_sym_bit_DASHshr2] = ACTIONS(2178), - [anon_sym_bit_DASHand2] = ACTIONS(2178), - [anon_sym_bit_DASHxor2] = ACTIONS(2178), - [anon_sym_bit_DASHor2] = ACTIONS(2178), - [anon_sym_err_GT] = ACTIONS(2180), - [anon_sym_out_GT] = ACTIONS(2180), - [anon_sym_e_GT] = ACTIONS(2180), - [anon_sym_o_GT] = ACTIONS(2180), - [anon_sym_err_PLUSout_GT] = ACTIONS(2180), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2180), - [anon_sym_o_PLUSe_GT] = ACTIONS(2180), - [anon_sym_e_PLUSo_GT] = ACTIONS(2180), - [anon_sym_err_GT_GT] = ACTIONS(2178), - [anon_sym_out_GT_GT] = ACTIONS(2178), - [anon_sym_e_GT_GT] = ACTIONS(2178), - [anon_sym_o_GT_GT] = ACTIONS(2178), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2178), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2178), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2178), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2178), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(718)] = { [sym_comment] = STATE(718), - [ts_builtin_sym_end] = ACTIONS(1770), - [anon_sym_in] = ACTIONS(1770), - [sym__newline] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1770), - [anon_sym_PIPE] = ACTIONS(1770), - [anon_sym_err_GT_PIPE] = ACTIONS(1770), - [anon_sym_out_GT_PIPE] = ACTIONS(1770), - [anon_sym_e_GT_PIPE] = ACTIONS(1770), - [anon_sym_o_GT_PIPE] = ACTIONS(1770), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1770), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1770), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1770), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1770), - [anon_sym_GT2] = ACTIONS(1772), - [anon_sym_DASH2] = ACTIONS(1770), - [anon_sym_STAR2] = ACTIONS(1772), - [anon_sym_and2] = ACTIONS(1770), - [anon_sym_xor2] = ACTIONS(1770), - [anon_sym_or2] = ACTIONS(1770), - [anon_sym_not_DASHin2] = ACTIONS(1770), - [anon_sym_has2] = ACTIONS(1770), - [anon_sym_not_DASHhas2] = ACTIONS(1770), - [anon_sym_starts_DASHwith2] = ACTIONS(1770), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1770), - [anon_sym_ends_DASHwith2] = ACTIONS(1770), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1770), - [anon_sym_EQ_EQ2] = ACTIONS(1770), - [anon_sym_BANG_EQ2] = ACTIONS(1770), - [anon_sym_LT2] = ACTIONS(1772), - [anon_sym_LT_EQ2] = ACTIONS(1770), - [anon_sym_GT_EQ2] = ACTIONS(1770), - [anon_sym_EQ_TILDE2] = ACTIONS(1770), - [anon_sym_BANG_TILDE2] = ACTIONS(1770), - [anon_sym_like2] = ACTIONS(1770), - [anon_sym_not_DASHlike2] = ACTIONS(1770), - [anon_sym_LPAREN2] = ACTIONS(1770), - [anon_sym_STAR_STAR2] = ACTIONS(1770), - [anon_sym_PLUS_PLUS2] = ACTIONS(1770), - [anon_sym_SLASH2] = ACTIONS(1772), - [anon_sym_mod2] = ACTIONS(1770), - [anon_sym_SLASH_SLASH2] = ACTIONS(1770), - [anon_sym_PLUS2] = ACTIONS(1772), - [anon_sym_bit_DASHshl2] = ACTIONS(1770), - [anon_sym_bit_DASHshr2] = ACTIONS(1770), - [anon_sym_bit_DASHand2] = ACTIONS(1770), - [anon_sym_bit_DASHxor2] = ACTIONS(1770), - [anon_sym_bit_DASHor2] = ACTIONS(1770), - [anon_sym_DOT_DOT2] = ACTIONS(1772), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1770), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1770), - [anon_sym_err_GT] = ACTIONS(1772), - [anon_sym_out_GT] = ACTIONS(1772), - [anon_sym_e_GT] = ACTIONS(1772), - [anon_sym_o_GT] = ACTIONS(1772), - [anon_sym_err_PLUSout_GT] = ACTIONS(1772), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1772), - [anon_sym_o_PLUSe_GT] = ACTIONS(1772), - [anon_sym_e_PLUSo_GT] = ACTIONS(1772), - [anon_sym_err_GT_GT] = ACTIONS(1770), - [anon_sym_out_GT_GT] = ACTIONS(1770), - [anon_sym_e_GT_GT] = ACTIONS(1770), - [anon_sym_o_GT_GT] = ACTIONS(1770), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1770), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1770), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1770), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1770), - [sym__unquoted_pattern] = ACTIONS(1772), + [anon_sym_in] = ACTIONS(1972), + [sym__newline] = ACTIONS(1972), + [anon_sym_SEMI] = ACTIONS(1972), + [anon_sym_PIPE] = ACTIONS(1972), + [anon_sym_err_GT_PIPE] = ACTIONS(1972), + [anon_sym_out_GT_PIPE] = ACTIONS(1972), + [anon_sym_e_GT_PIPE] = ACTIONS(1972), + [anon_sym_o_GT_PIPE] = ACTIONS(1972), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1972), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1972), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1972), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1972), + [anon_sym_RPAREN] = ACTIONS(1972), + [anon_sym_GT2] = ACTIONS(1974), + [anon_sym_DASH2] = ACTIONS(1972), + [anon_sym_LBRACE] = ACTIONS(1972), + [anon_sym_RBRACE] = ACTIONS(1972), + [anon_sym_STAR2] = ACTIONS(1974), + [anon_sym_and2] = ACTIONS(1972), + [anon_sym_xor2] = ACTIONS(1972), + [anon_sym_or2] = ACTIONS(1972), + [anon_sym_not_DASHin2] = ACTIONS(1972), + [anon_sym_has2] = ACTIONS(1972), + [anon_sym_not_DASHhas2] = ACTIONS(1972), + [anon_sym_starts_DASHwith2] = ACTIONS(1972), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1972), + [anon_sym_ends_DASHwith2] = ACTIONS(1972), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1972), + [anon_sym_EQ_EQ2] = ACTIONS(1972), + [anon_sym_BANG_EQ2] = ACTIONS(1972), + [anon_sym_LT2] = ACTIONS(1974), + [anon_sym_LT_EQ2] = ACTIONS(1972), + [anon_sym_GT_EQ2] = ACTIONS(1972), + [anon_sym_EQ_TILDE2] = ACTIONS(1972), + [anon_sym_BANG_TILDE2] = ACTIONS(1972), + [anon_sym_like2] = ACTIONS(1972), + [anon_sym_not_DASHlike2] = ACTIONS(1972), + [anon_sym_STAR_STAR2] = ACTIONS(1972), + [anon_sym_PLUS_PLUS2] = ACTIONS(1972), + [anon_sym_SLASH2] = ACTIONS(1974), + [anon_sym_mod2] = ACTIONS(1972), + [anon_sym_SLASH_SLASH2] = ACTIONS(1972), + [anon_sym_PLUS2] = ACTIONS(1974), + [anon_sym_bit_DASHshl2] = ACTIONS(1972), + [anon_sym_bit_DASHshr2] = ACTIONS(1972), + [anon_sym_bit_DASHand2] = ACTIONS(1972), + [anon_sym_bit_DASHxor2] = ACTIONS(1972), + [anon_sym_bit_DASHor2] = ACTIONS(1972), + [anon_sym_DOT_DOT2] = ACTIONS(2178), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2180), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2180), + [anon_sym_err_GT] = ACTIONS(1974), + [anon_sym_out_GT] = ACTIONS(1974), + [anon_sym_e_GT] = ACTIONS(1974), + [anon_sym_o_GT] = ACTIONS(1974), + [anon_sym_err_PLUSout_GT] = ACTIONS(1974), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1974), + [anon_sym_o_PLUSe_GT] = ACTIONS(1974), + [anon_sym_e_PLUSo_GT] = ACTIONS(1974), + [anon_sym_err_GT_GT] = ACTIONS(1972), + [anon_sym_out_GT_GT] = ACTIONS(1972), + [anon_sym_e_GT_GT] = ACTIONS(1972), + [anon_sym_o_GT_GT] = ACTIONS(1972), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1972), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1972), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1972), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1972), [anon_sym_POUND] = ACTIONS(3), }, [STATE(719)] = { + [sym_cmd_identifier] = STATE(4519), + [sym_expr_parenthesized] = STATE(5494), + [sym__spread_parenthesized] = STATE(5018), + [sym__spread_variable] = STATE(5020), + [sym_val_variable] = STATE(5494), + [sym_val_number] = STATE(5494), + [sym__val_number_decimal] = STATE(1998), + [sym__val_number] = STATE(710), + [sym_val_string] = STATE(5494), + [sym__raw_str] = STATE(2274), + [sym__str_double_quotes] = STATE(2274), + [sym__str_single_quotes] = STATE(2274), + [sym__str_back_ticks] = STATE(2274), + [sym_val_interpolated] = STATE(5494), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym__spread_record] = STATE(5018), + [sym_record_entry] = STATE(4892), + [sym__record_key] = STATE(5156), [sym_comment] = STATE(719), - [ts_builtin_sym_end] = 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(1448), - [anon_sym_DASH2] = ACTIONS(1450), - [anon_sym_STAR2] = ACTIONS(1448), - [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(1448), - [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(1448), - [anon_sym_mod2] = ACTIONS(1450), - [anon_sym_SLASH_SLASH2] = ACTIONS(1450), - [anon_sym_PLUS2] = ACTIONS(1448), - [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(1448), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1450), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1450), - [anon_sym_BANG] = ACTIONS(2182), - [anon_sym_DOT2] = ACTIONS(1448), - [anon_sym_err_GT] = ACTIONS(1448), - [anon_sym_out_GT] = ACTIONS(1448), - [anon_sym_e_GT] = ACTIONS(1448), - [anon_sym_o_GT] = ACTIONS(1448), - [anon_sym_err_PLUSout_GT] = ACTIONS(1448), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1448), - [anon_sym_o_PLUSe_GT] = ACTIONS(1448), - [anon_sym_e_PLUSo_GT] = ACTIONS(1448), - [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), + [aux_sym_record_body_repeat1] = STATE(725), + [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_finally] = ACTIONS(137), + [anon_sym_match] = ACTIONS(137), + [anon_sym_in] = ACTIONS(143), + [anon_sym_true] = ACTIONS(1754), + [anon_sym_false] = ACTIONS(1754), + [anon_sym_null] = ACTIONS(1754), + [aux_sym_cmd_identifier_token3] = ACTIONS(1756), + [aux_sym_cmd_identifier_token4] = ACTIONS(1756), + [aux_sym_cmd_identifier_token5] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1760), + [anon_sym_DOLLAR] = ACTIONS(1762), + [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(1766), + [aux_sym__val_number_decimal_token2] = ACTIONS(1768), + [aux_sym__val_number_decimal_token3] = ACTIONS(1770), + [aux_sym__val_number_decimal_token4] = ACTIONS(1770), + [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(1772), + [anon_sym_SQUOTE] = ACTIONS(1774), + [anon_sym_BQUOTE] = ACTIONS(1776), + [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(1778), }, [STATE(720)] = { [sym_comment] = STATE(720), - [ts_builtin_sym_end] = ACTIONS(1549), - [anon_sym_in] = ACTIONS(1549), - [sym__newline] = ACTIONS(1549), - [anon_sym_SEMI] = ACTIONS(1549), - [anon_sym_PIPE] = ACTIONS(1549), - [anon_sym_err_GT_PIPE] = ACTIONS(1549), - [anon_sym_out_GT_PIPE] = ACTIONS(1549), - [anon_sym_e_GT_PIPE] = ACTIONS(1549), - [anon_sym_o_GT_PIPE] = ACTIONS(1549), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1549), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1549), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1549), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1549), - [anon_sym_COLON] = ACTIONS(1549), - [anon_sym_GT2] = ACTIONS(1547), - [anon_sym_DASH2] = ACTIONS(1549), - [anon_sym_STAR2] = ACTIONS(1547), - [anon_sym_and2] = ACTIONS(1549), - [anon_sym_xor2] = ACTIONS(1549), - [anon_sym_or2] = ACTIONS(1549), - [anon_sym_not_DASHin2] = ACTIONS(1549), - [anon_sym_has2] = ACTIONS(1549), - [anon_sym_not_DASHhas2] = ACTIONS(1549), - [anon_sym_starts_DASHwith2] = ACTIONS(1549), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1549), - [anon_sym_ends_DASHwith2] = ACTIONS(1549), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1549), - [anon_sym_EQ_EQ2] = ACTIONS(1549), - [anon_sym_BANG_EQ2] = ACTIONS(1549), - [anon_sym_LT2] = ACTIONS(1547), - [anon_sym_LT_EQ2] = ACTIONS(1549), - [anon_sym_GT_EQ2] = ACTIONS(1549), - [anon_sym_EQ_TILDE2] = ACTIONS(1549), - [anon_sym_BANG_TILDE2] = ACTIONS(1549), - [anon_sym_like2] = ACTIONS(1549), - [anon_sym_not_DASHlike2] = ACTIONS(1549), - [anon_sym_STAR_STAR2] = ACTIONS(1549), - [anon_sym_PLUS_PLUS2] = ACTIONS(1549), - [anon_sym_SLASH2] = ACTIONS(1547), - [anon_sym_mod2] = ACTIONS(1549), - [anon_sym_SLASH_SLASH2] = ACTIONS(1549), - [anon_sym_PLUS2] = ACTIONS(1547), - [anon_sym_bit_DASHshl2] = ACTIONS(1549), - [anon_sym_bit_DASHshr2] = ACTIONS(1549), - [anon_sym_bit_DASHand2] = ACTIONS(1549), - [anon_sym_bit_DASHxor2] = ACTIONS(1549), - [anon_sym_bit_DASHor2] = ACTIONS(1549), - [anon_sym_DOT_DOT2] = ACTIONS(1547), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1549), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1549), - [anon_sym_DOT2] = ACTIONS(1547), - [anon_sym_err_GT] = ACTIONS(1547), - [anon_sym_out_GT] = ACTIONS(1547), - [anon_sym_e_GT] = ACTIONS(1547), - [anon_sym_o_GT] = ACTIONS(1547), - [anon_sym_err_PLUSout_GT] = ACTIONS(1547), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1547), - [anon_sym_o_PLUSe_GT] = ACTIONS(1547), - [anon_sym_e_PLUSo_GT] = ACTIONS(1547), - [anon_sym_err_GT_GT] = ACTIONS(1549), - [anon_sym_out_GT_GT] = ACTIONS(1549), - [anon_sym_e_GT_GT] = ACTIONS(1549), - [anon_sym_o_GT_GT] = ACTIONS(1549), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1549), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1549), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1549), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1549), + [ts_builtin_sym_end] = ACTIONS(1895), + [anon_sym_in] = ACTIONS(1895), + [sym__newline] = ACTIONS(1895), + [anon_sym_SEMI] = ACTIONS(1895), + [anon_sym_PIPE] = ACTIONS(1895), + [anon_sym_err_GT_PIPE] = ACTIONS(1895), + [anon_sym_out_GT_PIPE] = ACTIONS(1895), + [anon_sym_e_GT_PIPE] = ACTIONS(1895), + [anon_sym_o_GT_PIPE] = ACTIONS(1895), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1895), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1895), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1895), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1895), + [anon_sym_GT2] = ACTIONS(1897), + [anon_sym_DASH2] = ACTIONS(1895), + [anon_sym_STAR2] = ACTIONS(1897), + [anon_sym_and2] = ACTIONS(1895), + [anon_sym_xor2] = ACTIONS(1895), + [anon_sym_or2] = ACTIONS(1895), + [anon_sym_not_DASHin2] = ACTIONS(1895), + [anon_sym_has2] = ACTIONS(1895), + [anon_sym_not_DASHhas2] = ACTIONS(1895), + [anon_sym_starts_DASHwith2] = ACTIONS(1895), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1895), + [anon_sym_ends_DASHwith2] = ACTIONS(1895), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1895), + [anon_sym_EQ_EQ2] = ACTIONS(1895), + [anon_sym_BANG_EQ2] = ACTIONS(1895), + [anon_sym_LT2] = ACTIONS(1897), + [anon_sym_LT_EQ2] = ACTIONS(1895), + [anon_sym_GT_EQ2] = ACTIONS(1895), + [anon_sym_EQ_TILDE2] = ACTIONS(1895), + [anon_sym_BANG_TILDE2] = ACTIONS(1895), + [anon_sym_like2] = ACTIONS(1895), + [anon_sym_not_DASHlike2] = ACTIONS(1895), + [anon_sym_LPAREN2] = ACTIONS(1895), + [anon_sym_STAR_STAR2] = ACTIONS(1895), + [anon_sym_PLUS_PLUS2] = ACTIONS(1895), + [anon_sym_SLASH2] = ACTIONS(1897), + [anon_sym_mod2] = ACTIONS(1895), + [anon_sym_SLASH_SLASH2] = ACTIONS(1895), + [anon_sym_PLUS2] = ACTIONS(1897), + [anon_sym_bit_DASHshl2] = ACTIONS(1895), + [anon_sym_bit_DASHshr2] = ACTIONS(1895), + [anon_sym_bit_DASHand2] = ACTIONS(1895), + [anon_sym_bit_DASHxor2] = ACTIONS(1895), + [anon_sym_bit_DASHor2] = ACTIONS(1895), + [anon_sym_DOT_DOT2] = ACTIONS(1897), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1895), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1895), + [anon_sym_err_GT] = ACTIONS(1897), + [anon_sym_out_GT] = ACTIONS(1897), + [anon_sym_e_GT] = ACTIONS(1897), + [anon_sym_o_GT] = ACTIONS(1897), + [anon_sym_err_PLUSout_GT] = ACTIONS(1897), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1897), + [anon_sym_o_PLUSe_GT] = ACTIONS(1897), + [anon_sym_e_PLUSo_GT] = ACTIONS(1897), + [anon_sym_err_GT_GT] = ACTIONS(1895), + [anon_sym_out_GT_GT] = ACTIONS(1895), + [anon_sym_e_GT_GT] = ACTIONS(1895), + [anon_sym_o_GT_GT] = ACTIONS(1895), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1895), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1895), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1895), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1895), + [sym__unquoted_pattern] = ACTIONS(1897), [anon_sym_POUND] = ACTIONS(3), }, [STATE(721)] = { - [sym__expr_parenthesized_immediate] = STATE(5171), + [sym_cmd_identifier] = STATE(4519), + [sym_expr_parenthesized] = STATE(5494), + [sym__spread_parenthesized] = STATE(5018), + [sym__spread_variable] = STATE(5020), + [sym_val_variable] = STATE(5494), + [sym_val_number] = STATE(5494), + [sym__val_number_decimal] = STATE(1998), + [sym__val_number] = STATE(710), + [sym_val_string] = STATE(5494), + [sym__raw_str] = STATE(2274), + [sym__str_double_quotes] = STATE(2274), + [sym__str_single_quotes] = STATE(2274), + [sym__str_back_ticks] = STATE(2274), + [sym_val_interpolated] = STATE(5494), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym__spread_record] = STATE(5018), + [sym_record_entry] = STATE(4820), + [sym__record_key] = STATE(5156), [sym_comment] = STATE(721), - [anon_sym_in] = ACTIONS(2184), - [sym__newline] = ACTIONS(2184), - [anon_sym_SEMI] = ACTIONS(2184), - [anon_sym_PIPE] = ACTIONS(2184), - [anon_sym_err_GT_PIPE] = ACTIONS(2184), - [anon_sym_out_GT_PIPE] = ACTIONS(2184), - [anon_sym_e_GT_PIPE] = ACTIONS(2184), - [anon_sym_o_GT_PIPE] = ACTIONS(2184), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2184), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2184), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2184), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2184), - [anon_sym_RPAREN] = ACTIONS(2184), - [anon_sym_GT2] = ACTIONS(2186), - [anon_sym_DASH2] = ACTIONS(2184), - [anon_sym_LBRACE] = ACTIONS(2184), - [anon_sym_RBRACE] = ACTIONS(2184), - [anon_sym_EQ_GT] = ACTIONS(2184), - [anon_sym_STAR2] = ACTIONS(2186), - [anon_sym_and2] = ACTIONS(2184), - [anon_sym_xor2] = ACTIONS(2184), - [anon_sym_or2] = ACTIONS(2184), - [anon_sym_not_DASHin2] = ACTIONS(2184), - [anon_sym_has2] = ACTIONS(2184), - [anon_sym_not_DASHhas2] = ACTIONS(2184), - [anon_sym_starts_DASHwith2] = ACTIONS(2184), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2184), - [anon_sym_ends_DASHwith2] = ACTIONS(2184), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2184), - [anon_sym_EQ_EQ2] = ACTIONS(2184), - [anon_sym_BANG_EQ2] = ACTIONS(2184), - [anon_sym_LT2] = ACTIONS(2186), - [anon_sym_LT_EQ2] = ACTIONS(2184), - [anon_sym_GT_EQ2] = ACTIONS(2184), - [anon_sym_EQ_TILDE2] = ACTIONS(2184), - [anon_sym_BANG_TILDE2] = ACTIONS(2184), - [anon_sym_like2] = ACTIONS(2184), - [anon_sym_not_DASHlike2] = ACTIONS(2184), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_STAR_STAR2] = ACTIONS(2184), - [anon_sym_PLUS_PLUS2] = ACTIONS(2184), - [anon_sym_SLASH2] = ACTIONS(2186), - [anon_sym_mod2] = ACTIONS(2184), - [anon_sym_SLASH_SLASH2] = ACTIONS(2184), - [anon_sym_PLUS2] = ACTIONS(2186), - [anon_sym_bit_DASHshl2] = ACTIONS(2184), - [anon_sym_bit_DASHshr2] = ACTIONS(2184), - [anon_sym_bit_DASHand2] = ACTIONS(2184), - [anon_sym_bit_DASHxor2] = ACTIONS(2184), - [anon_sym_bit_DASHor2] = ACTIONS(2184), - [anon_sym_err_GT] = ACTIONS(2186), - [anon_sym_out_GT] = ACTIONS(2186), - [anon_sym_e_GT] = ACTIONS(2186), - [anon_sym_o_GT] = ACTIONS(2186), - [anon_sym_err_PLUSout_GT] = ACTIONS(2186), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2186), - [anon_sym_o_PLUSe_GT] = ACTIONS(2186), - [anon_sym_e_PLUSo_GT] = ACTIONS(2186), - [anon_sym_err_GT_GT] = ACTIONS(2184), - [anon_sym_out_GT_GT] = ACTIONS(2184), - [anon_sym_e_GT_GT] = ACTIONS(2184), - [anon_sym_o_GT_GT] = ACTIONS(2184), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2184), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2184), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2184), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2184), + [aux_sym_record_body_repeat1] = STATE(725), + [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_finally] = ACTIONS(137), + [anon_sym_match] = ACTIONS(137), + [anon_sym_in] = ACTIONS(143), + [anon_sym_true] = ACTIONS(1754), + [anon_sym_false] = ACTIONS(1754), + [anon_sym_null] = ACTIONS(1754), + [aux_sym_cmd_identifier_token3] = ACTIONS(1756), + [aux_sym_cmd_identifier_token4] = ACTIONS(1756), + [aux_sym_cmd_identifier_token5] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1760), + [anon_sym_DOLLAR] = ACTIONS(1762), + [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(1766), + [aux_sym__val_number_decimal_token2] = ACTIONS(1768), + [aux_sym__val_number_decimal_token3] = ACTIONS(1770), + [aux_sym__val_number_decimal_token4] = ACTIONS(1770), + [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(1772), + [anon_sym_SQUOTE] = ACTIONS(1774), + [anon_sym_BQUOTE] = ACTIONS(1776), + [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(1778), }, [STATE(722)] = { - [sym__expr_parenthesized_immediate] = STATE(5171), + [sym_cmd_identifier] = STATE(4519), + [sym_expr_parenthesized] = STATE(5494), + [sym__spread_parenthesized] = STATE(5018), + [sym__spread_variable] = STATE(5020), + [sym_val_variable] = STATE(4629), + [sym_val_number] = STATE(5494), + [sym__val_number_decimal] = STATE(1998), + [sym__val_number] = STATE(710), + [sym_val_string] = STATE(5494), + [sym__raw_str] = STATE(2274), + [sym__str_double_quotes] = STATE(2274), + [sym__str_single_quotes] = STATE(2274), + [sym__str_back_ticks] = STATE(2274), + [sym_val_interpolated] = STATE(5494), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym__spread_record] = STATE(5018), + [sym_record_entry] = STATE(4867), + [sym__record_key] = STATE(5156), [sym_comment] = STATE(722), - [anon_sym_in] = ACTIONS(2188), - [sym__newline] = ACTIONS(2188), - [anon_sym_SEMI] = ACTIONS(2188), - [anon_sym_PIPE] = ACTIONS(2188), - [anon_sym_err_GT_PIPE] = ACTIONS(2188), - [anon_sym_out_GT_PIPE] = ACTIONS(2188), - [anon_sym_e_GT_PIPE] = ACTIONS(2188), - [anon_sym_o_GT_PIPE] = ACTIONS(2188), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2188), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2188), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2188), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2188), - [anon_sym_RPAREN] = ACTIONS(2188), - [anon_sym_GT2] = ACTIONS(2190), - [anon_sym_DASH2] = ACTIONS(2188), - [anon_sym_LBRACE] = ACTIONS(2188), - [anon_sym_RBRACE] = ACTIONS(2188), - [anon_sym_EQ_GT] = ACTIONS(2188), - [anon_sym_STAR2] = ACTIONS(2190), - [anon_sym_and2] = ACTIONS(2188), - [anon_sym_xor2] = ACTIONS(2188), - [anon_sym_or2] = ACTIONS(2188), - [anon_sym_not_DASHin2] = ACTIONS(2188), - [anon_sym_has2] = ACTIONS(2188), - [anon_sym_not_DASHhas2] = ACTIONS(2188), - [anon_sym_starts_DASHwith2] = ACTIONS(2188), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2188), - [anon_sym_ends_DASHwith2] = ACTIONS(2188), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2188), - [anon_sym_EQ_EQ2] = ACTIONS(2188), - [anon_sym_BANG_EQ2] = ACTIONS(2188), - [anon_sym_LT2] = ACTIONS(2190), - [anon_sym_LT_EQ2] = ACTIONS(2188), - [anon_sym_GT_EQ2] = ACTIONS(2188), - [anon_sym_EQ_TILDE2] = ACTIONS(2188), - [anon_sym_BANG_TILDE2] = ACTIONS(2188), - [anon_sym_like2] = ACTIONS(2188), - [anon_sym_not_DASHlike2] = ACTIONS(2188), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_STAR_STAR2] = ACTIONS(2188), - [anon_sym_PLUS_PLUS2] = ACTIONS(2188), - [anon_sym_SLASH2] = ACTIONS(2190), - [anon_sym_mod2] = ACTIONS(2188), - [anon_sym_SLASH_SLASH2] = ACTIONS(2188), - [anon_sym_PLUS2] = ACTIONS(2190), - [anon_sym_bit_DASHshl2] = ACTIONS(2188), - [anon_sym_bit_DASHshr2] = ACTIONS(2188), - [anon_sym_bit_DASHand2] = ACTIONS(2188), - [anon_sym_bit_DASHxor2] = ACTIONS(2188), - [anon_sym_bit_DASHor2] = ACTIONS(2188), - [anon_sym_err_GT] = ACTIONS(2190), - [anon_sym_out_GT] = ACTIONS(2190), - [anon_sym_e_GT] = ACTIONS(2190), - [anon_sym_o_GT] = ACTIONS(2190), - [anon_sym_err_PLUSout_GT] = ACTIONS(2190), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2190), - [anon_sym_o_PLUSe_GT] = ACTIONS(2190), - [anon_sym_e_PLUSo_GT] = ACTIONS(2190), - [anon_sym_err_GT_GT] = ACTIONS(2188), - [anon_sym_out_GT_GT] = ACTIONS(2188), - [anon_sym_e_GT_GT] = ACTIONS(2188), - [anon_sym_o_GT_GT] = ACTIONS(2188), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2188), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2188), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2188), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2188), + [aux_sym__match_pattern_record_body_repeat1] = STATE(723), + [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_finally] = ACTIONS(137), + [anon_sym_match] = ACTIONS(137), + [anon_sym_in] = ACTIONS(143), + [anon_sym_true] = ACTIONS(1754), + [anon_sym_false] = ACTIONS(1754), + [anon_sym_null] = ACTIONS(1754), + [aux_sym_cmd_identifier_token3] = ACTIONS(1756), + [aux_sym_cmd_identifier_token4] = ACTIONS(1756), + [aux_sym_cmd_identifier_token5] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1760), + [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(1766), + [aux_sym__val_number_decimal_token2] = ACTIONS(1768), + [aux_sym__val_number_decimal_token3] = ACTIONS(1770), + [aux_sym__val_number_decimal_token4] = ACTIONS(1770), + [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(1772), + [anon_sym_SQUOTE] = ACTIONS(1774), + [anon_sym_BQUOTE] = ACTIONS(1776), + [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(1778), }, [STATE(723)] = { + [sym_cmd_identifier] = STATE(4519), + [sym_expr_parenthesized] = STATE(5494), + [sym__spread_parenthesized] = STATE(5018), + [sym__spread_variable] = STATE(5020), + [sym_val_variable] = STATE(4873), + [sym_val_number] = STATE(5494), + [sym__val_number_decimal] = STATE(1998), + [sym__val_number] = STATE(710), + [sym_val_string] = STATE(5494), + [sym__raw_str] = STATE(2274), + [sym__str_double_quotes] = STATE(2274), + [sym__str_single_quotes] = STATE(2274), + [sym__str_back_ticks] = STATE(2274), + [sym_val_interpolated] = STATE(5494), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym__spread_record] = STATE(5018), + [sym_record_entry] = STATE(5053), + [sym__record_key] = STATE(5156), [sym_comment] = STATE(723), - [anon_sym_in] = ACTIONS(1956), - [sym__newline] = ACTIONS(1956), - [anon_sym_SEMI] = ACTIONS(1956), - [anon_sym_PIPE] = ACTIONS(1956), - [anon_sym_err_GT_PIPE] = ACTIONS(1956), - [anon_sym_out_GT_PIPE] = ACTIONS(1956), - [anon_sym_e_GT_PIPE] = ACTIONS(1956), - [anon_sym_o_GT_PIPE] = ACTIONS(1956), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1956), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1956), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1956), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1956), - [anon_sym_RPAREN] = ACTIONS(1956), - [anon_sym_GT2] = ACTIONS(1958), - [anon_sym_DASH2] = ACTIONS(1956), - [anon_sym_LBRACE] = ACTIONS(1956), - [anon_sym_RBRACE] = ACTIONS(1956), - [anon_sym_STAR2] = ACTIONS(1958), - [anon_sym_and2] = ACTIONS(1956), - [anon_sym_xor2] = ACTIONS(1956), - [anon_sym_or2] = ACTIONS(1956), - [anon_sym_not_DASHin2] = ACTIONS(1956), - [anon_sym_has2] = ACTIONS(1956), - [anon_sym_not_DASHhas2] = ACTIONS(1956), - [anon_sym_starts_DASHwith2] = ACTIONS(1956), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1956), - [anon_sym_ends_DASHwith2] = ACTIONS(1956), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1956), - [anon_sym_EQ_EQ2] = ACTIONS(1956), - [anon_sym_BANG_EQ2] = ACTIONS(1956), - [anon_sym_LT2] = ACTIONS(1958), - [anon_sym_LT_EQ2] = ACTIONS(1956), - [anon_sym_GT_EQ2] = ACTIONS(1956), - [anon_sym_EQ_TILDE2] = ACTIONS(1956), - [anon_sym_BANG_TILDE2] = ACTIONS(1956), - [anon_sym_like2] = ACTIONS(1956), - [anon_sym_not_DASHlike2] = ACTIONS(1956), - [anon_sym_STAR_STAR2] = ACTIONS(1956), - [anon_sym_PLUS_PLUS2] = ACTIONS(1956), - [anon_sym_SLASH2] = ACTIONS(1958), - [anon_sym_mod2] = ACTIONS(1956), - [anon_sym_SLASH_SLASH2] = ACTIONS(1956), - [anon_sym_PLUS2] = ACTIONS(1958), - [anon_sym_bit_DASHshl2] = ACTIONS(1956), - [anon_sym_bit_DASHshr2] = ACTIONS(1956), - [anon_sym_bit_DASHand2] = ACTIONS(1956), - [anon_sym_bit_DASHxor2] = ACTIONS(1956), - [anon_sym_bit_DASHor2] = ACTIONS(1956), - [anon_sym_DOT_DOT2] = ACTIONS(2192), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2194), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2194), - [anon_sym_err_GT] = ACTIONS(1958), - [anon_sym_out_GT] = ACTIONS(1958), - [anon_sym_e_GT] = ACTIONS(1958), - [anon_sym_o_GT] = ACTIONS(1958), - [anon_sym_err_PLUSout_GT] = ACTIONS(1958), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1958), - [anon_sym_o_PLUSe_GT] = ACTIONS(1958), - [anon_sym_e_PLUSo_GT] = ACTIONS(1958), - [anon_sym_err_GT_GT] = ACTIONS(1956), - [anon_sym_out_GT_GT] = ACTIONS(1956), - [anon_sym_e_GT_GT] = ACTIONS(1956), - [anon_sym_o_GT_GT] = ACTIONS(1956), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1956), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1956), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1956), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1956), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym__match_pattern_record_body_repeat1] = STATE(723), + [anon_sym_export] = ACTIONS(2182), + [anon_sym_alias] = ACTIONS(2185), + [anon_sym_let] = ACTIONS(2185), + [anon_sym_mut] = ACTIONS(2185), + [anon_sym_const] = ACTIONS(2185), + [aux_sym_cmd_identifier_token1] = ACTIONS(2188), + [anon_sym_def] = ACTIONS(2185), + [anon_sym_use] = ACTIONS(2185), + [anon_sym_export_DASHenv] = ACTIONS(2185), + [anon_sym_extern] = ACTIONS(2185), + [anon_sym_module] = ACTIONS(2185), + [anon_sym_for] = ACTIONS(2185), + [anon_sym_loop] = ACTIONS(2185), + [anon_sym_while] = ACTIONS(2185), + [anon_sym_if] = ACTIONS(2185), + [anon_sym_else] = ACTIONS(2185), + [anon_sym_try] = ACTIONS(2185), + [anon_sym_catch] = ACTIONS(2185), + [anon_sym_finally] = ACTIONS(2185), + [anon_sym_match] = ACTIONS(2185), + [anon_sym_in] = ACTIONS(2182), + [anon_sym_true] = ACTIONS(2191), + [anon_sym_false] = ACTIONS(2191), + [anon_sym_null] = ACTIONS(2191), + [aux_sym_cmd_identifier_token3] = ACTIONS(2194), + [aux_sym_cmd_identifier_token4] = ACTIONS(2194), + [aux_sym_cmd_identifier_token5] = ACTIONS(2194), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_DOLLAR] = ACTIONS(2200), + [anon_sym_DASH2] = ACTIONS(2203), + [anon_sym_PLUS2] = ACTIONS(2203), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2209), + [aux_sym__val_number_decimal_token1] = ACTIONS(2212), + [aux_sym__val_number_decimal_token2] = ACTIONS(2215), + [aux_sym__val_number_decimal_token3] = ACTIONS(2218), + [aux_sym__val_number_decimal_token4] = ACTIONS(2218), + [aux_sym__val_number_token1] = ACTIONS(2221), + [aux_sym__val_number_token2] = ACTIONS(2221), + [aux_sym__val_number_token3] = ACTIONS(2221), + [anon_sym_DQUOTE] = ACTIONS(2224), + [anon_sym_SQUOTE] = ACTIONS(2227), + [anon_sym_BQUOTE] = ACTIONS(2230), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2233), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2236), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2239), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2242), }, [STATE(724)] = { - [sym_expr_unary] = STATE(936), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(936), - [sym__expr_binary_expression] = STATE(1156), - [sym_expr_parenthesized] = STATE(703), - [sym_val_range] = STATE(936), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(936), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(942), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(438), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(684), - [sym__unquoted_with_expr] = STATE(926), - [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(724), - [anon_sym_true] = ACTIONS(1938), - [anon_sym_false] = ACTIONS(1938), - [anon_sym_null] = ACTIONS(1940), - [aux_sym_cmd_identifier_token3] = ACTIONS(1942), - [aux_sym_cmd_identifier_token4] = ACTIONS(1942), - [aux_sym_cmd_identifier_token5] = ACTIONS(1942), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1944), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), - [anon_sym_DOT_DOT_LT] = ACTIONS(1946), - [aux_sym__val_number_decimal_token1] = ACTIONS(1948), - [aux_sym__val_number_decimal_token2] = ACTIONS(1950), - [aux_sym__val_number_decimal_token3] = ACTIONS(1952), - [aux_sym__val_number_decimal_token4] = ACTIONS(1952), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1954), - [anon_sym_DQUOTE] = 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(1936), + [anon_sym_in] = ACTIONS(2132), + [sym__newline] = ACTIONS(2245), + [anon_sym_SEMI] = ACTIONS(2245), + [anon_sym_PIPE] = ACTIONS(2245), + [anon_sym_err_GT_PIPE] = ACTIONS(2245), + [anon_sym_out_GT_PIPE] = ACTIONS(2245), + [anon_sym_e_GT_PIPE] = ACTIONS(2245), + [anon_sym_o_GT_PIPE] = ACTIONS(2245), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2245), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2245), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2245), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2245), + [anon_sym_RPAREN] = ACTIONS(2245), + [anon_sym_GT2] = ACTIONS(2134), + [anon_sym_DASH2] = ACTIONS(2132), + [anon_sym_LBRACE] = ACTIONS(2245), + [anon_sym_RBRACE] = ACTIONS(2245), + [anon_sym_STAR2] = ACTIONS(2134), + [anon_sym_and2] = ACTIONS(2132), + [anon_sym_xor2] = ACTIONS(2132), + [anon_sym_or2] = ACTIONS(2132), + [anon_sym_not_DASHin2] = ACTIONS(2132), + [anon_sym_has2] = ACTIONS(2132), + [anon_sym_not_DASHhas2] = ACTIONS(2132), + [anon_sym_starts_DASHwith2] = ACTIONS(2132), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2132), + [anon_sym_ends_DASHwith2] = ACTIONS(2132), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2132), + [anon_sym_EQ_EQ2] = ACTIONS(2132), + [anon_sym_BANG_EQ2] = ACTIONS(2132), + [anon_sym_LT2] = ACTIONS(2134), + [anon_sym_LT_EQ2] = ACTIONS(2132), + [anon_sym_GT_EQ2] = ACTIONS(2132), + [anon_sym_EQ_TILDE2] = ACTIONS(2132), + [anon_sym_BANG_TILDE2] = ACTIONS(2132), + [anon_sym_like2] = ACTIONS(2132), + [anon_sym_not_DASHlike2] = ACTIONS(2132), + [anon_sym_STAR_STAR2] = ACTIONS(2132), + [anon_sym_PLUS_PLUS2] = ACTIONS(2132), + [anon_sym_SLASH2] = ACTIONS(2134), + [anon_sym_mod2] = ACTIONS(2132), + [anon_sym_SLASH_SLASH2] = ACTIONS(2132), + [anon_sym_PLUS2] = ACTIONS(2134), + [anon_sym_bit_DASHshl2] = ACTIONS(2132), + [anon_sym_bit_DASHshr2] = ACTIONS(2132), + [anon_sym_bit_DASHand2] = ACTIONS(2132), + [anon_sym_bit_DASHxor2] = ACTIONS(2132), + [anon_sym_bit_DASHor2] = ACTIONS(2132), + [anon_sym_DOT_DOT2] = ACTIONS(1619), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1621), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1621), + [anon_sym_err_GT] = ACTIONS(2247), + [anon_sym_out_GT] = ACTIONS(2247), + [anon_sym_e_GT] = ACTIONS(2247), + [anon_sym_o_GT] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT] = ACTIONS(2247), + [anon_sym_err_GT_GT] = ACTIONS(2245), + [anon_sym_out_GT_GT] = ACTIONS(2245), + [anon_sym_e_GT_GT] = ACTIONS(2245), + [anon_sym_o_GT_GT] = ACTIONS(2245), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2245), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2245), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2245), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2245), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(725)] = { - [sym_expr_unary] = STATE(936), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(936), - [sym__expr_binary_expression] = STATE(2227), - [sym_expr_parenthesized] = STATE(703), - [sym_val_range] = STATE(936), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(936), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1983), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1738), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(685), - [sym__unquoted_with_expr] = STATE(927), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_cmd_identifier] = STATE(4519), + [sym_expr_parenthesized] = STATE(5494), + [sym__spread_parenthesized] = STATE(5018), + [sym__spread_variable] = STATE(5020), + [sym_val_variable] = STATE(5494), + [sym_val_number] = STATE(5494), + [sym__val_number_decimal] = STATE(1998), + [sym__val_number] = STATE(710), + [sym_val_string] = STATE(5494), + [sym__raw_str] = STATE(2274), + [sym__str_double_quotes] = STATE(2274), + [sym__str_single_quotes] = STATE(2274), + [sym__str_back_ticks] = STATE(2274), + [sym_val_interpolated] = STATE(5494), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym__spread_record] = STATE(5018), + [sym_record_entry] = STATE(5067), + [sym__record_key] = STATE(5156), [sym_comment] = STATE(725), - [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(1004), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1924), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), - [anon_sym_DOT_DOT_LT] = ACTIONS(1926), - [aux_sym__val_number_decimal_token1] = ACTIONS(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1930), - [aux_sym__val_number_decimal_token3] = ACTIONS(1932), - [aux_sym__val_number_decimal_token4] = ACTIONS(1932), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1934), - [anon_sym_DQUOTE] = 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(1936), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [aux_sym_record_body_repeat1] = STATE(725), + [anon_sym_export] = ACTIONS(2249), + [anon_sym_alias] = ACTIONS(2252), + [anon_sym_let] = ACTIONS(2252), + [anon_sym_mut] = ACTIONS(2252), + [anon_sym_const] = ACTIONS(2252), + [aux_sym_cmd_identifier_token1] = ACTIONS(2255), + [anon_sym_def] = ACTIONS(2252), + [anon_sym_use] = ACTIONS(2252), + [anon_sym_export_DASHenv] = ACTIONS(2252), + [anon_sym_extern] = ACTIONS(2252), + [anon_sym_module] = ACTIONS(2252), + [anon_sym_for] = ACTIONS(2252), + [anon_sym_loop] = ACTIONS(2252), + [anon_sym_while] = ACTIONS(2252), + [anon_sym_if] = ACTIONS(2252), + [anon_sym_else] = ACTIONS(2252), + [anon_sym_try] = ACTIONS(2252), + [anon_sym_catch] = ACTIONS(2252), + [anon_sym_finally] = ACTIONS(2252), + [anon_sym_match] = ACTIONS(2252), + [anon_sym_in] = ACTIONS(2249), + [anon_sym_true] = ACTIONS(2258), + [anon_sym_false] = ACTIONS(2258), + [anon_sym_null] = ACTIONS(2258), + [aux_sym_cmd_identifier_token3] = ACTIONS(2261), + [aux_sym_cmd_identifier_token4] = ACTIONS(2261), + [aux_sym_cmd_identifier_token5] = ACTIONS(2261), + [anon_sym_LPAREN] = ACTIONS(2264), + [anon_sym_DOLLAR] = ACTIONS(2267), + [anon_sym_DASH2] = ACTIONS(2270), + [anon_sym_PLUS2] = ACTIONS(2270), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2273), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2276), + [aux_sym__val_number_decimal_token1] = ACTIONS(2279), + [aux_sym__val_number_decimal_token2] = ACTIONS(2282), + [aux_sym__val_number_decimal_token3] = ACTIONS(2285), + [aux_sym__val_number_decimal_token4] = ACTIONS(2285), + [aux_sym__val_number_token1] = ACTIONS(2288), + [aux_sym__val_number_token2] = ACTIONS(2288), + [aux_sym__val_number_token3] = ACTIONS(2288), + [anon_sym_DQUOTE] = ACTIONS(2291), + [anon_sym_SQUOTE] = ACTIONS(2294), + [anon_sym_BQUOTE] = ACTIONS(2297), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2300), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2303), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2306), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2309), }, [STATE(726)] = { [sym_comment] = STATE(726), - [anon_sym_if] = ACTIONS(2196), - [anon_sym_in] = ACTIONS(2196), - [sym__newline] = ACTIONS(2196), - [anon_sym_SEMI] = ACTIONS(2196), - [anon_sym_PIPE] = ACTIONS(2196), - [anon_sym_err_GT_PIPE] = ACTIONS(2196), - [anon_sym_out_GT_PIPE] = ACTIONS(2196), - [anon_sym_e_GT_PIPE] = ACTIONS(2196), - [anon_sym_o_GT_PIPE] = ACTIONS(2196), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2196), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2196), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2196), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2196), - [anon_sym_RPAREN] = ACTIONS(2196), - [anon_sym_GT2] = ACTIONS(2198), - [anon_sym_DASH2] = ACTIONS(2196), - [anon_sym_LBRACE] = ACTIONS(2196), - [anon_sym_RBRACE] = ACTIONS(2196), - [anon_sym_EQ_GT] = ACTIONS(2196), - [anon_sym_STAR2] = ACTIONS(2198), - [anon_sym_and2] = ACTIONS(2196), - [anon_sym_xor2] = ACTIONS(2196), - [anon_sym_or2] = ACTIONS(2196), - [anon_sym_not_DASHin2] = ACTIONS(2196), - [anon_sym_has2] = ACTIONS(2196), - [anon_sym_not_DASHhas2] = ACTIONS(2196), - [anon_sym_starts_DASHwith2] = ACTIONS(2196), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2196), - [anon_sym_ends_DASHwith2] = ACTIONS(2196), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2196), - [anon_sym_EQ_EQ2] = ACTIONS(2196), - [anon_sym_BANG_EQ2] = ACTIONS(2196), - [anon_sym_LT2] = ACTIONS(2198), - [anon_sym_LT_EQ2] = ACTIONS(2196), - [anon_sym_GT_EQ2] = ACTIONS(2196), - [anon_sym_EQ_TILDE2] = ACTIONS(2196), - [anon_sym_BANG_TILDE2] = ACTIONS(2196), - [anon_sym_like2] = ACTIONS(2196), - [anon_sym_not_DASHlike2] = ACTIONS(2196), - [anon_sym_STAR_STAR2] = ACTIONS(2196), - [anon_sym_PLUS_PLUS2] = ACTIONS(2196), - [anon_sym_SLASH2] = ACTIONS(2198), - [anon_sym_mod2] = ACTIONS(2196), - [anon_sym_SLASH_SLASH2] = ACTIONS(2196), - [anon_sym_PLUS2] = ACTIONS(2198), - [anon_sym_bit_DASHshl2] = ACTIONS(2196), - [anon_sym_bit_DASHshr2] = ACTIONS(2196), - [anon_sym_bit_DASHand2] = ACTIONS(2196), - [anon_sym_bit_DASHxor2] = ACTIONS(2196), - [anon_sym_bit_DASHor2] = ACTIONS(2196), - [anon_sym_err_GT] = ACTIONS(2198), - [anon_sym_out_GT] = ACTIONS(2198), - [anon_sym_e_GT] = ACTIONS(2198), - [anon_sym_o_GT] = ACTIONS(2198), - [anon_sym_err_PLUSout_GT] = ACTIONS(2198), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2198), - [anon_sym_o_PLUSe_GT] = ACTIONS(2198), - [anon_sym_e_PLUSo_GT] = ACTIONS(2198), - [anon_sym_err_GT_GT] = ACTIONS(2196), - [anon_sym_out_GT_GT] = ACTIONS(2196), - [anon_sym_e_GT_GT] = ACTIONS(2196), - [anon_sym_o_GT_GT] = ACTIONS(2196), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2196), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2196), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2196), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2196), + [ts_builtin_sym_end] = ACTIONS(1730), + [anon_sym_in] = ACTIONS(1730), + [sym__newline] = ACTIONS(1730), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_PIPE] = ACTIONS(1730), + [anon_sym_err_GT_PIPE] = ACTIONS(1730), + [anon_sym_out_GT_PIPE] = ACTIONS(1730), + [anon_sym_e_GT_PIPE] = ACTIONS(1730), + [anon_sym_o_GT_PIPE] = ACTIONS(1730), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1730), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1730), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1730), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1730), + [anon_sym_GT2] = ACTIONS(1732), + [anon_sym_DASH2] = ACTIONS(1730), + [anon_sym_STAR2] = ACTIONS(1732), + [anon_sym_and2] = ACTIONS(1730), + [anon_sym_xor2] = ACTIONS(1730), + [anon_sym_or2] = ACTIONS(1730), + [anon_sym_not_DASHin2] = ACTIONS(1730), + [anon_sym_has2] = ACTIONS(1730), + [anon_sym_not_DASHhas2] = ACTIONS(1730), + [anon_sym_starts_DASHwith2] = ACTIONS(1730), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1730), + [anon_sym_ends_DASHwith2] = ACTIONS(1730), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1730), + [anon_sym_EQ_EQ2] = ACTIONS(1730), + [anon_sym_BANG_EQ2] = ACTIONS(1730), + [anon_sym_LT2] = ACTIONS(1732), + [anon_sym_LT_EQ2] = ACTIONS(1730), + [anon_sym_GT_EQ2] = ACTIONS(1730), + [anon_sym_EQ_TILDE2] = ACTIONS(1730), + [anon_sym_BANG_TILDE2] = ACTIONS(1730), + [anon_sym_like2] = ACTIONS(1730), + [anon_sym_not_DASHlike2] = ACTIONS(1730), + [anon_sym_LPAREN2] = ACTIONS(1730), + [anon_sym_STAR_STAR2] = ACTIONS(1730), + [anon_sym_PLUS_PLUS2] = ACTIONS(1730), + [anon_sym_SLASH2] = ACTIONS(1732), + [anon_sym_mod2] = ACTIONS(1730), + [anon_sym_SLASH_SLASH2] = ACTIONS(1730), + [anon_sym_PLUS2] = ACTIONS(1732), + [anon_sym_bit_DASHshl2] = ACTIONS(1730), + [anon_sym_bit_DASHshr2] = ACTIONS(1730), + [anon_sym_bit_DASHand2] = ACTIONS(1730), + [anon_sym_bit_DASHxor2] = ACTIONS(1730), + [anon_sym_bit_DASHor2] = ACTIONS(1730), + [anon_sym_DOT_DOT2] = ACTIONS(1732), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1730), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1730), + [anon_sym_err_GT] = ACTIONS(1732), + [anon_sym_out_GT] = ACTIONS(1732), + [anon_sym_e_GT] = ACTIONS(1732), + [anon_sym_o_GT] = ACTIONS(1732), + [anon_sym_err_PLUSout_GT] = ACTIONS(1732), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1732), + [anon_sym_o_PLUSe_GT] = ACTIONS(1732), + [anon_sym_e_PLUSo_GT] = ACTIONS(1732), + [anon_sym_err_GT_GT] = ACTIONS(1730), + [anon_sym_out_GT_GT] = ACTIONS(1730), + [anon_sym_e_GT_GT] = ACTIONS(1730), + [anon_sym_o_GT_GT] = ACTIONS(1730), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1730), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1730), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1730), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1730), + [sym__unquoted_pattern] = ACTIONS(1732), [anon_sym_POUND] = ACTIONS(3), }, [STATE(727)] = { + [aux_sym__repeat_newline] = STATE(857), + [aux_sym__pipe_separator] = STATE(730), [sym_comment] = STATE(727), - [anon_sym_if] = ACTIONS(2200), - [anon_sym_in] = ACTIONS(2200), - [sym__newline] = ACTIONS(2200), - [anon_sym_SEMI] = ACTIONS(2200), - [anon_sym_PIPE] = ACTIONS(2200), - [anon_sym_err_GT_PIPE] = ACTIONS(2200), - [anon_sym_out_GT_PIPE] = ACTIONS(2200), - [anon_sym_e_GT_PIPE] = ACTIONS(2200), - [anon_sym_o_GT_PIPE] = ACTIONS(2200), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2200), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2200), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2200), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2200), - [anon_sym_RPAREN] = ACTIONS(2200), - [anon_sym_GT2] = ACTIONS(2202), - [anon_sym_DASH2] = ACTIONS(2200), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_RBRACE] = ACTIONS(2200), - [anon_sym_EQ_GT] = ACTIONS(2200), - [anon_sym_STAR2] = ACTIONS(2202), - [anon_sym_and2] = ACTIONS(2200), - [anon_sym_xor2] = ACTIONS(2200), - [anon_sym_or2] = ACTIONS(2200), - [anon_sym_not_DASHin2] = ACTIONS(2200), - [anon_sym_has2] = ACTIONS(2200), - [anon_sym_not_DASHhas2] = ACTIONS(2200), - [anon_sym_starts_DASHwith2] = ACTIONS(2200), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2200), - [anon_sym_ends_DASHwith2] = ACTIONS(2200), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2200), - [anon_sym_EQ_EQ2] = ACTIONS(2200), - [anon_sym_BANG_EQ2] = ACTIONS(2200), - [anon_sym_LT2] = ACTIONS(2202), - [anon_sym_LT_EQ2] = ACTIONS(2200), - [anon_sym_GT_EQ2] = ACTIONS(2200), - [anon_sym_EQ_TILDE2] = ACTIONS(2200), - [anon_sym_BANG_TILDE2] = ACTIONS(2200), - [anon_sym_like2] = ACTIONS(2200), - [anon_sym_not_DASHlike2] = ACTIONS(2200), - [anon_sym_STAR_STAR2] = ACTIONS(2200), - [anon_sym_PLUS_PLUS2] = ACTIONS(2200), - [anon_sym_SLASH2] = ACTIONS(2202), - [anon_sym_mod2] = ACTIONS(2200), - [anon_sym_SLASH_SLASH2] = ACTIONS(2200), - [anon_sym_PLUS2] = ACTIONS(2202), - [anon_sym_bit_DASHshl2] = ACTIONS(2200), - [anon_sym_bit_DASHshr2] = ACTIONS(2200), - [anon_sym_bit_DASHand2] = ACTIONS(2200), - [anon_sym_bit_DASHxor2] = ACTIONS(2200), - [anon_sym_bit_DASHor2] = ACTIONS(2200), - [anon_sym_err_GT] = ACTIONS(2202), - [anon_sym_out_GT] = ACTIONS(2202), - [anon_sym_e_GT] = ACTIONS(2202), - [anon_sym_o_GT] = ACTIONS(2202), - [anon_sym_err_PLUSout_GT] = ACTIONS(2202), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2202), - [anon_sym_o_PLUSe_GT] = ACTIONS(2202), - [anon_sym_e_PLUSo_GT] = ACTIONS(2202), - [anon_sym_err_GT_GT] = ACTIONS(2200), - [anon_sym_out_GT_GT] = ACTIONS(2200), - [anon_sym_e_GT_GT] = ACTIONS(2200), - [anon_sym_o_GT_GT] = ACTIONS(2200), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2200), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2200), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2200), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2200), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(2312), + [anon_sym_alias] = ACTIONS(2314), + [anon_sym_let] = ACTIONS(2314), + [anon_sym_mut] = ACTIONS(2314), + [anon_sym_const] = ACTIONS(2314), + [aux_sym_cmd_identifier_token1] = ACTIONS(2312), + [anon_sym_def] = ACTIONS(2314), + [anon_sym_use] = ACTIONS(2314), + [anon_sym_export_DASHenv] = ACTIONS(2314), + [anon_sym_extern] = ACTIONS(2314), + [anon_sym_module] = ACTIONS(2314), + [anon_sym_for] = ACTIONS(2314), + [anon_sym_loop] = ACTIONS(2314), + [anon_sym_while] = ACTIONS(2314), + [anon_sym_if] = ACTIONS(2314), + [anon_sym_else] = ACTIONS(2314), + [anon_sym_try] = ACTIONS(2314), + [anon_sym_catch] = ACTIONS(2314), + [anon_sym_finally] = ACTIONS(2314), + [anon_sym_match] = ACTIONS(2314), + [anon_sym_in] = ACTIONS(2312), + [anon_sym_true] = ACTIONS(2314), + [anon_sym_false] = ACTIONS(2314), + [anon_sym_null] = ACTIONS(2314), + [aux_sym_cmd_identifier_token3] = ACTIONS(2314), + [aux_sym_cmd_identifier_token4] = ACTIONS(2314), + [aux_sym_cmd_identifier_token5] = ACTIONS(2314), + [sym__newline] = ACTIONS(2316), + [anon_sym_PIPE] = ACTIONS(2318), + [anon_sym_err_GT_PIPE] = ACTIONS(2318), + [anon_sym_out_GT_PIPE] = ACTIONS(2318), + [anon_sym_e_GT_PIPE] = ACTIONS(2318), + [anon_sym_o_GT_PIPE] = ACTIONS(2318), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2318), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2318), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2318), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2318), + [anon_sym_LBRACK] = ACTIONS(2314), + [anon_sym_LPAREN] = ACTIONS(2314), + [anon_sym_DOLLAR] = ACTIONS(2312), + [anon_sym_DASH2] = ACTIONS(2312), + [anon_sym_LBRACE] = ACTIONS(2314), + [anon_sym_DOT_DOT] = ACTIONS(2312), + [anon_sym_where] = ACTIONS(2314), + [aux_sym_expr_unary_token1] = ACTIONS(2314), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2314), + [anon_sym_DOT_DOT_LT] = ACTIONS(2314), + [aux_sym__val_number_decimal_token1] = ACTIONS(2312), + [aux_sym__val_number_decimal_token2] = ACTIONS(2314), + [aux_sym__val_number_decimal_token3] = ACTIONS(2314), + [aux_sym__val_number_decimal_token4] = ACTIONS(2314), + [aux_sym__val_number_token1] = ACTIONS(2314), + [aux_sym__val_number_token2] = ACTIONS(2314), + [aux_sym__val_number_token3] = ACTIONS(2314), + [anon_sym_0b] = ACTIONS(2312), + [anon_sym_0o] = ACTIONS(2312), + [anon_sym_0x] = ACTIONS(2312), + [sym_val_date] = ACTIONS(2314), + [anon_sym_DQUOTE] = ACTIONS(2314), + [anon_sym_SQUOTE] = ACTIONS(2314), + [anon_sym_BQUOTE] = ACTIONS(2314), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2314), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2314), + [anon_sym_CARET] = ACTIONS(2314), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2314), }, [STATE(728)] = { + [aux_sym__repeat_newline] = STATE(3592), + [aux_sym__pipe_separator] = STATE(730), [sym_comment] = STATE(728), - [anon_sym_if] = 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_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_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), + [anon_sym_export] = ACTIONS(2320), + [anon_sym_alias] = ACTIONS(2322), + [anon_sym_let] = ACTIONS(2322), + [anon_sym_mut] = ACTIONS(2322), + [anon_sym_const] = ACTIONS(2322), + [aux_sym_cmd_identifier_token1] = ACTIONS(2320), + [anon_sym_def] = ACTIONS(2322), + [anon_sym_use] = ACTIONS(2322), + [anon_sym_export_DASHenv] = ACTIONS(2322), + [anon_sym_extern] = ACTIONS(2322), + [anon_sym_module] = ACTIONS(2322), + [anon_sym_for] = ACTIONS(2322), + [anon_sym_loop] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2322), + [anon_sym_if] = ACTIONS(2322), + [anon_sym_else] = ACTIONS(2322), + [anon_sym_try] = ACTIONS(2322), + [anon_sym_catch] = ACTIONS(2322), + [anon_sym_finally] = ACTIONS(2322), + [anon_sym_match] = ACTIONS(2322), + [anon_sym_in] = ACTIONS(2320), + [anon_sym_true] = ACTIONS(2322), + [anon_sym_false] = ACTIONS(2322), + [anon_sym_null] = ACTIONS(2322), + [aux_sym_cmd_identifier_token3] = ACTIONS(2322), + [aux_sym_cmd_identifier_token4] = ACTIONS(2322), + [aux_sym_cmd_identifier_token5] = ACTIONS(2322), + [sym__newline] = ACTIONS(2324), + [anon_sym_PIPE] = ACTIONS(2318), + [anon_sym_err_GT_PIPE] = ACTIONS(2318), + [anon_sym_out_GT_PIPE] = ACTIONS(2318), + [anon_sym_e_GT_PIPE] = ACTIONS(2318), + [anon_sym_o_GT_PIPE] = ACTIONS(2318), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2318), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2318), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2318), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2318), + [anon_sym_LBRACK] = ACTIONS(2322), + [anon_sym_LPAREN] = ACTIONS(2322), + [anon_sym_DOLLAR] = ACTIONS(2320), + [anon_sym_DASH2] = ACTIONS(2320), + [anon_sym_LBRACE] = ACTIONS(2322), + [anon_sym_DOT_DOT] = ACTIONS(2320), + [anon_sym_where] = ACTIONS(2322), + [aux_sym_expr_unary_token1] = ACTIONS(2322), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2322), + [anon_sym_DOT_DOT_LT] = ACTIONS(2322), + [aux_sym__val_number_decimal_token1] = ACTIONS(2320), + [aux_sym__val_number_decimal_token2] = ACTIONS(2322), + [aux_sym__val_number_decimal_token3] = ACTIONS(2322), + [aux_sym__val_number_decimal_token4] = ACTIONS(2322), + [aux_sym__val_number_token1] = ACTIONS(2322), + [aux_sym__val_number_token2] = ACTIONS(2322), + [aux_sym__val_number_token3] = ACTIONS(2322), + [anon_sym_0b] = ACTIONS(2320), + [anon_sym_0o] = ACTIONS(2320), + [anon_sym_0x] = ACTIONS(2320), + [sym_val_date] = ACTIONS(2322), + [anon_sym_DQUOTE] = ACTIONS(2322), + [anon_sym_SQUOTE] = ACTIONS(2322), + [anon_sym_BQUOTE] = ACTIONS(2322), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2322), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2322), + [anon_sym_CARET] = ACTIONS(2322), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2322), }, [STATE(729)] = { [sym_comment] = STATE(729), - [anon_sym_if] = ACTIONS(2110), - [anon_sym_in] = ACTIONS(2110), - [sym__newline] = ACTIONS(2110), - [anon_sym_SEMI] = ACTIONS(2110), - [anon_sym_PIPE] = ACTIONS(2110), - [anon_sym_err_GT_PIPE] = ACTIONS(2110), - [anon_sym_out_GT_PIPE] = ACTIONS(2110), - [anon_sym_e_GT_PIPE] = ACTIONS(2110), - [anon_sym_o_GT_PIPE] = ACTIONS(2110), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2110), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2110), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2110), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2110), - [anon_sym_RPAREN] = ACTIONS(2110), - [anon_sym_GT2] = ACTIONS(2112), - [anon_sym_DASH2] = ACTIONS(2110), - [anon_sym_LBRACE] = ACTIONS(2110), - [anon_sym_RBRACE] = ACTIONS(2110), - [anon_sym_EQ_GT] = ACTIONS(2110), - [anon_sym_STAR2] = ACTIONS(2112), - [anon_sym_and2] = ACTIONS(2110), - [anon_sym_xor2] = ACTIONS(2110), - [anon_sym_or2] = ACTIONS(2110), - [anon_sym_not_DASHin2] = ACTIONS(2110), - [anon_sym_has2] = ACTIONS(2110), - [anon_sym_not_DASHhas2] = ACTIONS(2110), - [anon_sym_starts_DASHwith2] = ACTIONS(2110), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2110), - [anon_sym_ends_DASHwith2] = ACTIONS(2110), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2110), - [anon_sym_EQ_EQ2] = ACTIONS(2110), - [anon_sym_BANG_EQ2] = ACTIONS(2110), - [anon_sym_LT2] = ACTIONS(2112), - [anon_sym_LT_EQ2] = ACTIONS(2110), - [anon_sym_GT_EQ2] = ACTIONS(2110), - [anon_sym_EQ_TILDE2] = ACTIONS(2110), - [anon_sym_BANG_TILDE2] = ACTIONS(2110), - [anon_sym_like2] = ACTIONS(2110), - [anon_sym_not_DASHlike2] = ACTIONS(2110), - [anon_sym_STAR_STAR2] = ACTIONS(2110), - [anon_sym_PLUS_PLUS2] = ACTIONS(2110), - [anon_sym_SLASH2] = ACTIONS(2112), - [anon_sym_mod2] = ACTIONS(2110), - [anon_sym_SLASH_SLASH2] = ACTIONS(2110), - [anon_sym_PLUS2] = ACTIONS(2112), - [anon_sym_bit_DASHshl2] = ACTIONS(2110), - [anon_sym_bit_DASHshr2] = ACTIONS(2110), - [anon_sym_bit_DASHand2] = ACTIONS(2110), - [anon_sym_bit_DASHxor2] = ACTIONS(2110), - [anon_sym_bit_DASHor2] = ACTIONS(2110), - [anon_sym_err_GT] = ACTIONS(2112), - [anon_sym_out_GT] = ACTIONS(2112), - [anon_sym_e_GT] = ACTIONS(2112), - [anon_sym_o_GT] = ACTIONS(2112), - [anon_sym_err_PLUSout_GT] = ACTIONS(2112), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2112), - [anon_sym_o_PLUSe_GT] = ACTIONS(2112), - [anon_sym_e_PLUSo_GT] = ACTIONS(2112), - [anon_sym_err_GT_GT] = ACTIONS(2110), - [anon_sym_out_GT_GT] = ACTIONS(2110), - [anon_sym_e_GT_GT] = ACTIONS(2110), - [anon_sym_o_GT_GT] = ACTIONS(2110), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2110), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2110), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2110), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2110), + [anon_sym_if] = ACTIONS(2326), + [anon_sym_in] = ACTIONS(2326), + [sym__newline] = ACTIONS(2326), + [anon_sym_SEMI] = ACTIONS(2326), + [anon_sym_PIPE] = ACTIONS(2326), + [anon_sym_err_GT_PIPE] = ACTIONS(2326), + [anon_sym_out_GT_PIPE] = ACTIONS(2326), + [anon_sym_e_GT_PIPE] = ACTIONS(2326), + [anon_sym_o_GT_PIPE] = ACTIONS(2326), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2326), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2326), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2326), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2326), + [anon_sym_RPAREN] = ACTIONS(2326), + [anon_sym_GT2] = ACTIONS(2328), + [anon_sym_DASH2] = ACTIONS(2326), + [anon_sym_LBRACE] = ACTIONS(2326), + [anon_sym_RBRACE] = ACTIONS(2326), + [anon_sym_EQ_GT] = ACTIONS(2326), + [anon_sym_STAR2] = ACTIONS(2328), + [anon_sym_and2] = ACTIONS(2326), + [anon_sym_xor2] = ACTIONS(2326), + [anon_sym_or2] = ACTIONS(2326), + [anon_sym_not_DASHin2] = ACTIONS(2326), + [anon_sym_has2] = ACTIONS(2326), + [anon_sym_not_DASHhas2] = ACTIONS(2326), + [anon_sym_starts_DASHwith2] = ACTIONS(2326), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2326), + [anon_sym_ends_DASHwith2] = ACTIONS(2326), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2326), + [anon_sym_EQ_EQ2] = ACTIONS(2326), + [anon_sym_BANG_EQ2] = ACTIONS(2326), + [anon_sym_LT2] = ACTIONS(2328), + [anon_sym_LT_EQ2] = ACTIONS(2326), + [anon_sym_GT_EQ2] = ACTIONS(2326), + [anon_sym_EQ_TILDE2] = ACTIONS(2326), + [anon_sym_BANG_TILDE2] = ACTIONS(2326), + [anon_sym_like2] = ACTIONS(2326), + [anon_sym_not_DASHlike2] = ACTIONS(2326), + [anon_sym_LPAREN2] = ACTIONS(2326), + [anon_sym_STAR_STAR2] = ACTIONS(2326), + [anon_sym_PLUS_PLUS2] = ACTIONS(2326), + [anon_sym_SLASH2] = ACTIONS(2328), + [anon_sym_mod2] = ACTIONS(2326), + [anon_sym_SLASH_SLASH2] = ACTIONS(2326), + [anon_sym_PLUS2] = ACTIONS(2328), + [anon_sym_bit_DASHshl2] = ACTIONS(2326), + [anon_sym_bit_DASHshr2] = ACTIONS(2326), + [anon_sym_bit_DASHand2] = ACTIONS(2326), + [anon_sym_bit_DASHxor2] = ACTIONS(2326), + [anon_sym_bit_DASHor2] = ACTIONS(2326), + [anon_sym_err_GT] = ACTIONS(2328), + [anon_sym_out_GT] = ACTIONS(2328), + [anon_sym_e_GT] = ACTIONS(2328), + [anon_sym_o_GT] = ACTIONS(2328), + [anon_sym_err_PLUSout_GT] = ACTIONS(2328), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2328), + [anon_sym_o_PLUSe_GT] = ACTIONS(2328), + [anon_sym_e_PLUSo_GT] = ACTIONS(2328), + [anon_sym_err_GT_GT] = ACTIONS(2326), + [anon_sym_out_GT_GT] = ACTIONS(2326), + [anon_sym_e_GT_GT] = ACTIONS(2326), + [anon_sym_o_GT_GT] = ACTIONS(2326), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2326), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2326), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2326), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2326), [anon_sym_POUND] = ACTIONS(3), }, [STATE(730)] = { + [aux_sym__repeat_newline] = STATE(3592), + [aux_sym__pipe_separator] = STATE(730), [sym_comment] = STATE(730), - [anon_sym_if] = 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_RPAREN] = ACTIONS(2118), - [anon_sym_GT2] = ACTIONS(2120), - [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(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(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(2120), - [anon_sym_mod2] = ACTIONS(2118), - [anon_sym_SLASH_SLASH2] = ACTIONS(2118), - [anon_sym_PLUS2] = ACTIONS(2120), - [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(2120), - [anon_sym_out_GT] = ACTIONS(2120), - [anon_sym_e_GT] = ACTIONS(2120), - [anon_sym_o_GT] = ACTIONS(2120), - [anon_sym_err_PLUSout_GT] = ACTIONS(2120), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2120), - [anon_sym_o_PLUSe_GT] = ACTIONS(2120), - [anon_sym_e_PLUSo_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), + [anon_sym_export] = ACTIONS(2330), + [anon_sym_alias] = ACTIONS(2332), + [anon_sym_let] = ACTIONS(2332), + [anon_sym_mut] = ACTIONS(2332), + [anon_sym_const] = ACTIONS(2332), + [aux_sym_cmd_identifier_token1] = ACTIONS(2330), + [anon_sym_def] = ACTIONS(2332), + [anon_sym_use] = ACTIONS(2332), + [anon_sym_export_DASHenv] = ACTIONS(2332), + [anon_sym_extern] = ACTIONS(2332), + [anon_sym_module] = ACTIONS(2332), + [anon_sym_for] = ACTIONS(2332), + [anon_sym_loop] = ACTIONS(2332), + [anon_sym_while] = ACTIONS(2332), + [anon_sym_if] = ACTIONS(2332), + [anon_sym_else] = ACTIONS(2332), + [anon_sym_try] = ACTIONS(2332), + [anon_sym_catch] = ACTIONS(2332), + [anon_sym_finally] = ACTIONS(2332), + [anon_sym_match] = ACTIONS(2332), + [anon_sym_in] = ACTIONS(2330), + [anon_sym_true] = ACTIONS(2332), + [anon_sym_false] = ACTIONS(2332), + [anon_sym_null] = ACTIONS(2332), + [aux_sym_cmd_identifier_token3] = ACTIONS(2332), + [aux_sym_cmd_identifier_token4] = ACTIONS(2332), + [aux_sym_cmd_identifier_token5] = ACTIONS(2332), + [sym__newline] = ACTIONS(2334), + [anon_sym_PIPE] = ACTIONS(2337), + [anon_sym_err_GT_PIPE] = ACTIONS(2337), + [anon_sym_out_GT_PIPE] = ACTIONS(2337), + [anon_sym_e_GT_PIPE] = ACTIONS(2337), + [anon_sym_o_GT_PIPE] = ACTIONS(2337), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2337), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2337), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2337), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2337), + [anon_sym_LBRACK] = ACTIONS(2332), + [anon_sym_LPAREN] = ACTIONS(2332), + [anon_sym_DOLLAR] = ACTIONS(2330), + [anon_sym_DASH2] = ACTIONS(2330), + [anon_sym_LBRACE] = ACTIONS(2332), + [anon_sym_DOT_DOT] = ACTIONS(2330), + [anon_sym_where] = ACTIONS(2332), + [aux_sym_expr_unary_token1] = ACTIONS(2332), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2332), + [anon_sym_DOT_DOT_LT] = ACTIONS(2332), + [aux_sym__val_number_decimal_token1] = ACTIONS(2330), + [aux_sym__val_number_decimal_token2] = ACTIONS(2332), + [aux_sym__val_number_decimal_token3] = ACTIONS(2332), + [aux_sym__val_number_decimal_token4] = ACTIONS(2332), + [aux_sym__val_number_token1] = ACTIONS(2332), + [aux_sym__val_number_token2] = ACTIONS(2332), + [aux_sym__val_number_token3] = ACTIONS(2332), + [anon_sym_0b] = ACTIONS(2330), + [anon_sym_0o] = ACTIONS(2330), + [anon_sym_0x] = ACTIONS(2330), + [sym_val_date] = ACTIONS(2332), + [anon_sym_DQUOTE] = ACTIONS(2332), + [anon_sym_SQUOTE] = ACTIONS(2332), + [anon_sym_BQUOTE] = ACTIONS(2332), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2332), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2332), + [anon_sym_CARET] = ACTIONS(2332), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2332), }, [STATE(731)] = { [sym_comment] = STATE(731), - [anon_sym_if] = ACTIONS(2204), - [anon_sym_in] = ACTIONS(2204), - [sym__newline] = ACTIONS(2204), - [anon_sym_SEMI] = ACTIONS(2204), - [anon_sym_PIPE] = ACTIONS(2204), - [anon_sym_err_GT_PIPE] = ACTIONS(2204), - [anon_sym_out_GT_PIPE] = ACTIONS(2204), - [anon_sym_e_GT_PIPE] = ACTIONS(2204), - [anon_sym_o_GT_PIPE] = ACTIONS(2204), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2204), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2204), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2204), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2204), - [anon_sym_RPAREN] = ACTIONS(2204), - [anon_sym_GT2] = ACTIONS(2206), - [anon_sym_DASH2] = ACTIONS(2204), - [anon_sym_LBRACE] = ACTIONS(2204), - [anon_sym_RBRACE] = ACTIONS(2204), - [anon_sym_EQ_GT] = ACTIONS(2204), - [anon_sym_STAR2] = ACTIONS(2206), - [anon_sym_and2] = ACTIONS(2204), - [anon_sym_xor2] = ACTIONS(2204), - [anon_sym_or2] = ACTIONS(2204), - [anon_sym_not_DASHin2] = ACTIONS(2204), - [anon_sym_has2] = ACTIONS(2204), - [anon_sym_not_DASHhas2] = ACTIONS(2204), - [anon_sym_starts_DASHwith2] = ACTIONS(2204), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2204), - [anon_sym_ends_DASHwith2] = ACTIONS(2204), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2204), - [anon_sym_EQ_EQ2] = ACTIONS(2204), - [anon_sym_BANG_EQ2] = ACTIONS(2204), - [anon_sym_LT2] = ACTIONS(2206), - [anon_sym_LT_EQ2] = ACTIONS(2204), - [anon_sym_GT_EQ2] = ACTIONS(2204), - [anon_sym_EQ_TILDE2] = ACTIONS(2204), - [anon_sym_BANG_TILDE2] = ACTIONS(2204), - [anon_sym_like2] = ACTIONS(2204), - [anon_sym_not_DASHlike2] = ACTIONS(2204), - [anon_sym_STAR_STAR2] = ACTIONS(2204), - [anon_sym_PLUS_PLUS2] = ACTIONS(2204), - [anon_sym_SLASH2] = ACTIONS(2206), - [anon_sym_mod2] = ACTIONS(2204), - [anon_sym_SLASH_SLASH2] = ACTIONS(2204), - [anon_sym_PLUS2] = ACTIONS(2206), - [anon_sym_bit_DASHshl2] = ACTIONS(2204), - [anon_sym_bit_DASHshr2] = ACTIONS(2204), - [anon_sym_bit_DASHand2] = ACTIONS(2204), - [anon_sym_bit_DASHxor2] = ACTIONS(2204), - [anon_sym_bit_DASHor2] = ACTIONS(2204), - [anon_sym_err_GT] = ACTIONS(2206), - [anon_sym_out_GT] = ACTIONS(2206), - [anon_sym_e_GT] = ACTIONS(2206), - [anon_sym_o_GT] = ACTIONS(2206), - [anon_sym_err_PLUSout_GT] = ACTIONS(2206), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2206), - [anon_sym_o_PLUSe_GT] = ACTIONS(2206), - [anon_sym_e_PLUSo_GT] = ACTIONS(2206), - [anon_sym_err_GT_GT] = ACTIONS(2204), - [anon_sym_out_GT_GT] = ACTIONS(2204), - [anon_sym_e_GT_GT] = ACTIONS(2204), - [anon_sym_o_GT_GT] = ACTIONS(2204), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2204), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2204), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2204), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2204), + [ts_builtin_sym_end] = 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_GT2] = ACTIONS(1460), + [anon_sym_DASH2] = ACTIONS(1462), + [anon_sym_STAR2] = ACTIONS(1460), + [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(1460), + [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(1460), + [anon_sym_mod2] = ACTIONS(1462), + [anon_sym_SLASH_SLASH2] = ACTIONS(1462), + [anon_sym_PLUS2] = ACTIONS(1460), + [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(1460), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1462), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1462), + [anon_sym_BANG] = ACTIONS(2340), + [anon_sym_DOT2] = ACTIONS(1460), + [anon_sym_err_GT] = ACTIONS(1460), + [anon_sym_out_GT] = ACTIONS(1460), + [anon_sym_e_GT] = ACTIONS(1460), + [anon_sym_o_GT] = ACTIONS(1460), + [anon_sym_err_PLUSout_GT] = ACTIONS(1460), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1460), + [anon_sym_o_PLUSe_GT] = ACTIONS(1460), + [anon_sym_e_PLUSo_GT] = ACTIONS(1460), + [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(3), }, [STATE(732)] = { - [sym_expr_unary] = STATE(1323), - [sym__expr_unary_minus] = STATE(1290), - [sym_expr_binary] = STATE(1323), - [sym__expr_binary_expression] = STATE(1349), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1323), - [sym__val_range] = STATE(4744), - [sym__value] = STATE(1323), - [sym_val_nothing] = STATE(1295), - [sym_val_bool] = STATE(1027), - [sym_val_variable] = STATE(933), - [sym_val_cellpath] = STATE(1295), - [sym_val_number] = STATE(1295), - [sym__val_number_decimal] = STATE(463), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1295), - [sym_val_filesize] = STATE(1295), - [sym_val_binary] = STATE(1295), - [sym_val_string] = STATE(1295), - [sym__raw_str] = STATE(502), - [sym__str_double_quotes] = STATE(502), - [sym__str_single_quotes] = STATE(502), - [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1295), - [sym__inter_single_quotes] = STATE(1306), - [sym__inter_double_quotes] = STATE(1317), - [sym_val_list] = STATE(1295), - [sym_val_record] = STATE(1295), - [sym_val_table] = STATE(1295), - [sym_val_closure] = STATE(1295), - [sym_unquoted] = STATE(1136), - [sym__unquoted_with_expr] = STATE(1351), - [sym__unquoted_anonymous_prefix] = STATE(4744), + [sym__expr_parenthesized_immediate] = STATE(5483), [sym_comment] = STATE(732), - [anon_sym_true] = ACTIONS(2208), - [anon_sym_false] = ACTIONS(2208), - [anon_sym_null] = ACTIONS(2210), - [aux_sym_cmd_identifier_token3] = ACTIONS(2212), - [aux_sym_cmd_identifier_token4] = ACTIONS(2212), - [aux_sym_cmd_identifier_token5] = ACTIONS(2212), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1008), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2214), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2216), - [anon_sym_DOT_DOT_LT] = ACTIONS(2216), - [aux_sym__val_number_decimal_token1] = ACTIONS(2218), - [aux_sym__val_number_decimal_token2] = ACTIONS(2220), - [aux_sym__val_number_decimal_token3] = ACTIONS(2222), - [aux_sym__val_number_decimal_token4] = ACTIONS(2222), - [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(2224), - [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(2226), + [anon_sym_in] = ACTIONS(2342), + [sym__newline] = ACTIONS(2342), + [anon_sym_SEMI] = ACTIONS(2342), + [anon_sym_PIPE] = ACTIONS(2342), + [anon_sym_err_GT_PIPE] = ACTIONS(2342), + [anon_sym_out_GT_PIPE] = ACTIONS(2342), + [anon_sym_e_GT_PIPE] = ACTIONS(2342), + [anon_sym_o_GT_PIPE] = ACTIONS(2342), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2342), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2342), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2342), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2342), + [anon_sym_RPAREN] = ACTIONS(2342), + [anon_sym_GT2] = ACTIONS(2344), + [anon_sym_DASH2] = ACTIONS(2342), + [anon_sym_LBRACE] = ACTIONS(2342), + [anon_sym_RBRACE] = ACTIONS(2342), + [anon_sym_EQ_GT] = ACTIONS(2342), + [anon_sym_STAR2] = ACTIONS(2344), + [anon_sym_and2] = ACTIONS(2342), + [anon_sym_xor2] = ACTIONS(2342), + [anon_sym_or2] = ACTIONS(2342), + [anon_sym_not_DASHin2] = ACTIONS(2342), + [anon_sym_has2] = ACTIONS(2342), + [anon_sym_not_DASHhas2] = ACTIONS(2342), + [anon_sym_starts_DASHwith2] = ACTIONS(2342), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2342), + [anon_sym_ends_DASHwith2] = ACTIONS(2342), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2342), + [anon_sym_EQ_EQ2] = ACTIONS(2342), + [anon_sym_BANG_EQ2] = ACTIONS(2342), + [anon_sym_LT2] = ACTIONS(2344), + [anon_sym_LT_EQ2] = ACTIONS(2342), + [anon_sym_GT_EQ2] = ACTIONS(2342), + [anon_sym_EQ_TILDE2] = ACTIONS(2342), + [anon_sym_BANG_TILDE2] = ACTIONS(2342), + [anon_sym_like2] = ACTIONS(2342), + [anon_sym_not_DASHlike2] = ACTIONS(2342), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_STAR_STAR2] = ACTIONS(2342), + [anon_sym_PLUS_PLUS2] = ACTIONS(2342), + [anon_sym_SLASH2] = ACTIONS(2344), + [anon_sym_mod2] = ACTIONS(2342), + [anon_sym_SLASH_SLASH2] = ACTIONS(2342), + [anon_sym_PLUS2] = ACTIONS(2344), + [anon_sym_bit_DASHshl2] = ACTIONS(2342), + [anon_sym_bit_DASHshr2] = ACTIONS(2342), + [anon_sym_bit_DASHand2] = ACTIONS(2342), + [anon_sym_bit_DASHxor2] = ACTIONS(2342), + [anon_sym_bit_DASHor2] = ACTIONS(2342), + [anon_sym_err_GT] = ACTIONS(2344), + [anon_sym_out_GT] = ACTIONS(2344), + [anon_sym_e_GT] = ACTIONS(2344), + [anon_sym_o_GT] = ACTIONS(2344), + [anon_sym_err_PLUSout_GT] = ACTIONS(2344), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2344), + [anon_sym_o_PLUSe_GT] = ACTIONS(2344), + [anon_sym_e_PLUSo_GT] = ACTIONS(2344), + [anon_sym_err_GT_GT] = ACTIONS(2342), + [anon_sym_out_GT_GT] = ACTIONS(2342), + [anon_sym_e_GT_GT] = ACTIONS(2342), + [anon_sym_o_GT_GT] = ACTIONS(2342), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2342), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2342), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2342), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2342), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), }, [STATE(733)] = { - [sym_expr_unary] = STATE(1323), - [sym__expr_unary_minus] = STATE(1290), - [sym_expr_binary] = STATE(1323), - [sym__expr_binary_expression] = STATE(1287), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1323), - [sym__val_range] = STATE(4744), - [sym__value] = STATE(1323), - [sym_val_nothing] = STATE(1295), - [sym_val_bool] = STATE(1027), - [sym_val_variable] = STATE(933), - [sym_val_cellpath] = STATE(1295), - [sym_val_number] = STATE(1295), - [sym__val_number_decimal] = STATE(463), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1295), - [sym_val_filesize] = STATE(1295), - [sym_val_binary] = STATE(1295), - [sym_val_string] = STATE(1295), - [sym__raw_str] = STATE(502), - [sym__str_double_quotes] = STATE(502), - [sym__str_single_quotes] = STATE(502), - [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1295), - [sym__inter_single_quotes] = STATE(1306), - [sym__inter_double_quotes] = STATE(1317), - [sym_val_list] = STATE(1295), - [sym_val_record] = STATE(1295), - [sym_val_table] = STATE(1295), - [sym_val_closure] = STATE(1295), - [sym_unquoted] = STATE(1030), - [sym__unquoted_with_expr] = STATE(1344), - [sym__unquoted_anonymous_prefix] = STATE(4744), + [aux_sym__repeat_newline] = STATE(1042), + [sym__expr_parenthesized_immediate] = STATE(5073), [sym_comment] = STATE(733), - [anon_sym_true] = ACTIONS(2208), - [anon_sym_false] = ACTIONS(2208), - [anon_sym_null] = ACTIONS(2210), - [aux_sym_cmd_identifier_token3] = ACTIONS(2212), - [aux_sym_cmd_identifier_token4] = ACTIONS(2212), - [aux_sym_cmd_identifier_token5] = ACTIONS(2212), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1008), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2214), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2216), - [anon_sym_DOT_DOT_LT] = ACTIONS(2216), - [aux_sym__val_number_decimal_token1] = ACTIONS(2218), - [aux_sym__val_number_decimal_token2] = ACTIONS(2220), - [aux_sym__val_number_decimal_token3] = ACTIONS(2222), - [aux_sym__val_number_decimal_token4] = ACTIONS(2222), - [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(2224), - [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(2226), + [anon_sym_in] = ACTIONS(2346), + [sym__newline] = ACTIONS(2346), + [anon_sym_SEMI] = 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_RPAREN] = ACTIONS(2346), + [anon_sym_GT2] = ACTIONS(2348), + [anon_sym_DASH2] = ACTIONS(2346), + [anon_sym_LBRACE] = ACTIONS(2346), + [anon_sym_STAR2] = ACTIONS(2348), + [anon_sym_and2] = ACTIONS(2346), + [anon_sym_xor2] = ACTIONS(2346), + [anon_sym_or2] = ACTIONS(2346), + [anon_sym_not_DASHin2] = ACTIONS(2346), + [anon_sym_has2] = ACTIONS(2346), + [anon_sym_not_DASHhas2] = ACTIONS(2346), + [anon_sym_starts_DASHwith2] = ACTIONS(2346), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2346), + [anon_sym_ends_DASHwith2] = ACTIONS(2346), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2346), + [anon_sym_EQ_EQ2] = ACTIONS(2346), + [anon_sym_BANG_EQ2] = ACTIONS(2346), + [anon_sym_LT2] = ACTIONS(2348), + [anon_sym_LT_EQ2] = ACTIONS(2346), + [anon_sym_GT_EQ2] = ACTIONS(2346), + [anon_sym_EQ_TILDE2] = ACTIONS(2346), + [anon_sym_BANG_TILDE2] = ACTIONS(2346), + [anon_sym_like2] = ACTIONS(2346), + [anon_sym_not_DASHlike2] = ACTIONS(2346), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_STAR_STAR2] = ACTIONS(2346), + [anon_sym_PLUS_PLUS2] = ACTIONS(2346), + [anon_sym_SLASH2] = ACTIONS(2348), + [anon_sym_mod2] = ACTIONS(2346), + [anon_sym_SLASH_SLASH2] = ACTIONS(2346), + [anon_sym_PLUS2] = ACTIONS(2348), + [anon_sym_bit_DASHshl2] = ACTIONS(2346), + [anon_sym_bit_DASHshr2] = ACTIONS(2346), + [anon_sym_bit_DASHand2] = ACTIONS(2346), + [anon_sym_bit_DASHxor2] = ACTIONS(2346), + [anon_sym_bit_DASHor2] = ACTIONS(2346), + [anon_sym_err_GT] = ACTIONS(2348), + [anon_sym_out_GT] = ACTIONS(2348), + [anon_sym_e_GT] = ACTIONS(2348), + [anon_sym_o_GT] = ACTIONS(2348), + [anon_sym_err_PLUSout_GT] = ACTIONS(2348), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2348), + [anon_sym_o_PLUSe_GT] = ACTIONS(2348), + [anon_sym_e_PLUSo_GT] = ACTIONS(2348), + [anon_sym_err_GT_GT] = ACTIONS(2346), + [anon_sym_out_GT_GT] = ACTIONS(2346), + [anon_sym_e_GT_GT] = ACTIONS(2346), + [anon_sym_o_GT_GT] = ACTIONS(2346), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2346), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2346), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2346), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2346), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), }, [STATE(734)] = { - [sym_expr_unary] = STATE(1323), - [sym__expr_unary_minus] = STATE(1290), - [sym_expr_binary] = STATE(1323), - [sym__expr_binary_expression] = STATE(1294), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1323), - [sym__val_range] = STATE(4744), - [sym__value] = STATE(1323), - [sym_val_nothing] = STATE(1295), - [sym_val_bool] = STATE(1027), - [sym_val_variable] = STATE(933), - [sym_val_cellpath] = STATE(1295), - [sym_val_number] = STATE(1295), - [sym__val_number_decimal] = STATE(463), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1295), - [sym_val_filesize] = STATE(1295), - [sym_val_binary] = STATE(1295), - [sym_val_string] = STATE(1295), - [sym__raw_str] = STATE(502), - [sym__str_double_quotes] = STATE(502), - [sym__str_single_quotes] = STATE(502), - [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1295), - [sym__inter_single_quotes] = STATE(1306), - [sym__inter_double_quotes] = STATE(1317), - [sym_val_list] = STATE(1295), - [sym_val_record] = STATE(1295), - [sym_val_table] = STATE(1295), - [sym_val_closure] = STATE(1295), - [sym_unquoted] = STATE(981), - [sym__unquoted_with_expr] = STATE(1314), - [sym__unquoted_anonymous_prefix] = STATE(4744), + [aux_sym__repeat_newline] = STATE(986), + [sym__expr_parenthesized_immediate] = STATE(5073), [sym_comment] = STATE(734), - [anon_sym_true] = ACTIONS(2208), - [anon_sym_false] = ACTIONS(2208), - [anon_sym_null] = ACTIONS(2210), - [aux_sym_cmd_identifier_token3] = ACTIONS(2212), - [aux_sym_cmd_identifier_token4] = ACTIONS(2212), - [aux_sym_cmd_identifier_token5] = ACTIONS(2212), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1008), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2214), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2216), - [anon_sym_DOT_DOT_LT] = ACTIONS(2216), - [aux_sym__val_number_decimal_token1] = ACTIONS(2218), - [aux_sym__val_number_decimal_token2] = ACTIONS(2220), - [aux_sym__val_number_decimal_token3] = ACTIONS(2222), - [aux_sym__val_number_decimal_token4] = ACTIONS(2222), - [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(2224), - [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(2226), + [anon_sym_in] = ACTIONS(2350), + [sym__newline] = ACTIONS(2350), + [anon_sym_SEMI] = ACTIONS(2350), + [anon_sym_PIPE] = ACTIONS(2350), + [anon_sym_err_GT_PIPE] = ACTIONS(2350), + [anon_sym_out_GT_PIPE] = ACTIONS(2350), + [anon_sym_e_GT_PIPE] = ACTIONS(2350), + [anon_sym_o_GT_PIPE] = ACTIONS(2350), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2350), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2350), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2350), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2350), + [anon_sym_RPAREN] = ACTIONS(2350), + [anon_sym_GT2] = ACTIONS(2352), + [anon_sym_DASH2] = ACTIONS(2350), + [anon_sym_LBRACE] = ACTIONS(2350), + [anon_sym_STAR2] = ACTIONS(2352), + [anon_sym_and2] = ACTIONS(2350), + [anon_sym_xor2] = ACTIONS(2350), + [anon_sym_or2] = ACTIONS(2350), + [anon_sym_not_DASHin2] = ACTIONS(2350), + [anon_sym_has2] = ACTIONS(2350), + [anon_sym_not_DASHhas2] = ACTIONS(2350), + [anon_sym_starts_DASHwith2] = ACTIONS(2350), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2350), + [anon_sym_ends_DASHwith2] = ACTIONS(2350), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2350), + [anon_sym_EQ_EQ2] = ACTIONS(2350), + [anon_sym_BANG_EQ2] = ACTIONS(2350), + [anon_sym_LT2] = ACTIONS(2352), + [anon_sym_LT_EQ2] = ACTIONS(2350), + [anon_sym_GT_EQ2] = ACTIONS(2350), + [anon_sym_EQ_TILDE2] = ACTIONS(2350), + [anon_sym_BANG_TILDE2] = ACTIONS(2350), + [anon_sym_like2] = ACTIONS(2350), + [anon_sym_not_DASHlike2] = ACTIONS(2350), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_STAR_STAR2] = ACTIONS(2350), + [anon_sym_PLUS_PLUS2] = ACTIONS(2350), + [anon_sym_SLASH2] = ACTIONS(2352), + [anon_sym_mod2] = ACTIONS(2350), + [anon_sym_SLASH_SLASH2] = ACTIONS(2350), + [anon_sym_PLUS2] = ACTIONS(2352), + [anon_sym_bit_DASHshl2] = ACTIONS(2350), + [anon_sym_bit_DASHshr2] = ACTIONS(2350), + [anon_sym_bit_DASHand2] = ACTIONS(2350), + [anon_sym_bit_DASHxor2] = ACTIONS(2350), + [anon_sym_bit_DASHor2] = ACTIONS(2350), + [anon_sym_err_GT] = ACTIONS(2352), + [anon_sym_out_GT] = ACTIONS(2352), + [anon_sym_e_GT] = ACTIONS(2352), + [anon_sym_o_GT] = ACTIONS(2352), + [anon_sym_err_PLUSout_GT] = ACTIONS(2352), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2352), + [anon_sym_o_PLUSe_GT] = ACTIONS(2352), + [anon_sym_e_PLUSo_GT] = ACTIONS(2352), + [anon_sym_err_GT_GT] = ACTIONS(2350), + [anon_sym_out_GT_GT] = ACTIONS(2350), + [anon_sym_e_GT_GT] = ACTIONS(2350), + [anon_sym_o_GT_GT] = ACTIONS(2350), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2350), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2350), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2350), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2350), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), }, [STATE(735)] = { [sym_comment] = STATE(735), - [anon_sym_if] = ACTIONS(2228), - [anon_sym_in] = ACTIONS(2228), - [sym__newline] = ACTIONS(2228), - [anon_sym_SEMI] = ACTIONS(2228), - [anon_sym_PIPE] = ACTIONS(2228), - [anon_sym_err_GT_PIPE] = ACTIONS(2228), - [anon_sym_out_GT_PIPE] = ACTIONS(2228), - [anon_sym_e_GT_PIPE] = ACTIONS(2228), - [anon_sym_o_GT_PIPE] = ACTIONS(2228), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2228), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2228), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2228), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2228), - [anon_sym_RPAREN] = ACTIONS(2228), - [anon_sym_GT2] = ACTIONS(2230), - [anon_sym_DASH2] = ACTIONS(2228), - [anon_sym_LBRACE] = ACTIONS(2228), - [anon_sym_RBRACE] = ACTIONS(2228), - [anon_sym_EQ_GT] = ACTIONS(2228), - [anon_sym_STAR2] = ACTIONS(2230), - [anon_sym_and2] = ACTIONS(2228), - [anon_sym_xor2] = ACTIONS(2228), - [anon_sym_or2] = ACTIONS(2228), - [anon_sym_not_DASHin2] = ACTIONS(2228), - [anon_sym_has2] = ACTIONS(2228), - [anon_sym_not_DASHhas2] = ACTIONS(2228), - [anon_sym_starts_DASHwith2] = ACTIONS(2228), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2228), - [anon_sym_ends_DASHwith2] = ACTIONS(2228), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2228), - [anon_sym_EQ_EQ2] = ACTIONS(2228), - [anon_sym_BANG_EQ2] = ACTIONS(2228), - [anon_sym_LT2] = ACTIONS(2230), - [anon_sym_LT_EQ2] = ACTIONS(2228), - [anon_sym_GT_EQ2] = ACTIONS(2228), - [anon_sym_EQ_TILDE2] = ACTIONS(2228), - [anon_sym_BANG_TILDE2] = ACTIONS(2228), - [anon_sym_like2] = ACTIONS(2228), - [anon_sym_not_DASHlike2] = ACTIONS(2228), - [anon_sym_STAR_STAR2] = ACTIONS(2228), - [anon_sym_PLUS_PLUS2] = ACTIONS(2228), - [anon_sym_SLASH2] = ACTIONS(2230), - [anon_sym_mod2] = ACTIONS(2228), - [anon_sym_SLASH_SLASH2] = ACTIONS(2228), - [anon_sym_PLUS2] = ACTIONS(2230), - [anon_sym_bit_DASHshl2] = ACTIONS(2228), - [anon_sym_bit_DASHshr2] = ACTIONS(2228), - [anon_sym_bit_DASHand2] = ACTIONS(2228), - [anon_sym_bit_DASHxor2] = ACTIONS(2228), - [anon_sym_bit_DASHor2] = ACTIONS(2228), - [anon_sym_err_GT] = ACTIONS(2230), - [anon_sym_out_GT] = ACTIONS(2230), - [anon_sym_e_GT] = ACTIONS(2230), - [anon_sym_o_GT] = ACTIONS(2230), - [anon_sym_err_PLUSout_GT] = ACTIONS(2230), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2230), - [anon_sym_o_PLUSe_GT] = ACTIONS(2230), - [anon_sym_e_PLUSo_GT] = ACTIONS(2230), - [anon_sym_err_GT_GT] = ACTIONS(2228), - [anon_sym_out_GT_GT] = ACTIONS(2228), - [anon_sym_e_GT_GT] = ACTIONS(2228), - [anon_sym_o_GT_GT] = ACTIONS(2228), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2228), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2228), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2228), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2228), + [ts_builtin_sym_end] = ACTIONS(1730), + [anon_sym_in] = ACTIONS(1730), + [sym__newline] = ACTIONS(1730), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_PIPE] = ACTIONS(1730), + [anon_sym_err_GT_PIPE] = ACTIONS(1730), + [anon_sym_out_GT_PIPE] = ACTIONS(1730), + [anon_sym_e_GT_PIPE] = ACTIONS(1730), + [anon_sym_o_GT_PIPE] = ACTIONS(1730), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1730), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1730), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1730), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1730), + [anon_sym_GT2] = ACTIONS(1732), + [anon_sym_DASH2] = ACTIONS(1730), + [anon_sym_STAR2] = ACTIONS(1732), + [anon_sym_and2] = ACTIONS(1730), + [anon_sym_xor2] = ACTIONS(1730), + [anon_sym_or2] = ACTIONS(1730), + [anon_sym_not_DASHin2] = ACTIONS(1730), + [anon_sym_has2] = ACTIONS(1730), + [anon_sym_not_DASHhas2] = ACTIONS(1730), + [anon_sym_starts_DASHwith2] = ACTIONS(1730), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1730), + [anon_sym_ends_DASHwith2] = ACTIONS(1730), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1730), + [anon_sym_EQ_EQ2] = ACTIONS(1730), + [anon_sym_BANG_EQ2] = ACTIONS(1730), + [anon_sym_LT2] = ACTIONS(1732), + [anon_sym_LT_EQ2] = ACTIONS(1730), + [anon_sym_GT_EQ2] = ACTIONS(1730), + [anon_sym_EQ_TILDE2] = ACTIONS(1730), + [anon_sym_BANG_TILDE2] = ACTIONS(1730), + [anon_sym_like2] = ACTIONS(1730), + [anon_sym_not_DASHlike2] = ACTIONS(1730), + [anon_sym_LPAREN2] = ACTIONS(1730), + [anon_sym_STAR_STAR2] = ACTIONS(1730), + [anon_sym_PLUS_PLUS2] = ACTIONS(1730), + [anon_sym_SLASH2] = ACTIONS(1732), + [anon_sym_mod2] = ACTIONS(1730), + [anon_sym_SLASH_SLASH2] = ACTIONS(1730), + [anon_sym_PLUS2] = ACTIONS(1732), + [anon_sym_bit_DASHshl2] = ACTIONS(1730), + [anon_sym_bit_DASHshr2] = ACTIONS(1730), + [anon_sym_bit_DASHand2] = ACTIONS(1730), + [anon_sym_bit_DASHxor2] = ACTIONS(1730), + [anon_sym_bit_DASHor2] = ACTIONS(1730), + [aux_sym__immediate_decimal_token1] = ACTIONS(2354), + [aux_sym__immediate_decimal_token5] = ACTIONS(2356), + [anon_sym_err_GT] = ACTIONS(1732), + [anon_sym_out_GT] = ACTIONS(1732), + [anon_sym_e_GT] = ACTIONS(1732), + [anon_sym_o_GT] = ACTIONS(1732), + [anon_sym_err_PLUSout_GT] = ACTIONS(1732), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1732), + [anon_sym_o_PLUSe_GT] = ACTIONS(1732), + [anon_sym_e_PLUSo_GT] = ACTIONS(1732), + [anon_sym_err_GT_GT] = ACTIONS(1730), + [anon_sym_out_GT_GT] = ACTIONS(1730), + [anon_sym_e_GT_GT] = ACTIONS(1730), + [anon_sym_o_GT_GT] = ACTIONS(1730), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1730), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1730), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1730), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1730), + [sym__unquoted_pattern] = ACTIONS(1732), [anon_sym_POUND] = ACTIONS(3), }, [STATE(736)] = { + [sym_cell_path] = STATE(1298), + [sym_path] = STATE(715), [sym_comment] = STATE(736), - [anon_sym_if] = ACTIONS(2232), - [anon_sym_in] = ACTIONS(2232), - [sym__newline] = ACTIONS(2232), - [anon_sym_SEMI] = ACTIONS(2232), - [anon_sym_PIPE] = ACTIONS(2232), - [anon_sym_err_GT_PIPE] = ACTIONS(2232), - [anon_sym_out_GT_PIPE] = ACTIONS(2232), - [anon_sym_e_GT_PIPE] = ACTIONS(2232), - [anon_sym_o_GT_PIPE] = ACTIONS(2232), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2232), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2232), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2232), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2232), - [anon_sym_RPAREN] = ACTIONS(2232), - [anon_sym_GT2] = ACTIONS(2234), - [anon_sym_DASH2] = ACTIONS(2232), - [anon_sym_LBRACE] = ACTIONS(2232), - [anon_sym_RBRACE] = ACTIONS(2232), - [anon_sym_EQ_GT] = ACTIONS(2232), - [anon_sym_STAR2] = ACTIONS(2234), - [anon_sym_and2] = ACTIONS(2232), - [anon_sym_xor2] = ACTIONS(2232), - [anon_sym_or2] = ACTIONS(2232), - [anon_sym_not_DASHin2] = ACTIONS(2232), - [anon_sym_has2] = ACTIONS(2232), - [anon_sym_not_DASHhas2] = ACTIONS(2232), - [anon_sym_starts_DASHwith2] = ACTIONS(2232), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2232), - [anon_sym_ends_DASHwith2] = ACTIONS(2232), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2232), - [anon_sym_EQ_EQ2] = ACTIONS(2232), - [anon_sym_BANG_EQ2] = ACTIONS(2232), - [anon_sym_LT2] = ACTIONS(2234), - [anon_sym_LT_EQ2] = ACTIONS(2232), - [anon_sym_GT_EQ2] = ACTIONS(2232), - [anon_sym_EQ_TILDE2] = ACTIONS(2232), - [anon_sym_BANG_TILDE2] = ACTIONS(2232), - [anon_sym_like2] = ACTIONS(2232), - [anon_sym_not_DASHlike2] = ACTIONS(2232), - [anon_sym_STAR_STAR2] = ACTIONS(2232), - [anon_sym_PLUS_PLUS2] = ACTIONS(2232), - [anon_sym_SLASH2] = ACTIONS(2234), - [anon_sym_mod2] = ACTIONS(2232), - [anon_sym_SLASH_SLASH2] = ACTIONS(2232), - [anon_sym_PLUS2] = ACTIONS(2234), - [anon_sym_bit_DASHshl2] = ACTIONS(2232), - [anon_sym_bit_DASHshr2] = ACTIONS(2232), - [anon_sym_bit_DASHand2] = ACTIONS(2232), - [anon_sym_bit_DASHxor2] = ACTIONS(2232), - [anon_sym_bit_DASHor2] = ACTIONS(2232), - [anon_sym_err_GT] = ACTIONS(2234), - [anon_sym_out_GT] = ACTIONS(2234), - [anon_sym_e_GT] = ACTIONS(2234), - [anon_sym_o_GT] = ACTIONS(2234), - [anon_sym_err_PLUSout_GT] = ACTIONS(2234), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2234), - [anon_sym_o_PLUSe_GT] = ACTIONS(2234), - [anon_sym_e_PLUSo_GT] = ACTIONS(2234), - [anon_sym_err_GT_GT] = ACTIONS(2232), - [anon_sym_out_GT_GT] = ACTIONS(2232), - [anon_sym_e_GT_GT] = ACTIONS(2232), - [anon_sym_o_GT_GT] = ACTIONS(2232), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2232), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2232), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2232), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2232), + [aux_sym__where_predicate_lhs_repeat1] = STATE(526), + [ts_builtin_sym_end] = ACTIONS(1871), + [anon_sym_in] = ACTIONS(1871), + [sym__newline] = ACTIONS(1871), + [anon_sym_SEMI] = ACTIONS(1871), + [anon_sym_PIPE] = ACTIONS(1871), + [anon_sym_err_GT_PIPE] = ACTIONS(1871), + [anon_sym_out_GT_PIPE] = ACTIONS(1871), + [anon_sym_e_GT_PIPE] = ACTIONS(1871), + [anon_sym_o_GT_PIPE] = ACTIONS(1871), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1871), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1871), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1871), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1871), + [anon_sym_GT2] = ACTIONS(1874), + [anon_sym_DASH2] = ACTIONS(1871), + [anon_sym_STAR2] = ACTIONS(1874), + [anon_sym_and2] = ACTIONS(1871), + [anon_sym_xor2] = ACTIONS(1871), + [anon_sym_or2] = ACTIONS(1871), + [anon_sym_not_DASHin2] = ACTIONS(1871), + [anon_sym_has2] = ACTIONS(1871), + [anon_sym_not_DASHhas2] = ACTIONS(1871), + [anon_sym_starts_DASHwith2] = ACTIONS(1871), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1871), + [anon_sym_ends_DASHwith2] = ACTIONS(1871), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1871), + [anon_sym_EQ_EQ2] = ACTIONS(1871), + [anon_sym_BANG_EQ2] = ACTIONS(1871), + [anon_sym_LT2] = ACTIONS(1874), + [anon_sym_LT_EQ2] = ACTIONS(1871), + [anon_sym_GT_EQ2] = ACTIONS(1871), + [anon_sym_EQ_TILDE2] = ACTIONS(1871), + [anon_sym_BANG_TILDE2] = ACTIONS(1871), + [anon_sym_like2] = ACTIONS(1871), + [anon_sym_not_DASHlike2] = ACTIONS(1871), + [anon_sym_STAR_STAR2] = ACTIONS(1871), + [anon_sym_PLUS_PLUS2] = ACTIONS(1871), + [anon_sym_SLASH2] = ACTIONS(1874), + [anon_sym_mod2] = ACTIONS(1871), + [anon_sym_SLASH_SLASH2] = ACTIONS(1871), + [anon_sym_PLUS2] = ACTIONS(1874), + [anon_sym_bit_DASHshl2] = ACTIONS(1871), + [anon_sym_bit_DASHshr2] = ACTIONS(1871), + [anon_sym_bit_DASHand2] = ACTIONS(1871), + [anon_sym_bit_DASHxor2] = ACTIONS(1871), + [anon_sym_bit_DASHor2] = ACTIONS(1871), + [anon_sym_DOT2] = ACTIONS(2358), + [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(1871), + [anon_sym_out_GT_GT] = ACTIONS(1871), + [anon_sym_e_GT_GT] = ACTIONS(1871), + [anon_sym_o_GT_GT] = ACTIONS(1871), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1871), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1871), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1871), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1871), [anon_sym_POUND] = ACTIONS(3), }, [STATE(737)] = { [sym_comment] = STATE(737), - [anon_sym_if] = ACTIONS(2236), - [anon_sym_in] = ACTIONS(2236), - [sym__newline] = ACTIONS(2236), - [anon_sym_SEMI] = ACTIONS(2236), - [anon_sym_PIPE] = ACTIONS(2236), - [anon_sym_err_GT_PIPE] = ACTIONS(2236), - [anon_sym_out_GT_PIPE] = ACTIONS(2236), - [anon_sym_e_GT_PIPE] = ACTIONS(2236), - [anon_sym_o_GT_PIPE] = ACTIONS(2236), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2236), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2236), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2236), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2236), - [anon_sym_RPAREN] = ACTIONS(2236), - [anon_sym_GT2] = ACTIONS(2238), - [anon_sym_DASH2] = ACTIONS(2236), - [anon_sym_LBRACE] = ACTIONS(2236), - [anon_sym_RBRACE] = ACTIONS(2236), - [anon_sym_EQ_GT] = ACTIONS(2236), - [anon_sym_STAR2] = ACTIONS(2238), - [anon_sym_and2] = ACTIONS(2236), - [anon_sym_xor2] = ACTIONS(2236), - [anon_sym_or2] = ACTIONS(2236), - [anon_sym_not_DASHin2] = ACTIONS(2236), - [anon_sym_has2] = ACTIONS(2236), - [anon_sym_not_DASHhas2] = ACTIONS(2236), - [anon_sym_starts_DASHwith2] = ACTIONS(2236), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2236), - [anon_sym_ends_DASHwith2] = ACTIONS(2236), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2236), - [anon_sym_EQ_EQ2] = ACTIONS(2236), - [anon_sym_BANG_EQ2] = ACTIONS(2236), - [anon_sym_LT2] = ACTIONS(2238), - [anon_sym_LT_EQ2] = ACTIONS(2236), - [anon_sym_GT_EQ2] = ACTIONS(2236), - [anon_sym_EQ_TILDE2] = ACTIONS(2236), - [anon_sym_BANG_TILDE2] = ACTIONS(2236), - [anon_sym_like2] = ACTIONS(2236), - [anon_sym_not_DASHlike2] = ACTIONS(2236), - [anon_sym_STAR_STAR2] = ACTIONS(2236), - [anon_sym_PLUS_PLUS2] = ACTIONS(2236), - [anon_sym_SLASH2] = ACTIONS(2238), - [anon_sym_mod2] = ACTIONS(2236), - [anon_sym_SLASH_SLASH2] = ACTIONS(2236), - [anon_sym_PLUS2] = ACTIONS(2238), - [anon_sym_bit_DASHshl2] = ACTIONS(2236), - [anon_sym_bit_DASHshr2] = ACTIONS(2236), - [anon_sym_bit_DASHand2] = ACTIONS(2236), - [anon_sym_bit_DASHxor2] = ACTIONS(2236), - [anon_sym_bit_DASHor2] = ACTIONS(2236), - [anon_sym_err_GT] = ACTIONS(2238), - [anon_sym_out_GT] = ACTIONS(2238), - [anon_sym_e_GT] = ACTIONS(2238), - [anon_sym_o_GT] = ACTIONS(2238), - [anon_sym_err_PLUSout_GT] = ACTIONS(2238), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2238), - [anon_sym_o_PLUSe_GT] = ACTIONS(2238), - [anon_sym_e_PLUSo_GT] = ACTIONS(2238), - [anon_sym_err_GT_GT] = ACTIONS(2236), - [anon_sym_out_GT_GT] = ACTIONS(2236), - [anon_sym_e_GT_GT] = ACTIONS(2236), - [anon_sym_o_GT_GT] = ACTIONS(2236), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2236), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2236), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2236), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2236), + [anon_sym_in] = ACTIONS(2132), + [sym__newline] = ACTIONS(2245), + [anon_sym_SEMI] = ACTIONS(2245), + [anon_sym_PIPE] = ACTIONS(2245), + [anon_sym_err_GT_PIPE] = ACTIONS(2245), + [anon_sym_out_GT_PIPE] = ACTIONS(2245), + [anon_sym_e_GT_PIPE] = ACTIONS(2245), + [anon_sym_o_GT_PIPE] = ACTIONS(2245), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2245), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2245), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2245), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2245), + [anon_sym_GT2] = ACTIONS(2134), + [anon_sym_DASH2] = ACTIONS(2132), + [anon_sym_RBRACE] = ACTIONS(2245), + [anon_sym_STAR2] = ACTIONS(2134), + [anon_sym_and2] = ACTIONS(2132), + [anon_sym_xor2] = ACTIONS(2132), + [anon_sym_or2] = ACTIONS(2132), + [anon_sym_not_DASHin2] = ACTIONS(2132), + [anon_sym_has2] = ACTIONS(2132), + [anon_sym_not_DASHhas2] = ACTIONS(2132), + [anon_sym_starts_DASHwith2] = ACTIONS(2132), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2132), + [anon_sym_ends_DASHwith2] = ACTIONS(2132), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2132), + [anon_sym_EQ_EQ2] = ACTIONS(2132), + [anon_sym_BANG_EQ2] = ACTIONS(2132), + [anon_sym_LT2] = ACTIONS(2134), + [anon_sym_LT_EQ2] = ACTIONS(2132), + [anon_sym_GT_EQ2] = ACTIONS(2132), + [anon_sym_EQ_TILDE2] = ACTIONS(2132), + [anon_sym_BANG_TILDE2] = ACTIONS(2132), + [anon_sym_like2] = ACTIONS(2132), + [anon_sym_not_DASHlike2] = ACTIONS(2132), + [anon_sym_STAR_STAR2] = ACTIONS(2132), + [anon_sym_PLUS_PLUS2] = ACTIONS(2132), + [anon_sym_SLASH2] = ACTIONS(2134), + [anon_sym_mod2] = ACTIONS(2132), + [anon_sym_SLASH_SLASH2] = ACTIONS(2132), + [anon_sym_PLUS2] = ACTIONS(2134), + [anon_sym_bit_DASHshl2] = ACTIONS(2132), + [anon_sym_bit_DASHshr2] = ACTIONS(2132), + [anon_sym_bit_DASHand2] = ACTIONS(2132), + [anon_sym_bit_DASHxor2] = ACTIONS(2132), + [anon_sym_bit_DASHor2] = ACTIONS(2132), + [anon_sym_DOT_DOT2] = ACTIONS(1619), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1621), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1621), + [anon_sym_COLON2] = ACTIONS(1701), + [anon_sym_err_GT] = ACTIONS(2247), + [anon_sym_out_GT] = ACTIONS(2247), + [anon_sym_e_GT] = ACTIONS(2247), + [anon_sym_o_GT] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT] = ACTIONS(2247), + [anon_sym_err_GT_GT] = ACTIONS(2245), + [anon_sym_out_GT_GT] = ACTIONS(2245), + [anon_sym_e_GT_GT] = ACTIONS(2245), + [anon_sym_o_GT_GT] = ACTIONS(2245), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2245), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2245), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2245), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2245), [anon_sym_POUND] = ACTIONS(3), }, [STATE(738)] = { - [sym_expr_unary] = STATE(1323), - [sym__expr_unary_minus] = STATE(1290), - [sym_expr_binary] = STATE(1323), - [sym__expr_binary_expression] = STATE(1281), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1323), - [sym__val_range] = STATE(4744), - [sym__value] = STATE(1323), - [sym_val_nothing] = STATE(1295), - [sym_val_bool] = STATE(1027), - [sym_val_variable] = STATE(933), - [sym_val_cellpath] = STATE(1295), - [sym_val_number] = STATE(1295), - [sym__val_number_decimal] = STATE(463), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1295), - [sym_val_filesize] = STATE(1295), - [sym_val_binary] = STATE(1295), - [sym_val_string] = STATE(1295), - [sym__raw_str] = STATE(502), - [sym__str_double_quotes] = STATE(502), - [sym__str_single_quotes] = STATE(502), - [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1295), - [sym__inter_single_quotes] = STATE(1306), - [sym__inter_double_quotes] = STATE(1317), - [sym_val_list] = STATE(1295), - [sym_val_record] = STATE(1295), - [sym_val_table] = STATE(1295), - [sym_val_closure] = STATE(1295), - [sym_unquoted] = STATE(1006), - [sym__unquoted_with_expr] = STATE(1292), - [sym__unquoted_anonymous_prefix] = STATE(4744), [sym_comment] = STATE(738), - [anon_sym_true] = ACTIONS(2208), - [anon_sym_false] = ACTIONS(2208), - [anon_sym_null] = ACTIONS(2210), - [aux_sym_cmd_identifier_token3] = ACTIONS(2212), - [aux_sym_cmd_identifier_token4] = ACTIONS(2212), - [aux_sym_cmd_identifier_token5] = ACTIONS(2212), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1008), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2214), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2216), - [anon_sym_DOT_DOT_LT] = ACTIONS(2216), - [aux_sym__val_number_decimal_token1] = ACTIONS(2218), - [aux_sym__val_number_decimal_token2] = ACTIONS(2220), - [aux_sym__val_number_decimal_token3] = ACTIONS(2222), - [aux_sym__val_number_decimal_token4] = ACTIONS(2222), - [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(2224), - [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(2226), + [anon_sym_in] = ACTIONS(2360), + [sym__newline] = ACTIONS(2360), + [anon_sym_SEMI] = ACTIONS(2360), + [anon_sym_PIPE] = ACTIONS(2360), + [anon_sym_err_GT_PIPE] = ACTIONS(2360), + [anon_sym_out_GT_PIPE] = ACTIONS(2360), + [anon_sym_e_GT_PIPE] = ACTIONS(2360), + [anon_sym_o_GT_PIPE] = ACTIONS(2360), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2360), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2360), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2360), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2360), + [anon_sym_RPAREN] = ACTIONS(2360), + [anon_sym_GT2] = ACTIONS(2362), + [anon_sym_DASH2] = ACTIONS(2360), + [anon_sym_LBRACE] = ACTIONS(2360), + [anon_sym_RBRACE] = ACTIONS(2360), + [anon_sym_STAR2] = ACTIONS(2362), + [anon_sym_and2] = ACTIONS(2360), + [anon_sym_xor2] = ACTIONS(2360), + [anon_sym_or2] = ACTIONS(2360), + [anon_sym_not_DASHin2] = ACTIONS(2360), + [anon_sym_has2] = ACTIONS(2360), + [anon_sym_not_DASHhas2] = ACTIONS(2360), + [anon_sym_starts_DASHwith2] = ACTIONS(2360), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2360), + [anon_sym_ends_DASHwith2] = ACTIONS(2360), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2360), + [anon_sym_EQ_EQ2] = ACTIONS(2360), + [anon_sym_BANG_EQ2] = ACTIONS(2360), + [anon_sym_LT2] = ACTIONS(2362), + [anon_sym_LT_EQ2] = ACTIONS(2360), + [anon_sym_GT_EQ2] = ACTIONS(2360), + [anon_sym_EQ_TILDE2] = ACTIONS(2360), + [anon_sym_BANG_TILDE2] = ACTIONS(2360), + [anon_sym_like2] = ACTIONS(2360), + [anon_sym_not_DASHlike2] = ACTIONS(2360), + [anon_sym_LPAREN2] = ACTIONS(2360), + [anon_sym_STAR_STAR2] = ACTIONS(2360), + [anon_sym_PLUS_PLUS2] = ACTIONS(2360), + [anon_sym_SLASH2] = ACTIONS(2362), + [anon_sym_mod2] = ACTIONS(2360), + [anon_sym_SLASH_SLASH2] = ACTIONS(2360), + [anon_sym_PLUS2] = ACTIONS(2362), + [anon_sym_bit_DASHshl2] = ACTIONS(2360), + [anon_sym_bit_DASHshr2] = ACTIONS(2360), + [anon_sym_bit_DASHand2] = ACTIONS(2360), + [anon_sym_bit_DASHxor2] = ACTIONS(2360), + [anon_sym_bit_DASHor2] = ACTIONS(2360), + [anon_sym_err_GT] = ACTIONS(2362), + [anon_sym_out_GT] = ACTIONS(2362), + [anon_sym_e_GT] = ACTIONS(2362), + [anon_sym_o_GT] = ACTIONS(2362), + [anon_sym_err_PLUSout_GT] = ACTIONS(2362), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2362), + [anon_sym_o_PLUSe_GT] = ACTIONS(2362), + [anon_sym_e_PLUSo_GT] = ACTIONS(2362), + [anon_sym_err_GT_GT] = ACTIONS(2360), + [anon_sym_out_GT_GT] = ACTIONS(2360), + [anon_sym_e_GT_GT] = ACTIONS(2360), + [anon_sym_o_GT_GT] = ACTIONS(2360), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2360), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2360), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2360), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2360), + [sym__unquoted_pattern] = ACTIONS(2362), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), }, [STATE(739)] = { [sym_comment] = STATE(739), - [anon_sym_if] = ACTIONS(2240), - [anon_sym_in] = ACTIONS(2240), - [sym__newline] = ACTIONS(2240), - [anon_sym_SEMI] = ACTIONS(2240), - [anon_sym_PIPE] = ACTIONS(2240), - [anon_sym_err_GT_PIPE] = ACTIONS(2240), - [anon_sym_out_GT_PIPE] = ACTIONS(2240), - [anon_sym_e_GT_PIPE] = ACTIONS(2240), - [anon_sym_o_GT_PIPE] = ACTIONS(2240), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2240), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2240), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2240), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2240), - [anon_sym_RPAREN] = ACTIONS(2240), - [anon_sym_GT2] = ACTIONS(2242), - [anon_sym_DASH2] = ACTIONS(2240), - [anon_sym_LBRACE] = ACTIONS(2240), - [anon_sym_RBRACE] = ACTIONS(2240), - [anon_sym_EQ_GT] = ACTIONS(2240), - [anon_sym_STAR2] = ACTIONS(2242), - [anon_sym_and2] = ACTIONS(2240), - [anon_sym_xor2] = ACTIONS(2240), - [anon_sym_or2] = ACTIONS(2240), - [anon_sym_not_DASHin2] = ACTIONS(2240), - [anon_sym_has2] = ACTIONS(2240), - [anon_sym_not_DASHhas2] = ACTIONS(2240), - [anon_sym_starts_DASHwith2] = ACTIONS(2240), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2240), - [anon_sym_ends_DASHwith2] = ACTIONS(2240), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2240), - [anon_sym_EQ_EQ2] = ACTIONS(2240), - [anon_sym_BANG_EQ2] = ACTIONS(2240), - [anon_sym_LT2] = ACTIONS(2242), - [anon_sym_LT_EQ2] = ACTIONS(2240), - [anon_sym_GT_EQ2] = ACTIONS(2240), - [anon_sym_EQ_TILDE2] = ACTIONS(2240), - [anon_sym_BANG_TILDE2] = ACTIONS(2240), - [anon_sym_like2] = ACTIONS(2240), - [anon_sym_not_DASHlike2] = ACTIONS(2240), - [anon_sym_STAR_STAR2] = ACTIONS(2240), - [anon_sym_PLUS_PLUS2] = ACTIONS(2240), - [anon_sym_SLASH2] = ACTIONS(2242), - [anon_sym_mod2] = ACTIONS(2240), - [anon_sym_SLASH_SLASH2] = ACTIONS(2240), - [anon_sym_PLUS2] = ACTIONS(2242), - [anon_sym_bit_DASHshl2] = ACTIONS(2240), - [anon_sym_bit_DASHshr2] = ACTIONS(2240), - [anon_sym_bit_DASHand2] = ACTIONS(2240), - [anon_sym_bit_DASHxor2] = ACTIONS(2240), - [anon_sym_bit_DASHor2] = ACTIONS(2240), - [anon_sym_err_GT] = ACTIONS(2242), - [anon_sym_out_GT] = ACTIONS(2242), - [anon_sym_e_GT] = ACTIONS(2242), - [anon_sym_o_GT] = ACTIONS(2242), - [anon_sym_err_PLUSout_GT] = ACTIONS(2242), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2242), - [anon_sym_o_PLUSe_GT] = ACTIONS(2242), - [anon_sym_e_PLUSo_GT] = ACTIONS(2242), - [anon_sym_err_GT_GT] = ACTIONS(2240), - [anon_sym_out_GT_GT] = ACTIONS(2240), - [anon_sym_e_GT_GT] = ACTIONS(2240), - [anon_sym_o_GT_GT] = ACTIONS(2240), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2240), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2240), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2240), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2240), + [anon_sym_in] = ACTIONS(2364), + [sym__newline] = ACTIONS(2366), + [anon_sym_SEMI] = ACTIONS(2369), + [anon_sym_PIPE] = ACTIONS(2369), + [anon_sym_err_GT_PIPE] = ACTIONS(2369), + [anon_sym_out_GT_PIPE] = ACTIONS(2369), + [anon_sym_e_GT_PIPE] = ACTIONS(2369), + [anon_sym_o_GT_PIPE] = ACTIONS(2369), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2369), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2369), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2369), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2369), + [anon_sym_RPAREN] = ACTIONS(2369), + [anon_sym_GT2] = ACTIONS(2371), + [anon_sym_DASH2] = ACTIONS(2364), + [anon_sym_LBRACE] = ACTIONS(2369), + [anon_sym_STAR2] = ACTIONS(2371), + [anon_sym_and2] = ACTIONS(2364), + [anon_sym_xor2] = ACTIONS(2364), + [anon_sym_or2] = ACTIONS(2364), + [anon_sym_not_DASHin2] = ACTIONS(2364), + [anon_sym_has2] = ACTIONS(2364), + [anon_sym_not_DASHhas2] = ACTIONS(2364), + [anon_sym_starts_DASHwith2] = ACTIONS(2364), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2364), + [anon_sym_ends_DASHwith2] = ACTIONS(2364), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2364), + [anon_sym_EQ_EQ2] = ACTIONS(2364), + [anon_sym_BANG_EQ2] = ACTIONS(2364), + [anon_sym_LT2] = ACTIONS(2371), + [anon_sym_LT_EQ2] = ACTIONS(2364), + [anon_sym_GT_EQ2] = ACTIONS(2364), + [anon_sym_EQ_TILDE2] = ACTIONS(2364), + [anon_sym_BANG_TILDE2] = ACTIONS(2364), + [anon_sym_like2] = ACTIONS(2364), + [anon_sym_not_DASHlike2] = ACTIONS(2364), + [anon_sym_STAR_STAR2] = ACTIONS(2364), + [anon_sym_PLUS_PLUS2] = ACTIONS(2364), + [anon_sym_SLASH2] = ACTIONS(2371), + [anon_sym_mod2] = ACTIONS(2364), + [anon_sym_SLASH_SLASH2] = ACTIONS(2364), + [anon_sym_PLUS2] = ACTIONS(2371), + [anon_sym_bit_DASHshl2] = ACTIONS(2364), + [anon_sym_bit_DASHshr2] = ACTIONS(2364), + [anon_sym_bit_DASHand2] = ACTIONS(2364), + [anon_sym_bit_DASHxor2] = ACTIONS(2364), + [anon_sym_bit_DASHor2] = ACTIONS(2364), + [anon_sym_DOT_DOT2] = ACTIONS(1619), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1621), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1621), + [anon_sym_err_GT] = ACTIONS(2373), + [anon_sym_out_GT] = ACTIONS(2373), + [anon_sym_e_GT] = ACTIONS(2373), + [anon_sym_o_GT] = ACTIONS(2373), + [anon_sym_err_PLUSout_GT] = ACTIONS(2373), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2373), + [anon_sym_o_PLUSe_GT] = ACTIONS(2373), + [anon_sym_e_PLUSo_GT] = ACTIONS(2373), + [anon_sym_err_GT_GT] = ACTIONS(2369), + [anon_sym_out_GT_GT] = ACTIONS(2369), + [anon_sym_e_GT_GT] = ACTIONS(2369), + [anon_sym_o_GT_GT] = ACTIONS(2369), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2369), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2369), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2369), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2369), [anon_sym_POUND] = ACTIONS(3), }, [STATE(740)] = { - [sym_expr_unary] = STATE(1323), - [sym__expr_unary_minus] = STATE(1290), - [sym_expr_binary] = STATE(1323), - [sym__expr_binary_expression] = STATE(1291), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1323), - [sym__val_range] = STATE(4744), - [sym__value] = STATE(1323), - [sym_val_nothing] = STATE(1295), - [sym_val_bool] = STATE(1027), - [sym_val_variable] = STATE(933), - [sym_val_cellpath] = STATE(1295), - [sym_val_number] = STATE(1295), - [sym__val_number_decimal] = STATE(463), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1295), - [sym_val_filesize] = STATE(1295), - [sym_val_binary] = STATE(1295), - [sym_val_string] = STATE(1295), - [sym__raw_str] = STATE(502), - [sym__str_double_quotes] = STATE(502), - [sym__str_single_quotes] = STATE(502), - [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1295), - [sym__inter_single_quotes] = STATE(1306), - [sym__inter_double_quotes] = STATE(1317), - [sym_val_list] = STATE(1295), - [sym_val_record] = STATE(1295), - [sym_val_table] = STATE(1295), - [sym_val_closure] = STATE(1295), - [sym_unquoted] = STATE(1108), - [sym__unquoted_with_expr] = STATE(1305), - [sym__unquoted_anonymous_prefix] = STATE(4744), + [aux_sym__repeat_newline] = STATE(1030), + [sym__expr_parenthesized_immediate] = STATE(5073), [sym_comment] = STATE(740), - [anon_sym_true] = ACTIONS(2208), - [anon_sym_false] = ACTIONS(2208), - [anon_sym_null] = ACTIONS(2210), - [aux_sym_cmd_identifier_token3] = ACTIONS(2212), - [aux_sym_cmd_identifier_token4] = ACTIONS(2212), - [aux_sym_cmd_identifier_token5] = ACTIONS(2212), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1008), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2214), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2216), - [anon_sym_DOT_DOT_LT] = ACTIONS(2216), - [aux_sym__val_number_decimal_token1] = ACTIONS(2218), - [aux_sym__val_number_decimal_token2] = ACTIONS(2220), - [aux_sym__val_number_decimal_token3] = ACTIONS(2222), - [aux_sym__val_number_decimal_token4] = ACTIONS(2222), - [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(2224), - [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(2226), + [anon_sym_in] = ACTIONS(2346), + [sym__newline] = ACTIONS(2346), + [anon_sym_SEMI] = 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_RPAREN] = ACTIONS(2346), + [anon_sym_GT2] = ACTIONS(2348), + [anon_sym_DASH2] = ACTIONS(2346), + [anon_sym_LBRACE] = ACTIONS(2346), + [anon_sym_STAR2] = ACTIONS(2348), + [anon_sym_and2] = ACTIONS(2346), + [anon_sym_xor2] = ACTIONS(2346), + [anon_sym_or2] = ACTIONS(2346), + [anon_sym_not_DASHin2] = ACTIONS(2346), + [anon_sym_has2] = ACTIONS(2346), + [anon_sym_not_DASHhas2] = ACTIONS(2346), + [anon_sym_starts_DASHwith2] = ACTIONS(2346), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2346), + [anon_sym_ends_DASHwith2] = ACTIONS(2346), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2346), + [anon_sym_EQ_EQ2] = ACTIONS(2346), + [anon_sym_BANG_EQ2] = ACTIONS(2346), + [anon_sym_LT2] = ACTIONS(2348), + [anon_sym_LT_EQ2] = ACTIONS(2346), + [anon_sym_GT_EQ2] = ACTIONS(2346), + [anon_sym_EQ_TILDE2] = ACTIONS(2346), + [anon_sym_BANG_TILDE2] = ACTIONS(2346), + [anon_sym_like2] = ACTIONS(2346), + [anon_sym_not_DASHlike2] = ACTIONS(2346), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_STAR_STAR2] = ACTIONS(2346), + [anon_sym_PLUS_PLUS2] = ACTIONS(2346), + [anon_sym_SLASH2] = ACTIONS(2348), + [anon_sym_mod2] = ACTIONS(2346), + [anon_sym_SLASH_SLASH2] = ACTIONS(2346), + [anon_sym_PLUS2] = ACTIONS(2348), + [anon_sym_bit_DASHshl2] = ACTIONS(2346), + [anon_sym_bit_DASHshr2] = ACTIONS(2346), + [anon_sym_bit_DASHand2] = ACTIONS(2346), + [anon_sym_bit_DASHxor2] = ACTIONS(2346), + [anon_sym_bit_DASHor2] = ACTIONS(2346), + [anon_sym_err_GT] = ACTIONS(2348), + [anon_sym_out_GT] = ACTIONS(2348), + [anon_sym_e_GT] = ACTIONS(2348), + [anon_sym_o_GT] = ACTIONS(2348), + [anon_sym_err_PLUSout_GT] = ACTIONS(2348), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2348), + [anon_sym_o_PLUSe_GT] = ACTIONS(2348), + [anon_sym_e_PLUSo_GT] = ACTIONS(2348), + [anon_sym_err_GT_GT] = ACTIONS(2346), + [anon_sym_out_GT_GT] = ACTIONS(2346), + [anon_sym_e_GT_GT] = ACTIONS(2346), + [anon_sym_o_GT_GT] = ACTIONS(2346), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2346), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2346), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2346), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2346), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), }, [STATE(741)] = { + [aux_sym__repeat_newline] = STATE(1038), + [sym__expr_parenthesized_immediate] = STATE(5073), [sym_comment] = STATE(741), - [anon_sym_if] = ACTIONS(2244), - [anon_sym_in] = ACTIONS(2244), - [sym__newline] = ACTIONS(2244), - [anon_sym_SEMI] = ACTIONS(2244), - [anon_sym_PIPE] = ACTIONS(2244), - [anon_sym_err_GT_PIPE] = ACTIONS(2244), - [anon_sym_out_GT_PIPE] = ACTIONS(2244), - [anon_sym_e_GT_PIPE] = ACTIONS(2244), - [anon_sym_o_GT_PIPE] = ACTIONS(2244), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2244), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2244), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2244), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2244), - [anon_sym_RPAREN] = ACTIONS(2244), - [anon_sym_GT2] = ACTIONS(2246), - [anon_sym_DASH2] = ACTIONS(2244), - [anon_sym_LBRACE] = ACTIONS(2244), - [anon_sym_RBRACE] = ACTIONS(2244), - [anon_sym_EQ_GT] = ACTIONS(2244), - [anon_sym_STAR2] = ACTIONS(2246), - [anon_sym_and2] = ACTIONS(2244), - [anon_sym_xor2] = ACTIONS(2244), - [anon_sym_or2] = ACTIONS(2244), - [anon_sym_not_DASHin2] = ACTIONS(2244), - [anon_sym_has2] = ACTIONS(2244), - [anon_sym_not_DASHhas2] = ACTIONS(2244), - [anon_sym_starts_DASHwith2] = ACTIONS(2244), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2244), - [anon_sym_ends_DASHwith2] = ACTIONS(2244), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2244), - [anon_sym_EQ_EQ2] = ACTIONS(2244), - [anon_sym_BANG_EQ2] = ACTIONS(2244), - [anon_sym_LT2] = ACTIONS(2246), - [anon_sym_LT_EQ2] = ACTIONS(2244), - [anon_sym_GT_EQ2] = ACTIONS(2244), - [anon_sym_EQ_TILDE2] = ACTIONS(2244), - [anon_sym_BANG_TILDE2] = ACTIONS(2244), - [anon_sym_like2] = ACTIONS(2244), - [anon_sym_not_DASHlike2] = ACTIONS(2244), - [anon_sym_STAR_STAR2] = ACTIONS(2244), - [anon_sym_PLUS_PLUS2] = ACTIONS(2244), - [anon_sym_SLASH2] = ACTIONS(2246), - [anon_sym_mod2] = ACTIONS(2244), - [anon_sym_SLASH_SLASH2] = ACTIONS(2244), - [anon_sym_PLUS2] = ACTIONS(2246), - [anon_sym_bit_DASHshl2] = ACTIONS(2244), - [anon_sym_bit_DASHshr2] = ACTIONS(2244), - [anon_sym_bit_DASHand2] = ACTIONS(2244), - [anon_sym_bit_DASHxor2] = ACTIONS(2244), - [anon_sym_bit_DASHor2] = ACTIONS(2244), - [anon_sym_err_GT] = ACTIONS(2246), - [anon_sym_out_GT] = ACTIONS(2246), - [anon_sym_e_GT] = ACTIONS(2246), - [anon_sym_o_GT] = ACTIONS(2246), - [anon_sym_err_PLUSout_GT] = ACTIONS(2246), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2246), - [anon_sym_o_PLUSe_GT] = ACTIONS(2246), - [anon_sym_e_PLUSo_GT] = ACTIONS(2246), - [anon_sym_err_GT_GT] = ACTIONS(2244), - [anon_sym_out_GT_GT] = ACTIONS(2244), - [anon_sym_e_GT_GT] = ACTIONS(2244), - [anon_sym_o_GT_GT] = ACTIONS(2244), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2244), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2244), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2244), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2244), + [anon_sym_in] = ACTIONS(2346), + [sym__newline] = ACTIONS(2346), + [anon_sym_SEMI] = 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_RPAREN] = ACTIONS(2346), + [anon_sym_GT2] = ACTIONS(2348), + [anon_sym_DASH2] = ACTIONS(2346), + [anon_sym_LBRACE] = ACTIONS(2346), + [anon_sym_STAR2] = ACTIONS(2348), + [anon_sym_and2] = ACTIONS(2346), + [anon_sym_xor2] = ACTIONS(2346), + [anon_sym_or2] = ACTIONS(2346), + [anon_sym_not_DASHin2] = ACTIONS(2346), + [anon_sym_has2] = ACTIONS(2346), + [anon_sym_not_DASHhas2] = ACTIONS(2346), + [anon_sym_starts_DASHwith2] = ACTIONS(2346), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2346), + [anon_sym_ends_DASHwith2] = ACTIONS(2346), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2346), + [anon_sym_EQ_EQ2] = ACTIONS(2346), + [anon_sym_BANG_EQ2] = ACTIONS(2346), + [anon_sym_LT2] = ACTIONS(2348), + [anon_sym_LT_EQ2] = ACTIONS(2346), + [anon_sym_GT_EQ2] = ACTIONS(2346), + [anon_sym_EQ_TILDE2] = ACTIONS(2346), + [anon_sym_BANG_TILDE2] = ACTIONS(2346), + [anon_sym_like2] = ACTIONS(2346), + [anon_sym_not_DASHlike2] = ACTIONS(2346), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_STAR_STAR2] = ACTIONS(2346), + [anon_sym_PLUS_PLUS2] = ACTIONS(2346), + [anon_sym_SLASH2] = ACTIONS(2348), + [anon_sym_mod2] = ACTIONS(2346), + [anon_sym_SLASH_SLASH2] = ACTIONS(2346), + [anon_sym_PLUS2] = ACTIONS(2348), + [anon_sym_bit_DASHshl2] = ACTIONS(2346), + [anon_sym_bit_DASHshr2] = ACTIONS(2346), + [anon_sym_bit_DASHand2] = ACTIONS(2346), + [anon_sym_bit_DASHxor2] = ACTIONS(2346), + [anon_sym_bit_DASHor2] = ACTIONS(2346), + [anon_sym_err_GT] = ACTIONS(2348), + [anon_sym_out_GT] = ACTIONS(2348), + [anon_sym_e_GT] = ACTIONS(2348), + [anon_sym_o_GT] = ACTIONS(2348), + [anon_sym_err_PLUSout_GT] = ACTIONS(2348), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2348), + [anon_sym_o_PLUSe_GT] = ACTIONS(2348), + [anon_sym_e_PLUSo_GT] = ACTIONS(2348), + [anon_sym_err_GT_GT] = ACTIONS(2346), + [anon_sym_out_GT_GT] = ACTIONS(2346), + [anon_sym_e_GT_GT] = ACTIONS(2346), + [anon_sym_o_GT_GT] = ACTIONS(2346), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2346), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2346), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2346), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2346), [anon_sym_POUND] = ACTIONS(3), }, [STATE(742)] = { + [aux_sym__repeat_newline] = STATE(1039), + [sym__expr_parenthesized_immediate] = STATE(5073), [sym_comment] = STATE(742), - [anon_sym_if] = ACTIONS(2248), - [anon_sym_in] = ACTIONS(2248), - [sym__newline] = ACTIONS(2248), - [anon_sym_SEMI] = ACTIONS(2248), - [anon_sym_PIPE] = ACTIONS(2248), - [anon_sym_err_GT_PIPE] = ACTIONS(2248), - [anon_sym_out_GT_PIPE] = ACTIONS(2248), - [anon_sym_e_GT_PIPE] = ACTIONS(2248), - [anon_sym_o_GT_PIPE] = ACTIONS(2248), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2248), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2248), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2248), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2248), - [anon_sym_RPAREN] = ACTIONS(2248), - [anon_sym_GT2] = ACTIONS(2250), - [anon_sym_DASH2] = ACTIONS(2248), - [anon_sym_LBRACE] = ACTIONS(2248), - [anon_sym_RBRACE] = ACTIONS(2248), - [anon_sym_EQ_GT] = ACTIONS(2248), - [anon_sym_STAR2] = ACTIONS(2250), - [anon_sym_and2] = ACTIONS(2248), - [anon_sym_xor2] = ACTIONS(2248), - [anon_sym_or2] = ACTIONS(2248), - [anon_sym_not_DASHin2] = ACTIONS(2248), - [anon_sym_has2] = ACTIONS(2248), - [anon_sym_not_DASHhas2] = ACTIONS(2248), - [anon_sym_starts_DASHwith2] = ACTIONS(2248), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2248), - [anon_sym_ends_DASHwith2] = ACTIONS(2248), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2248), - [anon_sym_EQ_EQ2] = ACTIONS(2248), - [anon_sym_BANG_EQ2] = ACTIONS(2248), - [anon_sym_LT2] = ACTIONS(2250), - [anon_sym_LT_EQ2] = ACTIONS(2248), - [anon_sym_GT_EQ2] = ACTIONS(2248), - [anon_sym_EQ_TILDE2] = ACTIONS(2248), - [anon_sym_BANG_TILDE2] = ACTIONS(2248), - [anon_sym_like2] = ACTIONS(2248), - [anon_sym_not_DASHlike2] = ACTIONS(2248), - [anon_sym_STAR_STAR2] = ACTIONS(2248), - [anon_sym_PLUS_PLUS2] = ACTIONS(2248), - [anon_sym_SLASH2] = ACTIONS(2250), - [anon_sym_mod2] = ACTIONS(2248), - [anon_sym_SLASH_SLASH2] = ACTIONS(2248), - [anon_sym_PLUS2] = ACTIONS(2250), - [anon_sym_bit_DASHshl2] = ACTIONS(2248), - [anon_sym_bit_DASHshr2] = ACTIONS(2248), - [anon_sym_bit_DASHand2] = ACTIONS(2248), - [anon_sym_bit_DASHxor2] = ACTIONS(2248), - [anon_sym_bit_DASHor2] = ACTIONS(2248), - [anon_sym_err_GT] = ACTIONS(2250), - [anon_sym_out_GT] = ACTIONS(2250), - [anon_sym_e_GT] = ACTIONS(2250), - [anon_sym_o_GT] = ACTIONS(2250), - [anon_sym_err_PLUSout_GT] = ACTIONS(2250), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2250), - [anon_sym_o_PLUSe_GT] = ACTIONS(2250), - [anon_sym_e_PLUSo_GT] = ACTIONS(2250), - [anon_sym_err_GT_GT] = ACTIONS(2248), - [anon_sym_out_GT_GT] = ACTIONS(2248), - [anon_sym_e_GT_GT] = ACTIONS(2248), - [anon_sym_o_GT_GT] = ACTIONS(2248), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2248), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2248), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2248), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2248), + [anon_sym_in] = ACTIONS(2346), + [sym__newline] = ACTIONS(2346), + [anon_sym_SEMI] = 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_RPAREN] = ACTIONS(2346), + [anon_sym_GT2] = ACTIONS(2348), + [anon_sym_DASH2] = ACTIONS(2346), + [anon_sym_LBRACE] = ACTIONS(2346), + [anon_sym_STAR2] = ACTIONS(2348), + [anon_sym_and2] = ACTIONS(2346), + [anon_sym_xor2] = ACTIONS(2346), + [anon_sym_or2] = ACTIONS(2346), + [anon_sym_not_DASHin2] = ACTIONS(2346), + [anon_sym_has2] = ACTIONS(2346), + [anon_sym_not_DASHhas2] = ACTIONS(2346), + [anon_sym_starts_DASHwith2] = ACTIONS(2346), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2346), + [anon_sym_ends_DASHwith2] = ACTIONS(2346), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2346), + [anon_sym_EQ_EQ2] = ACTIONS(2346), + [anon_sym_BANG_EQ2] = ACTIONS(2346), + [anon_sym_LT2] = ACTIONS(2348), + [anon_sym_LT_EQ2] = ACTIONS(2346), + [anon_sym_GT_EQ2] = ACTIONS(2346), + [anon_sym_EQ_TILDE2] = ACTIONS(2346), + [anon_sym_BANG_TILDE2] = ACTIONS(2346), + [anon_sym_like2] = ACTIONS(2346), + [anon_sym_not_DASHlike2] = ACTIONS(2346), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_STAR_STAR2] = ACTIONS(2346), + [anon_sym_PLUS_PLUS2] = ACTIONS(2346), + [anon_sym_SLASH2] = ACTIONS(2348), + [anon_sym_mod2] = ACTIONS(2346), + [anon_sym_SLASH_SLASH2] = ACTIONS(2346), + [anon_sym_PLUS2] = ACTIONS(2348), + [anon_sym_bit_DASHshl2] = ACTIONS(2346), + [anon_sym_bit_DASHshr2] = ACTIONS(2346), + [anon_sym_bit_DASHand2] = ACTIONS(2346), + [anon_sym_bit_DASHxor2] = ACTIONS(2346), + [anon_sym_bit_DASHor2] = ACTIONS(2346), + [anon_sym_err_GT] = ACTIONS(2348), + [anon_sym_out_GT] = ACTIONS(2348), + [anon_sym_e_GT] = ACTIONS(2348), + [anon_sym_o_GT] = ACTIONS(2348), + [anon_sym_err_PLUSout_GT] = ACTIONS(2348), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2348), + [anon_sym_o_PLUSe_GT] = ACTIONS(2348), + [anon_sym_e_PLUSo_GT] = ACTIONS(2348), + [anon_sym_err_GT_GT] = ACTIONS(2346), + [anon_sym_out_GT_GT] = ACTIONS(2346), + [anon_sym_e_GT_GT] = ACTIONS(2346), + [anon_sym_o_GT_GT] = ACTIONS(2346), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2346), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2346), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2346), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2346), [anon_sym_POUND] = ACTIONS(3), }, [STATE(743)] = { [sym_comment] = STATE(743), - [anon_sym_if] = ACTIONS(2252), - [anon_sym_in] = ACTIONS(2252), - [sym__newline] = ACTIONS(2252), - [anon_sym_SEMI] = ACTIONS(2252), - [anon_sym_PIPE] = ACTIONS(2252), - [anon_sym_err_GT_PIPE] = ACTIONS(2252), - [anon_sym_out_GT_PIPE] = ACTIONS(2252), - [anon_sym_e_GT_PIPE] = ACTIONS(2252), - [anon_sym_o_GT_PIPE] = ACTIONS(2252), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2252), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2252), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2252), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2252), - [anon_sym_RPAREN] = ACTIONS(2252), - [anon_sym_GT2] = ACTIONS(2254), - [anon_sym_DASH2] = ACTIONS(2252), - [anon_sym_LBRACE] = ACTIONS(2252), - [anon_sym_RBRACE] = ACTIONS(2252), - [anon_sym_EQ_GT] = ACTIONS(2252), - [anon_sym_STAR2] = ACTIONS(2254), - [anon_sym_and2] = ACTIONS(2252), - [anon_sym_xor2] = ACTIONS(2252), - [anon_sym_or2] = ACTIONS(2252), - [anon_sym_not_DASHin2] = ACTIONS(2252), - [anon_sym_has2] = ACTIONS(2252), - [anon_sym_not_DASHhas2] = ACTIONS(2252), - [anon_sym_starts_DASHwith2] = ACTIONS(2252), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2252), - [anon_sym_ends_DASHwith2] = ACTIONS(2252), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2252), - [anon_sym_EQ_EQ2] = ACTIONS(2252), - [anon_sym_BANG_EQ2] = ACTIONS(2252), - [anon_sym_LT2] = ACTIONS(2254), - [anon_sym_LT_EQ2] = ACTIONS(2252), - [anon_sym_GT_EQ2] = ACTIONS(2252), - [anon_sym_EQ_TILDE2] = ACTIONS(2252), - [anon_sym_BANG_TILDE2] = ACTIONS(2252), - [anon_sym_like2] = ACTIONS(2252), - [anon_sym_not_DASHlike2] = ACTIONS(2252), - [anon_sym_STAR_STAR2] = ACTIONS(2252), - [anon_sym_PLUS_PLUS2] = ACTIONS(2252), - [anon_sym_SLASH2] = ACTIONS(2254), - [anon_sym_mod2] = ACTIONS(2252), - [anon_sym_SLASH_SLASH2] = ACTIONS(2252), - [anon_sym_PLUS2] = ACTIONS(2254), - [anon_sym_bit_DASHshl2] = ACTIONS(2252), - [anon_sym_bit_DASHshr2] = ACTIONS(2252), - [anon_sym_bit_DASHand2] = ACTIONS(2252), - [anon_sym_bit_DASHxor2] = ACTIONS(2252), - [anon_sym_bit_DASHor2] = ACTIONS(2252), - [anon_sym_err_GT] = ACTIONS(2254), - [anon_sym_out_GT] = ACTIONS(2254), - [anon_sym_e_GT] = ACTIONS(2254), - [anon_sym_o_GT] = ACTIONS(2254), - [anon_sym_err_PLUSout_GT] = ACTIONS(2254), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2254), - [anon_sym_o_PLUSe_GT] = ACTIONS(2254), - [anon_sym_e_PLUSo_GT] = ACTIONS(2254), - [anon_sym_err_GT_GT] = ACTIONS(2252), - [anon_sym_out_GT_GT] = ACTIONS(2252), - [anon_sym_e_GT_GT] = ACTIONS(2252), - [anon_sym_o_GT_GT] = ACTIONS(2252), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2252), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2252), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2252), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2252), + [ts_builtin_sym_end] = ACTIONS(1790), + [anon_sym_in] = ACTIONS(1790), + [sym__newline] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym_PIPE] = ACTIONS(1790), + [anon_sym_err_GT_PIPE] = ACTIONS(1790), + [anon_sym_out_GT_PIPE] = ACTIONS(1790), + [anon_sym_e_GT_PIPE] = ACTIONS(1790), + [anon_sym_o_GT_PIPE] = ACTIONS(1790), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1790), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1790), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1790), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1790), + [anon_sym_GT2] = ACTIONS(1792), + [anon_sym_DASH2] = ACTIONS(1790), + [anon_sym_STAR2] = ACTIONS(1792), + [anon_sym_and2] = ACTIONS(1790), + [anon_sym_xor2] = ACTIONS(1790), + [anon_sym_or2] = ACTIONS(1790), + [anon_sym_not_DASHin2] = ACTIONS(1790), + [anon_sym_has2] = ACTIONS(1790), + [anon_sym_not_DASHhas2] = ACTIONS(1790), + [anon_sym_starts_DASHwith2] = ACTIONS(1790), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1790), + [anon_sym_ends_DASHwith2] = ACTIONS(1790), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1790), + [anon_sym_EQ_EQ2] = ACTIONS(1790), + [anon_sym_BANG_EQ2] = ACTIONS(1790), + [anon_sym_LT2] = ACTIONS(1792), + [anon_sym_LT_EQ2] = ACTIONS(1790), + [anon_sym_GT_EQ2] = ACTIONS(1790), + [anon_sym_EQ_TILDE2] = ACTIONS(1790), + [anon_sym_BANG_TILDE2] = ACTIONS(1790), + [anon_sym_like2] = ACTIONS(1790), + [anon_sym_not_DASHlike2] = ACTIONS(1790), + [anon_sym_LPAREN2] = ACTIONS(1790), + [anon_sym_STAR_STAR2] = ACTIONS(1790), + [anon_sym_PLUS_PLUS2] = ACTIONS(1790), + [anon_sym_SLASH2] = ACTIONS(1792), + [anon_sym_mod2] = ACTIONS(1790), + [anon_sym_SLASH_SLASH2] = ACTIONS(1790), + [anon_sym_PLUS2] = ACTIONS(1792), + [anon_sym_bit_DASHshl2] = ACTIONS(1790), + [anon_sym_bit_DASHshr2] = ACTIONS(1790), + [anon_sym_bit_DASHand2] = ACTIONS(1790), + [anon_sym_bit_DASHxor2] = ACTIONS(1790), + [anon_sym_bit_DASHor2] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(2375), + [aux_sym__immediate_decimal_token5] = ACTIONS(2377), + [anon_sym_err_GT] = ACTIONS(1792), + [anon_sym_out_GT] = ACTIONS(1792), + [anon_sym_e_GT] = ACTIONS(1792), + [anon_sym_o_GT] = ACTIONS(1792), + [anon_sym_err_PLUSout_GT] = ACTIONS(1792), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1792), + [anon_sym_o_PLUSe_GT] = ACTIONS(1792), + [anon_sym_e_PLUSo_GT] = ACTIONS(1792), + [anon_sym_err_GT_GT] = ACTIONS(1790), + [anon_sym_out_GT_GT] = ACTIONS(1790), + [anon_sym_e_GT_GT] = ACTIONS(1790), + [anon_sym_o_GT_GT] = ACTIONS(1790), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1790), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1790), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1790), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1790), + [sym__unquoted_pattern] = ACTIONS(1792), [anon_sym_POUND] = ACTIONS(3), }, [STATE(744)] = { + [aux_sym__repeat_newline] = STATE(1040), + [sym__expr_parenthesized_immediate] = STATE(5073), [sym_comment] = STATE(744), - [anon_sym_if] = ACTIONS(2256), - [anon_sym_in] = ACTIONS(2256), - [sym__newline] = ACTIONS(2256), - [anon_sym_SEMI] = ACTIONS(2256), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_err_GT_PIPE] = ACTIONS(2256), - [anon_sym_out_GT_PIPE] = ACTIONS(2256), - [anon_sym_e_GT_PIPE] = ACTIONS(2256), - [anon_sym_o_GT_PIPE] = ACTIONS(2256), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2256), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2256), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2256), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2256), - [anon_sym_RPAREN] = ACTIONS(2256), - [anon_sym_GT2] = ACTIONS(2258), - [anon_sym_DASH2] = ACTIONS(2256), - [anon_sym_LBRACE] = ACTIONS(2256), - [anon_sym_RBRACE] = ACTIONS(2256), - [anon_sym_EQ_GT] = ACTIONS(2256), - [anon_sym_STAR2] = ACTIONS(2258), - [anon_sym_and2] = ACTIONS(2256), - [anon_sym_xor2] = ACTIONS(2256), - [anon_sym_or2] = ACTIONS(2256), - [anon_sym_not_DASHin2] = ACTIONS(2256), - [anon_sym_has2] = ACTIONS(2256), - [anon_sym_not_DASHhas2] = ACTIONS(2256), - [anon_sym_starts_DASHwith2] = ACTIONS(2256), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2256), - [anon_sym_ends_DASHwith2] = ACTIONS(2256), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2256), - [anon_sym_EQ_EQ2] = ACTIONS(2256), - [anon_sym_BANG_EQ2] = ACTIONS(2256), - [anon_sym_LT2] = ACTIONS(2258), - [anon_sym_LT_EQ2] = ACTIONS(2256), - [anon_sym_GT_EQ2] = ACTIONS(2256), - [anon_sym_EQ_TILDE2] = ACTIONS(2256), - [anon_sym_BANG_TILDE2] = ACTIONS(2256), - [anon_sym_like2] = ACTIONS(2256), - [anon_sym_not_DASHlike2] = ACTIONS(2256), - [anon_sym_STAR_STAR2] = ACTIONS(2256), - [anon_sym_PLUS_PLUS2] = ACTIONS(2256), - [anon_sym_SLASH2] = ACTIONS(2258), - [anon_sym_mod2] = ACTIONS(2256), - [anon_sym_SLASH_SLASH2] = ACTIONS(2256), - [anon_sym_PLUS2] = ACTIONS(2258), - [anon_sym_bit_DASHshl2] = ACTIONS(2256), - [anon_sym_bit_DASHshr2] = ACTIONS(2256), - [anon_sym_bit_DASHand2] = ACTIONS(2256), - [anon_sym_bit_DASHxor2] = ACTIONS(2256), - [anon_sym_bit_DASHor2] = ACTIONS(2256), - [anon_sym_err_GT] = ACTIONS(2258), - [anon_sym_out_GT] = ACTIONS(2258), - [anon_sym_e_GT] = ACTIONS(2258), - [anon_sym_o_GT] = ACTIONS(2258), - [anon_sym_err_PLUSout_GT] = ACTIONS(2258), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2258), - [anon_sym_o_PLUSe_GT] = ACTIONS(2258), - [anon_sym_e_PLUSo_GT] = ACTIONS(2258), - [anon_sym_err_GT_GT] = ACTIONS(2256), - [anon_sym_out_GT_GT] = ACTIONS(2256), - [anon_sym_e_GT_GT] = ACTIONS(2256), - [anon_sym_o_GT_GT] = ACTIONS(2256), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2256), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2256), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2256), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2256), + [anon_sym_in] = ACTIONS(2346), + [sym__newline] = ACTIONS(2346), + [anon_sym_SEMI] = 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_RPAREN] = ACTIONS(2346), + [anon_sym_GT2] = ACTIONS(2348), + [anon_sym_DASH2] = ACTIONS(2346), + [anon_sym_LBRACE] = ACTIONS(2346), + [anon_sym_STAR2] = ACTIONS(2348), + [anon_sym_and2] = ACTIONS(2346), + [anon_sym_xor2] = ACTIONS(2346), + [anon_sym_or2] = ACTIONS(2346), + [anon_sym_not_DASHin2] = ACTIONS(2346), + [anon_sym_has2] = ACTIONS(2346), + [anon_sym_not_DASHhas2] = ACTIONS(2346), + [anon_sym_starts_DASHwith2] = ACTIONS(2346), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2346), + [anon_sym_ends_DASHwith2] = ACTIONS(2346), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2346), + [anon_sym_EQ_EQ2] = ACTIONS(2346), + [anon_sym_BANG_EQ2] = ACTIONS(2346), + [anon_sym_LT2] = ACTIONS(2348), + [anon_sym_LT_EQ2] = ACTIONS(2346), + [anon_sym_GT_EQ2] = ACTIONS(2346), + [anon_sym_EQ_TILDE2] = ACTIONS(2346), + [anon_sym_BANG_TILDE2] = ACTIONS(2346), + [anon_sym_like2] = ACTIONS(2346), + [anon_sym_not_DASHlike2] = ACTIONS(2346), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_STAR_STAR2] = ACTIONS(2346), + [anon_sym_PLUS_PLUS2] = ACTIONS(2346), + [anon_sym_SLASH2] = ACTIONS(2348), + [anon_sym_mod2] = ACTIONS(2346), + [anon_sym_SLASH_SLASH2] = ACTIONS(2346), + [anon_sym_PLUS2] = ACTIONS(2348), + [anon_sym_bit_DASHshl2] = ACTIONS(2346), + [anon_sym_bit_DASHshr2] = ACTIONS(2346), + [anon_sym_bit_DASHand2] = ACTIONS(2346), + [anon_sym_bit_DASHxor2] = ACTIONS(2346), + [anon_sym_bit_DASHor2] = ACTIONS(2346), + [anon_sym_err_GT] = ACTIONS(2348), + [anon_sym_out_GT] = ACTIONS(2348), + [anon_sym_e_GT] = ACTIONS(2348), + [anon_sym_o_GT] = ACTIONS(2348), + [anon_sym_err_PLUSout_GT] = ACTIONS(2348), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2348), + [anon_sym_o_PLUSe_GT] = ACTIONS(2348), + [anon_sym_e_PLUSo_GT] = ACTIONS(2348), + [anon_sym_err_GT_GT] = ACTIONS(2346), + [anon_sym_out_GT_GT] = ACTIONS(2346), + [anon_sym_e_GT_GT] = ACTIONS(2346), + [anon_sym_o_GT_GT] = ACTIONS(2346), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2346), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2346), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2346), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2346), [anon_sym_POUND] = ACTIONS(3), }, [STATE(745)] = { + [aux_sym__repeat_newline] = STATE(1041), + [sym__expr_parenthesized_immediate] = STATE(5073), [sym_comment] = STATE(745), - [anon_sym_if] = ACTIONS(2260), - [anon_sym_in] = ACTIONS(2260), - [sym__newline] = ACTIONS(2260), - [anon_sym_SEMI] = ACTIONS(2260), - [anon_sym_PIPE] = ACTIONS(2260), - [anon_sym_err_GT_PIPE] = ACTIONS(2260), - [anon_sym_out_GT_PIPE] = ACTIONS(2260), - [anon_sym_e_GT_PIPE] = ACTIONS(2260), - [anon_sym_o_GT_PIPE] = ACTIONS(2260), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2260), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2260), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2260), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2260), - [anon_sym_RPAREN] = ACTIONS(2260), - [anon_sym_GT2] = ACTIONS(2262), - [anon_sym_DASH2] = ACTIONS(2260), - [anon_sym_LBRACE] = ACTIONS(2260), - [anon_sym_RBRACE] = ACTIONS(2260), - [anon_sym_EQ_GT] = ACTIONS(2260), - [anon_sym_STAR2] = ACTIONS(2262), - [anon_sym_and2] = ACTIONS(2260), - [anon_sym_xor2] = ACTIONS(2260), - [anon_sym_or2] = ACTIONS(2260), - [anon_sym_not_DASHin2] = ACTIONS(2260), - [anon_sym_has2] = ACTIONS(2260), - [anon_sym_not_DASHhas2] = ACTIONS(2260), - [anon_sym_starts_DASHwith2] = ACTIONS(2260), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2260), - [anon_sym_ends_DASHwith2] = ACTIONS(2260), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2260), - [anon_sym_EQ_EQ2] = ACTIONS(2260), - [anon_sym_BANG_EQ2] = ACTIONS(2260), - [anon_sym_LT2] = ACTIONS(2262), - [anon_sym_LT_EQ2] = ACTIONS(2260), - [anon_sym_GT_EQ2] = ACTIONS(2260), - [anon_sym_EQ_TILDE2] = ACTIONS(2260), - [anon_sym_BANG_TILDE2] = ACTIONS(2260), - [anon_sym_like2] = ACTIONS(2260), - [anon_sym_not_DASHlike2] = ACTIONS(2260), - [anon_sym_STAR_STAR2] = ACTIONS(2260), - [anon_sym_PLUS_PLUS2] = ACTIONS(2260), - [anon_sym_SLASH2] = ACTIONS(2262), - [anon_sym_mod2] = ACTIONS(2260), - [anon_sym_SLASH_SLASH2] = ACTIONS(2260), - [anon_sym_PLUS2] = ACTIONS(2262), - [anon_sym_bit_DASHshl2] = ACTIONS(2260), - [anon_sym_bit_DASHshr2] = ACTIONS(2260), - [anon_sym_bit_DASHand2] = ACTIONS(2260), - [anon_sym_bit_DASHxor2] = ACTIONS(2260), - [anon_sym_bit_DASHor2] = ACTIONS(2260), - [anon_sym_err_GT] = ACTIONS(2262), - [anon_sym_out_GT] = ACTIONS(2262), - [anon_sym_e_GT] = ACTIONS(2262), - [anon_sym_o_GT] = ACTIONS(2262), - [anon_sym_err_PLUSout_GT] = ACTIONS(2262), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2262), - [anon_sym_o_PLUSe_GT] = ACTIONS(2262), - [anon_sym_e_PLUSo_GT] = ACTIONS(2262), - [anon_sym_err_GT_GT] = ACTIONS(2260), - [anon_sym_out_GT_GT] = ACTIONS(2260), - [anon_sym_e_GT_GT] = ACTIONS(2260), - [anon_sym_o_GT_GT] = ACTIONS(2260), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2260), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2260), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2260), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2260), + [anon_sym_in] = ACTIONS(2346), + [sym__newline] = ACTIONS(2346), + [anon_sym_SEMI] = 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_RPAREN] = ACTIONS(2346), + [anon_sym_GT2] = ACTIONS(2348), + [anon_sym_DASH2] = ACTIONS(2346), + [anon_sym_LBRACE] = ACTIONS(2346), + [anon_sym_STAR2] = ACTIONS(2348), + [anon_sym_and2] = ACTIONS(2346), + [anon_sym_xor2] = ACTIONS(2346), + [anon_sym_or2] = ACTIONS(2346), + [anon_sym_not_DASHin2] = ACTIONS(2346), + [anon_sym_has2] = ACTIONS(2346), + [anon_sym_not_DASHhas2] = ACTIONS(2346), + [anon_sym_starts_DASHwith2] = ACTIONS(2346), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2346), + [anon_sym_ends_DASHwith2] = ACTIONS(2346), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2346), + [anon_sym_EQ_EQ2] = ACTIONS(2346), + [anon_sym_BANG_EQ2] = ACTIONS(2346), + [anon_sym_LT2] = ACTIONS(2348), + [anon_sym_LT_EQ2] = ACTIONS(2346), + [anon_sym_GT_EQ2] = ACTIONS(2346), + [anon_sym_EQ_TILDE2] = ACTIONS(2346), + [anon_sym_BANG_TILDE2] = ACTIONS(2346), + [anon_sym_like2] = ACTIONS(2346), + [anon_sym_not_DASHlike2] = ACTIONS(2346), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_STAR_STAR2] = ACTIONS(2346), + [anon_sym_PLUS_PLUS2] = ACTIONS(2346), + [anon_sym_SLASH2] = ACTIONS(2348), + [anon_sym_mod2] = ACTIONS(2346), + [anon_sym_SLASH_SLASH2] = ACTIONS(2346), + [anon_sym_PLUS2] = ACTIONS(2348), + [anon_sym_bit_DASHshl2] = ACTIONS(2346), + [anon_sym_bit_DASHshr2] = ACTIONS(2346), + [anon_sym_bit_DASHand2] = ACTIONS(2346), + [anon_sym_bit_DASHxor2] = ACTIONS(2346), + [anon_sym_bit_DASHor2] = ACTIONS(2346), + [anon_sym_err_GT] = ACTIONS(2348), + [anon_sym_out_GT] = ACTIONS(2348), + [anon_sym_e_GT] = ACTIONS(2348), + [anon_sym_o_GT] = ACTIONS(2348), + [anon_sym_err_PLUSout_GT] = ACTIONS(2348), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2348), + [anon_sym_o_PLUSe_GT] = ACTIONS(2348), + [anon_sym_e_PLUSo_GT] = ACTIONS(2348), + [anon_sym_err_GT_GT] = ACTIONS(2346), + [anon_sym_out_GT_GT] = ACTIONS(2346), + [anon_sym_e_GT_GT] = ACTIONS(2346), + [anon_sym_o_GT_GT] = ACTIONS(2346), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2346), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2346), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2346), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2346), [anon_sym_POUND] = ACTIONS(3), }, [STATE(746)] = { [sym_comment] = STATE(746), - [anon_sym_if] = ACTIONS(2264), - [anon_sym_in] = ACTIONS(2264), - [sym__newline] = ACTIONS(2264), - [anon_sym_SEMI] = ACTIONS(2264), - [anon_sym_PIPE] = ACTIONS(2264), - [anon_sym_err_GT_PIPE] = ACTIONS(2264), - [anon_sym_out_GT_PIPE] = ACTIONS(2264), - [anon_sym_e_GT_PIPE] = ACTIONS(2264), - [anon_sym_o_GT_PIPE] = ACTIONS(2264), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2264), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2264), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2264), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2264), - [anon_sym_RPAREN] = ACTIONS(2264), - [anon_sym_GT2] = ACTIONS(2266), - [anon_sym_DASH2] = ACTIONS(2264), - [anon_sym_LBRACE] = ACTIONS(2264), - [anon_sym_RBRACE] = ACTIONS(2264), - [anon_sym_EQ_GT] = ACTIONS(2264), - [anon_sym_STAR2] = ACTIONS(2266), - [anon_sym_and2] = ACTIONS(2264), - [anon_sym_xor2] = ACTIONS(2264), - [anon_sym_or2] = ACTIONS(2264), - [anon_sym_not_DASHin2] = ACTIONS(2264), - [anon_sym_has2] = ACTIONS(2264), - [anon_sym_not_DASHhas2] = ACTIONS(2264), - [anon_sym_starts_DASHwith2] = ACTIONS(2264), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2264), - [anon_sym_ends_DASHwith2] = ACTIONS(2264), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2264), - [anon_sym_EQ_EQ2] = ACTIONS(2264), - [anon_sym_BANG_EQ2] = ACTIONS(2264), - [anon_sym_LT2] = ACTIONS(2266), - [anon_sym_LT_EQ2] = ACTIONS(2264), - [anon_sym_GT_EQ2] = ACTIONS(2264), - [anon_sym_EQ_TILDE2] = ACTIONS(2264), - [anon_sym_BANG_TILDE2] = ACTIONS(2264), - [anon_sym_like2] = ACTIONS(2264), - [anon_sym_not_DASHlike2] = ACTIONS(2264), - [anon_sym_STAR_STAR2] = ACTIONS(2264), - [anon_sym_PLUS_PLUS2] = ACTIONS(2264), - [anon_sym_SLASH2] = ACTIONS(2266), - [anon_sym_mod2] = ACTIONS(2264), - [anon_sym_SLASH_SLASH2] = ACTIONS(2264), - [anon_sym_PLUS2] = ACTIONS(2266), - [anon_sym_bit_DASHshl2] = ACTIONS(2264), - [anon_sym_bit_DASHshr2] = ACTIONS(2264), - [anon_sym_bit_DASHand2] = ACTIONS(2264), - [anon_sym_bit_DASHxor2] = ACTIONS(2264), - [anon_sym_bit_DASHor2] = ACTIONS(2264), - [anon_sym_err_GT] = ACTIONS(2266), - [anon_sym_out_GT] = ACTIONS(2266), - [anon_sym_e_GT] = ACTIONS(2266), - [anon_sym_o_GT] = ACTIONS(2266), - [anon_sym_err_PLUSout_GT] = ACTIONS(2266), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2266), - [anon_sym_o_PLUSe_GT] = ACTIONS(2266), - [anon_sym_e_PLUSo_GT] = ACTIONS(2266), - [anon_sym_err_GT_GT] = ACTIONS(2264), - [anon_sym_out_GT_GT] = ACTIONS(2264), - [anon_sym_e_GT_GT] = ACTIONS(2264), - [anon_sym_o_GT_GT] = ACTIONS(2264), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2264), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2264), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2264), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2264), + [anon_sym_in] = ACTIONS(1790), + [sym__newline] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym_PIPE] = ACTIONS(1790), + [anon_sym_err_GT_PIPE] = ACTIONS(1790), + [anon_sym_out_GT_PIPE] = ACTIONS(1790), + [anon_sym_e_GT_PIPE] = ACTIONS(1790), + [anon_sym_o_GT_PIPE] = ACTIONS(1790), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1790), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1790), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1790), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1790), + [anon_sym_RPAREN] = ACTIONS(1790), + [anon_sym_GT2] = ACTIONS(1792), + [anon_sym_DASH2] = ACTIONS(1790), + [anon_sym_RBRACE] = ACTIONS(1790), + [anon_sym_STAR2] = ACTIONS(1792), + [anon_sym_and2] = ACTIONS(1790), + [anon_sym_xor2] = ACTIONS(1790), + [anon_sym_or2] = ACTIONS(1790), + [anon_sym_not_DASHin2] = ACTIONS(1790), + [anon_sym_has2] = ACTIONS(1790), + [anon_sym_not_DASHhas2] = ACTIONS(1790), + [anon_sym_starts_DASHwith2] = ACTIONS(1790), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1790), + [anon_sym_ends_DASHwith2] = ACTIONS(1790), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1790), + [anon_sym_EQ_EQ2] = ACTIONS(1790), + [anon_sym_BANG_EQ2] = ACTIONS(1790), + [anon_sym_LT2] = ACTIONS(1792), + [anon_sym_LT_EQ2] = ACTIONS(1790), + [anon_sym_GT_EQ2] = ACTIONS(1790), + [anon_sym_EQ_TILDE2] = ACTIONS(1790), + [anon_sym_BANG_TILDE2] = ACTIONS(1790), + [anon_sym_like2] = ACTIONS(1790), + [anon_sym_not_DASHlike2] = ACTIONS(1790), + [anon_sym_LPAREN2] = ACTIONS(1790), + [anon_sym_STAR_STAR2] = ACTIONS(1790), + [anon_sym_PLUS_PLUS2] = ACTIONS(1790), + [anon_sym_SLASH2] = ACTIONS(1792), + [anon_sym_mod2] = ACTIONS(1790), + [anon_sym_SLASH_SLASH2] = ACTIONS(1790), + [anon_sym_PLUS2] = ACTIONS(1792), + [anon_sym_bit_DASHshl2] = ACTIONS(1790), + [anon_sym_bit_DASHshr2] = ACTIONS(1790), + [anon_sym_bit_DASHand2] = ACTIONS(1790), + [anon_sym_bit_DASHxor2] = ACTIONS(1790), + [anon_sym_bit_DASHor2] = ACTIONS(1790), + [aux_sym__immediate_decimal_token5] = ACTIONS(2102), + [anon_sym_err_GT] = ACTIONS(1792), + [anon_sym_out_GT] = ACTIONS(1792), + [anon_sym_e_GT] = ACTIONS(1792), + [anon_sym_o_GT] = ACTIONS(1792), + [anon_sym_err_PLUSout_GT] = ACTIONS(1792), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1792), + [anon_sym_o_PLUSe_GT] = ACTIONS(1792), + [anon_sym_e_PLUSo_GT] = ACTIONS(1792), + [anon_sym_err_GT_GT] = ACTIONS(1790), + [anon_sym_out_GT_GT] = ACTIONS(1790), + [anon_sym_e_GT_GT] = ACTIONS(1790), + [anon_sym_o_GT_GT] = ACTIONS(1790), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1790), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1790), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1790), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1790), + [sym__unquoted_pattern] = ACTIONS(1792), [anon_sym_POUND] = ACTIONS(3), }, [STATE(747)] = { [sym_comment] = STATE(747), - [anon_sym_if] = ACTIONS(2268), - [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_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), + [anon_sym_in] = ACTIONS(1846), + [sym__newline] = ACTIONS(1846), + [anon_sym_SEMI] = ACTIONS(1846), + [anon_sym_PIPE] = ACTIONS(1846), + [anon_sym_err_GT_PIPE] = ACTIONS(1846), + [anon_sym_out_GT_PIPE] = ACTIONS(1846), + [anon_sym_e_GT_PIPE] = ACTIONS(1846), + [anon_sym_o_GT_PIPE] = ACTIONS(1846), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1846), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1846), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1846), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1846), + [anon_sym_RPAREN] = ACTIONS(1846), + [anon_sym_GT2] = ACTIONS(1848), + [anon_sym_DASH2] = ACTIONS(1846), + [anon_sym_RBRACE] = ACTIONS(1846), + [anon_sym_STAR2] = ACTIONS(1848), + [anon_sym_and2] = ACTIONS(1846), + [anon_sym_xor2] = ACTIONS(1846), + [anon_sym_or2] = ACTIONS(1846), + [anon_sym_not_DASHin2] = ACTIONS(1846), + [anon_sym_has2] = ACTIONS(1846), + [anon_sym_not_DASHhas2] = ACTIONS(1846), + [anon_sym_starts_DASHwith2] = ACTIONS(1846), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1846), + [anon_sym_ends_DASHwith2] = ACTIONS(1846), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1846), + [anon_sym_EQ_EQ2] = ACTIONS(1846), + [anon_sym_BANG_EQ2] = ACTIONS(1846), + [anon_sym_LT2] = ACTIONS(1848), + [anon_sym_LT_EQ2] = ACTIONS(1846), + [anon_sym_GT_EQ2] = ACTIONS(1846), + [anon_sym_EQ_TILDE2] = ACTIONS(1846), + [anon_sym_BANG_TILDE2] = ACTIONS(1846), + [anon_sym_like2] = ACTIONS(1846), + [anon_sym_not_DASHlike2] = ACTIONS(1846), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_STAR_STAR2] = ACTIONS(1846), + [anon_sym_PLUS_PLUS2] = ACTIONS(1846), + [anon_sym_SLASH2] = ACTIONS(1848), + [anon_sym_mod2] = ACTIONS(1846), + [anon_sym_SLASH_SLASH2] = ACTIONS(1846), + [anon_sym_PLUS2] = ACTIONS(1848), + [anon_sym_bit_DASHshl2] = ACTIONS(1846), + [anon_sym_bit_DASHshr2] = ACTIONS(1846), + [anon_sym_bit_DASHand2] = ACTIONS(1846), + [anon_sym_bit_DASHxor2] = ACTIONS(1846), + [anon_sym_bit_DASHor2] = ACTIONS(1846), + [aux_sym__immediate_decimal_token5] = ACTIONS(2379), + [anon_sym_err_GT] = ACTIONS(1848), + [anon_sym_out_GT] = ACTIONS(1848), + [anon_sym_e_GT] = ACTIONS(1848), + [anon_sym_o_GT] = ACTIONS(1848), + [anon_sym_err_PLUSout_GT] = ACTIONS(1848), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1848), + [anon_sym_o_PLUSe_GT] = ACTIONS(1848), + [anon_sym_e_PLUSo_GT] = ACTIONS(1848), + [anon_sym_err_GT_GT] = ACTIONS(1846), + [anon_sym_out_GT_GT] = ACTIONS(1846), + [anon_sym_e_GT_GT] = ACTIONS(1846), + [anon_sym_o_GT_GT] = ACTIONS(1846), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1846), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1846), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1846), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1846), + [sym__unquoted_pattern] = ACTIONS(1848), [anon_sym_POUND] = ACTIONS(3), }, [STATE(748)] = { + [aux_sym__repeat_newline] = STATE(1043), + [sym__expr_parenthesized_immediate] = STATE(5073), [sym_comment] = STATE(748), - [anon_sym_if] = ACTIONS(2272), - [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_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), + [anon_sym_in] = ACTIONS(2346), + [sym__newline] = ACTIONS(2346), + [anon_sym_SEMI] = 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_RPAREN] = ACTIONS(2346), + [anon_sym_GT2] = ACTIONS(2348), + [anon_sym_DASH2] = ACTIONS(2346), + [anon_sym_LBRACE] = ACTIONS(2346), + [anon_sym_STAR2] = ACTIONS(2348), + [anon_sym_and2] = ACTIONS(2346), + [anon_sym_xor2] = ACTIONS(2346), + [anon_sym_or2] = ACTIONS(2346), + [anon_sym_not_DASHin2] = ACTIONS(2346), + [anon_sym_has2] = ACTIONS(2346), + [anon_sym_not_DASHhas2] = ACTIONS(2346), + [anon_sym_starts_DASHwith2] = ACTIONS(2346), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2346), + [anon_sym_ends_DASHwith2] = ACTIONS(2346), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2346), + [anon_sym_EQ_EQ2] = ACTIONS(2346), + [anon_sym_BANG_EQ2] = ACTIONS(2346), + [anon_sym_LT2] = ACTIONS(2348), + [anon_sym_LT_EQ2] = ACTIONS(2346), + [anon_sym_GT_EQ2] = ACTIONS(2346), + [anon_sym_EQ_TILDE2] = ACTIONS(2346), + [anon_sym_BANG_TILDE2] = ACTIONS(2346), + [anon_sym_like2] = ACTIONS(2346), + [anon_sym_not_DASHlike2] = ACTIONS(2346), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_STAR_STAR2] = ACTIONS(2346), + [anon_sym_PLUS_PLUS2] = ACTIONS(2346), + [anon_sym_SLASH2] = ACTIONS(2348), + [anon_sym_mod2] = ACTIONS(2346), + [anon_sym_SLASH_SLASH2] = ACTIONS(2346), + [anon_sym_PLUS2] = ACTIONS(2348), + [anon_sym_bit_DASHshl2] = ACTIONS(2346), + [anon_sym_bit_DASHshr2] = ACTIONS(2346), + [anon_sym_bit_DASHand2] = ACTIONS(2346), + [anon_sym_bit_DASHxor2] = ACTIONS(2346), + [anon_sym_bit_DASHor2] = ACTIONS(2346), + [anon_sym_err_GT] = ACTIONS(2348), + [anon_sym_out_GT] = ACTIONS(2348), + [anon_sym_e_GT] = ACTIONS(2348), + [anon_sym_o_GT] = ACTIONS(2348), + [anon_sym_err_PLUSout_GT] = ACTIONS(2348), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2348), + [anon_sym_o_PLUSe_GT] = ACTIONS(2348), + [anon_sym_e_PLUSo_GT] = ACTIONS(2348), + [anon_sym_err_GT_GT] = ACTIONS(2346), + [anon_sym_out_GT_GT] = ACTIONS(2346), + [anon_sym_e_GT_GT] = ACTIONS(2346), + [anon_sym_o_GT_GT] = ACTIONS(2346), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2346), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2346), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2346), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2346), [anon_sym_POUND] = ACTIONS(3), }, [STATE(749)] = { + [aux_sym__repeat_newline] = STATE(1044), + [sym__expr_parenthesized_immediate] = STATE(5073), [sym_comment] = STATE(749), - [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_RBRACE] = ACTIONS(2276), - [anon_sym_EQ_GT] = 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_COLON2] = 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_in] = ACTIONS(2346), + [sym__newline] = ACTIONS(2346), + [anon_sym_SEMI] = 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_RPAREN] = ACTIONS(2346), + [anon_sym_GT2] = ACTIONS(2348), + [anon_sym_DASH2] = ACTIONS(2346), + [anon_sym_LBRACE] = ACTIONS(2346), + [anon_sym_STAR2] = ACTIONS(2348), + [anon_sym_and2] = ACTIONS(2346), + [anon_sym_xor2] = ACTIONS(2346), + [anon_sym_or2] = ACTIONS(2346), + [anon_sym_not_DASHin2] = ACTIONS(2346), + [anon_sym_has2] = ACTIONS(2346), + [anon_sym_not_DASHhas2] = ACTIONS(2346), + [anon_sym_starts_DASHwith2] = ACTIONS(2346), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2346), + [anon_sym_ends_DASHwith2] = ACTIONS(2346), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2346), + [anon_sym_EQ_EQ2] = ACTIONS(2346), + [anon_sym_BANG_EQ2] = ACTIONS(2346), + [anon_sym_LT2] = ACTIONS(2348), + [anon_sym_LT_EQ2] = ACTIONS(2346), + [anon_sym_GT_EQ2] = ACTIONS(2346), + [anon_sym_EQ_TILDE2] = ACTIONS(2346), + [anon_sym_BANG_TILDE2] = ACTIONS(2346), + [anon_sym_like2] = ACTIONS(2346), + [anon_sym_not_DASHlike2] = ACTIONS(2346), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_STAR_STAR2] = ACTIONS(2346), + [anon_sym_PLUS_PLUS2] = ACTIONS(2346), + [anon_sym_SLASH2] = ACTIONS(2348), + [anon_sym_mod2] = ACTIONS(2346), + [anon_sym_SLASH_SLASH2] = ACTIONS(2346), + [anon_sym_PLUS2] = ACTIONS(2348), + [anon_sym_bit_DASHshl2] = ACTIONS(2346), + [anon_sym_bit_DASHshr2] = ACTIONS(2346), + [anon_sym_bit_DASHand2] = ACTIONS(2346), + [anon_sym_bit_DASHxor2] = ACTIONS(2346), + [anon_sym_bit_DASHor2] = ACTIONS(2346), + [anon_sym_err_GT] = ACTIONS(2348), + [anon_sym_out_GT] = ACTIONS(2348), + [anon_sym_e_GT] = ACTIONS(2348), + [anon_sym_o_GT] = ACTIONS(2348), + [anon_sym_err_PLUSout_GT] = ACTIONS(2348), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2348), + [anon_sym_o_PLUSe_GT] = ACTIONS(2348), + [anon_sym_e_PLUSo_GT] = ACTIONS(2348), + [anon_sym_err_GT_GT] = ACTIONS(2346), + [anon_sym_out_GT_GT] = ACTIONS(2346), + [anon_sym_e_GT_GT] = ACTIONS(2346), + [anon_sym_o_GT_GT] = ACTIONS(2346), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2346), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2346), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2346), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2346), [anon_sym_POUND] = ACTIONS(3), }, [STATE(750)] = { + [aux_sym__repeat_newline] = STATE(1046), + [sym__expr_parenthesized_immediate] = STATE(5073), [sym_comment] = STATE(750), - [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_RBRACE] = ACTIONS(2276), - [anon_sym_EQ_GT] = 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_COLON2] = 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_in] = ACTIONS(2346), + [sym__newline] = ACTIONS(2346), + [anon_sym_SEMI] = 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_RPAREN] = ACTIONS(2346), + [anon_sym_GT2] = ACTIONS(2348), + [anon_sym_DASH2] = ACTIONS(2346), + [anon_sym_LBRACE] = ACTIONS(2346), + [anon_sym_STAR2] = ACTIONS(2348), + [anon_sym_and2] = ACTIONS(2346), + [anon_sym_xor2] = ACTIONS(2346), + [anon_sym_or2] = ACTIONS(2346), + [anon_sym_not_DASHin2] = ACTIONS(2346), + [anon_sym_has2] = ACTIONS(2346), + [anon_sym_not_DASHhas2] = ACTIONS(2346), + [anon_sym_starts_DASHwith2] = ACTIONS(2346), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2346), + [anon_sym_ends_DASHwith2] = ACTIONS(2346), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2346), + [anon_sym_EQ_EQ2] = ACTIONS(2346), + [anon_sym_BANG_EQ2] = ACTIONS(2346), + [anon_sym_LT2] = ACTIONS(2348), + [anon_sym_LT_EQ2] = ACTIONS(2346), + [anon_sym_GT_EQ2] = ACTIONS(2346), + [anon_sym_EQ_TILDE2] = ACTIONS(2346), + [anon_sym_BANG_TILDE2] = ACTIONS(2346), + [anon_sym_like2] = ACTIONS(2346), + [anon_sym_not_DASHlike2] = ACTIONS(2346), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_STAR_STAR2] = ACTIONS(2346), + [anon_sym_PLUS_PLUS2] = ACTIONS(2346), + [anon_sym_SLASH2] = ACTIONS(2348), + [anon_sym_mod2] = ACTIONS(2346), + [anon_sym_SLASH_SLASH2] = ACTIONS(2346), + [anon_sym_PLUS2] = ACTIONS(2348), + [anon_sym_bit_DASHshl2] = ACTIONS(2346), + [anon_sym_bit_DASHshr2] = ACTIONS(2346), + [anon_sym_bit_DASHand2] = ACTIONS(2346), + [anon_sym_bit_DASHxor2] = ACTIONS(2346), + [anon_sym_bit_DASHor2] = ACTIONS(2346), + [anon_sym_err_GT] = ACTIONS(2348), + [anon_sym_out_GT] = ACTIONS(2348), + [anon_sym_e_GT] = ACTIONS(2348), + [anon_sym_o_GT] = ACTIONS(2348), + [anon_sym_err_PLUSout_GT] = ACTIONS(2348), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2348), + [anon_sym_o_PLUSe_GT] = ACTIONS(2348), + [anon_sym_e_PLUSo_GT] = ACTIONS(2348), + [anon_sym_err_GT_GT] = ACTIONS(2346), + [anon_sym_out_GT_GT] = ACTIONS(2346), + [anon_sym_e_GT_GT] = ACTIONS(2346), + [anon_sym_o_GT_GT] = ACTIONS(2346), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2346), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2346), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2346), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2346), [anon_sym_POUND] = ACTIONS(3), }, [STATE(751)] = { - [sym_cell_path] = STATE(1296), - [sym_path] = STATE(720), + [sym_expr_unary] = STATE(940), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(940), + [sym__expr_binary_expression] = STATE(2229), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(940), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(940), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1965), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1761), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(683), + [sym__unquoted_with_expr] = STATE(971), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(751), - [aux_sym__where_predicate_lhs_repeat1] = STATE(622), - [ts_builtin_sym_end] = ACTIONS(1896), - [anon_sym_in] = ACTIONS(1896), - [sym__newline] = ACTIONS(1896), - [anon_sym_SEMI] = ACTIONS(1896), - [anon_sym_PIPE] = ACTIONS(1896), - [anon_sym_err_GT_PIPE] = ACTIONS(1896), - [anon_sym_out_GT_PIPE] = ACTIONS(1896), - [anon_sym_e_GT_PIPE] = ACTIONS(1896), - [anon_sym_o_GT_PIPE] = ACTIONS(1896), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1896), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1896), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1896), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1896), - [anon_sym_GT2] = ACTIONS(1898), - [anon_sym_DASH2] = ACTIONS(1896), - [anon_sym_STAR2] = ACTIONS(1898), - [anon_sym_and2] = ACTIONS(1896), - [anon_sym_xor2] = ACTIONS(1896), - [anon_sym_or2] = ACTIONS(1896), - [anon_sym_not_DASHin2] = ACTIONS(1896), - [anon_sym_has2] = ACTIONS(1896), - [anon_sym_not_DASHhas2] = ACTIONS(1896), - [anon_sym_starts_DASHwith2] = ACTIONS(1896), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1896), - [anon_sym_ends_DASHwith2] = ACTIONS(1896), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1896), - [anon_sym_EQ_EQ2] = ACTIONS(1896), - [anon_sym_BANG_EQ2] = ACTIONS(1896), - [anon_sym_LT2] = ACTIONS(1898), - [anon_sym_LT_EQ2] = ACTIONS(1896), - [anon_sym_GT_EQ2] = ACTIONS(1896), - [anon_sym_EQ_TILDE2] = ACTIONS(1896), - [anon_sym_BANG_TILDE2] = ACTIONS(1896), - [anon_sym_like2] = ACTIONS(1896), - [anon_sym_not_DASHlike2] = ACTIONS(1896), - [anon_sym_STAR_STAR2] = ACTIONS(1896), - [anon_sym_PLUS_PLUS2] = ACTIONS(1896), - [anon_sym_SLASH2] = ACTIONS(1898), - [anon_sym_mod2] = ACTIONS(1896), - [anon_sym_SLASH_SLASH2] = ACTIONS(1896), - [anon_sym_PLUS2] = ACTIONS(1898), - [anon_sym_bit_DASHshl2] = ACTIONS(1896), - [anon_sym_bit_DASHshr2] = ACTIONS(1896), - [anon_sym_bit_DASHand2] = ACTIONS(1896), - [anon_sym_bit_DASHxor2] = ACTIONS(1896), - [anon_sym_bit_DASHor2] = ACTIONS(1896), - [anon_sym_DOT2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(1898), - [anon_sym_out_GT] = ACTIONS(1898), - [anon_sym_e_GT] = ACTIONS(1898), - [anon_sym_o_GT] = ACTIONS(1898), - [anon_sym_err_PLUSout_GT] = ACTIONS(1898), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1898), - [anon_sym_o_PLUSe_GT] = ACTIONS(1898), - [anon_sym_e_PLUSo_GT] = ACTIONS(1898), - [anon_sym_err_GT_GT] = ACTIONS(1896), - [anon_sym_out_GT_GT] = ACTIONS(1896), - [anon_sym_e_GT_GT] = ACTIONS(1896), - [anon_sym_o_GT_GT] = ACTIONS(1896), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1896), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1896), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1896), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1896), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(752)] = { - [sym_comment] = STATE(752), - [anon_sym_in] = ACTIONS(2282), - [sym__newline] = ACTIONS(2282), - [anon_sym_SEMI] = ACTIONS(2282), - [anon_sym_PIPE] = ACTIONS(2282), - [anon_sym_err_GT_PIPE] = ACTIONS(2282), - [anon_sym_out_GT_PIPE] = ACTIONS(2282), - [anon_sym_e_GT_PIPE] = ACTIONS(2282), - [anon_sym_o_GT_PIPE] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2282), - [anon_sym_RPAREN] = ACTIONS(2282), - [anon_sym_GT2] = ACTIONS(2284), - [anon_sym_DASH2] = ACTIONS(2282), - [anon_sym_LBRACE] = ACTIONS(2282), - [anon_sym_RBRACE] = ACTIONS(2282), - [anon_sym_EQ_GT] = ACTIONS(2282), - [anon_sym_STAR2] = ACTIONS(2284), - [anon_sym_and2] = ACTIONS(2282), - [anon_sym_xor2] = ACTIONS(2282), - [anon_sym_or2] = ACTIONS(2282), - [anon_sym_not_DASHin2] = ACTIONS(2282), - [anon_sym_has2] = ACTIONS(2282), - [anon_sym_not_DASHhas2] = ACTIONS(2282), - [anon_sym_starts_DASHwith2] = ACTIONS(2282), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2282), - [anon_sym_ends_DASHwith2] = ACTIONS(2282), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2282), - [anon_sym_EQ_EQ2] = ACTIONS(2282), - [anon_sym_BANG_EQ2] = ACTIONS(2282), - [anon_sym_LT2] = ACTIONS(2284), - [anon_sym_LT_EQ2] = ACTIONS(2282), - [anon_sym_GT_EQ2] = ACTIONS(2282), - [anon_sym_EQ_TILDE2] = ACTIONS(2282), - [anon_sym_BANG_TILDE2] = ACTIONS(2282), - [anon_sym_like2] = ACTIONS(2282), - [anon_sym_not_DASHlike2] = ACTIONS(2282), - [anon_sym_STAR_STAR2] = ACTIONS(2282), - [anon_sym_PLUS_PLUS2] = ACTIONS(2282), - [anon_sym_SLASH2] = ACTIONS(2284), - [anon_sym_mod2] = ACTIONS(2282), - [anon_sym_SLASH_SLASH2] = ACTIONS(2282), - [anon_sym_PLUS2] = ACTIONS(2284), - [anon_sym_bit_DASHshl2] = ACTIONS(2282), - [anon_sym_bit_DASHshr2] = ACTIONS(2282), - [anon_sym_bit_DASHand2] = ACTIONS(2282), - [anon_sym_bit_DASHxor2] = ACTIONS(2282), - [anon_sym_bit_DASHor2] = ACTIONS(2282), - [anon_sym_COLON2] = ACTIONS(2282), - [anon_sym_err_GT] = ACTIONS(2284), - [anon_sym_out_GT] = ACTIONS(2284), - [anon_sym_e_GT] = ACTIONS(2284), - [anon_sym_o_GT] = ACTIONS(2284), - [anon_sym_err_PLUSout_GT] = ACTIONS(2284), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2284), - [anon_sym_o_PLUSe_GT] = ACTIONS(2284), - [anon_sym_e_PLUSo_GT] = ACTIONS(2284), - [anon_sym_err_GT_GT] = ACTIONS(2282), - [anon_sym_out_GT_GT] = ACTIONS(2282), - [anon_sym_e_GT_GT] = ACTIONS(2282), - [anon_sym_o_GT_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2282), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(753)] = { - [sym_comment] = STATE(753), - [anon_sym_in] = ACTIONS(2286), - [sym__newline] = ACTIONS(2286), - [anon_sym_SEMI] = ACTIONS(2286), - [anon_sym_PIPE] = ACTIONS(2286), - [anon_sym_err_GT_PIPE] = ACTIONS(2286), - [anon_sym_out_GT_PIPE] = ACTIONS(2286), - [anon_sym_e_GT_PIPE] = ACTIONS(2286), - [anon_sym_o_GT_PIPE] = ACTIONS(2286), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2286), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2286), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2286), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2286), - [anon_sym_RPAREN] = ACTIONS(2286), - [anon_sym_GT2] = ACTIONS(2288), - [anon_sym_DASH2] = ACTIONS(2286), - [anon_sym_LBRACE] = ACTIONS(2286), - [anon_sym_RBRACE] = ACTIONS(2286), - [anon_sym_EQ_GT] = ACTIONS(2286), - [anon_sym_STAR2] = ACTIONS(2288), - [anon_sym_and2] = ACTIONS(2286), - [anon_sym_xor2] = ACTIONS(2286), - [anon_sym_or2] = ACTIONS(2286), - [anon_sym_not_DASHin2] = ACTIONS(2286), - [anon_sym_has2] = ACTIONS(2286), - [anon_sym_not_DASHhas2] = ACTIONS(2286), - [anon_sym_starts_DASHwith2] = ACTIONS(2286), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2286), - [anon_sym_ends_DASHwith2] = ACTIONS(2286), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2286), - [anon_sym_EQ_EQ2] = ACTIONS(2286), - [anon_sym_BANG_EQ2] = ACTIONS(2286), - [anon_sym_LT2] = ACTIONS(2288), - [anon_sym_LT_EQ2] = ACTIONS(2286), - [anon_sym_GT_EQ2] = ACTIONS(2286), - [anon_sym_EQ_TILDE2] = ACTIONS(2286), - [anon_sym_BANG_TILDE2] = ACTIONS(2286), - [anon_sym_like2] = ACTIONS(2286), - [anon_sym_not_DASHlike2] = ACTIONS(2286), - [anon_sym_STAR_STAR2] = ACTIONS(2286), - [anon_sym_PLUS_PLUS2] = ACTIONS(2286), - [anon_sym_SLASH2] = ACTIONS(2288), - [anon_sym_mod2] = ACTIONS(2286), - [anon_sym_SLASH_SLASH2] = ACTIONS(2286), - [anon_sym_PLUS2] = ACTIONS(2288), - [anon_sym_bit_DASHshl2] = ACTIONS(2286), - [anon_sym_bit_DASHshr2] = ACTIONS(2286), - [anon_sym_bit_DASHand2] = ACTIONS(2286), - [anon_sym_bit_DASHxor2] = ACTIONS(2286), - [anon_sym_bit_DASHor2] = ACTIONS(2286), - [anon_sym_COLON2] = ACTIONS(2286), - [anon_sym_err_GT] = ACTIONS(2288), - [anon_sym_out_GT] = ACTIONS(2288), - [anon_sym_e_GT] = ACTIONS(2288), - [anon_sym_o_GT] = ACTIONS(2288), - [anon_sym_err_PLUSout_GT] = ACTIONS(2288), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2288), - [anon_sym_o_PLUSe_GT] = ACTIONS(2288), - [anon_sym_e_PLUSo_GT] = ACTIONS(2288), - [anon_sym_err_GT_GT] = ACTIONS(2286), - [anon_sym_out_GT_GT] = ACTIONS(2286), - [anon_sym_e_GT_GT] = ACTIONS(2286), - [anon_sym_o_GT_GT] = ACTIONS(2286), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2286), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2286), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2286), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2286), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(754)] = { - [sym_expr_unary] = STATE(1323), - [sym__expr_unary_minus] = STATE(1290), - [sym_expr_binary] = STATE(1323), - [sym__expr_binary_expression] = STATE(1308), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1323), - [sym__val_range] = STATE(4744), - [sym__value] = STATE(1323), - [sym_val_nothing] = STATE(1295), - [sym_val_bool] = STATE(1027), - [sym_val_variable] = STATE(933), - [sym_val_cellpath] = STATE(1295), - [sym_val_number] = STATE(1295), - [sym__val_number_decimal] = STATE(463), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1295), - [sym_val_filesize] = STATE(1295), - [sym_val_binary] = STATE(1295), - [sym_val_string] = STATE(1295), - [sym__raw_str] = STATE(502), - [sym__str_double_quotes] = STATE(502), - [sym__str_single_quotes] = STATE(502), - [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1295), - [sym__inter_single_quotes] = STATE(1306), - [sym__inter_double_quotes] = STATE(1317), - [sym_val_list] = STATE(1295), - [sym_val_record] = STATE(1295), - [sym_val_table] = STATE(1295), - [sym_val_closure] = STATE(1295), - [sym_unquoted] = STATE(1125), - [sym__unquoted_with_expr] = STATE(1313), - [sym__unquoted_anonymous_prefix] = STATE(4744), - [sym_comment] = STATE(754), - [anon_sym_true] = ACTIONS(2208), - [anon_sym_false] = ACTIONS(2208), - [anon_sym_null] = ACTIONS(2210), - [aux_sym_cmd_identifier_token3] = ACTIONS(2212), - [aux_sym_cmd_identifier_token4] = ACTIONS(2212), - [aux_sym_cmd_identifier_token5] = ACTIONS(2212), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1008), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2214), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2216), - [anon_sym_DOT_DOT_LT] = ACTIONS(2216), - [aux_sym__val_number_decimal_token1] = ACTIONS(2218), - [aux_sym__val_number_decimal_token2] = ACTIONS(2220), - [aux_sym__val_number_decimal_token3] = ACTIONS(2222), - [aux_sym__val_number_decimal_token4] = ACTIONS(2222), - [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(2224), - [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(2226), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(755)] = { - [sym_expr_unary] = STATE(936), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(936), - [sym__expr_binary_expression] = STATE(1260), - [sym_expr_parenthesized] = STATE(703), - [sym_val_range] = STATE(936), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(936), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(942), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(438), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(706), - [sym__unquoted_with_expr] = STATE(951), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [sym_comment] = STATE(755), - [anon_sym_true] = ACTIONS(1938), - [anon_sym_false] = ACTIONS(1938), - [anon_sym_null] = ACTIONS(1940), - [aux_sym_cmd_identifier_token3] = ACTIONS(1942), - [aux_sym_cmd_identifier_token4] = ACTIONS(1942), - [aux_sym_cmd_identifier_token5] = ACTIONS(1942), + [anon_sym_true] = ACTIONS(1996), + [anon_sym_false] = ACTIONS(1996), + [anon_sym_null] = ACTIONS(1998), + [aux_sym_cmd_identifier_token3] = ACTIONS(2000), + [aux_sym_cmd_identifier_token4] = ACTIONS(2000), + [aux_sym_cmd_identifier_token5] = ACTIONS(2000), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1944), + [anon_sym_DOT_DOT] = ACTIONS(2002), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), - [anon_sym_DOT_DOT_LT] = ACTIONS(1946), - [aux_sym__val_number_decimal_token1] = ACTIONS(1948), - [aux_sym__val_number_decimal_token2] = ACTIONS(1950), - [aux_sym__val_number_decimal_token3] = ACTIONS(1952), - [aux_sym__val_number_decimal_token4] = ACTIONS(1952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), + [anon_sym_DOT_DOT_LT] = ACTIONS(2004), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2008), + [aux_sym__val_number_decimal_token3] = ACTIONS(2010), + [aux_sym__val_number_decimal_token4] = ACTIONS(2010), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1954), + [sym_val_date] = ACTIONS(2012), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, + [STATE(752)] = { + [aux_sym__repeat_newline] = STATE(1047), + [sym__expr_parenthesized_immediate] = STATE(5073), + [sym_comment] = STATE(752), + [anon_sym_in] = ACTIONS(2346), + [sym__newline] = ACTIONS(2346), + [anon_sym_SEMI] = 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_RPAREN] = ACTIONS(2346), + [anon_sym_GT2] = ACTIONS(2348), + [anon_sym_DASH2] = ACTIONS(2346), + [anon_sym_LBRACE] = ACTIONS(2346), + [anon_sym_STAR2] = ACTIONS(2348), + [anon_sym_and2] = ACTIONS(2346), + [anon_sym_xor2] = ACTIONS(2346), + [anon_sym_or2] = ACTIONS(2346), + [anon_sym_not_DASHin2] = ACTIONS(2346), + [anon_sym_has2] = ACTIONS(2346), + [anon_sym_not_DASHhas2] = ACTIONS(2346), + [anon_sym_starts_DASHwith2] = ACTIONS(2346), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2346), + [anon_sym_ends_DASHwith2] = ACTIONS(2346), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2346), + [anon_sym_EQ_EQ2] = ACTIONS(2346), + [anon_sym_BANG_EQ2] = ACTIONS(2346), + [anon_sym_LT2] = ACTIONS(2348), + [anon_sym_LT_EQ2] = ACTIONS(2346), + [anon_sym_GT_EQ2] = ACTIONS(2346), + [anon_sym_EQ_TILDE2] = ACTIONS(2346), + [anon_sym_BANG_TILDE2] = ACTIONS(2346), + [anon_sym_like2] = ACTIONS(2346), + [anon_sym_not_DASHlike2] = ACTIONS(2346), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_STAR_STAR2] = ACTIONS(2346), + [anon_sym_PLUS_PLUS2] = ACTIONS(2346), + [anon_sym_SLASH2] = ACTIONS(2348), + [anon_sym_mod2] = ACTIONS(2346), + [anon_sym_SLASH_SLASH2] = ACTIONS(2346), + [anon_sym_PLUS2] = ACTIONS(2348), + [anon_sym_bit_DASHshl2] = ACTIONS(2346), + [anon_sym_bit_DASHshr2] = ACTIONS(2346), + [anon_sym_bit_DASHand2] = ACTIONS(2346), + [anon_sym_bit_DASHxor2] = ACTIONS(2346), + [anon_sym_bit_DASHor2] = ACTIONS(2346), + [anon_sym_err_GT] = ACTIONS(2348), + [anon_sym_out_GT] = ACTIONS(2348), + [anon_sym_e_GT] = ACTIONS(2348), + [anon_sym_o_GT] = ACTIONS(2348), + [anon_sym_err_PLUSout_GT] = ACTIONS(2348), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2348), + [anon_sym_o_PLUSe_GT] = ACTIONS(2348), + [anon_sym_e_PLUSo_GT] = ACTIONS(2348), + [anon_sym_err_GT_GT] = ACTIONS(2346), + [anon_sym_out_GT_GT] = ACTIONS(2346), + [anon_sym_e_GT_GT] = ACTIONS(2346), + [anon_sym_o_GT_GT] = ACTIONS(2346), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2346), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2346), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2346), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2346), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(753)] = { + [aux_sym__repeat_newline] = STATE(1048), + [sym__expr_parenthesized_immediate] = STATE(5073), + [sym_comment] = STATE(753), + [anon_sym_in] = ACTIONS(2346), + [sym__newline] = ACTIONS(2346), + [anon_sym_SEMI] = 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_RPAREN] = ACTIONS(2346), + [anon_sym_GT2] = ACTIONS(2348), + [anon_sym_DASH2] = ACTIONS(2346), + [anon_sym_LBRACE] = ACTIONS(2346), + [anon_sym_STAR2] = ACTIONS(2348), + [anon_sym_and2] = ACTIONS(2346), + [anon_sym_xor2] = ACTIONS(2346), + [anon_sym_or2] = ACTIONS(2346), + [anon_sym_not_DASHin2] = ACTIONS(2346), + [anon_sym_has2] = ACTIONS(2346), + [anon_sym_not_DASHhas2] = ACTIONS(2346), + [anon_sym_starts_DASHwith2] = ACTIONS(2346), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2346), + [anon_sym_ends_DASHwith2] = ACTIONS(2346), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2346), + [anon_sym_EQ_EQ2] = ACTIONS(2346), + [anon_sym_BANG_EQ2] = ACTIONS(2346), + [anon_sym_LT2] = ACTIONS(2348), + [anon_sym_LT_EQ2] = ACTIONS(2346), + [anon_sym_GT_EQ2] = ACTIONS(2346), + [anon_sym_EQ_TILDE2] = ACTIONS(2346), + [anon_sym_BANG_TILDE2] = ACTIONS(2346), + [anon_sym_like2] = ACTIONS(2346), + [anon_sym_not_DASHlike2] = ACTIONS(2346), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_STAR_STAR2] = ACTIONS(2346), + [anon_sym_PLUS_PLUS2] = ACTIONS(2346), + [anon_sym_SLASH2] = ACTIONS(2348), + [anon_sym_mod2] = ACTIONS(2346), + [anon_sym_SLASH_SLASH2] = ACTIONS(2346), + [anon_sym_PLUS2] = ACTIONS(2348), + [anon_sym_bit_DASHshl2] = ACTIONS(2346), + [anon_sym_bit_DASHshr2] = ACTIONS(2346), + [anon_sym_bit_DASHand2] = ACTIONS(2346), + [anon_sym_bit_DASHxor2] = ACTIONS(2346), + [anon_sym_bit_DASHor2] = ACTIONS(2346), + [anon_sym_err_GT] = ACTIONS(2348), + [anon_sym_out_GT] = ACTIONS(2348), + [anon_sym_e_GT] = ACTIONS(2348), + [anon_sym_o_GT] = ACTIONS(2348), + [anon_sym_err_PLUSout_GT] = ACTIONS(2348), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2348), + [anon_sym_o_PLUSe_GT] = ACTIONS(2348), + [anon_sym_e_PLUSo_GT] = ACTIONS(2348), + [anon_sym_err_GT_GT] = ACTIONS(2346), + [anon_sym_out_GT_GT] = ACTIONS(2346), + [anon_sym_e_GT_GT] = ACTIONS(2346), + [anon_sym_o_GT_GT] = ACTIONS(2346), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2346), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2346), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2346), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2346), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(754)] = { + [aux_sym__repeat_newline] = STATE(1056), + [sym__expr_parenthesized_immediate] = STATE(5073), + [sym_comment] = STATE(754), + [anon_sym_in] = ACTIONS(2346), + [sym__newline] = ACTIONS(2346), + [anon_sym_SEMI] = 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_RPAREN] = ACTIONS(2346), + [anon_sym_GT2] = ACTIONS(2348), + [anon_sym_DASH2] = ACTIONS(2346), + [anon_sym_LBRACE] = ACTIONS(2346), + [anon_sym_STAR2] = ACTIONS(2348), + [anon_sym_and2] = ACTIONS(2346), + [anon_sym_xor2] = ACTIONS(2346), + [anon_sym_or2] = ACTIONS(2346), + [anon_sym_not_DASHin2] = ACTIONS(2346), + [anon_sym_has2] = ACTIONS(2346), + [anon_sym_not_DASHhas2] = ACTIONS(2346), + [anon_sym_starts_DASHwith2] = ACTIONS(2346), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2346), + [anon_sym_ends_DASHwith2] = ACTIONS(2346), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2346), + [anon_sym_EQ_EQ2] = ACTIONS(2346), + [anon_sym_BANG_EQ2] = ACTIONS(2346), + [anon_sym_LT2] = ACTIONS(2348), + [anon_sym_LT_EQ2] = ACTIONS(2346), + [anon_sym_GT_EQ2] = ACTIONS(2346), + [anon_sym_EQ_TILDE2] = ACTIONS(2346), + [anon_sym_BANG_TILDE2] = ACTIONS(2346), + [anon_sym_like2] = ACTIONS(2346), + [anon_sym_not_DASHlike2] = ACTIONS(2346), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_STAR_STAR2] = ACTIONS(2346), + [anon_sym_PLUS_PLUS2] = ACTIONS(2346), + [anon_sym_SLASH2] = ACTIONS(2348), + [anon_sym_mod2] = ACTIONS(2346), + [anon_sym_SLASH_SLASH2] = ACTIONS(2346), + [anon_sym_PLUS2] = ACTIONS(2348), + [anon_sym_bit_DASHshl2] = ACTIONS(2346), + [anon_sym_bit_DASHshr2] = ACTIONS(2346), + [anon_sym_bit_DASHand2] = ACTIONS(2346), + [anon_sym_bit_DASHxor2] = ACTIONS(2346), + [anon_sym_bit_DASHor2] = ACTIONS(2346), + [anon_sym_err_GT] = ACTIONS(2348), + [anon_sym_out_GT] = ACTIONS(2348), + [anon_sym_e_GT] = ACTIONS(2348), + [anon_sym_o_GT] = ACTIONS(2348), + [anon_sym_err_PLUSout_GT] = ACTIONS(2348), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2348), + [anon_sym_o_PLUSe_GT] = ACTIONS(2348), + [anon_sym_e_PLUSo_GT] = ACTIONS(2348), + [anon_sym_err_GT_GT] = ACTIONS(2346), + [anon_sym_out_GT_GT] = ACTIONS(2346), + [anon_sym_e_GT_GT] = ACTIONS(2346), + [anon_sym_o_GT_GT] = ACTIONS(2346), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2346), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2346), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2346), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2346), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(755)] = { + [aux_sym__repeat_newline] = STATE(1073), + [sym__expr_parenthesized_immediate] = STATE(5073), + [sym_comment] = STATE(755), + [anon_sym_in] = ACTIONS(2346), + [sym__newline] = ACTIONS(2346), + [anon_sym_SEMI] = 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_RPAREN] = ACTIONS(2346), + [anon_sym_GT2] = ACTIONS(2348), + [anon_sym_DASH2] = ACTIONS(2346), + [anon_sym_LBRACE] = ACTIONS(2346), + [anon_sym_STAR2] = ACTIONS(2348), + [anon_sym_and2] = ACTIONS(2346), + [anon_sym_xor2] = ACTIONS(2346), + [anon_sym_or2] = ACTIONS(2346), + [anon_sym_not_DASHin2] = ACTIONS(2346), + [anon_sym_has2] = ACTIONS(2346), + [anon_sym_not_DASHhas2] = ACTIONS(2346), + [anon_sym_starts_DASHwith2] = ACTIONS(2346), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2346), + [anon_sym_ends_DASHwith2] = ACTIONS(2346), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2346), + [anon_sym_EQ_EQ2] = ACTIONS(2346), + [anon_sym_BANG_EQ2] = ACTIONS(2346), + [anon_sym_LT2] = ACTIONS(2348), + [anon_sym_LT_EQ2] = ACTIONS(2346), + [anon_sym_GT_EQ2] = ACTIONS(2346), + [anon_sym_EQ_TILDE2] = ACTIONS(2346), + [anon_sym_BANG_TILDE2] = ACTIONS(2346), + [anon_sym_like2] = ACTIONS(2346), + [anon_sym_not_DASHlike2] = ACTIONS(2346), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_STAR_STAR2] = ACTIONS(2346), + [anon_sym_PLUS_PLUS2] = ACTIONS(2346), + [anon_sym_SLASH2] = ACTIONS(2348), + [anon_sym_mod2] = ACTIONS(2346), + [anon_sym_SLASH_SLASH2] = ACTIONS(2346), + [anon_sym_PLUS2] = ACTIONS(2348), + [anon_sym_bit_DASHshl2] = ACTIONS(2346), + [anon_sym_bit_DASHshr2] = ACTIONS(2346), + [anon_sym_bit_DASHand2] = ACTIONS(2346), + [anon_sym_bit_DASHxor2] = ACTIONS(2346), + [anon_sym_bit_DASHor2] = ACTIONS(2346), + [anon_sym_err_GT] = ACTIONS(2348), + [anon_sym_out_GT] = ACTIONS(2348), + [anon_sym_e_GT] = ACTIONS(2348), + [anon_sym_o_GT] = ACTIONS(2348), + [anon_sym_err_PLUSout_GT] = ACTIONS(2348), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2348), + [anon_sym_o_PLUSe_GT] = ACTIONS(2348), + [anon_sym_e_PLUSo_GT] = ACTIONS(2348), + [anon_sym_err_GT_GT] = ACTIONS(2346), + [anon_sym_out_GT_GT] = ACTIONS(2346), + [anon_sym_e_GT_GT] = ACTIONS(2346), + [anon_sym_o_GT_GT] = ACTIONS(2346), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2346), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2346), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2346), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2346), + [anon_sym_POUND] = ACTIONS(3), + }, [STATE(756)] = { - [sym_expr_unary] = STATE(936), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(936), - [sym__expr_binary_expression] = STATE(1265), - [sym_expr_parenthesized] = STATE(703), - [sym_val_range] = STATE(936), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(936), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(942), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(438), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(709), - [sym__unquoted_with_expr] = STATE(967), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(1085), + [sym__expr_parenthesized_immediate] = STATE(5073), [sym_comment] = STATE(756), - [anon_sym_true] = ACTIONS(1938), - [anon_sym_false] = ACTIONS(1938), - [anon_sym_null] = ACTIONS(1940), - [aux_sym_cmd_identifier_token3] = ACTIONS(1942), - [aux_sym_cmd_identifier_token4] = ACTIONS(1942), - [aux_sym_cmd_identifier_token5] = ACTIONS(1942), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1944), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), - [anon_sym_DOT_DOT_LT] = ACTIONS(1946), - [aux_sym__val_number_decimal_token1] = ACTIONS(1948), - [aux_sym__val_number_decimal_token2] = ACTIONS(1950), - [aux_sym__val_number_decimal_token3] = ACTIONS(1952), - [aux_sym__val_number_decimal_token4] = ACTIONS(1952), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1954), - [anon_sym_DQUOTE] = 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(1936), + [anon_sym_in] = ACTIONS(2381), + [sym__newline] = ACTIONS(2381), + [anon_sym_SEMI] = ACTIONS(2381), + [anon_sym_PIPE] = ACTIONS(2381), + [anon_sym_err_GT_PIPE] = ACTIONS(2381), + [anon_sym_out_GT_PIPE] = ACTIONS(2381), + [anon_sym_e_GT_PIPE] = ACTIONS(2381), + [anon_sym_o_GT_PIPE] = ACTIONS(2381), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2381), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2381), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2381), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2381), + [anon_sym_RPAREN] = ACTIONS(2381), + [anon_sym_GT2] = ACTIONS(2383), + [anon_sym_DASH2] = ACTIONS(2381), + [anon_sym_LBRACE] = ACTIONS(2381), + [anon_sym_STAR2] = ACTIONS(2383), + [anon_sym_and2] = ACTIONS(2381), + [anon_sym_xor2] = ACTIONS(2381), + [anon_sym_or2] = ACTIONS(2381), + [anon_sym_not_DASHin2] = ACTIONS(2381), + [anon_sym_has2] = ACTIONS(2381), + [anon_sym_not_DASHhas2] = ACTIONS(2381), + [anon_sym_starts_DASHwith2] = ACTIONS(2381), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2381), + [anon_sym_ends_DASHwith2] = ACTIONS(2381), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2381), + [anon_sym_EQ_EQ2] = ACTIONS(2381), + [anon_sym_BANG_EQ2] = ACTIONS(2381), + [anon_sym_LT2] = ACTIONS(2383), + [anon_sym_LT_EQ2] = ACTIONS(2381), + [anon_sym_GT_EQ2] = ACTIONS(2381), + [anon_sym_EQ_TILDE2] = ACTIONS(2381), + [anon_sym_BANG_TILDE2] = ACTIONS(2381), + [anon_sym_like2] = ACTIONS(2381), + [anon_sym_not_DASHlike2] = ACTIONS(2381), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_STAR_STAR2] = ACTIONS(2381), + [anon_sym_PLUS_PLUS2] = ACTIONS(2381), + [anon_sym_SLASH2] = ACTIONS(2383), + [anon_sym_mod2] = ACTIONS(2381), + [anon_sym_SLASH_SLASH2] = ACTIONS(2381), + [anon_sym_PLUS2] = ACTIONS(2383), + [anon_sym_bit_DASHshl2] = ACTIONS(2381), + [anon_sym_bit_DASHshr2] = ACTIONS(2381), + [anon_sym_bit_DASHand2] = ACTIONS(2381), + [anon_sym_bit_DASHxor2] = ACTIONS(2381), + [anon_sym_bit_DASHor2] = ACTIONS(2381), + [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(2381), + [anon_sym_out_GT_GT] = ACTIONS(2381), + [anon_sym_e_GT_GT] = ACTIONS(2381), + [anon_sym_o_GT_GT] = ACTIONS(2381), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2381), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2381), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2381), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2381), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(757)] = { - [sym_expr_unary] = STATE(936), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(936), - [sym__expr_binary_expression] = STATE(1140), - [sym_expr_parenthesized] = STATE(703), - [sym_val_range] = STATE(936), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(936), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(942), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(438), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(710), - [sym__unquoted_with_expr] = STATE(968), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(1087), + [sym__expr_parenthesized_immediate] = STATE(5073), [sym_comment] = STATE(757), - [anon_sym_true] = ACTIONS(1938), - [anon_sym_false] = ACTIONS(1938), - [anon_sym_null] = ACTIONS(1940), - [aux_sym_cmd_identifier_token3] = ACTIONS(1942), - [aux_sym_cmd_identifier_token4] = ACTIONS(1942), - [aux_sym_cmd_identifier_token5] = ACTIONS(1942), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1944), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), - [anon_sym_DOT_DOT_LT] = ACTIONS(1946), - [aux_sym__val_number_decimal_token1] = ACTIONS(1948), - [aux_sym__val_number_decimal_token2] = ACTIONS(1950), - [aux_sym__val_number_decimal_token3] = ACTIONS(1952), - [aux_sym__val_number_decimal_token4] = ACTIONS(1952), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1954), - [anon_sym_DQUOTE] = 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(1936), + [anon_sym_in] = ACTIONS(2381), + [sym__newline] = ACTIONS(2381), + [anon_sym_SEMI] = ACTIONS(2381), + [anon_sym_PIPE] = ACTIONS(2381), + [anon_sym_err_GT_PIPE] = ACTIONS(2381), + [anon_sym_out_GT_PIPE] = ACTIONS(2381), + [anon_sym_e_GT_PIPE] = ACTIONS(2381), + [anon_sym_o_GT_PIPE] = ACTIONS(2381), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2381), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2381), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2381), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2381), + [anon_sym_RPAREN] = ACTIONS(2381), + [anon_sym_GT2] = ACTIONS(2383), + [anon_sym_DASH2] = ACTIONS(2381), + [anon_sym_LBRACE] = ACTIONS(2381), + [anon_sym_STAR2] = ACTIONS(2383), + [anon_sym_and2] = ACTIONS(2381), + [anon_sym_xor2] = ACTIONS(2381), + [anon_sym_or2] = ACTIONS(2381), + [anon_sym_not_DASHin2] = ACTIONS(2381), + [anon_sym_has2] = ACTIONS(2381), + [anon_sym_not_DASHhas2] = ACTIONS(2381), + [anon_sym_starts_DASHwith2] = ACTIONS(2381), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2381), + [anon_sym_ends_DASHwith2] = ACTIONS(2381), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2381), + [anon_sym_EQ_EQ2] = ACTIONS(2381), + [anon_sym_BANG_EQ2] = ACTIONS(2381), + [anon_sym_LT2] = ACTIONS(2383), + [anon_sym_LT_EQ2] = ACTIONS(2381), + [anon_sym_GT_EQ2] = ACTIONS(2381), + [anon_sym_EQ_TILDE2] = ACTIONS(2381), + [anon_sym_BANG_TILDE2] = ACTIONS(2381), + [anon_sym_like2] = ACTIONS(2381), + [anon_sym_not_DASHlike2] = ACTIONS(2381), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_STAR_STAR2] = ACTIONS(2381), + [anon_sym_PLUS_PLUS2] = ACTIONS(2381), + [anon_sym_SLASH2] = ACTIONS(2383), + [anon_sym_mod2] = ACTIONS(2381), + [anon_sym_SLASH_SLASH2] = ACTIONS(2381), + [anon_sym_PLUS2] = ACTIONS(2383), + [anon_sym_bit_DASHshl2] = ACTIONS(2381), + [anon_sym_bit_DASHshr2] = ACTIONS(2381), + [anon_sym_bit_DASHand2] = ACTIONS(2381), + [anon_sym_bit_DASHxor2] = ACTIONS(2381), + [anon_sym_bit_DASHor2] = ACTIONS(2381), + [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(2381), + [anon_sym_out_GT_GT] = ACTIONS(2381), + [anon_sym_e_GT_GT] = ACTIONS(2381), + [anon_sym_o_GT_GT] = ACTIONS(2381), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2381), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2381), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2381), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2381), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(758)] = { - [sym_expr_unary] = STATE(936), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(936), - [sym__expr_binary_expression] = STATE(1146), - [sym_expr_parenthesized] = STATE(703), - [sym_val_range] = STATE(936), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(936), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(942), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(438), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(711), - [sym__unquoted_with_expr] = STATE(907), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_expr_unary] = STATE(940), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(940), + [sym__expr_binary_expression] = STATE(2240), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(940), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(940), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1965), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1761), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(684), + [sym__unquoted_with_expr] = STATE(973), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(758), - [anon_sym_true] = ACTIONS(1938), - [anon_sym_false] = ACTIONS(1938), - [anon_sym_null] = ACTIONS(1940), - [aux_sym_cmd_identifier_token3] = ACTIONS(1942), - [aux_sym_cmd_identifier_token4] = ACTIONS(1942), - [aux_sym_cmd_identifier_token5] = ACTIONS(1942), + [anon_sym_true] = ACTIONS(1996), + [anon_sym_false] = ACTIONS(1996), + [anon_sym_null] = ACTIONS(1998), + [aux_sym_cmd_identifier_token3] = ACTIONS(2000), + [aux_sym_cmd_identifier_token4] = ACTIONS(2000), + [aux_sym_cmd_identifier_token5] = ACTIONS(2000), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1944), + [anon_sym_DOT_DOT] = ACTIONS(2002), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), - [anon_sym_DOT_DOT_LT] = ACTIONS(1946), - [aux_sym__val_number_decimal_token1] = ACTIONS(1948), - [aux_sym__val_number_decimal_token2] = ACTIONS(1950), - [aux_sym__val_number_decimal_token3] = ACTIONS(1952), - [aux_sym__val_number_decimal_token4] = ACTIONS(1952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), + [anon_sym_DOT_DOT_LT] = ACTIONS(2004), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2008), + [aux_sym__val_number_decimal_token3] = ACTIONS(2010), + [aux_sym__val_number_decimal_token4] = ACTIONS(2010), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1954), + [sym_val_date] = ACTIONS(2012), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(759)] = { - [sym_expr_unary] = STATE(936), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(936), - [sym__expr_binary_expression] = STATE(1149), - [sym_expr_parenthesized] = STATE(703), - [sym_val_range] = STATE(936), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(936), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(942), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(438), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(692), - [sym__unquoted_with_expr] = STATE(908), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(1089), + [sym__expr_parenthesized_immediate] = STATE(5073), [sym_comment] = STATE(759), - [anon_sym_true] = ACTIONS(1938), - [anon_sym_false] = ACTIONS(1938), - [anon_sym_null] = ACTIONS(1940), - [aux_sym_cmd_identifier_token3] = ACTIONS(1942), - [aux_sym_cmd_identifier_token4] = ACTIONS(1942), - [aux_sym_cmd_identifier_token5] = ACTIONS(1942), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1944), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), - [anon_sym_DOT_DOT_LT] = ACTIONS(1946), - [aux_sym__val_number_decimal_token1] = ACTIONS(1948), - [aux_sym__val_number_decimal_token2] = ACTIONS(1950), - [aux_sym__val_number_decimal_token3] = ACTIONS(1952), - [aux_sym__val_number_decimal_token4] = ACTIONS(1952), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1954), - [anon_sym_DQUOTE] = 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(1936), + [anon_sym_in] = ACTIONS(2381), + [sym__newline] = ACTIONS(2381), + [anon_sym_SEMI] = ACTIONS(2381), + [anon_sym_PIPE] = ACTIONS(2381), + [anon_sym_err_GT_PIPE] = ACTIONS(2381), + [anon_sym_out_GT_PIPE] = ACTIONS(2381), + [anon_sym_e_GT_PIPE] = ACTIONS(2381), + [anon_sym_o_GT_PIPE] = ACTIONS(2381), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2381), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2381), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2381), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2381), + [anon_sym_RPAREN] = ACTIONS(2381), + [anon_sym_GT2] = ACTIONS(2383), + [anon_sym_DASH2] = ACTIONS(2381), + [anon_sym_LBRACE] = ACTIONS(2381), + [anon_sym_STAR2] = ACTIONS(2383), + [anon_sym_and2] = ACTIONS(2381), + [anon_sym_xor2] = ACTIONS(2381), + [anon_sym_or2] = ACTIONS(2381), + [anon_sym_not_DASHin2] = ACTIONS(2381), + [anon_sym_has2] = ACTIONS(2381), + [anon_sym_not_DASHhas2] = ACTIONS(2381), + [anon_sym_starts_DASHwith2] = ACTIONS(2381), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2381), + [anon_sym_ends_DASHwith2] = ACTIONS(2381), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2381), + [anon_sym_EQ_EQ2] = ACTIONS(2381), + [anon_sym_BANG_EQ2] = ACTIONS(2381), + [anon_sym_LT2] = ACTIONS(2383), + [anon_sym_LT_EQ2] = ACTIONS(2381), + [anon_sym_GT_EQ2] = ACTIONS(2381), + [anon_sym_EQ_TILDE2] = ACTIONS(2381), + [anon_sym_BANG_TILDE2] = ACTIONS(2381), + [anon_sym_like2] = ACTIONS(2381), + [anon_sym_not_DASHlike2] = ACTIONS(2381), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_STAR_STAR2] = ACTIONS(2381), + [anon_sym_PLUS_PLUS2] = ACTIONS(2381), + [anon_sym_SLASH2] = ACTIONS(2383), + [anon_sym_mod2] = ACTIONS(2381), + [anon_sym_SLASH_SLASH2] = ACTIONS(2381), + [anon_sym_PLUS2] = ACTIONS(2383), + [anon_sym_bit_DASHshl2] = ACTIONS(2381), + [anon_sym_bit_DASHshr2] = ACTIONS(2381), + [anon_sym_bit_DASHand2] = ACTIONS(2381), + [anon_sym_bit_DASHxor2] = ACTIONS(2381), + [anon_sym_bit_DASHor2] = ACTIONS(2381), + [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(2381), + [anon_sym_out_GT_GT] = ACTIONS(2381), + [anon_sym_e_GT_GT] = ACTIONS(2381), + [anon_sym_o_GT_GT] = ACTIONS(2381), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2381), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2381), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2381), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2381), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(760)] = { - [sym_expr_unary] = STATE(936), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(936), - [sym__expr_binary_expression] = STATE(1150), - [sym_expr_parenthesized] = STATE(703), - [sym_val_range] = STATE(936), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(936), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(942), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(438), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(697), - [sym__unquoted_with_expr] = STATE(910), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(1091), + [sym__expr_parenthesized_immediate] = STATE(5073), [sym_comment] = STATE(760), - [anon_sym_true] = ACTIONS(1938), - [anon_sym_false] = ACTIONS(1938), - [anon_sym_null] = ACTIONS(1940), - [aux_sym_cmd_identifier_token3] = ACTIONS(1942), - [aux_sym_cmd_identifier_token4] = ACTIONS(1942), - [aux_sym_cmd_identifier_token5] = ACTIONS(1942), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1944), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), - [anon_sym_DOT_DOT_LT] = ACTIONS(1946), - [aux_sym__val_number_decimal_token1] = ACTIONS(1948), - [aux_sym__val_number_decimal_token2] = ACTIONS(1950), - [aux_sym__val_number_decimal_token3] = ACTIONS(1952), - [aux_sym__val_number_decimal_token4] = ACTIONS(1952), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1954), - [anon_sym_DQUOTE] = 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(1936), + [anon_sym_in] = ACTIONS(2381), + [sym__newline] = ACTIONS(2381), + [anon_sym_SEMI] = ACTIONS(2381), + [anon_sym_PIPE] = ACTIONS(2381), + [anon_sym_err_GT_PIPE] = ACTIONS(2381), + [anon_sym_out_GT_PIPE] = ACTIONS(2381), + [anon_sym_e_GT_PIPE] = ACTIONS(2381), + [anon_sym_o_GT_PIPE] = ACTIONS(2381), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2381), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2381), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2381), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2381), + [anon_sym_RPAREN] = ACTIONS(2381), + [anon_sym_GT2] = ACTIONS(2383), + [anon_sym_DASH2] = ACTIONS(2381), + [anon_sym_LBRACE] = ACTIONS(2381), + [anon_sym_STAR2] = ACTIONS(2383), + [anon_sym_and2] = ACTIONS(2381), + [anon_sym_xor2] = ACTIONS(2381), + [anon_sym_or2] = ACTIONS(2381), + [anon_sym_not_DASHin2] = ACTIONS(2381), + [anon_sym_has2] = ACTIONS(2381), + [anon_sym_not_DASHhas2] = ACTIONS(2381), + [anon_sym_starts_DASHwith2] = ACTIONS(2381), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2381), + [anon_sym_ends_DASHwith2] = ACTIONS(2381), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2381), + [anon_sym_EQ_EQ2] = ACTIONS(2381), + [anon_sym_BANG_EQ2] = ACTIONS(2381), + [anon_sym_LT2] = ACTIONS(2383), + [anon_sym_LT_EQ2] = ACTIONS(2381), + [anon_sym_GT_EQ2] = ACTIONS(2381), + [anon_sym_EQ_TILDE2] = ACTIONS(2381), + [anon_sym_BANG_TILDE2] = ACTIONS(2381), + [anon_sym_like2] = ACTIONS(2381), + [anon_sym_not_DASHlike2] = ACTIONS(2381), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_STAR_STAR2] = ACTIONS(2381), + [anon_sym_PLUS_PLUS2] = ACTIONS(2381), + [anon_sym_SLASH2] = ACTIONS(2383), + [anon_sym_mod2] = ACTIONS(2381), + [anon_sym_SLASH_SLASH2] = ACTIONS(2381), + [anon_sym_PLUS2] = ACTIONS(2383), + [anon_sym_bit_DASHshl2] = ACTIONS(2381), + [anon_sym_bit_DASHshr2] = ACTIONS(2381), + [anon_sym_bit_DASHand2] = ACTIONS(2381), + [anon_sym_bit_DASHxor2] = ACTIONS(2381), + [anon_sym_bit_DASHor2] = ACTIONS(2381), + [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(2381), + [anon_sym_out_GT_GT] = ACTIONS(2381), + [anon_sym_e_GT_GT] = ACTIONS(2381), + [anon_sym_o_GT_GT] = ACTIONS(2381), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2381), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2381), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2381), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2381), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(761)] = { - [sym_expr_unary] = STATE(936), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(936), - [sym__expr_binary_expression] = STATE(1152), - [sym_expr_parenthesized] = STATE(703), - [sym_val_range] = STATE(936), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(936), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(942), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(438), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(705), - [sym__unquoted_with_expr] = STATE(913), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_expr_unary] = STATE(940), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(940), + [sym__expr_binary_expression] = STATE(2230), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(940), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(940), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1965), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1761), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(685), + [sym__unquoted_with_expr] = STATE(947), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(761), - [anon_sym_true] = ACTIONS(1938), - [anon_sym_false] = ACTIONS(1938), - [anon_sym_null] = ACTIONS(1940), - [aux_sym_cmd_identifier_token3] = ACTIONS(1942), - [aux_sym_cmd_identifier_token4] = ACTIONS(1942), - [aux_sym_cmd_identifier_token5] = ACTIONS(1942), + [anon_sym_true] = ACTIONS(1996), + [anon_sym_false] = ACTIONS(1996), + [anon_sym_null] = ACTIONS(1998), + [aux_sym_cmd_identifier_token3] = ACTIONS(2000), + [aux_sym_cmd_identifier_token4] = ACTIONS(2000), + [aux_sym_cmd_identifier_token5] = ACTIONS(2000), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1944), + [anon_sym_DOT_DOT] = ACTIONS(2002), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), - [anon_sym_DOT_DOT_LT] = ACTIONS(1946), - [aux_sym__val_number_decimal_token1] = ACTIONS(1948), - [aux_sym__val_number_decimal_token2] = ACTIONS(1950), - [aux_sym__val_number_decimal_token3] = ACTIONS(1952), - [aux_sym__val_number_decimal_token4] = ACTIONS(1952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), + [anon_sym_DOT_DOT_LT] = ACTIONS(2004), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2008), + [aux_sym__val_number_decimal_token3] = ACTIONS(2010), + [aux_sym__val_number_decimal_token4] = ACTIONS(2010), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1954), + [sym_val_date] = ACTIONS(2012), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(762)] = { - [sym_expr_unary] = STATE(936), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(936), - [sym__expr_binary_expression] = STATE(1153), - [sym_expr_parenthesized] = STATE(703), - [sym_val_range] = STATE(936), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(936), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(942), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(438), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(708), - [sym__unquoted_with_expr] = STATE(915), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(1093), + [sym__expr_parenthesized_immediate] = STATE(5073), [sym_comment] = STATE(762), - [anon_sym_true] = ACTIONS(1938), - [anon_sym_false] = ACTIONS(1938), - [anon_sym_null] = ACTIONS(1940), - [aux_sym_cmd_identifier_token3] = ACTIONS(1942), - [aux_sym_cmd_identifier_token4] = ACTIONS(1942), - [aux_sym_cmd_identifier_token5] = ACTIONS(1942), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1944), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), - [anon_sym_DOT_DOT_LT] = ACTIONS(1946), - [aux_sym__val_number_decimal_token1] = ACTIONS(1948), - [aux_sym__val_number_decimal_token2] = ACTIONS(1950), - [aux_sym__val_number_decimal_token3] = ACTIONS(1952), - [aux_sym__val_number_decimal_token4] = ACTIONS(1952), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1954), - [anon_sym_DQUOTE] = 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(1936), + [anon_sym_in] = ACTIONS(2381), + [sym__newline] = ACTIONS(2381), + [anon_sym_SEMI] = ACTIONS(2381), + [anon_sym_PIPE] = ACTIONS(2381), + [anon_sym_err_GT_PIPE] = ACTIONS(2381), + [anon_sym_out_GT_PIPE] = ACTIONS(2381), + [anon_sym_e_GT_PIPE] = ACTIONS(2381), + [anon_sym_o_GT_PIPE] = ACTIONS(2381), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2381), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2381), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2381), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2381), + [anon_sym_RPAREN] = ACTIONS(2381), + [anon_sym_GT2] = ACTIONS(2383), + [anon_sym_DASH2] = ACTIONS(2381), + [anon_sym_LBRACE] = ACTIONS(2381), + [anon_sym_STAR2] = ACTIONS(2383), + [anon_sym_and2] = ACTIONS(2381), + [anon_sym_xor2] = ACTIONS(2381), + [anon_sym_or2] = ACTIONS(2381), + [anon_sym_not_DASHin2] = ACTIONS(2381), + [anon_sym_has2] = ACTIONS(2381), + [anon_sym_not_DASHhas2] = ACTIONS(2381), + [anon_sym_starts_DASHwith2] = ACTIONS(2381), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2381), + [anon_sym_ends_DASHwith2] = ACTIONS(2381), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2381), + [anon_sym_EQ_EQ2] = ACTIONS(2381), + [anon_sym_BANG_EQ2] = ACTIONS(2381), + [anon_sym_LT2] = ACTIONS(2383), + [anon_sym_LT_EQ2] = ACTIONS(2381), + [anon_sym_GT_EQ2] = ACTIONS(2381), + [anon_sym_EQ_TILDE2] = ACTIONS(2381), + [anon_sym_BANG_TILDE2] = ACTIONS(2381), + [anon_sym_like2] = ACTIONS(2381), + [anon_sym_not_DASHlike2] = ACTIONS(2381), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_STAR_STAR2] = ACTIONS(2381), + [anon_sym_PLUS_PLUS2] = ACTIONS(2381), + [anon_sym_SLASH2] = ACTIONS(2383), + [anon_sym_mod2] = ACTIONS(2381), + [anon_sym_SLASH_SLASH2] = ACTIONS(2381), + [anon_sym_PLUS2] = ACTIONS(2383), + [anon_sym_bit_DASHshl2] = ACTIONS(2381), + [anon_sym_bit_DASHshr2] = ACTIONS(2381), + [anon_sym_bit_DASHand2] = ACTIONS(2381), + [anon_sym_bit_DASHxor2] = ACTIONS(2381), + [anon_sym_bit_DASHor2] = ACTIONS(2381), + [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(2381), + [anon_sym_out_GT_GT] = ACTIONS(2381), + [anon_sym_e_GT_GT] = ACTIONS(2381), + [anon_sym_o_GT_GT] = ACTIONS(2381), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2381), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2381), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2381), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2381), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(763)] = { - [sym_expr_unary] = STATE(936), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(936), - [sym__expr_binary_expression] = STATE(917), - [sym_expr_parenthesized] = STATE(703), - [sym_val_range] = STATE(936), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(936), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(942), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(438), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(714), - [sym__unquoted_with_expr] = STATE(919), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(1100), + [sym__expr_parenthesized_immediate] = STATE(5073), [sym_comment] = STATE(763), - [anon_sym_true] = ACTIONS(1938), - [anon_sym_false] = ACTIONS(1938), - [anon_sym_null] = ACTIONS(1940), - [aux_sym_cmd_identifier_token3] = ACTIONS(1942), - [aux_sym_cmd_identifier_token4] = ACTIONS(1942), - [aux_sym_cmd_identifier_token5] = ACTIONS(1942), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1944), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), - [anon_sym_DOT_DOT_LT] = ACTIONS(1946), - [aux_sym__val_number_decimal_token1] = ACTIONS(1948), - [aux_sym__val_number_decimal_token2] = ACTIONS(1950), - [aux_sym__val_number_decimal_token3] = ACTIONS(1952), - [aux_sym__val_number_decimal_token4] = ACTIONS(1952), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1954), - [anon_sym_DQUOTE] = 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(1936), + [anon_sym_in] = ACTIONS(2381), + [sym__newline] = ACTIONS(2381), + [anon_sym_SEMI] = ACTIONS(2381), + [anon_sym_PIPE] = ACTIONS(2381), + [anon_sym_err_GT_PIPE] = ACTIONS(2381), + [anon_sym_out_GT_PIPE] = ACTIONS(2381), + [anon_sym_e_GT_PIPE] = ACTIONS(2381), + [anon_sym_o_GT_PIPE] = ACTIONS(2381), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2381), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2381), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2381), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2381), + [anon_sym_RPAREN] = ACTIONS(2381), + [anon_sym_GT2] = ACTIONS(2383), + [anon_sym_DASH2] = ACTIONS(2381), + [anon_sym_LBRACE] = ACTIONS(2381), + [anon_sym_STAR2] = ACTIONS(2383), + [anon_sym_and2] = ACTIONS(2381), + [anon_sym_xor2] = ACTIONS(2381), + [anon_sym_or2] = ACTIONS(2381), + [anon_sym_not_DASHin2] = ACTIONS(2381), + [anon_sym_has2] = ACTIONS(2381), + [anon_sym_not_DASHhas2] = ACTIONS(2381), + [anon_sym_starts_DASHwith2] = ACTIONS(2381), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2381), + [anon_sym_ends_DASHwith2] = ACTIONS(2381), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2381), + [anon_sym_EQ_EQ2] = ACTIONS(2381), + [anon_sym_BANG_EQ2] = ACTIONS(2381), + [anon_sym_LT2] = ACTIONS(2383), + [anon_sym_LT_EQ2] = ACTIONS(2381), + [anon_sym_GT_EQ2] = ACTIONS(2381), + [anon_sym_EQ_TILDE2] = ACTIONS(2381), + [anon_sym_BANG_TILDE2] = ACTIONS(2381), + [anon_sym_like2] = ACTIONS(2381), + [anon_sym_not_DASHlike2] = ACTIONS(2381), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_STAR_STAR2] = ACTIONS(2381), + [anon_sym_PLUS_PLUS2] = ACTIONS(2381), + [anon_sym_SLASH2] = ACTIONS(2383), + [anon_sym_mod2] = ACTIONS(2381), + [anon_sym_SLASH_SLASH2] = ACTIONS(2381), + [anon_sym_PLUS2] = ACTIONS(2383), + [anon_sym_bit_DASHshl2] = ACTIONS(2381), + [anon_sym_bit_DASHshr2] = ACTIONS(2381), + [anon_sym_bit_DASHand2] = ACTIONS(2381), + [anon_sym_bit_DASHxor2] = ACTIONS(2381), + [anon_sym_bit_DASHor2] = ACTIONS(2381), + [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(2381), + [anon_sym_out_GT_GT] = ACTIONS(2381), + [anon_sym_e_GT_GT] = ACTIONS(2381), + [anon_sym_o_GT_GT] = ACTIONS(2381), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2381), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2381), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2381), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2381), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(764)] = { - [sym_expr_unary] = STATE(936), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(936), - [sym__expr_binary_expression] = STATE(1154), - [sym_expr_parenthesized] = STATE(703), - [sym_val_range] = STATE(936), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(936), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(942), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(438), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(701), - [sym__unquoted_with_expr] = STATE(922), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_expr_unary] = STATE(940), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(940), + [sym__expr_binary_expression] = STATE(2234), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(940), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(940), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1965), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1761), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(686), + [sym__unquoted_with_expr] = STATE(956), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(764), - [anon_sym_true] = ACTIONS(1938), - [anon_sym_false] = ACTIONS(1938), - [anon_sym_null] = ACTIONS(1940), - [aux_sym_cmd_identifier_token3] = ACTIONS(1942), - [aux_sym_cmd_identifier_token4] = ACTIONS(1942), - [aux_sym_cmd_identifier_token5] = ACTIONS(1942), + [anon_sym_true] = ACTIONS(1996), + [anon_sym_false] = ACTIONS(1996), + [anon_sym_null] = ACTIONS(1998), + [aux_sym_cmd_identifier_token3] = ACTIONS(2000), + [aux_sym_cmd_identifier_token4] = ACTIONS(2000), + [aux_sym_cmd_identifier_token5] = ACTIONS(2000), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1944), + [anon_sym_DOT_DOT] = ACTIONS(2002), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), - [anon_sym_DOT_DOT_LT] = ACTIONS(1946), - [aux_sym__val_number_decimal_token1] = ACTIONS(1948), - [aux_sym__val_number_decimal_token2] = ACTIONS(1950), - [aux_sym__val_number_decimal_token3] = ACTIONS(1952), - [aux_sym__val_number_decimal_token4] = ACTIONS(1952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), + [anon_sym_DOT_DOT_LT] = ACTIONS(2004), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2008), + [aux_sym__val_number_decimal_token3] = ACTIONS(2010), + [aux_sym__val_number_decimal_token4] = ACTIONS(2010), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1954), + [sym_val_date] = ACTIONS(2012), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(765)] = { - [sym_expr_unary] = STATE(936), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(936), - [sym__expr_binary_expression] = STATE(1155), - [sym_expr_parenthesized] = STATE(703), - [sym_val_range] = STATE(936), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(936), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(942), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(438), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(683), - [sym__unquoted_with_expr] = STATE(925), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [sym_comment] = STATE(765), - [anon_sym_true] = ACTIONS(1938), - [anon_sym_false] = ACTIONS(1938), - [anon_sym_null] = ACTIONS(1940), - [aux_sym_cmd_identifier_token3] = ACTIONS(1942), - [aux_sym_cmd_identifier_token4] = ACTIONS(1942), - [aux_sym_cmd_identifier_token5] = ACTIONS(1942), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1944), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), - [anon_sym_DOT_DOT_LT] = ACTIONS(1946), - [aux_sym__val_number_decimal_token1] = ACTIONS(1948), - [aux_sym__val_number_decimal_token2] = ACTIONS(1950), - [aux_sym__val_number_decimal_token3] = ACTIONS(1952), - [aux_sym__val_number_decimal_token4] = ACTIONS(1952), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1954), - [anon_sym_DQUOTE] = 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(1936), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(766)] = { - [sym_expr_unary] = STATE(936), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(936), - [sym__expr_binary_expression] = STATE(1157), - [sym_expr_parenthesized] = STATE(703), - [sym_val_range] = STATE(936), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(936), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(942), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(438), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(685), - [sym__unquoted_with_expr] = STATE(927), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [sym_comment] = STATE(766), - [anon_sym_true] = ACTIONS(1938), - [anon_sym_false] = ACTIONS(1938), - [anon_sym_null] = ACTIONS(1940), - [aux_sym_cmd_identifier_token3] = ACTIONS(1942), - [aux_sym_cmd_identifier_token4] = ACTIONS(1942), - [aux_sym_cmd_identifier_token5] = ACTIONS(1942), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1944), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), - [anon_sym_DOT_DOT_LT] = ACTIONS(1946), - [aux_sym__val_number_decimal_token1] = ACTIONS(1948), - [aux_sym__val_number_decimal_token2] = ACTIONS(1950), - [aux_sym__val_number_decimal_token3] = ACTIONS(1952), - [aux_sym__val_number_decimal_token4] = ACTIONS(1952), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1954), - [anon_sym_DQUOTE] = 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(1936), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(767)] = { - [sym_expr_unary] = STATE(1323), - [sym__expr_unary_minus] = STATE(1290), - [sym_expr_binary] = STATE(1323), - [sym__expr_binary_expression] = STATE(1289), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1323), - [sym__val_range] = STATE(4744), - [sym__value] = STATE(1323), - [sym_val_nothing] = STATE(1295), - [sym_val_bool] = STATE(1027), - [sym_val_variable] = STATE(933), - [sym_val_cellpath] = STATE(1295), - [sym_val_number] = STATE(1295), - [sym__val_number_decimal] = STATE(463), + [sym_expr_unary] = STATE(1320), + [sym__expr_unary_minus] = STATE(1296), + [sym_expr_binary] = STATE(1320), + [sym__expr_binary_expression] = STATE(1704), + [sym_expr_parenthesized] = STATE(935), + [sym_val_range] = STATE(1320), + [sym__val_range] = STATE(4844), + [sym__value] = STATE(1320), + [sym_val_nothing] = STATE(1316), + [sym_val_bool] = STATE(1514), + [sym_val_variable] = STATE(912), + [sym_val_cellpath] = STATE(1316), + [sym_val_number] = STATE(1316), + [sym__val_number_decimal] = STATE(1433), [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1295), - [sym_val_filesize] = STATE(1295), - [sym_val_binary] = STATE(1295), - [sym_val_string] = STATE(1295), + [sym_val_duration] = STATE(1316), + [sym_val_filesize] = STATE(1316), + [sym_val_binary] = STATE(1316), + [sym_val_string] = STATE(1316), [sym__raw_str] = STATE(502), [sym__str_double_quotes] = STATE(502), [sym__str_single_quotes] = STATE(502), [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1295), - [sym__inter_single_quotes] = STATE(1306), - [sym__inter_double_quotes] = STATE(1317), - [sym_val_list] = STATE(1295), - [sym_val_record] = STATE(1295), - [sym_val_table] = STATE(1295), - [sym_val_closure] = STATE(1295), - [sym_unquoted] = STATE(983), - [sym__unquoted_with_expr] = STATE(1301), - [sym__unquoted_anonymous_prefix] = STATE(4744), - [sym_comment] = STATE(767), - [anon_sym_true] = ACTIONS(2208), - [anon_sym_false] = ACTIONS(2208), - [anon_sym_null] = ACTIONS(2210), - [aux_sym_cmd_identifier_token3] = ACTIONS(2212), - [aux_sym_cmd_identifier_token4] = ACTIONS(2212), - [aux_sym_cmd_identifier_token5] = ACTIONS(2212), + [sym_val_interpolated] = STATE(1316), + [sym__inter_single_quotes] = STATE(1277), + [sym__inter_double_quotes] = STATE(1311), + [sym_val_list] = STATE(1316), + [sym_val_record] = STATE(1316), + [sym_val_table] = STATE(1316), + [sym_val_closure] = STATE(1316), + [sym_unquoted] = STATE(980), + [sym__unquoted_with_expr] = STATE(1322), + [sym__unquoted_anonymous_prefix] = STATE(4844), + [sym_comment] = STATE(765), + [anon_sym_true] = ACTIONS(2385), + [anon_sym_false] = ACTIONS(2385), + [anon_sym_null] = ACTIONS(2387), + [aux_sym_cmd_identifier_token3] = ACTIONS(2389), + [aux_sym_cmd_identifier_token4] = ACTIONS(2389), + [aux_sym_cmd_identifier_token5] = ACTIONS(2389), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1008), + [anon_sym_DOLLAR] = ACTIONS(1010), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2214), + [anon_sym_DOT_DOT] = ACTIONS(2391), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2216), - [anon_sym_DOT_DOT_LT] = ACTIONS(2216), - [aux_sym__val_number_decimal_token1] = ACTIONS(2218), - [aux_sym__val_number_decimal_token2] = ACTIONS(2220), - [aux_sym__val_number_decimal_token3] = ACTIONS(2222), - [aux_sym__val_number_decimal_token4] = ACTIONS(2222), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2393), + [anon_sym_DOT_DOT_LT] = ACTIONS(2393), + [aux_sym__val_number_decimal_token1] = ACTIONS(2395), + [aux_sym__val_number_decimal_token2] = ACTIONS(2397), + [aux_sym__val_number_decimal_token3] = ACTIONS(2399), + [aux_sym__val_number_decimal_token4] = ACTIONS(2399), [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(2224), + [sym_val_date] = ACTIONS(2401), [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(2226), + [aux_sym_unquoted_token1] = ACTIONS(2403), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(768)] = { - [sym_comment] = STATE(768), - [anon_sym_in] = ACTIONS(2290), - [sym__newline] = ACTIONS(2290), - [anon_sym_SEMI] = ACTIONS(2290), - [anon_sym_PIPE] = ACTIONS(2290), - [anon_sym_err_GT_PIPE] = ACTIONS(2290), - [anon_sym_out_GT_PIPE] = ACTIONS(2290), - [anon_sym_e_GT_PIPE] = ACTIONS(2290), - [anon_sym_o_GT_PIPE] = ACTIONS(2290), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2290), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2290), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2290), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2290), - [anon_sym_RPAREN] = ACTIONS(2290), - [anon_sym_GT2] = ACTIONS(2292), - [anon_sym_DASH2] = ACTIONS(2290), - [anon_sym_LBRACE] = ACTIONS(2290), - [anon_sym_RBRACE] = ACTIONS(2290), - [anon_sym_EQ_GT] = ACTIONS(2290), - [anon_sym_STAR2] = ACTIONS(2292), - [anon_sym_and2] = ACTIONS(2290), - [anon_sym_xor2] = ACTIONS(2290), - [anon_sym_or2] = ACTIONS(2290), - [anon_sym_not_DASHin2] = ACTIONS(2290), - [anon_sym_has2] = ACTIONS(2290), - [anon_sym_not_DASHhas2] = ACTIONS(2290), - [anon_sym_starts_DASHwith2] = ACTIONS(2290), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2290), - [anon_sym_ends_DASHwith2] = ACTIONS(2290), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2290), - [anon_sym_EQ_EQ2] = ACTIONS(2290), - [anon_sym_BANG_EQ2] = ACTIONS(2290), - [anon_sym_LT2] = ACTIONS(2292), - [anon_sym_LT_EQ2] = ACTIONS(2290), - [anon_sym_GT_EQ2] = ACTIONS(2290), - [anon_sym_EQ_TILDE2] = ACTIONS(2290), - [anon_sym_BANG_TILDE2] = ACTIONS(2290), - [anon_sym_like2] = ACTIONS(2290), - [anon_sym_not_DASHlike2] = ACTIONS(2290), - [anon_sym_STAR_STAR2] = ACTIONS(2290), - [anon_sym_PLUS_PLUS2] = ACTIONS(2290), - [anon_sym_SLASH2] = ACTIONS(2292), - [anon_sym_mod2] = ACTIONS(2290), - [anon_sym_SLASH_SLASH2] = ACTIONS(2290), - [anon_sym_PLUS2] = ACTIONS(2292), - [anon_sym_bit_DASHshl2] = ACTIONS(2290), - [anon_sym_bit_DASHshr2] = ACTIONS(2290), - [anon_sym_bit_DASHand2] = ACTIONS(2290), - [anon_sym_bit_DASHxor2] = ACTIONS(2290), - [anon_sym_bit_DASHor2] = ACTIONS(2290), - [anon_sym_COLON2] = ACTIONS(2290), - [anon_sym_err_GT] = ACTIONS(2292), - [anon_sym_out_GT] = ACTIONS(2292), - [anon_sym_e_GT] = ACTIONS(2292), - [anon_sym_o_GT] = ACTIONS(2292), - [anon_sym_err_PLUSout_GT] = ACTIONS(2292), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2292), - [anon_sym_o_PLUSe_GT] = ACTIONS(2292), - [anon_sym_e_PLUSo_GT] = ACTIONS(2292), - [anon_sym_err_GT_GT] = ACTIONS(2290), - [anon_sym_out_GT_GT] = ACTIONS(2290), - [anon_sym_e_GT_GT] = ACTIONS(2290), - [anon_sym_o_GT_GT] = ACTIONS(2290), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2290), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2290), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2290), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2290), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(769)] = { - [sym_comment] = STATE(769), - [anon_sym_in] = ACTIONS(2294), - [sym__newline] = ACTIONS(2294), - [anon_sym_SEMI] = ACTIONS(2294), - [anon_sym_PIPE] = ACTIONS(2294), - [anon_sym_err_GT_PIPE] = ACTIONS(2294), - [anon_sym_out_GT_PIPE] = ACTIONS(2294), - [anon_sym_e_GT_PIPE] = ACTIONS(2294), - [anon_sym_o_GT_PIPE] = ACTIONS(2294), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2294), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2294), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2294), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2294), - [anon_sym_RPAREN] = ACTIONS(2294), - [anon_sym_GT2] = ACTIONS(2296), - [anon_sym_DASH2] = ACTIONS(2294), - [anon_sym_LBRACE] = ACTIONS(2294), - [anon_sym_RBRACE] = ACTIONS(2294), - [anon_sym_EQ_GT] = ACTIONS(2294), - [anon_sym_STAR2] = ACTIONS(2296), - [anon_sym_and2] = ACTIONS(2294), - [anon_sym_xor2] = ACTIONS(2294), - [anon_sym_or2] = ACTIONS(2294), - [anon_sym_not_DASHin2] = ACTIONS(2294), - [anon_sym_has2] = ACTIONS(2294), - [anon_sym_not_DASHhas2] = ACTIONS(2294), - [anon_sym_starts_DASHwith2] = ACTIONS(2294), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2294), - [anon_sym_ends_DASHwith2] = ACTIONS(2294), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2294), - [anon_sym_EQ_EQ2] = ACTIONS(2294), - [anon_sym_BANG_EQ2] = ACTIONS(2294), - [anon_sym_LT2] = ACTIONS(2296), - [anon_sym_LT_EQ2] = ACTIONS(2294), - [anon_sym_GT_EQ2] = ACTIONS(2294), - [anon_sym_EQ_TILDE2] = ACTIONS(2294), - [anon_sym_BANG_TILDE2] = ACTIONS(2294), - [anon_sym_like2] = ACTIONS(2294), - [anon_sym_not_DASHlike2] = ACTIONS(2294), - [anon_sym_STAR_STAR2] = ACTIONS(2294), - [anon_sym_PLUS_PLUS2] = ACTIONS(2294), - [anon_sym_SLASH2] = ACTIONS(2296), - [anon_sym_mod2] = ACTIONS(2294), - [anon_sym_SLASH_SLASH2] = ACTIONS(2294), - [anon_sym_PLUS2] = ACTIONS(2296), - [anon_sym_bit_DASHshl2] = ACTIONS(2294), - [anon_sym_bit_DASHshr2] = ACTIONS(2294), - [anon_sym_bit_DASHand2] = ACTIONS(2294), - [anon_sym_bit_DASHxor2] = ACTIONS(2294), - [anon_sym_bit_DASHor2] = ACTIONS(2294), - [anon_sym_COLON2] = ACTIONS(2294), - [anon_sym_err_GT] = ACTIONS(2296), - [anon_sym_out_GT] = ACTIONS(2296), - [anon_sym_e_GT] = ACTIONS(2296), - [anon_sym_o_GT] = ACTIONS(2296), - [anon_sym_err_PLUSout_GT] = ACTIONS(2296), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2296), - [anon_sym_o_PLUSe_GT] = ACTIONS(2296), - [anon_sym_e_PLUSo_GT] = ACTIONS(2296), - [anon_sym_err_GT_GT] = ACTIONS(2294), - [anon_sym_out_GT_GT] = ACTIONS(2294), - [anon_sym_e_GT_GT] = ACTIONS(2294), - [anon_sym_o_GT_GT] = ACTIONS(2294), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2294), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2294), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2294), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2294), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(770)] = { - [sym_expr_unary] = STATE(1323), - [sym__expr_unary_minus] = STATE(1290), - [sym_expr_binary] = STATE(1323), - [sym__expr_binary_expression] = STATE(1280), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1323), - [sym__val_range] = STATE(4744), - [sym__value] = STATE(1323), - [sym_val_nothing] = STATE(1295), - [sym_val_bool] = STATE(1027), - [sym_val_variable] = STATE(933), - [sym_val_cellpath] = STATE(1295), - [sym_val_number] = STATE(1295), - [sym__val_number_decimal] = STATE(463), + [STATE(766)] = { + [sym_expr_unary] = STATE(1320), + [sym__expr_unary_minus] = STATE(1296), + [sym_expr_binary] = STATE(1320), + [sym__expr_binary_expression] = STATE(1705), + [sym_expr_parenthesized] = STATE(935), + [sym_val_range] = STATE(1320), + [sym__val_range] = STATE(4844), + [sym__value] = STATE(1320), + [sym_val_nothing] = STATE(1316), + [sym_val_bool] = STATE(1514), + [sym_val_variable] = STATE(912), + [sym_val_cellpath] = STATE(1316), + [sym_val_number] = STATE(1316), + [sym__val_number_decimal] = STATE(1433), [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1295), - [sym_val_filesize] = STATE(1295), - [sym_val_binary] = STATE(1295), - [sym_val_string] = STATE(1295), + [sym_val_duration] = STATE(1316), + [sym_val_filesize] = STATE(1316), + [sym_val_binary] = STATE(1316), + [sym_val_string] = STATE(1316), [sym__raw_str] = STATE(502), [sym__str_double_quotes] = STATE(502), [sym__str_single_quotes] = STATE(502), [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1295), - [sym__inter_single_quotes] = STATE(1306), - [sym__inter_double_quotes] = STATE(1317), - [sym_val_list] = STATE(1295), - [sym_val_record] = STATE(1295), - [sym_val_table] = STATE(1295), - [sym_val_closure] = STATE(1295), - [sym_unquoted] = STATE(990), + [sym_val_interpolated] = STATE(1316), + [sym__inter_single_quotes] = STATE(1277), + [sym__inter_double_quotes] = STATE(1311), + [sym_val_list] = STATE(1316), + [sym_val_record] = STATE(1316), + [sym_val_table] = STATE(1316), + [sym_val_closure] = STATE(1316), + [sym_unquoted] = STATE(1037), [sym__unquoted_with_expr] = STATE(1324), - [sym__unquoted_anonymous_prefix] = STATE(4744), - [sym_comment] = STATE(770), - [anon_sym_true] = ACTIONS(2208), - [anon_sym_false] = ACTIONS(2208), - [anon_sym_null] = ACTIONS(2210), - [aux_sym_cmd_identifier_token3] = ACTIONS(2212), - [aux_sym_cmd_identifier_token4] = ACTIONS(2212), - [aux_sym_cmd_identifier_token5] = ACTIONS(2212), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1008), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2214), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2216), - [anon_sym_DOT_DOT_LT] = ACTIONS(2216), - [aux_sym__val_number_decimal_token1] = ACTIONS(2218), - [aux_sym__val_number_decimal_token2] = ACTIONS(2220), - [aux_sym__val_number_decimal_token3] = ACTIONS(2222), - [aux_sym__val_number_decimal_token4] = ACTIONS(2222), - [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(2224), - [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(2226), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(771)] = { - [sym_comment] = STATE(771), - [anon_sym_in] = ACTIONS(2298), - [sym__newline] = ACTIONS(2298), - [anon_sym_SEMI] = ACTIONS(2298), - [anon_sym_PIPE] = ACTIONS(2298), - [anon_sym_err_GT_PIPE] = ACTIONS(2298), - [anon_sym_out_GT_PIPE] = ACTIONS(2298), - [anon_sym_e_GT_PIPE] = ACTIONS(2298), - [anon_sym_o_GT_PIPE] = ACTIONS(2298), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2298), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2298), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2298), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2298), - [anon_sym_RPAREN] = ACTIONS(2298), - [anon_sym_GT2] = ACTIONS(2300), - [anon_sym_DASH2] = ACTIONS(2298), - [anon_sym_LBRACE] = ACTIONS(2298), - [anon_sym_STAR2] = ACTIONS(2300), - [anon_sym_and2] = ACTIONS(2298), - [anon_sym_xor2] = ACTIONS(2298), - [anon_sym_or2] = ACTIONS(2298), - [anon_sym_not_DASHin2] = ACTIONS(2298), - [anon_sym_has2] = ACTIONS(2298), - [anon_sym_not_DASHhas2] = ACTIONS(2298), - [anon_sym_starts_DASHwith2] = ACTIONS(2298), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2298), - [anon_sym_ends_DASHwith2] = ACTIONS(2298), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2298), - [anon_sym_EQ_EQ2] = ACTIONS(2298), - [anon_sym_BANG_EQ2] = ACTIONS(2298), - [anon_sym_LT2] = ACTIONS(2300), - [anon_sym_LT_EQ2] = ACTIONS(2298), - [anon_sym_GT_EQ2] = ACTIONS(2298), - [anon_sym_EQ_TILDE2] = ACTIONS(2298), - [anon_sym_BANG_TILDE2] = ACTIONS(2298), - [anon_sym_like2] = ACTIONS(2298), - [anon_sym_not_DASHlike2] = ACTIONS(2298), - [anon_sym_STAR_STAR2] = ACTIONS(2298), - [anon_sym_PLUS_PLUS2] = ACTIONS(2298), - [anon_sym_SLASH2] = ACTIONS(2300), - [anon_sym_mod2] = ACTIONS(2298), - [anon_sym_SLASH_SLASH2] = ACTIONS(2298), - [anon_sym_PLUS2] = ACTIONS(2300), - [anon_sym_bit_DASHshl2] = ACTIONS(2298), - [anon_sym_bit_DASHshr2] = ACTIONS(2298), - [anon_sym_bit_DASHand2] = ACTIONS(2298), - [anon_sym_bit_DASHxor2] = ACTIONS(2298), - [anon_sym_bit_DASHor2] = ACTIONS(2298), - [anon_sym_DOT_DOT2] = ACTIONS(1618), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1620), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1620), - [anon_sym_err_GT] = ACTIONS(2300), - [anon_sym_out_GT] = ACTIONS(2300), - [anon_sym_e_GT] = ACTIONS(2300), - [anon_sym_o_GT] = ACTIONS(2300), - [anon_sym_err_PLUSout_GT] = ACTIONS(2300), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2300), - [anon_sym_o_PLUSe_GT] = ACTIONS(2300), - [anon_sym_e_PLUSo_GT] = ACTIONS(2300), - [anon_sym_err_GT_GT] = ACTIONS(2298), - [anon_sym_out_GT_GT] = ACTIONS(2298), - [anon_sym_e_GT_GT] = ACTIONS(2298), - [anon_sym_o_GT_GT] = ACTIONS(2298), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2298), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2298), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2298), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2298), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(772)] = { - [aux_sym__repeat_newline] = STATE(985), - [sym__expr_parenthesized_immediate] = STATE(4802), - [sym_comment] = STATE(772), - [anon_sym_in] = ACTIONS(2302), - [sym__newline] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_PIPE] = ACTIONS(2302), - [anon_sym_err_GT_PIPE] = ACTIONS(2302), - [anon_sym_out_GT_PIPE] = ACTIONS(2302), - [anon_sym_e_GT_PIPE] = ACTIONS(2302), - [anon_sym_o_GT_PIPE] = ACTIONS(2302), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2302), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2302), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2302), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2302), - [anon_sym_RPAREN] = ACTIONS(2302), - [anon_sym_GT2] = ACTIONS(2304), - [anon_sym_DASH2] = ACTIONS(2302), - [anon_sym_LBRACE] = ACTIONS(2302), - [anon_sym_STAR2] = ACTIONS(2304), - [anon_sym_and2] = ACTIONS(2302), - [anon_sym_xor2] = ACTIONS(2302), - [anon_sym_or2] = ACTIONS(2302), - [anon_sym_not_DASHin2] = ACTIONS(2302), - [anon_sym_has2] = ACTIONS(2302), - [anon_sym_not_DASHhas2] = ACTIONS(2302), - [anon_sym_starts_DASHwith2] = ACTIONS(2302), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2302), - [anon_sym_ends_DASHwith2] = ACTIONS(2302), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2302), - [anon_sym_EQ_EQ2] = ACTIONS(2302), - [anon_sym_BANG_EQ2] = ACTIONS(2302), - [anon_sym_LT2] = ACTIONS(2304), - [anon_sym_LT_EQ2] = ACTIONS(2302), - [anon_sym_GT_EQ2] = ACTIONS(2302), - [anon_sym_EQ_TILDE2] = ACTIONS(2302), - [anon_sym_BANG_TILDE2] = ACTIONS(2302), - [anon_sym_like2] = ACTIONS(2302), - [anon_sym_not_DASHlike2] = ACTIONS(2302), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_STAR_STAR2] = ACTIONS(2302), - [anon_sym_PLUS_PLUS2] = ACTIONS(2302), - [anon_sym_SLASH2] = ACTIONS(2304), - [anon_sym_mod2] = ACTIONS(2302), - [anon_sym_SLASH_SLASH2] = ACTIONS(2302), - [anon_sym_PLUS2] = ACTIONS(2304), - [anon_sym_bit_DASHshl2] = ACTIONS(2302), - [anon_sym_bit_DASHshr2] = ACTIONS(2302), - [anon_sym_bit_DASHand2] = ACTIONS(2302), - [anon_sym_bit_DASHxor2] = ACTIONS(2302), - [anon_sym_bit_DASHor2] = ACTIONS(2302), - [anon_sym_err_GT] = ACTIONS(2304), - [anon_sym_out_GT] = ACTIONS(2304), - [anon_sym_e_GT] = ACTIONS(2304), - [anon_sym_o_GT] = ACTIONS(2304), - [anon_sym_err_PLUSout_GT] = ACTIONS(2304), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2304), - [anon_sym_o_PLUSe_GT] = ACTIONS(2304), - [anon_sym_e_PLUSo_GT] = ACTIONS(2304), - [anon_sym_err_GT_GT] = ACTIONS(2302), - [anon_sym_out_GT_GT] = ACTIONS(2302), - [anon_sym_e_GT_GT] = ACTIONS(2302), - [anon_sym_o_GT_GT] = ACTIONS(2302), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2302), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2302), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2302), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2302), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(773)] = { - [sym_expr_unary] = STATE(1323), - [sym__expr_unary_minus] = STATE(1290), - [sym_expr_binary] = STATE(1323), - [sym__expr_binary_expression] = STATE(1321), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1323), - [sym__val_range] = STATE(4744), - [sym__value] = STATE(1323), - [sym_val_nothing] = STATE(1295), - [sym_val_bool] = STATE(1027), - [sym_val_variable] = STATE(933), - [sym_val_cellpath] = STATE(1295), - [sym_val_number] = STATE(1295), - [sym__val_number_decimal] = STATE(463), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1295), - [sym_val_filesize] = STATE(1295), - [sym_val_binary] = STATE(1295), - [sym_val_string] = STATE(1295), - [sym__raw_str] = STATE(502), - [sym__str_double_quotes] = STATE(502), - [sym__str_single_quotes] = STATE(502), - [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1295), - [sym__inter_single_quotes] = STATE(1306), - [sym__inter_double_quotes] = STATE(1317), - [sym_val_list] = STATE(1295), - [sym_val_record] = STATE(1295), - [sym_val_table] = STATE(1295), - [sym_val_closure] = STATE(1295), - [sym_unquoted] = STATE(1019), - [sym__unquoted_with_expr] = STATE(1297), - [sym__unquoted_anonymous_prefix] = STATE(4744), - [sym_comment] = STATE(773), - [anon_sym_true] = ACTIONS(2208), - [anon_sym_false] = ACTIONS(2208), - [anon_sym_null] = ACTIONS(2210), - [aux_sym_cmd_identifier_token3] = ACTIONS(2212), - [aux_sym_cmd_identifier_token4] = ACTIONS(2212), - [aux_sym_cmd_identifier_token5] = ACTIONS(2212), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1008), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2214), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2216), - [anon_sym_DOT_DOT_LT] = ACTIONS(2216), - [aux_sym__val_number_decimal_token1] = ACTIONS(2218), - [aux_sym__val_number_decimal_token2] = ACTIONS(2220), - [aux_sym__val_number_decimal_token3] = ACTIONS(2222), - [aux_sym__val_number_decimal_token4] = ACTIONS(2222), - [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(2224), - [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(2226), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(774)] = { - [aux_sym__repeat_newline] = STATE(987), - [sym__expr_parenthesized_immediate] = STATE(4802), - [sym_comment] = STATE(774), - [anon_sym_in] = ACTIONS(2302), - [sym__newline] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_PIPE] = ACTIONS(2302), - [anon_sym_err_GT_PIPE] = ACTIONS(2302), - [anon_sym_out_GT_PIPE] = ACTIONS(2302), - [anon_sym_e_GT_PIPE] = ACTIONS(2302), - [anon_sym_o_GT_PIPE] = ACTIONS(2302), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2302), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2302), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2302), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2302), - [anon_sym_RPAREN] = ACTIONS(2302), - [anon_sym_GT2] = ACTIONS(2304), - [anon_sym_DASH2] = ACTIONS(2302), - [anon_sym_LBRACE] = ACTIONS(2302), - [anon_sym_STAR2] = ACTIONS(2304), - [anon_sym_and2] = ACTIONS(2302), - [anon_sym_xor2] = ACTIONS(2302), - [anon_sym_or2] = ACTIONS(2302), - [anon_sym_not_DASHin2] = ACTIONS(2302), - [anon_sym_has2] = ACTIONS(2302), - [anon_sym_not_DASHhas2] = ACTIONS(2302), - [anon_sym_starts_DASHwith2] = ACTIONS(2302), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2302), - [anon_sym_ends_DASHwith2] = ACTIONS(2302), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2302), - [anon_sym_EQ_EQ2] = ACTIONS(2302), - [anon_sym_BANG_EQ2] = ACTIONS(2302), - [anon_sym_LT2] = ACTIONS(2304), - [anon_sym_LT_EQ2] = ACTIONS(2302), - [anon_sym_GT_EQ2] = ACTIONS(2302), - [anon_sym_EQ_TILDE2] = ACTIONS(2302), - [anon_sym_BANG_TILDE2] = ACTIONS(2302), - [anon_sym_like2] = ACTIONS(2302), - [anon_sym_not_DASHlike2] = ACTIONS(2302), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_STAR_STAR2] = ACTIONS(2302), - [anon_sym_PLUS_PLUS2] = ACTIONS(2302), - [anon_sym_SLASH2] = ACTIONS(2304), - [anon_sym_mod2] = ACTIONS(2302), - [anon_sym_SLASH_SLASH2] = ACTIONS(2302), - [anon_sym_PLUS2] = ACTIONS(2304), - [anon_sym_bit_DASHshl2] = ACTIONS(2302), - [anon_sym_bit_DASHshr2] = ACTIONS(2302), - [anon_sym_bit_DASHand2] = ACTIONS(2302), - [anon_sym_bit_DASHxor2] = ACTIONS(2302), - [anon_sym_bit_DASHor2] = ACTIONS(2302), - [anon_sym_err_GT] = ACTIONS(2304), - [anon_sym_out_GT] = ACTIONS(2304), - [anon_sym_e_GT] = ACTIONS(2304), - [anon_sym_o_GT] = ACTIONS(2304), - [anon_sym_err_PLUSout_GT] = ACTIONS(2304), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2304), - [anon_sym_o_PLUSe_GT] = ACTIONS(2304), - [anon_sym_e_PLUSo_GT] = ACTIONS(2304), - [anon_sym_err_GT_GT] = ACTIONS(2302), - [anon_sym_out_GT_GT] = ACTIONS(2302), - [anon_sym_e_GT_GT] = ACTIONS(2302), - [anon_sym_o_GT_GT] = ACTIONS(2302), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2302), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2302), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2302), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2302), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(775)] = { - [aux_sym__repeat_newline] = STATE(989), - [sym__expr_parenthesized_immediate] = STATE(4802), - [sym_comment] = STATE(775), - [anon_sym_in] = ACTIONS(2302), - [sym__newline] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_PIPE] = ACTIONS(2302), - [anon_sym_err_GT_PIPE] = ACTIONS(2302), - [anon_sym_out_GT_PIPE] = ACTIONS(2302), - [anon_sym_e_GT_PIPE] = ACTIONS(2302), - [anon_sym_o_GT_PIPE] = ACTIONS(2302), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2302), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2302), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2302), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2302), - [anon_sym_RPAREN] = ACTIONS(2302), - [anon_sym_GT2] = ACTIONS(2304), - [anon_sym_DASH2] = ACTIONS(2302), - [anon_sym_LBRACE] = ACTIONS(2302), - [anon_sym_STAR2] = ACTIONS(2304), - [anon_sym_and2] = ACTIONS(2302), - [anon_sym_xor2] = ACTIONS(2302), - [anon_sym_or2] = ACTIONS(2302), - [anon_sym_not_DASHin2] = ACTIONS(2302), - [anon_sym_has2] = ACTIONS(2302), - [anon_sym_not_DASHhas2] = ACTIONS(2302), - [anon_sym_starts_DASHwith2] = ACTIONS(2302), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2302), - [anon_sym_ends_DASHwith2] = ACTIONS(2302), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2302), - [anon_sym_EQ_EQ2] = ACTIONS(2302), - [anon_sym_BANG_EQ2] = ACTIONS(2302), - [anon_sym_LT2] = ACTIONS(2304), - [anon_sym_LT_EQ2] = ACTIONS(2302), - [anon_sym_GT_EQ2] = ACTIONS(2302), - [anon_sym_EQ_TILDE2] = ACTIONS(2302), - [anon_sym_BANG_TILDE2] = ACTIONS(2302), - [anon_sym_like2] = ACTIONS(2302), - [anon_sym_not_DASHlike2] = ACTIONS(2302), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_STAR_STAR2] = ACTIONS(2302), - [anon_sym_PLUS_PLUS2] = ACTIONS(2302), - [anon_sym_SLASH2] = ACTIONS(2304), - [anon_sym_mod2] = ACTIONS(2302), - [anon_sym_SLASH_SLASH2] = ACTIONS(2302), - [anon_sym_PLUS2] = ACTIONS(2304), - [anon_sym_bit_DASHshl2] = ACTIONS(2302), - [anon_sym_bit_DASHshr2] = ACTIONS(2302), - [anon_sym_bit_DASHand2] = ACTIONS(2302), - [anon_sym_bit_DASHxor2] = ACTIONS(2302), - [anon_sym_bit_DASHor2] = ACTIONS(2302), - [anon_sym_err_GT] = ACTIONS(2304), - [anon_sym_out_GT] = ACTIONS(2304), - [anon_sym_e_GT] = ACTIONS(2304), - [anon_sym_o_GT] = ACTIONS(2304), - [anon_sym_err_PLUSout_GT] = ACTIONS(2304), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2304), - [anon_sym_o_PLUSe_GT] = ACTIONS(2304), - [anon_sym_e_PLUSo_GT] = ACTIONS(2304), - [anon_sym_err_GT_GT] = ACTIONS(2302), - [anon_sym_out_GT_GT] = ACTIONS(2302), - [anon_sym_e_GT_GT] = ACTIONS(2302), - [anon_sym_o_GT_GT] = ACTIONS(2302), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2302), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2302), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2302), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2302), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(776)] = { - [aux_sym__repeat_newline] = STATE(993), - [sym__expr_parenthesized_immediate] = STATE(4802), - [sym_comment] = STATE(776), - [anon_sym_in] = ACTIONS(2302), - [sym__newline] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_PIPE] = ACTIONS(2302), - [anon_sym_err_GT_PIPE] = ACTIONS(2302), - [anon_sym_out_GT_PIPE] = ACTIONS(2302), - [anon_sym_e_GT_PIPE] = ACTIONS(2302), - [anon_sym_o_GT_PIPE] = ACTIONS(2302), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2302), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2302), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2302), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2302), - [anon_sym_RPAREN] = ACTIONS(2302), - [anon_sym_GT2] = ACTIONS(2304), - [anon_sym_DASH2] = ACTIONS(2302), - [anon_sym_LBRACE] = ACTIONS(2302), - [anon_sym_STAR2] = ACTIONS(2304), - [anon_sym_and2] = ACTIONS(2302), - [anon_sym_xor2] = ACTIONS(2302), - [anon_sym_or2] = ACTIONS(2302), - [anon_sym_not_DASHin2] = ACTIONS(2302), - [anon_sym_has2] = ACTIONS(2302), - [anon_sym_not_DASHhas2] = ACTIONS(2302), - [anon_sym_starts_DASHwith2] = ACTIONS(2302), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2302), - [anon_sym_ends_DASHwith2] = ACTIONS(2302), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2302), - [anon_sym_EQ_EQ2] = ACTIONS(2302), - [anon_sym_BANG_EQ2] = ACTIONS(2302), - [anon_sym_LT2] = ACTIONS(2304), - [anon_sym_LT_EQ2] = ACTIONS(2302), - [anon_sym_GT_EQ2] = ACTIONS(2302), - [anon_sym_EQ_TILDE2] = ACTIONS(2302), - [anon_sym_BANG_TILDE2] = ACTIONS(2302), - [anon_sym_like2] = ACTIONS(2302), - [anon_sym_not_DASHlike2] = ACTIONS(2302), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_STAR_STAR2] = ACTIONS(2302), - [anon_sym_PLUS_PLUS2] = ACTIONS(2302), - [anon_sym_SLASH2] = ACTIONS(2304), - [anon_sym_mod2] = ACTIONS(2302), - [anon_sym_SLASH_SLASH2] = ACTIONS(2302), - [anon_sym_PLUS2] = ACTIONS(2304), - [anon_sym_bit_DASHshl2] = ACTIONS(2302), - [anon_sym_bit_DASHshr2] = ACTIONS(2302), - [anon_sym_bit_DASHand2] = ACTIONS(2302), - [anon_sym_bit_DASHxor2] = ACTIONS(2302), - [anon_sym_bit_DASHor2] = ACTIONS(2302), - [anon_sym_err_GT] = ACTIONS(2304), - [anon_sym_out_GT] = ACTIONS(2304), - [anon_sym_e_GT] = ACTIONS(2304), - [anon_sym_o_GT] = ACTIONS(2304), - [anon_sym_err_PLUSout_GT] = ACTIONS(2304), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2304), - [anon_sym_o_PLUSe_GT] = ACTIONS(2304), - [anon_sym_e_PLUSo_GT] = ACTIONS(2304), - [anon_sym_err_GT_GT] = ACTIONS(2302), - [anon_sym_out_GT_GT] = ACTIONS(2302), - [anon_sym_e_GT_GT] = ACTIONS(2302), - [anon_sym_o_GT_GT] = ACTIONS(2302), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2302), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2302), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2302), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2302), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(777)] = { - [sym_comment] = STATE(777), - [anon_sym_in] = ACTIONS(2298), - [sym__newline] = ACTIONS(2306), - [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(2300), - [anon_sym_DASH2] = ACTIONS(2298), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2300), - [anon_sym_and2] = ACTIONS(2298), - [anon_sym_xor2] = ACTIONS(2298), - [anon_sym_or2] = ACTIONS(2298), - [anon_sym_not_DASHin2] = ACTIONS(2298), - [anon_sym_has2] = ACTIONS(2298), - [anon_sym_not_DASHhas2] = ACTIONS(2298), - [anon_sym_starts_DASHwith2] = ACTIONS(2298), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2298), - [anon_sym_ends_DASHwith2] = ACTIONS(2298), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2298), - [anon_sym_EQ_EQ2] = ACTIONS(2298), - [anon_sym_BANG_EQ2] = ACTIONS(2298), - [anon_sym_LT2] = ACTIONS(2300), - [anon_sym_LT_EQ2] = ACTIONS(2298), - [anon_sym_GT_EQ2] = ACTIONS(2298), - [anon_sym_EQ_TILDE2] = ACTIONS(2298), - [anon_sym_BANG_TILDE2] = ACTIONS(2298), - [anon_sym_like2] = ACTIONS(2298), - [anon_sym_not_DASHlike2] = ACTIONS(2298), - [anon_sym_STAR_STAR2] = ACTIONS(2298), - [anon_sym_PLUS_PLUS2] = ACTIONS(2298), - [anon_sym_SLASH2] = ACTIONS(2300), - [anon_sym_mod2] = ACTIONS(2298), - [anon_sym_SLASH_SLASH2] = ACTIONS(2298), - [anon_sym_PLUS2] = ACTIONS(2300), - [anon_sym_bit_DASHshl2] = ACTIONS(2298), - [anon_sym_bit_DASHshr2] = ACTIONS(2298), - [anon_sym_bit_DASHand2] = ACTIONS(2298), - [anon_sym_bit_DASHxor2] = ACTIONS(2298), - [anon_sym_bit_DASHor2] = ACTIONS(2298), - [anon_sym_DOT_DOT2] = ACTIONS(1618), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1620), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1620), - [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(778)] = { - [aux_sym__repeat_newline] = STATE(995), - [sym__expr_parenthesized_immediate] = STATE(4802), - [sym_comment] = STATE(778), - [anon_sym_in] = ACTIONS(2302), - [sym__newline] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_PIPE] = ACTIONS(2302), - [anon_sym_err_GT_PIPE] = ACTIONS(2302), - [anon_sym_out_GT_PIPE] = ACTIONS(2302), - [anon_sym_e_GT_PIPE] = ACTIONS(2302), - [anon_sym_o_GT_PIPE] = ACTIONS(2302), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2302), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2302), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2302), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2302), - [anon_sym_RPAREN] = ACTIONS(2302), - [anon_sym_GT2] = ACTIONS(2304), - [anon_sym_DASH2] = ACTIONS(2302), - [anon_sym_LBRACE] = ACTIONS(2302), - [anon_sym_STAR2] = ACTIONS(2304), - [anon_sym_and2] = ACTIONS(2302), - [anon_sym_xor2] = ACTIONS(2302), - [anon_sym_or2] = ACTIONS(2302), - [anon_sym_not_DASHin2] = ACTIONS(2302), - [anon_sym_has2] = ACTIONS(2302), - [anon_sym_not_DASHhas2] = ACTIONS(2302), - [anon_sym_starts_DASHwith2] = ACTIONS(2302), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2302), - [anon_sym_ends_DASHwith2] = ACTIONS(2302), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2302), - [anon_sym_EQ_EQ2] = ACTIONS(2302), - [anon_sym_BANG_EQ2] = ACTIONS(2302), - [anon_sym_LT2] = ACTIONS(2304), - [anon_sym_LT_EQ2] = ACTIONS(2302), - [anon_sym_GT_EQ2] = ACTIONS(2302), - [anon_sym_EQ_TILDE2] = ACTIONS(2302), - [anon_sym_BANG_TILDE2] = ACTIONS(2302), - [anon_sym_like2] = ACTIONS(2302), - [anon_sym_not_DASHlike2] = ACTIONS(2302), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_STAR_STAR2] = ACTIONS(2302), - [anon_sym_PLUS_PLUS2] = ACTIONS(2302), - [anon_sym_SLASH2] = ACTIONS(2304), - [anon_sym_mod2] = ACTIONS(2302), - [anon_sym_SLASH_SLASH2] = ACTIONS(2302), - [anon_sym_PLUS2] = ACTIONS(2304), - [anon_sym_bit_DASHshl2] = ACTIONS(2302), - [anon_sym_bit_DASHshr2] = ACTIONS(2302), - [anon_sym_bit_DASHand2] = ACTIONS(2302), - [anon_sym_bit_DASHxor2] = ACTIONS(2302), - [anon_sym_bit_DASHor2] = ACTIONS(2302), - [anon_sym_err_GT] = ACTIONS(2304), - [anon_sym_out_GT] = ACTIONS(2304), - [anon_sym_e_GT] = ACTIONS(2304), - [anon_sym_o_GT] = ACTIONS(2304), - [anon_sym_err_PLUSout_GT] = ACTIONS(2304), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2304), - [anon_sym_o_PLUSe_GT] = ACTIONS(2304), - [anon_sym_e_PLUSo_GT] = ACTIONS(2304), - [anon_sym_err_GT_GT] = ACTIONS(2302), - [anon_sym_out_GT_GT] = ACTIONS(2302), - [anon_sym_e_GT_GT] = ACTIONS(2302), - [anon_sym_o_GT_GT] = ACTIONS(2302), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2302), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2302), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2302), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2302), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(779)] = { - [aux_sym__repeat_newline] = STATE(997), - [sym__expr_parenthesized_immediate] = STATE(4802), - [sym_comment] = STATE(779), - [anon_sym_in] = ACTIONS(2302), - [sym__newline] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_PIPE] = ACTIONS(2302), - [anon_sym_err_GT_PIPE] = ACTIONS(2302), - [anon_sym_out_GT_PIPE] = ACTIONS(2302), - [anon_sym_e_GT_PIPE] = ACTIONS(2302), - [anon_sym_o_GT_PIPE] = ACTIONS(2302), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2302), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2302), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2302), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2302), - [anon_sym_RPAREN] = ACTIONS(2302), - [anon_sym_GT2] = ACTIONS(2304), - [anon_sym_DASH2] = ACTIONS(2302), - [anon_sym_LBRACE] = ACTIONS(2302), - [anon_sym_STAR2] = ACTIONS(2304), - [anon_sym_and2] = ACTIONS(2302), - [anon_sym_xor2] = ACTIONS(2302), - [anon_sym_or2] = ACTIONS(2302), - [anon_sym_not_DASHin2] = ACTIONS(2302), - [anon_sym_has2] = ACTIONS(2302), - [anon_sym_not_DASHhas2] = ACTIONS(2302), - [anon_sym_starts_DASHwith2] = ACTIONS(2302), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2302), - [anon_sym_ends_DASHwith2] = ACTIONS(2302), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2302), - [anon_sym_EQ_EQ2] = ACTIONS(2302), - [anon_sym_BANG_EQ2] = ACTIONS(2302), - [anon_sym_LT2] = ACTIONS(2304), - [anon_sym_LT_EQ2] = ACTIONS(2302), - [anon_sym_GT_EQ2] = ACTIONS(2302), - [anon_sym_EQ_TILDE2] = ACTIONS(2302), - [anon_sym_BANG_TILDE2] = ACTIONS(2302), - [anon_sym_like2] = ACTIONS(2302), - [anon_sym_not_DASHlike2] = ACTIONS(2302), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_STAR_STAR2] = ACTIONS(2302), - [anon_sym_PLUS_PLUS2] = ACTIONS(2302), - [anon_sym_SLASH2] = ACTIONS(2304), - [anon_sym_mod2] = ACTIONS(2302), - [anon_sym_SLASH_SLASH2] = ACTIONS(2302), - [anon_sym_PLUS2] = ACTIONS(2304), - [anon_sym_bit_DASHshl2] = ACTIONS(2302), - [anon_sym_bit_DASHshr2] = ACTIONS(2302), - [anon_sym_bit_DASHand2] = ACTIONS(2302), - [anon_sym_bit_DASHxor2] = ACTIONS(2302), - [anon_sym_bit_DASHor2] = ACTIONS(2302), - [anon_sym_err_GT] = ACTIONS(2304), - [anon_sym_out_GT] = ACTIONS(2304), - [anon_sym_e_GT] = ACTIONS(2304), - [anon_sym_o_GT] = ACTIONS(2304), - [anon_sym_err_PLUSout_GT] = ACTIONS(2304), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2304), - [anon_sym_o_PLUSe_GT] = ACTIONS(2304), - [anon_sym_e_PLUSo_GT] = ACTIONS(2304), - [anon_sym_err_GT_GT] = ACTIONS(2302), - [anon_sym_out_GT_GT] = ACTIONS(2302), - [anon_sym_e_GT_GT] = ACTIONS(2302), - [anon_sym_o_GT_GT] = ACTIONS(2302), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2302), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2302), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2302), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2302), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(780)] = { - [aux_sym__repeat_newline] = STATE(999), - [sym__expr_parenthesized_immediate] = STATE(4802), - [sym_comment] = STATE(780), - [anon_sym_in] = ACTIONS(2302), - [sym__newline] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_PIPE] = ACTIONS(2302), - [anon_sym_err_GT_PIPE] = ACTIONS(2302), - [anon_sym_out_GT_PIPE] = ACTIONS(2302), - [anon_sym_e_GT_PIPE] = ACTIONS(2302), - [anon_sym_o_GT_PIPE] = ACTIONS(2302), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2302), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2302), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2302), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2302), - [anon_sym_RPAREN] = ACTIONS(2302), - [anon_sym_GT2] = ACTIONS(2304), - [anon_sym_DASH2] = ACTIONS(2302), - [anon_sym_LBRACE] = ACTIONS(2302), - [anon_sym_STAR2] = ACTIONS(2304), - [anon_sym_and2] = ACTIONS(2302), - [anon_sym_xor2] = ACTIONS(2302), - [anon_sym_or2] = ACTIONS(2302), - [anon_sym_not_DASHin2] = ACTIONS(2302), - [anon_sym_has2] = ACTIONS(2302), - [anon_sym_not_DASHhas2] = ACTIONS(2302), - [anon_sym_starts_DASHwith2] = ACTIONS(2302), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2302), - [anon_sym_ends_DASHwith2] = ACTIONS(2302), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2302), - [anon_sym_EQ_EQ2] = ACTIONS(2302), - [anon_sym_BANG_EQ2] = ACTIONS(2302), - [anon_sym_LT2] = ACTIONS(2304), - [anon_sym_LT_EQ2] = ACTIONS(2302), - [anon_sym_GT_EQ2] = ACTIONS(2302), - [anon_sym_EQ_TILDE2] = ACTIONS(2302), - [anon_sym_BANG_TILDE2] = ACTIONS(2302), - [anon_sym_like2] = ACTIONS(2302), - [anon_sym_not_DASHlike2] = ACTIONS(2302), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_STAR_STAR2] = ACTIONS(2302), - [anon_sym_PLUS_PLUS2] = ACTIONS(2302), - [anon_sym_SLASH2] = ACTIONS(2304), - [anon_sym_mod2] = ACTIONS(2302), - [anon_sym_SLASH_SLASH2] = ACTIONS(2302), - [anon_sym_PLUS2] = ACTIONS(2304), - [anon_sym_bit_DASHshl2] = ACTIONS(2302), - [anon_sym_bit_DASHshr2] = ACTIONS(2302), - [anon_sym_bit_DASHand2] = ACTIONS(2302), - [anon_sym_bit_DASHxor2] = ACTIONS(2302), - [anon_sym_bit_DASHor2] = ACTIONS(2302), - [anon_sym_err_GT] = ACTIONS(2304), - [anon_sym_out_GT] = ACTIONS(2304), - [anon_sym_e_GT] = ACTIONS(2304), - [anon_sym_o_GT] = ACTIONS(2304), - [anon_sym_err_PLUSout_GT] = ACTIONS(2304), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2304), - [anon_sym_o_PLUSe_GT] = ACTIONS(2304), - [anon_sym_e_PLUSo_GT] = ACTIONS(2304), - [anon_sym_err_GT_GT] = ACTIONS(2302), - [anon_sym_out_GT_GT] = ACTIONS(2302), - [anon_sym_e_GT_GT] = ACTIONS(2302), - [anon_sym_o_GT_GT] = ACTIONS(2302), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2302), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2302), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2302), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2302), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(781)] = { - [aux_sym__repeat_newline] = STATE(1001), - [sym__expr_parenthesized_immediate] = STATE(4802), - [sym_comment] = STATE(781), - [anon_sym_in] = ACTIONS(2302), - [sym__newline] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_PIPE] = ACTIONS(2302), - [anon_sym_err_GT_PIPE] = ACTIONS(2302), - [anon_sym_out_GT_PIPE] = ACTIONS(2302), - [anon_sym_e_GT_PIPE] = ACTIONS(2302), - [anon_sym_o_GT_PIPE] = ACTIONS(2302), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2302), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2302), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2302), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2302), - [anon_sym_RPAREN] = ACTIONS(2302), - [anon_sym_GT2] = ACTIONS(2304), - [anon_sym_DASH2] = ACTIONS(2302), - [anon_sym_LBRACE] = ACTIONS(2302), - [anon_sym_STAR2] = ACTIONS(2304), - [anon_sym_and2] = ACTIONS(2302), - [anon_sym_xor2] = ACTIONS(2302), - [anon_sym_or2] = ACTIONS(2302), - [anon_sym_not_DASHin2] = ACTIONS(2302), - [anon_sym_has2] = ACTIONS(2302), - [anon_sym_not_DASHhas2] = ACTIONS(2302), - [anon_sym_starts_DASHwith2] = ACTIONS(2302), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2302), - [anon_sym_ends_DASHwith2] = ACTIONS(2302), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2302), - [anon_sym_EQ_EQ2] = ACTIONS(2302), - [anon_sym_BANG_EQ2] = ACTIONS(2302), - [anon_sym_LT2] = ACTIONS(2304), - [anon_sym_LT_EQ2] = ACTIONS(2302), - [anon_sym_GT_EQ2] = ACTIONS(2302), - [anon_sym_EQ_TILDE2] = ACTIONS(2302), - [anon_sym_BANG_TILDE2] = ACTIONS(2302), - [anon_sym_like2] = ACTIONS(2302), - [anon_sym_not_DASHlike2] = ACTIONS(2302), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_STAR_STAR2] = ACTIONS(2302), - [anon_sym_PLUS_PLUS2] = ACTIONS(2302), - [anon_sym_SLASH2] = ACTIONS(2304), - [anon_sym_mod2] = ACTIONS(2302), - [anon_sym_SLASH_SLASH2] = ACTIONS(2302), - [anon_sym_PLUS2] = ACTIONS(2304), - [anon_sym_bit_DASHshl2] = ACTIONS(2302), - [anon_sym_bit_DASHshr2] = ACTIONS(2302), - [anon_sym_bit_DASHand2] = ACTIONS(2302), - [anon_sym_bit_DASHxor2] = ACTIONS(2302), - [anon_sym_bit_DASHor2] = ACTIONS(2302), - [anon_sym_err_GT] = ACTIONS(2304), - [anon_sym_out_GT] = ACTIONS(2304), - [anon_sym_e_GT] = ACTIONS(2304), - [anon_sym_o_GT] = ACTIONS(2304), - [anon_sym_err_PLUSout_GT] = ACTIONS(2304), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2304), - [anon_sym_o_PLUSe_GT] = ACTIONS(2304), - [anon_sym_e_PLUSo_GT] = ACTIONS(2304), - [anon_sym_err_GT_GT] = ACTIONS(2302), - [anon_sym_out_GT_GT] = ACTIONS(2302), - [anon_sym_e_GT_GT] = ACTIONS(2302), - [anon_sym_o_GT_GT] = ACTIONS(2302), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2302), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2302), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2302), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2302), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(782)] = { - [aux_sym__repeat_newline] = STATE(1005), - [sym__expr_parenthesized_immediate] = STATE(4802), - [sym_comment] = STATE(782), - [anon_sym_in] = ACTIONS(2302), - [sym__newline] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_PIPE] = ACTIONS(2302), - [anon_sym_err_GT_PIPE] = ACTIONS(2302), - [anon_sym_out_GT_PIPE] = ACTIONS(2302), - [anon_sym_e_GT_PIPE] = ACTIONS(2302), - [anon_sym_o_GT_PIPE] = ACTIONS(2302), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2302), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2302), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2302), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2302), - [anon_sym_RPAREN] = ACTIONS(2302), - [anon_sym_GT2] = ACTIONS(2304), - [anon_sym_DASH2] = ACTIONS(2302), - [anon_sym_LBRACE] = ACTIONS(2302), - [anon_sym_STAR2] = ACTIONS(2304), - [anon_sym_and2] = ACTIONS(2302), - [anon_sym_xor2] = ACTIONS(2302), - [anon_sym_or2] = ACTIONS(2302), - [anon_sym_not_DASHin2] = ACTIONS(2302), - [anon_sym_has2] = ACTIONS(2302), - [anon_sym_not_DASHhas2] = ACTIONS(2302), - [anon_sym_starts_DASHwith2] = ACTIONS(2302), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2302), - [anon_sym_ends_DASHwith2] = ACTIONS(2302), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2302), - [anon_sym_EQ_EQ2] = ACTIONS(2302), - [anon_sym_BANG_EQ2] = ACTIONS(2302), - [anon_sym_LT2] = ACTIONS(2304), - [anon_sym_LT_EQ2] = ACTIONS(2302), - [anon_sym_GT_EQ2] = ACTIONS(2302), - [anon_sym_EQ_TILDE2] = ACTIONS(2302), - [anon_sym_BANG_TILDE2] = ACTIONS(2302), - [anon_sym_like2] = ACTIONS(2302), - [anon_sym_not_DASHlike2] = ACTIONS(2302), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_STAR_STAR2] = ACTIONS(2302), - [anon_sym_PLUS_PLUS2] = ACTIONS(2302), - [anon_sym_SLASH2] = ACTIONS(2304), - [anon_sym_mod2] = ACTIONS(2302), - [anon_sym_SLASH_SLASH2] = ACTIONS(2302), - [anon_sym_PLUS2] = ACTIONS(2304), - [anon_sym_bit_DASHshl2] = ACTIONS(2302), - [anon_sym_bit_DASHshr2] = ACTIONS(2302), - [anon_sym_bit_DASHand2] = ACTIONS(2302), - [anon_sym_bit_DASHxor2] = ACTIONS(2302), - [anon_sym_bit_DASHor2] = ACTIONS(2302), - [anon_sym_err_GT] = ACTIONS(2304), - [anon_sym_out_GT] = ACTIONS(2304), - [anon_sym_e_GT] = ACTIONS(2304), - [anon_sym_o_GT] = ACTIONS(2304), - [anon_sym_err_PLUSout_GT] = ACTIONS(2304), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2304), - [anon_sym_o_PLUSe_GT] = ACTIONS(2304), - [anon_sym_e_PLUSo_GT] = ACTIONS(2304), - [anon_sym_err_GT_GT] = ACTIONS(2302), - [anon_sym_out_GT_GT] = ACTIONS(2302), - [anon_sym_e_GT_GT] = ACTIONS(2302), - [anon_sym_o_GT_GT] = ACTIONS(2302), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2302), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2302), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2302), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2302), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(783)] = { - [aux_sym__repeat_newline] = STATE(1008), - [sym__expr_parenthesized_immediate] = STATE(4802), - [sym_comment] = STATE(783), - [anon_sym_in] = ACTIONS(2302), - [sym__newline] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_PIPE] = ACTIONS(2302), - [anon_sym_err_GT_PIPE] = ACTIONS(2302), - [anon_sym_out_GT_PIPE] = ACTIONS(2302), - [anon_sym_e_GT_PIPE] = ACTIONS(2302), - [anon_sym_o_GT_PIPE] = ACTIONS(2302), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2302), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2302), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2302), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2302), - [anon_sym_RPAREN] = ACTIONS(2302), - [anon_sym_GT2] = ACTIONS(2304), - [anon_sym_DASH2] = ACTIONS(2302), - [anon_sym_LBRACE] = ACTIONS(2302), - [anon_sym_STAR2] = ACTIONS(2304), - [anon_sym_and2] = ACTIONS(2302), - [anon_sym_xor2] = ACTIONS(2302), - [anon_sym_or2] = ACTIONS(2302), - [anon_sym_not_DASHin2] = ACTIONS(2302), - [anon_sym_has2] = ACTIONS(2302), - [anon_sym_not_DASHhas2] = ACTIONS(2302), - [anon_sym_starts_DASHwith2] = ACTIONS(2302), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2302), - [anon_sym_ends_DASHwith2] = ACTIONS(2302), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2302), - [anon_sym_EQ_EQ2] = ACTIONS(2302), - [anon_sym_BANG_EQ2] = ACTIONS(2302), - [anon_sym_LT2] = ACTIONS(2304), - [anon_sym_LT_EQ2] = ACTIONS(2302), - [anon_sym_GT_EQ2] = ACTIONS(2302), - [anon_sym_EQ_TILDE2] = ACTIONS(2302), - [anon_sym_BANG_TILDE2] = ACTIONS(2302), - [anon_sym_like2] = ACTIONS(2302), - [anon_sym_not_DASHlike2] = ACTIONS(2302), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_STAR_STAR2] = ACTIONS(2302), - [anon_sym_PLUS_PLUS2] = ACTIONS(2302), - [anon_sym_SLASH2] = ACTIONS(2304), - [anon_sym_mod2] = ACTIONS(2302), - [anon_sym_SLASH_SLASH2] = ACTIONS(2302), - [anon_sym_PLUS2] = ACTIONS(2304), - [anon_sym_bit_DASHshl2] = ACTIONS(2302), - [anon_sym_bit_DASHshr2] = ACTIONS(2302), - [anon_sym_bit_DASHand2] = ACTIONS(2302), - [anon_sym_bit_DASHxor2] = ACTIONS(2302), - [anon_sym_bit_DASHor2] = ACTIONS(2302), - [anon_sym_err_GT] = ACTIONS(2304), - [anon_sym_out_GT] = ACTIONS(2304), - [anon_sym_e_GT] = ACTIONS(2304), - [anon_sym_o_GT] = ACTIONS(2304), - [anon_sym_err_PLUSout_GT] = ACTIONS(2304), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2304), - [anon_sym_o_PLUSe_GT] = ACTIONS(2304), - [anon_sym_e_PLUSo_GT] = ACTIONS(2304), - [anon_sym_err_GT_GT] = ACTIONS(2302), - [anon_sym_out_GT_GT] = ACTIONS(2302), - [anon_sym_e_GT_GT] = ACTIONS(2302), - [anon_sym_o_GT_GT] = ACTIONS(2302), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2302), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2302), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2302), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2302), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(784)] = { - [sym_comment] = STATE(784), - [anon_sym_in] = ACTIONS(1744), - [sym__newline] = ACTIONS(1744), - [anon_sym_SEMI] = ACTIONS(1744), - [anon_sym_PIPE] = ACTIONS(1744), - [anon_sym_err_GT_PIPE] = ACTIONS(1744), - [anon_sym_out_GT_PIPE] = ACTIONS(1744), - [anon_sym_e_GT_PIPE] = ACTIONS(1744), - [anon_sym_o_GT_PIPE] = ACTIONS(1744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1744), - [anon_sym_RPAREN] = ACTIONS(1744), - [anon_sym_GT2] = ACTIONS(1746), - [anon_sym_DASH2] = ACTIONS(1744), - [anon_sym_LBRACE] = ACTIONS(1744), - [anon_sym_RBRACE] = ACTIONS(1744), - [anon_sym_STAR2] = ACTIONS(1746), - [anon_sym_and2] = ACTIONS(1744), - [anon_sym_xor2] = ACTIONS(1744), - [anon_sym_or2] = ACTIONS(1744), - [anon_sym_not_DASHin2] = ACTIONS(1744), - [anon_sym_has2] = ACTIONS(1744), - [anon_sym_not_DASHhas2] = ACTIONS(1744), - [anon_sym_starts_DASHwith2] = ACTIONS(1744), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1744), - [anon_sym_ends_DASHwith2] = ACTIONS(1744), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1744), - [anon_sym_EQ_EQ2] = ACTIONS(1744), - [anon_sym_BANG_EQ2] = ACTIONS(1744), - [anon_sym_LT2] = ACTIONS(1746), - [anon_sym_LT_EQ2] = ACTIONS(1744), - [anon_sym_GT_EQ2] = ACTIONS(1744), - [anon_sym_EQ_TILDE2] = ACTIONS(1744), - [anon_sym_BANG_TILDE2] = ACTIONS(1744), - [anon_sym_like2] = ACTIONS(1744), - [anon_sym_not_DASHlike2] = ACTIONS(1744), - [anon_sym_STAR_STAR2] = ACTIONS(1744), - [anon_sym_PLUS_PLUS2] = ACTIONS(1744), - [anon_sym_SLASH2] = ACTIONS(1746), - [anon_sym_mod2] = ACTIONS(1744), - [anon_sym_SLASH_SLASH2] = ACTIONS(1744), - [anon_sym_PLUS2] = ACTIONS(1746), - [anon_sym_bit_DASHshl2] = ACTIONS(1744), - [anon_sym_bit_DASHshr2] = ACTIONS(1744), - [anon_sym_bit_DASHand2] = ACTIONS(1744), - [anon_sym_bit_DASHxor2] = ACTIONS(1744), - [anon_sym_bit_DASHor2] = ACTIONS(1744), - [anon_sym_DOT] = ACTIONS(2313), - [aux_sym__immediate_decimal_token5] = ACTIONS(1750), - [anon_sym_err_GT] = ACTIONS(1746), - [anon_sym_out_GT] = ACTIONS(1746), - [anon_sym_e_GT] = ACTIONS(1746), - [anon_sym_o_GT] = ACTIONS(1746), - [anon_sym_err_PLUSout_GT] = ACTIONS(1746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1746), - [anon_sym_o_PLUSe_GT] = ACTIONS(1746), - [anon_sym_e_PLUSo_GT] = ACTIONS(1746), - [anon_sym_err_GT_GT] = ACTIONS(1744), - [anon_sym_out_GT_GT] = ACTIONS(1744), - [anon_sym_e_GT_GT] = ACTIONS(1744), - [anon_sym_o_GT_GT] = ACTIONS(1744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1744), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(785)] = { - [aux_sym__repeat_newline] = STATE(1010), - [sym__expr_parenthesized_immediate] = STATE(4802), - [sym_comment] = STATE(785), - [anon_sym_in] = ACTIONS(2302), - [sym__newline] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_PIPE] = ACTIONS(2302), - [anon_sym_err_GT_PIPE] = ACTIONS(2302), - [anon_sym_out_GT_PIPE] = ACTIONS(2302), - [anon_sym_e_GT_PIPE] = ACTIONS(2302), - [anon_sym_o_GT_PIPE] = ACTIONS(2302), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2302), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2302), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2302), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2302), - [anon_sym_RPAREN] = ACTIONS(2302), - [anon_sym_GT2] = ACTIONS(2304), - [anon_sym_DASH2] = ACTIONS(2302), - [anon_sym_LBRACE] = ACTIONS(2302), - [anon_sym_STAR2] = ACTIONS(2304), - [anon_sym_and2] = ACTIONS(2302), - [anon_sym_xor2] = ACTIONS(2302), - [anon_sym_or2] = ACTIONS(2302), - [anon_sym_not_DASHin2] = ACTIONS(2302), - [anon_sym_has2] = ACTIONS(2302), - [anon_sym_not_DASHhas2] = ACTIONS(2302), - [anon_sym_starts_DASHwith2] = ACTIONS(2302), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2302), - [anon_sym_ends_DASHwith2] = ACTIONS(2302), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2302), - [anon_sym_EQ_EQ2] = ACTIONS(2302), - [anon_sym_BANG_EQ2] = ACTIONS(2302), - [anon_sym_LT2] = ACTIONS(2304), - [anon_sym_LT_EQ2] = ACTIONS(2302), - [anon_sym_GT_EQ2] = ACTIONS(2302), - [anon_sym_EQ_TILDE2] = ACTIONS(2302), - [anon_sym_BANG_TILDE2] = ACTIONS(2302), - [anon_sym_like2] = ACTIONS(2302), - [anon_sym_not_DASHlike2] = ACTIONS(2302), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_STAR_STAR2] = ACTIONS(2302), - [anon_sym_PLUS_PLUS2] = ACTIONS(2302), - [anon_sym_SLASH2] = ACTIONS(2304), - [anon_sym_mod2] = ACTIONS(2302), - [anon_sym_SLASH_SLASH2] = ACTIONS(2302), - [anon_sym_PLUS2] = ACTIONS(2304), - [anon_sym_bit_DASHshl2] = ACTIONS(2302), - [anon_sym_bit_DASHshr2] = ACTIONS(2302), - [anon_sym_bit_DASHand2] = ACTIONS(2302), - [anon_sym_bit_DASHxor2] = ACTIONS(2302), - [anon_sym_bit_DASHor2] = ACTIONS(2302), - [anon_sym_err_GT] = ACTIONS(2304), - [anon_sym_out_GT] = ACTIONS(2304), - [anon_sym_e_GT] = ACTIONS(2304), - [anon_sym_o_GT] = ACTIONS(2304), - [anon_sym_err_PLUSout_GT] = ACTIONS(2304), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2304), - [anon_sym_o_PLUSe_GT] = ACTIONS(2304), - [anon_sym_e_PLUSo_GT] = ACTIONS(2304), - [anon_sym_err_GT_GT] = ACTIONS(2302), - [anon_sym_out_GT_GT] = ACTIONS(2302), - [anon_sym_e_GT_GT] = ACTIONS(2302), - [anon_sym_o_GT_GT] = ACTIONS(2302), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2302), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2302), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2302), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2302), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(786)] = { - [aux_sym__repeat_newline] = STATE(1012), - [sym__expr_parenthesized_immediate] = STATE(4802), - [sym_comment] = STATE(786), - [anon_sym_in] = ACTIONS(2302), - [sym__newline] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_PIPE] = ACTIONS(2302), - [anon_sym_err_GT_PIPE] = ACTIONS(2302), - [anon_sym_out_GT_PIPE] = ACTIONS(2302), - [anon_sym_e_GT_PIPE] = ACTIONS(2302), - [anon_sym_o_GT_PIPE] = ACTIONS(2302), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2302), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2302), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2302), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2302), - [anon_sym_RPAREN] = ACTIONS(2302), - [anon_sym_GT2] = ACTIONS(2304), - [anon_sym_DASH2] = ACTIONS(2302), - [anon_sym_LBRACE] = ACTIONS(2302), - [anon_sym_STAR2] = ACTIONS(2304), - [anon_sym_and2] = ACTIONS(2302), - [anon_sym_xor2] = ACTIONS(2302), - [anon_sym_or2] = ACTIONS(2302), - [anon_sym_not_DASHin2] = ACTIONS(2302), - [anon_sym_has2] = ACTIONS(2302), - [anon_sym_not_DASHhas2] = ACTIONS(2302), - [anon_sym_starts_DASHwith2] = ACTIONS(2302), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2302), - [anon_sym_ends_DASHwith2] = ACTIONS(2302), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2302), - [anon_sym_EQ_EQ2] = ACTIONS(2302), - [anon_sym_BANG_EQ2] = ACTIONS(2302), - [anon_sym_LT2] = ACTIONS(2304), - [anon_sym_LT_EQ2] = ACTIONS(2302), - [anon_sym_GT_EQ2] = ACTIONS(2302), - [anon_sym_EQ_TILDE2] = ACTIONS(2302), - [anon_sym_BANG_TILDE2] = ACTIONS(2302), - [anon_sym_like2] = ACTIONS(2302), - [anon_sym_not_DASHlike2] = ACTIONS(2302), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_STAR_STAR2] = ACTIONS(2302), - [anon_sym_PLUS_PLUS2] = ACTIONS(2302), - [anon_sym_SLASH2] = ACTIONS(2304), - [anon_sym_mod2] = ACTIONS(2302), - [anon_sym_SLASH_SLASH2] = ACTIONS(2302), - [anon_sym_PLUS2] = ACTIONS(2304), - [anon_sym_bit_DASHshl2] = ACTIONS(2302), - [anon_sym_bit_DASHshr2] = ACTIONS(2302), - [anon_sym_bit_DASHand2] = ACTIONS(2302), - [anon_sym_bit_DASHxor2] = ACTIONS(2302), - [anon_sym_bit_DASHor2] = ACTIONS(2302), - [anon_sym_err_GT] = ACTIONS(2304), - [anon_sym_out_GT] = ACTIONS(2304), - [anon_sym_e_GT] = ACTIONS(2304), - [anon_sym_o_GT] = ACTIONS(2304), - [anon_sym_err_PLUSout_GT] = ACTIONS(2304), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2304), - [anon_sym_o_PLUSe_GT] = ACTIONS(2304), - [anon_sym_e_PLUSo_GT] = ACTIONS(2304), - [anon_sym_err_GT_GT] = ACTIONS(2302), - [anon_sym_out_GT_GT] = ACTIONS(2302), - [anon_sym_e_GT_GT] = ACTIONS(2302), - [anon_sym_o_GT_GT] = ACTIONS(2302), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2302), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2302), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2302), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2302), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(787)] = { - [aux_sym__repeat_newline] = STATE(1014), - [sym__expr_parenthesized_immediate] = STATE(4802), - [sym_comment] = STATE(787), - [anon_sym_in] = ACTIONS(2302), - [sym__newline] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_PIPE] = ACTIONS(2302), - [anon_sym_err_GT_PIPE] = ACTIONS(2302), - [anon_sym_out_GT_PIPE] = ACTIONS(2302), - [anon_sym_e_GT_PIPE] = ACTIONS(2302), - [anon_sym_o_GT_PIPE] = ACTIONS(2302), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2302), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2302), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2302), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2302), - [anon_sym_RPAREN] = ACTIONS(2302), - [anon_sym_GT2] = ACTIONS(2304), - [anon_sym_DASH2] = ACTIONS(2302), - [anon_sym_LBRACE] = ACTIONS(2302), - [anon_sym_STAR2] = ACTIONS(2304), - [anon_sym_and2] = ACTIONS(2302), - [anon_sym_xor2] = ACTIONS(2302), - [anon_sym_or2] = ACTIONS(2302), - [anon_sym_not_DASHin2] = ACTIONS(2302), - [anon_sym_has2] = ACTIONS(2302), - [anon_sym_not_DASHhas2] = ACTIONS(2302), - [anon_sym_starts_DASHwith2] = ACTIONS(2302), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2302), - [anon_sym_ends_DASHwith2] = ACTIONS(2302), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2302), - [anon_sym_EQ_EQ2] = ACTIONS(2302), - [anon_sym_BANG_EQ2] = ACTIONS(2302), - [anon_sym_LT2] = ACTIONS(2304), - [anon_sym_LT_EQ2] = ACTIONS(2302), - [anon_sym_GT_EQ2] = ACTIONS(2302), - [anon_sym_EQ_TILDE2] = ACTIONS(2302), - [anon_sym_BANG_TILDE2] = ACTIONS(2302), - [anon_sym_like2] = ACTIONS(2302), - [anon_sym_not_DASHlike2] = ACTIONS(2302), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_STAR_STAR2] = ACTIONS(2302), - [anon_sym_PLUS_PLUS2] = ACTIONS(2302), - [anon_sym_SLASH2] = ACTIONS(2304), - [anon_sym_mod2] = ACTIONS(2302), - [anon_sym_SLASH_SLASH2] = ACTIONS(2302), - [anon_sym_PLUS2] = ACTIONS(2304), - [anon_sym_bit_DASHshl2] = ACTIONS(2302), - [anon_sym_bit_DASHshr2] = ACTIONS(2302), - [anon_sym_bit_DASHand2] = ACTIONS(2302), - [anon_sym_bit_DASHxor2] = ACTIONS(2302), - [anon_sym_bit_DASHor2] = ACTIONS(2302), - [anon_sym_err_GT] = ACTIONS(2304), - [anon_sym_out_GT] = ACTIONS(2304), - [anon_sym_e_GT] = ACTIONS(2304), - [anon_sym_o_GT] = ACTIONS(2304), - [anon_sym_err_PLUSout_GT] = ACTIONS(2304), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2304), - [anon_sym_o_PLUSe_GT] = ACTIONS(2304), - [anon_sym_e_PLUSo_GT] = ACTIONS(2304), - [anon_sym_err_GT_GT] = ACTIONS(2302), - [anon_sym_out_GT_GT] = ACTIONS(2302), - [anon_sym_e_GT_GT] = ACTIONS(2302), - [anon_sym_o_GT_GT] = ACTIONS(2302), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2302), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2302), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2302), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2302), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(788)] = { - [sym_cell_path] = STATE(1275), - [sym_path] = STATE(720), - [sym_comment] = STATE(788), - [aux_sym__where_predicate_lhs_repeat1] = STATE(622), - [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(2280), - [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), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(789)] = { - [sym_cell_path] = STATE(1316), - [sym_path] = STATE(720), - [sym_comment] = STATE(789), - [aux_sym__where_predicate_lhs_repeat1] = STATE(622), - [ts_builtin_sym_end] = ACTIONS(1888), - [anon_sym_in] = ACTIONS(1888), - [sym__newline] = ACTIONS(1888), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_PIPE] = ACTIONS(1888), - [anon_sym_err_GT_PIPE] = ACTIONS(1888), - [anon_sym_out_GT_PIPE] = ACTIONS(1888), - [anon_sym_e_GT_PIPE] = ACTIONS(1888), - [anon_sym_o_GT_PIPE] = ACTIONS(1888), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1888), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1888), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1888), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1888), - [anon_sym_GT2] = ACTIONS(1890), - [anon_sym_DASH2] = ACTIONS(1888), - [anon_sym_STAR2] = ACTIONS(1890), - [anon_sym_and2] = ACTIONS(1888), - [anon_sym_xor2] = ACTIONS(1888), - [anon_sym_or2] = ACTIONS(1888), - [anon_sym_not_DASHin2] = ACTIONS(1888), - [anon_sym_has2] = ACTIONS(1888), - [anon_sym_not_DASHhas2] = ACTIONS(1888), - [anon_sym_starts_DASHwith2] = ACTIONS(1888), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1888), - [anon_sym_ends_DASHwith2] = ACTIONS(1888), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1888), - [anon_sym_EQ_EQ2] = ACTIONS(1888), - [anon_sym_BANG_EQ2] = ACTIONS(1888), - [anon_sym_LT2] = ACTIONS(1890), - [anon_sym_LT_EQ2] = ACTIONS(1888), - [anon_sym_GT_EQ2] = ACTIONS(1888), - [anon_sym_EQ_TILDE2] = ACTIONS(1888), - [anon_sym_BANG_TILDE2] = ACTIONS(1888), - [anon_sym_like2] = ACTIONS(1888), - [anon_sym_not_DASHlike2] = ACTIONS(1888), - [anon_sym_STAR_STAR2] = ACTIONS(1888), - [anon_sym_PLUS_PLUS2] = ACTIONS(1888), - [anon_sym_SLASH2] = ACTIONS(1890), - [anon_sym_mod2] = ACTIONS(1888), - [anon_sym_SLASH_SLASH2] = ACTIONS(1888), - [anon_sym_PLUS2] = ACTIONS(1890), - [anon_sym_bit_DASHshl2] = ACTIONS(1888), - [anon_sym_bit_DASHshr2] = ACTIONS(1888), - [anon_sym_bit_DASHand2] = ACTIONS(1888), - [anon_sym_bit_DASHxor2] = ACTIONS(1888), - [anon_sym_bit_DASHor2] = ACTIONS(1888), - [anon_sym_DOT2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(1890), - [anon_sym_out_GT] = ACTIONS(1890), - [anon_sym_e_GT] = ACTIONS(1890), - [anon_sym_o_GT] = ACTIONS(1890), - [anon_sym_err_PLUSout_GT] = ACTIONS(1890), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1890), - [anon_sym_o_PLUSe_GT] = ACTIONS(1890), - [anon_sym_e_PLUSo_GT] = ACTIONS(1890), - [anon_sym_err_GT_GT] = ACTIONS(1888), - [anon_sym_out_GT_GT] = ACTIONS(1888), - [anon_sym_e_GT_GT] = ACTIONS(1888), - [anon_sym_o_GT_GT] = ACTIONS(1888), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1888), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1888), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1888), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1888), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(790)] = { - [sym_comment] = STATE(790), - [ts_builtin_sym_end] = ACTIONS(1770), - [anon_sym_in] = ACTIONS(1770), - [sym__newline] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1770), - [anon_sym_PIPE] = ACTIONS(1770), - [anon_sym_err_GT_PIPE] = ACTIONS(1770), - [anon_sym_out_GT_PIPE] = ACTIONS(1770), - [anon_sym_e_GT_PIPE] = ACTIONS(1770), - [anon_sym_o_GT_PIPE] = ACTIONS(1770), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1770), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1770), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1770), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1770), - [anon_sym_GT2] = ACTIONS(1772), - [anon_sym_DASH2] = ACTIONS(1770), - [anon_sym_STAR2] = ACTIONS(1772), - [anon_sym_and2] = ACTIONS(1770), - [anon_sym_xor2] = ACTIONS(1770), - [anon_sym_or2] = ACTIONS(1770), - [anon_sym_not_DASHin2] = ACTIONS(1770), - [anon_sym_has2] = ACTIONS(1770), - [anon_sym_not_DASHhas2] = ACTIONS(1770), - [anon_sym_starts_DASHwith2] = ACTIONS(1770), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1770), - [anon_sym_ends_DASHwith2] = ACTIONS(1770), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1770), - [anon_sym_EQ_EQ2] = ACTIONS(1770), - [anon_sym_BANG_EQ2] = ACTIONS(1770), - [anon_sym_LT2] = ACTIONS(1772), - [anon_sym_LT_EQ2] = ACTIONS(1770), - [anon_sym_GT_EQ2] = ACTIONS(1770), - [anon_sym_EQ_TILDE2] = ACTIONS(1770), - [anon_sym_BANG_TILDE2] = ACTIONS(1770), - [anon_sym_like2] = ACTIONS(1770), - [anon_sym_not_DASHlike2] = ACTIONS(1770), - [anon_sym_LPAREN2] = ACTIONS(1770), - [anon_sym_STAR_STAR2] = ACTIONS(1770), - [anon_sym_PLUS_PLUS2] = ACTIONS(1770), - [anon_sym_SLASH2] = ACTIONS(1772), - [anon_sym_mod2] = ACTIONS(1770), - [anon_sym_SLASH_SLASH2] = ACTIONS(1770), - [anon_sym_PLUS2] = ACTIONS(1772), - [anon_sym_bit_DASHshl2] = ACTIONS(1770), - [anon_sym_bit_DASHshr2] = ACTIONS(1770), - [anon_sym_bit_DASHand2] = ACTIONS(1770), - [anon_sym_bit_DASHxor2] = ACTIONS(1770), - [anon_sym_bit_DASHor2] = ACTIONS(1770), - [aux_sym__immediate_decimal_token1] = ACTIONS(2315), - [aux_sym__immediate_decimal_token5] = ACTIONS(2317), - [anon_sym_err_GT] = ACTIONS(1772), - [anon_sym_out_GT] = ACTIONS(1772), - [anon_sym_e_GT] = ACTIONS(1772), - [anon_sym_o_GT] = ACTIONS(1772), - [anon_sym_err_PLUSout_GT] = ACTIONS(1772), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1772), - [anon_sym_o_PLUSe_GT] = ACTIONS(1772), - [anon_sym_e_PLUSo_GT] = ACTIONS(1772), - [anon_sym_err_GT_GT] = ACTIONS(1770), - [anon_sym_out_GT_GT] = ACTIONS(1770), - [anon_sym_e_GT_GT] = ACTIONS(1770), - [anon_sym_o_GT_GT] = ACTIONS(1770), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1770), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1770), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1770), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1770), - [sym__unquoted_pattern] = ACTIONS(1772), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(791)] = { - [aux_sym__repeat_newline] = STATE(916), - [aux_sym__pipe_separator] = STATE(887), - [sym_comment] = STATE(791), - [anon_sym_export] = ACTIONS(2319), - [anon_sym_alias] = ACTIONS(2321), - [anon_sym_let] = ACTIONS(2321), - [anon_sym_mut] = ACTIONS(2321), - [anon_sym_const] = ACTIONS(2321), - [aux_sym_cmd_identifier_token1] = ACTIONS(2319), - [anon_sym_def] = ACTIONS(2321), - [anon_sym_use] = ACTIONS(2321), - [anon_sym_export_DASHenv] = ACTIONS(2321), - [anon_sym_extern] = ACTIONS(2321), - [anon_sym_module] = ACTIONS(2321), - [anon_sym_for] = ACTIONS(2321), - [anon_sym_loop] = ACTIONS(2321), - [anon_sym_while] = ACTIONS(2321), - [anon_sym_if] = ACTIONS(2321), - [anon_sym_else] = ACTIONS(2321), - [anon_sym_try] = ACTIONS(2321), - [anon_sym_catch] = ACTIONS(2321), - [anon_sym_match] = ACTIONS(2321), - [anon_sym_in] = ACTIONS(2319), - [anon_sym_true] = ACTIONS(2321), - [anon_sym_false] = ACTIONS(2321), - [anon_sym_null] = ACTIONS(2321), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), - [sym__newline] = ACTIONS(2323), - [anon_sym_PIPE] = ACTIONS(2325), - [anon_sym_err_GT_PIPE] = ACTIONS(2325), - [anon_sym_out_GT_PIPE] = ACTIONS(2325), - [anon_sym_e_GT_PIPE] = ACTIONS(2325), - [anon_sym_o_GT_PIPE] = ACTIONS(2325), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2325), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2325), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2325), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2325), - [anon_sym_LBRACK] = ACTIONS(2321), - [anon_sym_LPAREN] = ACTIONS(2321), - [anon_sym_DOLLAR] = ACTIONS(2319), - [anon_sym_DASH2] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2321), - [anon_sym_DOT_DOT] = ACTIONS(2319), - [anon_sym_where] = ACTIONS(2321), - [aux_sym_expr_unary_token1] = ACTIONS(2321), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2321), - [anon_sym_DOT_DOT_LT] = ACTIONS(2321), - [aux_sym__val_number_decimal_token1] = ACTIONS(2319), - [aux_sym__val_number_decimal_token2] = ACTIONS(2321), - [aux_sym__val_number_decimal_token3] = ACTIONS(2321), - [aux_sym__val_number_decimal_token4] = ACTIONS(2321), - [aux_sym__val_number_token1] = ACTIONS(2321), - [aux_sym__val_number_token2] = ACTIONS(2321), - [aux_sym__val_number_token3] = ACTIONS(2321), - [anon_sym_0b] = ACTIONS(2319), - [anon_sym_0o] = ACTIONS(2319), - [anon_sym_0x] = ACTIONS(2319), - [sym_val_date] = ACTIONS(2321), - [anon_sym_DQUOTE] = ACTIONS(2321), - [anon_sym_SQUOTE] = ACTIONS(2321), - [anon_sym_BQUOTE] = ACTIONS(2321), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2321), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2321), - [anon_sym_CARET] = ACTIONS(2321), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2321), - }, - [STATE(792)] = { - [sym_cell_path] = STATE(1273), - [sym_path] = STATE(720), - [sym_comment] = STATE(792), - [aux_sym__where_predicate_lhs_repeat1] = STATE(622), - [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(1885), - [anon_sym_DASH2] = ACTIONS(1882), - [anon_sym_STAR2] = ACTIONS(1885), - [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(1885), - [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(1885), - [anon_sym_mod2] = ACTIONS(1882), - [anon_sym_SLASH_SLASH2] = ACTIONS(1882), - [anon_sym_PLUS2] = ACTIONS(1885), - [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(2280), - [anon_sym_err_GT] = ACTIONS(1885), - [anon_sym_out_GT] = ACTIONS(1885), - [anon_sym_e_GT] = ACTIONS(1885), - [anon_sym_o_GT] = ACTIONS(1885), - [anon_sym_err_PLUSout_GT] = ACTIONS(1885), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1885), - [anon_sym_o_PLUSe_GT] = ACTIONS(1885), - [anon_sym_e_PLUSo_GT] = ACTIONS(1885), - [anon_sym_err_GT_GT] = ACTIONS(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(793)] = { - [sym_cmd_identifier] = STATE(4276), - [sym_expr_parenthesized] = STATE(5339), - [sym__spread_parenthesized] = STATE(4883), - [sym__spread_variable] = STATE(4892), - [sym_val_variable] = STATE(4349), - [sym_val_number] = STATE(5339), - [sym__val_number_decimal] = STATE(1984), - [sym__val_number] = STATE(707), - [sym_val_string] = STATE(5339), - [sym__raw_str] = STATE(2266), - [sym__str_double_quotes] = STATE(2266), - [sym__str_single_quotes] = STATE(2266), - [sym__str_back_ticks] = STATE(2266), - [sym_val_interpolated] = STATE(5339), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym__spread_record] = STATE(4883), - [sym_record_entry] = STATE(4710), - [sym__record_key] = STATE(5341), - [sym_comment] = STATE(793), - [aux_sym__match_pattern_record_body_repeat1] = STATE(839), - [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(1782), - [anon_sym_false] = ACTIONS(1782), - [anon_sym_null] = ACTIONS(1782), - [aux_sym_cmd_identifier_token3] = ACTIONS(1784), - [aux_sym_cmd_identifier_token4] = ACTIONS(1784), - [aux_sym_cmd_identifier_token5] = ACTIONS(1784), - [anon_sym_LPAREN] = ACTIONS(1788), - [anon_sym_DOLLAR] = ACTIONS(1836), - [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(1794), - [aux_sym__val_number_decimal_token2] = ACTIONS(1796), - [aux_sym__val_number_decimal_token3] = ACTIONS(1798), - [aux_sym__val_number_decimal_token4] = ACTIONS(1798), - [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(1800), - [anon_sym_SQUOTE] = ACTIONS(1802), - [anon_sym_BQUOTE] = ACTIONS(1804), - [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(1806), - }, - [STATE(794)] = { - [sym_comment] = STATE(794), - [anon_sym_in] = ACTIONS(2162), - [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(2164), - [anon_sym_DASH2] = ACTIONS(2162), - [anon_sym_RBRACE] = ACTIONS(2166), - [anon_sym_STAR2] = ACTIONS(2164), - [anon_sym_and2] = ACTIONS(2162), - [anon_sym_xor2] = ACTIONS(2162), - [anon_sym_or2] = ACTIONS(2162), - [anon_sym_not_DASHin2] = ACTIONS(2162), - [anon_sym_has2] = ACTIONS(2162), - [anon_sym_not_DASHhas2] = ACTIONS(2162), - [anon_sym_starts_DASHwith2] = ACTIONS(2162), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2162), - [anon_sym_ends_DASHwith2] = ACTIONS(2162), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2162), - [anon_sym_EQ_EQ2] = ACTIONS(2162), - [anon_sym_BANG_EQ2] = ACTIONS(2162), - [anon_sym_LT2] = ACTIONS(2164), - [anon_sym_LT_EQ2] = ACTIONS(2162), - [anon_sym_GT_EQ2] = ACTIONS(2162), - [anon_sym_EQ_TILDE2] = ACTIONS(2162), - [anon_sym_BANG_TILDE2] = ACTIONS(2162), - [anon_sym_like2] = ACTIONS(2162), - [anon_sym_not_DASHlike2] = ACTIONS(2162), - [anon_sym_STAR_STAR2] = ACTIONS(2162), - [anon_sym_PLUS_PLUS2] = ACTIONS(2162), - [anon_sym_SLASH2] = ACTIONS(2164), - [anon_sym_mod2] = ACTIONS(2162), - [anon_sym_SLASH_SLASH2] = ACTIONS(2162), - [anon_sym_PLUS2] = ACTIONS(2164), - [anon_sym_bit_DASHshl2] = ACTIONS(2162), - [anon_sym_bit_DASHshr2] = ACTIONS(2162), - [anon_sym_bit_DASHand2] = ACTIONS(2162), - [anon_sym_bit_DASHxor2] = ACTIONS(2162), - [anon_sym_bit_DASHor2] = ACTIONS(2162), - [anon_sym_DOT_DOT2] = ACTIONS(1618), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1620), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1620), - [anon_sym_COLON2] = ACTIONS(1715), - [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(795)] = { - [aux_sym__repeat_newline] = STATE(1038), - [sym__expr_parenthesized_immediate] = STATE(4802), - [sym_comment] = STATE(795), - [anon_sym_in] = ACTIONS(2327), - [sym__newline] = ACTIONS(2327), - [anon_sym_SEMI] = ACTIONS(2327), - [anon_sym_PIPE] = ACTIONS(2327), - [anon_sym_err_GT_PIPE] = ACTIONS(2327), - [anon_sym_out_GT_PIPE] = ACTIONS(2327), - [anon_sym_e_GT_PIPE] = ACTIONS(2327), - [anon_sym_o_GT_PIPE] = ACTIONS(2327), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2327), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2327), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2327), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2327), - [anon_sym_RPAREN] = ACTIONS(2327), - [anon_sym_GT2] = ACTIONS(2329), - [anon_sym_DASH2] = ACTIONS(2327), - [anon_sym_LBRACE] = ACTIONS(2327), - [anon_sym_STAR2] = ACTIONS(2329), - [anon_sym_and2] = ACTIONS(2327), - [anon_sym_xor2] = ACTIONS(2327), - [anon_sym_or2] = ACTIONS(2327), - [anon_sym_not_DASHin2] = ACTIONS(2327), - [anon_sym_has2] = ACTIONS(2327), - [anon_sym_not_DASHhas2] = ACTIONS(2327), - [anon_sym_starts_DASHwith2] = ACTIONS(2327), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2327), - [anon_sym_ends_DASHwith2] = ACTIONS(2327), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2327), - [anon_sym_EQ_EQ2] = ACTIONS(2327), - [anon_sym_BANG_EQ2] = ACTIONS(2327), - [anon_sym_LT2] = ACTIONS(2329), - [anon_sym_LT_EQ2] = ACTIONS(2327), - [anon_sym_GT_EQ2] = ACTIONS(2327), - [anon_sym_EQ_TILDE2] = ACTIONS(2327), - [anon_sym_BANG_TILDE2] = ACTIONS(2327), - [anon_sym_like2] = ACTIONS(2327), - [anon_sym_not_DASHlike2] = ACTIONS(2327), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_STAR_STAR2] = ACTIONS(2327), - [anon_sym_PLUS_PLUS2] = ACTIONS(2327), - [anon_sym_SLASH2] = ACTIONS(2329), - [anon_sym_mod2] = ACTIONS(2327), - [anon_sym_SLASH_SLASH2] = ACTIONS(2327), - [anon_sym_PLUS2] = ACTIONS(2329), - [anon_sym_bit_DASHshl2] = ACTIONS(2327), - [anon_sym_bit_DASHshr2] = ACTIONS(2327), - [anon_sym_bit_DASHand2] = ACTIONS(2327), - [anon_sym_bit_DASHxor2] = ACTIONS(2327), - [anon_sym_bit_DASHor2] = ACTIONS(2327), - [anon_sym_err_GT] = ACTIONS(2329), - [anon_sym_out_GT] = ACTIONS(2329), - [anon_sym_e_GT] = ACTIONS(2329), - [anon_sym_o_GT] = ACTIONS(2329), - [anon_sym_err_PLUSout_GT] = ACTIONS(2329), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2329), - [anon_sym_o_PLUSe_GT] = ACTIONS(2329), - [anon_sym_e_PLUSo_GT] = ACTIONS(2329), - [anon_sym_err_GT_GT] = ACTIONS(2327), - [anon_sym_out_GT_GT] = ACTIONS(2327), - [anon_sym_e_GT_GT] = ACTIONS(2327), - [anon_sym_o_GT_GT] = ACTIONS(2327), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2327), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2327), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2327), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2327), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(796)] = { - [sym_comment] = STATE(796), - [ts_builtin_sym_end] = ACTIONS(1744), - [anon_sym_in] = ACTIONS(1744), - [sym__newline] = ACTIONS(1744), - [anon_sym_SEMI] = ACTIONS(1744), - [anon_sym_PIPE] = ACTIONS(1744), - [anon_sym_err_GT_PIPE] = ACTIONS(1744), - [anon_sym_out_GT_PIPE] = ACTIONS(1744), - [anon_sym_e_GT_PIPE] = ACTIONS(1744), - [anon_sym_o_GT_PIPE] = ACTIONS(1744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1744), - [anon_sym_GT2] = ACTIONS(1746), - [anon_sym_DASH2] = ACTIONS(1744), - [anon_sym_STAR2] = ACTIONS(1746), - [anon_sym_and2] = ACTIONS(1744), - [anon_sym_xor2] = ACTIONS(1744), - [anon_sym_or2] = ACTIONS(1744), - [anon_sym_not_DASHin2] = ACTIONS(1744), - [anon_sym_has2] = ACTIONS(1744), - [anon_sym_not_DASHhas2] = ACTIONS(1744), - [anon_sym_starts_DASHwith2] = ACTIONS(1744), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1744), - [anon_sym_ends_DASHwith2] = ACTIONS(1744), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1744), - [anon_sym_EQ_EQ2] = ACTIONS(1744), - [anon_sym_BANG_EQ2] = ACTIONS(1744), - [anon_sym_LT2] = ACTIONS(1746), - [anon_sym_LT_EQ2] = ACTIONS(1744), - [anon_sym_GT_EQ2] = ACTIONS(1744), - [anon_sym_EQ_TILDE2] = ACTIONS(1744), - [anon_sym_BANG_TILDE2] = ACTIONS(1744), - [anon_sym_like2] = ACTIONS(1744), - [anon_sym_not_DASHlike2] = ACTIONS(1744), - [anon_sym_LPAREN2] = ACTIONS(1744), - [anon_sym_STAR_STAR2] = ACTIONS(1744), - [anon_sym_PLUS_PLUS2] = ACTIONS(1744), - [anon_sym_SLASH2] = ACTIONS(1746), - [anon_sym_mod2] = ACTIONS(1744), - [anon_sym_SLASH_SLASH2] = ACTIONS(1744), - [anon_sym_PLUS2] = ACTIONS(1746), - [anon_sym_bit_DASHshl2] = ACTIONS(1744), - [anon_sym_bit_DASHshr2] = ACTIONS(1744), - [anon_sym_bit_DASHand2] = ACTIONS(1744), - [anon_sym_bit_DASHxor2] = ACTIONS(1744), - [anon_sym_bit_DASHor2] = ACTIONS(1744), - [anon_sym_DOT] = ACTIONS(2331), - [aux_sym__immediate_decimal_token5] = ACTIONS(2333), - [anon_sym_err_GT] = ACTIONS(1746), - [anon_sym_out_GT] = ACTIONS(1746), - [anon_sym_e_GT] = ACTIONS(1746), - [anon_sym_o_GT] = ACTIONS(1746), - [anon_sym_err_PLUSout_GT] = ACTIONS(1746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1746), - [anon_sym_o_PLUSe_GT] = ACTIONS(1746), - [anon_sym_e_PLUSo_GT] = ACTIONS(1746), - [anon_sym_err_GT_GT] = ACTIONS(1744), - [anon_sym_out_GT_GT] = ACTIONS(1744), - [anon_sym_e_GT_GT] = ACTIONS(1744), - [anon_sym_o_GT_GT] = ACTIONS(1744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1744), - [sym__unquoted_pattern] = ACTIONS(1746), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(797)] = { - [aux_sym__repeat_newline] = STATE(1039), - [sym__expr_parenthesized_immediate] = STATE(4802), - [sym_comment] = STATE(797), - [anon_sym_in] = ACTIONS(2327), - [sym__newline] = ACTIONS(2327), - [anon_sym_SEMI] = ACTIONS(2327), - [anon_sym_PIPE] = ACTIONS(2327), - [anon_sym_err_GT_PIPE] = ACTIONS(2327), - [anon_sym_out_GT_PIPE] = ACTIONS(2327), - [anon_sym_e_GT_PIPE] = ACTIONS(2327), - [anon_sym_o_GT_PIPE] = ACTIONS(2327), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2327), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2327), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2327), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2327), - [anon_sym_RPAREN] = ACTIONS(2327), - [anon_sym_GT2] = ACTIONS(2329), - [anon_sym_DASH2] = ACTIONS(2327), - [anon_sym_LBRACE] = ACTIONS(2327), - [anon_sym_STAR2] = ACTIONS(2329), - [anon_sym_and2] = ACTIONS(2327), - [anon_sym_xor2] = ACTIONS(2327), - [anon_sym_or2] = ACTIONS(2327), - [anon_sym_not_DASHin2] = ACTIONS(2327), - [anon_sym_has2] = ACTIONS(2327), - [anon_sym_not_DASHhas2] = ACTIONS(2327), - [anon_sym_starts_DASHwith2] = ACTIONS(2327), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2327), - [anon_sym_ends_DASHwith2] = ACTIONS(2327), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2327), - [anon_sym_EQ_EQ2] = ACTIONS(2327), - [anon_sym_BANG_EQ2] = ACTIONS(2327), - [anon_sym_LT2] = ACTIONS(2329), - [anon_sym_LT_EQ2] = ACTIONS(2327), - [anon_sym_GT_EQ2] = ACTIONS(2327), - [anon_sym_EQ_TILDE2] = ACTIONS(2327), - [anon_sym_BANG_TILDE2] = ACTIONS(2327), - [anon_sym_like2] = ACTIONS(2327), - [anon_sym_not_DASHlike2] = ACTIONS(2327), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_STAR_STAR2] = ACTIONS(2327), - [anon_sym_PLUS_PLUS2] = ACTIONS(2327), - [anon_sym_SLASH2] = ACTIONS(2329), - [anon_sym_mod2] = ACTIONS(2327), - [anon_sym_SLASH_SLASH2] = ACTIONS(2327), - [anon_sym_PLUS2] = ACTIONS(2329), - [anon_sym_bit_DASHshl2] = ACTIONS(2327), - [anon_sym_bit_DASHshr2] = ACTIONS(2327), - [anon_sym_bit_DASHand2] = ACTIONS(2327), - [anon_sym_bit_DASHxor2] = ACTIONS(2327), - [anon_sym_bit_DASHor2] = ACTIONS(2327), - [anon_sym_err_GT] = ACTIONS(2329), - [anon_sym_out_GT] = ACTIONS(2329), - [anon_sym_e_GT] = ACTIONS(2329), - [anon_sym_o_GT] = ACTIONS(2329), - [anon_sym_err_PLUSout_GT] = ACTIONS(2329), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2329), - [anon_sym_o_PLUSe_GT] = ACTIONS(2329), - [anon_sym_e_PLUSo_GT] = ACTIONS(2329), - [anon_sym_err_GT_GT] = ACTIONS(2327), - [anon_sym_out_GT_GT] = ACTIONS(2327), - [anon_sym_e_GT_GT] = ACTIONS(2327), - [anon_sym_o_GT_GT] = ACTIONS(2327), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2327), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2327), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2327), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2327), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(798)] = { - [aux_sym__repeat_newline] = STATE(1040), - [sym__expr_parenthesized_immediate] = STATE(4802), - [sym_comment] = STATE(798), - [anon_sym_in] = ACTIONS(2327), - [sym__newline] = ACTIONS(2327), - [anon_sym_SEMI] = ACTIONS(2327), - [anon_sym_PIPE] = ACTIONS(2327), - [anon_sym_err_GT_PIPE] = ACTIONS(2327), - [anon_sym_out_GT_PIPE] = ACTIONS(2327), - [anon_sym_e_GT_PIPE] = ACTIONS(2327), - [anon_sym_o_GT_PIPE] = ACTIONS(2327), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2327), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2327), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2327), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2327), - [anon_sym_RPAREN] = ACTIONS(2327), - [anon_sym_GT2] = ACTIONS(2329), - [anon_sym_DASH2] = ACTIONS(2327), - [anon_sym_LBRACE] = ACTIONS(2327), - [anon_sym_STAR2] = ACTIONS(2329), - [anon_sym_and2] = ACTIONS(2327), - [anon_sym_xor2] = ACTIONS(2327), - [anon_sym_or2] = ACTIONS(2327), - [anon_sym_not_DASHin2] = ACTIONS(2327), - [anon_sym_has2] = ACTIONS(2327), - [anon_sym_not_DASHhas2] = ACTIONS(2327), - [anon_sym_starts_DASHwith2] = ACTIONS(2327), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2327), - [anon_sym_ends_DASHwith2] = ACTIONS(2327), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2327), - [anon_sym_EQ_EQ2] = ACTIONS(2327), - [anon_sym_BANG_EQ2] = ACTIONS(2327), - [anon_sym_LT2] = ACTIONS(2329), - [anon_sym_LT_EQ2] = ACTIONS(2327), - [anon_sym_GT_EQ2] = ACTIONS(2327), - [anon_sym_EQ_TILDE2] = ACTIONS(2327), - [anon_sym_BANG_TILDE2] = ACTIONS(2327), - [anon_sym_like2] = ACTIONS(2327), - [anon_sym_not_DASHlike2] = ACTIONS(2327), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_STAR_STAR2] = ACTIONS(2327), - [anon_sym_PLUS_PLUS2] = ACTIONS(2327), - [anon_sym_SLASH2] = ACTIONS(2329), - [anon_sym_mod2] = ACTIONS(2327), - [anon_sym_SLASH_SLASH2] = ACTIONS(2327), - [anon_sym_PLUS2] = ACTIONS(2329), - [anon_sym_bit_DASHshl2] = ACTIONS(2327), - [anon_sym_bit_DASHshr2] = ACTIONS(2327), - [anon_sym_bit_DASHand2] = ACTIONS(2327), - [anon_sym_bit_DASHxor2] = ACTIONS(2327), - [anon_sym_bit_DASHor2] = ACTIONS(2327), - [anon_sym_err_GT] = ACTIONS(2329), - [anon_sym_out_GT] = ACTIONS(2329), - [anon_sym_e_GT] = ACTIONS(2329), - [anon_sym_o_GT] = ACTIONS(2329), - [anon_sym_err_PLUSout_GT] = ACTIONS(2329), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2329), - [anon_sym_o_PLUSe_GT] = ACTIONS(2329), - [anon_sym_e_PLUSo_GT] = ACTIONS(2329), - [anon_sym_err_GT_GT] = ACTIONS(2327), - [anon_sym_out_GT_GT] = ACTIONS(2327), - [anon_sym_e_GT_GT] = ACTIONS(2327), - [anon_sym_o_GT_GT] = ACTIONS(2327), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2327), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2327), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2327), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2327), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(799)] = { - [sym_comment] = STATE(799), - [anon_sym_in] = ACTIONS(1744), - [sym__newline] = ACTIONS(1744), - [anon_sym_SEMI] = ACTIONS(1744), - [anon_sym_PIPE] = ACTIONS(1744), - [anon_sym_err_GT_PIPE] = ACTIONS(1744), - [anon_sym_out_GT_PIPE] = ACTIONS(1744), - [anon_sym_e_GT_PIPE] = ACTIONS(1744), - [anon_sym_o_GT_PIPE] = ACTIONS(1744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1744), - [anon_sym_RPAREN] = ACTIONS(1744), - [anon_sym_GT2] = ACTIONS(1746), - [anon_sym_DASH2] = ACTIONS(1744), - [anon_sym_RBRACE] = ACTIONS(1744), - [anon_sym_STAR2] = ACTIONS(1746), - [anon_sym_and2] = ACTIONS(1744), - [anon_sym_xor2] = ACTIONS(1744), - [anon_sym_or2] = ACTIONS(1744), - [anon_sym_not_DASHin2] = ACTIONS(1744), - [anon_sym_has2] = ACTIONS(1744), - [anon_sym_not_DASHhas2] = ACTIONS(1744), - [anon_sym_starts_DASHwith2] = ACTIONS(1744), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1744), - [anon_sym_ends_DASHwith2] = ACTIONS(1744), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1744), - [anon_sym_EQ_EQ2] = ACTIONS(1744), - [anon_sym_BANG_EQ2] = ACTIONS(1744), - [anon_sym_LT2] = ACTIONS(1746), - [anon_sym_LT_EQ2] = ACTIONS(1744), - [anon_sym_GT_EQ2] = ACTIONS(1744), - [anon_sym_EQ_TILDE2] = ACTIONS(1744), - [anon_sym_BANG_TILDE2] = ACTIONS(1744), - [anon_sym_like2] = ACTIONS(1744), - [anon_sym_not_DASHlike2] = ACTIONS(1744), - [anon_sym_LPAREN2] = ACTIONS(1744), - [anon_sym_STAR_STAR2] = ACTIONS(1744), - [anon_sym_PLUS_PLUS2] = ACTIONS(1744), - [anon_sym_SLASH2] = ACTIONS(1746), - [anon_sym_mod2] = ACTIONS(1744), - [anon_sym_SLASH_SLASH2] = ACTIONS(1744), - [anon_sym_PLUS2] = ACTIONS(1746), - [anon_sym_bit_DASHshl2] = ACTIONS(1744), - [anon_sym_bit_DASHshr2] = ACTIONS(1744), - [anon_sym_bit_DASHand2] = ACTIONS(1744), - [anon_sym_bit_DASHxor2] = ACTIONS(1744), - [anon_sym_bit_DASHor2] = ACTIONS(1744), - [aux_sym__immediate_decimal_token5] = ACTIONS(2136), - [anon_sym_err_GT] = ACTIONS(1746), - [anon_sym_out_GT] = ACTIONS(1746), - [anon_sym_e_GT] = ACTIONS(1746), - [anon_sym_o_GT] = ACTIONS(1746), - [anon_sym_err_PLUSout_GT] = ACTIONS(1746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1746), - [anon_sym_o_PLUSe_GT] = ACTIONS(1746), - [anon_sym_e_PLUSo_GT] = ACTIONS(1746), - [anon_sym_err_GT_GT] = ACTIONS(1744), - [anon_sym_out_GT_GT] = ACTIONS(1744), - [anon_sym_e_GT_GT] = ACTIONS(1744), - [anon_sym_o_GT_GT] = ACTIONS(1744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1744), - [sym__unquoted_pattern] = ACTIONS(1746), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(800)] = { - [sym_comment] = STATE(800), - [anon_sym_in] = ACTIONS(1852), - [sym__newline] = ACTIONS(1852), - [anon_sym_SEMI] = ACTIONS(1852), - [anon_sym_PIPE] = ACTIONS(1852), - [anon_sym_err_GT_PIPE] = ACTIONS(1852), - [anon_sym_out_GT_PIPE] = ACTIONS(1852), - [anon_sym_e_GT_PIPE] = ACTIONS(1852), - [anon_sym_o_GT_PIPE] = ACTIONS(1852), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1852), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1852), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1852), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1852), - [anon_sym_RPAREN] = ACTIONS(1852), - [anon_sym_GT2] = ACTIONS(1854), - [anon_sym_DASH2] = ACTIONS(1852), - [anon_sym_RBRACE] = ACTIONS(1852), - [anon_sym_STAR2] = ACTIONS(1854), - [anon_sym_and2] = ACTIONS(1852), - [anon_sym_xor2] = ACTIONS(1852), - [anon_sym_or2] = ACTIONS(1852), - [anon_sym_not_DASHin2] = ACTIONS(1852), - [anon_sym_has2] = ACTIONS(1852), - [anon_sym_not_DASHhas2] = ACTIONS(1852), - [anon_sym_starts_DASHwith2] = ACTIONS(1852), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1852), - [anon_sym_ends_DASHwith2] = ACTIONS(1852), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1852), - [anon_sym_EQ_EQ2] = ACTIONS(1852), - [anon_sym_BANG_EQ2] = ACTIONS(1852), - [anon_sym_LT2] = ACTIONS(1854), - [anon_sym_LT_EQ2] = ACTIONS(1852), - [anon_sym_GT_EQ2] = ACTIONS(1852), - [anon_sym_EQ_TILDE2] = ACTIONS(1852), - [anon_sym_BANG_TILDE2] = ACTIONS(1852), - [anon_sym_like2] = ACTIONS(1852), - [anon_sym_not_DASHlike2] = ACTIONS(1852), - [anon_sym_LPAREN2] = ACTIONS(1852), - [anon_sym_STAR_STAR2] = ACTIONS(1852), - [anon_sym_PLUS_PLUS2] = ACTIONS(1852), - [anon_sym_SLASH2] = ACTIONS(1854), - [anon_sym_mod2] = ACTIONS(1852), - [anon_sym_SLASH_SLASH2] = ACTIONS(1852), - [anon_sym_PLUS2] = ACTIONS(1854), - [anon_sym_bit_DASHshl2] = ACTIONS(1852), - [anon_sym_bit_DASHshr2] = ACTIONS(1852), - [anon_sym_bit_DASHand2] = ACTIONS(1852), - [anon_sym_bit_DASHxor2] = ACTIONS(1852), - [anon_sym_bit_DASHor2] = ACTIONS(1852), - [aux_sym__immediate_decimal_token5] = ACTIONS(2335), - [anon_sym_err_GT] = ACTIONS(1854), - [anon_sym_out_GT] = ACTIONS(1854), - [anon_sym_e_GT] = ACTIONS(1854), - [anon_sym_o_GT] = ACTIONS(1854), - [anon_sym_err_PLUSout_GT] = ACTIONS(1854), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1854), - [anon_sym_o_PLUSe_GT] = ACTIONS(1854), - [anon_sym_e_PLUSo_GT] = ACTIONS(1854), - [anon_sym_err_GT_GT] = ACTIONS(1852), - [anon_sym_out_GT_GT] = ACTIONS(1852), - [anon_sym_e_GT_GT] = ACTIONS(1852), - [anon_sym_o_GT_GT] = ACTIONS(1852), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1852), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1852), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1852), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1852), - [sym__unquoted_pattern] = ACTIONS(1854), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(801)] = { - [aux_sym__repeat_newline] = STATE(1041), - [sym__expr_parenthesized_immediate] = STATE(4802), - [sym_comment] = STATE(801), - [anon_sym_in] = ACTIONS(2327), - [sym__newline] = ACTIONS(2327), - [anon_sym_SEMI] = ACTIONS(2327), - [anon_sym_PIPE] = ACTIONS(2327), - [anon_sym_err_GT_PIPE] = ACTIONS(2327), - [anon_sym_out_GT_PIPE] = ACTIONS(2327), - [anon_sym_e_GT_PIPE] = ACTIONS(2327), - [anon_sym_o_GT_PIPE] = ACTIONS(2327), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2327), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2327), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2327), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2327), - [anon_sym_RPAREN] = ACTIONS(2327), - [anon_sym_GT2] = ACTIONS(2329), - [anon_sym_DASH2] = ACTIONS(2327), - [anon_sym_LBRACE] = ACTIONS(2327), - [anon_sym_STAR2] = ACTIONS(2329), - [anon_sym_and2] = ACTIONS(2327), - [anon_sym_xor2] = ACTIONS(2327), - [anon_sym_or2] = ACTIONS(2327), - [anon_sym_not_DASHin2] = ACTIONS(2327), - [anon_sym_has2] = ACTIONS(2327), - [anon_sym_not_DASHhas2] = ACTIONS(2327), - [anon_sym_starts_DASHwith2] = ACTIONS(2327), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2327), - [anon_sym_ends_DASHwith2] = ACTIONS(2327), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2327), - [anon_sym_EQ_EQ2] = ACTIONS(2327), - [anon_sym_BANG_EQ2] = ACTIONS(2327), - [anon_sym_LT2] = ACTIONS(2329), - [anon_sym_LT_EQ2] = ACTIONS(2327), - [anon_sym_GT_EQ2] = ACTIONS(2327), - [anon_sym_EQ_TILDE2] = ACTIONS(2327), - [anon_sym_BANG_TILDE2] = ACTIONS(2327), - [anon_sym_like2] = ACTIONS(2327), - [anon_sym_not_DASHlike2] = ACTIONS(2327), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_STAR_STAR2] = ACTIONS(2327), - [anon_sym_PLUS_PLUS2] = ACTIONS(2327), - [anon_sym_SLASH2] = ACTIONS(2329), - [anon_sym_mod2] = ACTIONS(2327), - [anon_sym_SLASH_SLASH2] = ACTIONS(2327), - [anon_sym_PLUS2] = ACTIONS(2329), - [anon_sym_bit_DASHshl2] = ACTIONS(2327), - [anon_sym_bit_DASHshr2] = ACTIONS(2327), - [anon_sym_bit_DASHand2] = ACTIONS(2327), - [anon_sym_bit_DASHxor2] = ACTIONS(2327), - [anon_sym_bit_DASHor2] = ACTIONS(2327), - [anon_sym_err_GT] = ACTIONS(2329), - [anon_sym_out_GT] = ACTIONS(2329), - [anon_sym_e_GT] = ACTIONS(2329), - [anon_sym_o_GT] = ACTIONS(2329), - [anon_sym_err_PLUSout_GT] = ACTIONS(2329), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2329), - [anon_sym_o_PLUSe_GT] = ACTIONS(2329), - [anon_sym_e_PLUSo_GT] = ACTIONS(2329), - [anon_sym_err_GT_GT] = ACTIONS(2327), - [anon_sym_out_GT_GT] = ACTIONS(2327), - [anon_sym_e_GT_GT] = ACTIONS(2327), - [anon_sym_o_GT_GT] = ACTIONS(2327), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2327), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2327), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2327), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2327), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(802)] = { - [aux_sym__repeat_newline] = STATE(1042), - [sym__expr_parenthesized_immediate] = STATE(4802), - [sym_comment] = STATE(802), - [anon_sym_in] = ACTIONS(2327), - [sym__newline] = ACTIONS(2327), - [anon_sym_SEMI] = ACTIONS(2327), - [anon_sym_PIPE] = ACTIONS(2327), - [anon_sym_err_GT_PIPE] = ACTIONS(2327), - [anon_sym_out_GT_PIPE] = ACTIONS(2327), - [anon_sym_e_GT_PIPE] = ACTIONS(2327), - [anon_sym_o_GT_PIPE] = ACTIONS(2327), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2327), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2327), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2327), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2327), - [anon_sym_RPAREN] = ACTIONS(2327), - [anon_sym_GT2] = ACTIONS(2329), - [anon_sym_DASH2] = ACTIONS(2327), - [anon_sym_LBRACE] = ACTIONS(2327), - [anon_sym_STAR2] = ACTIONS(2329), - [anon_sym_and2] = ACTIONS(2327), - [anon_sym_xor2] = ACTIONS(2327), - [anon_sym_or2] = ACTIONS(2327), - [anon_sym_not_DASHin2] = ACTIONS(2327), - [anon_sym_has2] = ACTIONS(2327), - [anon_sym_not_DASHhas2] = ACTIONS(2327), - [anon_sym_starts_DASHwith2] = ACTIONS(2327), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2327), - [anon_sym_ends_DASHwith2] = ACTIONS(2327), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2327), - [anon_sym_EQ_EQ2] = ACTIONS(2327), - [anon_sym_BANG_EQ2] = ACTIONS(2327), - [anon_sym_LT2] = ACTIONS(2329), - [anon_sym_LT_EQ2] = ACTIONS(2327), - [anon_sym_GT_EQ2] = ACTIONS(2327), - [anon_sym_EQ_TILDE2] = ACTIONS(2327), - [anon_sym_BANG_TILDE2] = ACTIONS(2327), - [anon_sym_like2] = ACTIONS(2327), - [anon_sym_not_DASHlike2] = ACTIONS(2327), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_STAR_STAR2] = ACTIONS(2327), - [anon_sym_PLUS_PLUS2] = ACTIONS(2327), - [anon_sym_SLASH2] = ACTIONS(2329), - [anon_sym_mod2] = ACTIONS(2327), - [anon_sym_SLASH_SLASH2] = ACTIONS(2327), - [anon_sym_PLUS2] = ACTIONS(2329), - [anon_sym_bit_DASHshl2] = ACTIONS(2327), - [anon_sym_bit_DASHshr2] = ACTIONS(2327), - [anon_sym_bit_DASHand2] = ACTIONS(2327), - [anon_sym_bit_DASHxor2] = ACTIONS(2327), - [anon_sym_bit_DASHor2] = ACTIONS(2327), - [anon_sym_err_GT] = ACTIONS(2329), - [anon_sym_out_GT] = ACTIONS(2329), - [anon_sym_e_GT] = ACTIONS(2329), - [anon_sym_o_GT] = ACTIONS(2329), - [anon_sym_err_PLUSout_GT] = ACTIONS(2329), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2329), - [anon_sym_o_PLUSe_GT] = ACTIONS(2329), - [anon_sym_e_PLUSo_GT] = ACTIONS(2329), - [anon_sym_err_GT_GT] = ACTIONS(2327), - [anon_sym_out_GT_GT] = ACTIONS(2327), - [anon_sym_e_GT_GT] = ACTIONS(2327), - [anon_sym_o_GT_GT] = ACTIONS(2327), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2327), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2327), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2327), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2327), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(803)] = { - [aux_sym__repeat_newline] = STATE(1043), - [sym__expr_parenthesized_immediate] = STATE(4802), - [sym_comment] = STATE(803), - [anon_sym_in] = ACTIONS(2327), - [sym__newline] = ACTIONS(2327), - [anon_sym_SEMI] = ACTIONS(2327), - [anon_sym_PIPE] = ACTIONS(2327), - [anon_sym_err_GT_PIPE] = ACTIONS(2327), - [anon_sym_out_GT_PIPE] = ACTIONS(2327), - [anon_sym_e_GT_PIPE] = ACTIONS(2327), - [anon_sym_o_GT_PIPE] = ACTIONS(2327), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2327), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2327), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2327), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2327), - [anon_sym_RPAREN] = ACTIONS(2327), - [anon_sym_GT2] = ACTIONS(2329), - [anon_sym_DASH2] = ACTIONS(2327), - [anon_sym_LBRACE] = ACTIONS(2327), - [anon_sym_STAR2] = ACTIONS(2329), - [anon_sym_and2] = ACTIONS(2327), - [anon_sym_xor2] = ACTIONS(2327), - [anon_sym_or2] = ACTIONS(2327), - [anon_sym_not_DASHin2] = ACTIONS(2327), - [anon_sym_has2] = ACTIONS(2327), - [anon_sym_not_DASHhas2] = ACTIONS(2327), - [anon_sym_starts_DASHwith2] = ACTIONS(2327), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2327), - [anon_sym_ends_DASHwith2] = ACTIONS(2327), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2327), - [anon_sym_EQ_EQ2] = ACTIONS(2327), - [anon_sym_BANG_EQ2] = ACTIONS(2327), - [anon_sym_LT2] = ACTIONS(2329), - [anon_sym_LT_EQ2] = ACTIONS(2327), - [anon_sym_GT_EQ2] = ACTIONS(2327), - [anon_sym_EQ_TILDE2] = ACTIONS(2327), - [anon_sym_BANG_TILDE2] = ACTIONS(2327), - [anon_sym_like2] = ACTIONS(2327), - [anon_sym_not_DASHlike2] = ACTIONS(2327), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_STAR_STAR2] = ACTIONS(2327), - [anon_sym_PLUS_PLUS2] = ACTIONS(2327), - [anon_sym_SLASH2] = ACTIONS(2329), - [anon_sym_mod2] = ACTIONS(2327), - [anon_sym_SLASH_SLASH2] = ACTIONS(2327), - [anon_sym_PLUS2] = ACTIONS(2329), - [anon_sym_bit_DASHshl2] = ACTIONS(2327), - [anon_sym_bit_DASHshr2] = ACTIONS(2327), - [anon_sym_bit_DASHand2] = ACTIONS(2327), - [anon_sym_bit_DASHxor2] = ACTIONS(2327), - [anon_sym_bit_DASHor2] = ACTIONS(2327), - [anon_sym_err_GT] = ACTIONS(2329), - [anon_sym_out_GT] = ACTIONS(2329), - [anon_sym_e_GT] = ACTIONS(2329), - [anon_sym_o_GT] = ACTIONS(2329), - [anon_sym_err_PLUSout_GT] = ACTIONS(2329), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2329), - [anon_sym_o_PLUSe_GT] = ACTIONS(2329), - [anon_sym_e_PLUSo_GT] = ACTIONS(2329), - [anon_sym_err_GT_GT] = ACTIONS(2327), - [anon_sym_out_GT_GT] = ACTIONS(2327), - [anon_sym_e_GT_GT] = ACTIONS(2327), - [anon_sym_o_GT_GT] = ACTIONS(2327), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2327), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2327), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2327), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2327), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(804)] = { - [aux_sym__repeat_newline] = STATE(1044), - [sym__expr_parenthesized_immediate] = STATE(4802), - [sym_comment] = STATE(804), - [anon_sym_in] = ACTIONS(2327), - [sym__newline] = ACTIONS(2327), - [anon_sym_SEMI] = ACTIONS(2327), - [anon_sym_PIPE] = ACTIONS(2327), - [anon_sym_err_GT_PIPE] = ACTIONS(2327), - [anon_sym_out_GT_PIPE] = ACTIONS(2327), - [anon_sym_e_GT_PIPE] = ACTIONS(2327), - [anon_sym_o_GT_PIPE] = ACTIONS(2327), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2327), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2327), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2327), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2327), - [anon_sym_RPAREN] = ACTIONS(2327), - [anon_sym_GT2] = ACTIONS(2329), - [anon_sym_DASH2] = ACTIONS(2327), - [anon_sym_LBRACE] = ACTIONS(2327), - [anon_sym_STAR2] = ACTIONS(2329), - [anon_sym_and2] = ACTIONS(2327), - [anon_sym_xor2] = ACTIONS(2327), - [anon_sym_or2] = ACTIONS(2327), - [anon_sym_not_DASHin2] = ACTIONS(2327), - [anon_sym_has2] = ACTIONS(2327), - [anon_sym_not_DASHhas2] = ACTIONS(2327), - [anon_sym_starts_DASHwith2] = ACTIONS(2327), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2327), - [anon_sym_ends_DASHwith2] = ACTIONS(2327), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2327), - [anon_sym_EQ_EQ2] = ACTIONS(2327), - [anon_sym_BANG_EQ2] = ACTIONS(2327), - [anon_sym_LT2] = ACTIONS(2329), - [anon_sym_LT_EQ2] = ACTIONS(2327), - [anon_sym_GT_EQ2] = ACTIONS(2327), - [anon_sym_EQ_TILDE2] = ACTIONS(2327), - [anon_sym_BANG_TILDE2] = ACTIONS(2327), - [anon_sym_like2] = ACTIONS(2327), - [anon_sym_not_DASHlike2] = ACTIONS(2327), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_STAR_STAR2] = ACTIONS(2327), - [anon_sym_PLUS_PLUS2] = ACTIONS(2327), - [anon_sym_SLASH2] = ACTIONS(2329), - [anon_sym_mod2] = ACTIONS(2327), - [anon_sym_SLASH_SLASH2] = ACTIONS(2327), - [anon_sym_PLUS2] = ACTIONS(2329), - [anon_sym_bit_DASHshl2] = ACTIONS(2327), - [anon_sym_bit_DASHshr2] = ACTIONS(2327), - [anon_sym_bit_DASHand2] = ACTIONS(2327), - [anon_sym_bit_DASHxor2] = ACTIONS(2327), - [anon_sym_bit_DASHor2] = ACTIONS(2327), - [anon_sym_err_GT] = ACTIONS(2329), - [anon_sym_out_GT] = ACTIONS(2329), - [anon_sym_e_GT] = ACTIONS(2329), - [anon_sym_o_GT] = ACTIONS(2329), - [anon_sym_err_PLUSout_GT] = ACTIONS(2329), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2329), - [anon_sym_o_PLUSe_GT] = ACTIONS(2329), - [anon_sym_e_PLUSo_GT] = ACTIONS(2329), - [anon_sym_err_GT_GT] = ACTIONS(2327), - [anon_sym_out_GT_GT] = ACTIONS(2327), - [anon_sym_e_GT_GT] = ACTIONS(2327), - [anon_sym_o_GT_GT] = ACTIONS(2327), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2327), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2327), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2327), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2327), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(805)] = { - [aux_sym__repeat_newline] = STATE(1045), - [sym__expr_parenthesized_immediate] = STATE(4802), - [sym_comment] = STATE(805), - [anon_sym_in] = ACTIONS(2327), - [sym__newline] = ACTIONS(2327), - [anon_sym_SEMI] = ACTIONS(2327), - [anon_sym_PIPE] = ACTIONS(2327), - [anon_sym_err_GT_PIPE] = ACTIONS(2327), - [anon_sym_out_GT_PIPE] = ACTIONS(2327), - [anon_sym_e_GT_PIPE] = ACTIONS(2327), - [anon_sym_o_GT_PIPE] = ACTIONS(2327), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2327), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2327), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2327), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2327), - [anon_sym_RPAREN] = ACTIONS(2327), - [anon_sym_GT2] = ACTIONS(2329), - [anon_sym_DASH2] = ACTIONS(2327), - [anon_sym_LBRACE] = ACTIONS(2327), - [anon_sym_STAR2] = ACTIONS(2329), - [anon_sym_and2] = ACTIONS(2327), - [anon_sym_xor2] = ACTIONS(2327), - [anon_sym_or2] = ACTIONS(2327), - [anon_sym_not_DASHin2] = ACTIONS(2327), - [anon_sym_has2] = ACTIONS(2327), - [anon_sym_not_DASHhas2] = ACTIONS(2327), - [anon_sym_starts_DASHwith2] = ACTIONS(2327), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2327), - [anon_sym_ends_DASHwith2] = ACTIONS(2327), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2327), - [anon_sym_EQ_EQ2] = ACTIONS(2327), - [anon_sym_BANG_EQ2] = ACTIONS(2327), - [anon_sym_LT2] = ACTIONS(2329), - [anon_sym_LT_EQ2] = ACTIONS(2327), - [anon_sym_GT_EQ2] = ACTIONS(2327), - [anon_sym_EQ_TILDE2] = ACTIONS(2327), - [anon_sym_BANG_TILDE2] = ACTIONS(2327), - [anon_sym_like2] = ACTIONS(2327), - [anon_sym_not_DASHlike2] = ACTIONS(2327), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_STAR_STAR2] = ACTIONS(2327), - [anon_sym_PLUS_PLUS2] = ACTIONS(2327), - [anon_sym_SLASH2] = ACTIONS(2329), - [anon_sym_mod2] = ACTIONS(2327), - [anon_sym_SLASH_SLASH2] = ACTIONS(2327), - [anon_sym_PLUS2] = ACTIONS(2329), - [anon_sym_bit_DASHshl2] = ACTIONS(2327), - [anon_sym_bit_DASHshr2] = ACTIONS(2327), - [anon_sym_bit_DASHand2] = ACTIONS(2327), - [anon_sym_bit_DASHxor2] = ACTIONS(2327), - [anon_sym_bit_DASHor2] = ACTIONS(2327), - [anon_sym_err_GT] = ACTIONS(2329), - [anon_sym_out_GT] = ACTIONS(2329), - [anon_sym_e_GT] = ACTIONS(2329), - [anon_sym_o_GT] = ACTIONS(2329), - [anon_sym_err_PLUSout_GT] = ACTIONS(2329), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2329), - [anon_sym_o_PLUSe_GT] = ACTIONS(2329), - [anon_sym_e_PLUSo_GT] = ACTIONS(2329), - [anon_sym_err_GT_GT] = ACTIONS(2327), - [anon_sym_out_GT_GT] = ACTIONS(2327), - [anon_sym_e_GT_GT] = ACTIONS(2327), - [anon_sym_o_GT_GT] = ACTIONS(2327), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2327), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2327), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2327), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2327), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(806)] = { - [aux_sym__repeat_newline] = STATE(1048), - [sym__expr_parenthesized_immediate] = STATE(4802), - [sym_comment] = STATE(806), - [anon_sym_in] = ACTIONS(2327), - [sym__newline] = ACTIONS(2327), - [anon_sym_SEMI] = ACTIONS(2327), - [anon_sym_PIPE] = ACTIONS(2327), - [anon_sym_err_GT_PIPE] = ACTIONS(2327), - [anon_sym_out_GT_PIPE] = ACTIONS(2327), - [anon_sym_e_GT_PIPE] = ACTIONS(2327), - [anon_sym_o_GT_PIPE] = ACTIONS(2327), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2327), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2327), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2327), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2327), - [anon_sym_RPAREN] = ACTIONS(2327), - [anon_sym_GT2] = ACTIONS(2329), - [anon_sym_DASH2] = ACTIONS(2327), - [anon_sym_LBRACE] = ACTIONS(2327), - [anon_sym_STAR2] = ACTIONS(2329), - [anon_sym_and2] = ACTIONS(2327), - [anon_sym_xor2] = ACTIONS(2327), - [anon_sym_or2] = ACTIONS(2327), - [anon_sym_not_DASHin2] = ACTIONS(2327), - [anon_sym_has2] = ACTIONS(2327), - [anon_sym_not_DASHhas2] = ACTIONS(2327), - [anon_sym_starts_DASHwith2] = ACTIONS(2327), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2327), - [anon_sym_ends_DASHwith2] = ACTIONS(2327), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2327), - [anon_sym_EQ_EQ2] = ACTIONS(2327), - [anon_sym_BANG_EQ2] = ACTIONS(2327), - [anon_sym_LT2] = ACTIONS(2329), - [anon_sym_LT_EQ2] = ACTIONS(2327), - [anon_sym_GT_EQ2] = ACTIONS(2327), - [anon_sym_EQ_TILDE2] = ACTIONS(2327), - [anon_sym_BANG_TILDE2] = ACTIONS(2327), - [anon_sym_like2] = ACTIONS(2327), - [anon_sym_not_DASHlike2] = ACTIONS(2327), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_STAR_STAR2] = ACTIONS(2327), - [anon_sym_PLUS_PLUS2] = ACTIONS(2327), - [anon_sym_SLASH2] = ACTIONS(2329), - [anon_sym_mod2] = ACTIONS(2327), - [anon_sym_SLASH_SLASH2] = ACTIONS(2327), - [anon_sym_PLUS2] = ACTIONS(2329), - [anon_sym_bit_DASHshl2] = ACTIONS(2327), - [anon_sym_bit_DASHshr2] = ACTIONS(2327), - [anon_sym_bit_DASHand2] = ACTIONS(2327), - [anon_sym_bit_DASHxor2] = ACTIONS(2327), - [anon_sym_bit_DASHor2] = ACTIONS(2327), - [anon_sym_err_GT] = ACTIONS(2329), - [anon_sym_out_GT] = ACTIONS(2329), - [anon_sym_e_GT] = ACTIONS(2329), - [anon_sym_o_GT] = ACTIONS(2329), - [anon_sym_err_PLUSout_GT] = ACTIONS(2329), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2329), - [anon_sym_o_PLUSe_GT] = ACTIONS(2329), - [anon_sym_e_PLUSo_GT] = ACTIONS(2329), - [anon_sym_err_GT_GT] = ACTIONS(2327), - [anon_sym_out_GT_GT] = ACTIONS(2327), - [anon_sym_e_GT_GT] = ACTIONS(2327), - [anon_sym_o_GT_GT] = ACTIONS(2327), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2327), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2327), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2327), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2327), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(807)] = { - [aux_sym__repeat_newline] = STATE(1049), - [sym__expr_parenthesized_immediate] = STATE(4802), - [sym_comment] = STATE(807), - [anon_sym_in] = ACTIONS(2327), - [sym__newline] = ACTIONS(2327), - [anon_sym_SEMI] = ACTIONS(2327), - [anon_sym_PIPE] = ACTIONS(2327), - [anon_sym_err_GT_PIPE] = ACTIONS(2327), - [anon_sym_out_GT_PIPE] = ACTIONS(2327), - [anon_sym_e_GT_PIPE] = ACTIONS(2327), - [anon_sym_o_GT_PIPE] = ACTIONS(2327), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2327), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2327), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2327), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2327), - [anon_sym_RPAREN] = ACTIONS(2327), - [anon_sym_GT2] = ACTIONS(2329), - [anon_sym_DASH2] = ACTIONS(2327), - [anon_sym_LBRACE] = ACTIONS(2327), - [anon_sym_STAR2] = ACTIONS(2329), - [anon_sym_and2] = ACTIONS(2327), - [anon_sym_xor2] = ACTIONS(2327), - [anon_sym_or2] = ACTIONS(2327), - [anon_sym_not_DASHin2] = ACTIONS(2327), - [anon_sym_has2] = ACTIONS(2327), - [anon_sym_not_DASHhas2] = ACTIONS(2327), - [anon_sym_starts_DASHwith2] = ACTIONS(2327), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2327), - [anon_sym_ends_DASHwith2] = ACTIONS(2327), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2327), - [anon_sym_EQ_EQ2] = ACTIONS(2327), - [anon_sym_BANG_EQ2] = ACTIONS(2327), - [anon_sym_LT2] = ACTIONS(2329), - [anon_sym_LT_EQ2] = ACTIONS(2327), - [anon_sym_GT_EQ2] = ACTIONS(2327), - [anon_sym_EQ_TILDE2] = ACTIONS(2327), - [anon_sym_BANG_TILDE2] = ACTIONS(2327), - [anon_sym_like2] = ACTIONS(2327), - [anon_sym_not_DASHlike2] = ACTIONS(2327), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_STAR_STAR2] = ACTIONS(2327), - [anon_sym_PLUS_PLUS2] = ACTIONS(2327), - [anon_sym_SLASH2] = ACTIONS(2329), - [anon_sym_mod2] = ACTIONS(2327), - [anon_sym_SLASH_SLASH2] = ACTIONS(2327), - [anon_sym_PLUS2] = ACTIONS(2329), - [anon_sym_bit_DASHshl2] = ACTIONS(2327), - [anon_sym_bit_DASHshr2] = ACTIONS(2327), - [anon_sym_bit_DASHand2] = ACTIONS(2327), - [anon_sym_bit_DASHxor2] = ACTIONS(2327), - [anon_sym_bit_DASHor2] = ACTIONS(2327), - [anon_sym_err_GT] = ACTIONS(2329), - [anon_sym_out_GT] = ACTIONS(2329), - [anon_sym_e_GT] = ACTIONS(2329), - [anon_sym_o_GT] = ACTIONS(2329), - [anon_sym_err_PLUSout_GT] = ACTIONS(2329), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2329), - [anon_sym_o_PLUSe_GT] = ACTIONS(2329), - [anon_sym_e_PLUSo_GT] = ACTIONS(2329), - [anon_sym_err_GT_GT] = ACTIONS(2327), - [anon_sym_out_GT_GT] = ACTIONS(2327), - [anon_sym_e_GT_GT] = ACTIONS(2327), - [anon_sym_o_GT_GT] = ACTIONS(2327), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2327), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2327), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2327), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2327), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(808)] = { - [aux_sym__repeat_newline] = STATE(1051), - [sym__expr_parenthesized_immediate] = STATE(4802), - [sym_comment] = STATE(808), - [anon_sym_in] = ACTIONS(2327), - [sym__newline] = ACTIONS(2327), - [anon_sym_SEMI] = ACTIONS(2327), - [anon_sym_PIPE] = ACTIONS(2327), - [anon_sym_err_GT_PIPE] = ACTIONS(2327), - [anon_sym_out_GT_PIPE] = ACTIONS(2327), - [anon_sym_e_GT_PIPE] = ACTIONS(2327), - [anon_sym_o_GT_PIPE] = ACTIONS(2327), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2327), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2327), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2327), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2327), - [anon_sym_RPAREN] = ACTIONS(2327), - [anon_sym_GT2] = ACTIONS(2329), - [anon_sym_DASH2] = ACTIONS(2327), - [anon_sym_LBRACE] = ACTIONS(2327), - [anon_sym_STAR2] = ACTIONS(2329), - [anon_sym_and2] = ACTIONS(2327), - [anon_sym_xor2] = ACTIONS(2327), - [anon_sym_or2] = ACTIONS(2327), - [anon_sym_not_DASHin2] = ACTIONS(2327), - [anon_sym_has2] = ACTIONS(2327), - [anon_sym_not_DASHhas2] = ACTIONS(2327), - [anon_sym_starts_DASHwith2] = ACTIONS(2327), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2327), - [anon_sym_ends_DASHwith2] = ACTIONS(2327), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2327), - [anon_sym_EQ_EQ2] = ACTIONS(2327), - [anon_sym_BANG_EQ2] = ACTIONS(2327), - [anon_sym_LT2] = ACTIONS(2329), - [anon_sym_LT_EQ2] = ACTIONS(2327), - [anon_sym_GT_EQ2] = ACTIONS(2327), - [anon_sym_EQ_TILDE2] = ACTIONS(2327), - [anon_sym_BANG_TILDE2] = ACTIONS(2327), - [anon_sym_like2] = ACTIONS(2327), - [anon_sym_not_DASHlike2] = ACTIONS(2327), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_STAR_STAR2] = ACTIONS(2327), - [anon_sym_PLUS_PLUS2] = ACTIONS(2327), - [anon_sym_SLASH2] = ACTIONS(2329), - [anon_sym_mod2] = ACTIONS(2327), - [anon_sym_SLASH_SLASH2] = ACTIONS(2327), - [anon_sym_PLUS2] = ACTIONS(2329), - [anon_sym_bit_DASHshl2] = ACTIONS(2327), - [anon_sym_bit_DASHshr2] = ACTIONS(2327), - [anon_sym_bit_DASHand2] = ACTIONS(2327), - [anon_sym_bit_DASHxor2] = ACTIONS(2327), - [anon_sym_bit_DASHor2] = ACTIONS(2327), - [anon_sym_err_GT] = ACTIONS(2329), - [anon_sym_out_GT] = ACTIONS(2329), - [anon_sym_e_GT] = ACTIONS(2329), - [anon_sym_o_GT] = ACTIONS(2329), - [anon_sym_err_PLUSout_GT] = ACTIONS(2329), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2329), - [anon_sym_o_PLUSe_GT] = ACTIONS(2329), - [anon_sym_e_PLUSo_GT] = ACTIONS(2329), - [anon_sym_err_GT_GT] = ACTIONS(2327), - [anon_sym_out_GT_GT] = ACTIONS(2327), - [anon_sym_e_GT_GT] = ACTIONS(2327), - [anon_sym_o_GT_GT] = ACTIONS(2327), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2327), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2327), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2327), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2327), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(809)] = { - [aux_sym__repeat_newline] = STATE(1052), - [sym__expr_parenthesized_immediate] = STATE(4802), - [sym_comment] = STATE(809), - [anon_sym_in] = ACTIONS(2327), - [sym__newline] = ACTIONS(2327), - [anon_sym_SEMI] = ACTIONS(2327), - [anon_sym_PIPE] = ACTIONS(2327), - [anon_sym_err_GT_PIPE] = ACTIONS(2327), - [anon_sym_out_GT_PIPE] = ACTIONS(2327), - [anon_sym_e_GT_PIPE] = ACTIONS(2327), - [anon_sym_o_GT_PIPE] = ACTIONS(2327), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2327), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2327), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2327), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2327), - [anon_sym_RPAREN] = ACTIONS(2327), - [anon_sym_GT2] = ACTIONS(2329), - [anon_sym_DASH2] = ACTIONS(2327), - [anon_sym_LBRACE] = ACTIONS(2327), - [anon_sym_STAR2] = ACTIONS(2329), - [anon_sym_and2] = ACTIONS(2327), - [anon_sym_xor2] = ACTIONS(2327), - [anon_sym_or2] = ACTIONS(2327), - [anon_sym_not_DASHin2] = ACTIONS(2327), - [anon_sym_has2] = ACTIONS(2327), - [anon_sym_not_DASHhas2] = ACTIONS(2327), - [anon_sym_starts_DASHwith2] = ACTIONS(2327), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2327), - [anon_sym_ends_DASHwith2] = ACTIONS(2327), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2327), - [anon_sym_EQ_EQ2] = ACTIONS(2327), - [anon_sym_BANG_EQ2] = ACTIONS(2327), - [anon_sym_LT2] = ACTIONS(2329), - [anon_sym_LT_EQ2] = ACTIONS(2327), - [anon_sym_GT_EQ2] = ACTIONS(2327), - [anon_sym_EQ_TILDE2] = ACTIONS(2327), - [anon_sym_BANG_TILDE2] = ACTIONS(2327), - [anon_sym_like2] = ACTIONS(2327), - [anon_sym_not_DASHlike2] = ACTIONS(2327), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_STAR_STAR2] = ACTIONS(2327), - [anon_sym_PLUS_PLUS2] = ACTIONS(2327), - [anon_sym_SLASH2] = ACTIONS(2329), - [anon_sym_mod2] = ACTIONS(2327), - [anon_sym_SLASH_SLASH2] = ACTIONS(2327), - [anon_sym_PLUS2] = ACTIONS(2329), - [anon_sym_bit_DASHshl2] = ACTIONS(2327), - [anon_sym_bit_DASHshr2] = ACTIONS(2327), - [anon_sym_bit_DASHand2] = ACTIONS(2327), - [anon_sym_bit_DASHxor2] = ACTIONS(2327), - [anon_sym_bit_DASHor2] = ACTIONS(2327), - [anon_sym_err_GT] = ACTIONS(2329), - [anon_sym_out_GT] = ACTIONS(2329), - [anon_sym_e_GT] = ACTIONS(2329), - [anon_sym_o_GT] = ACTIONS(2329), - [anon_sym_err_PLUSout_GT] = ACTIONS(2329), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2329), - [anon_sym_o_PLUSe_GT] = ACTIONS(2329), - [anon_sym_e_PLUSo_GT] = ACTIONS(2329), - [anon_sym_err_GT_GT] = ACTIONS(2327), - [anon_sym_out_GT_GT] = ACTIONS(2327), - [anon_sym_e_GT_GT] = ACTIONS(2327), - [anon_sym_o_GT_GT] = ACTIONS(2327), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2327), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2327), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2327), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2327), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(810)] = { - [aux_sym__repeat_newline] = STATE(1138), - [sym__expr_parenthesized_immediate] = STATE(4802), - [sym_comment] = STATE(810), - [anon_sym_in] = ACTIONS(2337), - [sym__newline] = ACTIONS(2337), - [anon_sym_SEMI] = ACTIONS(2337), - [anon_sym_PIPE] = ACTIONS(2337), - [anon_sym_err_GT_PIPE] = ACTIONS(2337), - [anon_sym_out_GT_PIPE] = ACTIONS(2337), - [anon_sym_e_GT_PIPE] = ACTIONS(2337), - [anon_sym_o_GT_PIPE] = ACTIONS(2337), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2337), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2337), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2337), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2337), - [anon_sym_RPAREN] = ACTIONS(2337), - [anon_sym_GT2] = ACTIONS(2339), - [anon_sym_DASH2] = ACTIONS(2337), - [anon_sym_LBRACE] = ACTIONS(2337), - [anon_sym_STAR2] = ACTIONS(2339), - [anon_sym_and2] = ACTIONS(2337), - [anon_sym_xor2] = ACTIONS(2337), - [anon_sym_or2] = ACTIONS(2337), - [anon_sym_not_DASHin2] = ACTIONS(2337), - [anon_sym_has2] = ACTIONS(2337), - [anon_sym_not_DASHhas2] = ACTIONS(2337), - [anon_sym_starts_DASHwith2] = ACTIONS(2337), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2337), - [anon_sym_ends_DASHwith2] = ACTIONS(2337), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2337), - [anon_sym_EQ_EQ2] = ACTIONS(2337), - [anon_sym_BANG_EQ2] = ACTIONS(2337), - [anon_sym_LT2] = ACTIONS(2339), - [anon_sym_LT_EQ2] = ACTIONS(2337), - [anon_sym_GT_EQ2] = ACTIONS(2337), - [anon_sym_EQ_TILDE2] = ACTIONS(2337), - [anon_sym_BANG_TILDE2] = ACTIONS(2337), - [anon_sym_like2] = ACTIONS(2337), - [anon_sym_not_DASHlike2] = ACTIONS(2337), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_STAR_STAR2] = ACTIONS(2337), - [anon_sym_PLUS_PLUS2] = ACTIONS(2337), - [anon_sym_SLASH2] = ACTIONS(2339), - [anon_sym_mod2] = ACTIONS(2337), - [anon_sym_SLASH_SLASH2] = ACTIONS(2337), - [anon_sym_PLUS2] = ACTIONS(2339), - [anon_sym_bit_DASHshl2] = ACTIONS(2337), - [anon_sym_bit_DASHshr2] = ACTIONS(2337), - [anon_sym_bit_DASHand2] = ACTIONS(2337), - [anon_sym_bit_DASHxor2] = ACTIONS(2337), - [anon_sym_bit_DASHor2] = ACTIONS(2337), - [anon_sym_err_GT] = ACTIONS(2339), - [anon_sym_out_GT] = ACTIONS(2339), - [anon_sym_e_GT] = ACTIONS(2339), - [anon_sym_o_GT] = ACTIONS(2339), - [anon_sym_err_PLUSout_GT] = ACTIONS(2339), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2339), - [anon_sym_o_PLUSe_GT] = ACTIONS(2339), - [anon_sym_e_PLUSo_GT] = ACTIONS(2339), - [anon_sym_err_GT_GT] = ACTIONS(2337), - [anon_sym_out_GT_GT] = ACTIONS(2337), - [anon_sym_e_GT_GT] = ACTIONS(2337), - [anon_sym_o_GT_GT] = ACTIONS(2337), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2337), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2337), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2337), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2337), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(811)] = { - [aux_sym__repeat_newline] = STATE(1064), - [sym__expr_parenthesized_immediate] = STATE(4802), - [sym_comment] = STATE(811), - [anon_sym_in] = ACTIONS(2337), - [sym__newline] = ACTIONS(2337), - [anon_sym_SEMI] = ACTIONS(2337), - [anon_sym_PIPE] = ACTIONS(2337), - [anon_sym_err_GT_PIPE] = ACTIONS(2337), - [anon_sym_out_GT_PIPE] = ACTIONS(2337), - [anon_sym_e_GT_PIPE] = ACTIONS(2337), - [anon_sym_o_GT_PIPE] = ACTIONS(2337), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2337), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2337), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2337), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2337), - [anon_sym_RPAREN] = ACTIONS(2337), - [anon_sym_GT2] = ACTIONS(2339), - [anon_sym_DASH2] = ACTIONS(2337), - [anon_sym_LBRACE] = ACTIONS(2337), - [anon_sym_STAR2] = ACTIONS(2339), - [anon_sym_and2] = ACTIONS(2337), - [anon_sym_xor2] = ACTIONS(2337), - [anon_sym_or2] = ACTIONS(2337), - [anon_sym_not_DASHin2] = ACTIONS(2337), - [anon_sym_has2] = ACTIONS(2337), - [anon_sym_not_DASHhas2] = ACTIONS(2337), - [anon_sym_starts_DASHwith2] = ACTIONS(2337), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2337), - [anon_sym_ends_DASHwith2] = ACTIONS(2337), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2337), - [anon_sym_EQ_EQ2] = ACTIONS(2337), - [anon_sym_BANG_EQ2] = ACTIONS(2337), - [anon_sym_LT2] = ACTIONS(2339), - [anon_sym_LT_EQ2] = ACTIONS(2337), - [anon_sym_GT_EQ2] = ACTIONS(2337), - [anon_sym_EQ_TILDE2] = ACTIONS(2337), - [anon_sym_BANG_TILDE2] = ACTIONS(2337), - [anon_sym_like2] = ACTIONS(2337), - [anon_sym_not_DASHlike2] = ACTIONS(2337), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_STAR_STAR2] = ACTIONS(2337), - [anon_sym_PLUS_PLUS2] = ACTIONS(2337), - [anon_sym_SLASH2] = ACTIONS(2339), - [anon_sym_mod2] = ACTIONS(2337), - [anon_sym_SLASH_SLASH2] = ACTIONS(2337), - [anon_sym_PLUS2] = ACTIONS(2339), - [anon_sym_bit_DASHshl2] = ACTIONS(2337), - [anon_sym_bit_DASHshr2] = ACTIONS(2337), - [anon_sym_bit_DASHand2] = ACTIONS(2337), - [anon_sym_bit_DASHxor2] = ACTIONS(2337), - [anon_sym_bit_DASHor2] = ACTIONS(2337), - [anon_sym_err_GT] = ACTIONS(2339), - [anon_sym_out_GT] = ACTIONS(2339), - [anon_sym_e_GT] = ACTIONS(2339), - [anon_sym_o_GT] = ACTIONS(2339), - [anon_sym_err_PLUSout_GT] = ACTIONS(2339), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2339), - [anon_sym_o_PLUSe_GT] = ACTIONS(2339), - [anon_sym_e_PLUSo_GT] = ACTIONS(2339), - [anon_sym_err_GT_GT] = ACTIONS(2337), - [anon_sym_out_GT_GT] = ACTIONS(2337), - [anon_sym_e_GT_GT] = ACTIONS(2337), - [anon_sym_o_GT_GT] = ACTIONS(2337), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2337), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2337), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2337), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2337), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(812)] = { - [aux_sym__repeat_newline] = STATE(1066), - [sym__expr_parenthesized_immediate] = STATE(4802), - [sym_comment] = STATE(812), - [anon_sym_in] = ACTIONS(2337), - [sym__newline] = ACTIONS(2337), - [anon_sym_SEMI] = ACTIONS(2337), - [anon_sym_PIPE] = ACTIONS(2337), - [anon_sym_err_GT_PIPE] = ACTIONS(2337), - [anon_sym_out_GT_PIPE] = ACTIONS(2337), - [anon_sym_e_GT_PIPE] = ACTIONS(2337), - [anon_sym_o_GT_PIPE] = ACTIONS(2337), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2337), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2337), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2337), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2337), - [anon_sym_RPAREN] = ACTIONS(2337), - [anon_sym_GT2] = ACTIONS(2339), - [anon_sym_DASH2] = ACTIONS(2337), - [anon_sym_LBRACE] = ACTIONS(2337), - [anon_sym_STAR2] = ACTIONS(2339), - [anon_sym_and2] = ACTIONS(2337), - [anon_sym_xor2] = ACTIONS(2337), - [anon_sym_or2] = ACTIONS(2337), - [anon_sym_not_DASHin2] = ACTIONS(2337), - [anon_sym_has2] = ACTIONS(2337), - [anon_sym_not_DASHhas2] = ACTIONS(2337), - [anon_sym_starts_DASHwith2] = ACTIONS(2337), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2337), - [anon_sym_ends_DASHwith2] = ACTIONS(2337), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2337), - [anon_sym_EQ_EQ2] = ACTIONS(2337), - [anon_sym_BANG_EQ2] = ACTIONS(2337), - [anon_sym_LT2] = ACTIONS(2339), - [anon_sym_LT_EQ2] = ACTIONS(2337), - [anon_sym_GT_EQ2] = ACTIONS(2337), - [anon_sym_EQ_TILDE2] = ACTIONS(2337), - [anon_sym_BANG_TILDE2] = ACTIONS(2337), - [anon_sym_like2] = ACTIONS(2337), - [anon_sym_not_DASHlike2] = ACTIONS(2337), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_STAR_STAR2] = ACTIONS(2337), - [anon_sym_PLUS_PLUS2] = ACTIONS(2337), - [anon_sym_SLASH2] = ACTIONS(2339), - [anon_sym_mod2] = ACTIONS(2337), - [anon_sym_SLASH_SLASH2] = ACTIONS(2337), - [anon_sym_PLUS2] = ACTIONS(2339), - [anon_sym_bit_DASHshl2] = ACTIONS(2337), - [anon_sym_bit_DASHshr2] = ACTIONS(2337), - [anon_sym_bit_DASHand2] = ACTIONS(2337), - [anon_sym_bit_DASHxor2] = ACTIONS(2337), - [anon_sym_bit_DASHor2] = ACTIONS(2337), - [anon_sym_err_GT] = ACTIONS(2339), - [anon_sym_out_GT] = ACTIONS(2339), - [anon_sym_e_GT] = ACTIONS(2339), - [anon_sym_o_GT] = ACTIONS(2339), - [anon_sym_err_PLUSout_GT] = ACTIONS(2339), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2339), - [anon_sym_o_PLUSe_GT] = ACTIONS(2339), - [anon_sym_e_PLUSo_GT] = ACTIONS(2339), - [anon_sym_err_GT_GT] = ACTIONS(2337), - [anon_sym_out_GT_GT] = ACTIONS(2337), - [anon_sym_e_GT_GT] = ACTIONS(2337), - [anon_sym_o_GT_GT] = ACTIONS(2337), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2337), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2337), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2337), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2337), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(813)] = { - [sym_cmd_identifier] = STATE(4276), - [sym_expr_parenthesized] = STATE(5339), - [sym__spread_parenthesized] = STATE(4883), - [sym__spread_variable] = STATE(4892), - [sym_val_variable] = STATE(5339), - [sym_val_number] = STATE(5339), - [sym__val_number_decimal] = STATE(1984), - [sym__val_number] = STATE(707), - [sym_val_string] = STATE(5339), - [sym__raw_str] = STATE(2266), - [sym__str_double_quotes] = STATE(2266), - [sym__str_single_quotes] = STATE(2266), - [sym__str_back_ticks] = STATE(2266), - [sym_val_interpolated] = STATE(5339), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym__spread_record] = STATE(4883), - [sym_record_entry] = STATE(4527), - [sym__record_key] = STATE(5341), - [sym_comment] = STATE(813), - [aux_sym_record_body_repeat1] = STATE(881), - [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(1782), - [anon_sym_false] = ACTIONS(1782), - [anon_sym_null] = ACTIONS(1782), - [aux_sym_cmd_identifier_token3] = ACTIONS(1784), - [aux_sym_cmd_identifier_token4] = ACTIONS(1784), - [aux_sym_cmd_identifier_token5] = ACTIONS(1784), - [anon_sym_LPAREN] = ACTIONS(1788), - [anon_sym_DOLLAR] = ACTIONS(1790), - [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(1794), - [aux_sym__val_number_decimal_token2] = ACTIONS(1796), - [aux_sym__val_number_decimal_token3] = ACTIONS(1798), - [aux_sym__val_number_decimal_token4] = ACTIONS(1798), - [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(1800), - [anon_sym_SQUOTE] = ACTIONS(1802), - [anon_sym_BQUOTE] = ACTIONS(1804), - [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(1806), - }, - [STATE(814)] = { - [aux_sym__repeat_newline] = STATE(1068), - [sym__expr_parenthesized_immediate] = STATE(4802), - [sym_comment] = STATE(814), - [anon_sym_in] = ACTIONS(2337), - [sym__newline] = ACTIONS(2337), - [anon_sym_SEMI] = ACTIONS(2337), - [anon_sym_PIPE] = ACTIONS(2337), - [anon_sym_err_GT_PIPE] = ACTIONS(2337), - [anon_sym_out_GT_PIPE] = ACTIONS(2337), - [anon_sym_e_GT_PIPE] = ACTIONS(2337), - [anon_sym_o_GT_PIPE] = ACTIONS(2337), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2337), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2337), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2337), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2337), - [anon_sym_RPAREN] = ACTIONS(2337), - [anon_sym_GT2] = ACTIONS(2339), - [anon_sym_DASH2] = ACTIONS(2337), - [anon_sym_LBRACE] = ACTIONS(2337), - [anon_sym_STAR2] = ACTIONS(2339), - [anon_sym_and2] = ACTIONS(2337), - [anon_sym_xor2] = ACTIONS(2337), - [anon_sym_or2] = ACTIONS(2337), - [anon_sym_not_DASHin2] = ACTIONS(2337), - [anon_sym_has2] = ACTIONS(2337), - [anon_sym_not_DASHhas2] = ACTIONS(2337), - [anon_sym_starts_DASHwith2] = ACTIONS(2337), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2337), - [anon_sym_ends_DASHwith2] = ACTIONS(2337), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2337), - [anon_sym_EQ_EQ2] = ACTIONS(2337), - [anon_sym_BANG_EQ2] = ACTIONS(2337), - [anon_sym_LT2] = ACTIONS(2339), - [anon_sym_LT_EQ2] = ACTIONS(2337), - [anon_sym_GT_EQ2] = ACTIONS(2337), - [anon_sym_EQ_TILDE2] = ACTIONS(2337), - [anon_sym_BANG_TILDE2] = ACTIONS(2337), - [anon_sym_like2] = ACTIONS(2337), - [anon_sym_not_DASHlike2] = ACTIONS(2337), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_STAR_STAR2] = ACTIONS(2337), - [anon_sym_PLUS_PLUS2] = ACTIONS(2337), - [anon_sym_SLASH2] = ACTIONS(2339), - [anon_sym_mod2] = ACTIONS(2337), - [anon_sym_SLASH_SLASH2] = ACTIONS(2337), - [anon_sym_PLUS2] = ACTIONS(2339), - [anon_sym_bit_DASHshl2] = ACTIONS(2337), - [anon_sym_bit_DASHshr2] = ACTIONS(2337), - [anon_sym_bit_DASHand2] = ACTIONS(2337), - [anon_sym_bit_DASHxor2] = ACTIONS(2337), - [anon_sym_bit_DASHor2] = ACTIONS(2337), - [anon_sym_err_GT] = ACTIONS(2339), - [anon_sym_out_GT] = ACTIONS(2339), - [anon_sym_e_GT] = ACTIONS(2339), - [anon_sym_o_GT] = ACTIONS(2339), - [anon_sym_err_PLUSout_GT] = ACTIONS(2339), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2339), - [anon_sym_o_PLUSe_GT] = ACTIONS(2339), - [anon_sym_e_PLUSo_GT] = ACTIONS(2339), - [anon_sym_err_GT_GT] = ACTIONS(2337), - [anon_sym_out_GT_GT] = ACTIONS(2337), - [anon_sym_e_GT_GT] = ACTIONS(2337), - [anon_sym_o_GT_GT] = ACTIONS(2337), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2337), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2337), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2337), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2337), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(815)] = { - [sym_expr_unary] = STATE(1323), - [sym__expr_unary_minus] = STATE(1290), - [sym_expr_binary] = STATE(1323), - [sym__expr_binary_expression] = STATE(1694), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1323), - [sym__val_range] = STATE(4744), - [sym__value] = STATE(1323), - [sym_val_nothing] = STATE(1295), - [sym_val_bool] = STATE(1511), - [sym_val_variable] = STATE(933), - [sym_val_cellpath] = STATE(1295), - [sym_val_number] = STATE(1295), - [sym__val_number_decimal] = STATE(1419), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1295), - [sym_val_filesize] = STATE(1295), - [sym_val_binary] = STATE(1295), - [sym_val_string] = STATE(1295), - [sym__raw_str] = STATE(502), - [sym__str_double_quotes] = STATE(502), - [sym__str_single_quotes] = STATE(502), - [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1295), - [sym__inter_single_quotes] = STATE(1306), - [sym__inter_double_quotes] = STATE(1317), - [sym_val_list] = STATE(1295), - [sym_val_record] = STATE(1295), - [sym_val_table] = STATE(1295), - [sym_val_closure] = STATE(1295), - [sym_unquoted] = STATE(1126), - [sym__unquoted_with_expr] = STATE(1327), - [sym__unquoted_anonymous_prefix] = STATE(4744), - [sym_comment] = STATE(815), - [anon_sym_true] = ACTIONS(2341), - [anon_sym_false] = ACTIONS(2341), - [anon_sym_null] = ACTIONS(2343), - [aux_sym_cmd_identifier_token3] = ACTIONS(2345), - [aux_sym_cmd_identifier_token4] = ACTIONS(2345), - [aux_sym_cmd_identifier_token5] = ACTIONS(2345), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1008), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2347), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2349), - [anon_sym_DOT_DOT_LT] = ACTIONS(2349), - [aux_sym__val_number_decimal_token1] = ACTIONS(2351), - [aux_sym__val_number_decimal_token2] = ACTIONS(2353), - [aux_sym__val_number_decimal_token3] = ACTIONS(2355), - [aux_sym__val_number_decimal_token4] = ACTIONS(2355), - [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(2357), - [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(2226), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(816)] = { - [sym_expr_unary] = STATE(1323), - [sym__expr_unary_minus] = STATE(1290), - [sym_expr_binary] = STATE(1323), - [sym__expr_binary_expression] = STATE(1695), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1323), - [sym__val_range] = STATE(4744), - [sym__value] = STATE(1323), - [sym_val_nothing] = STATE(1295), - [sym_val_bool] = STATE(1511), - [sym_val_variable] = STATE(933), - [sym_val_cellpath] = STATE(1295), - [sym_val_number] = STATE(1295), - [sym__val_number_decimal] = STATE(1419), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1295), - [sym_val_filesize] = STATE(1295), - [sym_val_binary] = STATE(1295), - [sym_val_string] = STATE(1295), - [sym__raw_str] = STATE(502), - [sym__str_double_quotes] = STATE(502), - [sym__str_single_quotes] = STATE(502), - [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1295), - [sym__inter_single_quotes] = STATE(1306), - [sym__inter_double_quotes] = STATE(1317), - [sym_val_list] = STATE(1295), - [sym_val_record] = STATE(1295), - [sym_val_table] = STATE(1295), - [sym_val_closure] = STATE(1295), - [sym_unquoted] = STATE(1128), - [sym__unquoted_with_expr] = STATE(1331), - [sym__unquoted_anonymous_prefix] = STATE(4744), - [sym_comment] = STATE(816), - [anon_sym_true] = ACTIONS(2341), - [anon_sym_false] = ACTIONS(2341), - [anon_sym_null] = ACTIONS(2343), - [aux_sym_cmd_identifier_token3] = ACTIONS(2345), - [aux_sym_cmd_identifier_token4] = ACTIONS(2345), - [aux_sym_cmd_identifier_token5] = ACTIONS(2345), + [sym__unquoted_anonymous_prefix] = STATE(4844), + [sym_comment] = STATE(766), + [anon_sym_true] = ACTIONS(2385), + [anon_sym_false] = ACTIONS(2385), + [anon_sym_null] = ACTIONS(2387), + [aux_sym_cmd_identifier_token3] = ACTIONS(2389), + [aux_sym_cmd_identifier_token4] = ACTIONS(2389), + [aux_sym_cmd_identifier_token5] = ACTIONS(2389), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1008), + [anon_sym_DOLLAR] = ACTIONS(1010), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2347), + [anon_sym_DOT_DOT] = ACTIONS(2391), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2349), - [anon_sym_DOT_DOT_LT] = ACTIONS(2349), - [aux_sym__val_number_decimal_token1] = ACTIONS(2351), - [aux_sym__val_number_decimal_token2] = ACTIONS(2353), - [aux_sym__val_number_decimal_token3] = ACTIONS(2355), - [aux_sym__val_number_decimal_token4] = ACTIONS(2355), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2393), + [anon_sym_DOT_DOT_LT] = ACTIONS(2393), + [aux_sym__val_number_decimal_token1] = ACTIONS(2395), + [aux_sym__val_number_decimal_token2] = ACTIONS(2397), + [aux_sym__val_number_decimal_token3] = ACTIONS(2399), + [aux_sym__val_number_decimal_token4] = ACTIONS(2399), [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(2357), + [sym_val_date] = ACTIONS(2401), [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(2226), + [aux_sym_unquoted_token1] = ACTIONS(2403), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(817)] = { - [sym_expr_unary] = STATE(1323), - [sym__expr_unary_minus] = STATE(1290), - [sym_expr_binary] = STATE(1323), - [sym__expr_binary_expression] = STATE(1696), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1323), - [sym__val_range] = STATE(4744), - [sym__value] = STATE(1323), - [sym_val_nothing] = STATE(1295), - [sym_val_bool] = STATE(1511), - [sym_val_variable] = STATE(933), - [sym_val_cellpath] = STATE(1295), - [sym_val_number] = STATE(1295), - [sym__val_number_decimal] = STATE(1419), + [STATE(767)] = { + [sym_expr_unary] = STATE(1320), + [sym__expr_unary_minus] = STATE(1296), + [sym_expr_binary] = STATE(1320), + [sym__expr_binary_expression] = STATE(1706), + [sym_expr_parenthesized] = STATE(935), + [sym_val_range] = STATE(1320), + [sym__val_range] = STATE(4844), + [sym__value] = STATE(1320), + [sym_val_nothing] = STATE(1316), + [sym_val_bool] = STATE(1514), + [sym_val_variable] = STATE(912), + [sym_val_cellpath] = STATE(1316), + [sym_val_number] = STATE(1316), + [sym__val_number_decimal] = STATE(1433), [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1295), - [sym_val_filesize] = STATE(1295), - [sym_val_binary] = STATE(1295), - [sym_val_string] = STATE(1295), + [sym_val_duration] = STATE(1316), + [sym_val_filesize] = STATE(1316), + [sym_val_binary] = STATE(1316), + [sym_val_string] = STATE(1316), [sym__raw_str] = STATE(502), [sym__str_double_quotes] = STATE(502), [sym__str_single_quotes] = STATE(502), [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1295), - [sym__inter_single_quotes] = STATE(1306), - [sym__inter_double_quotes] = STATE(1317), - [sym_val_list] = STATE(1295), - [sym_val_record] = STATE(1295), - [sym_val_table] = STATE(1295), - [sym_val_closure] = STATE(1295), - [sym_unquoted] = STATE(1129), - [sym__unquoted_with_expr] = STATE(1336), - [sym__unquoted_anonymous_prefix] = STATE(4744), - [sym_comment] = STATE(817), - [anon_sym_true] = ACTIONS(2341), - [anon_sym_false] = ACTIONS(2341), - [anon_sym_null] = ACTIONS(2343), - [aux_sym_cmd_identifier_token3] = ACTIONS(2345), - [aux_sym_cmd_identifier_token4] = ACTIONS(2345), - [aux_sym_cmd_identifier_token5] = ACTIONS(2345), + [sym_val_interpolated] = STATE(1316), + [sym__inter_single_quotes] = STATE(1277), + [sym__inter_double_quotes] = STATE(1311), + [sym_val_list] = STATE(1316), + [sym_val_record] = STATE(1316), + [sym_val_table] = STATE(1316), + [sym_val_closure] = STATE(1316), + [sym_unquoted] = STATE(1053), + [sym__unquoted_with_expr] = STATE(1326), + [sym__unquoted_anonymous_prefix] = STATE(4844), + [sym_comment] = STATE(767), + [anon_sym_true] = ACTIONS(2385), + [anon_sym_false] = ACTIONS(2385), + [anon_sym_null] = ACTIONS(2387), + [aux_sym_cmd_identifier_token3] = ACTIONS(2389), + [aux_sym_cmd_identifier_token4] = ACTIONS(2389), + [aux_sym_cmd_identifier_token5] = ACTIONS(2389), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1008), + [anon_sym_DOLLAR] = ACTIONS(1010), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2347), + [anon_sym_DOT_DOT] = ACTIONS(2391), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2349), - [anon_sym_DOT_DOT_LT] = ACTIONS(2349), - [aux_sym__val_number_decimal_token1] = ACTIONS(2351), - [aux_sym__val_number_decimal_token2] = ACTIONS(2353), - [aux_sym__val_number_decimal_token3] = ACTIONS(2355), - [aux_sym__val_number_decimal_token4] = ACTIONS(2355), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2393), + [anon_sym_DOT_DOT_LT] = ACTIONS(2393), + [aux_sym__val_number_decimal_token1] = ACTIONS(2395), + [aux_sym__val_number_decimal_token2] = ACTIONS(2397), + [aux_sym__val_number_decimal_token3] = ACTIONS(2399), + [aux_sym__val_number_decimal_token4] = ACTIONS(2399), [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(2357), + [sym_val_date] = ACTIONS(2401), [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(2226), + [aux_sym_unquoted_token1] = ACTIONS(2403), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(818)] = { - [sym_expr_unary] = STATE(1323), - [sym__expr_unary_minus] = STATE(1290), - [sym_expr_binary] = STATE(1323), - [sym__expr_binary_expression] = STATE(1697), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1323), - [sym__val_range] = STATE(4744), - [sym__value] = STATE(1323), - [sym_val_nothing] = STATE(1295), - [sym_val_bool] = STATE(1511), - [sym_val_variable] = STATE(933), - [sym_val_cellpath] = STATE(1295), - [sym_val_number] = STATE(1295), - [sym__val_number_decimal] = STATE(1419), + [STATE(768)] = { + [sym_expr_unary] = STATE(1320), + [sym__expr_unary_minus] = STATE(1296), + [sym_expr_binary] = STATE(1320), + [sym__expr_binary_expression] = STATE(1707), + [sym_expr_parenthesized] = STATE(935), + [sym_val_range] = STATE(1320), + [sym__val_range] = STATE(4844), + [sym__value] = STATE(1320), + [sym_val_nothing] = STATE(1316), + [sym_val_bool] = STATE(1514), + [sym_val_variable] = STATE(912), + [sym_val_cellpath] = STATE(1316), + [sym_val_number] = STATE(1316), + [sym__val_number_decimal] = STATE(1433), [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1295), - [sym_val_filesize] = STATE(1295), - [sym_val_binary] = STATE(1295), - [sym_val_string] = STATE(1295), + [sym_val_duration] = STATE(1316), + [sym_val_filesize] = STATE(1316), + [sym_val_binary] = STATE(1316), + [sym_val_string] = STATE(1316), [sym__raw_str] = STATE(502), [sym__str_double_quotes] = STATE(502), [sym__str_single_quotes] = STATE(502), [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1295), - [sym__inter_single_quotes] = STATE(1306), - [sym__inter_double_quotes] = STATE(1317), - [sym_val_list] = STATE(1295), - [sym_val_record] = STATE(1295), - [sym_val_table] = STATE(1295), - [sym_val_closure] = STATE(1295), - [sym_unquoted] = STATE(1135), - [sym__unquoted_with_expr] = STATE(1271), - [sym__unquoted_anonymous_prefix] = STATE(4744), - [sym_comment] = STATE(818), - [anon_sym_true] = ACTIONS(2341), - [anon_sym_false] = ACTIONS(2341), - [anon_sym_null] = ACTIONS(2343), - [aux_sym_cmd_identifier_token3] = ACTIONS(2345), - [aux_sym_cmd_identifier_token4] = ACTIONS(2345), - [aux_sym_cmd_identifier_token5] = ACTIONS(2345), + [sym_val_interpolated] = STATE(1316), + [sym__inter_single_quotes] = STATE(1277), + [sym__inter_double_quotes] = STATE(1311), + [sym_val_list] = STATE(1316), + [sym_val_record] = STATE(1316), + [sym_val_table] = STATE(1316), + [sym_val_closure] = STATE(1316), + [sym_unquoted] = STATE(1058), + [sym__unquoted_with_expr] = STATE(1328), + [sym__unquoted_anonymous_prefix] = STATE(4844), + [sym_comment] = STATE(768), + [anon_sym_true] = ACTIONS(2385), + [anon_sym_false] = ACTIONS(2385), + [anon_sym_null] = ACTIONS(2387), + [aux_sym_cmd_identifier_token3] = ACTIONS(2389), + [aux_sym_cmd_identifier_token4] = ACTIONS(2389), + [aux_sym_cmd_identifier_token5] = ACTIONS(2389), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1008), + [anon_sym_DOLLAR] = ACTIONS(1010), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2347), + [anon_sym_DOT_DOT] = ACTIONS(2391), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2349), - [anon_sym_DOT_DOT_LT] = ACTIONS(2349), - [aux_sym__val_number_decimal_token1] = ACTIONS(2351), - [aux_sym__val_number_decimal_token2] = ACTIONS(2353), - [aux_sym__val_number_decimal_token3] = ACTIONS(2355), - [aux_sym__val_number_decimal_token4] = ACTIONS(2355), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2393), + [anon_sym_DOT_DOT_LT] = ACTIONS(2393), + [aux_sym__val_number_decimal_token1] = ACTIONS(2395), + [aux_sym__val_number_decimal_token2] = ACTIONS(2397), + [aux_sym__val_number_decimal_token3] = ACTIONS(2399), + [aux_sym__val_number_decimal_token4] = ACTIONS(2399), [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(2357), + [sym_val_date] = ACTIONS(2401), [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(2226), + [aux_sym_unquoted_token1] = ACTIONS(2403), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(819)] = { - [sym_expr_unary] = STATE(1323), - [sym__expr_unary_minus] = STATE(1290), - [sym_expr_binary] = STATE(1323), - [sym__expr_binary_expression] = STATE(1698), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1323), - [sym__val_range] = STATE(4744), - [sym__value] = STATE(1323), - [sym_val_nothing] = STATE(1295), - [sym_val_bool] = STATE(1511), - [sym_val_variable] = STATE(933), - [sym_val_cellpath] = STATE(1295), - [sym_val_number] = STATE(1295), - [sym__val_number_decimal] = STATE(1419), + [STATE(769)] = { + [sym_expr_unary] = STATE(1320), + [sym__expr_unary_minus] = STATE(1296), + [sym_expr_binary] = STATE(1320), + [sym__expr_binary_expression] = STATE(1708), + [sym_expr_parenthesized] = STATE(935), + [sym_val_range] = STATE(1320), + [sym__val_range] = STATE(4844), + [sym__value] = STATE(1320), + [sym_val_nothing] = STATE(1316), + [sym_val_bool] = STATE(1514), + [sym_val_variable] = STATE(912), + [sym_val_cellpath] = STATE(1316), + [sym_val_number] = STATE(1316), + [sym__val_number_decimal] = STATE(1433), [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1295), - [sym_val_filesize] = STATE(1295), - [sym_val_binary] = STATE(1295), - [sym_val_string] = STATE(1295), + [sym_val_duration] = STATE(1316), + [sym_val_filesize] = STATE(1316), + [sym_val_binary] = STATE(1316), + [sym_val_string] = STATE(1316), [sym__raw_str] = STATE(502), [sym__str_double_quotes] = STATE(502), [sym__str_single_quotes] = STATE(502), [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1295), - [sym__inter_single_quotes] = STATE(1306), - [sym__inter_double_quotes] = STATE(1317), - [sym_val_list] = STATE(1295), - [sym_val_record] = STATE(1295), - [sym_val_table] = STATE(1295), - [sym_val_closure] = STATE(1295), - [sym_unquoted] = STATE(1136), - [sym__unquoted_with_expr] = STATE(1351), - [sym__unquoted_anonymous_prefix] = STATE(4744), - [sym_comment] = STATE(819), - [anon_sym_true] = ACTIONS(2341), - [anon_sym_false] = ACTIONS(2341), - [anon_sym_null] = ACTIONS(2343), - [aux_sym_cmd_identifier_token3] = ACTIONS(2345), - [aux_sym_cmd_identifier_token4] = ACTIONS(2345), - [aux_sym_cmd_identifier_token5] = ACTIONS(2345), + [sym_val_interpolated] = STATE(1316), + [sym__inter_single_quotes] = STATE(1277), + [sym__inter_double_quotes] = STATE(1311), + [sym_val_list] = STATE(1316), + [sym_val_record] = STATE(1316), + [sym_val_table] = STATE(1316), + [sym_val_closure] = STATE(1316), + [sym_unquoted] = STATE(1075), + [sym__unquoted_with_expr] = STATE(1330), + [sym__unquoted_anonymous_prefix] = STATE(4844), + [sym_comment] = STATE(769), + [anon_sym_true] = ACTIONS(2385), + [anon_sym_false] = ACTIONS(2385), + [anon_sym_null] = ACTIONS(2387), + [aux_sym_cmd_identifier_token3] = ACTIONS(2389), + [aux_sym_cmd_identifier_token4] = ACTIONS(2389), + [aux_sym_cmd_identifier_token5] = ACTIONS(2389), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1008), + [anon_sym_DOLLAR] = ACTIONS(1010), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2347), + [anon_sym_DOT_DOT] = ACTIONS(2391), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2349), - [anon_sym_DOT_DOT_LT] = ACTIONS(2349), - [aux_sym__val_number_decimal_token1] = ACTIONS(2351), - [aux_sym__val_number_decimal_token2] = ACTIONS(2353), - [aux_sym__val_number_decimal_token3] = ACTIONS(2355), - [aux_sym__val_number_decimal_token4] = ACTIONS(2355), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2393), + [anon_sym_DOT_DOT_LT] = ACTIONS(2393), + [aux_sym__val_number_decimal_token1] = ACTIONS(2395), + [aux_sym__val_number_decimal_token2] = ACTIONS(2397), + [aux_sym__val_number_decimal_token3] = ACTIONS(2399), + [aux_sym__val_number_decimal_token4] = ACTIONS(2399), [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(2357), + [sym_val_date] = ACTIONS(2401), [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(2226), + [aux_sym_unquoted_token1] = ACTIONS(2403), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(820)] = { - [sym_expr_unary] = STATE(1323), - [sym__expr_unary_minus] = STATE(1290), - [sym_expr_binary] = STATE(1323), - [sym__expr_binary_expression] = STATE(1699), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1323), - [sym__val_range] = STATE(4744), - [sym__value] = STATE(1323), - [sym_val_nothing] = STATE(1295), - [sym_val_bool] = STATE(1511), - [sym_val_variable] = STATE(933), - [sym_val_cellpath] = STATE(1295), - [sym_val_number] = STATE(1295), - [sym__val_number_decimal] = STATE(1419), + [STATE(770)] = { + [sym_expr_unary] = STATE(1320), + [sym__expr_unary_minus] = STATE(1296), + [sym_expr_binary] = STATE(1320), + [sym__expr_binary_expression] = STATE(1709), + [sym_expr_parenthesized] = STATE(935), + [sym_val_range] = STATE(1320), + [sym__val_range] = STATE(4844), + [sym__value] = STATE(1320), + [sym_val_nothing] = STATE(1316), + [sym_val_bool] = STATE(1514), + [sym_val_variable] = STATE(912), + [sym_val_cellpath] = STATE(1316), + [sym_val_number] = STATE(1316), + [sym__val_number_decimal] = STATE(1433), [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1295), - [sym_val_filesize] = STATE(1295), - [sym_val_binary] = STATE(1295), - [sym_val_string] = STATE(1295), + [sym_val_duration] = STATE(1316), + [sym_val_filesize] = STATE(1316), + [sym_val_binary] = STATE(1316), + [sym_val_string] = STATE(1316), [sym__raw_str] = STATE(502), [sym__str_double_quotes] = STATE(502), [sym__str_single_quotes] = STATE(502), [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1295), - [sym__inter_single_quotes] = STATE(1306), - [sym__inter_double_quotes] = STATE(1317), - [sym_val_list] = STATE(1295), - [sym_val_record] = STATE(1295), - [sym_val_table] = STATE(1295), - [sym_val_closure] = STATE(1295), - [sym_unquoted] = STATE(1030), - [sym__unquoted_with_expr] = STATE(1344), - [sym__unquoted_anonymous_prefix] = STATE(4744), - [sym_comment] = STATE(820), - [anon_sym_true] = ACTIONS(2341), - [anon_sym_false] = ACTIONS(2341), - [anon_sym_null] = ACTIONS(2343), - [aux_sym_cmd_identifier_token3] = ACTIONS(2345), - [aux_sym_cmd_identifier_token4] = ACTIONS(2345), - [aux_sym_cmd_identifier_token5] = ACTIONS(2345), + [sym_val_interpolated] = STATE(1316), + [sym__inter_single_quotes] = STATE(1277), + [sym__inter_double_quotes] = STATE(1311), + [sym_val_list] = STATE(1316), + [sym_val_record] = STATE(1316), + [sym_val_table] = STATE(1316), + [sym_val_closure] = STATE(1316), + [sym_unquoted] = STATE(1078), + [sym__unquoted_with_expr] = STATE(1332), + [sym__unquoted_anonymous_prefix] = STATE(4844), + [sym_comment] = STATE(770), + [anon_sym_true] = ACTIONS(2385), + [anon_sym_false] = ACTIONS(2385), + [anon_sym_null] = ACTIONS(2387), + [aux_sym_cmd_identifier_token3] = ACTIONS(2389), + [aux_sym_cmd_identifier_token4] = ACTIONS(2389), + [aux_sym_cmd_identifier_token5] = ACTIONS(2389), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1008), + [anon_sym_DOLLAR] = ACTIONS(1010), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2347), + [anon_sym_DOT_DOT] = ACTIONS(2391), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2349), - [anon_sym_DOT_DOT_LT] = ACTIONS(2349), - [aux_sym__val_number_decimal_token1] = ACTIONS(2351), - [aux_sym__val_number_decimal_token2] = ACTIONS(2353), - [aux_sym__val_number_decimal_token3] = ACTIONS(2355), - [aux_sym__val_number_decimal_token4] = ACTIONS(2355), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2393), + [anon_sym_DOT_DOT_LT] = ACTIONS(2393), + [aux_sym__val_number_decimal_token1] = ACTIONS(2395), + [aux_sym__val_number_decimal_token2] = ACTIONS(2397), + [aux_sym__val_number_decimal_token3] = ACTIONS(2399), + [aux_sym__val_number_decimal_token4] = ACTIONS(2399), [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(2357), + [sym_val_date] = ACTIONS(2401), [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(2226), + [aux_sym_unquoted_token1] = ACTIONS(2403), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(821)] = { - [sym_expr_unary] = STATE(1323), - [sym__expr_unary_minus] = STATE(1290), - [sym_expr_binary] = STATE(1323), - [sym__expr_binary_expression] = STATE(1700), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1323), - [sym__val_range] = STATE(4744), - [sym__value] = STATE(1323), - [sym_val_nothing] = STATE(1295), - [sym_val_bool] = STATE(1511), - [sym_val_variable] = STATE(933), - [sym_val_cellpath] = STATE(1295), - [sym_val_number] = STATE(1295), - [sym__val_number_decimal] = STATE(1419), + [STATE(771)] = { + [sym_expr_unary] = STATE(1320), + [sym__expr_unary_minus] = STATE(1296), + [sym_expr_binary] = STATE(1320), + [sym__expr_binary_expression] = STATE(1710), + [sym_expr_parenthesized] = STATE(935), + [sym_val_range] = STATE(1320), + [sym__val_range] = STATE(4844), + [sym__value] = STATE(1320), + [sym_val_nothing] = STATE(1316), + [sym_val_bool] = STATE(1514), + [sym_val_variable] = STATE(912), + [sym_val_cellpath] = STATE(1316), + [sym_val_number] = STATE(1316), + [sym__val_number_decimal] = STATE(1433), [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1295), - [sym_val_filesize] = STATE(1295), - [sym_val_binary] = STATE(1295), - [sym_val_string] = STATE(1295), + [sym_val_duration] = STATE(1316), + [sym_val_filesize] = STATE(1316), + [sym_val_binary] = STATE(1316), + [sym_val_string] = STATE(1316), [sym__raw_str] = STATE(502), [sym__str_double_quotes] = STATE(502), [sym__str_single_quotes] = STATE(502), [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1295), - [sym__inter_single_quotes] = STATE(1306), - [sym__inter_double_quotes] = STATE(1317), - [sym_val_list] = STATE(1295), - [sym_val_record] = STATE(1295), - [sym_val_table] = STATE(1295), - [sym_val_closure] = STATE(1295), - [sym_unquoted] = STATE(981), - [sym__unquoted_with_expr] = STATE(1314), - [sym__unquoted_anonymous_prefix] = STATE(4744), - [sym_comment] = STATE(821), - [anon_sym_true] = ACTIONS(2341), - [anon_sym_false] = ACTIONS(2341), - [anon_sym_null] = ACTIONS(2343), - [aux_sym_cmd_identifier_token3] = ACTIONS(2345), - [aux_sym_cmd_identifier_token4] = ACTIONS(2345), - [aux_sym_cmd_identifier_token5] = ACTIONS(2345), + [sym_val_interpolated] = STATE(1316), + [sym__inter_single_quotes] = STATE(1277), + [sym__inter_double_quotes] = STATE(1311), + [sym_val_list] = STATE(1316), + [sym_val_record] = STATE(1316), + [sym_val_table] = STATE(1316), + [sym_val_closure] = STATE(1316), + [sym_unquoted] = STATE(988), + [sym__unquoted_with_expr] = STATE(1334), + [sym__unquoted_anonymous_prefix] = STATE(4844), + [sym_comment] = STATE(771), + [anon_sym_true] = ACTIONS(2385), + [anon_sym_false] = ACTIONS(2385), + [anon_sym_null] = ACTIONS(2387), + [aux_sym_cmd_identifier_token3] = ACTIONS(2389), + [aux_sym_cmd_identifier_token4] = ACTIONS(2389), + [aux_sym_cmd_identifier_token5] = ACTIONS(2389), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1008), + [anon_sym_DOLLAR] = ACTIONS(1010), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2347), + [anon_sym_DOT_DOT] = ACTIONS(2391), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2349), - [anon_sym_DOT_DOT_LT] = ACTIONS(2349), - [aux_sym__val_number_decimal_token1] = ACTIONS(2351), - [aux_sym__val_number_decimal_token2] = ACTIONS(2353), - [aux_sym__val_number_decimal_token3] = ACTIONS(2355), - [aux_sym__val_number_decimal_token4] = ACTIONS(2355), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2393), + [anon_sym_DOT_DOT_LT] = ACTIONS(2393), + [aux_sym__val_number_decimal_token1] = ACTIONS(2395), + [aux_sym__val_number_decimal_token2] = ACTIONS(2397), + [aux_sym__val_number_decimal_token3] = ACTIONS(2399), + [aux_sym__val_number_decimal_token4] = ACTIONS(2399), [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(2357), + [sym_val_date] = ACTIONS(2401), [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(2226), + [aux_sym_unquoted_token1] = ACTIONS(2403), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(822)] = { - [sym_expr_unary] = STATE(1323), - [sym__expr_unary_minus] = STATE(1290), - [sym_expr_binary] = STATE(1323), - [sym__expr_binary_expression] = STATE(1701), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1323), - [sym__val_range] = STATE(4744), - [sym__value] = STATE(1323), - [sym_val_nothing] = STATE(1295), - [sym_val_bool] = STATE(1511), - [sym_val_variable] = STATE(933), - [sym_val_cellpath] = STATE(1295), - [sym_val_number] = STATE(1295), - [sym__val_number_decimal] = STATE(1419), + [STATE(772)] = { + [sym_expr_unary] = STATE(1320), + [sym__expr_unary_minus] = STATE(1296), + [sym_expr_binary] = STATE(1320), + [sym__expr_binary_expression] = STATE(1711), + [sym_expr_parenthesized] = STATE(935), + [sym_val_range] = STATE(1320), + [sym__val_range] = STATE(4844), + [sym__value] = STATE(1320), + [sym_val_nothing] = STATE(1316), + [sym_val_bool] = STATE(1514), + [sym_val_variable] = STATE(912), + [sym_val_cellpath] = STATE(1316), + [sym_val_number] = STATE(1316), + [sym__val_number_decimal] = STATE(1433), [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1295), - [sym_val_filesize] = STATE(1295), - [sym_val_binary] = STATE(1295), - [sym_val_string] = STATE(1295), + [sym_val_duration] = STATE(1316), + [sym_val_filesize] = STATE(1316), + [sym_val_binary] = STATE(1316), + [sym_val_string] = STATE(1316), [sym__raw_str] = STATE(502), [sym__str_double_quotes] = STATE(502), [sym__str_single_quotes] = STATE(502), [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1295), - [sym__inter_single_quotes] = STATE(1306), - [sym__inter_double_quotes] = STATE(1317), - [sym_val_list] = STATE(1295), - [sym_val_record] = STATE(1295), - [sym_val_table] = STATE(1295), - [sym_val_closure] = STATE(1295), - [sym_unquoted] = STATE(1006), - [sym__unquoted_with_expr] = STATE(1292), - [sym__unquoted_anonymous_prefix] = STATE(4744), - [sym_comment] = STATE(822), - [anon_sym_true] = ACTIONS(2341), - [anon_sym_false] = ACTIONS(2341), - [anon_sym_null] = ACTIONS(2343), - [aux_sym_cmd_identifier_token3] = ACTIONS(2345), - [aux_sym_cmd_identifier_token4] = ACTIONS(2345), - [aux_sym_cmd_identifier_token5] = ACTIONS(2345), + [sym_val_interpolated] = STATE(1316), + [sym__inter_single_quotes] = STATE(1277), + [sym__inter_double_quotes] = STATE(1311), + [sym_val_list] = STATE(1316), + [sym_val_record] = STATE(1316), + [sym_val_table] = STATE(1316), + [sym_val_closure] = STATE(1316), + [sym_unquoted] = STATE(1003), + [sym__unquoted_with_expr] = STATE(1336), + [sym__unquoted_anonymous_prefix] = STATE(4844), + [sym_comment] = STATE(772), + [anon_sym_true] = ACTIONS(2385), + [anon_sym_false] = ACTIONS(2385), + [anon_sym_null] = ACTIONS(2387), + [aux_sym_cmd_identifier_token3] = ACTIONS(2389), + [aux_sym_cmd_identifier_token4] = ACTIONS(2389), + [aux_sym_cmd_identifier_token5] = ACTIONS(2389), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1008), + [anon_sym_DOLLAR] = ACTIONS(1010), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2347), + [anon_sym_DOT_DOT] = ACTIONS(2391), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2349), - [anon_sym_DOT_DOT_LT] = ACTIONS(2349), - [aux_sym__val_number_decimal_token1] = ACTIONS(2351), - [aux_sym__val_number_decimal_token2] = ACTIONS(2353), - [aux_sym__val_number_decimal_token3] = ACTIONS(2355), - [aux_sym__val_number_decimal_token4] = ACTIONS(2355), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2393), + [anon_sym_DOT_DOT_LT] = ACTIONS(2393), + [aux_sym__val_number_decimal_token1] = ACTIONS(2395), + [aux_sym__val_number_decimal_token2] = ACTIONS(2397), + [aux_sym__val_number_decimal_token3] = ACTIONS(2399), + [aux_sym__val_number_decimal_token4] = ACTIONS(2399), [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(2357), + [sym_val_date] = ACTIONS(2401), [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(2226), + [aux_sym_unquoted_token1] = ACTIONS(2403), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(823)] = { - [sym_expr_unary] = STATE(1323), - [sym__expr_unary_minus] = STATE(1290), - [sym_expr_binary] = STATE(1323), - [sym__expr_binary_expression] = STATE(1291), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1323), - [sym__val_range] = STATE(4744), - [sym__value] = STATE(1323), - [sym_val_nothing] = STATE(1295), - [sym_val_bool] = STATE(1511), - [sym_val_variable] = STATE(933), - [sym_val_cellpath] = STATE(1295), - [sym_val_number] = STATE(1295), - [sym__val_number_decimal] = STATE(1419), + [STATE(773)] = { + [sym_expr_unary] = STATE(1320), + [sym__expr_unary_minus] = STATE(1296), + [sym_expr_binary] = STATE(1320), + [sym__expr_binary_expression] = STATE(1337), + [sym_expr_parenthesized] = STATE(935), + [sym_val_range] = STATE(1320), + [sym__val_range] = STATE(4844), + [sym__value] = STATE(1320), + [sym_val_nothing] = STATE(1316), + [sym_val_bool] = STATE(1514), + [sym_val_variable] = STATE(912), + [sym_val_cellpath] = STATE(1316), + [sym_val_number] = STATE(1316), + [sym__val_number_decimal] = STATE(1433), [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1295), - [sym_val_filesize] = STATE(1295), - [sym_val_binary] = STATE(1295), - [sym_val_string] = STATE(1295), + [sym_val_duration] = STATE(1316), + [sym_val_filesize] = STATE(1316), + [sym_val_binary] = STATE(1316), + [sym_val_string] = STATE(1316), [sym__raw_str] = STATE(502), [sym__str_double_quotes] = STATE(502), [sym__str_single_quotes] = STATE(502), [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1295), - [sym__inter_single_quotes] = STATE(1306), - [sym__inter_double_quotes] = STATE(1317), - [sym_val_list] = STATE(1295), - [sym_val_record] = STATE(1295), - [sym_val_table] = STATE(1295), - [sym_val_closure] = STATE(1295), - [sym_unquoted] = STATE(1108), - [sym__unquoted_with_expr] = STATE(1305), - [sym__unquoted_anonymous_prefix] = STATE(4744), - [sym_comment] = STATE(823), - [anon_sym_true] = ACTIONS(2341), - [anon_sym_false] = ACTIONS(2341), - [anon_sym_null] = ACTIONS(2343), - [aux_sym_cmd_identifier_token3] = ACTIONS(2345), - [aux_sym_cmd_identifier_token4] = ACTIONS(2345), - [aux_sym_cmd_identifier_token5] = ACTIONS(2345), + [sym_val_interpolated] = STATE(1316), + [sym__inter_single_quotes] = STATE(1277), + [sym__inter_double_quotes] = STATE(1311), + [sym_val_list] = STATE(1316), + [sym_val_record] = STATE(1316), + [sym_val_table] = STATE(1316), + [sym_val_closure] = STATE(1316), + [sym_unquoted] = STATE(1007), + [sym__unquoted_with_expr] = STATE(1338), + [sym__unquoted_anonymous_prefix] = STATE(4844), + [sym_comment] = STATE(773), + [anon_sym_true] = ACTIONS(2385), + [anon_sym_false] = ACTIONS(2385), + [anon_sym_null] = ACTIONS(2387), + [aux_sym_cmd_identifier_token3] = ACTIONS(2389), + [aux_sym_cmd_identifier_token4] = ACTIONS(2389), + [aux_sym_cmd_identifier_token5] = ACTIONS(2389), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1008), + [anon_sym_DOLLAR] = ACTIONS(1010), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2347), + [anon_sym_DOT_DOT] = ACTIONS(2391), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2349), - [anon_sym_DOT_DOT_LT] = ACTIONS(2349), - [aux_sym__val_number_decimal_token1] = ACTIONS(2351), - [aux_sym__val_number_decimal_token2] = ACTIONS(2353), - [aux_sym__val_number_decimal_token3] = ACTIONS(2355), - [aux_sym__val_number_decimal_token4] = ACTIONS(2355), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2393), + [anon_sym_DOT_DOT_LT] = ACTIONS(2393), + [aux_sym__val_number_decimal_token1] = ACTIONS(2395), + [aux_sym__val_number_decimal_token2] = ACTIONS(2397), + [aux_sym__val_number_decimal_token3] = ACTIONS(2399), + [aux_sym__val_number_decimal_token4] = ACTIONS(2399), [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(2357), + [sym_val_date] = ACTIONS(2401), [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(2226), + [aux_sym_unquoted_token1] = ACTIONS(2403), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(824)] = { - [sym_expr_unary] = STATE(1323), - [sym__expr_unary_minus] = STATE(1290), - [sym_expr_binary] = STATE(1323), - [sym__expr_binary_expression] = STATE(1702), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1323), - [sym__val_range] = STATE(4744), - [sym__value] = STATE(1323), - [sym_val_nothing] = STATE(1295), - [sym_val_bool] = STATE(1511), - [sym_val_variable] = STATE(933), - [sym_val_cellpath] = STATE(1295), - [sym_val_number] = STATE(1295), - [sym__val_number_decimal] = STATE(1419), + [STATE(774)] = { + [sym_expr_unary] = STATE(1320), + [sym__expr_unary_minus] = STATE(1296), + [sym_expr_binary] = STATE(1320), + [sym__expr_binary_expression] = STATE(1712), + [sym_expr_parenthesized] = STATE(935), + [sym_val_range] = STATE(1320), + [sym__val_range] = STATE(4844), + [sym__value] = STATE(1320), + [sym_val_nothing] = STATE(1316), + [sym_val_bool] = STATE(1514), + [sym_val_variable] = STATE(912), + [sym_val_cellpath] = STATE(1316), + [sym_val_number] = STATE(1316), + [sym__val_number_decimal] = STATE(1433), [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1295), - [sym_val_filesize] = STATE(1295), - [sym_val_binary] = STATE(1295), - [sym_val_string] = STATE(1295), + [sym_val_duration] = STATE(1316), + [sym_val_filesize] = STATE(1316), + [sym_val_binary] = STATE(1316), + [sym_val_string] = STATE(1316), [sym__raw_str] = STATE(502), [sym__str_double_quotes] = STATE(502), [sym__str_single_quotes] = STATE(502), [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1295), - [sym__inter_single_quotes] = STATE(1306), - [sym__inter_double_quotes] = STATE(1317), - [sym_val_list] = STATE(1295), - [sym_val_record] = STATE(1295), - [sym_val_table] = STATE(1295), - [sym_val_closure] = STATE(1295), - [sym_unquoted] = STATE(1125), - [sym__unquoted_with_expr] = STATE(1313), - [sym__unquoted_anonymous_prefix] = STATE(4744), - [sym_comment] = STATE(824), - [anon_sym_true] = ACTIONS(2341), - [anon_sym_false] = ACTIONS(2341), - [anon_sym_null] = ACTIONS(2343), - [aux_sym_cmd_identifier_token3] = ACTIONS(2345), - [aux_sym_cmd_identifier_token4] = ACTIONS(2345), - [aux_sym_cmd_identifier_token5] = ACTIONS(2345), + [sym_val_interpolated] = STATE(1316), + [sym__inter_single_quotes] = STATE(1277), + [sym__inter_double_quotes] = STATE(1311), + [sym_val_list] = STATE(1316), + [sym_val_record] = STATE(1316), + [sym_val_table] = STATE(1316), + [sym_val_closure] = STATE(1316), + [sym_unquoted] = STATE(1012), + [sym__unquoted_with_expr] = STATE(1340), + [sym__unquoted_anonymous_prefix] = STATE(4844), + [sym_comment] = STATE(774), + [anon_sym_true] = ACTIONS(2385), + [anon_sym_false] = ACTIONS(2385), + [anon_sym_null] = ACTIONS(2387), + [aux_sym_cmd_identifier_token3] = ACTIONS(2389), + [aux_sym_cmd_identifier_token4] = ACTIONS(2389), + [aux_sym_cmd_identifier_token5] = ACTIONS(2389), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1008), + [anon_sym_DOLLAR] = ACTIONS(1010), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2347), + [anon_sym_DOT_DOT] = ACTIONS(2391), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2349), - [anon_sym_DOT_DOT_LT] = ACTIONS(2349), - [aux_sym__val_number_decimal_token1] = ACTIONS(2351), - [aux_sym__val_number_decimal_token2] = ACTIONS(2353), - [aux_sym__val_number_decimal_token3] = ACTIONS(2355), - [aux_sym__val_number_decimal_token4] = ACTIONS(2355), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2393), + [anon_sym_DOT_DOT_LT] = ACTIONS(2393), + [aux_sym__val_number_decimal_token1] = ACTIONS(2395), + [aux_sym__val_number_decimal_token2] = ACTIONS(2397), + [aux_sym__val_number_decimal_token3] = ACTIONS(2399), + [aux_sym__val_number_decimal_token4] = ACTIONS(2399), [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(2357), + [sym_val_date] = ACTIONS(2401), [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(2226), + [aux_sym_unquoted_token1] = ACTIONS(2403), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(825)] = { - [sym_expr_unary] = STATE(1323), - [sym__expr_unary_minus] = STATE(1290), - [sym_expr_binary] = STATE(1323), - [sym__expr_binary_expression] = STATE(1703), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1323), - [sym__val_range] = STATE(4744), - [sym__value] = STATE(1323), - [sym_val_nothing] = STATE(1295), - [sym_val_bool] = STATE(1511), - [sym_val_variable] = STATE(933), - [sym_val_cellpath] = STATE(1295), - [sym_val_number] = STATE(1295), - [sym__val_number_decimal] = STATE(1419), + [STATE(775)] = { + [sym_expr_unary] = STATE(1320), + [sym__expr_unary_minus] = STATE(1296), + [sym_expr_binary] = STATE(1320), + [sym__expr_binary_expression] = STATE(1713), + [sym_expr_parenthesized] = STATE(935), + [sym_val_range] = STATE(1320), + [sym__val_range] = STATE(4844), + [sym__value] = STATE(1320), + [sym_val_nothing] = STATE(1316), + [sym_val_bool] = STATE(1514), + [sym_val_variable] = STATE(912), + [sym_val_cellpath] = STATE(1316), + [sym_val_number] = STATE(1316), + [sym__val_number_decimal] = STATE(1433), [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1295), - [sym_val_filesize] = STATE(1295), - [sym_val_binary] = STATE(1295), - [sym_val_string] = STATE(1295), + [sym_val_duration] = STATE(1316), + [sym_val_filesize] = STATE(1316), + [sym_val_binary] = STATE(1316), + [sym_val_string] = STATE(1316), [sym__raw_str] = STATE(502), [sym__str_double_quotes] = STATE(502), [sym__str_single_quotes] = STATE(502), [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1295), - [sym__inter_single_quotes] = STATE(1306), - [sym__inter_double_quotes] = STATE(1317), - [sym_val_list] = STATE(1295), - [sym_val_record] = STATE(1295), - [sym_val_table] = STATE(1295), - [sym_val_closure] = STATE(1295), - [sym_unquoted] = STATE(983), - [sym__unquoted_with_expr] = STATE(1301), - [sym__unquoted_anonymous_prefix] = STATE(4744), - [sym_comment] = STATE(825), - [anon_sym_true] = ACTIONS(2341), - [anon_sym_false] = ACTIONS(2341), - [anon_sym_null] = ACTIONS(2343), - [aux_sym_cmd_identifier_token3] = ACTIONS(2345), - [aux_sym_cmd_identifier_token4] = ACTIONS(2345), - [aux_sym_cmd_identifier_token5] = ACTIONS(2345), + [sym_val_interpolated] = STATE(1316), + [sym__inter_single_quotes] = STATE(1277), + [sym__inter_double_quotes] = STATE(1311), + [sym_val_list] = STATE(1316), + [sym_val_record] = STATE(1316), + [sym_val_table] = STATE(1316), + [sym_val_closure] = STATE(1316), + [sym_unquoted] = STATE(1014), + [sym__unquoted_with_expr] = STATE(1342), + [sym__unquoted_anonymous_prefix] = STATE(4844), + [sym_comment] = STATE(775), + [anon_sym_true] = ACTIONS(2385), + [anon_sym_false] = ACTIONS(2385), + [anon_sym_null] = ACTIONS(2387), + [aux_sym_cmd_identifier_token3] = ACTIONS(2389), + [aux_sym_cmd_identifier_token4] = ACTIONS(2389), + [aux_sym_cmd_identifier_token5] = ACTIONS(2389), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1008), + [anon_sym_DOLLAR] = ACTIONS(1010), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2347), + [anon_sym_DOT_DOT] = ACTIONS(2391), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2349), - [anon_sym_DOT_DOT_LT] = ACTIONS(2349), - [aux_sym__val_number_decimal_token1] = ACTIONS(2351), - [aux_sym__val_number_decimal_token2] = ACTIONS(2353), - [aux_sym__val_number_decimal_token3] = ACTIONS(2355), - [aux_sym__val_number_decimal_token4] = ACTIONS(2355), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2393), + [anon_sym_DOT_DOT_LT] = ACTIONS(2393), + [aux_sym__val_number_decimal_token1] = ACTIONS(2395), + [aux_sym__val_number_decimal_token2] = ACTIONS(2397), + [aux_sym__val_number_decimal_token3] = ACTIONS(2399), + [aux_sym__val_number_decimal_token4] = ACTIONS(2399), [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(2357), + [sym_val_date] = ACTIONS(2401), [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(2226), + [aux_sym_unquoted_token1] = ACTIONS(2403), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(826)] = { - [sym_expr_unary] = STATE(1323), - [sym__expr_unary_minus] = STATE(1290), - [sym_expr_binary] = STATE(1323), - [sym__expr_binary_expression] = STATE(1705), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1323), - [sym__val_range] = STATE(4744), - [sym__value] = STATE(1323), - [sym_val_nothing] = STATE(1295), - [sym_val_bool] = STATE(1511), - [sym_val_variable] = STATE(933), - [sym_val_cellpath] = STATE(1295), - [sym_val_number] = STATE(1295), - [sym__val_number_decimal] = STATE(1419), + [STATE(776)] = { + [sym_expr_unary] = STATE(1320), + [sym__expr_unary_minus] = STATE(1296), + [sym_expr_binary] = STATE(1320), + [sym__expr_binary_expression] = STATE(1715), + [sym_expr_parenthesized] = STATE(935), + [sym_val_range] = STATE(1320), + [sym__val_range] = STATE(4844), + [sym__value] = STATE(1320), + [sym_val_nothing] = STATE(1316), + [sym_val_bool] = STATE(1514), + [sym_val_variable] = STATE(912), + [sym_val_cellpath] = STATE(1316), + [sym_val_number] = STATE(1316), + [sym__val_number_decimal] = STATE(1433), [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1295), - [sym_val_filesize] = STATE(1295), - [sym_val_binary] = STATE(1295), - [sym_val_string] = STATE(1295), + [sym_val_duration] = STATE(1316), + [sym_val_filesize] = STATE(1316), + [sym_val_binary] = STATE(1316), + [sym_val_string] = STATE(1316), [sym__raw_str] = STATE(502), [sym__str_double_quotes] = STATE(502), [sym__str_single_quotes] = STATE(502), [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1295), - [sym__inter_single_quotes] = STATE(1306), - [sym__inter_double_quotes] = STATE(1317), - [sym_val_list] = STATE(1295), - [sym_val_record] = STATE(1295), - [sym_val_table] = STATE(1295), - [sym_val_closure] = STATE(1295), - [sym_unquoted] = STATE(990), - [sym__unquoted_with_expr] = STATE(1324), - [sym__unquoted_anonymous_prefix] = STATE(4744), - [sym_comment] = STATE(826), - [anon_sym_true] = ACTIONS(2341), - [anon_sym_false] = ACTIONS(2341), - [anon_sym_null] = ACTIONS(2343), - [aux_sym_cmd_identifier_token3] = ACTIONS(2345), - [aux_sym_cmd_identifier_token4] = ACTIONS(2345), - [aux_sym_cmd_identifier_token5] = ACTIONS(2345), + [sym_val_interpolated] = STATE(1316), + [sym__inter_single_quotes] = STATE(1277), + [sym__inter_double_quotes] = STATE(1311), + [sym_val_list] = STATE(1316), + [sym_val_record] = STATE(1316), + [sym_val_table] = STATE(1316), + [sym_val_closure] = STATE(1316), + [sym_unquoted] = STATE(1138), + [sym__unquoted_with_expr] = STATE(1344), + [sym__unquoted_anonymous_prefix] = STATE(4844), + [sym_comment] = STATE(776), + [anon_sym_true] = ACTIONS(2385), + [anon_sym_false] = ACTIONS(2385), + [anon_sym_null] = ACTIONS(2387), + [aux_sym_cmd_identifier_token3] = ACTIONS(2389), + [aux_sym_cmd_identifier_token4] = ACTIONS(2389), + [aux_sym_cmd_identifier_token5] = ACTIONS(2389), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1008), + [anon_sym_DOLLAR] = ACTIONS(1010), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2347), + [anon_sym_DOT_DOT] = ACTIONS(2391), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2349), - [anon_sym_DOT_DOT_LT] = ACTIONS(2349), - [aux_sym__val_number_decimal_token1] = ACTIONS(2351), - [aux_sym__val_number_decimal_token2] = ACTIONS(2353), - [aux_sym__val_number_decimal_token3] = ACTIONS(2355), - [aux_sym__val_number_decimal_token4] = ACTIONS(2355), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2393), + [anon_sym_DOT_DOT_LT] = ACTIONS(2393), + [aux_sym__val_number_decimal_token1] = ACTIONS(2395), + [aux_sym__val_number_decimal_token2] = ACTIONS(2397), + [aux_sym__val_number_decimal_token3] = ACTIONS(2399), + [aux_sym__val_number_decimal_token4] = ACTIONS(2399), [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(2357), + [sym_val_date] = ACTIONS(2401), [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(2226), + [aux_sym_unquoted_token1] = ACTIONS(2403), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(827)] = { - [sym_expr_unary] = STATE(1323), - [sym__expr_unary_minus] = STATE(1290), - [sym_expr_binary] = STATE(1323), - [sym__expr_binary_expression] = STATE(1706), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1323), - [sym__val_range] = STATE(4744), - [sym__value] = STATE(1323), - [sym_val_nothing] = STATE(1295), - [sym_val_bool] = STATE(1511), - [sym_val_variable] = STATE(933), - [sym_val_cellpath] = STATE(1295), - [sym_val_number] = STATE(1295), - [sym__val_number_decimal] = STATE(1419), + [STATE(777)] = { + [sym_expr_unary] = STATE(1320), + [sym__expr_unary_minus] = STATE(1296), + [sym_expr_binary] = STATE(1320), + [sym__expr_binary_expression] = STATE(1716), + [sym_expr_parenthesized] = STATE(935), + [sym_val_range] = STATE(1320), + [sym__val_range] = STATE(4844), + [sym__value] = STATE(1320), + [sym_val_nothing] = STATE(1316), + [sym_val_bool] = STATE(1514), + [sym_val_variable] = STATE(912), + [sym_val_cellpath] = STATE(1316), + [sym_val_number] = STATE(1316), + [sym__val_number_decimal] = STATE(1433), [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1295), - [sym_val_filesize] = STATE(1295), - [sym_val_binary] = STATE(1295), - [sym_val_string] = STATE(1295), + [sym_val_duration] = STATE(1316), + [sym_val_filesize] = STATE(1316), + [sym_val_binary] = STATE(1316), + [sym_val_string] = STATE(1316), [sym__raw_str] = STATE(502), [sym__str_double_quotes] = STATE(502), [sym__str_single_quotes] = STATE(502), [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1295), - [sym__inter_single_quotes] = STATE(1306), - [sym__inter_double_quotes] = STATE(1317), - [sym_val_list] = STATE(1295), - [sym_val_record] = STATE(1295), - [sym_val_table] = STATE(1295), - [sym_val_closure] = STATE(1295), - [sym_unquoted] = STATE(1019), - [sym__unquoted_with_expr] = STATE(1297), - [sym__unquoted_anonymous_prefix] = STATE(4744), - [sym_comment] = STATE(827), - [anon_sym_true] = ACTIONS(2341), - [anon_sym_false] = ACTIONS(2341), - [anon_sym_null] = ACTIONS(2343), - [aux_sym_cmd_identifier_token3] = ACTIONS(2345), - [aux_sym_cmd_identifier_token4] = ACTIONS(2345), - [aux_sym_cmd_identifier_token5] = ACTIONS(2345), + [sym_val_interpolated] = STATE(1316), + [sym__inter_single_quotes] = STATE(1277), + [sym__inter_double_quotes] = STATE(1311), + [sym_val_list] = STATE(1316), + [sym_val_record] = STATE(1316), + [sym_val_table] = STATE(1316), + [sym_val_closure] = STATE(1316), + [sym_unquoted] = STATE(981), + [sym__unquoted_with_expr] = STATE(1346), + [sym__unquoted_anonymous_prefix] = STATE(4844), + [sym_comment] = STATE(777), + [anon_sym_true] = ACTIONS(2385), + [anon_sym_false] = ACTIONS(2385), + [anon_sym_null] = ACTIONS(2387), + [aux_sym_cmd_identifier_token3] = ACTIONS(2389), + [aux_sym_cmd_identifier_token4] = ACTIONS(2389), + [aux_sym_cmd_identifier_token5] = ACTIONS(2389), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1008), + [anon_sym_DOLLAR] = ACTIONS(1010), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2347), + [anon_sym_DOT_DOT] = ACTIONS(2391), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2349), - [anon_sym_DOT_DOT_LT] = ACTIONS(2349), - [aux_sym__val_number_decimal_token1] = ACTIONS(2351), - [aux_sym__val_number_decimal_token2] = ACTIONS(2353), - [aux_sym__val_number_decimal_token3] = ACTIONS(2355), - [aux_sym__val_number_decimal_token4] = ACTIONS(2355), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2393), + [anon_sym_DOT_DOT_LT] = ACTIONS(2393), + [aux_sym__val_number_decimal_token1] = ACTIONS(2395), + [aux_sym__val_number_decimal_token2] = ACTIONS(2397), + [aux_sym__val_number_decimal_token3] = ACTIONS(2399), + [aux_sym__val_number_decimal_token4] = ACTIONS(2399), [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(2357), + [sym_val_date] = ACTIONS(2401), [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(2226), + [aux_sym_unquoted_token1] = ACTIONS(2403), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(828)] = { - [aux_sym__repeat_newline] = STATE(1070), - [sym__expr_parenthesized_immediate] = STATE(4802), - [sym_comment] = STATE(828), - [anon_sym_in] = ACTIONS(2337), - [sym__newline] = ACTIONS(2337), - [anon_sym_SEMI] = ACTIONS(2337), - [anon_sym_PIPE] = ACTIONS(2337), - [anon_sym_err_GT_PIPE] = ACTIONS(2337), - [anon_sym_out_GT_PIPE] = ACTIONS(2337), - [anon_sym_e_GT_PIPE] = ACTIONS(2337), - [anon_sym_o_GT_PIPE] = ACTIONS(2337), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2337), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2337), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2337), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2337), - [anon_sym_RPAREN] = ACTIONS(2337), - [anon_sym_GT2] = ACTIONS(2339), - [anon_sym_DASH2] = ACTIONS(2337), - [anon_sym_LBRACE] = ACTIONS(2337), - [anon_sym_STAR2] = ACTIONS(2339), - [anon_sym_and2] = ACTIONS(2337), - [anon_sym_xor2] = ACTIONS(2337), - [anon_sym_or2] = ACTIONS(2337), - [anon_sym_not_DASHin2] = ACTIONS(2337), - [anon_sym_has2] = ACTIONS(2337), - [anon_sym_not_DASHhas2] = ACTIONS(2337), - [anon_sym_starts_DASHwith2] = ACTIONS(2337), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2337), - [anon_sym_ends_DASHwith2] = ACTIONS(2337), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2337), - [anon_sym_EQ_EQ2] = ACTIONS(2337), - [anon_sym_BANG_EQ2] = ACTIONS(2337), - [anon_sym_LT2] = ACTIONS(2339), - [anon_sym_LT_EQ2] = ACTIONS(2337), - [anon_sym_GT_EQ2] = ACTIONS(2337), - [anon_sym_EQ_TILDE2] = ACTIONS(2337), - [anon_sym_BANG_TILDE2] = ACTIONS(2337), - [anon_sym_like2] = ACTIONS(2337), - [anon_sym_not_DASHlike2] = ACTIONS(2337), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_STAR_STAR2] = ACTIONS(2337), - [anon_sym_PLUS_PLUS2] = ACTIONS(2337), - [anon_sym_SLASH2] = ACTIONS(2339), - [anon_sym_mod2] = ACTIONS(2337), - [anon_sym_SLASH_SLASH2] = ACTIONS(2337), - [anon_sym_PLUS2] = ACTIONS(2339), - [anon_sym_bit_DASHshl2] = ACTIONS(2337), - [anon_sym_bit_DASHshr2] = ACTIONS(2337), - [anon_sym_bit_DASHand2] = ACTIONS(2337), - [anon_sym_bit_DASHxor2] = ACTIONS(2337), - [anon_sym_bit_DASHor2] = ACTIONS(2337), - [anon_sym_err_GT] = ACTIONS(2339), - [anon_sym_out_GT] = ACTIONS(2339), - [anon_sym_e_GT] = ACTIONS(2339), - [anon_sym_o_GT] = ACTIONS(2339), - [anon_sym_err_PLUSout_GT] = ACTIONS(2339), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2339), - [anon_sym_o_PLUSe_GT] = ACTIONS(2339), - [anon_sym_e_PLUSo_GT] = ACTIONS(2339), - [anon_sym_err_GT_GT] = ACTIONS(2337), - [anon_sym_out_GT_GT] = ACTIONS(2337), - [anon_sym_e_GT_GT] = ACTIONS(2337), - [anon_sym_o_GT_GT] = ACTIONS(2337), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2337), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2337), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2337), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2337), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(829)] = { - [sym_cell_path] = STATE(1338), - [sym_path] = STATE(720), - [sym_comment] = STATE(829), - [aux_sym__where_predicate_lhs_repeat1] = STATE(622), - [ts_builtin_sym_end] = ACTIONS(1900), - [anon_sym_in] = ACTIONS(1900), - [sym__newline] = ACTIONS(1900), - [anon_sym_SEMI] = ACTIONS(1900), - [anon_sym_PIPE] = ACTIONS(1900), - [anon_sym_err_GT_PIPE] = ACTIONS(1900), - [anon_sym_out_GT_PIPE] = ACTIONS(1900), - [anon_sym_e_GT_PIPE] = ACTIONS(1900), - [anon_sym_o_GT_PIPE] = ACTIONS(1900), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1900), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1900), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1900), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1900), - [anon_sym_GT2] = ACTIONS(1902), - [anon_sym_DASH2] = ACTIONS(1900), - [anon_sym_STAR2] = ACTIONS(1902), - [anon_sym_and2] = ACTIONS(1900), - [anon_sym_xor2] = ACTIONS(1900), - [anon_sym_or2] = ACTIONS(1900), - [anon_sym_not_DASHin2] = ACTIONS(1900), - [anon_sym_has2] = ACTIONS(1900), - [anon_sym_not_DASHhas2] = ACTIONS(1900), - [anon_sym_starts_DASHwith2] = ACTIONS(1900), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1900), - [anon_sym_ends_DASHwith2] = ACTIONS(1900), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1900), - [anon_sym_EQ_EQ2] = ACTIONS(1900), - [anon_sym_BANG_EQ2] = ACTIONS(1900), - [anon_sym_LT2] = ACTIONS(1902), - [anon_sym_LT_EQ2] = ACTIONS(1900), - [anon_sym_GT_EQ2] = ACTIONS(1900), - [anon_sym_EQ_TILDE2] = ACTIONS(1900), - [anon_sym_BANG_TILDE2] = ACTIONS(1900), - [anon_sym_like2] = ACTIONS(1900), - [anon_sym_not_DASHlike2] = ACTIONS(1900), - [anon_sym_STAR_STAR2] = ACTIONS(1900), - [anon_sym_PLUS_PLUS2] = ACTIONS(1900), - [anon_sym_SLASH2] = ACTIONS(1902), - [anon_sym_mod2] = ACTIONS(1900), - [anon_sym_SLASH_SLASH2] = ACTIONS(1900), - [anon_sym_PLUS2] = ACTIONS(1902), - [anon_sym_bit_DASHshl2] = ACTIONS(1900), - [anon_sym_bit_DASHshr2] = ACTIONS(1900), - [anon_sym_bit_DASHand2] = ACTIONS(1900), - [anon_sym_bit_DASHxor2] = ACTIONS(1900), - [anon_sym_bit_DASHor2] = ACTIONS(1900), - [anon_sym_DOT2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(1902), - [anon_sym_out_GT] = ACTIONS(1902), - [anon_sym_e_GT] = ACTIONS(1902), - [anon_sym_o_GT] = ACTIONS(1902), - [anon_sym_err_PLUSout_GT] = ACTIONS(1902), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1902), - [anon_sym_o_PLUSe_GT] = ACTIONS(1902), - [anon_sym_e_PLUSo_GT] = ACTIONS(1902), - [anon_sym_err_GT_GT] = ACTIONS(1900), - [anon_sym_out_GT_GT] = ACTIONS(1900), - [anon_sym_e_GT_GT] = ACTIONS(1900), - [anon_sym_o_GT_GT] = ACTIONS(1900), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1900), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1900), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1900), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1900), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(830)] = { - [aux_sym__repeat_newline] = STATE(1073), - [sym__expr_parenthesized_immediate] = STATE(4802), - [sym_comment] = STATE(830), - [anon_sym_in] = ACTIONS(2337), - [sym__newline] = ACTIONS(2337), - [anon_sym_SEMI] = ACTIONS(2337), - [anon_sym_PIPE] = ACTIONS(2337), - [anon_sym_err_GT_PIPE] = ACTIONS(2337), - [anon_sym_out_GT_PIPE] = ACTIONS(2337), - [anon_sym_e_GT_PIPE] = ACTIONS(2337), - [anon_sym_o_GT_PIPE] = ACTIONS(2337), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2337), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2337), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2337), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2337), - [anon_sym_RPAREN] = ACTIONS(2337), - [anon_sym_GT2] = ACTIONS(2339), - [anon_sym_DASH2] = ACTIONS(2337), - [anon_sym_LBRACE] = ACTIONS(2337), - [anon_sym_STAR2] = ACTIONS(2339), - [anon_sym_and2] = ACTIONS(2337), - [anon_sym_xor2] = ACTIONS(2337), - [anon_sym_or2] = ACTIONS(2337), - [anon_sym_not_DASHin2] = ACTIONS(2337), - [anon_sym_has2] = ACTIONS(2337), - [anon_sym_not_DASHhas2] = ACTIONS(2337), - [anon_sym_starts_DASHwith2] = ACTIONS(2337), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2337), - [anon_sym_ends_DASHwith2] = ACTIONS(2337), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2337), - [anon_sym_EQ_EQ2] = ACTIONS(2337), - [anon_sym_BANG_EQ2] = ACTIONS(2337), - [anon_sym_LT2] = ACTIONS(2339), - [anon_sym_LT_EQ2] = ACTIONS(2337), - [anon_sym_GT_EQ2] = ACTIONS(2337), - [anon_sym_EQ_TILDE2] = ACTIONS(2337), - [anon_sym_BANG_TILDE2] = ACTIONS(2337), - [anon_sym_like2] = ACTIONS(2337), - [anon_sym_not_DASHlike2] = ACTIONS(2337), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_STAR_STAR2] = ACTIONS(2337), - [anon_sym_PLUS_PLUS2] = ACTIONS(2337), - [anon_sym_SLASH2] = ACTIONS(2339), - [anon_sym_mod2] = ACTIONS(2337), - [anon_sym_SLASH_SLASH2] = ACTIONS(2337), - [anon_sym_PLUS2] = ACTIONS(2339), - [anon_sym_bit_DASHshl2] = ACTIONS(2337), - [anon_sym_bit_DASHshr2] = ACTIONS(2337), - [anon_sym_bit_DASHand2] = ACTIONS(2337), - [anon_sym_bit_DASHxor2] = ACTIONS(2337), - [anon_sym_bit_DASHor2] = ACTIONS(2337), - [anon_sym_err_GT] = ACTIONS(2339), - [anon_sym_out_GT] = ACTIONS(2339), - [anon_sym_e_GT] = ACTIONS(2339), - [anon_sym_o_GT] = ACTIONS(2339), - [anon_sym_err_PLUSout_GT] = ACTIONS(2339), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2339), - [anon_sym_o_PLUSe_GT] = ACTIONS(2339), - [anon_sym_e_PLUSo_GT] = ACTIONS(2339), - [anon_sym_err_GT_GT] = ACTIONS(2337), - [anon_sym_out_GT_GT] = ACTIONS(2337), - [anon_sym_e_GT_GT] = ACTIONS(2337), - [anon_sym_o_GT_GT] = ACTIONS(2337), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2337), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2337), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2337), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2337), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(831)] = { - [aux_sym__repeat_newline] = STATE(1076), - [sym__expr_parenthesized_immediate] = STATE(4802), - [sym_comment] = STATE(831), - [anon_sym_in] = ACTIONS(2337), - [sym__newline] = ACTIONS(2337), - [anon_sym_SEMI] = ACTIONS(2337), - [anon_sym_PIPE] = ACTIONS(2337), - [anon_sym_err_GT_PIPE] = ACTIONS(2337), - [anon_sym_out_GT_PIPE] = ACTIONS(2337), - [anon_sym_e_GT_PIPE] = ACTIONS(2337), - [anon_sym_o_GT_PIPE] = ACTIONS(2337), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2337), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2337), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2337), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2337), - [anon_sym_RPAREN] = ACTIONS(2337), - [anon_sym_GT2] = ACTIONS(2339), - [anon_sym_DASH2] = ACTIONS(2337), - [anon_sym_LBRACE] = ACTIONS(2337), - [anon_sym_STAR2] = ACTIONS(2339), - [anon_sym_and2] = ACTIONS(2337), - [anon_sym_xor2] = ACTIONS(2337), - [anon_sym_or2] = ACTIONS(2337), - [anon_sym_not_DASHin2] = ACTIONS(2337), - [anon_sym_has2] = ACTIONS(2337), - [anon_sym_not_DASHhas2] = ACTIONS(2337), - [anon_sym_starts_DASHwith2] = ACTIONS(2337), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2337), - [anon_sym_ends_DASHwith2] = ACTIONS(2337), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2337), - [anon_sym_EQ_EQ2] = ACTIONS(2337), - [anon_sym_BANG_EQ2] = ACTIONS(2337), - [anon_sym_LT2] = ACTIONS(2339), - [anon_sym_LT_EQ2] = ACTIONS(2337), - [anon_sym_GT_EQ2] = ACTIONS(2337), - [anon_sym_EQ_TILDE2] = ACTIONS(2337), - [anon_sym_BANG_TILDE2] = ACTIONS(2337), - [anon_sym_like2] = ACTIONS(2337), - [anon_sym_not_DASHlike2] = ACTIONS(2337), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_STAR_STAR2] = ACTIONS(2337), - [anon_sym_PLUS_PLUS2] = ACTIONS(2337), - [anon_sym_SLASH2] = ACTIONS(2339), - [anon_sym_mod2] = ACTIONS(2337), - [anon_sym_SLASH_SLASH2] = ACTIONS(2337), - [anon_sym_PLUS2] = ACTIONS(2339), - [anon_sym_bit_DASHshl2] = ACTIONS(2337), - [anon_sym_bit_DASHshr2] = ACTIONS(2337), - [anon_sym_bit_DASHand2] = ACTIONS(2337), - [anon_sym_bit_DASHxor2] = ACTIONS(2337), - [anon_sym_bit_DASHor2] = ACTIONS(2337), - [anon_sym_err_GT] = ACTIONS(2339), - [anon_sym_out_GT] = ACTIONS(2339), - [anon_sym_e_GT] = ACTIONS(2339), - [anon_sym_o_GT] = ACTIONS(2339), - [anon_sym_err_PLUSout_GT] = ACTIONS(2339), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2339), - [anon_sym_o_PLUSe_GT] = ACTIONS(2339), - [anon_sym_e_PLUSo_GT] = ACTIONS(2339), - [anon_sym_err_GT_GT] = ACTIONS(2337), - [anon_sym_out_GT_GT] = ACTIONS(2337), - [anon_sym_e_GT_GT] = ACTIONS(2337), - [anon_sym_o_GT_GT] = ACTIONS(2337), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2337), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2337), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2337), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2337), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(832)] = { - [aux_sym__repeat_newline] = STATE(1078), - [sym__expr_parenthesized_immediate] = STATE(4802), - [sym_comment] = STATE(832), - [anon_sym_in] = ACTIONS(2337), - [sym__newline] = ACTIONS(2337), - [anon_sym_SEMI] = ACTIONS(2337), - [anon_sym_PIPE] = ACTIONS(2337), - [anon_sym_err_GT_PIPE] = ACTIONS(2337), - [anon_sym_out_GT_PIPE] = ACTIONS(2337), - [anon_sym_e_GT_PIPE] = ACTIONS(2337), - [anon_sym_o_GT_PIPE] = ACTIONS(2337), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2337), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2337), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2337), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2337), - [anon_sym_RPAREN] = ACTIONS(2337), - [anon_sym_GT2] = ACTIONS(2339), - [anon_sym_DASH2] = ACTIONS(2337), - [anon_sym_LBRACE] = ACTIONS(2337), - [anon_sym_STAR2] = ACTIONS(2339), - [anon_sym_and2] = ACTIONS(2337), - [anon_sym_xor2] = ACTIONS(2337), - [anon_sym_or2] = ACTIONS(2337), - [anon_sym_not_DASHin2] = ACTIONS(2337), - [anon_sym_has2] = ACTIONS(2337), - [anon_sym_not_DASHhas2] = ACTIONS(2337), - [anon_sym_starts_DASHwith2] = ACTIONS(2337), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2337), - [anon_sym_ends_DASHwith2] = ACTIONS(2337), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2337), - [anon_sym_EQ_EQ2] = ACTIONS(2337), - [anon_sym_BANG_EQ2] = ACTIONS(2337), - [anon_sym_LT2] = ACTIONS(2339), - [anon_sym_LT_EQ2] = ACTIONS(2337), - [anon_sym_GT_EQ2] = ACTIONS(2337), - [anon_sym_EQ_TILDE2] = ACTIONS(2337), - [anon_sym_BANG_TILDE2] = ACTIONS(2337), - [anon_sym_like2] = ACTIONS(2337), - [anon_sym_not_DASHlike2] = ACTIONS(2337), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_STAR_STAR2] = ACTIONS(2337), - [anon_sym_PLUS_PLUS2] = ACTIONS(2337), - [anon_sym_SLASH2] = ACTIONS(2339), - [anon_sym_mod2] = ACTIONS(2337), - [anon_sym_SLASH_SLASH2] = ACTIONS(2337), - [anon_sym_PLUS2] = ACTIONS(2339), - [anon_sym_bit_DASHshl2] = ACTIONS(2337), - [anon_sym_bit_DASHshr2] = ACTIONS(2337), - [anon_sym_bit_DASHand2] = ACTIONS(2337), - [anon_sym_bit_DASHxor2] = ACTIONS(2337), - [anon_sym_bit_DASHor2] = ACTIONS(2337), - [anon_sym_err_GT] = ACTIONS(2339), - [anon_sym_out_GT] = ACTIONS(2339), - [anon_sym_e_GT] = ACTIONS(2339), - [anon_sym_o_GT] = ACTIONS(2339), - [anon_sym_err_PLUSout_GT] = ACTIONS(2339), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2339), - [anon_sym_o_PLUSe_GT] = ACTIONS(2339), - [anon_sym_e_PLUSo_GT] = ACTIONS(2339), - [anon_sym_err_GT_GT] = ACTIONS(2337), - [anon_sym_out_GT_GT] = ACTIONS(2337), - [anon_sym_e_GT_GT] = ACTIONS(2337), - [anon_sym_o_GT_GT] = ACTIONS(2337), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2337), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2337), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2337), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2337), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(833)] = { - [aux_sym__repeat_newline] = STATE(1082), - [sym__expr_parenthesized_immediate] = STATE(4802), - [sym_comment] = STATE(833), - [anon_sym_in] = ACTIONS(2337), - [sym__newline] = ACTIONS(2337), - [anon_sym_SEMI] = ACTIONS(2337), - [anon_sym_PIPE] = ACTIONS(2337), - [anon_sym_err_GT_PIPE] = ACTIONS(2337), - [anon_sym_out_GT_PIPE] = ACTIONS(2337), - [anon_sym_e_GT_PIPE] = ACTIONS(2337), - [anon_sym_o_GT_PIPE] = ACTIONS(2337), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2337), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2337), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2337), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2337), - [anon_sym_RPAREN] = ACTIONS(2337), - [anon_sym_GT2] = ACTIONS(2339), - [anon_sym_DASH2] = ACTIONS(2337), - [anon_sym_LBRACE] = ACTIONS(2337), - [anon_sym_STAR2] = ACTIONS(2339), - [anon_sym_and2] = ACTIONS(2337), - [anon_sym_xor2] = ACTIONS(2337), - [anon_sym_or2] = ACTIONS(2337), - [anon_sym_not_DASHin2] = ACTIONS(2337), - [anon_sym_has2] = ACTIONS(2337), - [anon_sym_not_DASHhas2] = ACTIONS(2337), - [anon_sym_starts_DASHwith2] = ACTIONS(2337), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2337), - [anon_sym_ends_DASHwith2] = ACTIONS(2337), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2337), - [anon_sym_EQ_EQ2] = ACTIONS(2337), - [anon_sym_BANG_EQ2] = ACTIONS(2337), - [anon_sym_LT2] = ACTIONS(2339), - [anon_sym_LT_EQ2] = ACTIONS(2337), - [anon_sym_GT_EQ2] = ACTIONS(2337), - [anon_sym_EQ_TILDE2] = ACTIONS(2337), - [anon_sym_BANG_TILDE2] = ACTIONS(2337), - [anon_sym_like2] = ACTIONS(2337), - [anon_sym_not_DASHlike2] = ACTIONS(2337), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_STAR_STAR2] = ACTIONS(2337), - [anon_sym_PLUS_PLUS2] = ACTIONS(2337), - [anon_sym_SLASH2] = ACTIONS(2339), - [anon_sym_mod2] = ACTIONS(2337), - [anon_sym_SLASH_SLASH2] = ACTIONS(2337), - [anon_sym_PLUS2] = ACTIONS(2339), - [anon_sym_bit_DASHshl2] = ACTIONS(2337), - [anon_sym_bit_DASHshr2] = ACTIONS(2337), - [anon_sym_bit_DASHand2] = ACTIONS(2337), - [anon_sym_bit_DASHxor2] = ACTIONS(2337), - [anon_sym_bit_DASHor2] = ACTIONS(2337), - [anon_sym_err_GT] = ACTIONS(2339), - [anon_sym_out_GT] = ACTIONS(2339), - [anon_sym_e_GT] = ACTIONS(2339), - [anon_sym_o_GT] = ACTIONS(2339), - [anon_sym_err_PLUSout_GT] = ACTIONS(2339), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2339), - [anon_sym_o_PLUSe_GT] = ACTIONS(2339), - [anon_sym_e_PLUSo_GT] = ACTIONS(2339), - [anon_sym_err_GT_GT] = ACTIONS(2337), - [anon_sym_out_GT_GT] = ACTIONS(2337), - [anon_sym_e_GT_GT] = ACTIONS(2337), - [anon_sym_o_GT_GT] = ACTIONS(2337), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2337), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2337), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2337), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2337), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(834)] = { - [aux_sym__repeat_newline] = STATE(1085), - [sym__expr_parenthesized_immediate] = STATE(4802), - [sym_comment] = STATE(834), - [anon_sym_in] = ACTIONS(2337), - [sym__newline] = ACTIONS(2337), - [anon_sym_SEMI] = ACTIONS(2337), - [anon_sym_PIPE] = ACTIONS(2337), - [anon_sym_err_GT_PIPE] = ACTIONS(2337), - [anon_sym_out_GT_PIPE] = ACTIONS(2337), - [anon_sym_e_GT_PIPE] = ACTIONS(2337), - [anon_sym_o_GT_PIPE] = ACTIONS(2337), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2337), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2337), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2337), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2337), - [anon_sym_RPAREN] = ACTIONS(2337), - [anon_sym_GT2] = ACTIONS(2339), - [anon_sym_DASH2] = ACTIONS(2337), - [anon_sym_LBRACE] = ACTIONS(2337), - [anon_sym_STAR2] = ACTIONS(2339), - [anon_sym_and2] = ACTIONS(2337), - [anon_sym_xor2] = ACTIONS(2337), - [anon_sym_or2] = ACTIONS(2337), - [anon_sym_not_DASHin2] = ACTIONS(2337), - [anon_sym_has2] = ACTIONS(2337), - [anon_sym_not_DASHhas2] = ACTIONS(2337), - [anon_sym_starts_DASHwith2] = ACTIONS(2337), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2337), - [anon_sym_ends_DASHwith2] = ACTIONS(2337), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2337), - [anon_sym_EQ_EQ2] = ACTIONS(2337), - [anon_sym_BANG_EQ2] = ACTIONS(2337), - [anon_sym_LT2] = ACTIONS(2339), - [anon_sym_LT_EQ2] = ACTIONS(2337), - [anon_sym_GT_EQ2] = ACTIONS(2337), - [anon_sym_EQ_TILDE2] = ACTIONS(2337), - [anon_sym_BANG_TILDE2] = ACTIONS(2337), - [anon_sym_like2] = ACTIONS(2337), - [anon_sym_not_DASHlike2] = ACTIONS(2337), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_STAR_STAR2] = ACTIONS(2337), - [anon_sym_PLUS_PLUS2] = ACTIONS(2337), - [anon_sym_SLASH2] = ACTIONS(2339), - [anon_sym_mod2] = ACTIONS(2337), - [anon_sym_SLASH_SLASH2] = ACTIONS(2337), - [anon_sym_PLUS2] = ACTIONS(2339), - [anon_sym_bit_DASHshl2] = ACTIONS(2337), - [anon_sym_bit_DASHshr2] = ACTIONS(2337), - [anon_sym_bit_DASHand2] = ACTIONS(2337), - [anon_sym_bit_DASHxor2] = ACTIONS(2337), - [anon_sym_bit_DASHor2] = ACTIONS(2337), - [anon_sym_err_GT] = ACTIONS(2339), - [anon_sym_out_GT] = ACTIONS(2339), - [anon_sym_e_GT] = ACTIONS(2339), - [anon_sym_o_GT] = ACTIONS(2339), - [anon_sym_err_PLUSout_GT] = ACTIONS(2339), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2339), - [anon_sym_o_PLUSe_GT] = ACTIONS(2339), - [anon_sym_e_PLUSo_GT] = ACTIONS(2339), - [anon_sym_err_GT_GT] = ACTIONS(2337), - [anon_sym_out_GT_GT] = ACTIONS(2337), - [anon_sym_e_GT_GT] = ACTIONS(2337), - [anon_sym_o_GT_GT] = ACTIONS(2337), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2337), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2337), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2337), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2337), + [STATE(778)] = { + [sym_expr_unary] = STATE(940), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(940), + [sym__expr_binary_expression] = STATE(2239), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(940), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(940), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1965), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1761), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(687), + [sym__unquoted_with_expr] = STATE(924), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(778), + [anon_sym_true] = ACTIONS(1996), + [anon_sym_false] = ACTIONS(1996), + [anon_sym_null] = ACTIONS(1998), + [aux_sym_cmd_identifier_token3] = ACTIONS(2000), + [aux_sym_cmd_identifier_token4] = ACTIONS(2000), + [aux_sym_cmd_identifier_token5] = ACTIONS(2000), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2002), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), + [anon_sym_DOT_DOT_LT] = ACTIONS(2004), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2008), + [aux_sym__val_number_decimal_token3] = ACTIONS(2010), + [aux_sym__val_number_decimal_token4] = ACTIONS(2010), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2012), + [anon_sym_DQUOTE] = 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(1943), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(835)] = { - [aux_sym__repeat_newline] = STATE(1087), - [sym__expr_parenthesized_immediate] = STATE(4802), - [sym_comment] = STATE(835), - [anon_sym_in] = ACTIONS(2337), - [sym__newline] = ACTIONS(2337), - [anon_sym_SEMI] = ACTIONS(2337), - [anon_sym_PIPE] = ACTIONS(2337), - [anon_sym_err_GT_PIPE] = ACTIONS(2337), - [anon_sym_out_GT_PIPE] = ACTIONS(2337), - [anon_sym_e_GT_PIPE] = ACTIONS(2337), - [anon_sym_o_GT_PIPE] = ACTIONS(2337), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2337), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2337), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2337), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2337), - [anon_sym_RPAREN] = ACTIONS(2337), - [anon_sym_GT2] = ACTIONS(2339), - [anon_sym_DASH2] = ACTIONS(2337), - [anon_sym_LBRACE] = ACTIONS(2337), - [anon_sym_STAR2] = ACTIONS(2339), - [anon_sym_and2] = ACTIONS(2337), - [anon_sym_xor2] = ACTIONS(2337), - [anon_sym_or2] = ACTIONS(2337), - [anon_sym_not_DASHin2] = ACTIONS(2337), - [anon_sym_has2] = ACTIONS(2337), - [anon_sym_not_DASHhas2] = ACTIONS(2337), - [anon_sym_starts_DASHwith2] = ACTIONS(2337), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2337), - [anon_sym_ends_DASHwith2] = ACTIONS(2337), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2337), - [anon_sym_EQ_EQ2] = ACTIONS(2337), - [anon_sym_BANG_EQ2] = ACTIONS(2337), - [anon_sym_LT2] = ACTIONS(2339), - [anon_sym_LT_EQ2] = ACTIONS(2337), - [anon_sym_GT_EQ2] = ACTIONS(2337), - [anon_sym_EQ_TILDE2] = ACTIONS(2337), - [anon_sym_BANG_TILDE2] = ACTIONS(2337), - [anon_sym_like2] = ACTIONS(2337), - [anon_sym_not_DASHlike2] = ACTIONS(2337), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_STAR_STAR2] = ACTIONS(2337), - [anon_sym_PLUS_PLUS2] = ACTIONS(2337), - [anon_sym_SLASH2] = ACTIONS(2339), - [anon_sym_mod2] = ACTIONS(2337), - [anon_sym_SLASH_SLASH2] = ACTIONS(2337), - [anon_sym_PLUS2] = ACTIONS(2339), - [anon_sym_bit_DASHshl2] = ACTIONS(2337), - [anon_sym_bit_DASHshr2] = ACTIONS(2337), - [anon_sym_bit_DASHand2] = ACTIONS(2337), - [anon_sym_bit_DASHxor2] = ACTIONS(2337), - [anon_sym_bit_DASHor2] = ACTIONS(2337), - [anon_sym_err_GT] = ACTIONS(2339), - [anon_sym_out_GT] = ACTIONS(2339), - [anon_sym_e_GT] = ACTIONS(2339), - [anon_sym_o_GT] = ACTIONS(2339), - [anon_sym_err_PLUSout_GT] = ACTIONS(2339), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2339), - [anon_sym_o_PLUSe_GT] = ACTIONS(2339), - [anon_sym_e_PLUSo_GT] = ACTIONS(2339), - [anon_sym_err_GT_GT] = ACTIONS(2337), - [anon_sym_out_GT_GT] = ACTIONS(2337), - [anon_sym_e_GT_GT] = ACTIONS(2337), - [anon_sym_o_GT_GT] = ACTIONS(2337), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2337), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2337), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2337), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2337), + [STATE(779)] = { + [sym_expr_unary] = STATE(940), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(940), + [sym__expr_binary_expression] = STATE(2210), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(940), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(940), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1965), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1761), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(688), + [sym__unquoted_with_expr] = STATE(943), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(779), + [anon_sym_true] = ACTIONS(1996), + [anon_sym_false] = ACTIONS(1996), + [anon_sym_null] = ACTIONS(1998), + [aux_sym_cmd_identifier_token3] = ACTIONS(2000), + [aux_sym_cmd_identifier_token4] = ACTIONS(2000), + [aux_sym_cmd_identifier_token5] = ACTIONS(2000), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2002), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), + [anon_sym_DOT_DOT_LT] = ACTIONS(2004), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2008), + [aux_sym__val_number_decimal_token3] = ACTIONS(2010), + [aux_sym__val_number_decimal_token4] = ACTIONS(2010), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2012), + [anon_sym_DQUOTE] = 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(1943), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(836)] = { - [aux_sym__repeat_newline] = STATE(1089), - [sym__expr_parenthesized_immediate] = STATE(4802), - [sym_comment] = STATE(836), - [anon_sym_in] = ACTIONS(2337), - [sym__newline] = ACTIONS(2337), - [anon_sym_SEMI] = ACTIONS(2337), - [anon_sym_PIPE] = ACTIONS(2337), - [anon_sym_err_GT_PIPE] = ACTIONS(2337), - [anon_sym_out_GT_PIPE] = ACTIONS(2337), - [anon_sym_e_GT_PIPE] = ACTIONS(2337), - [anon_sym_o_GT_PIPE] = ACTIONS(2337), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2337), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2337), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2337), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2337), - [anon_sym_RPAREN] = ACTIONS(2337), - [anon_sym_GT2] = ACTIONS(2339), - [anon_sym_DASH2] = ACTIONS(2337), - [anon_sym_LBRACE] = ACTIONS(2337), - [anon_sym_STAR2] = ACTIONS(2339), - [anon_sym_and2] = ACTIONS(2337), - [anon_sym_xor2] = ACTIONS(2337), - [anon_sym_or2] = ACTIONS(2337), - [anon_sym_not_DASHin2] = ACTIONS(2337), - [anon_sym_has2] = ACTIONS(2337), - [anon_sym_not_DASHhas2] = ACTIONS(2337), - [anon_sym_starts_DASHwith2] = ACTIONS(2337), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2337), - [anon_sym_ends_DASHwith2] = ACTIONS(2337), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2337), - [anon_sym_EQ_EQ2] = ACTIONS(2337), - [anon_sym_BANG_EQ2] = ACTIONS(2337), - [anon_sym_LT2] = ACTIONS(2339), - [anon_sym_LT_EQ2] = ACTIONS(2337), - [anon_sym_GT_EQ2] = ACTIONS(2337), - [anon_sym_EQ_TILDE2] = ACTIONS(2337), - [anon_sym_BANG_TILDE2] = ACTIONS(2337), - [anon_sym_like2] = ACTIONS(2337), - [anon_sym_not_DASHlike2] = ACTIONS(2337), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_STAR_STAR2] = ACTIONS(2337), - [anon_sym_PLUS_PLUS2] = ACTIONS(2337), - [anon_sym_SLASH2] = ACTIONS(2339), - [anon_sym_mod2] = ACTIONS(2337), - [anon_sym_SLASH_SLASH2] = ACTIONS(2337), - [anon_sym_PLUS2] = ACTIONS(2339), - [anon_sym_bit_DASHshl2] = ACTIONS(2337), - [anon_sym_bit_DASHshr2] = ACTIONS(2337), - [anon_sym_bit_DASHand2] = ACTIONS(2337), - [anon_sym_bit_DASHxor2] = ACTIONS(2337), - [anon_sym_bit_DASHor2] = ACTIONS(2337), - [anon_sym_err_GT] = ACTIONS(2339), - [anon_sym_out_GT] = ACTIONS(2339), - [anon_sym_e_GT] = ACTIONS(2339), - [anon_sym_o_GT] = ACTIONS(2339), - [anon_sym_err_PLUSout_GT] = ACTIONS(2339), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2339), - [anon_sym_o_PLUSe_GT] = ACTIONS(2339), - [anon_sym_e_PLUSo_GT] = ACTIONS(2339), - [anon_sym_err_GT_GT] = ACTIONS(2337), - [anon_sym_out_GT_GT] = ACTIONS(2337), - [anon_sym_e_GT_GT] = ACTIONS(2337), - [anon_sym_o_GT_GT] = ACTIONS(2337), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2337), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2337), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2337), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2337), + [STATE(780)] = { + [sym_comment] = STATE(780), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_in] = ACTIONS(2405), + [sym__newline] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2405), + [anon_sym_PIPE] = ACTIONS(2405), + [anon_sym_err_GT_PIPE] = ACTIONS(2405), + [anon_sym_out_GT_PIPE] = ACTIONS(2405), + [anon_sym_e_GT_PIPE] = ACTIONS(2405), + [anon_sym_o_GT_PIPE] = ACTIONS(2405), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2405), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2405), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2405), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2405), + [anon_sym_RPAREN] = ACTIONS(2405), + [anon_sym_GT2] = ACTIONS(2407), + [anon_sym_DASH2] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2405), + [anon_sym_RBRACE] = ACTIONS(2405), + [anon_sym_EQ_GT] = ACTIONS(2405), + [anon_sym_STAR2] = ACTIONS(2407), + [anon_sym_and2] = ACTIONS(2405), + [anon_sym_xor2] = ACTIONS(2405), + [anon_sym_or2] = ACTIONS(2405), + [anon_sym_not_DASHin2] = ACTIONS(2405), + [anon_sym_has2] = ACTIONS(2405), + [anon_sym_not_DASHhas2] = ACTIONS(2405), + [anon_sym_starts_DASHwith2] = ACTIONS(2405), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2405), + [anon_sym_ends_DASHwith2] = ACTIONS(2405), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2405), + [anon_sym_EQ_EQ2] = ACTIONS(2405), + [anon_sym_BANG_EQ2] = ACTIONS(2405), + [anon_sym_LT2] = ACTIONS(2407), + [anon_sym_LT_EQ2] = ACTIONS(2405), + [anon_sym_GT_EQ2] = ACTIONS(2405), + [anon_sym_EQ_TILDE2] = ACTIONS(2405), + [anon_sym_BANG_TILDE2] = ACTIONS(2405), + [anon_sym_like2] = ACTIONS(2405), + [anon_sym_not_DASHlike2] = ACTIONS(2405), + [anon_sym_STAR_STAR2] = ACTIONS(2405), + [anon_sym_PLUS_PLUS2] = ACTIONS(2405), + [anon_sym_SLASH2] = ACTIONS(2407), + [anon_sym_mod2] = ACTIONS(2405), + [anon_sym_SLASH_SLASH2] = ACTIONS(2405), + [anon_sym_PLUS2] = ACTIONS(2407), + [anon_sym_bit_DASHshl2] = ACTIONS(2405), + [anon_sym_bit_DASHshr2] = ACTIONS(2405), + [anon_sym_bit_DASHand2] = ACTIONS(2405), + [anon_sym_bit_DASHxor2] = ACTIONS(2405), + [anon_sym_bit_DASHor2] = ACTIONS(2405), + [anon_sym_err_GT] = ACTIONS(2407), + [anon_sym_out_GT] = ACTIONS(2407), + [anon_sym_e_GT] = ACTIONS(2407), + [anon_sym_o_GT] = ACTIONS(2407), + [anon_sym_err_PLUSout_GT] = ACTIONS(2407), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2407), + [anon_sym_o_PLUSe_GT] = ACTIONS(2407), + [anon_sym_e_PLUSo_GT] = ACTIONS(2407), + [anon_sym_err_GT_GT] = ACTIONS(2405), + [anon_sym_out_GT_GT] = ACTIONS(2405), + [anon_sym_e_GT_GT] = ACTIONS(2405), + [anon_sym_o_GT_GT] = ACTIONS(2405), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2405), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2405), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2405), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2405), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(837)] = { - [aux_sym__repeat_newline] = STATE(1091), - [sym__expr_parenthesized_immediate] = STATE(4802), - [sym_comment] = STATE(837), - [anon_sym_in] = ACTIONS(2337), - [sym__newline] = ACTIONS(2337), - [anon_sym_SEMI] = ACTIONS(2337), - [anon_sym_PIPE] = ACTIONS(2337), - [anon_sym_err_GT_PIPE] = ACTIONS(2337), - [anon_sym_out_GT_PIPE] = ACTIONS(2337), - [anon_sym_e_GT_PIPE] = ACTIONS(2337), - [anon_sym_o_GT_PIPE] = ACTIONS(2337), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2337), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2337), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2337), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2337), - [anon_sym_RPAREN] = ACTIONS(2337), - [anon_sym_GT2] = ACTIONS(2339), - [anon_sym_DASH2] = ACTIONS(2337), - [anon_sym_LBRACE] = ACTIONS(2337), - [anon_sym_STAR2] = ACTIONS(2339), - [anon_sym_and2] = ACTIONS(2337), - [anon_sym_xor2] = ACTIONS(2337), - [anon_sym_or2] = ACTIONS(2337), - [anon_sym_not_DASHin2] = ACTIONS(2337), - [anon_sym_has2] = ACTIONS(2337), - [anon_sym_not_DASHhas2] = ACTIONS(2337), - [anon_sym_starts_DASHwith2] = ACTIONS(2337), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2337), - [anon_sym_ends_DASHwith2] = ACTIONS(2337), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2337), - [anon_sym_EQ_EQ2] = ACTIONS(2337), - [anon_sym_BANG_EQ2] = ACTIONS(2337), - [anon_sym_LT2] = ACTIONS(2339), - [anon_sym_LT_EQ2] = ACTIONS(2337), - [anon_sym_GT_EQ2] = ACTIONS(2337), - [anon_sym_EQ_TILDE2] = ACTIONS(2337), - [anon_sym_BANG_TILDE2] = ACTIONS(2337), - [anon_sym_like2] = ACTIONS(2337), - [anon_sym_not_DASHlike2] = ACTIONS(2337), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_STAR_STAR2] = ACTIONS(2337), - [anon_sym_PLUS_PLUS2] = ACTIONS(2337), - [anon_sym_SLASH2] = ACTIONS(2339), - [anon_sym_mod2] = ACTIONS(2337), - [anon_sym_SLASH_SLASH2] = ACTIONS(2337), - [anon_sym_PLUS2] = ACTIONS(2339), - [anon_sym_bit_DASHshl2] = ACTIONS(2337), - [anon_sym_bit_DASHshr2] = ACTIONS(2337), - [anon_sym_bit_DASHand2] = ACTIONS(2337), - [anon_sym_bit_DASHxor2] = ACTIONS(2337), - [anon_sym_bit_DASHor2] = ACTIONS(2337), - [anon_sym_err_GT] = ACTIONS(2339), - [anon_sym_out_GT] = ACTIONS(2339), - [anon_sym_e_GT] = ACTIONS(2339), - [anon_sym_o_GT] = ACTIONS(2339), - [anon_sym_err_PLUSout_GT] = ACTIONS(2339), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2339), - [anon_sym_o_PLUSe_GT] = ACTIONS(2339), - [anon_sym_e_PLUSo_GT] = ACTIONS(2339), - [anon_sym_err_GT_GT] = ACTIONS(2337), - [anon_sym_out_GT_GT] = ACTIONS(2337), - [anon_sym_e_GT_GT] = ACTIONS(2337), - [anon_sym_o_GT_GT] = ACTIONS(2337), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2337), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2337), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2337), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2337), + [STATE(781)] = { + [sym_expr_unary] = STATE(940), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(940), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(940), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(940), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1965), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1761), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(689), + [sym__unquoted_with_expr] = STATE(921), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(781), + [anon_sym_true] = ACTIONS(1996), + [anon_sym_false] = ACTIONS(1996), + [anon_sym_null] = ACTIONS(1998), + [aux_sym_cmd_identifier_token3] = ACTIONS(2000), + [aux_sym_cmd_identifier_token4] = ACTIONS(2000), + [aux_sym_cmd_identifier_token5] = ACTIONS(2000), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2002), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), + [anon_sym_DOT_DOT_LT] = ACTIONS(2004), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2008), + [aux_sym__val_number_decimal_token3] = ACTIONS(2010), + [aux_sym__val_number_decimal_token4] = ACTIONS(2010), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2012), + [anon_sym_DQUOTE] = 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(1943), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(838)] = { - [sym_cmd_identifier] = STATE(4276), - [sym_expr_parenthesized] = STATE(5339), - [sym__spread_parenthesized] = STATE(4883), - [sym__spread_variable] = STATE(4892), - [sym_val_variable] = STATE(4275), - [sym_val_number] = STATE(5339), - [sym__val_number_decimal] = STATE(1984), - [sym__val_number] = STATE(707), - [sym_val_string] = STATE(5339), - [sym__raw_str] = STATE(2266), - [sym__str_double_quotes] = STATE(2266), - [sym__str_single_quotes] = STATE(2266), - [sym__str_back_ticks] = STATE(2266), - [sym_val_interpolated] = STATE(5339), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym__spread_record] = STATE(4883), - [sym_record_entry] = STATE(4678), - [sym__record_key] = STATE(5341), - [sym_comment] = STATE(838), - [aux_sym__match_pattern_record_body_repeat1] = STATE(839), - [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(1782), - [anon_sym_false] = ACTIONS(1782), - [anon_sym_null] = ACTIONS(1782), - [aux_sym_cmd_identifier_token3] = ACTIONS(1784), - [aux_sym_cmd_identifier_token4] = ACTIONS(1784), - [aux_sym_cmd_identifier_token5] = ACTIONS(1784), - [anon_sym_LPAREN] = ACTIONS(1788), - [anon_sym_DOLLAR] = ACTIONS(1836), - [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(1794), - [aux_sym__val_number_decimal_token2] = ACTIONS(1796), - [aux_sym__val_number_decimal_token3] = ACTIONS(1798), - [aux_sym__val_number_decimal_token4] = ACTIONS(1798), + [STATE(782)] = { + [sym_expr_unary] = STATE(940), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(940), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(940), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(940), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1965), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1761), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(690), + [sym__unquoted_with_expr] = STATE(950), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(782), + [anon_sym_true] = ACTIONS(1996), + [anon_sym_false] = ACTIONS(1996), + [anon_sym_null] = ACTIONS(1998), + [aux_sym_cmd_identifier_token3] = ACTIONS(2000), + [aux_sym_cmd_identifier_token4] = ACTIONS(2000), + [aux_sym_cmd_identifier_token5] = ACTIONS(2000), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2002), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), + [anon_sym_DOT_DOT_LT] = ACTIONS(2004), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2008), + [aux_sym__val_number_decimal_token3] = ACTIONS(2010), + [aux_sym__val_number_decimal_token4] = ACTIONS(2010), [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(1800), - [anon_sym_SQUOTE] = ACTIONS(1802), - [anon_sym_BQUOTE] = ACTIONS(1804), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2012), + [anon_sym_DQUOTE] = 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(1943), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1806), + [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(839)] = { - [sym_cmd_identifier] = STATE(4276), - [sym_expr_parenthesized] = STATE(5339), - [sym__spread_parenthesized] = STATE(4883), - [sym__spread_variable] = STATE(4892), - [sym_val_variable] = STATE(4543), - [sym_val_number] = STATE(5339), - [sym__val_number_decimal] = STATE(1984), - [sym__val_number] = STATE(707), - [sym_val_string] = STATE(5339), - [sym__raw_str] = STATE(2266), - [sym__str_double_quotes] = STATE(2266), - [sym__str_single_quotes] = STATE(2266), - [sym__str_back_ticks] = STATE(2266), - [sym_val_interpolated] = STATE(5339), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym__spread_record] = STATE(4883), - [sym_record_entry] = STATE(4861), - [sym__record_key] = STATE(5341), - [sym_comment] = STATE(839), - [aux_sym__match_pattern_record_body_repeat1] = STATE(839), - [anon_sym_export] = ACTIONS(2359), - [anon_sym_alias] = ACTIONS(2362), - [anon_sym_let] = ACTIONS(2362), - [anon_sym_mut] = ACTIONS(2362), - [anon_sym_const] = ACTIONS(2362), - [aux_sym_cmd_identifier_token1] = ACTIONS(2365), - [anon_sym_def] = ACTIONS(2362), - [anon_sym_use] = ACTIONS(2362), - [anon_sym_export_DASHenv] = ACTIONS(2362), - [anon_sym_extern] = ACTIONS(2362), - [anon_sym_module] = ACTIONS(2362), - [anon_sym_for] = ACTIONS(2362), - [anon_sym_loop] = ACTIONS(2362), - [anon_sym_while] = ACTIONS(2362), - [anon_sym_if] = ACTIONS(2362), - [anon_sym_else] = ACTIONS(2362), - [anon_sym_try] = ACTIONS(2362), - [anon_sym_catch] = ACTIONS(2362), - [anon_sym_match] = ACTIONS(2362), - [anon_sym_in] = ACTIONS(2359), - [anon_sym_true] = ACTIONS(2368), - [anon_sym_false] = ACTIONS(2368), - [anon_sym_null] = ACTIONS(2368), - [aux_sym_cmd_identifier_token3] = ACTIONS(2371), - [aux_sym_cmd_identifier_token4] = ACTIONS(2371), - [aux_sym_cmd_identifier_token5] = ACTIONS(2371), - [anon_sym_LPAREN] = ACTIONS(2374), - [anon_sym_DOLLAR] = ACTIONS(2377), - [anon_sym_DASH2] = ACTIONS(2380), - [anon_sym_PLUS2] = ACTIONS(2380), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2383), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2386), - [aux_sym__val_number_decimal_token1] = ACTIONS(2389), - [aux_sym__val_number_decimal_token2] = ACTIONS(2392), - [aux_sym__val_number_decimal_token3] = ACTIONS(2395), - [aux_sym__val_number_decimal_token4] = ACTIONS(2395), - [aux_sym__val_number_token1] = ACTIONS(2398), - [aux_sym__val_number_token2] = ACTIONS(2398), - [aux_sym__val_number_token3] = ACTIONS(2398), - [anon_sym_DQUOTE] = ACTIONS(2401), - [anon_sym_SQUOTE] = ACTIONS(2404), - [anon_sym_BQUOTE] = ACTIONS(2407), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2410), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2413), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2416), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2419), + [STATE(783)] = { + [sym_comment] = STATE(783), + [anon_sym_if] = ACTIONS(2104), + [anon_sym_in] = ACTIONS(2104), + [sym__newline] = ACTIONS(2104), + [anon_sym_SEMI] = ACTIONS(2104), + [anon_sym_PIPE] = ACTIONS(2104), + [anon_sym_err_GT_PIPE] = ACTIONS(2104), + [anon_sym_out_GT_PIPE] = ACTIONS(2104), + [anon_sym_e_GT_PIPE] = ACTIONS(2104), + [anon_sym_o_GT_PIPE] = ACTIONS(2104), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2104), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2104), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2104), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2104), + [anon_sym_RPAREN] = ACTIONS(2104), + [anon_sym_GT2] = ACTIONS(2106), + [anon_sym_DASH2] = ACTIONS(2104), + [anon_sym_LBRACE] = ACTIONS(2104), + [anon_sym_RBRACE] = ACTIONS(2104), + [anon_sym_EQ_GT] = ACTIONS(2104), + [anon_sym_STAR2] = ACTIONS(2106), + [anon_sym_and2] = ACTIONS(2104), + [anon_sym_xor2] = ACTIONS(2104), + [anon_sym_or2] = ACTIONS(2104), + [anon_sym_not_DASHin2] = ACTIONS(2104), + [anon_sym_has2] = ACTIONS(2104), + [anon_sym_not_DASHhas2] = ACTIONS(2104), + [anon_sym_starts_DASHwith2] = ACTIONS(2104), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2104), + [anon_sym_ends_DASHwith2] = ACTIONS(2104), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2104), + [anon_sym_EQ_EQ2] = ACTIONS(2104), + [anon_sym_BANG_EQ2] = ACTIONS(2104), + [anon_sym_LT2] = ACTIONS(2106), + [anon_sym_LT_EQ2] = ACTIONS(2104), + [anon_sym_GT_EQ2] = ACTIONS(2104), + [anon_sym_EQ_TILDE2] = ACTIONS(2104), + [anon_sym_BANG_TILDE2] = ACTIONS(2104), + [anon_sym_like2] = ACTIONS(2104), + [anon_sym_not_DASHlike2] = ACTIONS(2104), + [anon_sym_STAR_STAR2] = ACTIONS(2104), + [anon_sym_PLUS_PLUS2] = ACTIONS(2104), + [anon_sym_SLASH2] = ACTIONS(2106), + [anon_sym_mod2] = ACTIONS(2104), + [anon_sym_SLASH_SLASH2] = ACTIONS(2104), + [anon_sym_PLUS2] = ACTIONS(2106), + [anon_sym_bit_DASHshl2] = ACTIONS(2104), + [anon_sym_bit_DASHshr2] = ACTIONS(2104), + [anon_sym_bit_DASHand2] = ACTIONS(2104), + [anon_sym_bit_DASHxor2] = ACTIONS(2104), + [anon_sym_bit_DASHor2] = ACTIONS(2104), + [anon_sym_err_GT] = ACTIONS(2106), + [anon_sym_out_GT] = ACTIONS(2106), + [anon_sym_e_GT] = ACTIONS(2106), + [anon_sym_o_GT] = ACTIONS(2106), + [anon_sym_err_PLUSout_GT] = ACTIONS(2106), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2106), + [anon_sym_o_PLUSe_GT] = ACTIONS(2106), + [anon_sym_e_PLUSo_GT] = ACTIONS(2106), + [anon_sym_err_GT_GT] = ACTIONS(2104), + [anon_sym_out_GT_GT] = ACTIONS(2104), + [anon_sym_e_GT_GT] = ACTIONS(2104), + [anon_sym_o_GT_GT] = ACTIONS(2104), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2104), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2104), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2104), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2104), + [anon_sym_POUND] = ACTIONS(3), }, - [STATE(840)] = { - [sym_expr_unary] = STATE(936), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(936), - [sym__expr_binary_expression] = STATE(2179), - [sym_expr_parenthesized] = STATE(1988), - [sym_val_range] = STATE(936), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(936), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(2140), - [sym_val_variable] = STATE(1950), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1774), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(706), - [sym__unquoted_with_expr] = STATE(951), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [sym_comment] = STATE(840), - [anon_sym_true] = ACTIONS(2422), - [anon_sym_false] = ACTIONS(2422), - [anon_sym_null] = ACTIONS(2424), - [aux_sym_cmd_identifier_token3] = ACTIONS(2426), - [aux_sym_cmd_identifier_token4] = ACTIONS(2426), - [aux_sym_cmd_identifier_token5] = ACTIONS(2426), + [STATE(784)] = { + [sym_comment] = STATE(784), + [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_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(785)] = { + [sym_expr_unary] = STATE(940), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(940), + [sym__expr_binary_expression] = STATE(955), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(940), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(940), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1965), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1761), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(691), + [sym__unquoted_with_expr] = STATE(961), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(785), + [anon_sym_true] = ACTIONS(1996), + [anon_sym_false] = ACTIONS(1996), + [anon_sym_null] = ACTIONS(1998), + [aux_sym_cmd_identifier_token3] = ACTIONS(2000), + [aux_sym_cmd_identifier_token4] = ACTIONS(2000), + [aux_sym_cmd_identifier_token5] = ACTIONS(2000), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2428), - [aux_sym_expr_unary_token1] = ACTIONS(2430), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2432), - [anon_sym_DOT_DOT_LT] = ACTIONS(2432), - [aux_sym__val_number_decimal_token1] = ACTIONS(2434), - [aux_sym__val_number_decimal_token2] = ACTIONS(2436), - [aux_sym__val_number_decimal_token3] = ACTIONS(2438), - [aux_sym__val_number_decimal_token4] = ACTIONS(2438), + [anon_sym_DOT_DOT] = ACTIONS(2002), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), + [anon_sym_DOT_DOT_LT] = ACTIONS(2004), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2008), + [aux_sym__val_number_decimal_token3] = ACTIONS(2010), + [aux_sym__val_number_decimal_token4] = ACTIONS(2010), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2440), + [sym_val_date] = ACTIONS(2012), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(841)] = { - [sym_expr_unary] = STATE(936), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(936), - [sym__expr_binary_expression] = STATE(2180), - [sym_expr_parenthesized] = STATE(1988), - [sym_val_range] = STATE(936), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(936), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(2140), - [sym_val_variable] = STATE(1950), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1774), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(709), - [sym__unquoted_with_expr] = STATE(967), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [sym_comment] = STATE(841), - [anon_sym_true] = ACTIONS(2422), - [anon_sym_false] = ACTIONS(2422), - [anon_sym_null] = ACTIONS(2424), - [aux_sym_cmd_identifier_token3] = ACTIONS(2426), - [aux_sym_cmd_identifier_token4] = ACTIONS(2426), - [aux_sym_cmd_identifier_token5] = ACTIONS(2426), + [STATE(786)] = { + [sym_expr_unary] = STATE(940), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(940), + [sym__expr_binary_expression] = STATE(2225), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(940), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(940), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1965), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1761), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(693), + [sym__unquoted_with_expr] = STATE(948), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(786), + [anon_sym_true] = ACTIONS(1996), + [anon_sym_false] = ACTIONS(1996), + [anon_sym_null] = ACTIONS(1998), + [aux_sym_cmd_identifier_token3] = ACTIONS(2000), + [aux_sym_cmd_identifier_token4] = ACTIONS(2000), + [aux_sym_cmd_identifier_token5] = ACTIONS(2000), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2428), - [aux_sym_expr_unary_token1] = ACTIONS(2430), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2432), - [anon_sym_DOT_DOT_LT] = ACTIONS(2432), - [aux_sym__val_number_decimal_token1] = ACTIONS(2434), - [aux_sym__val_number_decimal_token2] = ACTIONS(2436), - [aux_sym__val_number_decimal_token3] = ACTIONS(2438), - [aux_sym__val_number_decimal_token4] = ACTIONS(2438), + [anon_sym_DOT_DOT] = ACTIONS(2002), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), + [anon_sym_DOT_DOT_LT] = ACTIONS(2004), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2008), + [aux_sym__val_number_decimal_token3] = ACTIONS(2010), + [aux_sym__val_number_decimal_token4] = ACTIONS(2010), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2440), + [sym_val_date] = ACTIONS(2012), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(842)] = { - [sym_expr_unary] = STATE(936), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(936), - [sym__expr_binary_expression] = STATE(2181), - [sym_expr_parenthesized] = STATE(1988), - [sym_val_range] = STATE(936), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(936), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(2140), - [sym_val_variable] = STATE(1950), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1774), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(710), - [sym__unquoted_with_expr] = STATE(968), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [sym_comment] = STATE(842), - [anon_sym_true] = ACTIONS(2422), - [anon_sym_false] = ACTIONS(2422), - [anon_sym_null] = ACTIONS(2424), - [aux_sym_cmd_identifier_token3] = ACTIONS(2426), - [aux_sym_cmd_identifier_token4] = ACTIONS(2426), - [aux_sym_cmd_identifier_token5] = ACTIONS(2426), + [STATE(787)] = { + [aux_sym__repeat_newline] = STATE(1102), + [sym__expr_parenthesized_immediate] = STATE(5073), + [sym_comment] = STATE(787), + [anon_sym_in] = ACTIONS(2381), + [sym__newline] = ACTIONS(2381), + [anon_sym_SEMI] = ACTIONS(2381), + [anon_sym_PIPE] = ACTIONS(2381), + [anon_sym_err_GT_PIPE] = ACTIONS(2381), + [anon_sym_out_GT_PIPE] = ACTIONS(2381), + [anon_sym_e_GT_PIPE] = ACTIONS(2381), + [anon_sym_o_GT_PIPE] = ACTIONS(2381), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2381), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2381), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2381), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2381), + [anon_sym_RPAREN] = ACTIONS(2381), + [anon_sym_GT2] = ACTIONS(2383), + [anon_sym_DASH2] = ACTIONS(2381), + [anon_sym_LBRACE] = ACTIONS(2381), + [anon_sym_STAR2] = ACTIONS(2383), + [anon_sym_and2] = ACTIONS(2381), + [anon_sym_xor2] = ACTIONS(2381), + [anon_sym_or2] = ACTIONS(2381), + [anon_sym_not_DASHin2] = ACTIONS(2381), + [anon_sym_has2] = ACTIONS(2381), + [anon_sym_not_DASHhas2] = ACTIONS(2381), + [anon_sym_starts_DASHwith2] = ACTIONS(2381), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2381), + [anon_sym_ends_DASHwith2] = ACTIONS(2381), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2381), + [anon_sym_EQ_EQ2] = ACTIONS(2381), + [anon_sym_BANG_EQ2] = ACTIONS(2381), + [anon_sym_LT2] = ACTIONS(2383), + [anon_sym_LT_EQ2] = ACTIONS(2381), + [anon_sym_GT_EQ2] = ACTIONS(2381), + [anon_sym_EQ_TILDE2] = ACTIONS(2381), + [anon_sym_BANG_TILDE2] = ACTIONS(2381), + [anon_sym_like2] = ACTIONS(2381), + [anon_sym_not_DASHlike2] = ACTIONS(2381), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_STAR_STAR2] = ACTIONS(2381), + [anon_sym_PLUS_PLUS2] = ACTIONS(2381), + [anon_sym_SLASH2] = ACTIONS(2383), + [anon_sym_mod2] = ACTIONS(2381), + [anon_sym_SLASH_SLASH2] = ACTIONS(2381), + [anon_sym_PLUS2] = ACTIONS(2383), + [anon_sym_bit_DASHshl2] = ACTIONS(2381), + [anon_sym_bit_DASHshr2] = ACTIONS(2381), + [anon_sym_bit_DASHand2] = ACTIONS(2381), + [anon_sym_bit_DASHxor2] = ACTIONS(2381), + [anon_sym_bit_DASHor2] = ACTIONS(2381), + [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(2381), + [anon_sym_out_GT_GT] = ACTIONS(2381), + [anon_sym_e_GT_GT] = ACTIONS(2381), + [anon_sym_o_GT_GT] = ACTIONS(2381), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2381), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2381), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2381), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2381), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(788)] = { + [sym_comment] = STATE(788), + [anon_sym_if] = 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), + [anon_sym_RPAREN] = ACTIONS(2120), + [anon_sym_GT2] = ACTIONS(2122), + [anon_sym_DASH2] = ACTIONS(2120), + [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(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_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_SLASH2] = ACTIONS(2122), + [anon_sym_mod2] = ACTIONS(2120), + [anon_sym_SLASH_SLASH2] = ACTIONS(2120), + [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_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(789)] = { + [aux_sym__repeat_newline] = STATE(1105), + [sym__expr_parenthesized_immediate] = STATE(5073), + [sym_comment] = STATE(789), + [anon_sym_in] = ACTIONS(2381), + [sym__newline] = ACTIONS(2381), + [anon_sym_SEMI] = ACTIONS(2381), + [anon_sym_PIPE] = ACTIONS(2381), + [anon_sym_err_GT_PIPE] = ACTIONS(2381), + [anon_sym_out_GT_PIPE] = ACTIONS(2381), + [anon_sym_e_GT_PIPE] = ACTIONS(2381), + [anon_sym_o_GT_PIPE] = ACTIONS(2381), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2381), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2381), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2381), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2381), + [anon_sym_RPAREN] = ACTIONS(2381), + [anon_sym_GT2] = ACTIONS(2383), + [anon_sym_DASH2] = ACTIONS(2381), + [anon_sym_LBRACE] = ACTIONS(2381), + [anon_sym_STAR2] = ACTIONS(2383), + [anon_sym_and2] = ACTIONS(2381), + [anon_sym_xor2] = ACTIONS(2381), + [anon_sym_or2] = ACTIONS(2381), + [anon_sym_not_DASHin2] = ACTIONS(2381), + [anon_sym_has2] = ACTIONS(2381), + [anon_sym_not_DASHhas2] = ACTIONS(2381), + [anon_sym_starts_DASHwith2] = ACTIONS(2381), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2381), + [anon_sym_ends_DASHwith2] = ACTIONS(2381), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2381), + [anon_sym_EQ_EQ2] = ACTIONS(2381), + [anon_sym_BANG_EQ2] = ACTIONS(2381), + [anon_sym_LT2] = ACTIONS(2383), + [anon_sym_LT_EQ2] = ACTIONS(2381), + [anon_sym_GT_EQ2] = ACTIONS(2381), + [anon_sym_EQ_TILDE2] = ACTIONS(2381), + [anon_sym_BANG_TILDE2] = ACTIONS(2381), + [anon_sym_like2] = ACTIONS(2381), + [anon_sym_not_DASHlike2] = ACTIONS(2381), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_STAR_STAR2] = ACTIONS(2381), + [anon_sym_PLUS_PLUS2] = ACTIONS(2381), + [anon_sym_SLASH2] = ACTIONS(2383), + [anon_sym_mod2] = ACTIONS(2381), + [anon_sym_SLASH_SLASH2] = ACTIONS(2381), + [anon_sym_PLUS2] = ACTIONS(2383), + [anon_sym_bit_DASHshl2] = ACTIONS(2381), + [anon_sym_bit_DASHshr2] = ACTIONS(2381), + [anon_sym_bit_DASHand2] = ACTIONS(2381), + [anon_sym_bit_DASHxor2] = ACTIONS(2381), + [anon_sym_bit_DASHor2] = ACTIONS(2381), + [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(2381), + [anon_sym_out_GT_GT] = ACTIONS(2381), + [anon_sym_e_GT_GT] = ACTIONS(2381), + [anon_sym_o_GT_GT] = ACTIONS(2381), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2381), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2381), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2381), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2381), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(790)] = { + [sym_comment] = STATE(790), + [anon_sym_if] = ACTIONS(2409), + [anon_sym_in] = ACTIONS(2409), + [sym__newline] = ACTIONS(2409), + [anon_sym_SEMI] = ACTIONS(2409), + [anon_sym_PIPE] = ACTIONS(2409), + [anon_sym_err_GT_PIPE] = ACTIONS(2409), + [anon_sym_out_GT_PIPE] = ACTIONS(2409), + [anon_sym_e_GT_PIPE] = ACTIONS(2409), + [anon_sym_o_GT_PIPE] = ACTIONS(2409), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2409), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2409), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2409), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2409), + [anon_sym_RPAREN] = ACTIONS(2409), + [anon_sym_GT2] = ACTIONS(2411), + [anon_sym_DASH2] = ACTIONS(2409), + [anon_sym_LBRACE] = ACTIONS(2409), + [anon_sym_RBRACE] = ACTIONS(2409), + [anon_sym_EQ_GT] = ACTIONS(2409), + [anon_sym_STAR2] = ACTIONS(2411), + [anon_sym_and2] = ACTIONS(2409), + [anon_sym_xor2] = ACTIONS(2409), + [anon_sym_or2] = ACTIONS(2409), + [anon_sym_not_DASHin2] = ACTIONS(2409), + [anon_sym_has2] = ACTIONS(2409), + [anon_sym_not_DASHhas2] = ACTIONS(2409), + [anon_sym_starts_DASHwith2] = ACTIONS(2409), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2409), + [anon_sym_ends_DASHwith2] = ACTIONS(2409), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2409), + [anon_sym_EQ_EQ2] = ACTIONS(2409), + [anon_sym_BANG_EQ2] = ACTIONS(2409), + [anon_sym_LT2] = ACTIONS(2411), + [anon_sym_LT_EQ2] = ACTIONS(2409), + [anon_sym_GT_EQ2] = ACTIONS(2409), + [anon_sym_EQ_TILDE2] = ACTIONS(2409), + [anon_sym_BANG_TILDE2] = ACTIONS(2409), + [anon_sym_like2] = ACTIONS(2409), + [anon_sym_not_DASHlike2] = ACTIONS(2409), + [anon_sym_STAR_STAR2] = ACTIONS(2409), + [anon_sym_PLUS_PLUS2] = ACTIONS(2409), + [anon_sym_SLASH2] = ACTIONS(2411), + [anon_sym_mod2] = ACTIONS(2409), + [anon_sym_SLASH_SLASH2] = ACTIONS(2409), + [anon_sym_PLUS2] = ACTIONS(2411), + [anon_sym_bit_DASHshl2] = ACTIONS(2409), + [anon_sym_bit_DASHshr2] = ACTIONS(2409), + [anon_sym_bit_DASHand2] = ACTIONS(2409), + [anon_sym_bit_DASHxor2] = ACTIONS(2409), + [anon_sym_bit_DASHor2] = ACTIONS(2409), + [anon_sym_err_GT] = ACTIONS(2411), + [anon_sym_out_GT] = ACTIONS(2411), + [anon_sym_e_GT] = ACTIONS(2411), + [anon_sym_o_GT] = ACTIONS(2411), + [anon_sym_err_PLUSout_GT] = ACTIONS(2411), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2411), + [anon_sym_o_PLUSe_GT] = ACTIONS(2411), + [anon_sym_e_PLUSo_GT] = ACTIONS(2411), + [anon_sym_err_GT_GT] = ACTIONS(2409), + [anon_sym_out_GT_GT] = ACTIONS(2409), + [anon_sym_e_GT_GT] = ACTIONS(2409), + [anon_sym_o_GT_GT] = ACTIONS(2409), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2409), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2409), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2409), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2409), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(791)] = { + [sym_comment] = STATE(791), + [anon_sym_finally] = ACTIONS(2413), + [anon_sym_in] = ACTIONS(2413), + [sym__newline] = ACTIONS(2413), + [anon_sym_SEMI] = ACTIONS(2413), + [anon_sym_PIPE] = ACTIONS(2413), + [anon_sym_err_GT_PIPE] = ACTIONS(2413), + [anon_sym_out_GT_PIPE] = ACTIONS(2413), + [anon_sym_e_GT_PIPE] = ACTIONS(2413), + [anon_sym_o_GT_PIPE] = ACTIONS(2413), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2413), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2413), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2413), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2413), + [anon_sym_RPAREN] = ACTIONS(2413), + [anon_sym_GT2] = ACTIONS(2415), + [anon_sym_DASH2] = ACTIONS(2413), + [anon_sym_LBRACE] = ACTIONS(2413), + [anon_sym_RBRACE] = ACTIONS(2413), + [anon_sym_EQ_GT] = ACTIONS(2413), + [anon_sym_STAR2] = ACTIONS(2415), + [anon_sym_and2] = ACTIONS(2413), + [anon_sym_xor2] = ACTIONS(2413), + [anon_sym_or2] = ACTIONS(2413), + [anon_sym_not_DASHin2] = ACTIONS(2413), + [anon_sym_has2] = ACTIONS(2413), + [anon_sym_not_DASHhas2] = ACTIONS(2413), + [anon_sym_starts_DASHwith2] = ACTIONS(2413), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2413), + [anon_sym_ends_DASHwith2] = ACTIONS(2413), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2413), + [anon_sym_EQ_EQ2] = ACTIONS(2413), + [anon_sym_BANG_EQ2] = ACTIONS(2413), + [anon_sym_LT2] = ACTIONS(2415), + [anon_sym_LT_EQ2] = ACTIONS(2413), + [anon_sym_GT_EQ2] = ACTIONS(2413), + [anon_sym_EQ_TILDE2] = ACTIONS(2413), + [anon_sym_BANG_TILDE2] = ACTIONS(2413), + [anon_sym_like2] = ACTIONS(2413), + [anon_sym_not_DASHlike2] = ACTIONS(2413), + [anon_sym_STAR_STAR2] = ACTIONS(2413), + [anon_sym_PLUS_PLUS2] = ACTIONS(2413), + [anon_sym_SLASH2] = ACTIONS(2415), + [anon_sym_mod2] = ACTIONS(2413), + [anon_sym_SLASH_SLASH2] = ACTIONS(2413), + [anon_sym_PLUS2] = ACTIONS(2415), + [anon_sym_bit_DASHshl2] = ACTIONS(2413), + [anon_sym_bit_DASHshr2] = ACTIONS(2413), + [anon_sym_bit_DASHand2] = ACTIONS(2413), + [anon_sym_bit_DASHxor2] = ACTIONS(2413), + [anon_sym_bit_DASHor2] = ACTIONS(2413), + [anon_sym_err_GT] = ACTIONS(2415), + [anon_sym_out_GT] = ACTIONS(2415), + [anon_sym_e_GT] = ACTIONS(2415), + [anon_sym_o_GT] = ACTIONS(2415), + [anon_sym_err_PLUSout_GT] = ACTIONS(2415), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2415), + [anon_sym_o_PLUSe_GT] = ACTIONS(2415), + [anon_sym_e_PLUSo_GT] = ACTIONS(2415), + [anon_sym_err_GT_GT] = ACTIONS(2413), + [anon_sym_out_GT_GT] = ACTIONS(2413), + [anon_sym_e_GT_GT] = ACTIONS(2413), + [anon_sym_o_GT_GT] = ACTIONS(2413), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2413), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2413), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2413), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2413), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(792)] = { + [sym_comment] = STATE(792), + [anon_sym_finally] = 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(793)] = { + [sym_comment] = STATE(793), + [anon_sym_finally] = ACTIONS(2421), + [anon_sym_in] = ACTIONS(2421), + [sym__newline] = ACTIONS(2421), + [anon_sym_SEMI] = ACTIONS(2421), + [anon_sym_PIPE] = ACTIONS(2421), + [anon_sym_err_GT_PIPE] = ACTIONS(2421), + [anon_sym_out_GT_PIPE] = ACTIONS(2421), + [anon_sym_e_GT_PIPE] = ACTIONS(2421), + [anon_sym_o_GT_PIPE] = ACTIONS(2421), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2421), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2421), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2421), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2421), + [anon_sym_RPAREN] = ACTIONS(2421), + [anon_sym_GT2] = ACTIONS(2423), + [anon_sym_DASH2] = ACTIONS(2421), + [anon_sym_LBRACE] = ACTIONS(2421), + [anon_sym_RBRACE] = ACTIONS(2421), + [anon_sym_EQ_GT] = ACTIONS(2421), + [anon_sym_STAR2] = ACTIONS(2423), + [anon_sym_and2] = ACTIONS(2421), + [anon_sym_xor2] = ACTIONS(2421), + [anon_sym_or2] = ACTIONS(2421), + [anon_sym_not_DASHin2] = ACTIONS(2421), + [anon_sym_has2] = ACTIONS(2421), + [anon_sym_not_DASHhas2] = ACTIONS(2421), + [anon_sym_starts_DASHwith2] = ACTIONS(2421), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2421), + [anon_sym_ends_DASHwith2] = ACTIONS(2421), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2421), + [anon_sym_EQ_EQ2] = ACTIONS(2421), + [anon_sym_BANG_EQ2] = ACTIONS(2421), + [anon_sym_LT2] = ACTIONS(2423), + [anon_sym_LT_EQ2] = ACTIONS(2421), + [anon_sym_GT_EQ2] = ACTIONS(2421), + [anon_sym_EQ_TILDE2] = ACTIONS(2421), + [anon_sym_BANG_TILDE2] = ACTIONS(2421), + [anon_sym_like2] = ACTIONS(2421), + [anon_sym_not_DASHlike2] = ACTIONS(2421), + [anon_sym_STAR_STAR2] = ACTIONS(2421), + [anon_sym_PLUS_PLUS2] = ACTIONS(2421), + [anon_sym_SLASH2] = ACTIONS(2423), + [anon_sym_mod2] = ACTIONS(2421), + [anon_sym_SLASH_SLASH2] = ACTIONS(2421), + [anon_sym_PLUS2] = ACTIONS(2423), + [anon_sym_bit_DASHshl2] = ACTIONS(2421), + [anon_sym_bit_DASHshr2] = ACTIONS(2421), + [anon_sym_bit_DASHand2] = ACTIONS(2421), + [anon_sym_bit_DASHxor2] = ACTIONS(2421), + [anon_sym_bit_DASHor2] = ACTIONS(2421), + [anon_sym_err_GT] = ACTIONS(2423), + [anon_sym_out_GT] = ACTIONS(2423), + [anon_sym_e_GT] = ACTIONS(2423), + [anon_sym_o_GT] = ACTIONS(2423), + [anon_sym_err_PLUSout_GT] = ACTIONS(2423), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2423), + [anon_sym_o_PLUSe_GT] = ACTIONS(2423), + [anon_sym_e_PLUSo_GT] = ACTIONS(2423), + [anon_sym_err_GT_GT] = ACTIONS(2421), + [anon_sym_out_GT_GT] = ACTIONS(2421), + [anon_sym_e_GT_GT] = ACTIONS(2421), + [anon_sym_o_GT_GT] = ACTIONS(2421), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2421), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2421), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2421), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2421), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(794)] = { + [sym_comment] = STATE(794), + [anon_sym_if] = ACTIONS(2425), + [anon_sym_in] = ACTIONS(2425), + [sym__newline] = ACTIONS(2425), + [anon_sym_SEMI] = ACTIONS(2425), + [anon_sym_PIPE] = ACTIONS(2425), + [anon_sym_err_GT_PIPE] = ACTIONS(2425), + [anon_sym_out_GT_PIPE] = ACTIONS(2425), + [anon_sym_e_GT_PIPE] = ACTIONS(2425), + [anon_sym_o_GT_PIPE] = ACTIONS(2425), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2425), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2425), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2425), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2425), + [anon_sym_RPAREN] = ACTIONS(2425), + [anon_sym_GT2] = ACTIONS(2427), + [anon_sym_DASH2] = ACTIONS(2425), + [anon_sym_LBRACE] = ACTIONS(2425), + [anon_sym_RBRACE] = ACTIONS(2425), + [anon_sym_EQ_GT] = ACTIONS(2425), + [anon_sym_STAR2] = ACTIONS(2427), + [anon_sym_and2] = ACTIONS(2425), + [anon_sym_xor2] = ACTIONS(2425), + [anon_sym_or2] = ACTIONS(2425), + [anon_sym_not_DASHin2] = ACTIONS(2425), + [anon_sym_has2] = ACTIONS(2425), + [anon_sym_not_DASHhas2] = ACTIONS(2425), + [anon_sym_starts_DASHwith2] = ACTIONS(2425), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2425), + [anon_sym_ends_DASHwith2] = ACTIONS(2425), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2425), + [anon_sym_EQ_EQ2] = ACTIONS(2425), + [anon_sym_BANG_EQ2] = ACTIONS(2425), + [anon_sym_LT2] = ACTIONS(2427), + [anon_sym_LT_EQ2] = ACTIONS(2425), + [anon_sym_GT_EQ2] = ACTIONS(2425), + [anon_sym_EQ_TILDE2] = ACTIONS(2425), + [anon_sym_BANG_TILDE2] = ACTIONS(2425), + [anon_sym_like2] = ACTIONS(2425), + [anon_sym_not_DASHlike2] = ACTIONS(2425), + [anon_sym_STAR_STAR2] = ACTIONS(2425), + [anon_sym_PLUS_PLUS2] = ACTIONS(2425), + [anon_sym_SLASH2] = ACTIONS(2427), + [anon_sym_mod2] = ACTIONS(2425), + [anon_sym_SLASH_SLASH2] = ACTIONS(2425), + [anon_sym_PLUS2] = ACTIONS(2427), + [anon_sym_bit_DASHshl2] = ACTIONS(2425), + [anon_sym_bit_DASHshr2] = ACTIONS(2425), + [anon_sym_bit_DASHand2] = ACTIONS(2425), + [anon_sym_bit_DASHxor2] = ACTIONS(2425), + [anon_sym_bit_DASHor2] = ACTIONS(2425), + [anon_sym_err_GT] = ACTIONS(2427), + [anon_sym_out_GT] = ACTIONS(2427), + [anon_sym_e_GT] = ACTIONS(2427), + [anon_sym_o_GT] = ACTIONS(2427), + [anon_sym_err_PLUSout_GT] = ACTIONS(2427), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2427), + [anon_sym_o_PLUSe_GT] = ACTIONS(2427), + [anon_sym_e_PLUSo_GT] = ACTIONS(2427), + [anon_sym_err_GT_GT] = ACTIONS(2425), + [anon_sym_out_GT_GT] = ACTIONS(2425), + [anon_sym_e_GT_GT] = ACTIONS(2425), + [anon_sym_o_GT_GT] = ACTIONS(2425), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2425), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2425), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2425), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2425), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(795)] = { + [sym_comment] = STATE(795), + [anon_sym_if] = ACTIONS(2429), + [anon_sym_in] = ACTIONS(2429), + [sym__newline] = ACTIONS(2429), + [anon_sym_SEMI] = ACTIONS(2429), + [anon_sym_PIPE] = ACTIONS(2429), + [anon_sym_err_GT_PIPE] = ACTIONS(2429), + [anon_sym_out_GT_PIPE] = ACTIONS(2429), + [anon_sym_e_GT_PIPE] = ACTIONS(2429), + [anon_sym_o_GT_PIPE] = ACTIONS(2429), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2429), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2429), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2429), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2429), + [anon_sym_RPAREN] = ACTIONS(2429), + [anon_sym_GT2] = ACTIONS(2431), + [anon_sym_DASH2] = ACTIONS(2429), + [anon_sym_LBRACE] = ACTIONS(2429), + [anon_sym_RBRACE] = ACTIONS(2429), + [anon_sym_EQ_GT] = ACTIONS(2429), + [anon_sym_STAR2] = ACTIONS(2431), + [anon_sym_and2] = ACTIONS(2429), + [anon_sym_xor2] = ACTIONS(2429), + [anon_sym_or2] = ACTIONS(2429), + [anon_sym_not_DASHin2] = ACTIONS(2429), + [anon_sym_has2] = ACTIONS(2429), + [anon_sym_not_DASHhas2] = ACTIONS(2429), + [anon_sym_starts_DASHwith2] = ACTIONS(2429), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2429), + [anon_sym_ends_DASHwith2] = ACTIONS(2429), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2429), + [anon_sym_EQ_EQ2] = ACTIONS(2429), + [anon_sym_BANG_EQ2] = ACTIONS(2429), + [anon_sym_LT2] = ACTIONS(2431), + [anon_sym_LT_EQ2] = ACTIONS(2429), + [anon_sym_GT_EQ2] = ACTIONS(2429), + [anon_sym_EQ_TILDE2] = ACTIONS(2429), + [anon_sym_BANG_TILDE2] = ACTIONS(2429), + [anon_sym_like2] = ACTIONS(2429), + [anon_sym_not_DASHlike2] = ACTIONS(2429), + [anon_sym_STAR_STAR2] = ACTIONS(2429), + [anon_sym_PLUS_PLUS2] = ACTIONS(2429), + [anon_sym_SLASH2] = ACTIONS(2431), + [anon_sym_mod2] = ACTIONS(2429), + [anon_sym_SLASH_SLASH2] = ACTIONS(2429), + [anon_sym_PLUS2] = ACTIONS(2431), + [anon_sym_bit_DASHshl2] = ACTIONS(2429), + [anon_sym_bit_DASHshr2] = ACTIONS(2429), + [anon_sym_bit_DASHand2] = ACTIONS(2429), + [anon_sym_bit_DASHxor2] = ACTIONS(2429), + [anon_sym_bit_DASHor2] = ACTIONS(2429), + [anon_sym_err_GT] = ACTIONS(2431), + [anon_sym_out_GT] = ACTIONS(2431), + [anon_sym_e_GT] = ACTIONS(2431), + [anon_sym_o_GT] = ACTIONS(2431), + [anon_sym_err_PLUSout_GT] = ACTIONS(2431), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2431), + [anon_sym_o_PLUSe_GT] = ACTIONS(2431), + [anon_sym_e_PLUSo_GT] = ACTIONS(2431), + [anon_sym_err_GT_GT] = ACTIONS(2429), + [anon_sym_out_GT_GT] = ACTIONS(2429), + [anon_sym_e_GT_GT] = ACTIONS(2429), + [anon_sym_o_GT_GT] = ACTIONS(2429), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2429), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2429), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2429), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2429), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(796)] = { + [sym_comment] = STATE(796), + [anon_sym_if] = ACTIONS(2433), + [anon_sym_in] = ACTIONS(2433), + [sym__newline] = ACTIONS(2433), + [anon_sym_SEMI] = ACTIONS(2433), + [anon_sym_PIPE] = ACTIONS(2433), + [anon_sym_err_GT_PIPE] = ACTIONS(2433), + [anon_sym_out_GT_PIPE] = ACTIONS(2433), + [anon_sym_e_GT_PIPE] = ACTIONS(2433), + [anon_sym_o_GT_PIPE] = ACTIONS(2433), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2433), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2433), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2433), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2433), + [anon_sym_RPAREN] = ACTIONS(2433), + [anon_sym_GT2] = ACTIONS(2435), + [anon_sym_DASH2] = ACTIONS(2433), + [anon_sym_LBRACE] = ACTIONS(2433), + [anon_sym_RBRACE] = ACTIONS(2433), + [anon_sym_EQ_GT] = ACTIONS(2433), + [anon_sym_STAR2] = ACTIONS(2435), + [anon_sym_and2] = ACTIONS(2433), + [anon_sym_xor2] = ACTIONS(2433), + [anon_sym_or2] = ACTIONS(2433), + [anon_sym_not_DASHin2] = ACTIONS(2433), + [anon_sym_has2] = ACTIONS(2433), + [anon_sym_not_DASHhas2] = ACTIONS(2433), + [anon_sym_starts_DASHwith2] = ACTIONS(2433), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2433), + [anon_sym_ends_DASHwith2] = ACTIONS(2433), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2433), + [anon_sym_EQ_EQ2] = ACTIONS(2433), + [anon_sym_BANG_EQ2] = ACTIONS(2433), + [anon_sym_LT2] = ACTIONS(2435), + [anon_sym_LT_EQ2] = ACTIONS(2433), + [anon_sym_GT_EQ2] = ACTIONS(2433), + [anon_sym_EQ_TILDE2] = ACTIONS(2433), + [anon_sym_BANG_TILDE2] = ACTIONS(2433), + [anon_sym_like2] = ACTIONS(2433), + [anon_sym_not_DASHlike2] = ACTIONS(2433), + [anon_sym_STAR_STAR2] = ACTIONS(2433), + [anon_sym_PLUS_PLUS2] = ACTIONS(2433), + [anon_sym_SLASH2] = ACTIONS(2435), + [anon_sym_mod2] = ACTIONS(2433), + [anon_sym_SLASH_SLASH2] = ACTIONS(2433), + [anon_sym_PLUS2] = ACTIONS(2435), + [anon_sym_bit_DASHshl2] = ACTIONS(2433), + [anon_sym_bit_DASHshr2] = ACTIONS(2433), + [anon_sym_bit_DASHand2] = ACTIONS(2433), + [anon_sym_bit_DASHxor2] = ACTIONS(2433), + [anon_sym_bit_DASHor2] = ACTIONS(2433), + [anon_sym_err_GT] = ACTIONS(2435), + [anon_sym_out_GT] = ACTIONS(2435), + [anon_sym_e_GT] = ACTIONS(2435), + [anon_sym_o_GT] = ACTIONS(2435), + [anon_sym_err_PLUSout_GT] = ACTIONS(2435), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2435), + [anon_sym_o_PLUSe_GT] = ACTIONS(2435), + [anon_sym_e_PLUSo_GT] = ACTIONS(2435), + [anon_sym_err_GT_GT] = ACTIONS(2433), + [anon_sym_out_GT_GT] = ACTIONS(2433), + [anon_sym_e_GT_GT] = ACTIONS(2433), + [anon_sym_o_GT_GT] = ACTIONS(2433), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2433), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2433), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2433), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2433), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(797)] = { + [sym_expr_unary] = STATE(940), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(940), + [sym__expr_binary_expression] = STATE(2227), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(940), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(940), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1965), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1761), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(694), + [sym__unquoted_with_expr] = STATE(942), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(797), + [anon_sym_true] = ACTIONS(1996), + [anon_sym_false] = ACTIONS(1996), + [anon_sym_null] = ACTIONS(1998), + [aux_sym_cmd_identifier_token3] = ACTIONS(2000), + [aux_sym_cmd_identifier_token4] = ACTIONS(2000), + [aux_sym_cmd_identifier_token5] = ACTIONS(2000), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2428), - [aux_sym_expr_unary_token1] = ACTIONS(2430), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2432), - [anon_sym_DOT_DOT_LT] = ACTIONS(2432), - [aux_sym__val_number_decimal_token1] = ACTIONS(2434), - [aux_sym__val_number_decimal_token2] = ACTIONS(2436), - [aux_sym__val_number_decimal_token3] = ACTIONS(2438), - [aux_sym__val_number_decimal_token4] = ACTIONS(2438), + [anon_sym_DOT_DOT] = ACTIONS(2002), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), + [anon_sym_DOT_DOT_LT] = ACTIONS(2004), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2008), + [aux_sym__val_number_decimal_token3] = ACTIONS(2010), + [aux_sym__val_number_decimal_token4] = ACTIONS(2010), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2440), + [sym_val_date] = ACTIONS(2012), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(843)] = { - [sym_expr_unary] = STATE(936), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(936), - [sym__expr_binary_expression] = STATE(2182), - [sym_expr_parenthesized] = STATE(1988), - [sym_val_range] = STATE(936), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(936), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(2140), - [sym_val_variable] = STATE(1950), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1774), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(711), - [sym__unquoted_with_expr] = STATE(907), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [sym_comment] = STATE(843), - [anon_sym_true] = ACTIONS(2422), - [anon_sym_false] = ACTIONS(2422), - [anon_sym_null] = ACTIONS(2424), - [aux_sym_cmd_identifier_token3] = ACTIONS(2426), - [aux_sym_cmd_identifier_token4] = ACTIONS(2426), - [aux_sym_cmd_identifier_token5] = ACTIONS(2426), + [STATE(798)] = { + [sym_comment] = STATE(798), + [anon_sym_if] = ACTIONS(2437), + [anon_sym_in] = ACTIONS(2437), + [sym__newline] = ACTIONS(2437), + [anon_sym_SEMI] = ACTIONS(2437), + [anon_sym_PIPE] = ACTIONS(2437), + [anon_sym_err_GT_PIPE] = ACTIONS(2437), + [anon_sym_out_GT_PIPE] = ACTIONS(2437), + [anon_sym_e_GT_PIPE] = ACTIONS(2437), + [anon_sym_o_GT_PIPE] = ACTIONS(2437), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2437), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2437), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2437), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2437), + [anon_sym_RPAREN] = ACTIONS(2437), + [anon_sym_GT2] = ACTIONS(2439), + [anon_sym_DASH2] = ACTIONS(2437), + [anon_sym_LBRACE] = ACTIONS(2437), + [anon_sym_RBRACE] = ACTIONS(2437), + [anon_sym_EQ_GT] = ACTIONS(2437), + [anon_sym_STAR2] = ACTIONS(2439), + [anon_sym_and2] = ACTIONS(2437), + [anon_sym_xor2] = ACTIONS(2437), + [anon_sym_or2] = ACTIONS(2437), + [anon_sym_not_DASHin2] = ACTIONS(2437), + [anon_sym_has2] = ACTIONS(2437), + [anon_sym_not_DASHhas2] = ACTIONS(2437), + [anon_sym_starts_DASHwith2] = ACTIONS(2437), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2437), + [anon_sym_ends_DASHwith2] = ACTIONS(2437), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2437), + [anon_sym_EQ_EQ2] = ACTIONS(2437), + [anon_sym_BANG_EQ2] = ACTIONS(2437), + [anon_sym_LT2] = ACTIONS(2439), + [anon_sym_LT_EQ2] = ACTIONS(2437), + [anon_sym_GT_EQ2] = ACTIONS(2437), + [anon_sym_EQ_TILDE2] = ACTIONS(2437), + [anon_sym_BANG_TILDE2] = ACTIONS(2437), + [anon_sym_like2] = ACTIONS(2437), + [anon_sym_not_DASHlike2] = ACTIONS(2437), + [anon_sym_STAR_STAR2] = ACTIONS(2437), + [anon_sym_PLUS_PLUS2] = ACTIONS(2437), + [anon_sym_SLASH2] = ACTIONS(2439), + [anon_sym_mod2] = ACTIONS(2437), + [anon_sym_SLASH_SLASH2] = ACTIONS(2437), + [anon_sym_PLUS2] = ACTIONS(2439), + [anon_sym_bit_DASHshl2] = ACTIONS(2437), + [anon_sym_bit_DASHshr2] = ACTIONS(2437), + [anon_sym_bit_DASHand2] = ACTIONS(2437), + [anon_sym_bit_DASHxor2] = ACTIONS(2437), + [anon_sym_bit_DASHor2] = ACTIONS(2437), + [anon_sym_err_GT] = ACTIONS(2439), + [anon_sym_out_GT] = ACTIONS(2439), + [anon_sym_e_GT] = ACTIONS(2439), + [anon_sym_o_GT] = ACTIONS(2439), + [anon_sym_err_PLUSout_GT] = ACTIONS(2439), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2439), + [anon_sym_o_PLUSe_GT] = ACTIONS(2439), + [anon_sym_e_PLUSo_GT] = ACTIONS(2439), + [anon_sym_err_GT_GT] = ACTIONS(2437), + [anon_sym_out_GT_GT] = ACTIONS(2437), + [anon_sym_e_GT_GT] = ACTIONS(2437), + [anon_sym_o_GT_GT] = ACTIONS(2437), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2437), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2437), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2437), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2437), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(799)] = { + [sym_comment] = STATE(799), + [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(800)] = { + [sym_comment] = STATE(800), + [anon_sym_finally] = 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), + }, + [STATE(801)] = { + [sym_comment] = STATE(801), + [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), + }, + [STATE(802)] = { + [sym_comment] = STATE(802), + [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), + }, + [STATE(803)] = { + [sym_comment] = STATE(803), + [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(804)] = { + [sym_comment] = STATE(804), + [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(805)] = { + [sym_comment] = STATE(805), + [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(806)] = { + [sym_comment] = STATE(806), + [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(807)] = { + [sym_comment] = STATE(807), + [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(808)] = { + [sym_comment] = STATE(808), + [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_COLON2] = 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), + }, + [STATE(809)] = { + [sym_comment] = STATE(809), + [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_COLON2] = 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), + }, + [STATE(810)] = { + [aux_sym__repeat_newline] = STATE(1109), + [sym__expr_parenthesized_immediate] = STATE(5073), + [sym_comment] = STATE(810), + [anon_sym_in] = ACTIONS(2381), + [sym__newline] = ACTIONS(2381), + [anon_sym_SEMI] = ACTIONS(2381), + [anon_sym_PIPE] = ACTIONS(2381), + [anon_sym_err_GT_PIPE] = ACTIONS(2381), + [anon_sym_out_GT_PIPE] = ACTIONS(2381), + [anon_sym_e_GT_PIPE] = ACTIONS(2381), + [anon_sym_o_GT_PIPE] = ACTIONS(2381), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2381), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2381), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2381), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2381), + [anon_sym_RPAREN] = ACTIONS(2381), + [anon_sym_GT2] = ACTIONS(2383), + [anon_sym_DASH2] = ACTIONS(2381), + [anon_sym_LBRACE] = ACTIONS(2381), + [anon_sym_STAR2] = ACTIONS(2383), + [anon_sym_and2] = ACTIONS(2381), + [anon_sym_xor2] = ACTIONS(2381), + [anon_sym_or2] = ACTIONS(2381), + [anon_sym_not_DASHin2] = ACTIONS(2381), + [anon_sym_has2] = ACTIONS(2381), + [anon_sym_not_DASHhas2] = ACTIONS(2381), + [anon_sym_starts_DASHwith2] = ACTIONS(2381), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2381), + [anon_sym_ends_DASHwith2] = ACTIONS(2381), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2381), + [anon_sym_EQ_EQ2] = ACTIONS(2381), + [anon_sym_BANG_EQ2] = ACTIONS(2381), + [anon_sym_LT2] = ACTIONS(2383), + [anon_sym_LT_EQ2] = ACTIONS(2381), + [anon_sym_GT_EQ2] = ACTIONS(2381), + [anon_sym_EQ_TILDE2] = ACTIONS(2381), + [anon_sym_BANG_TILDE2] = ACTIONS(2381), + [anon_sym_like2] = ACTIONS(2381), + [anon_sym_not_DASHlike2] = ACTIONS(2381), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_STAR_STAR2] = ACTIONS(2381), + [anon_sym_PLUS_PLUS2] = ACTIONS(2381), + [anon_sym_SLASH2] = ACTIONS(2383), + [anon_sym_mod2] = ACTIONS(2381), + [anon_sym_SLASH_SLASH2] = ACTIONS(2381), + [anon_sym_PLUS2] = ACTIONS(2383), + [anon_sym_bit_DASHshl2] = ACTIONS(2381), + [anon_sym_bit_DASHshr2] = ACTIONS(2381), + [anon_sym_bit_DASHand2] = ACTIONS(2381), + [anon_sym_bit_DASHxor2] = ACTIONS(2381), + [anon_sym_bit_DASHor2] = ACTIONS(2381), + [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(2381), + [anon_sym_out_GT_GT] = ACTIONS(2381), + [anon_sym_e_GT_GT] = ACTIONS(2381), + [anon_sym_o_GT_GT] = ACTIONS(2381), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2381), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2381), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2381), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2381), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(811)] = { + [sym_comment] = STATE(811), + [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_COLON2] = 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(812)] = { + [sym_comment] = STATE(812), + [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_COLON2] = 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(813)] = { + [sym_expr_unary] = STATE(940), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(940), + [sym__expr_binary_expression] = STATE(1169), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(940), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(940), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(469), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(683), + [sym__unquoted_with_expr] = STATE(971), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(813), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1947), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2428), - [aux_sym_expr_unary_token1] = ACTIONS(2430), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2432), - [anon_sym_DOT_DOT_LT] = ACTIONS(2432), - [aux_sym__val_number_decimal_token1] = ACTIONS(2434), - [aux_sym__val_number_decimal_token2] = ACTIONS(2436), - [aux_sym__val_number_decimal_token3] = ACTIONS(2438), - [aux_sym__val_number_decimal_token4] = ACTIONS(2438), + [anon_sym_DOT_DOT] = ACTIONS(1951), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), + [anon_sym_DOT_DOT_LT] = ACTIONS(1953), + [aux_sym__val_number_decimal_token1] = ACTIONS(1955), + [aux_sym__val_number_decimal_token2] = ACTIONS(1957), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2440), + [sym_val_date] = ACTIONS(1961), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(844)] = { - [sym_expr_unary] = STATE(936), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(936), - [sym__expr_binary_expression] = STATE(2183), - [sym_expr_parenthesized] = STATE(1988), - [sym_val_range] = STATE(936), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(936), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(2140), - [sym_val_variable] = STATE(1950), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1774), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(692), - [sym__unquoted_with_expr] = STATE(908), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [sym_comment] = STATE(844), - [anon_sym_true] = ACTIONS(2422), - [anon_sym_false] = ACTIONS(2422), - [anon_sym_null] = ACTIONS(2424), - [aux_sym_cmd_identifier_token3] = ACTIONS(2426), - [aux_sym_cmd_identifier_token4] = ACTIONS(2426), - [aux_sym_cmd_identifier_token5] = ACTIONS(2426), + [STATE(814)] = { + [sym_expr_unary] = STATE(940), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(940), + [sym__expr_binary_expression] = STATE(1185), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(940), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(940), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(469), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(684), + [sym__unquoted_with_expr] = STATE(973), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(814), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1947), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2428), - [aux_sym_expr_unary_token1] = ACTIONS(2430), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2432), - [anon_sym_DOT_DOT_LT] = ACTIONS(2432), - [aux_sym__val_number_decimal_token1] = ACTIONS(2434), - [aux_sym__val_number_decimal_token2] = ACTIONS(2436), - [aux_sym__val_number_decimal_token3] = ACTIONS(2438), - [aux_sym__val_number_decimal_token4] = ACTIONS(2438), + [anon_sym_DOT_DOT] = ACTIONS(1951), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), + [anon_sym_DOT_DOT_LT] = ACTIONS(1953), + [aux_sym__val_number_decimal_token1] = ACTIONS(1955), + [aux_sym__val_number_decimal_token2] = ACTIONS(1957), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2440), + [sym_val_date] = ACTIONS(1961), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(845)] = { - [sym_expr_unary] = STATE(936), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(936), - [sym__expr_binary_expression] = STATE(2184), - [sym_expr_parenthesized] = STATE(1988), - [sym_val_range] = STATE(936), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(936), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(2140), - [sym_val_variable] = STATE(1950), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1774), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(697), - [sym__unquoted_with_expr] = STATE(910), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [sym_comment] = STATE(845), - [anon_sym_true] = ACTIONS(2422), - [anon_sym_false] = ACTIONS(2422), - [anon_sym_null] = ACTIONS(2424), - [aux_sym_cmd_identifier_token3] = ACTIONS(2426), - [aux_sym_cmd_identifier_token4] = ACTIONS(2426), - [aux_sym_cmd_identifier_token5] = ACTIONS(2426), + [STATE(815)] = { + [sym_expr_unary] = STATE(940), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(940), + [sym__expr_binary_expression] = STATE(1189), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(940), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(940), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(469), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(685), + [sym__unquoted_with_expr] = STATE(947), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(815), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1947), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2428), - [aux_sym_expr_unary_token1] = ACTIONS(2430), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2432), - [anon_sym_DOT_DOT_LT] = ACTIONS(2432), - [aux_sym__val_number_decimal_token1] = ACTIONS(2434), - [aux_sym__val_number_decimal_token2] = ACTIONS(2436), - [aux_sym__val_number_decimal_token3] = ACTIONS(2438), - [aux_sym__val_number_decimal_token4] = ACTIONS(2438), + [anon_sym_DOT_DOT] = ACTIONS(1951), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), + [anon_sym_DOT_DOT_LT] = ACTIONS(1953), + [aux_sym__val_number_decimal_token1] = ACTIONS(1955), + [aux_sym__val_number_decimal_token2] = ACTIONS(1957), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2440), + [sym_val_date] = ACTIONS(1961), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(846)] = { - [sym_expr_unary] = STATE(936), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(936), - [sym__expr_binary_expression] = STATE(2185), - [sym_expr_parenthesized] = STATE(1988), - [sym_val_range] = STATE(936), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(936), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(2140), - [sym_val_variable] = STATE(1950), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1774), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(705), - [sym__unquoted_with_expr] = STATE(913), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [sym_comment] = STATE(846), - [anon_sym_true] = ACTIONS(2422), - [anon_sym_false] = ACTIONS(2422), - [anon_sym_null] = ACTIONS(2424), - [aux_sym_cmd_identifier_token3] = ACTIONS(2426), - [aux_sym_cmd_identifier_token4] = ACTIONS(2426), - [aux_sym_cmd_identifier_token5] = ACTIONS(2426), + [STATE(816)] = { + [sym_expr_unary] = STATE(940), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(940), + [sym__expr_binary_expression] = STATE(1193), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(940), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(940), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(469), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(686), + [sym__unquoted_with_expr] = STATE(956), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(816), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1947), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2428), - [aux_sym_expr_unary_token1] = ACTIONS(2430), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2432), - [anon_sym_DOT_DOT_LT] = ACTIONS(2432), - [aux_sym__val_number_decimal_token1] = ACTIONS(2434), - [aux_sym__val_number_decimal_token2] = ACTIONS(2436), - [aux_sym__val_number_decimal_token3] = ACTIONS(2438), - [aux_sym__val_number_decimal_token4] = ACTIONS(2438), + [anon_sym_DOT_DOT] = ACTIONS(1951), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), + [anon_sym_DOT_DOT_LT] = ACTIONS(1953), + [aux_sym__val_number_decimal_token1] = ACTIONS(1955), + [aux_sym__val_number_decimal_token2] = ACTIONS(1957), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2440), + [sym_val_date] = ACTIONS(1961), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(847)] = { - [sym_expr_unary] = STATE(936), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(936), - [sym__expr_binary_expression] = STATE(2186), - [sym_expr_parenthesized] = STATE(1988), - [sym_val_range] = STATE(936), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(936), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(2140), - [sym_val_variable] = STATE(1950), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1774), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(708), - [sym__unquoted_with_expr] = STATE(915), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [sym_comment] = STATE(847), - [anon_sym_true] = ACTIONS(2422), - [anon_sym_false] = ACTIONS(2422), - [anon_sym_null] = ACTIONS(2424), - [aux_sym_cmd_identifier_token3] = ACTIONS(2426), - [aux_sym_cmd_identifier_token4] = ACTIONS(2426), - [aux_sym_cmd_identifier_token5] = ACTIONS(2426), + [STATE(817)] = { + [sym_expr_unary] = STATE(940), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(940), + [sym__expr_binary_expression] = STATE(1195), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(940), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(940), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(469), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(687), + [sym__unquoted_with_expr] = STATE(924), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(817), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1947), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2428), - [aux_sym_expr_unary_token1] = ACTIONS(2430), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2432), - [anon_sym_DOT_DOT_LT] = ACTIONS(2432), - [aux_sym__val_number_decimal_token1] = ACTIONS(2434), - [aux_sym__val_number_decimal_token2] = ACTIONS(2436), - [aux_sym__val_number_decimal_token3] = ACTIONS(2438), - [aux_sym__val_number_decimal_token4] = ACTIONS(2438), + [anon_sym_DOT_DOT] = ACTIONS(1951), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), + [anon_sym_DOT_DOT_LT] = ACTIONS(1953), + [aux_sym__val_number_decimal_token1] = ACTIONS(1955), + [aux_sym__val_number_decimal_token2] = ACTIONS(1957), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2440), + [sym_val_date] = ACTIONS(1961), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(848)] = { - [sym_expr_unary] = STATE(936), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(936), - [sym__expr_binary_expression] = STATE(917), - [sym_expr_parenthesized] = STATE(1988), - [sym_val_range] = STATE(936), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(936), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(2140), - [sym_val_variable] = STATE(1950), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1774), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(714), - [sym__unquoted_with_expr] = STATE(919), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [sym_comment] = STATE(848), - [anon_sym_true] = ACTIONS(2422), - [anon_sym_false] = ACTIONS(2422), - [anon_sym_null] = ACTIONS(2424), - [aux_sym_cmd_identifier_token3] = ACTIONS(2426), - [aux_sym_cmd_identifier_token4] = ACTIONS(2426), - [aux_sym_cmd_identifier_token5] = ACTIONS(2426), + [STATE(818)] = { + [sym_expr_unary] = STATE(940), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(940), + [sym__expr_binary_expression] = STATE(1196), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(940), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(940), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(469), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(688), + [sym__unquoted_with_expr] = STATE(943), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(818), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1947), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2428), - [aux_sym_expr_unary_token1] = ACTIONS(2430), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2432), - [anon_sym_DOT_DOT_LT] = ACTIONS(2432), - [aux_sym__val_number_decimal_token1] = ACTIONS(2434), - [aux_sym__val_number_decimal_token2] = ACTIONS(2436), - [aux_sym__val_number_decimal_token3] = ACTIONS(2438), - [aux_sym__val_number_decimal_token4] = ACTIONS(2438), + [anon_sym_DOT_DOT] = ACTIONS(1951), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), + [anon_sym_DOT_DOT_LT] = ACTIONS(1953), + [aux_sym__val_number_decimal_token1] = ACTIONS(1955), + [aux_sym__val_number_decimal_token2] = ACTIONS(1957), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2440), + [sym_val_date] = ACTIONS(1961), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(849)] = { - [sym_expr_unary] = STATE(936), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(936), - [sym__expr_binary_expression] = STATE(2187), - [sym_expr_parenthesized] = STATE(1988), - [sym_val_range] = STATE(936), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(936), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(2140), - [sym_val_variable] = STATE(1950), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1774), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(701), - [sym__unquoted_with_expr] = STATE(922), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [sym_comment] = STATE(849), - [anon_sym_true] = ACTIONS(2422), - [anon_sym_false] = ACTIONS(2422), - [anon_sym_null] = ACTIONS(2424), - [aux_sym_cmd_identifier_token3] = ACTIONS(2426), - [aux_sym_cmd_identifier_token4] = ACTIONS(2426), - [aux_sym_cmd_identifier_token5] = ACTIONS(2426), + [STATE(819)] = { + [sym_expr_unary] = STATE(940), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(940), + [sym__expr_binary_expression] = STATE(1202), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(940), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(940), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(469), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(689), + [sym__unquoted_with_expr] = STATE(921), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(819), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1947), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2428), - [aux_sym_expr_unary_token1] = ACTIONS(2430), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2432), - [anon_sym_DOT_DOT_LT] = ACTIONS(2432), - [aux_sym__val_number_decimal_token1] = ACTIONS(2434), - [aux_sym__val_number_decimal_token2] = ACTIONS(2436), - [aux_sym__val_number_decimal_token3] = ACTIONS(2438), - [aux_sym__val_number_decimal_token4] = ACTIONS(2438), + [anon_sym_DOT_DOT] = ACTIONS(1951), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), + [anon_sym_DOT_DOT_LT] = ACTIONS(1953), + [aux_sym__val_number_decimal_token1] = ACTIONS(1955), + [aux_sym__val_number_decimal_token2] = ACTIONS(1957), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2440), + [sym_val_date] = ACTIONS(1961), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(850)] = { - [sym_expr_unary] = STATE(936), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(936), - [sym__expr_binary_expression] = STATE(2188), - [sym_expr_parenthesized] = STATE(1988), - [sym_val_range] = STATE(936), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(936), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(2140), - [sym_val_variable] = STATE(1950), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1774), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(683), - [sym__unquoted_with_expr] = STATE(925), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [sym_comment] = STATE(850), - [anon_sym_true] = ACTIONS(2422), - [anon_sym_false] = ACTIONS(2422), - [anon_sym_null] = ACTIONS(2424), - [aux_sym_cmd_identifier_token3] = ACTIONS(2426), - [aux_sym_cmd_identifier_token4] = ACTIONS(2426), - [aux_sym_cmd_identifier_token5] = ACTIONS(2426), + [STATE(820)] = { + [sym_expr_unary] = STATE(940), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(940), + [sym__expr_binary_expression] = STATE(1212), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(940), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(940), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(469), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(690), + [sym__unquoted_with_expr] = STATE(950), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(820), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1947), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2428), - [aux_sym_expr_unary_token1] = ACTIONS(2430), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2432), - [anon_sym_DOT_DOT_LT] = ACTIONS(2432), - [aux_sym__val_number_decimal_token1] = ACTIONS(2434), - [aux_sym__val_number_decimal_token2] = ACTIONS(2436), - [aux_sym__val_number_decimal_token3] = ACTIONS(2438), - [aux_sym__val_number_decimal_token4] = ACTIONS(2438), + [anon_sym_DOT_DOT] = ACTIONS(1951), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), + [anon_sym_DOT_DOT_LT] = ACTIONS(1953), + [aux_sym__val_number_decimal_token1] = ACTIONS(1955), + [aux_sym__val_number_decimal_token2] = ACTIONS(1957), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2440), + [sym_val_date] = ACTIONS(1961), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(851)] = { - [sym_expr_unary] = STATE(936), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(936), - [sym__expr_binary_expression] = STATE(2189), - [sym_expr_parenthesized] = STATE(1988), - [sym_val_range] = STATE(936), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(936), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(2140), - [sym_val_variable] = STATE(1950), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1774), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(684), - [sym__unquoted_with_expr] = STATE(926), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [sym_comment] = STATE(851), - [anon_sym_true] = ACTIONS(2422), - [anon_sym_false] = ACTIONS(2422), - [anon_sym_null] = ACTIONS(2424), - [aux_sym_cmd_identifier_token3] = ACTIONS(2426), - [aux_sym_cmd_identifier_token4] = ACTIONS(2426), - [aux_sym_cmd_identifier_token5] = ACTIONS(2426), + [STATE(821)] = { + [sym_expr_unary] = STATE(940), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(940), + [sym__expr_binary_expression] = STATE(955), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(940), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(940), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(469), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(691), + [sym__unquoted_with_expr] = STATE(961), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(821), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1947), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2428), - [aux_sym_expr_unary_token1] = ACTIONS(2430), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2432), - [anon_sym_DOT_DOT_LT] = ACTIONS(2432), - [aux_sym__val_number_decimal_token1] = ACTIONS(2434), - [aux_sym__val_number_decimal_token2] = ACTIONS(2436), - [aux_sym__val_number_decimal_token3] = ACTIONS(2438), - [aux_sym__val_number_decimal_token4] = ACTIONS(2438), + [anon_sym_DOT_DOT] = ACTIONS(1951), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), + [anon_sym_DOT_DOT_LT] = ACTIONS(1953), + [aux_sym__val_number_decimal_token1] = ACTIONS(1955), + [aux_sym__val_number_decimal_token2] = ACTIONS(1957), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2440), + [sym_val_date] = ACTIONS(1961), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(852)] = { - [sym_expr_unary] = STATE(936), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(936), - [sym__expr_binary_expression] = STATE(2190), - [sym_expr_parenthesized] = STATE(1988), - [sym_val_range] = STATE(936), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(936), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(2140), - [sym_val_variable] = STATE(1950), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1774), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(685), - [sym__unquoted_with_expr] = STATE(927), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [sym_comment] = STATE(852), - [anon_sym_true] = ACTIONS(2422), - [anon_sym_false] = ACTIONS(2422), - [anon_sym_null] = ACTIONS(2424), - [aux_sym_cmd_identifier_token3] = ACTIONS(2426), - [aux_sym_cmd_identifier_token4] = ACTIONS(2426), - [aux_sym_cmd_identifier_token5] = ACTIONS(2426), + [STATE(822)] = { + [sym_expr_unary] = STATE(940), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(940), + [sym__expr_binary_expression] = STATE(1222), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(940), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(940), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(469), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(693), + [sym__unquoted_with_expr] = STATE(948), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(822), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1947), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2428), - [aux_sym_expr_unary_token1] = ACTIONS(2430), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2432), - [anon_sym_DOT_DOT_LT] = ACTIONS(2432), - [aux_sym__val_number_decimal_token1] = ACTIONS(2434), - [aux_sym__val_number_decimal_token2] = ACTIONS(2436), - [aux_sym__val_number_decimal_token3] = ACTIONS(2438), - [aux_sym__val_number_decimal_token4] = ACTIONS(2438), + [anon_sym_DOT_DOT] = ACTIONS(1951), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), + [anon_sym_DOT_DOT_LT] = ACTIONS(1953), + [aux_sym__val_number_decimal_token1] = ACTIONS(1955), + [aux_sym__val_number_decimal_token2] = ACTIONS(1957), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2440), + [sym_val_date] = ACTIONS(1961), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(853)] = { - [aux_sym__repeat_newline] = STATE(1094), - [sym__expr_parenthesized_immediate] = STATE(4802), - [sym_comment] = STATE(853), - [anon_sym_in] = ACTIONS(2442), - [sym__newline] = ACTIONS(2442), - [anon_sym_SEMI] = ACTIONS(2442), - [anon_sym_PIPE] = ACTIONS(2442), - [anon_sym_err_GT_PIPE] = ACTIONS(2442), - [anon_sym_out_GT_PIPE] = ACTIONS(2442), - [anon_sym_e_GT_PIPE] = ACTIONS(2442), - [anon_sym_o_GT_PIPE] = ACTIONS(2442), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2442), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2442), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2442), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2442), - [anon_sym_RPAREN] = ACTIONS(2442), - [anon_sym_GT2] = ACTIONS(2444), - [anon_sym_DASH2] = ACTIONS(2442), - [anon_sym_LBRACE] = ACTIONS(2442), - [anon_sym_STAR2] = ACTIONS(2444), - [anon_sym_and2] = ACTIONS(2442), - [anon_sym_xor2] = ACTIONS(2442), - [anon_sym_or2] = ACTIONS(2442), - [anon_sym_not_DASHin2] = ACTIONS(2442), - [anon_sym_has2] = ACTIONS(2442), - [anon_sym_not_DASHhas2] = ACTIONS(2442), - [anon_sym_starts_DASHwith2] = ACTIONS(2442), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2442), - [anon_sym_ends_DASHwith2] = ACTIONS(2442), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2442), - [anon_sym_EQ_EQ2] = ACTIONS(2442), - [anon_sym_BANG_EQ2] = ACTIONS(2442), - [anon_sym_LT2] = ACTIONS(2444), - [anon_sym_LT_EQ2] = ACTIONS(2442), - [anon_sym_GT_EQ2] = ACTIONS(2442), - [anon_sym_EQ_TILDE2] = ACTIONS(2442), - [anon_sym_BANG_TILDE2] = ACTIONS(2442), - [anon_sym_like2] = ACTIONS(2442), - [anon_sym_not_DASHlike2] = ACTIONS(2442), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_STAR_STAR2] = ACTIONS(2442), - [anon_sym_PLUS_PLUS2] = ACTIONS(2442), - [anon_sym_SLASH2] = ACTIONS(2444), - [anon_sym_mod2] = ACTIONS(2442), - [anon_sym_SLASH_SLASH2] = ACTIONS(2442), - [anon_sym_PLUS2] = ACTIONS(2444), - [anon_sym_bit_DASHshl2] = ACTIONS(2442), - [anon_sym_bit_DASHshr2] = ACTIONS(2442), - [anon_sym_bit_DASHand2] = ACTIONS(2442), - [anon_sym_bit_DASHxor2] = ACTIONS(2442), - [anon_sym_bit_DASHor2] = ACTIONS(2442), - [anon_sym_err_GT] = ACTIONS(2444), - [anon_sym_out_GT] = ACTIONS(2444), - [anon_sym_e_GT] = ACTIONS(2444), - [anon_sym_o_GT] = ACTIONS(2444), - [anon_sym_err_PLUSout_GT] = ACTIONS(2444), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2444), - [anon_sym_o_PLUSe_GT] = ACTIONS(2444), - [anon_sym_e_PLUSo_GT] = ACTIONS(2444), - [anon_sym_err_GT_GT] = ACTIONS(2442), - [anon_sym_out_GT_GT] = ACTIONS(2442), - [anon_sym_e_GT_GT] = ACTIONS(2442), - [anon_sym_o_GT_GT] = ACTIONS(2442), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2442), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2442), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2442), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2442), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(854)] = { - [aux_sym__repeat_newline] = STATE(1095), - [sym__expr_parenthesized_immediate] = STATE(4802), - [sym_comment] = STATE(854), - [anon_sym_in] = ACTIONS(2442), - [sym__newline] = ACTIONS(2442), - [anon_sym_SEMI] = ACTIONS(2442), - [anon_sym_PIPE] = ACTIONS(2442), - [anon_sym_err_GT_PIPE] = ACTIONS(2442), - [anon_sym_out_GT_PIPE] = ACTIONS(2442), - [anon_sym_e_GT_PIPE] = ACTIONS(2442), - [anon_sym_o_GT_PIPE] = ACTIONS(2442), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2442), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2442), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2442), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2442), - [anon_sym_RPAREN] = ACTIONS(2442), - [anon_sym_GT2] = ACTIONS(2444), - [anon_sym_DASH2] = ACTIONS(2442), - [anon_sym_LBRACE] = ACTIONS(2442), - [anon_sym_STAR2] = ACTIONS(2444), - [anon_sym_and2] = ACTIONS(2442), - [anon_sym_xor2] = ACTIONS(2442), - [anon_sym_or2] = ACTIONS(2442), - [anon_sym_not_DASHin2] = ACTIONS(2442), - [anon_sym_has2] = ACTIONS(2442), - [anon_sym_not_DASHhas2] = ACTIONS(2442), - [anon_sym_starts_DASHwith2] = ACTIONS(2442), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2442), - [anon_sym_ends_DASHwith2] = ACTIONS(2442), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2442), - [anon_sym_EQ_EQ2] = ACTIONS(2442), - [anon_sym_BANG_EQ2] = ACTIONS(2442), - [anon_sym_LT2] = ACTIONS(2444), - [anon_sym_LT_EQ2] = ACTIONS(2442), - [anon_sym_GT_EQ2] = ACTIONS(2442), - [anon_sym_EQ_TILDE2] = ACTIONS(2442), - [anon_sym_BANG_TILDE2] = ACTIONS(2442), - [anon_sym_like2] = ACTIONS(2442), - [anon_sym_not_DASHlike2] = ACTIONS(2442), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_STAR_STAR2] = ACTIONS(2442), - [anon_sym_PLUS_PLUS2] = ACTIONS(2442), - [anon_sym_SLASH2] = ACTIONS(2444), - [anon_sym_mod2] = ACTIONS(2442), - [anon_sym_SLASH_SLASH2] = ACTIONS(2442), - [anon_sym_PLUS2] = ACTIONS(2444), - [anon_sym_bit_DASHshl2] = ACTIONS(2442), - [anon_sym_bit_DASHshr2] = ACTIONS(2442), - [anon_sym_bit_DASHand2] = ACTIONS(2442), - [anon_sym_bit_DASHxor2] = ACTIONS(2442), - [anon_sym_bit_DASHor2] = ACTIONS(2442), - [anon_sym_err_GT] = ACTIONS(2444), - [anon_sym_out_GT] = ACTIONS(2444), - [anon_sym_e_GT] = ACTIONS(2444), - [anon_sym_o_GT] = ACTIONS(2444), - [anon_sym_err_PLUSout_GT] = ACTIONS(2444), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2444), - [anon_sym_o_PLUSe_GT] = ACTIONS(2444), - [anon_sym_e_PLUSo_GT] = ACTIONS(2444), - [anon_sym_err_GT_GT] = ACTIONS(2442), - [anon_sym_out_GT_GT] = ACTIONS(2442), - [anon_sym_e_GT_GT] = ACTIONS(2442), - [anon_sym_o_GT_GT] = ACTIONS(2442), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2442), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2442), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2442), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2442), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(855)] = { - [aux_sym__repeat_newline] = STATE(1096), - [sym__expr_parenthesized_immediate] = STATE(4802), - [sym_comment] = STATE(855), - [anon_sym_in] = ACTIONS(2442), - [sym__newline] = ACTIONS(2442), - [anon_sym_SEMI] = ACTIONS(2442), - [anon_sym_PIPE] = ACTIONS(2442), - [anon_sym_err_GT_PIPE] = ACTIONS(2442), - [anon_sym_out_GT_PIPE] = ACTIONS(2442), - [anon_sym_e_GT_PIPE] = ACTIONS(2442), - [anon_sym_o_GT_PIPE] = ACTIONS(2442), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2442), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2442), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2442), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2442), - [anon_sym_RPAREN] = ACTIONS(2442), - [anon_sym_GT2] = ACTIONS(2444), - [anon_sym_DASH2] = ACTIONS(2442), - [anon_sym_LBRACE] = ACTIONS(2442), - [anon_sym_STAR2] = ACTIONS(2444), - [anon_sym_and2] = ACTIONS(2442), - [anon_sym_xor2] = ACTIONS(2442), - [anon_sym_or2] = ACTIONS(2442), - [anon_sym_not_DASHin2] = ACTIONS(2442), - [anon_sym_has2] = ACTIONS(2442), - [anon_sym_not_DASHhas2] = ACTIONS(2442), - [anon_sym_starts_DASHwith2] = ACTIONS(2442), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2442), - [anon_sym_ends_DASHwith2] = ACTIONS(2442), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2442), - [anon_sym_EQ_EQ2] = ACTIONS(2442), - [anon_sym_BANG_EQ2] = ACTIONS(2442), - [anon_sym_LT2] = ACTIONS(2444), - [anon_sym_LT_EQ2] = ACTIONS(2442), - [anon_sym_GT_EQ2] = ACTIONS(2442), - [anon_sym_EQ_TILDE2] = ACTIONS(2442), - [anon_sym_BANG_TILDE2] = ACTIONS(2442), - [anon_sym_like2] = ACTIONS(2442), - [anon_sym_not_DASHlike2] = ACTIONS(2442), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_STAR_STAR2] = ACTIONS(2442), - [anon_sym_PLUS_PLUS2] = ACTIONS(2442), - [anon_sym_SLASH2] = ACTIONS(2444), - [anon_sym_mod2] = ACTIONS(2442), - [anon_sym_SLASH_SLASH2] = ACTIONS(2442), - [anon_sym_PLUS2] = ACTIONS(2444), - [anon_sym_bit_DASHshl2] = ACTIONS(2442), - [anon_sym_bit_DASHshr2] = ACTIONS(2442), - [anon_sym_bit_DASHand2] = ACTIONS(2442), - [anon_sym_bit_DASHxor2] = ACTIONS(2442), - [anon_sym_bit_DASHor2] = ACTIONS(2442), - [anon_sym_err_GT] = ACTIONS(2444), - [anon_sym_out_GT] = ACTIONS(2444), - [anon_sym_e_GT] = ACTIONS(2444), - [anon_sym_o_GT] = ACTIONS(2444), - [anon_sym_err_PLUSout_GT] = ACTIONS(2444), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2444), - [anon_sym_o_PLUSe_GT] = ACTIONS(2444), - [anon_sym_e_PLUSo_GT] = ACTIONS(2444), - [anon_sym_err_GT_GT] = ACTIONS(2442), - [anon_sym_out_GT_GT] = ACTIONS(2442), - [anon_sym_e_GT_GT] = ACTIONS(2442), - [anon_sym_o_GT_GT] = ACTIONS(2442), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2442), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2442), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2442), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2442), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(856)] = { - [aux_sym__repeat_newline] = STATE(1097), - [sym__expr_parenthesized_immediate] = STATE(4802), - [sym_comment] = STATE(856), - [anon_sym_in] = ACTIONS(2442), - [sym__newline] = ACTIONS(2442), - [anon_sym_SEMI] = ACTIONS(2442), - [anon_sym_PIPE] = ACTIONS(2442), - [anon_sym_err_GT_PIPE] = ACTIONS(2442), - [anon_sym_out_GT_PIPE] = ACTIONS(2442), - [anon_sym_e_GT_PIPE] = ACTIONS(2442), - [anon_sym_o_GT_PIPE] = ACTIONS(2442), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2442), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2442), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2442), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2442), - [anon_sym_RPAREN] = ACTIONS(2442), - [anon_sym_GT2] = ACTIONS(2444), - [anon_sym_DASH2] = ACTIONS(2442), - [anon_sym_LBRACE] = ACTIONS(2442), - [anon_sym_STAR2] = ACTIONS(2444), - [anon_sym_and2] = ACTIONS(2442), - [anon_sym_xor2] = ACTIONS(2442), - [anon_sym_or2] = ACTIONS(2442), - [anon_sym_not_DASHin2] = ACTIONS(2442), - [anon_sym_has2] = ACTIONS(2442), - [anon_sym_not_DASHhas2] = ACTIONS(2442), - [anon_sym_starts_DASHwith2] = ACTIONS(2442), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2442), - [anon_sym_ends_DASHwith2] = ACTIONS(2442), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2442), - [anon_sym_EQ_EQ2] = ACTIONS(2442), - [anon_sym_BANG_EQ2] = ACTIONS(2442), - [anon_sym_LT2] = ACTIONS(2444), - [anon_sym_LT_EQ2] = ACTIONS(2442), - [anon_sym_GT_EQ2] = ACTIONS(2442), - [anon_sym_EQ_TILDE2] = ACTIONS(2442), - [anon_sym_BANG_TILDE2] = ACTIONS(2442), - [anon_sym_like2] = ACTIONS(2442), - [anon_sym_not_DASHlike2] = ACTIONS(2442), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_STAR_STAR2] = ACTIONS(2442), - [anon_sym_PLUS_PLUS2] = ACTIONS(2442), - [anon_sym_SLASH2] = ACTIONS(2444), - [anon_sym_mod2] = ACTIONS(2442), - [anon_sym_SLASH_SLASH2] = ACTIONS(2442), - [anon_sym_PLUS2] = ACTIONS(2444), - [anon_sym_bit_DASHshl2] = ACTIONS(2442), - [anon_sym_bit_DASHshr2] = ACTIONS(2442), - [anon_sym_bit_DASHand2] = ACTIONS(2442), - [anon_sym_bit_DASHxor2] = ACTIONS(2442), - [anon_sym_bit_DASHor2] = ACTIONS(2442), - [anon_sym_err_GT] = ACTIONS(2444), - [anon_sym_out_GT] = ACTIONS(2444), - [anon_sym_e_GT] = ACTIONS(2444), - [anon_sym_o_GT] = ACTIONS(2444), - [anon_sym_err_PLUSout_GT] = ACTIONS(2444), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2444), - [anon_sym_o_PLUSe_GT] = ACTIONS(2444), - [anon_sym_e_PLUSo_GT] = ACTIONS(2444), - [anon_sym_err_GT_GT] = ACTIONS(2442), - [anon_sym_out_GT_GT] = ACTIONS(2442), - [anon_sym_e_GT_GT] = ACTIONS(2442), - [anon_sym_o_GT_GT] = ACTIONS(2442), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2442), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2442), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2442), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2442), + [STATE(823)] = { + [aux_sym__repeat_newline] = STATE(1111), + [sym__expr_parenthesized_immediate] = STATE(5073), + [sym_comment] = STATE(823), + [anon_sym_in] = ACTIONS(2381), + [sym__newline] = ACTIONS(2381), + [anon_sym_SEMI] = ACTIONS(2381), + [anon_sym_PIPE] = ACTIONS(2381), + [anon_sym_err_GT_PIPE] = ACTIONS(2381), + [anon_sym_out_GT_PIPE] = ACTIONS(2381), + [anon_sym_e_GT_PIPE] = ACTIONS(2381), + [anon_sym_o_GT_PIPE] = ACTIONS(2381), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2381), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2381), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2381), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2381), + [anon_sym_RPAREN] = ACTIONS(2381), + [anon_sym_GT2] = ACTIONS(2383), + [anon_sym_DASH2] = ACTIONS(2381), + [anon_sym_LBRACE] = ACTIONS(2381), + [anon_sym_STAR2] = ACTIONS(2383), + [anon_sym_and2] = ACTIONS(2381), + [anon_sym_xor2] = ACTIONS(2381), + [anon_sym_or2] = ACTIONS(2381), + [anon_sym_not_DASHin2] = ACTIONS(2381), + [anon_sym_has2] = ACTIONS(2381), + [anon_sym_not_DASHhas2] = ACTIONS(2381), + [anon_sym_starts_DASHwith2] = ACTIONS(2381), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2381), + [anon_sym_ends_DASHwith2] = ACTIONS(2381), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2381), + [anon_sym_EQ_EQ2] = ACTIONS(2381), + [anon_sym_BANG_EQ2] = ACTIONS(2381), + [anon_sym_LT2] = ACTIONS(2383), + [anon_sym_LT_EQ2] = ACTIONS(2381), + [anon_sym_GT_EQ2] = ACTIONS(2381), + [anon_sym_EQ_TILDE2] = ACTIONS(2381), + [anon_sym_BANG_TILDE2] = ACTIONS(2381), + [anon_sym_like2] = ACTIONS(2381), + [anon_sym_not_DASHlike2] = ACTIONS(2381), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_STAR_STAR2] = ACTIONS(2381), + [anon_sym_PLUS_PLUS2] = ACTIONS(2381), + [anon_sym_SLASH2] = ACTIONS(2383), + [anon_sym_mod2] = ACTIONS(2381), + [anon_sym_SLASH_SLASH2] = ACTIONS(2381), + [anon_sym_PLUS2] = ACTIONS(2383), + [anon_sym_bit_DASHshl2] = ACTIONS(2381), + [anon_sym_bit_DASHshr2] = ACTIONS(2381), + [anon_sym_bit_DASHand2] = ACTIONS(2381), + [anon_sym_bit_DASHxor2] = ACTIONS(2381), + [anon_sym_bit_DASHor2] = ACTIONS(2381), + [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(2381), + [anon_sym_out_GT_GT] = ACTIONS(2381), + [anon_sym_e_GT_GT] = ACTIONS(2381), + [anon_sym_o_GT_GT] = ACTIONS(2381), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2381), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2381), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2381), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2381), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(857)] = { - [aux_sym__repeat_newline] = STATE(1098), - [sym__expr_parenthesized_immediate] = STATE(4802), - [sym_comment] = STATE(857), - [anon_sym_in] = ACTIONS(2442), - [sym__newline] = ACTIONS(2442), - [anon_sym_SEMI] = ACTIONS(2442), - [anon_sym_PIPE] = ACTIONS(2442), - [anon_sym_err_GT_PIPE] = ACTIONS(2442), - [anon_sym_out_GT_PIPE] = ACTIONS(2442), - [anon_sym_e_GT_PIPE] = ACTIONS(2442), - [anon_sym_o_GT_PIPE] = ACTIONS(2442), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2442), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2442), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2442), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2442), - [anon_sym_RPAREN] = ACTIONS(2442), - [anon_sym_GT2] = ACTIONS(2444), - [anon_sym_DASH2] = ACTIONS(2442), - [anon_sym_LBRACE] = ACTIONS(2442), - [anon_sym_STAR2] = ACTIONS(2444), - [anon_sym_and2] = ACTIONS(2442), - [anon_sym_xor2] = ACTIONS(2442), - [anon_sym_or2] = ACTIONS(2442), - [anon_sym_not_DASHin2] = ACTIONS(2442), - [anon_sym_has2] = ACTIONS(2442), - [anon_sym_not_DASHhas2] = ACTIONS(2442), - [anon_sym_starts_DASHwith2] = ACTIONS(2442), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2442), - [anon_sym_ends_DASHwith2] = ACTIONS(2442), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2442), - [anon_sym_EQ_EQ2] = ACTIONS(2442), - [anon_sym_BANG_EQ2] = ACTIONS(2442), - [anon_sym_LT2] = ACTIONS(2444), - [anon_sym_LT_EQ2] = ACTIONS(2442), - [anon_sym_GT_EQ2] = ACTIONS(2442), - [anon_sym_EQ_TILDE2] = ACTIONS(2442), - [anon_sym_BANG_TILDE2] = ACTIONS(2442), - [anon_sym_like2] = ACTIONS(2442), - [anon_sym_not_DASHlike2] = ACTIONS(2442), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_STAR_STAR2] = ACTIONS(2442), - [anon_sym_PLUS_PLUS2] = ACTIONS(2442), - [anon_sym_SLASH2] = ACTIONS(2444), - [anon_sym_mod2] = ACTIONS(2442), - [anon_sym_SLASH_SLASH2] = ACTIONS(2442), - [anon_sym_PLUS2] = ACTIONS(2444), - [anon_sym_bit_DASHshl2] = ACTIONS(2442), - [anon_sym_bit_DASHshr2] = ACTIONS(2442), - [anon_sym_bit_DASHand2] = ACTIONS(2442), - [anon_sym_bit_DASHxor2] = ACTIONS(2442), - [anon_sym_bit_DASHor2] = ACTIONS(2442), - [anon_sym_err_GT] = ACTIONS(2444), - [anon_sym_out_GT] = ACTIONS(2444), - [anon_sym_e_GT] = ACTIONS(2444), - [anon_sym_o_GT] = ACTIONS(2444), - [anon_sym_err_PLUSout_GT] = ACTIONS(2444), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2444), - [anon_sym_o_PLUSe_GT] = ACTIONS(2444), - [anon_sym_e_PLUSo_GT] = ACTIONS(2444), - [anon_sym_err_GT_GT] = ACTIONS(2442), - [anon_sym_out_GT_GT] = ACTIONS(2442), - [anon_sym_e_GT_GT] = ACTIONS(2442), - [anon_sym_o_GT_GT] = ACTIONS(2442), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2442), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2442), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2442), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2442), + [STATE(824)] = { + [sym_comment] = STATE(824), + [anon_sym_if] = 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_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_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_POUND] = ACTIONS(3), }, - [STATE(858)] = { - [aux_sym__repeat_newline] = STATE(1099), - [sym__expr_parenthesized_immediate] = STATE(4802), - [sym_comment] = STATE(858), - [anon_sym_in] = ACTIONS(2442), - [sym__newline] = ACTIONS(2442), - [anon_sym_SEMI] = ACTIONS(2442), - [anon_sym_PIPE] = ACTIONS(2442), - [anon_sym_err_GT_PIPE] = ACTIONS(2442), - [anon_sym_out_GT_PIPE] = ACTIONS(2442), - [anon_sym_e_GT_PIPE] = ACTIONS(2442), - [anon_sym_o_GT_PIPE] = ACTIONS(2442), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2442), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2442), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2442), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2442), - [anon_sym_RPAREN] = ACTIONS(2442), - [anon_sym_GT2] = ACTIONS(2444), - [anon_sym_DASH2] = ACTIONS(2442), - [anon_sym_LBRACE] = ACTIONS(2442), - [anon_sym_STAR2] = ACTIONS(2444), - [anon_sym_and2] = ACTIONS(2442), - [anon_sym_xor2] = ACTIONS(2442), - [anon_sym_or2] = ACTIONS(2442), - [anon_sym_not_DASHin2] = ACTIONS(2442), - [anon_sym_has2] = ACTIONS(2442), - [anon_sym_not_DASHhas2] = ACTIONS(2442), - [anon_sym_starts_DASHwith2] = ACTIONS(2442), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2442), - [anon_sym_ends_DASHwith2] = ACTIONS(2442), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2442), - [anon_sym_EQ_EQ2] = ACTIONS(2442), - [anon_sym_BANG_EQ2] = ACTIONS(2442), - [anon_sym_LT2] = ACTIONS(2444), - [anon_sym_LT_EQ2] = ACTIONS(2442), - [anon_sym_GT_EQ2] = ACTIONS(2442), - [anon_sym_EQ_TILDE2] = ACTIONS(2442), - [anon_sym_BANG_TILDE2] = ACTIONS(2442), - [anon_sym_like2] = ACTIONS(2442), - [anon_sym_not_DASHlike2] = ACTIONS(2442), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_STAR_STAR2] = ACTIONS(2442), - [anon_sym_PLUS_PLUS2] = ACTIONS(2442), - [anon_sym_SLASH2] = ACTIONS(2444), - [anon_sym_mod2] = ACTIONS(2442), - [anon_sym_SLASH_SLASH2] = ACTIONS(2442), - [anon_sym_PLUS2] = ACTIONS(2444), - [anon_sym_bit_DASHshl2] = ACTIONS(2442), - [anon_sym_bit_DASHshr2] = ACTIONS(2442), - [anon_sym_bit_DASHand2] = ACTIONS(2442), - [anon_sym_bit_DASHxor2] = ACTIONS(2442), - [anon_sym_bit_DASHor2] = ACTIONS(2442), - [anon_sym_err_GT] = ACTIONS(2444), - [anon_sym_out_GT] = ACTIONS(2444), - [anon_sym_e_GT] = ACTIONS(2444), - [anon_sym_o_GT] = ACTIONS(2444), - [anon_sym_err_PLUSout_GT] = ACTIONS(2444), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2444), - [anon_sym_o_PLUSe_GT] = ACTIONS(2444), - [anon_sym_e_PLUSo_GT] = ACTIONS(2444), - [anon_sym_err_GT_GT] = ACTIONS(2442), - [anon_sym_out_GT_GT] = ACTIONS(2442), - [anon_sym_e_GT_GT] = ACTIONS(2442), - [anon_sym_o_GT_GT] = ACTIONS(2442), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2442), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2442), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2442), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2442), + [STATE(825)] = { + [aux_sym__repeat_newline] = STATE(1113), + [sym__expr_parenthesized_immediate] = STATE(5073), + [sym_comment] = STATE(825), + [anon_sym_in] = ACTIONS(2381), + [sym__newline] = ACTIONS(2381), + [anon_sym_SEMI] = ACTIONS(2381), + [anon_sym_PIPE] = ACTIONS(2381), + [anon_sym_err_GT_PIPE] = ACTIONS(2381), + [anon_sym_out_GT_PIPE] = ACTIONS(2381), + [anon_sym_e_GT_PIPE] = ACTIONS(2381), + [anon_sym_o_GT_PIPE] = ACTIONS(2381), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2381), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2381), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2381), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2381), + [anon_sym_RPAREN] = ACTIONS(2381), + [anon_sym_GT2] = ACTIONS(2383), + [anon_sym_DASH2] = ACTIONS(2381), + [anon_sym_LBRACE] = ACTIONS(2381), + [anon_sym_STAR2] = ACTIONS(2383), + [anon_sym_and2] = ACTIONS(2381), + [anon_sym_xor2] = ACTIONS(2381), + [anon_sym_or2] = ACTIONS(2381), + [anon_sym_not_DASHin2] = ACTIONS(2381), + [anon_sym_has2] = ACTIONS(2381), + [anon_sym_not_DASHhas2] = ACTIONS(2381), + [anon_sym_starts_DASHwith2] = ACTIONS(2381), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2381), + [anon_sym_ends_DASHwith2] = ACTIONS(2381), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2381), + [anon_sym_EQ_EQ2] = ACTIONS(2381), + [anon_sym_BANG_EQ2] = ACTIONS(2381), + [anon_sym_LT2] = ACTIONS(2383), + [anon_sym_LT_EQ2] = ACTIONS(2381), + [anon_sym_GT_EQ2] = ACTIONS(2381), + [anon_sym_EQ_TILDE2] = ACTIONS(2381), + [anon_sym_BANG_TILDE2] = ACTIONS(2381), + [anon_sym_like2] = ACTIONS(2381), + [anon_sym_not_DASHlike2] = ACTIONS(2381), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_STAR_STAR2] = ACTIONS(2381), + [anon_sym_PLUS_PLUS2] = ACTIONS(2381), + [anon_sym_SLASH2] = ACTIONS(2383), + [anon_sym_mod2] = ACTIONS(2381), + [anon_sym_SLASH_SLASH2] = ACTIONS(2381), + [anon_sym_PLUS2] = ACTIONS(2383), + [anon_sym_bit_DASHshl2] = ACTIONS(2381), + [anon_sym_bit_DASHshr2] = ACTIONS(2381), + [anon_sym_bit_DASHand2] = ACTIONS(2381), + [anon_sym_bit_DASHxor2] = ACTIONS(2381), + [anon_sym_bit_DASHor2] = ACTIONS(2381), + [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(2381), + [anon_sym_out_GT_GT] = ACTIONS(2381), + [anon_sym_e_GT_GT] = ACTIONS(2381), + [anon_sym_o_GT_GT] = ACTIONS(2381), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2381), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2381), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2381), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2381), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(859)] = { - [aux_sym__repeat_newline] = STATE(1100), - [sym__expr_parenthesized_immediate] = STATE(4802), - [sym_comment] = STATE(859), - [anon_sym_in] = ACTIONS(2442), - [sym__newline] = ACTIONS(2442), - [anon_sym_SEMI] = ACTIONS(2442), - [anon_sym_PIPE] = ACTIONS(2442), - [anon_sym_err_GT_PIPE] = ACTIONS(2442), - [anon_sym_out_GT_PIPE] = ACTIONS(2442), - [anon_sym_e_GT_PIPE] = ACTIONS(2442), - [anon_sym_o_GT_PIPE] = ACTIONS(2442), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2442), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2442), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2442), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2442), - [anon_sym_RPAREN] = ACTIONS(2442), - [anon_sym_GT2] = ACTIONS(2444), - [anon_sym_DASH2] = ACTIONS(2442), - [anon_sym_LBRACE] = ACTIONS(2442), - [anon_sym_STAR2] = ACTIONS(2444), - [anon_sym_and2] = ACTIONS(2442), - [anon_sym_xor2] = ACTIONS(2442), - [anon_sym_or2] = ACTIONS(2442), - [anon_sym_not_DASHin2] = ACTIONS(2442), - [anon_sym_has2] = ACTIONS(2442), - [anon_sym_not_DASHhas2] = ACTIONS(2442), - [anon_sym_starts_DASHwith2] = ACTIONS(2442), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2442), - [anon_sym_ends_DASHwith2] = ACTIONS(2442), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2442), - [anon_sym_EQ_EQ2] = ACTIONS(2442), - [anon_sym_BANG_EQ2] = ACTIONS(2442), - [anon_sym_LT2] = ACTIONS(2444), - [anon_sym_LT_EQ2] = ACTIONS(2442), - [anon_sym_GT_EQ2] = ACTIONS(2442), - [anon_sym_EQ_TILDE2] = ACTIONS(2442), - [anon_sym_BANG_TILDE2] = ACTIONS(2442), - [anon_sym_like2] = ACTIONS(2442), - [anon_sym_not_DASHlike2] = ACTIONS(2442), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_STAR_STAR2] = ACTIONS(2442), - [anon_sym_PLUS_PLUS2] = ACTIONS(2442), - [anon_sym_SLASH2] = ACTIONS(2444), - [anon_sym_mod2] = ACTIONS(2442), - [anon_sym_SLASH_SLASH2] = ACTIONS(2442), - [anon_sym_PLUS2] = ACTIONS(2444), - [anon_sym_bit_DASHshl2] = ACTIONS(2442), - [anon_sym_bit_DASHshr2] = ACTIONS(2442), - [anon_sym_bit_DASHand2] = ACTIONS(2442), - [anon_sym_bit_DASHxor2] = ACTIONS(2442), - [anon_sym_bit_DASHor2] = ACTIONS(2442), - [anon_sym_err_GT] = ACTIONS(2444), - [anon_sym_out_GT] = ACTIONS(2444), - [anon_sym_e_GT] = ACTIONS(2444), - [anon_sym_o_GT] = ACTIONS(2444), - [anon_sym_err_PLUSout_GT] = ACTIONS(2444), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2444), - [anon_sym_o_PLUSe_GT] = ACTIONS(2444), - [anon_sym_e_PLUSo_GT] = ACTIONS(2444), - [anon_sym_err_GT_GT] = ACTIONS(2442), - [anon_sym_out_GT_GT] = ACTIONS(2442), - [anon_sym_e_GT_GT] = ACTIONS(2442), - [anon_sym_o_GT_GT] = ACTIONS(2442), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2442), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2442), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2442), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2442), + [STATE(826)] = { + [sym_expr_unary] = STATE(940), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(940), + [sym__expr_binary_expression] = STATE(1236), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(940), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(940), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(469), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(695), + [sym__unquoted_with_expr] = STATE(945), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(826), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1947), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1951), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), + [anon_sym_DOT_DOT_LT] = ACTIONS(1953), + [aux_sym__val_number_decimal_token1] = ACTIONS(1955), + [aux_sym__val_number_decimal_token2] = ACTIONS(1957), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1961), + [anon_sym_DQUOTE] = 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(1943), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(860)] = { - [aux_sym__repeat_newline] = STATE(1101), - [sym__expr_parenthesized_immediate] = STATE(4802), - [sym_comment] = STATE(860), - [anon_sym_in] = ACTIONS(2442), - [sym__newline] = ACTIONS(2442), - [anon_sym_SEMI] = ACTIONS(2442), - [anon_sym_PIPE] = ACTIONS(2442), - [anon_sym_err_GT_PIPE] = ACTIONS(2442), - [anon_sym_out_GT_PIPE] = ACTIONS(2442), - [anon_sym_e_GT_PIPE] = ACTIONS(2442), - [anon_sym_o_GT_PIPE] = ACTIONS(2442), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2442), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2442), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2442), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2442), - [anon_sym_RPAREN] = ACTIONS(2442), - [anon_sym_GT2] = ACTIONS(2444), - [anon_sym_DASH2] = ACTIONS(2442), - [anon_sym_LBRACE] = ACTIONS(2442), - [anon_sym_STAR2] = ACTIONS(2444), - [anon_sym_and2] = ACTIONS(2442), - [anon_sym_xor2] = ACTIONS(2442), - [anon_sym_or2] = ACTIONS(2442), - [anon_sym_not_DASHin2] = ACTIONS(2442), - [anon_sym_has2] = ACTIONS(2442), - [anon_sym_not_DASHhas2] = ACTIONS(2442), - [anon_sym_starts_DASHwith2] = ACTIONS(2442), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2442), - [anon_sym_ends_DASHwith2] = ACTIONS(2442), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2442), - [anon_sym_EQ_EQ2] = ACTIONS(2442), - [anon_sym_BANG_EQ2] = ACTIONS(2442), - [anon_sym_LT2] = ACTIONS(2444), - [anon_sym_LT_EQ2] = ACTIONS(2442), - [anon_sym_GT_EQ2] = ACTIONS(2442), - [anon_sym_EQ_TILDE2] = ACTIONS(2442), - [anon_sym_BANG_TILDE2] = ACTIONS(2442), - [anon_sym_like2] = ACTIONS(2442), - [anon_sym_not_DASHlike2] = ACTIONS(2442), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_STAR_STAR2] = ACTIONS(2442), - [anon_sym_PLUS_PLUS2] = ACTIONS(2442), - [anon_sym_SLASH2] = ACTIONS(2444), - [anon_sym_mod2] = ACTIONS(2442), - [anon_sym_SLASH_SLASH2] = ACTIONS(2442), - [anon_sym_PLUS2] = ACTIONS(2444), - [anon_sym_bit_DASHshl2] = ACTIONS(2442), - [anon_sym_bit_DASHshr2] = ACTIONS(2442), - [anon_sym_bit_DASHand2] = ACTIONS(2442), - [anon_sym_bit_DASHxor2] = ACTIONS(2442), - [anon_sym_bit_DASHor2] = ACTIONS(2442), - [anon_sym_err_GT] = ACTIONS(2444), - [anon_sym_out_GT] = ACTIONS(2444), - [anon_sym_e_GT] = ACTIONS(2444), - [anon_sym_o_GT] = ACTIONS(2444), - [anon_sym_err_PLUSout_GT] = ACTIONS(2444), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2444), - [anon_sym_o_PLUSe_GT] = ACTIONS(2444), - [anon_sym_e_PLUSo_GT] = ACTIONS(2444), - [anon_sym_err_GT_GT] = ACTIONS(2442), - [anon_sym_out_GT_GT] = ACTIONS(2442), - [anon_sym_e_GT_GT] = ACTIONS(2442), - [anon_sym_o_GT_GT] = ACTIONS(2442), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2442), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2442), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2442), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2442), + [STATE(827)] = { + [aux_sym__repeat_newline] = STATE(1116), + [sym__expr_parenthesized_immediate] = STATE(5073), + [sym_comment] = STATE(827), + [anon_sym_in] = ACTIONS(2381), + [sym__newline] = ACTIONS(2381), + [anon_sym_SEMI] = ACTIONS(2381), + [anon_sym_PIPE] = ACTIONS(2381), + [anon_sym_err_GT_PIPE] = ACTIONS(2381), + [anon_sym_out_GT_PIPE] = ACTIONS(2381), + [anon_sym_e_GT_PIPE] = ACTIONS(2381), + [anon_sym_o_GT_PIPE] = ACTIONS(2381), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2381), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2381), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2381), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2381), + [anon_sym_RPAREN] = ACTIONS(2381), + [anon_sym_GT2] = ACTIONS(2383), + [anon_sym_DASH2] = ACTIONS(2381), + [anon_sym_LBRACE] = ACTIONS(2381), + [anon_sym_STAR2] = ACTIONS(2383), + [anon_sym_and2] = ACTIONS(2381), + [anon_sym_xor2] = ACTIONS(2381), + [anon_sym_or2] = ACTIONS(2381), + [anon_sym_not_DASHin2] = ACTIONS(2381), + [anon_sym_has2] = ACTIONS(2381), + [anon_sym_not_DASHhas2] = ACTIONS(2381), + [anon_sym_starts_DASHwith2] = ACTIONS(2381), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2381), + [anon_sym_ends_DASHwith2] = ACTIONS(2381), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2381), + [anon_sym_EQ_EQ2] = ACTIONS(2381), + [anon_sym_BANG_EQ2] = ACTIONS(2381), + [anon_sym_LT2] = ACTIONS(2383), + [anon_sym_LT_EQ2] = ACTIONS(2381), + [anon_sym_GT_EQ2] = ACTIONS(2381), + [anon_sym_EQ_TILDE2] = ACTIONS(2381), + [anon_sym_BANG_TILDE2] = ACTIONS(2381), + [anon_sym_like2] = ACTIONS(2381), + [anon_sym_not_DASHlike2] = ACTIONS(2381), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_STAR_STAR2] = ACTIONS(2381), + [anon_sym_PLUS_PLUS2] = ACTIONS(2381), + [anon_sym_SLASH2] = ACTIONS(2383), + [anon_sym_mod2] = ACTIONS(2381), + [anon_sym_SLASH_SLASH2] = ACTIONS(2381), + [anon_sym_PLUS2] = ACTIONS(2383), + [anon_sym_bit_DASHshl2] = ACTIONS(2381), + [anon_sym_bit_DASHshr2] = ACTIONS(2381), + [anon_sym_bit_DASHand2] = ACTIONS(2381), + [anon_sym_bit_DASHxor2] = ACTIONS(2381), + [anon_sym_bit_DASHor2] = ACTIONS(2381), + [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(2381), + [anon_sym_out_GT_GT] = ACTIONS(2381), + [anon_sym_e_GT_GT] = ACTIONS(2381), + [anon_sym_o_GT_GT] = ACTIONS(2381), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2381), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2381), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2381), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2381), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(861)] = { - [aux_sym__repeat_newline] = STATE(1103), - [sym__expr_parenthesized_immediate] = STATE(4802), - [sym_comment] = STATE(861), - [anon_sym_in] = ACTIONS(2442), - [sym__newline] = ACTIONS(2442), - [anon_sym_SEMI] = ACTIONS(2442), - [anon_sym_PIPE] = ACTIONS(2442), - [anon_sym_err_GT_PIPE] = ACTIONS(2442), - [anon_sym_out_GT_PIPE] = ACTIONS(2442), - [anon_sym_e_GT_PIPE] = ACTIONS(2442), - [anon_sym_o_GT_PIPE] = ACTIONS(2442), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2442), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2442), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2442), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2442), - [anon_sym_RPAREN] = ACTIONS(2442), - [anon_sym_GT2] = ACTIONS(2444), - [anon_sym_DASH2] = ACTIONS(2442), - [anon_sym_LBRACE] = ACTIONS(2442), - [anon_sym_STAR2] = ACTIONS(2444), - [anon_sym_and2] = ACTIONS(2442), - [anon_sym_xor2] = ACTIONS(2442), - [anon_sym_or2] = ACTIONS(2442), - [anon_sym_not_DASHin2] = ACTIONS(2442), - [anon_sym_has2] = ACTIONS(2442), - [anon_sym_not_DASHhas2] = ACTIONS(2442), - [anon_sym_starts_DASHwith2] = ACTIONS(2442), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2442), - [anon_sym_ends_DASHwith2] = ACTIONS(2442), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2442), - [anon_sym_EQ_EQ2] = ACTIONS(2442), - [anon_sym_BANG_EQ2] = ACTIONS(2442), - [anon_sym_LT2] = ACTIONS(2444), - [anon_sym_LT_EQ2] = ACTIONS(2442), - [anon_sym_GT_EQ2] = ACTIONS(2442), - [anon_sym_EQ_TILDE2] = ACTIONS(2442), - [anon_sym_BANG_TILDE2] = ACTIONS(2442), - [anon_sym_like2] = ACTIONS(2442), - [anon_sym_not_DASHlike2] = ACTIONS(2442), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_STAR_STAR2] = ACTIONS(2442), - [anon_sym_PLUS_PLUS2] = ACTIONS(2442), - [anon_sym_SLASH2] = ACTIONS(2444), - [anon_sym_mod2] = ACTIONS(2442), - [anon_sym_SLASH_SLASH2] = ACTIONS(2442), - [anon_sym_PLUS2] = ACTIONS(2444), - [anon_sym_bit_DASHshl2] = ACTIONS(2442), - [anon_sym_bit_DASHshr2] = ACTIONS(2442), - [anon_sym_bit_DASHand2] = ACTIONS(2442), - [anon_sym_bit_DASHxor2] = ACTIONS(2442), - [anon_sym_bit_DASHor2] = ACTIONS(2442), - [anon_sym_err_GT] = ACTIONS(2444), - [anon_sym_out_GT] = ACTIONS(2444), - [anon_sym_e_GT] = ACTIONS(2444), - [anon_sym_o_GT] = ACTIONS(2444), - [anon_sym_err_PLUSout_GT] = ACTIONS(2444), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2444), - [anon_sym_o_PLUSe_GT] = ACTIONS(2444), - [anon_sym_e_PLUSo_GT] = ACTIONS(2444), - [anon_sym_err_GT_GT] = ACTIONS(2442), - [anon_sym_out_GT_GT] = ACTIONS(2442), - [anon_sym_e_GT_GT] = ACTIONS(2442), - [anon_sym_o_GT_GT] = ACTIONS(2442), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2442), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2442), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2442), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2442), + [STATE(828)] = { + [sym_expr_unary] = STATE(940), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(940), + [sym__expr_binary_expression] = STATE(1238), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(940), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(940), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(469), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(697), + [sym__unquoted_with_expr] = STATE(976), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(828), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1947), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1951), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), + [anon_sym_DOT_DOT_LT] = ACTIONS(1953), + [aux_sym__val_number_decimal_token1] = ACTIONS(1955), + [aux_sym__val_number_decimal_token2] = ACTIONS(1957), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1961), + [anon_sym_DQUOTE] = 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(1943), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(862)] = { - [aux_sym__repeat_newline] = STATE(1104), - [sym__expr_parenthesized_immediate] = STATE(4802), - [sym_comment] = STATE(862), - [anon_sym_in] = ACTIONS(2442), - [sym__newline] = ACTIONS(2442), - [anon_sym_SEMI] = ACTIONS(2442), - [anon_sym_PIPE] = ACTIONS(2442), - [anon_sym_err_GT_PIPE] = ACTIONS(2442), - [anon_sym_out_GT_PIPE] = ACTIONS(2442), - [anon_sym_e_GT_PIPE] = ACTIONS(2442), - [anon_sym_o_GT_PIPE] = ACTIONS(2442), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2442), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2442), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2442), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2442), - [anon_sym_RPAREN] = ACTIONS(2442), - [anon_sym_GT2] = ACTIONS(2444), - [anon_sym_DASH2] = ACTIONS(2442), - [anon_sym_LBRACE] = ACTIONS(2442), - [anon_sym_STAR2] = ACTIONS(2444), - [anon_sym_and2] = ACTIONS(2442), - [anon_sym_xor2] = ACTIONS(2442), - [anon_sym_or2] = ACTIONS(2442), - [anon_sym_not_DASHin2] = ACTIONS(2442), - [anon_sym_has2] = ACTIONS(2442), - [anon_sym_not_DASHhas2] = ACTIONS(2442), - [anon_sym_starts_DASHwith2] = ACTIONS(2442), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2442), - [anon_sym_ends_DASHwith2] = ACTIONS(2442), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2442), - [anon_sym_EQ_EQ2] = ACTIONS(2442), - [anon_sym_BANG_EQ2] = ACTIONS(2442), - [anon_sym_LT2] = ACTIONS(2444), - [anon_sym_LT_EQ2] = ACTIONS(2442), - [anon_sym_GT_EQ2] = ACTIONS(2442), - [anon_sym_EQ_TILDE2] = ACTIONS(2442), - [anon_sym_BANG_TILDE2] = ACTIONS(2442), - [anon_sym_like2] = ACTIONS(2442), - [anon_sym_not_DASHlike2] = ACTIONS(2442), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_STAR_STAR2] = ACTIONS(2442), - [anon_sym_PLUS_PLUS2] = ACTIONS(2442), - [anon_sym_SLASH2] = ACTIONS(2444), - [anon_sym_mod2] = ACTIONS(2442), - [anon_sym_SLASH_SLASH2] = ACTIONS(2442), - [anon_sym_PLUS2] = ACTIONS(2444), - [anon_sym_bit_DASHshl2] = ACTIONS(2442), - [anon_sym_bit_DASHshr2] = ACTIONS(2442), - [anon_sym_bit_DASHand2] = ACTIONS(2442), - [anon_sym_bit_DASHxor2] = ACTIONS(2442), - [anon_sym_bit_DASHor2] = ACTIONS(2442), - [anon_sym_err_GT] = ACTIONS(2444), - [anon_sym_out_GT] = ACTIONS(2444), - [anon_sym_e_GT] = ACTIONS(2444), - [anon_sym_o_GT] = ACTIONS(2444), - [anon_sym_err_PLUSout_GT] = ACTIONS(2444), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2444), - [anon_sym_o_PLUSe_GT] = ACTIONS(2444), - [anon_sym_e_PLUSo_GT] = ACTIONS(2444), - [anon_sym_err_GT_GT] = ACTIONS(2442), - [anon_sym_out_GT_GT] = ACTIONS(2442), - [anon_sym_e_GT_GT] = ACTIONS(2442), - [anon_sym_o_GT_GT] = ACTIONS(2442), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2442), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2442), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2442), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2442), + [STATE(829)] = { + [aux_sym__repeat_newline] = STATE(1118), + [sym__expr_parenthesized_immediate] = STATE(5073), + [sym_comment] = STATE(829), + [anon_sym_in] = ACTIONS(2381), + [sym__newline] = ACTIONS(2381), + [anon_sym_SEMI] = ACTIONS(2381), + [anon_sym_PIPE] = ACTIONS(2381), + [anon_sym_err_GT_PIPE] = ACTIONS(2381), + [anon_sym_out_GT_PIPE] = ACTIONS(2381), + [anon_sym_e_GT_PIPE] = ACTIONS(2381), + [anon_sym_o_GT_PIPE] = ACTIONS(2381), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2381), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2381), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2381), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2381), + [anon_sym_RPAREN] = ACTIONS(2381), + [anon_sym_GT2] = ACTIONS(2383), + [anon_sym_DASH2] = ACTIONS(2381), + [anon_sym_LBRACE] = ACTIONS(2381), + [anon_sym_STAR2] = ACTIONS(2383), + [anon_sym_and2] = ACTIONS(2381), + [anon_sym_xor2] = ACTIONS(2381), + [anon_sym_or2] = ACTIONS(2381), + [anon_sym_not_DASHin2] = ACTIONS(2381), + [anon_sym_has2] = ACTIONS(2381), + [anon_sym_not_DASHhas2] = ACTIONS(2381), + [anon_sym_starts_DASHwith2] = ACTIONS(2381), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2381), + [anon_sym_ends_DASHwith2] = ACTIONS(2381), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2381), + [anon_sym_EQ_EQ2] = ACTIONS(2381), + [anon_sym_BANG_EQ2] = ACTIONS(2381), + [anon_sym_LT2] = ACTIONS(2383), + [anon_sym_LT_EQ2] = ACTIONS(2381), + [anon_sym_GT_EQ2] = ACTIONS(2381), + [anon_sym_EQ_TILDE2] = ACTIONS(2381), + [anon_sym_BANG_TILDE2] = ACTIONS(2381), + [anon_sym_like2] = ACTIONS(2381), + [anon_sym_not_DASHlike2] = ACTIONS(2381), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_STAR_STAR2] = ACTIONS(2381), + [anon_sym_PLUS_PLUS2] = ACTIONS(2381), + [anon_sym_SLASH2] = ACTIONS(2383), + [anon_sym_mod2] = ACTIONS(2381), + [anon_sym_SLASH_SLASH2] = ACTIONS(2381), + [anon_sym_PLUS2] = ACTIONS(2383), + [anon_sym_bit_DASHshl2] = ACTIONS(2381), + [anon_sym_bit_DASHshr2] = ACTIONS(2381), + [anon_sym_bit_DASHand2] = ACTIONS(2381), + [anon_sym_bit_DASHxor2] = ACTIONS(2381), + [anon_sym_bit_DASHor2] = ACTIONS(2381), + [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(2381), + [anon_sym_out_GT_GT] = ACTIONS(2381), + [anon_sym_e_GT_GT] = ACTIONS(2381), + [anon_sym_o_GT_GT] = ACTIONS(2381), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2381), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2381), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2381), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2381), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(863)] = { - [aux_sym__repeat_newline] = STATE(1105), - [sym__expr_parenthesized_immediate] = STATE(4802), - [sym_comment] = STATE(863), - [anon_sym_in] = ACTIONS(2442), - [sym__newline] = ACTIONS(2442), - [anon_sym_SEMI] = ACTIONS(2442), - [anon_sym_PIPE] = ACTIONS(2442), - [anon_sym_err_GT_PIPE] = ACTIONS(2442), - [anon_sym_out_GT_PIPE] = ACTIONS(2442), - [anon_sym_e_GT_PIPE] = ACTIONS(2442), - [anon_sym_o_GT_PIPE] = ACTIONS(2442), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2442), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2442), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2442), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2442), - [anon_sym_RPAREN] = ACTIONS(2442), - [anon_sym_GT2] = ACTIONS(2444), - [anon_sym_DASH2] = ACTIONS(2442), - [anon_sym_LBRACE] = ACTIONS(2442), - [anon_sym_STAR2] = ACTIONS(2444), - [anon_sym_and2] = ACTIONS(2442), - [anon_sym_xor2] = ACTIONS(2442), - [anon_sym_or2] = ACTIONS(2442), - [anon_sym_not_DASHin2] = ACTIONS(2442), - [anon_sym_has2] = ACTIONS(2442), - [anon_sym_not_DASHhas2] = ACTIONS(2442), - [anon_sym_starts_DASHwith2] = ACTIONS(2442), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2442), - [anon_sym_ends_DASHwith2] = ACTIONS(2442), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2442), - [anon_sym_EQ_EQ2] = ACTIONS(2442), - [anon_sym_BANG_EQ2] = ACTIONS(2442), - [anon_sym_LT2] = ACTIONS(2444), - [anon_sym_LT_EQ2] = ACTIONS(2442), - [anon_sym_GT_EQ2] = ACTIONS(2442), - [anon_sym_EQ_TILDE2] = ACTIONS(2442), - [anon_sym_BANG_TILDE2] = ACTIONS(2442), - [anon_sym_like2] = ACTIONS(2442), - [anon_sym_not_DASHlike2] = ACTIONS(2442), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_STAR_STAR2] = ACTIONS(2442), - [anon_sym_PLUS_PLUS2] = ACTIONS(2442), - [anon_sym_SLASH2] = ACTIONS(2444), - [anon_sym_mod2] = ACTIONS(2442), - [anon_sym_SLASH_SLASH2] = ACTIONS(2442), - [anon_sym_PLUS2] = ACTIONS(2444), - [anon_sym_bit_DASHshl2] = ACTIONS(2442), - [anon_sym_bit_DASHshr2] = ACTIONS(2442), - [anon_sym_bit_DASHand2] = ACTIONS(2442), - [anon_sym_bit_DASHxor2] = ACTIONS(2442), - [anon_sym_bit_DASHor2] = ACTIONS(2442), - [anon_sym_err_GT] = ACTIONS(2444), - [anon_sym_out_GT] = ACTIONS(2444), - [anon_sym_e_GT] = ACTIONS(2444), - [anon_sym_o_GT] = ACTIONS(2444), - [anon_sym_err_PLUSout_GT] = ACTIONS(2444), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2444), - [anon_sym_o_PLUSe_GT] = ACTIONS(2444), - [anon_sym_e_PLUSo_GT] = ACTIONS(2444), - [anon_sym_err_GT_GT] = ACTIONS(2442), - [anon_sym_out_GT_GT] = ACTIONS(2442), - [anon_sym_e_GT_GT] = ACTIONS(2442), - [anon_sym_o_GT_GT] = ACTIONS(2442), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2442), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2442), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2442), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2442), + [STATE(830)] = { + [sym_expr_unary] = STATE(1320), + [sym__expr_unary_minus] = STATE(1296), + [sym_expr_binary] = STATE(1320), + [sym__expr_binary_expression] = STATE(1333), + [sym_expr_parenthesized] = STATE(935), + [sym_val_range] = STATE(1320), + [sym__val_range] = STATE(4844), + [sym__value] = STATE(1320), + [sym_val_nothing] = STATE(1316), + [sym_val_bool] = STATE(985), + [sym_val_variable] = STATE(912), + [sym_val_cellpath] = STATE(1316), + [sym_val_number] = STATE(1316), + [sym__val_number_decimal] = STATE(471), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1316), + [sym_val_filesize] = STATE(1316), + [sym_val_binary] = STATE(1316), + [sym_val_string] = STATE(1316), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1316), + [sym__inter_single_quotes] = STATE(1277), + [sym__inter_double_quotes] = STATE(1311), + [sym_val_list] = STATE(1316), + [sym_val_record] = STATE(1316), + [sym_val_table] = STATE(1316), + [sym_val_closure] = STATE(1316), + [sym_unquoted] = STATE(988), + [sym__unquoted_with_expr] = STATE(1334), + [sym__unquoted_anonymous_prefix] = STATE(4844), + [sym_comment] = STATE(830), + [anon_sym_true] = ACTIONS(2489), + [anon_sym_false] = ACTIONS(2489), + [anon_sym_null] = ACTIONS(2491), + [aux_sym_cmd_identifier_token3] = ACTIONS(2493), + [aux_sym_cmd_identifier_token4] = ACTIONS(2493), + [aux_sym_cmd_identifier_token5] = ACTIONS(2493), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2495), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2497), + [anon_sym_DOT_DOT_LT] = ACTIONS(2497), + [aux_sym__val_number_decimal_token1] = ACTIONS(2499), + [aux_sym__val_number_decimal_token2] = ACTIONS(2501), + [aux_sym__val_number_decimal_token3] = ACTIONS(2503), + [aux_sym__val_number_decimal_token4] = ACTIONS(2503), + [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(2505), + [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(2403), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(864)] = { - [aux_sym__repeat_newline] = STATE(1106), - [sym__expr_parenthesized_immediate] = STATE(4802), - [sym_comment] = STATE(864), - [anon_sym_in] = ACTIONS(2442), - [sym__newline] = ACTIONS(2442), - [anon_sym_SEMI] = ACTIONS(2442), - [anon_sym_PIPE] = ACTIONS(2442), - [anon_sym_err_GT_PIPE] = ACTIONS(2442), - [anon_sym_out_GT_PIPE] = ACTIONS(2442), - [anon_sym_e_GT_PIPE] = ACTIONS(2442), - [anon_sym_o_GT_PIPE] = ACTIONS(2442), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2442), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2442), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2442), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2442), - [anon_sym_RPAREN] = ACTIONS(2442), - [anon_sym_GT2] = ACTIONS(2444), - [anon_sym_DASH2] = ACTIONS(2442), - [anon_sym_LBRACE] = ACTIONS(2442), - [anon_sym_STAR2] = ACTIONS(2444), - [anon_sym_and2] = ACTIONS(2442), - [anon_sym_xor2] = ACTIONS(2442), - [anon_sym_or2] = ACTIONS(2442), - [anon_sym_not_DASHin2] = ACTIONS(2442), - [anon_sym_has2] = ACTIONS(2442), - [anon_sym_not_DASHhas2] = ACTIONS(2442), - [anon_sym_starts_DASHwith2] = ACTIONS(2442), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2442), - [anon_sym_ends_DASHwith2] = ACTIONS(2442), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2442), - [anon_sym_EQ_EQ2] = ACTIONS(2442), - [anon_sym_BANG_EQ2] = ACTIONS(2442), - [anon_sym_LT2] = ACTIONS(2444), - [anon_sym_LT_EQ2] = ACTIONS(2442), - [anon_sym_GT_EQ2] = ACTIONS(2442), - [anon_sym_EQ_TILDE2] = ACTIONS(2442), - [anon_sym_BANG_TILDE2] = ACTIONS(2442), - [anon_sym_like2] = ACTIONS(2442), - [anon_sym_not_DASHlike2] = ACTIONS(2442), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_STAR_STAR2] = ACTIONS(2442), - [anon_sym_PLUS_PLUS2] = ACTIONS(2442), - [anon_sym_SLASH2] = ACTIONS(2444), - [anon_sym_mod2] = ACTIONS(2442), - [anon_sym_SLASH_SLASH2] = ACTIONS(2442), - [anon_sym_PLUS2] = ACTIONS(2444), - [anon_sym_bit_DASHshl2] = ACTIONS(2442), - [anon_sym_bit_DASHshr2] = ACTIONS(2442), - [anon_sym_bit_DASHand2] = ACTIONS(2442), - [anon_sym_bit_DASHxor2] = ACTIONS(2442), - [anon_sym_bit_DASHor2] = ACTIONS(2442), - [anon_sym_err_GT] = ACTIONS(2444), - [anon_sym_out_GT] = ACTIONS(2444), - [anon_sym_e_GT] = ACTIONS(2444), - [anon_sym_o_GT] = ACTIONS(2444), - [anon_sym_err_PLUSout_GT] = ACTIONS(2444), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2444), - [anon_sym_o_PLUSe_GT] = ACTIONS(2444), - [anon_sym_e_PLUSo_GT] = ACTIONS(2444), - [anon_sym_err_GT_GT] = ACTIONS(2442), - [anon_sym_out_GT_GT] = ACTIONS(2442), - [anon_sym_e_GT_GT] = ACTIONS(2442), - [anon_sym_o_GT_GT] = ACTIONS(2442), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2442), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2442), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2442), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2442), + [STATE(831)] = { + [sym_expr_unary] = STATE(1320), + [sym__expr_unary_minus] = STATE(1296), + [sym_expr_binary] = STATE(1320), + [sym__expr_binary_expression] = STATE(1335), + [sym_expr_parenthesized] = STATE(935), + [sym_val_range] = STATE(1320), + [sym__val_range] = STATE(4844), + [sym__value] = STATE(1320), + [sym_val_nothing] = STATE(1316), + [sym_val_bool] = STATE(985), + [sym_val_variable] = STATE(912), + [sym_val_cellpath] = STATE(1316), + [sym_val_number] = STATE(1316), + [sym__val_number_decimal] = STATE(471), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1316), + [sym_val_filesize] = STATE(1316), + [sym_val_binary] = STATE(1316), + [sym_val_string] = STATE(1316), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1316), + [sym__inter_single_quotes] = STATE(1277), + [sym__inter_double_quotes] = STATE(1311), + [sym_val_list] = STATE(1316), + [sym_val_record] = STATE(1316), + [sym_val_table] = STATE(1316), + [sym_val_closure] = STATE(1316), + [sym_unquoted] = STATE(1003), + [sym__unquoted_with_expr] = STATE(1336), + [sym__unquoted_anonymous_prefix] = STATE(4844), + [sym_comment] = STATE(831), + [anon_sym_true] = ACTIONS(2489), + [anon_sym_false] = ACTIONS(2489), + [anon_sym_null] = ACTIONS(2491), + [aux_sym_cmd_identifier_token3] = ACTIONS(2493), + [aux_sym_cmd_identifier_token4] = ACTIONS(2493), + [aux_sym_cmd_identifier_token5] = ACTIONS(2493), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2495), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2497), + [anon_sym_DOT_DOT_LT] = ACTIONS(2497), + [aux_sym__val_number_decimal_token1] = ACTIONS(2499), + [aux_sym__val_number_decimal_token2] = ACTIONS(2501), + [aux_sym__val_number_decimal_token3] = ACTIONS(2503), + [aux_sym__val_number_decimal_token4] = ACTIONS(2503), + [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(2505), + [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(2403), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(865)] = { - [aux_sym__repeat_newline] = STATE(1107), - [sym__expr_parenthesized_immediate] = STATE(4802), - [sym_comment] = STATE(865), - [anon_sym_in] = ACTIONS(2442), - [sym__newline] = ACTIONS(2442), - [anon_sym_SEMI] = ACTIONS(2442), - [anon_sym_PIPE] = ACTIONS(2442), - [anon_sym_err_GT_PIPE] = ACTIONS(2442), - [anon_sym_out_GT_PIPE] = ACTIONS(2442), - [anon_sym_e_GT_PIPE] = ACTIONS(2442), - [anon_sym_o_GT_PIPE] = ACTIONS(2442), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2442), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2442), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2442), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2442), - [anon_sym_RPAREN] = ACTIONS(2442), - [anon_sym_GT2] = ACTIONS(2444), - [anon_sym_DASH2] = ACTIONS(2442), - [anon_sym_LBRACE] = ACTIONS(2442), - [anon_sym_STAR2] = ACTIONS(2444), - [anon_sym_and2] = ACTIONS(2442), - [anon_sym_xor2] = ACTIONS(2442), - [anon_sym_or2] = ACTIONS(2442), - [anon_sym_not_DASHin2] = ACTIONS(2442), - [anon_sym_has2] = ACTIONS(2442), - [anon_sym_not_DASHhas2] = ACTIONS(2442), - [anon_sym_starts_DASHwith2] = ACTIONS(2442), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2442), - [anon_sym_ends_DASHwith2] = ACTIONS(2442), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2442), - [anon_sym_EQ_EQ2] = ACTIONS(2442), - [anon_sym_BANG_EQ2] = ACTIONS(2442), - [anon_sym_LT2] = ACTIONS(2444), - [anon_sym_LT_EQ2] = ACTIONS(2442), - [anon_sym_GT_EQ2] = ACTIONS(2442), - [anon_sym_EQ_TILDE2] = ACTIONS(2442), - [anon_sym_BANG_TILDE2] = ACTIONS(2442), - [anon_sym_like2] = ACTIONS(2442), - [anon_sym_not_DASHlike2] = ACTIONS(2442), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_STAR_STAR2] = ACTIONS(2442), - [anon_sym_PLUS_PLUS2] = ACTIONS(2442), - [anon_sym_SLASH2] = ACTIONS(2444), - [anon_sym_mod2] = ACTIONS(2442), - [anon_sym_SLASH_SLASH2] = ACTIONS(2442), - [anon_sym_PLUS2] = ACTIONS(2444), - [anon_sym_bit_DASHshl2] = ACTIONS(2442), - [anon_sym_bit_DASHshr2] = ACTIONS(2442), - [anon_sym_bit_DASHand2] = ACTIONS(2442), - [anon_sym_bit_DASHxor2] = ACTIONS(2442), - [anon_sym_bit_DASHor2] = ACTIONS(2442), - [anon_sym_err_GT] = ACTIONS(2444), - [anon_sym_out_GT] = ACTIONS(2444), - [anon_sym_e_GT] = ACTIONS(2444), - [anon_sym_o_GT] = ACTIONS(2444), - [anon_sym_err_PLUSout_GT] = ACTIONS(2444), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2444), - [anon_sym_o_PLUSe_GT] = ACTIONS(2444), - [anon_sym_e_PLUSo_GT] = ACTIONS(2444), - [anon_sym_err_GT_GT] = ACTIONS(2442), - [anon_sym_out_GT_GT] = ACTIONS(2442), - [anon_sym_e_GT_GT] = ACTIONS(2442), - [anon_sym_o_GT_GT] = ACTIONS(2442), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2442), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2442), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2442), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2442), + [STATE(832)] = { + [sym_cell_path] = STATE(1279), + [sym_path] = STATE(715), + [sym_comment] = STATE(832), + [aux_sym__where_predicate_lhs_repeat1] = STATE(526), + [ts_builtin_sym_end] = ACTIONS(1887), + [anon_sym_in] = ACTIONS(1887), + [sym__newline] = ACTIONS(1887), + [anon_sym_SEMI] = ACTIONS(1887), + [anon_sym_PIPE] = ACTIONS(1887), + [anon_sym_err_GT_PIPE] = ACTIONS(1887), + [anon_sym_out_GT_PIPE] = ACTIONS(1887), + [anon_sym_e_GT_PIPE] = ACTIONS(1887), + [anon_sym_o_GT_PIPE] = ACTIONS(1887), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1887), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1887), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1887), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1887), + [anon_sym_GT2] = ACTIONS(1889), + [anon_sym_DASH2] = ACTIONS(1887), + [anon_sym_STAR2] = ACTIONS(1889), + [anon_sym_and2] = ACTIONS(1887), + [anon_sym_xor2] = ACTIONS(1887), + [anon_sym_or2] = ACTIONS(1887), + [anon_sym_not_DASHin2] = ACTIONS(1887), + [anon_sym_has2] = ACTIONS(1887), + [anon_sym_not_DASHhas2] = ACTIONS(1887), + [anon_sym_starts_DASHwith2] = ACTIONS(1887), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1887), + [anon_sym_ends_DASHwith2] = ACTIONS(1887), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1887), + [anon_sym_EQ_EQ2] = ACTIONS(1887), + [anon_sym_BANG_EQ2] = ACTIONS(1887), + [anon_sym_LT2] = ACTIONS(1889), + [anon_sym_LT_EQ2] = ACTIONS(1887), + [anon_sym_GT_EQ2] = ACTIONS(1887), + [anon_sym_EQ_TILDE2] = ACTIONS(1887), + [anon_sym_BANG_TILDE2] = ACTIONS(1887), + [anon_sym_like2] = ACTIONS(1887), + [anon_sym_not_DASHlike2] = ACTIONS(1887), + [anon_sym_STAR_STAR2] = ACTIONS(1887), + [anon_sym_PLUS_PLUS2] = ACTIONS(1887), + [anon_sym_SLASH2] = ACTIONS(1889), + [anon_sym_mod2] = ACTIONS(1887), + [anon_sym_SLASH_SLASH2] = ACTIONS(1887), + [anon_sym_PLUS2] = ACTIONS(1889), + [anon_sym_bit_DASHshl2] = ACTIONS(1887), + [anon_sym_bit_DASHshr2] = ACTIONS(1887), + [anon_sym_bit_DASHand2] = ACTIONS(1887), + [anon_sym_bit_DASHxor2] = ACTIONS(1887), + [anon_sym_bit_DASHor2] = ACTIONS(1887), + [anon_sym_DOT2] = ACTIONS(2358), + [anon_sym_err_GT] = ACTIONS(1889), + [anon_sym_out_GT] = ACTIONS(1889), + [anon_sym_e_GT] = ACTIONS(1889), + [anon_sym_o_GT] = ACTIONS(1889), + [anon_sym_err_PLUSout_GT] = ACTIONS(1889), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1889), + [anon_sym_o_PLUSe_GT] = ACTIONS(1889), + [anon_sym_e_PLUSo_GT] = ACTIONS(1889), + [anon_sym_err_GT_GT] = ACTIONS(1887), + [anon_sym_out_GT_GT] = ACTIONS(1887), + [anon_sym_e_GT_GT] = ACTIONS(1887), + [anon_sym_o_GT_GT] = ACTIONS(1887), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1887), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1887), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1887), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1887), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(866)] = { - [sym_cell_path] = STATE(1307), - [sym_path] = STATE(720), - [sym_comment] = STATE(866), - [aux_sym__where_predicate_lhs_repeat1] = STATE(622), - [ts_builtin_sym_end] = ACTIONS(1912), - [anon_sym_in] = ACTIONS(1912), - [sym__newline] = ACTIONS(1912), - [anon_sym_SEMI] = ACTIONS(1912), - [anon_sym_PIPE] = ACTIONS(1912), - [anon_sym_err_GT_PIPE] = ACTIONS(1912), - [anon_sym_out_GT_PIPE] = ACTIONS(1912), - [anon_sym_e_GT_PIPE] = ACTIONS(1912), - [anon_sym_o_GT_PIPE] = ACTIONS(1912), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1912), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1912), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1912), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1912), - [anon_sym_GT2] = ACTIONS(1914), - [anon_sym_DASH2] = ACTIONS(1912), - [anon_sym_STAR2] = ACTIONS(1914), - [anon_sym_and2] = ACTIONS(1912), - [anon_sym_xor2] = ACTIONS(1912), - [anon_sym_or2] = ACTIONS(1912), - [anon_sym_not_DASHin2] = ACTIONS(1912), - [anon_sym_has2] = ACTIONS(1912), - [anon_sym_not_DASHhas2] = ACTIONS(1912), - [anon_sym_starts_DASHwith2] = ACTIONS(1912), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1912), - [anon_sym_ends_DASHwith2] = ACTIONS(1912), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1912), - [anon_sym_EQ_EQ2] = ACTIONS(1912), - [anon_sym_BANG_EQ2] = ACTIONS(1912), - [anon_sym_LT2] = ACTIONS(1914), - [anon_sym_LT_EQ2] = ACTIONS(1912), - [anon_sym_GT_EQ2] = ACTIONS(1912), - [anon_sym_EQ_TILDE2] = ACTIONS(1912), - [anon_sym_BANG_TILDE2] = ACTIONS(1912), - [anon_sym_like2] = ACTIONS(1912), - [anon_sym_not_DASHlike2] = ACTIONS(1912), - [anon_sym_STAR_STAR2] = ACTIONS(1912), - [anon_sym_PLUS_PLUS2] = ACTIONS(1912), - [anon_sym_SLASH2] = ACTIONS(1914), - [anon_sym_mod2] = ACTIONS(1912), - [anon_sym_SLASH_SLASH2] = ACTIONS(1912), - [anon_sym_PLUS2] = ACTIONS(1914), - [anon_sym_bit_DASHshl2] = ACTIONS(1912), - [anon_sym_bit_DASHshr2] = ACTIONS(1912), - [anon_sym_bit_DASHand2] = ACTIONS(1912), - [anon_sym_bit_DASHxor2] = ACTIONS(1912), - [anon_sym_bit_DASHor2] = ACTIONS(1912), - [anon_sym_DOT2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(1914), - [anon_sym_out_GT] = ACTIONS(1914), - [anon_sym_e_GT] = ACTIONS(1914), - [anon_sym_o_GT] = ACTIONS(1914), - [anon_sym_err_PLUSout_GT] = ACTIONS(1914), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1914), - [anon_sym_o_PLUSe_GT] = ACTIONS(1914), - [anon_sym_e_PLUSo_GT] = ACTIONS(1914), - [anon_sym_err_GT_GT] = ACTIONS(1912), - [anon_sym_out_GT_GT] = ACTIONS(1912), - [anon_sym_e_GT_GT] = ACTIONS(1912), - [anon_sym_o_GT_GT] = ACTIONS(1912), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1912), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1912), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1912), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1912), + [STATE(833)] = { + [sym_cell_path] = STATE(1353), + [sym_path] = STATE(715), + [sym_comment] = STATE(833), + [aux_sym__where_predicate_lhs_repeat1] = STATE(526), + [ts_builtin_sym_end] = ACTIONS(1891), + [anon_sym_in] = ACTIONS(1891), + [sym__newline] = ACTIONS(1891), + [anon_sym_SEMI] = ACTIONS(1891), + [anon_sym_PIPE] = ACTIONS(1891), + [anon_sym_err_GT_PIPE] = ACTIONS(1891), + [anon_sym_out_GT_PIPE] = ACTIONS(1891), + [anon_sym_e_GT_PIPE] = ACTIONS(1891), + [anon_sym_o_GT_PIPE] = ACTIONS(1891), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1891), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1891), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1891), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1891), + [anon_sym_GT2] = ACTIONS(1893), + [anon_sym_DASH2] = ACTIONS(1891), + [anon_sym_STAR2] = ACTIONS(1893), + [anon_sym_and2] = ACTIONS(1891), + [anon_sym_xor2] = ACTIONS(1891), + [anon_sym_or2] = ACTIONS(1891), + [anon_sym_not_DASHin2] = ACTIONS(1891), + [anon_sym_has2] = ACTIONS(1891), + [anon_sym_not_DASHhas2] = ACTIONS(1891), + [anon_sym_starts_DASHwith2] = ACTIONS(1891), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1891), + [anon_sym_ends_DASHwith2] = ACTIONS(1891), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1891), + [anon_sym_EQ_EQ2] = ACTIONS(1891), + [anon_sym_BANG_EQ2] = ACTIONS(1891), + [anon_sym_LT2] = ACTIONS(1893), + [anon_sym_LT_EQ2] = ACTIONS(1891), + [anon_sym_GT_EQ2] = ACTIONS(1891), + [anon_sym_EQ_TILDE2] = ACTIONS(1891), + [anon_sym_BANG_TILDE2] = ACTIONS(1891), + [anon_sym_like2] = ACTIONS(1891), + [anon_sym_not_DASHlike2] = ACTIONS(1891), + [anon_sym_STAR_STAR2] = ACTIONS(1891), + [anon_sym_PLUS_PLUS2] = ACTIONS(1891), + [anon_sym_SLASH2] = ACTIONS(1893), + [anon_sym_mod2] = ACTIONS(1891), + [anon_sym_SLASH_SLASH2] = ACTIONS(1891), + [anon_sym_PLUS2] = ACTIONS(1893), + [anon_sym_bit_DASHshl2] = ACTIONS(1891), + [anon_sym_bit_DASHshr2] = ACTIONS(1891), + [anon_sym_bit_DASHand2] = ACTIONS(1891), + [anon_sym_bit_DASHxor2] = ACTIONS(1891), + [anon_sym_bit_DASHor2] = ACTIONS(1891), + [anon_sym_DOT2] = ACTIONS(2358), + [anon_sym_err_GT] = ACTIONS(1893), + [anon_sym_out_GT] = ACTIONS(1893), + [anon_sym_e_GT] = ACTIONS(1893), + [anon_sym_o_GT] = ACTIONS(1893), + [anon_sym_err_PLUSout_GT] = ACTIONS(1893), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1893), + [anon_sym_o_PLUSe_GT] = ACTIONS(1893), + [anon_sym_e_PLUSo_GT] = ACTIONS(1893), + [anon_sym_err_GT_GT] = ACTIONS(1891), + [anon_sym_out_GT_GT] = ACTIONS(1891), + [anon_sym_e_GT_GT] = ACTIONS(1891), + [anon_sym_o_GT_GT] = ACTIONS(1891), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1891), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1891), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1891), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1891), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(867)] = { - [sym_cmd_identifier] = STATE(4276), - [sym_expr_parenthesized] = STATE(5339), - [sym__spread_parenthesized] = STATE(4883), - [sym__spread_variable] = STATE(4892), - [sym_val_variable] = STATE(5339), - [sym_val_number] = STATE(5339), - [sym__val_number_decimal] = STATE(1984), - [sym__val_number] = STATE(707), - [sym_val_string] = STATE(5339), - [sym__raw_str] = STATE(2266), - [sym__str_double_quotes] = STATE(2266), - [sym__str_single_quotes] = STATE(2266), - [sym__str_back_ticks] = STATE(2266), - [sym_val_interpolated] = STATE(5339), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym__spread_record] = STATE(4883), - [sym_record_entry] = STATE(4695), - [sym__record_key] = STATE(5341), - [sym_comment] = STATE(867), - [aux_sym_record_body_repeat1] = STATE(881), - [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(1782), - [anon_sym_false] = ACTIONS(1782), - [anon_sym_null] = ACTIONS(1782), - [aux_sym_cmd_identifier_token3] = ACTIONS(1784), - [aux_sym_cmd_identifier_token4] = ACTIONS(1784), - [aux_sym_cmd_identifier_token5] = ACTIONS(1784), - [anon_sym_LPAREN] = ACTIONS(1788), - [anon_sym_DOLLAR] = ACTIONS(1790), - [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(1794), - [aux_sym__val_number_decimal_token2] = ACTIONS(1796), - [aux_sym__val_number_decimal_token3] = ACTIONS(1798), - [aux_sym__val_number_decimal_token4] = ACTIONS(1798), - [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(1800), - [anon_sym_SQUOTE] = ACTIONS(1802), - [anon_sym_BQUOTE] = ACTIONS(1804), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), + [STATE(834)] = { + [sym_expr_unary] = STATE(1320), + [sym__expr_unary_minus] = STATE(1296), + [sym_expr_binary] = STATE(1320), + [sym__expr_binary_expression] = STATE(1337), + [sym_expr_parenthesized] = STATE(935), + [sym_val_range] = STATE(1320), + [sym__val_range] = STATE(4844), + [sym__value] = STATE(1320), + [sym_val_nothing] = STATE(1316), + [sym_val_bool] = STATE(985), + [sym_val_variable] = STATE(912), + [sym_val_cellpath] = STATE(1316), + [sym_val_number] = STATE(1316), + [sym__val_number_decimal] = STATE(471), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1316), + [sym_val_filesize] = STATE(1316), + [sym_val_binary] = STATE(1316), + [sym_val_string] = STATE(1316), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1316), + [sym__inter_single_quotes] = STATE(1277), + [sym__inter_double_quotes] = STATE(1311), + [sym_val_list] = STATE(1316), + [sym_val_record] = STATE(1316), + [sym_val_table] = STATE(1316), + [sym_val_closure] = STATE(1316), + [sym_unquoted] = STATE(1007), + [sym__unquoted_with_expr] = STATE(1338), + [sym__unquoted_anonymous_prefix] = STATE(4844), + [sym_comment] = STATE(834), + [anon_sym_true] = ACTIONS(2489), + [anon_sym_false] = ACTIONS(2489), + [anon_sym_null] = ACTIONS(2491), + [aux_sym_cmd_identifier_token3] = ACTIONS(2493), + [aux_sym_cmd_identifier_token4] = ACTIONS(2493), + [aux_sym_cmd_identifier_token5] = ACTIONS(2493), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2495), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2497), + [anon_sym_DOT_DOT_LT] = ACTIONS(2497), + [aux_sym__val_number_decimal_token1] = ACTIONS(2499), + [aux_sym__val_number_decimal_token2] = ACTIONS(2501), + [aux_sym__val_number_decimal_token3] = ACTIONS(2503), + [aux_sym__val_number_decimal_token4] = ACTIONS(2503), + [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(2505), + [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(2403), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1806), + [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(868)] = { - [sym_expr_unary] = STATE(936), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(936), - [sym__expr_binary_expression] = STATE(1668), - [sym_expr_parenthesized] = STATE(703), - [sym_val_range] = STATE(936), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(936), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1479), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1410), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(706), - [sym__unquoted_with_expr] = STATE(951), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [sym_comment] = STATE(868), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2065), - [aux_sym_cmd_identifier_token3] = ACTIONS(2067), - [aux_sym_cmd_identifier_token4] = ACTIONS(2067), - [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [STATE(835)] = { + [sym_expr_unary] = STATE(940), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(940), + [sym__expr_binary_expression] = STATE(2212), + [sym_expr_parenthesized] = STATE(1987), + [sym_val_range] = STATE(940), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(940), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(2013), + [sym_val_variable] = STATE(1967), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1785), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(683), + [sym__unquoted_with_expr] = STATE(971), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(835), + [anon_sym_true] = ACTIONS(2507), + [anon_sym_false] = ACTIONS(2507), + [anon_sym_null] = ACTIONS(2509), + [aux_sym_cmd_identifier_token3] = ACTIONS(2511), + [aux_sym_cmd_identifier_token4] = ACTIONS(2511), + [aux_sym_cmd_identifier_token5] = ACTIONS(2511), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2069), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), - [anon_sym_DOT_DOT_LT] = ACTIONS(2071), - [aux_sym__val_number_decimal_token1] = ACTIONS(2073), - [aux_sym__val_number_decimal_token2] = ACTIONS(2075), - [aux_sym__val_number_decimal_token3] = ACTIONS(2077), - [aux_sym__val_number_decimal_token4] = ACTIONS(2077), + [anon_sym_DOT_DOT] = ACTIONS(2513), + [aux_sym_expr_unary_token1] = ACTIONS(2515), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2517), + [anon_sym_DOT_DOT_LT] = ACTIONS(2517), + [aux_sym__val_number_decimal_token1] = ACTIONS(2519), + [aux_sym__val_number_decimal_token2] = ACTIONS(2521), + [aux_sym__val_number_decimal_token3] = ACTIONS(2523), + [aux_sym__val_number_decimal_token4] = ACTIONS(2523), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2079), + [sym_val_date] = ACTIONS(2525), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(869)] = { - [sym_expr_unary] = STATE(936), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(936), - [sym__expr_binary_expression] = STATE(1669), - [sym_expr_parenthesized] = STATE(703), - [sym_val_range] = STATE(936), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(936), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1479), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1410), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(709), - [sym__unquoted_with_expr] = STATE(967), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [sym_comment] = STATE(869), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2065), - [aux_sym_cmd_identifier_token3] = ACTIONS(2067), - [aux_sym_cmd_identifier_token4] = ACTIONS(2067), - [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [STATE(836)] = { + [sym_expr_unary] = STATE(940), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(940), + [sym__expr_binary_expression] = STATE(2228), + [sym_expr_parenthesized] = STATE(1987), + [sym_val_range] = STATE(940), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(940), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(2013), + [sym_val_variable] = STATE(1967), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1785), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(684), + [sym__unquoted_with_expr] = STATE(973), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(836), + [anon_sym_true] = ACTIONS(2507), + [anon_sym_false] = ACTIONS(2507), + [anon_sym_null] = ACTIONS(2509), + [aux_sym_cmd_identifier_token3] = ACTIONS(2511), + [aux_sym_cmd_identifier_token4] = ACTIONS(2511), + [aux_sym_cmd_identifier_token5] = ACTIONS(2511), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2069), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), - [anon_sym_DOT_DOT_LT] = ACTIONS(2071), - [aux_sym__val_number_decimal_token1] = ACTIONS(2073), - [aux_sym__val_number_decimal_token2] = ACTIONS(2075), - [aux_sym__val_number_decimal_token3] = ACTIONS(2077), - [aux_sym__val_number_decimal_token4] = ACTIONS(2077), + [anon_sym_DOT_DOT] = ACTIONS(2513), + [aux_sym_expr_unary_token1] = ACTIONS(2515), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2517), + [anon_sym_DOT_DOT_LT] = ACTIONS(2517), + [aux_sym__val_number_decimal_token1] = ACTIONS(2519), + [aux_sym__val_number_decimal_token2] = ACTIONS(2521), + [aux_sym__val_number_decimal_token3] = ACTIONS(2523), + [aux_sym__val_number_decimal_token4] = ACTIONS(2523), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2079), + [sym_val_date] = ACTIONS(2525), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(870)] = { - [sym_expr_unary] = STATE(936), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(936), - [sym__expr_binary_expression] = STATE(1670), - [sym_expr_parenthesized] = STATE(703), - [sym_val_range] = STATE(936), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(936), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1479), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1410), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(710), - [sym__unquoted_with_expr] = STATE(968), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [sym_comment] = STATE(870), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2065), - [aux_sym_cmd_identifier_token3] = ACTIONS(2067), - [aux_sym_cmd_identifier_token4] = ACTIONS(2067), - [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [STATE(837)] = { + [sym_expr_unary] = STATE(940), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(940), + [sym__expr_binary_expression] = STATE(2243), + [sym_expr_parenthesized] = STATE(1987), + [sym_val_range] = STATE(940), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(940), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(2013), + [sym_val_variable] = STATE(1967), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1785), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(685), + [sym__unquoted_with_expr] = STATE(947), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(837), + [anon_sym_true] = ACTIONS(2507), + [anon_sym_false] = ACTIONS(2507), + [anon_sym_null] = ACTIONS(2509), + [aux_sym_cmd_identifier_token3] = ACTIONS(2511), + [aux_sym_cmd_identifier_token4] = ACTIONS(2511), + [aux_sym_cmd_identifier_token5] = ACTIONS(2511), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2069), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), - [anon_sym_DOT_DOT_LT] = ACTIONS(2071), - [aux_sym__val_number_decimal_token1] = ACTIONS(2073), - [aux_sym__val_number_decimal_token2] = ACTIONS(2075), - [aux_sym__val_number_decimal_token3] = ACTIONS(2077), - [aux_sym__val_number_decimal_token4] = ACTIONS(2077), + [anon_sym_DOT_DOT] = ACTIONS(2513), + [aux_sym_expr_unary_token1] = ACTIONS(2515), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2517), + [anon_sym_DOT_DOT_LT] = ACTIONS(2517), + [aux_sym__val_number_decimal_token1] = ACTIONS(2519), + [aux_sym__val_number_decimal_token2] = ACTIONS(2521), + [aux_sym__val_number_decimal_token3] = ACTIONS(2523), + [aux_sym__val_number_decimal_token4] = ACTIONS(2523), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2079), + [sym_val_date] = ACTIONS(2525), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(871)] = { - [sym_expr_unary] = STATE(936), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(936), - [sym__expr_binary_expression] = STATE(1671), - [sym_expr_parenthesized] = STATE(703), - [sym_val_range] = STATE(936), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(936), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1479), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1410), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(711), - [sym__unquoted_with_expr] = STATE(907), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [sym_comment] = STATE(871), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2065), - [aux_sym_cmd_identifier_token3] = ACTIONS(2067), - [aux_sym_cmd_identifier_token4] = ACTIONS(2067), - [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [STATE(838)] = { + [sym_expr_unary] = STATE(940), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(940), + [sym__expr_binary_expression] = STATE(2213), + [sym_expr_parenthesized] = STATE(1987), + [sym_val_range] = STATE(940), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(940), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(2013), + [sym_val_variable] = STATE(1967), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1785), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(686), + [sym__unquoted_with_expr] = STATE(956), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(838), + [anon_sym_true] = ACTIONS(2507), + [anon_sym_false] = ACTIONS(2507), + [anon_sym_null] = ACTIONS(2509), + [aux_sym_cmd_identifier_token3] = ACTIONS(2511), + [aux_sym_cmd_identifier_token4] = ACTIONS(2511), + [aux_sym_cmd_identifier_token5] = ACTIONS(2511), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2069), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), - [anon_sym_DOT_DOT_LT] = ACTIONS(2071), - [aux_sym__val_number_decimal_token1] = ACTIONS(2073), - [aux_sym__val_number_decimal_token2] = ACTIONS(2075), - [aux_sym__val_number_decimal_token3] = ACTIONS(2077), - [aux_sym__val_number_decimal_token4] = ACTIONS(2077), + [anon_sym_DOT_DOT] = ACTIONS(2513), + [aux_sym_expr_unary_token1] = ACTIONS(2515), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2517), + [anon_sym_DOT_DOT_LT] = ACTIONS(2517), + [aux_sym__val_number_decimal_token1] = ACTIONS(2519), + [aux_sym__val_number_decimal_token2] = ACTIONS(2521), + [aux_sym__val_number_decimal_token3] = ACTIONS(2523), + [aux_sym__val_number_decimal_token4] = ACTIONS(2523), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2079), + [sym_val_date] = ACTIONS(2525), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(872)] = { - [sym_expr_unary] = STATE(936), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(936), - [sym__expr_binary_expression] = STATE(1672), - [sym_expr_parenthesized] = STATE(703), - [sym_val_range] = STATE(936), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(936), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1479), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1410), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(692), - [sym__unquoted_with_expr] = STATE(908), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [sym_comment] = STATE(872), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2065), - [aux_sym_cmd_identifier_token3] = ACTIONS(2067), - [aux_sym_cmd_identifier_token4] = ACTIONS(2067), - [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [STATE(839)] = { + [sym_expr_unary] = STATE(940), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(940), + [sym__expr_binary_expression] = STATE(2232), + [sym_expr_parenthesized] = STATE(1987), + [sym_val_range] = STATE(940), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(940), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(2013), + [sym_val_variable] = STATE(1967), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1785), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(687), + [sym__unquoted_with_expr] = STATE(924), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(839), + [anon_sym_true] = ACTIONS(2507), + [anon_sym_false] = ACTIONS(2507), + [anon_sym_null] = ACTIONS(2509), + [aux_sym_cmd_identifier_token3] = ACTIONS(2511), + [aux_sym_cmd_identifier_token4] = ACTIONS(2511), + [aux_sym_cmd_identifier_token5] = ACTIONS(2511), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2069), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), - [anon_sym_DOT_DOT_LT] = ACTIONS(2071), - [aux_sym__val_number_decimal_token1] = ACTIONS(2073), - [aux_sym__val_number_decimal_token2] = ACTIONS(2075), - [aux_sym__val_number_decimal_token3] = ACTIONS(2077), - [aux_sym__val_number_decimal_token4] = ACTIONS(2077), + [anon_sym_DOT_DOT] = ACTIONS(2513), + [aux_sym_expr_unary_token1] = ACTIONS(2515), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2517), + [anon_sym_DOT_DOT_LT] = ACTIONS(2517), + [aux_sym__val_number_decimal_token1] = ACTIONS(2519), + [aux_sym__val_number_decimal_token2] = ACTIONS(2521), + [aux_sym__val_number_decimal_token3] = ACTIONS(2523), + [aux_sym__val_number_decimal_token4] = ACTIONS(2523), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2079), + [sym_val_date] = ACTIONS(2525), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(873)] = { - [sym_expr_unary] = STATE(936), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(936), - [sym__expr_binary_expression] = STATE(1673), - [sym_expr_parenthesized] = STATE(703), - [sym_val_range] = STATE(936), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(936), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1479), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1410), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(697), - [sym__unquoted_with_expr] = STATE(910), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [sym_comment] = STATE(873), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2065), - [aux_sym_cmd_identifier_token3] = ACTIONS(2067), - [aux_sym_cmd_identifier_token4] = ACTIONS(2067), - [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [STATE(840)] = { + [sym_expr_unary] = STATE(940), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(940), + [sym__expr_binary_expression] = STATE(2233), + [sym_expr_parenthesized] = STATE(1987), + [sym_val_range] = STATE(940), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(940), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(2013), + [sym_val_variable] = STATE(1967), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1785), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(688), + [sym__unquoted_with_expr] = STATE(943), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(840), + [anon_sym_true] = ACTIONS(2507), + [anon_sym_false] = ACTIONS(2507), + [anon_sym_null] = ACTIONS(2509), + [aux_sym_cmd_identifier_token3] = ACTIONS(2511), + [aux_sym_cmd_identifier_token4] = ACTIONS(2511), + [aux_sym_cmd_identifier_token5] = ACTIONS(2511), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2069), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), - [anon_sym_DOT_DOT_LT] = ACTIONS(2071), - [aux_sym__val_number_decimal_token1] = ACTIONS(2073), - [aux_sym__val_number_decimal_token2] = ACTIONS(2075), - [aux_sym__val_number_decimal_token3] = ACTIONS(2077), - [aux_sym__val_number_decimal_token4] = ACTIONS(2077), + [anon_sym_DOT_DOT] = ACTIONS(2513), + [aux_sym_expr_unary_token1] = ACTIONS(2515), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2517), + [anon_sym_DOT_DOT_LT] = ACTIONS(2517), + [aux_sym__val_number_decimal_token1] = ACTIONS(2519), + [aux_sym__val_number_decimal_token2] = ACTIONS(2521), + [aux_sym__val_number_decimal_token3] = ACTIONS(2523), + [aux_sym__val_number_decimal_token4] = ACTIONS(2523), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2079), + [sym_val_date] = ACTIONS(2525), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(874)] = { - [sym_expr_unary] = STATE(936), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(936), - [sym__expr_binary_expression] = STATE(1674), - [sym_expr_parenthesized] = STATE(703), - [sym_val_range] = STATE(936), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(936), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1479), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1410), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(705), - [sym__unquoted_with_expr] = STATE(913), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [sym_comment] = STATE(874), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2065), - [aux_sym_cmd_identifier_token3] = ACTIONS(2067), - [aux_sym_cmd_identifier_token4] = ACTIONS(2067), - [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [STATE(841)] = { + [sym_expr_unary] = STATE(940), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(940), + [sym__expr_binary_expression] = STATE(2236), + [sym_expr_parenthesized] = STATE(1987), + [sym_val_range] = STATE(940), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(940), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(2013), + [sym_val_variable] = STATE(1967), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1785), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(689), + [sym__unquoted_with_expr] = STATE(921), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(841), + [anon_sym_true] = ACTIONS(2507), + [anon_sym_false] = ACTIONS(2507), + [anon_sym_null] = ACTIONS(2509), + [aux_sym_cmd_identifier_token3] = ACTIONS(2511), + [aux_sym_cmd_identifier_token4] = ACTIONS(2511), + [aux_sym_cmd_identifier_token5] = ACTIONS(2511), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2069), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), - [anon_sym_DOT_DOT_LT] = ACTIONS(2071), - [aux_sym__val_number_decimal_token1] = ACTIONS(2073), - [aux_sym__val_number_decimal_token2] = ACTIONS(2075), - [aux_sym__val_number_decimal_token3] = ACTIONS(2077), - [aux_sym__val_number_decimal_token4] = ACTIONS(2077), + [anon_sym_DOT_DOT] = ACTIONS(2513), + [aux_sym_expr_unary_token1] = ACTIONS(2515), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2517), + [anon_sym_DOT_DOT_LT] = ACTIONS(2517), + [aux_sym__val_number_decimal_token1] = ACTIONS(2519), + [aux_sym__val_number_decimal_token2] = ACTIONS(2521), + [aux_sym__val_number_decimal_token3] = ACTIONS(2523), + [aux_sym__val_number_decimal_token4] = ACTIONS(2523), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2079), + [sym_val_date] = ACTIONS(2525), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(875)] = { - [sym_expr_unary] = STATE(936), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(936), - [sym__expr_binary_expression] = STATE(1675), - [sym_expr_parenthesized] = STATE(703), - [sym_val_range] = STATE(936), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(936), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1479), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1410), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(708), - [sym__unquoted_with_expr] = STATE(915), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [sym_comment] = STATE(875), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2065), - [aux_sym_cmd_identifier_token3] = ACTIONS(2067), - [aux_sym_cmd_identifier_token4] = ACTIONS(2067), - [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [STATE(842)] = { + [sym_expr_unary] = STATE(940), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(940), + [sym__expr_binary_expression] = STATE(2237), + [sym_expr_parenthesized] = STATE(1987), + [sym_val_range] = STATE(940), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(940), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(2013), + [sym_val_variable] = STATE(1967), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1785), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(690), + [sym__unquoted_with_expr] = STATE(950), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(842), + [anon_sym_true] = ACTIONS(2507), + [anon_sym_false] = ACTIONS(2507), + [anon_sym_null] = ACTIONS(2509), + [aux_sym_cmd_identifier_token3] = ACTIONS(2511), + [aux_sym_cmd_identifier_token4] = ACTIONS(2511), + [aux_sym_cmd_identifier_token5] = ACTIONS(2511), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2069), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), - [anon_sym_DOT_DOT_LT] = ACTIONS(2071), - [aux_sym__val_number_decimal_token1] = ACTIONS(2073), - [aux_sym__val_number_decimal_token2] = ACTIONS(2075), - [aux_sym__val_number_decimal_token3] = ACTIONS(2077), - [aux_sym__val_number_decimal_token4] = ACTIONS(2077), + [anon_sym_DOT_DOT] = ACTIONS(2513), + [aux_sym_expr_unary_token1] = ACTIONS(2515), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2517), + [anon_sym_DOT_DOT_LT] = ACTIONS(2517), + [aux_sym__val_number_decimal_token1] = ACTIONS(2519), + [aux_sym__val_number_decimal_token2] = ACTIONS(2521), + [aux_sym__val_number_decimal_token3] = ACTIONS(2523), + [aux_sym__val_number_decimal_token4] = ACTIONS(2523), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2079), + [sym_val_date] = ACTIONS(2525), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(876)] = { - [sym_expr_unary] = STATE(936), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(936), - [sym__expr_binary_expression] = STATE(917), - [sym_expr_parenthesized] = STATE(703), - [sym_val_range] = STATE(936), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(936), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1479), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1410), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(714), - [sym__unquoted_with_expr] = STATE(919), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [sym_comment] = STATE(876), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2065), - [aux_sym_cmd_identifier_token3] = ACTIONS(2067), - [aux_sym_cmd_identifier_token4] = ACTIONS(2067), - [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [STATE(843)] = { + [sym_expr_unary] = STATE(940), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(940), + [sym__expr_binary_expression] = STATE(955), + [sym_expr_parenthesized] = STATE(1987), + [sym_val_range] = STATE(940), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(940), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(2013), + [sym_val_variable] = STATE(1967), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1785), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(691), + [sym__unquoted_with_expr] = STATE(961), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(843), + [anon_sym_true] = ACTIONS(2507), + [anon_sym_false] = ACTIONS(2507), + [anon_sym_null] = ACTIONS(2509), + [aux_sym_cmd_identifier_token3] = ACTIONS(2511), + [aux_sym_cmd_identifier_token4] = ACTIONS(2511), + [aux_sym_cmd_identifier_token5] = ACTIONS(2511), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2069), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), - [anon_sym_DOT_DOT_LT] = ACTIONS(2071), - [aux_sym__val_number_decimal_token1] = ACTIONS(2073), - [aux_sym__val_number_decimal_token2] = ACTIONS(2075), - [aux_sym__val_number_decimal_token3] = ACTIONS(2077), - [aux_sym__val_number_decimal_token4] = ACTIONS(2077), + [anon_sym_DOT_DOT] = ACTIONS(2513), + [aux_sym_expr_unary_token1] = ACTIONS(2515), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2517), + [anon_sym_DOT_DOT_LT] = ACTIONS(2517), + [aux_sym__val_number_decimal_token1] = ACTIONS(2519), + [aux_sym__val_number_decimal_token2] = ACTIONS(2521), + [aux_sym__val_number_decimal_token3] = ACTIONS(2523), + [aux_sym__val_number_decimal_token4] = ACTIONS(2523), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2079), + [sym_val_date] = ACTIONS(2525), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(877)] = { - [sym_expr_unary] = STATE(936), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(936), - [sym__expr_binary_expression] = STATE(1676), - [sym_expr_parenthesized] = STATE(703), - [sym_val_range] = STATE(936), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(936), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1479), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1410), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(701), - [sym__unquoted_with_expr] = STATE(922), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [sym_comment] = STATE(877), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2065), - [aux_sym_cmd_identifier_token3] = ACTIONS(2067), - [aux_sym_cmd_identifier_token4] = ACTIONS(2067), - [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [STATE(844)] = { + [sym_expr_unary] = STATE(940), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(940), + [sym__expr_binary_expression] = STATE(2209), + [sym_expr_parenthesized] = STATE(1987), + [sym_val_range] = STATE(940), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(940), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(2013), + [sym_val_variable] = STATE(1967), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1785), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(693), + [sym__unquoted_with_expr] = STATE(948), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(844), + [anon_sym_true] = ACTIONS(2507), + [anon_sym_false] = ACTIONS(2507), + [anon_sym_null] = ACTIONS(2509), + [aux_sym_cmd_identifier_token3] = ACTIONS(2511), + [aux_sym_cmd_identifier_token4] = ACTIONS(2511), + [aux_sym_cmd_identifier_token5] = ACTIONS(2511), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2069), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), - [anon_sym_DOT_DOT_LT] = ACTIONS(2071), - [aux_sym__val_number_decimal_token1] = ACTIONS(2073), - [aux_sym__val_number_decimal_token2] = ACTIONS(2075), - [aux_sym__val_number_decimal_token3] = ACTIONS(2077), - [aux_sym__val_number_decimal_token4] = ACTIONS(2077), + [anon_sym_DOT_DOT] = ACTIONS(2513), + [aux_sym_expr_unary_token1] = ACTIONS(2515), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2517), + [anon_sym_DOT_DOT_LT] = ACTIONS(2517), + [aux_sym__val_number_decimal_token1] = ACTIONS(2519), + [aux_sym__val_number_decimal_token2] = ACTIONS(2521), + [aux_sym__val_number_decimal_token3] = ACTIONS(2523), + [aux_sym__val_number_decimal_token4] = ACTIONS(2523), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2079), + [sym_val_date] = ACTIONS(2525), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(878)] = { - [sym_expr_unary] = STATE(936), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(936), - [sym__expr_binary_expression] = STATE(1677), - [sym_expr_parenthesized] = STATE(703), - [sym_val_range] = STATE(936), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(936), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1479), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1410), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(683), - [sym__unquoted_with_expr] = STATE(925), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [sym_comment] = STATE(878), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2065), - [aux_sym_cmd_identifier_token3] = ACTIONS(2067), - [aux_sym_cmd_identifier_token4] = ACTIONS(2067), - [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [STATE(845)] = { + [sym_expr_unary] = STATE(940), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(940), + [sym__expr_binary_expression] = STATE(2219), + [sym_expr_parenthesized] = STATE(1987), + [sym_val_range] = STATE(940), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(940), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(2013), + [sym_val_variable] = STATE(1967), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1785), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(694), + [sym__unquoted_with_expr] = STATE(942), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(845), + [anon_sym_true] = ACTIONS(2507), + [anon_sym_false] = ACTIONS(2507), + [anon_sym_null] = ACTIONS(2509), + [aux_sym_cmd_identifier_token3] = ACTIONS(2511), + [aux_sym_cmd_identifier_token4] = ACTIONS(2511), + [aux_sym_cmd_identifier_token5] = ACTIONS(2511), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2069), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), - [anon_sym_DOT_DOT_LT] = ACTIONS(2071), - [aux_sym__val_number_decimal_token1] = ACTIONS(2073), - [aux_sym__val_number_decimal_token2] = ACTIONS(2075), - [aux_sym__val_number_decimal_token3] = ACTIONS(2077), - [aux_sym__val_number_decimal_token4] = ACTIONS(2077), + [anon_sym_DOT_DOT] = ACTIONS(2513), + [aux_sym_expr_unary_token1] = ACTIONS(2515), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2517), + [anon_sym_DOT_DOT_LT] = ACTIONS(2517), + [aux_sym__val_number_decimal_token1] = ACTIONS(2519), + [aux_sym__val_number_decimal_token2] = ACTIONS(2521), + [aux_sym__val_number_decimal_token3] = ACTIONS(2523), + [aux_sym__val_number_decimal_token4] = ACTIONS(2523), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2079), + [sym_val_date] = ACTIONS(2525), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(879)] = { - [sym_expr_unary] = STATE(936), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(936), - [sym__expr_binary_expression] = STATE(1678), - [sym_expr_parenthesized] = STATE(703), - [sym_val_range] = STATE(936), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(936), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1479), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1410), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(684), - [sym__unquoted_with_expr] = STATE(926), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [sym_comment] = STATE(879), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2065), - [aux_sym_cmd_identifier_token3] = ACTIONS(2067), - [aux_sym_cmd_identifier_token4] = ACTIONS(2067), - [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [STATE(846)] = { + [sym_expr_unary] = STATE(940), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(940), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(1987), + [sym_val_range] = STATE(940), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(940), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(2013), + [sym_val_variable] = STATE(1967), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1785), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(695), + [sym__unquoted_with_expr] = STATE(945), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(846), + [anon_sym_true] = ACTIONS(2507), + [anon_sym_false] = ACTIONS(2507), + [anon_sym_null] = ACTIONS(2509), + [aux_sym_cmd_identifier_token3] = ACTIONS(2511), + [aux_sym_cmd_identifier_token4] = ACTIONS(2511), + [aux_sym_cmd_identifier_token5] = ACTIONS(2511), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2069), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), - [anon_sym_DOT_DOT_LT] = ACTIONS(2071), - [aux_sym__val_number_decimal_token1] = ACTIONS(2073), - [aux_sym__val_number_decimal_token2] = ACTIONS(2075), - [aux_sym__val_number_decimal_token3] = ACTIONS(2077), - [aux_sym__val_number_decimal_token4] = ACTIONS(2077), + [anon_sym_DOT_DOT] = ACTIONS(2513), + [aux_sym_expr_unary_token1] = ACTIONS(2515), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2517), + [anon_sym_DOT_DOT_LT] = ACTIONS(2517), + [aux_sym__val_number_decimal_token1] = ACTIONS(2519), + [aux_sym__val_number_decimal_token2] = ACTIONS(2521), + [aux_sym__val_number_decimal_token3] = ACTIONS(2523), + [aux_sym__val_number_decimal_token4] = ACTIONS(2523), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2079), + [sym_val_date] = ACTIONS(2525), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(880)] = { - [sym_expr_unary] = STATE(936), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(936), - [sym__expr_binary_expression] = STATE(1679), - [sym_expr_parenthesized] = STATE(703), - [sym_val_range] = STATE(936), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(936), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1479), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1410), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(685), - [sym__unquoted_with_expr] = STATE(927), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [sym_comment] = STATE(880), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2065), - [aux_sym_cmd_identifier_token3] = ACTIONS(2067), - [aux_sym_cmd_identifier_token4] = ACTIONS(2067), - [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [STATE(847)] = { + [sym_expr_unary] = STATE(940), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(940), + [sym__expr_binary_expression] = STATE(2223), + [sym_expr_parenthesized] = STATE(1987), + [sym_val_range] = STATE(940), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(940), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(2013), + [sym_val_variable] = STATE(1967), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1785), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(697), + [sym__unquoted_with_expr] = STATE(976), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(847), + [anon_sym_true] = ACTIONS(2507), + [anon_sym_false] = ACTIONS(2507), + [anon_sym_null] = ACTIONS(2509), + [aux_sym_cmd_identifier_token3] = ACTIONS(2511), + [aux_sym_cmd_identifier_token4] = ACTIONS(2511), + [aux_sym_cmd_identifier_token5] = ACTIONS(2511), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2069), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2071), - [anon_sym_DOT_DOT_LT] = ACTIONS(2071), - [aux_sym__val_number_decimal_token1] = ACTIONS(2073), - [aux_sym__val_number_decimal_token2] = ACTIONS(2075), - [aux_sym__val_number_decimal_token3] = ACTIONS(2077), - [aux_sym__val_number_decimal_token4] = ACTIONS(2077), + [anon_sym_DOT_DOT] = ACTIONS(2513), + [aux_sym_expr_unary_token1] = ACTIONS(2515), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2517), + [anon_sym_DOT_DOT_LT] = ACTIONS(2517), + [aux_sym__val_number_decimal_token1] = ACTIONS(2519), + [aux_sym__val_number_decimal_token2] = ACTIONS(2521), + [aux_sym__val_number_decimal_token3] = ACTIONS(2523), + [aux_sym__val_number_decimal_token4] = ACTIONS(2523), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2079), + [sym_val_date] = ACTIONS(2525), [anon_sym_DQUOTE] = 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(1936), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(881)] = { - [sym_cmd_identifier] = STATE(4276), - [sym_expr_parenthesized] = STATE(5339), - [sym__spread_parenthesized] = STATE(4883), - [sym__spread_variable] = STATE(4892), - [sym_val_variable] = STATE(5339), - [sym_val_number] = STATE(5339), - [sym__val_number_decimal] = STATE(1984), - [sym__val_number] = STATE(707), - [sym_val_string] = STATE(5339), - [sym__raw_str] = STATE(2266), - [sym__str_double_quotes] = STATE(2266), - [sym__str_single_quotes] = STATE(2266), - [sym__str_back_ticks] = STATE(2266), - [sym_val_interpolated] = STATE(5339), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym__spread_record] = STATE(4883), - [sym_record_entry] = STATE(4853), - [sym__record_key] = STATE(5341), - [sym_comment] = STATE(881), - [aux_sym_record_body_repeat1] = STATE(881), - [anon_sym_export] = ACTIONS(2446), - [anon_sym_alias] = ACTIONS(2449), - [anon_sym_let] = ACTIONS(2449), - [anon_sym_mut] = ACTIONS(2449), - [anon_sym_const] = ACTIONS(2449), - [aux_sym_cmd_identifier_token1] = ACTIONS(2452), - [anon_sym_def] = ACTIONS(2449), - [anon_sym_use] = ACTIONS(2449), - [anon_sym_export_DASHenv] = ACTIONS(2449), - [anon_sym_extern] = ACTIONS(2449), - [anon_sym_module] = ACTIONS(2449), - [anon_sym_for] = ACTIONS(2449), - [anon_sym_loop] = ACTIONS(2449), - [anon_sym_while] = ACTIONS(2449), - [anon_sym_if] = ACTIONS(2449), - [anon_sym_else] = ACTIONS(2449), - [anon_sym_try] = ACTIONS(2449), - [anon_sym_catch] = ACTIONS(2449), - [anon_sym_match] = ACTIONS(2449), - [anon_sym_in] = ACTIONS(2446), - [anon_sym_true] = ACTIONS(2455), - [anon_sym_false] = ACTIONS(2455), - [anon_sym_null] = ACTIONS(2455), - [aux_sym_cmd_identifier_token3] = ACTIONS(2458), - [aux_sym_cmd_identifier_token4] = ACTIONS(2458), - [aux_sym_cmd_identifier_token5] = ACTIONS(2458), - [anon_sym_LPAREN] = ACTIONS(2461), - [anon_sym_DOLLAR] = ACTIONS(2464), - [anon_sym_DASH2] = ACTIONS(2467), - [anon_sym_PLUS2] = ACTIONS(2467), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2470), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2473), - [aux_sym__val_number_decimal_token1] = ACTIONS(2476), - [aux_sym__val_number_decimal_token2] = ACTIONS(2479), - [aux_sym__val_number_decimal_token3] = ACTIONS(2482), - [aux_sym__val_number_decimal_token4] = ACTIONS(2482), - [aux_sym__val_number_token1] = ACTIONS(2485), - [aux_sym__val_number_token2] = ACTIONS(2485), - [aux_sym__val_number_token3] = ACTIONS(2485), - [anon_sym_DQUOTE] = ACTIONS(2488), - [anon_sym_SQUOTE] = ACTIONS(2491), - [anon_sym_BQUOTE] = ACTIONS(2494), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2497), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2500), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2503), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2506), + [STATE(848)] = { + [sym_comment] = STATE(848), + [anon_sym_in] = ACTIONS(2527), + [sym__newline] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2527), + [anon_sym_PIPE] = ACTIONS(2527), + [anon_sym_err_GT_PIPE] = ACTIONS(2527), + [anon_sym_out_GT_PIPE] = ACTIONS(2527), + [anon_sym_e_GT_PIPE] = ACTIONS(2527), + [anon_sym_o_GT_PIPE] = ACTIONS(2527), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2527), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2527), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2527), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2527), + [anon_sym_RPAREN] = ACTIONS(2527), + [anon_sym_GT2] = ACTIONS(2529), + [anon_sym_DASH2] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_RBRACE] = ACTIONS(2527), + [anon_sym_EQ_GT] = ACTIONS(2527), + [anon_sym_STAR2] = ACTIONS(2529), + [anon_sym_and2] = ACTIONS(2527), + [anon_sym_xor2] = ACTIONS(2527), + [anon_sym_or2] = ACTIONS(2527), + [anon_sym_not_DASHin2] = ACTIONS(2527), + [anon_sym_has2] = ACTIONS(2527), + [anon_sym_not_DASHhas2] = ACTIONS(2527), + [anon_sym_starts_DASHwith2] = ACTIONS(2527), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2527), + [anon_sym_ends_DASHwith2] = ACTIONS(2527), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2527), + [anon_sym_EQ_EQ2] = ACTIONS(2527), + [anon_sym_BANG_EQ2] = ACTIONS(2527), + [anon_sym_LT2] = ACTIONS(2529), + [anon_sym_LT_EQ2] = ACTIONS(2527), + [anon_sym_GT_EQ2] = ACTIONS(2527), + [anon_sym_EQ_TILDE2] = ACTIONS(2527), + [anon_sym_BANG_TILDE2] = ACTIONS(2527), + [anon_sym_like2] = ACTIONS(2527), + [anon_sym_not_DASHlike2] = ACTIONS(2527), + [anon_sym_STAR_STAR2] = ACTIONS(2527), + [anon_sym_PLUS_PLUS2] = ACTIONS(2527), + [anon_sym_SLASH2] = ACTIONS(2529), + [anon_sym_mod2] = ACTIONS(2527), + [anon_sym_SLASH_SLASH2] = ACTIONS(2527), + [anon_sym_PLUS2] = ACTIONS(2529), + [anon_sym_bit_DASHshl2] = ACTIONS(2527), + [anon_sym_bit_DASHshr2] = ACTIONS(2527), + [anon_sym_bit_DASHand2] = ACTIONS(2527), + [anon_sym_bit_DASHxor2] = ACTIONS(2527), + [anon_sym_bit_DASHor2] = ACTIONS(2527), + [anon_sym_COLON2] = ACTIONS(2527), + [anon_sym_err_GT] = ACTIONS(2529), + [anon_sym_out_GT] = ACTIONS(2529), + [anon_sym_e_GT] = ACTIONS(2529), + [anon_sym_o_GT] = ACTIONS(2529), + [anon_sym_err_PLUSout_GT] = ACTIONS(2529), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2529), + [anon_sym_o_PLUSe_GT] = ACTIONS(2529), + [anon_sym_e_PLUSo_GT] = ACTIONS(2529), + [anon_sym_err_GT_GT] = ACTIONS(2527), + [anon_sym_out_GT_GT] = ACTIONS(2527), + [anon_sym_e_GT_GT] = ACTIONS(2527), + [anon_sym_o_GT_GT] = ACTIONS(2527), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2527), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2527), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2527), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2527), + [anon_sym_POUND] = ACTIONS(3), }, - [STATE(882)] = { - [aux_sym__repeat_newline] = STATE(3546), - [aux_sym__pipe_separator] = STATE(887), - [sym_comment] = STATE(882), - [anon_sym_export] = ACTIONS(2509), - [anon_sym_alias] = ACTIONS(2511), - [anon_sym_let] = ACTIONS(2511), - [anon_sym_mut] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [aux_sym_cmd_identifier_token1] = ACTIONS(2509), - [anon_sym_def] = ACTIONS(2511), - [anon_sym_use] = ACTIONS(2511), - [anon_sym_export_DASHenv] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym_module] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_loop] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_catch] = ACTIONS(2511), - [anon_sym_match] = ACTIONS(2511), - [anon_sym_in] = ACTIONS(2509), - [anon_sym_true] = ACTIONS(2511), - [anon_sym_false] = ACTIONS(2511), - [anon_sym_null] = ACTIONS(2511), - [aux_sym_cmd_identifier_token3] = ACTIONS(2511), - [aux_sym_cmd_identifier_token4] = ACTIONS(2511), - [aux_sym_cmd_identifier_token5] = ACTIONS(2511), - [sym__newline] = ACTIONS(2513), - [anon_sym_PIPE] = ACTIONS(2325), - [anon_sym_err_GT_PIPE] = ACTIONS(2325), - [anon_sym_out_GT_PIPE] = ACTIONS(2325), - [anon_sym_e_GT_PIPE] = ACTIONS(2325), - [anon_sym_o_GT_PIPE] = ACTIONS(2325), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2325), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2325), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2325), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2325), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_DOLLAR] = ACTIONS(2509), - [anon_sym_DASH2] = ACTIONS(2509), - [anon_sym_LBRACE] = ACTIONS(2511), - [anon_sym_DOT_DOT] = ACTIONS(2509), - [anon_sym_where] = ACTIONS(2511), - [aux_sym_expr_unary_token1] = ACTIONS(2511), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2511), - [anon_sym_DOT_DOT_LT] = ACTIONS(2511), - [aux_sym__val_number_decimal_token1] = ACTIONS(2509), - [aux_sym__val_number_decimal_token2] = ACTIONS(2511), - [aux_sym__val_number_decimal_token3] = ACTIONS(2511), - [aux_sym__val_number_decimal_token4] = ACTIONS(2511), - [aux_sym__val_number_token1] = ACTIONS(2511), - [aux_sym__val_number_token2] = ACTIONS(2511), - [aux_sym__val_number_token3] = ACTIONS(2511), - [anon_sym_0b] = ACTIONS(2509), - [anon_sym_0o] = ACTIONS(2509), - [anon_sym_0x] = ACTIONS(2509), - [sym_val_date] = ACTIONS(2511), - [anon_sym_DQUOTE] = ACTIONS(2511), - [anon_sym_SQUOTE] = ACTIONS(2511), - [anon_sym_BQUOTE] = ACTIONS(2511), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2511), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2511), - [anon_sym_CARET] = ACTIONS(2511), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2511), + [STATE(849)] = { + [sym_comment] = STATE(849), + [anon_sym_in] = ACTIONS(2531), + [sym__newline] = ACTIONS(2531), + [anon_sym_SEMI] = ACTIONS(2531), + [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_RPAREN] = ACTIONS(2531), + [anon_sym_GT2] = ACTIONS(2533), + [anon_sym_DASH2] = ACTIONS(2531), + [anon_sym_LBRACE] = ACTIONS(2531), + [anon_sym_RBRACE] = ACTIONS(2531), + [anon_sym_EQ_GT] = ACTIONS(2531), + [anon_sym_STAR2] = ACTIONS(2533), + [anon_sym_and2] = ACTIONS(2531), + [anon_sym_xor2] = ACTIONS(2531), + [anon_sym_or2] = ACTIONS(2531), + [anon_sym_not_DASHin2] = ACTIONS(2531), + [anon_sym_has2] = ACTIONS(2531), + [anon_sym_not_DASHhas2] = ACTIONS(2531), + [anon_sym_starts_DASHwith2] = ACTIONS(2531), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2531), + [anon_sym_ends_DASHwith2] = ACTIONS(2531), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2531), + [anon_sym_EQ_EQ2] = ACTIONS(2531), + [anon_sym_BANG_EQ2] = ACTIONS(2531), + [anon_sym_LT2] = ACTIONS(2533), + [anon_sym_LT_EQ2] = ACTIONS(2531), + [anon_sym_GT_EQ2] = ACTIONS(2531), + [anon_sym_EQ_TILDE2] = ACTIONS(2531), + [anon_sym_BANG_TILDE2] = ACTIONS(2531), + [anon_sym_like2] = ACTIONS(2531), + [anon_sym_not_DASHlike2] = ACTIONS(2531), + [anon_sym_STAR_STAR2] = ACTIONS(2531), + [anon_sym_PLUS_PLUS2] = ACTIONS(2531), + [anon_sym_SLASH2] = ACTIONS(2533), + [anon_sym_mod2] = ACTIONS(2531), + [anon_sym_SLASH_SLASH2] = ACTIONS(2531), + [anon_sym_PLUS2] = ACTIONS(2533), + [anon_sym_bit_DASHshl2] = ACTIONS(2531), + [anon_sym_bit_DASHshr2] = ACTIONS(2531), + [anon_sym_bit_DASHand2] = ACTIONS(2531), + [anon_sym_bit_DASHxor2] = ACTIONS(2531), + [anon_sym_bit_DASHor2] = ACTIONS(2531), + [anon_sym_COLON2] = ACTIONS(2531), + [anon_sym_err_GT] = ACTIONS(2533), + [anon_sym_out_GT] = ACTIONS(2533), + [anon_sym_e_GT] = ACTIONS(2533), + [anon_sym_o_GT] = ACTIONS(2533), + [anon_sym_err_PLUSout_GT] = ACTIONS(2533), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2533), + [anon_sym_o_PLUSe_GT] = ACTIONS(2533), + [anon_sym_e_PLUSo_GT] = ACTIONS(2533), + [anon_sym_err_GT_GT] = ACTIONS(2531), + [anon_sym_out_GT_GT] = ACTIONS(2531), + [anon_sym_e_GT_GT] = ACTIONS(2531), + [anon_sym_o_GT_GT] = ACTIONS(2531), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2531), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2531), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2531), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2531), + [anon_sym_POUND] = ACTIONS(3), }, - [STATE(883)] = { - [sym_expr_unary] = STATE(1323), - [sym__expr_unary_minus] = STATE(1290), - [sym_expr_binary] = STATE(1323), - [sym__expr_binary_expression] = STATE(1325), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1323), - [sym__val_range] = STATE(4744), - [sym__value] = STATE(1323), - [sym_val_nothing] = STATE(1295), - [sym_val_bool] = STATE(1027), - [sym_val_variable] = STATE(933), - [sym_val_cellpath] = STATE(1295), - [sym_val_number] = STATE(1295), - [sym__val_number_decimal] = STATE(463), + [STATE(850)] = { + [sym_expr_unary] = STATE(1320), + [sym__expr_unary_minus] = STATE(1296), + [sym_expr_binary] = STATE(1320), + [sym__expr_binary_expression] = STATE(1339), + [sym_expr_parenthesized] = STATE(935), + [sym_val_range] = STATE(1320), + [sym__val_range] = STATE(4844), + [sym__value] = STATE(1320), + [sym_val_nothing] = STATE(1316), + [sym_val_bool] = STATE(985), + [sym_val_variable] = STATE(912), + [sym_val_cellpath] = STATE(1316), + [sym_val_number] = STATE(1316), + [sym__val_number_decimal] = STATE(471), [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1295), - [sym_val_filesize] = STATE(1295), - [sym_val_binary] = STATE(1295), - [sym_val_string] = STATE(1295), + [sym_val_duration] = STATE(1316), + [sym_val_filesize] = STATE(1316), + [sym_val_binary] = STATE(1316), + [sym_val_string] = STATE(1316), [sym__raw_str] = STATE(502), [sym__str_double_quotes] = STATE(502), [sym__str_single_quotes] = STATE(502), [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1295), - [sym__inter_single_quotes] = STATE(1306), - [sym__inter_double_quotes] = STATE(1317), - [sym_val_list] = STATE(1295), - [sym_val_record] = STATE(1295), - [sym_val_table] = STATE(1295), - [sym_val_closure] = STATE(1295), - [sym_unquoted] = STATE(1126), - [sym__unquoted_with_expr] = STATE(1327), - [sym__unquoted_anonymous_prefix] = STATE(4744), - [sym_comment] = STATE(883), - [anon_sym_true] = ACTIONS(2208), - [anon_sym_false] = ACTIONS(2208), - [anon_sym_null] = ACTIONS(2210), - [aux_sym_cmd_identifier_token3] = ACTIONS(2212), - [aux_sym_cmd_identifier_token4] = ACTIONS(2212), - [aux_sym_cmd_identifier_token5] = ACTIONS(2212), + [sym_val_interpolated] = STATE(1316), + [sym__inter_single_quotes] = STATE(1277), + [sym__inter_double_quotes] = STATE(1311), + [sym_val_list] = STATE(1316), + [sym_val_record] = STATE(1316), + [sym_val_table] = STATE(1316), + [sym_val_closure] = STATE(1316), + [sym_unquoted] = STATE(1012), + [sym__unquoted_with_expr] = STATE(1340), + [sym__unquoted_anonymous_prefix] = STATE(4844), + [sym_comment] = STATE(850), + [anon_sym_true] = ACTIONS(2489), + [anon_sym_false] = ACTIONS(2489), + [anon_sym_null] = ACTIONS(2491), + [aux_sym_cmd_identifier_token3] = ACTIONS(2493), + [aux_sym_cmd_identifier_token4] = ACTIONS(2493), + [aux_sym_cmd_identifier_token5] = ACTIONS(2493), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1008), + [anon_sym_DOLLAR] = ACTIONS(1010), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2214), + [anon_sym_DOT_DOT] = ACTIONS(2495), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2216), - [anon_sym_DOT_DOT_LT] = ACTIONS(2216), - [aux_sym__val_number_decimal_token1] = ACTIONS(2218), - [aux_sym__val_number_decimal_token2] = ACTIONS(2220), - [aux_sym__val_number_decimal_token3] = ACTIONS(2222), - [aux_sym__val_number_decimal_token4] = ACTIONS(2222), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2497), + [anon_sym_DOT_DOT_LT] = ACTIONS(2497), + [aux_sym__val_number_decimal_token1] = ACTIONS(2499), + [aux_sym__val_number_decimal_token2] = ACTIONS(2501), + [aux_sym__val_number_decimal_token3] = ACTIONS(2503), + [aux_sym__val_number_decimal_token4] = ACTIONS(2503), [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(2224), + [sym_val_date] = ACTIONS(2505), [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(2226), + [aux_sym_unquoted_token1] = ACTIONS(2403), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(884)] = { - [sym_expr_unary] = STATE(1323), - [sym__expr_unary_minus] = STATE(1290), - [sym_expr_binary] = STATE(1323), - [sym__expr_binary_expression] = STATE(1328), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1323), - [sym__val_range] = STATE(4744), - [sym__value] = STATE(1323), - [sym_val_nothing] = STATE(1295), - [sym_val_bool] = STATE(1027), - [sym_val_variable] = STATE(933), - [sym_val_cellpath] = STATE(1295), - [sym_val_number] = STATE(1295), - [sym__val_number_decimal] = STATE(463), + [STATE(851)] = { + [sym_expr_unary] = STATE(1320), + [sym__expr_unary_minus] = STATE(1296), + [sym_expr_binary] = STATE(1320), + [sym__expr_binary_expression] = STATE(1341), + [sym_expr_parenthesized] = STATE(935), + [sym_val_range] = STATE(1320), + [sym__val_range] = STATE(4844), + [sym__value] = STATE(1320), + [sym_val_nothing] = STATE(1316), + [sym_val_bool] = STATE(985), + [sym_val_variable] = STATE(912), + [sym_val_cellpath] = STATE(1316), + [sym_val_number] = STATE(1316), + [sym__val_number_decimal] = STATE(471), [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1295), - [sym_val_filesize] = STATE(1295), - [sym_val_binary] = STATE(1295), - [sym_val_string] = STATE(1295), + [sym_val_duration] = STATE(1316), + [sym_val_filesize] = STATE(1316), + [sym_val_binary] = STATE(1316), + [sym_val_string] = STATE(1316), [sym__raw_str] = STATE(502), [sym__str_double_quotes] = STATE(502), [sym__str_single_quotes] = STATE(502), [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1295), - [sym__inter_single_quotes] = STATE(1306), - [sym__inter_double_quotes] = STATE(1317), - [sym_val_list] = STATE(1295), - [sym_val_record] = STATE(1295), - [sym_val_table] = STATE(1295), - [sym_val_closure] = STATE(1295), - [sym_unquoted] = STATE(1128), - [sym__unquoted_with_expr] = STATE(1331), - [sym__unquoted_anonymous_prefix] = STATE(4744), - [sym_comment] = STATE(884), - [anon_sym_true] = ACTIONS(2208), - [anon_sym_false] = ACTIONS(2208), - [anon_sym_null] = ACTIONS(2210), - [aux_sym_cmd_identifier_token3] = ACTIONS(2212), - [aux_sym_cmd_identifier_token4] = ACTIONS(2212), - [aux_sym_cmd_identifier_token5] = ACTIONS(2212), + [sym_val_interpolated] = STATE(1316), + [sym__inter_single_quotes] = STATE(1277), + [sym__inter_double_quotes] = STATE(1311), + [sym_val_list] = STATE(1316), + [sym_val_record] = STATE(1316), + [sym_val_table] = STATE(1316), + [sym_val_closure] = STATE(1316), + [sym_unquoted] = STATE(1014), + [sym__unquoted_with_expr] = STATE(1342), + [sym__unquoted_anonymous_prefix] = STATE(4844), + [sym_comment] = STATE(851), + [anon_sym_true] = ACTIONS(2489), + [anon_sym_false] = ACTIONS(2489), + [anon_sym_null] = ACTIONS(2491), + [aux_sym_cmd_identifier_token3] = ACTIONS(2493), + [aux_sym_cmd_identifier_token4] = ACTIONS(2493), + [aux_sym_cmd_identifier_token5] = ACTIONS(2493), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1008), + [anon_sym_DOLLAR] = ACTIONS(1010), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2214), + [anon_sym_DOT_DOT] = ACTIONS(2495), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2216), - [anon_sym_DOT_DOT_LT] = ACTIONS(2216), - [aux_sym__val_number_decimal_token1] = ACTIONS(2218), - [aux_sym__val_number_decimal_token2] = ACTIONS(2220), - [aux_sym__val_number_decimal_token3] = ACTIONS(2222), - [aux_sym__val_number_decimal_token4] = ACTIONS(2222), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2497), + [anon_sym_DOT_DOT_LT] = ACTIONS(2497), + [aux_sym__val_number_decimal_token1] = ACTIONS(2499), + [aux_sym__val_number_decimal_token2] = ACTIONS(2501), + [aux_sym__val_number_decimal_token3] = ACTIONS(2503), + [aux_sym__val_number_decimal_token4] = ACTIONS(2503), [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(2224), + [sym_val_date] = ACTIONS(2505), [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(2226), + [aux_sym_unquoted_token1] = ACTIONS(2403), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(885)] = { - [sym_expr_unary] = STATE(1323), - [sym__expr_unary_minus] = STATE(1290), - [sym_expr_binary] = STATE(1323), - [sym__expr_binary_expression] = STATE(1334), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1323), - [sym__val_range] = STATE(4744), - [sym__value] = STATE(1323), - [sym_val_nothing] = STATE(1295), - [sym_val_bool] = STATE(1027), - [sym_val_variable] = STATE(933), - [sym_val_cellpath] = STATE(1295), - [sym_val_number] = STATE(1295), - [sym__val_number_decimal] = STATE(463), + [STATE(852)] = { + [sym_expr_unary] = STATE(940), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(940), + [sym__expr_binary_expression] = STATE(2235), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(940), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(940), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1965), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1761), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(695), + [sym__unquoted_with_expr] = STATE(945), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(852), + [anon_sym_true] = ACTIONS(1996), + [anon_sym_false] = ACTIONS(1996), + [anon_sym_null] = ACTIONS(1998), + [aux_sym_cmd_identifier_token3] = ACTIONS(2000), + [aux_sym_cmd_identifier_token4] = ACTIONS(2000), + [aux_sym_cmd_identifier_token5] = ACTIONS(2000), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2002), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), + [anon_sym_DOT_DOT_LT] = ACTIONS(2004), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2008), + [aux_sym__val_number_decimal_token3] = ACTIONS(2010), + [aux_sym__val_number_decimal_token4] = ACTIONS(2010), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2012), + [anon_sym_DQUOTE] = 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(1943), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(853)] = { + [sym_expr_unary] = STATE(940), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(940), + [sym__expr_binary_expression] = STATE(2242), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(940), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(940), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1965), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1761), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(697), + [sym__unquoted_with_expr] = STATE(976), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(853), + [anon_sym_true] = ACTIONS(1996), + [anon_sym_false] = ACTIONS(1996), + [anon_sym_null] = ACTIONS(1998), + [aux_sym_cmd_identifier_token3] = ACTIONS(2000), + [aux_sym_cmd_identifier_token4] = ACTIONS(2000), + [aux_sym_cmd_identifier_token5] = ACTIONS(2000), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2002), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2004), + [anon_sym_DOT_DOT_LT] = ACTIONS(2004), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2008), + [aux_sym__val_number_decimal_token3] = ACTIONS(2010), + [aux_sym__val_number_decimal_token4] = ACTIONS(2010), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2012), + [anon_sym_DQUOTE] = 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(1943), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(854)] = { + [sym_cell_path] = STATE(1313), + [sym_path] = STATE(715), + [sym_comment] = STATE(854), + [aux_sym__where_predicate_lhs_repeat1] = STATE(526), + [ts_builtin_sym_end] = ACTIONS(1911), + [anon_sym_in] = ACTIONS(1911), + [sym__newline] = ACTIONS(1911), + [anon_sym_SEMI] = ACTIONS(1911), + [anon_sym_PIPE] = ACTIONS(1911), + [anon_sym_err_GT_PIPE] = ACTIONS(1911), + [anon_sym_out_GT_PIPE] = ACTIONS(1911), + [anon_sym_e_GT_PIPE] = ACTIONS(1911), + [anon_sym_o_GT_PIPE] = ACTIONS(1911), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1911), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1911), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1911), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1911), + [anon_sym_GT2] = ACTIONS(1913), + [anon_sym_DASH2] = ACTIONS(1911), + [anon_sym_STAR2] = ACTIONS(1913), + [anon_sym_and2] = ACTIONS(1911), + [anon_sym_xor2] = ACTIONS(1911), + [anon_sym_or2] = ACTIONS(1911), + [anon_sym_not_DASHin2] = ACTIONS(1911), + [anon_sym_has2] = ACTIONS(1911), + [anon_sym_not_DASHhas2] = ACTIONS(1911), + [anon_sym_starts_DASHwith2] = ACTIONS(1911), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1911), + [anon_sym_ends_DASHwith2] = ACTIONS(1911), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1911), + [anon_sym_EQ_EQ2] = ACTIONS(1911), + [anon_sym_BANG_EQ2] = ACTIONS(1911), + [anon_sym_LT2] = ACTIONS(1913), + [anon_sym_LT_EQ2] = ACTIONS(1911), + [anon_sym_GT_EQ2] = ACTIONS(1911), + [anon_sym_EQ_TILDE2] = ACTIONS(1911), + [anon_sym_BANG_TILDE2] = ACTIONS(1911), + [anon_sym_like2] = ACTIONS(1911), + [anon_sym_not_DASHlike2] = ACTIONS(1911), + [anon_sym_STAR_STAR2] = ACTIONS(1911), + [anon_sym_PLUS_PLUS2] = ACTIONS(1911), + [anon_sym_SLASH2] = ACTIONS(1913), + [anon_sym_mod2] = ACTIONS(1911), + [anon_sym_SLASH_SLASH2] = ACTIONS(1911), + [anon_sym_PLUS2] = ACTIONS(1913), + [anon_sym_bit_DASHshl2] = ACTIONS(1911), + [anon_sym_bit_DASHshr2] = ACTIONS(1911), + [anon_sym_bit_DASHand2] = ACTIONS(1911), + [anon_sym_bit_DASHxor2] = ACTIONS(1911), + [anon_sym_bit_DASHor2] = ACTIONS(1911), + [anon_sym_DOT2] = ACTIONS(2358), + [anon_sym_err_GT] = ACTIONS(1913), + [anon_sym_out_GT] = ACTIONS(1913), + [anon_sym_e_GT] = ACTIONS(1913), + [anon_sym_o_GT] = ACTIONS(1913), + [anon_sym_err_PLUSout_GT] = ACTIONS(1913), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1913), + [anon_sym_o_PLUSe_GT] = ACTIONS(1913), + [anon_sym_e_PLUSo_GT] = ACTIONS(1913), + [anon_sym_err_GT_GT] = ACTIONS(1911), + [anon_sym_out_GT_GT] = ACTIONS(1911), + [anon_sym_e_GT_GT] = ACTIONS(1911), + [anon_sym_o_GT_GT] = ACTIONS(1911), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1911), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1911), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1911), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1911), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(855)] = { + [sym_expr_unary] = STATE(1320), + [sym__expr_unary_minus] = STATE(1296), + [sym_expr_binary] = STATE(1320), + [sym__expr_binary_expression] = STATE(1343), + [sym_expr_parenthesized] = STATE(935), + [sym_val_range] = STATE(1320), + [sym__val_range] = STATE(4844), + [sym__value] = STATE(1320), + [sym_val_nothing] = STATE(1316), + [sym_val_bool] = STATE(985), + [sym_val_variable] = STATE(912), + [sym_val_cellpath] = STATE(1316), + [sym_val_number] = STATE(1316), + [sym__val_number_decimal] = STATE(471), [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1295), - [sym_val_filesize] = STATE(1295), - [sym_val_binary] = STATE(1295), - [sym_val_string] = STATE(1295), + [sym_val_duration] = STATE(1316), + [sym_val_filesize] = STATE(1316), + [sym_val_binary] = STATE(1316), + [sym_val_string] = STATE(1316), [sym__raw_str] = STATE(502), [sym__str_double_quotes] = STATE(502), [sym__str_single_quotes] = STATE(502), [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1295), - [sym__inter_single_quotes] = STATE(1306), - [sym__inter_double_quotes] = STATE(1317), - [sym_val_list] = STATE(1295), - [sym_val_record] = STATE(1295), - [sym_val_table] = STATE(1295), - [sym_val_closure] = STATE(1295), - [sym_unquoted] = STATE(1129), - [sym__unquoted_with_expr] = STATE(1336), - [sym__unquoted_anonymous_prefix] = STATE(4744), - [sym_comment] = STATE(885), - [anon_sym_true] = ACTIONS(2208), - [anon_sym_false] = ACTIONS(2208), - [anon_sym_null] = ACTIONS(2210), - [aux_sym_cmd_identifier_token3] = ACTIONS(2212), - [aux_sym_cmd_identifier_token4] = ACTIONS(2212), - [aux_sym_cmd_identifier_token5] = ACTIONS(2212), + [sym_val_interpolated] = STATE(1316), + [sym__inter_single_quotes] = STATE(1277), + [sym__inter_double_quotes] = STATE(1311), + [sym_val_list] = STATE(1316), + [sym_val_record] = STATE(1316), + [sym_val_table] = STATE(1316), + [sym_val_closure] = STATE(1316), + [sym_unquoted] = STATE(1138), + [sym__unquoted_with_expr] = STATE(1344), + [sym__unquoted_anonymous_prefix] = STATE(4844), + [sym_comment] = STATE(855), + [anon_sym_true] = ACTIONS(2489), + [anon_sym_false] = ACTIONS(2489), + [anon_sym_null] = ACTIONS(2491), + [aux_sym_cmd_identifier_token3] = ACTIONS(2493), + [aux_sym_cmd_identifier_token4] = ACTIONS(2493), + [aux_sym_cmd_identifier_token5] = ACTIONS(2493), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1008), + [anon_sym_DOLLAR] = ACTIONS(1010), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2214), + [anon_sym_DOT_DOT] = ACTIONS(2495), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2216), - [anon_sym_DOT_DOT_LT] = ACTIONS(2216), - [aux_sym__val_number_decimal_token1] = ACTIONS(2218), - [aux_sym__val_number_decimal_token2] = ACTIONS(2220), - [aux_sym__val_number_decimal_token3] = ACTIONS(2222), - [aux_sym__val_number_decimal_token4] = ACTIONS(2222), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2497), + [anon_sym_DOT_DOT_LT] = ACTIONS(2497), + [aux_sym__val_number_decimal_token1] = ACTIONS(2499), + [aux_sym__val_number_decimal_token2] = ACTIONS(2501), + [aux_sym__val_number_decimal_token3] = ACTIONS(2503), + [aux_sym__val_number_decimal_token4] = ACTIONS(2503), [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(2224), + [sym_val_date] = ACTIONS(2505), [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(2226), + [aux_sym_unquoted_token1] = ACTIONS(2403), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(886)] = { - [sym_expr_unary] = STATE(1323), - [sym__expr_unary_minus] = STATE(1290), - [sym_expr_binary] = STATE(1323), - [sym__expr_binary_expression] = STATE(1347), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1323), - [sym__val_range] = STATE(4744), - [sym__value] = STATE(1323), - [sym_val_nothing] = STATE(1295), - [sym_val_bool] = STATE(1027), - [sym_val_variable] = STATE(933), - [sym_val_cellpath] = STATE(1295), - [sym_val_number] = STATE(1295), - [sym__val_number_decimal] = STATE(463), + [STATE(856)] = { + [sym_expr_unary] = STATE(1320), + [sym__expr_unary_minus] = STATE(1296), + [sym_expr_binary] = STATE(1320), + [sym__expr_binary_expression] = STATE(1345), + [sym_expr_parenthesized] = STATE(935), + [sym_val_range] = STATE(1320), + [sym__val_range] = STATE(4844), + [sym__value] = STATE(1320), + [sym_val_nothing] = STATE(1316), + [sym_val_bool] = STATE(985), + [sym_val_variable] = STATE(912), + [sym_val_cellpath] = STATE(1316), + [sym_val_number] = STATE(1316), + [sym__val_number_decimal] = STATE(471), [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1295), - [sym_val_filesize] = STATE(1295), - [sym_val_binary] = STATE(1295), - [sym_val_string] = STATE(1295), + [sym_val_duration] = STATE(1316), + [sym_val_filesize] = STATE(1316), + [sym_val_binary] = STATE(1316), + [sym_val_string] = STATE(1316), [sym__raw_str] = STATE(502), [sym__str_double_quotes] = STATE(502), [sym__str_single_quotes] = STATE(502), [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1295), - [sym__inter_single_quotes] = STATE(1306), - [sym__inter_double_quotes] = STATE(1317), - [sym_val_list] = STATE(1295), - [sym_val_record] = STATE(1295), - [sym_val_table] = STATE(1295), - [sym_val_closure] = STATE(1295), - [sym_unquoted] = STATE(1135), - [sym__unquoted_with_expr] = STATE(1271), - [sym__unquoted_anonymous_prefix] = STATE(4744), - [sym_comment] = STATE(886), - [anon_sym_true] = ACTIONS(2208), - [anon_sym_false] = ACTIONS(2208), - [anon_sym_null] = ACTIONS(2210), - [aux_sym_cmd_identifier_token3] = ACTIONS(2212), - [aux_sym_cmd_identifier_token4] = ACTIONS(2212), - [aux_sym_cmd_identifier_token5] = ACTIONS(2212), + [sym_val_interpolated] = STATE(1316), + [sym__inter_single_quotes] = STATE(1277), + [sym__inter_double_quotes] = STATE(1311), + [sym_val_list] = STATE(1316), + [sym_val_record] = STATE(1316), + [sym_val_table] = STATE(1316), + [sym_val_closure] = STATE(1316), + [sym_unquoted] = STATE(981), + [sym__unquoted_with_expr] = STATE(1346), + [sym__unquoted_anonymous_prefix] = STATE(4844), + [sym_comment] = STATE(856), + [anon_sym_true] = ACTIONS(2489), + [anon_sym_false] = ACTIONS(2489), + [anon_sym_null] = ACTIONS(2491), + [aux_sym_cmd_identifier_token3] = ACTIONS(2493), + [aux_sym_cmd_identifier_token4] = ACTIONS(2493), + [aux_sym_cmd_identifier_token5] = ACTIONS(2493), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1008), + [anon_sym_DOLLAR] = ACTIONS(1010), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2214), + [anon_sym_DOT_DOT] = ACTIONS(2495), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2216), - [anon_sym_DOT_DOT_LT] = ACTIONS(2216), - [aux_sym__val_number_decimal_token1] = ACTIONS(2218), - [aux_sym__val_number_decimal_token2] = ACTIONS(2220), - [aux_sym__val_number_decimal_token3] = ACTIONS(2222), - [aux_sym__val_number_decimal_token4] = ACTIONS(2222), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2497), + [anon_sym_DOT_DOT_LT] = ACTIONS(2497), + [aux_sym__val_number_decimal_token1] = ACTIONS(2499), + [aux_sym__val_number_decimal_token2] = ACTIONS(2501), + [aux_sym__val_number_decimal_token3] = ACTIONS(2503), + [aux_sym__val_number_decimal_token4] = ACTIONS(2503), [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(2224), + [sym_val_date] = ACTIONS(2505), [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(2226), + [aux_sym_unquoted_token1] = ACTIONS(2403), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(887)] = { - [aux_sym__repeat_newline] = STATE(3546), - [aux_sym__pipe_separator] = STATE(887), - [sym_comment] = STATE(887), - [anon_sym_export] = ACTIONS(2515), - [anon_sym_alias] = ACTIONS(2517), - [anon_sym_let] = ACTIONS(2517), - [anon_sym_mut] = ACTIONS(2517), - [anon_sym_const] = ACTIONS(2517), - [aux_sym_cmd_identifier_token1] = ACTIONS(2515), - [anon_sym_def] = ACTIONS(2517), - [anon_sym_use] = ACTIONS(2517), - [anon_sym_export_DASHenv] = ACTIONS(2517), - [anon_sym_extern] = ACTIONS(2517), - [anon_sym_module] = ACTIONS(2517), - [anon_sym_for] = ACTIONS(2517), - [anon_sym_loop] = ACTIONS(2517), - [anon_sym_while] = ACTIONS(2517), - [anon_sym_if] = ACTIONS(2517), - [anon_sym_else] = ACTIONS(2517), - [anon_sym_try] = ACTIONS(2517), - [anon_sym_catch] = ACTIONS(2517), - [anon_sym_match] = ACTIONS(2517), - [anon_sym_in] = ACTIONS(2515), - [anon_sym_true] = ACTIONS(2517), - [anon_sym_false] = ACTIONS(2517), - [anon_sym_null] = ACTIONS(2517), - [aux_sym_cmd_identifier_token3] = ACTIONS(2517), - [aux_sym_cmd_identifier_token4] = ACTIONS(2517), - [aux_sym_cmd_identifier_token5] = ACTIONS(2517), - [sym__newline] = ACTIONS(2519), - [anon_sym_PIPE] = ACTIONS(2522), - [anon_sym_err_GT_PIPE] = ACTIONS(2522), - [anon_sym_out_GT_PIPE] = ACTIONS(2522), - [anon_sym_e_GT_PIPE] = ACTIONS(2522), - [anon_sym_o_GT_PIPE] = ACTIONS(2522), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2522), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2522), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2522), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2522), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_LPAREN] = ACTIONS(2517), - [anon_sym_DOLLAR] = ACTIONS(2515), - [anon_sym_DASH2] = ACTIONS(2515), - [anon_sym_LBRACE] = ACTIONS(2517), - [anon_sym_DOT_DOT] = ACTIONS(2515), - [anon_sym_where] = ACTIONS(2517), - [aux_sym_expr_unary_token1] = ACTIONS(2517), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2517), - [anon_sym_DOT_DOT_LT] = ACTIONS(2517), - [aux_sym__val_number_decimal_token1] = ACTIONS(2515), - [aux_sym__val_number_decimal_token2] = ACTIONS(2517), - [aux_sym__val_number_decimal_token3] = ACTIONS(2517), - [aux_sym__val_number_decimal_token4] = ACTIONS(2517), - [aux_sym__val_number_token1] = ACTIONS(2517), - [aux_sym__val_number_token2] = ACTIONS(2517), - [aux_sym__val_number_token3] = ACTIONS(2517), - [anon_sym_0b] = ACTIONS(2515), - [anon_sym_0o] = ACTIONS(2515), - [anon_sym_0x] = ACTIONS(2515), - [sym_val_date] = ACTIONS(2517), - [anon_sym_DQUOTE] = ACTIONS(2517), - [anon_sym_SQUOTE] = ACTIONS(2517), - [anon_sym_BQUOTE] = ACTIONS(2517), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2517), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2517), - [anon_sym_CARET] = ACTIONS(2517), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2517), - }, - [STATE(888)] = { - [sym_comment] = STATE(888), - [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_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(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), - [sym__unquoted_pattern] = ACTIONS(2527), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(889)] = { - [sym_comment] = STATE(889), - [anon_sym_if] = ACTIONS(2529), - [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(890)] = { - [sym_comment] = STATE(890), - [anon_sym_if] = ACTIONS(2154), - [anon_sym_in] = ACTIONS(2154), - [sym__newline] = ACTIONS(2154), - [anon_sym_SEMI] = ACTIONS(2154), - [anon_sym_PIPE] = ACTIONS(2154), - [anon_sym_err_GT_PIPE] = ACTIONS(2154), - [anon_sym_out_GT_PIPE] = ACTIONS(2154), - [anon_sym_e_GT_PIPE] = ACTIONS(2154), - [anon_sym_o_GT_PIPE] = ACTIONS(2154), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2154), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2154), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2154), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2154), - [anon_sym_RPAREN] = ACTIONS(2154), - [anon_sym_GT2] = ACTIONS(2156), - [anon_sym_DASH2] = ACTIONS(2154), - [anon_sym_LBRACE] = ACTIONS(2154), - [anon_sym_RBRACE] = ACTIONS(2154), - [anon_sym_EQ_GT] = ACTIONS(2154), - [anon_sym_STAR2] = ACTIONS(2156), - [anon_sym_and2] = ACTIONS(2154), - [anon_sym_xor2] = ACTIONS(2154), - [anon_sym_or2] = ACTIONS(2154), - [anon_sym_not_DASHin2] = ACTIONS(2154), - [anon_sym_has2] = ACTIONS(2154), - [anon_sym_not_DASHhas2] = ACTIONS(2154), - [anon_sym_starts_DASHwith2] = ACTIONS(2154), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2154), - [anon_sym_ends_DASHwith2] = ACTIONS(2154), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2154), - [anon_sym_EQ_EQ2] = ACTIONS(2154), - [anon_sym_BANG_EQ2] = ACTIONS(2154), - [anon_sym_LT2] = ACTIONS(2156), - [anon_sym_LT_EQ2] = ACTIONS(2154), - [anon_sym_GT_EQ2] = ACTIONS(2154), - [anon_sym_EQ_TILDE2] = ACTIONS(2154), - [anon_sym_BANG_TILDE2] = ACTIONS(2154), - [anon_sym_like2] = ACTIONS(2154), - [anon_sym_not_DASHlike2] = ACTIONS(2154), - [anon_sym_STAR_STAR2] = ACTIONS(2154), - [anon_sym_PLUS_PLUS2] = ACTIONS(2154), - [anon_sym_SLASH2] = ACTIONS(2156), - [anon_sym_mod2] = ACTIONS(2154), - [anon_sym_SLASH_SLASH2] = ACTIONS(2154), - [anon_sym_PLUS2] = ACTIONS(2156), - [anon_sym_bit_DASHshl2] = ACTIONS(2154), - [anon_sym_bit_DASHshr2] = ACTIONS(2154), - [anon_sym_bit_DASHand2] = ACTIONS(2154), - [anon_sym_bit_DASHxor2] = ACTIONS(2154), - [anon_sym_bit_DASHor2] = ACTIONS(2154), - [anon_sym_err_GT] = ACTIONS(2156), - [anon_sym_out_GT] = ACTIONS(2156), - [anon_sym_e_GT] = ACTIONS(2156), - [anon_sym_o_GT] = ACTIONS(2156), - [anon_sym_err_PLUSout_GT] = ACTIONS(2156), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2156), - [anon_sym_o_PLUSe_GT] = ACTIONS(2156), - [anon_sym_e_PLUSo_GT] = ACTIONS(2156), - [anon_sym_err_GT_GT] = ACTIONS(2154), - [anon_sym_out_GT_GT] = ACTIONS(2154), - [anon_sym_e_GT_GT] = ACTIONS(2154), - [anon_sym_o_GT_GT] = ACTIONS(2154), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2154), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2154), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2154), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2154), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(891)] = { - [sym_expr_unary] = STATE(936), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(936), - [sym__expr_binary_expression] = STATE(2212), - [sym_expr_parenthesized] = STATE(703), - [sym_val_range] = STATE(936), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(936), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1983), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1738), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(706), - [sym__unquoted_with_expr] = STATE(951), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [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), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1924), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), - [anon_sym_DOT_DOT_LT] = ACTIONS(1926), - [aux_sym__val_number_decimal_token1] = ACTIONS(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1930), - [aux_sym__val_number_decimal_token3] = ACTIONS(1932), - [aux_sym__val_number_decimal_token4] = ACTIONS(1932), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1934), - [anon_sym_DQUOTE] = 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(1936), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(892)] = { - [sym_expr_unary] = STATE(936), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(936), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(703), - [sym_val_range] = STATE(936), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(936), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1983), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1738), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(709), - [sym__unquoted_with_expr] = STATE(967), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [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), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1924), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), - [anon_sym_DOT_DOT_LT] = ACTIONS(1926), - [aux_sym__val_number_decimal_token1] = ACTIONS(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1930), - [aux_sym__val_number_decimal_token3] = ACTIONS(1932), - [aux_sym__val_number_decimal_token4] = ACTIONS(1932), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1934), - [anon_sym_DQUOTE] = 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(1936), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(893)] = { - [sym_expr_unary] = STATE(936), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(936), - [sym__expr_binary_expression] = STATE(2214), - [sym_expr_parenthesized] = STATE(703), - [sym_val_range] = STATE(936), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(936), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1983), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1738), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(710), - [sym__unquoted_with_expr] = STATE(968), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [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), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1924), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), - [anon_sym_DOT_DOT_LT] = ACTIONS(1926), - [aux_sym__val_number_decimal_token1] = ACTIONS(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1930), - [aux_sym__val_number_decimal_token3] = ACTIONS(1932), - [aux_sym__val_number_decimal_token4] = ACTIONS(1932), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1934), - [anon_sym_DQUOTE] = 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(1936), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(894)] = { - [sym_expr_unary] = STATE(936), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(936), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(703), - [sym_val_range] = STATE(936), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(936), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1983), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1738), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(711), - [sym__unquoted_with_expr] = STATE(907), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [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), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1924), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), - [anon_sym_DOT_DOT_LT] = ACTIONS(1926), - [aux_sym__val_number_decimal_token1] = ACTIONS(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1930), - [aux_sym__val_number_decimal_token3] = ACTIONS(1932), - [aux_sym__val_number_decimal_token4] = ACTIONS(1932), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1934), - [anon_sym_DQUOTE] = 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(1936), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(895)] = { - [sym_expr_unary] = STATE(936), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(936), - [sym__expr_binary_expression] = STATE(2216), - [sym_expr_parenthesized] = STATE(703), - [sym_val_range] = STATE(936), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(936), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1983), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1738), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(692), - [sym__unquoted_with_expr] = STATE(908), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [sym_comment] = STATE(895), - [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(1004), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1924), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), - [anon_sym_DOT_DOT_LT] = ACTIONS(1926), - [aux_sym__val_number_decimal_token1] = ACTIONS(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1930), - [aux_sym__val_number_decimal_token3] = ACTIONS(1932), - [aux_sym__val_number_decimal_token4] = ACTIONS(1932), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1934), - [anon_sym_DQUOTE] = 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(1936), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(896)] = { - [sym_expr_unary] = STATE(936), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(936), - [sym__expr_binary_expression] = STATE(2218), - [sym_expr_parenthesized] = STATE(703), - [sym_val_range] = STATE(936), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(936), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1983), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1738), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(697), - [sym__unquoted_with_expr] = STATE(910), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [sym_comment] = STATE(896), - [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(1004), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1924), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), - [anon_sym_DOT_DOT_LT] = ACTIONS(1926), - [aux_sym__val_number_decimal_token1] = ACTIONS(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1930), - [aux_sym__val_number_decimal_token3] = ACTIONS(1932), - [aux_sym__val_number_decimal_token4] = ACTIONS(1932), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1934), - [anon_sym_DQUOTE] = 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(1936), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(897)] = { - [sym_expr_unary] = STATE(936), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(936), - [sym__expr_binary_expression] = STATE(2219), - [sym_expr_parenthesized] = STATE(703), - [sym_val_range] = STATE(936), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(936), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1983), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1738), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(705), - [sym__unquoted_with_expr] = STATE(913), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [sym_comment] = STATE(897), - [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(1004), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1924), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), - [anon_sym_DOT_DOT_LT] = ACTIONS(1926), - [aux_sym__val_number_decimal_token1] = ACTIONS(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1930), - [aux_sym__val_number_decimal_token3] = ACTIONS(1932), - [aux_sym__val_number_decimal_token4] = ACTIONS(1932), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1934), - [anon_sym_DQUOTE] = 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(1936), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(898)] = { - [sym_expr_unary] = STATE(936), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(936), - [sym__expr_binary_expression] = STATE(2221), - [sym_expr_parenthesized] = STATE(703), - [sym_val_range] = STATE(936), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(936), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1983), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1738), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(708), - [sym__unquoted_with_expr] = STATE(915), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [sym_comment] = STATE(898), - [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(1004), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1924), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), - [anon_sym_DOT_DOT_LT] = ACTIONS(1926), - [aux_sym__val_number_decimal_token1] = ACTIONS(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1930), - [aux_sym__val_number_decimal_token3] = ACTIONS(1932), - [aux_sym__val_number_decimal_token4] = ACTIONS(1932), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1934), - [anon_sym_DQUOTE] = 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(1936), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(899)] = { - [sym_expr_unary] = STATE(936), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(936), - [sym__expr_binary_expression] = STATE(917), - [sym_expr_parenthesized] = STATE(703), - [sym_val_range] = STATE(936), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(936), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1983), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1738), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(714), - [sym__unquoted_with_expr] = STATE(919), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [sym_comment] = STATE(899), - [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(1004), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1924), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), - [anon_sym_DOT_DOT_LT] = ACTIONS(1926), - [aux_sym__val_number_decimal_token1] = ACTIONS(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1930), - [aux_sym__val_number_decimal_token3] = ACTIONS(1932), - [aux_sym__val_number_decimal_token4] = ACTIONS(1932), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1934), - [anon_sym_DQUOTE] = 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(1936), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(900)] = { - [sym_expr_unary] = STATE(936), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(936), - [sym__expr_binary_expression] = STATE(2222), - [sym_expr_parenthesized] = STATE(703), - [sym_val_range] = STATE(936), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(936), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1983), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1738), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(701), - [sym__unquoted_with_expr] = STATE(922), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [sym_comment] = STATE(900), - [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(1004), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1924), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), - [anon_sym_DOT_DOT_LT] = ACTIONS(1926), - [aux_sym__val_number_decimal_token1] = ACTIONS(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1930), - [aux_sym__val_number_decimal_token3] = ACTIONS(1932), - [aux_sym__val_number_decimal_token4] = ACTIONS(1932), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1934), - [anon_sym_DQUOTE] = 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(1936), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(901)] = { - [sym_expr_unary] = STATE(936), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(936), - [sym__expr_binary_expression] = STATE(2224), - [sym_expr_parenthesized] = STATE(703), - [sym_val_range] = STATE(936), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(936), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1983), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1738), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(683), - [sym__unquoted_with_expr] = STATE(925), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [sym_comment] = STATE(901), - [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(1004), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1924), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), - [anon_sym_DOT_DOT_LT] = ACTIONS(1926), - [aux_sym__val_number_decimal_token1] = ACTIONS(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1930), - [aux_sym__val_number_decimal_token3] = ACTIONS(1932), - [aux_sym__val_number_decimal_token4] = ACTIONS(1932), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1934), - [anon_sym_DQUOTE] = 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(1936), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(902)] = { - [sym_expr_unary] = STATE(936), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(936), - [sym__expr_binary_expression] = STATE(2226), - [sym_expr_parenthesized] = STATE(703), - [sym_val_range] = STATE(936), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(936), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(1983), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1738), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(684), - [sym__unquoted_with_expr] = STATE(926), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [sym_comment] = STATE(902), - [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(1004), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1924), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), - [anon_sym_DOT_DOT_LT] = ACTIONS(1926), - [aux_sym__val_number_decimal_token1] = ACTIONS(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1930), - [aux_sym__val_number_decimal_token3] = ACTIONS(1932), - [aux_sym__val_number_decimal_token4] = ACTIONS(1932), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1934), - [anon_sym_DQUOTE] = 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(1936), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(903)] = { - [aux_sym__repeat_newline] = STATE(1047), - [sym__expr_parenthesized_immediate] = STATE(4802), - [sym_comment] = STATE(903), - [anon_sym_in] = ACTIONS(2327), - [sym__newline] = ACTIONS(2327), - [anon_sym_SEMI] = ACTIONS(2327), - [anon_sym_PIPE] = ACTIONS(2327), - [anon_sym_err_GT_PIPE] = ACTIONS(2327), - [anon_sym_out_GT_PIPE] = ACTIONS(2327), - [anon_sym_e_GT_PIPE] = ACTIONS(2327), - [anon_sym_o_GT_PIPE] = ACTIONS(2327), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2327), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2327), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2327), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2327), - [anon_sym_RPAREN] = ACTIONS(2327), - [anon_sym_GT2] = ACTIONS(2329), - [anon_sym_DASH2] = ACTIONS(2327), - [anon_sym_LBRACE] = ACTIONS(2327), - [anon_sym_STAR2] = ACTIONS(2329), - [anon_sym_and2] = ACTIONS(2327), - [anon_sym_xor2] = ACTIONS(2327), - [anon_sym_or2] = ACTIONS(2327), - [anon_sym_not_DASHin2] = ACTIONS(2327), - [anon_sym_has2] = ACTIONS(2327), - [anon_sym_not_DASHhas2] = ACTIONS(2327), - [anon_sym_starts_DASHwith2] = ACTIONS(2327), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2327), - [anon_sym_ends_DASHwith2] = ACTIONS(2327), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2327), - [anon_sym_EQ_EQ2] = ACTIONS(2327), - [anon_sym_BANG_EQ2] = ACTIONS(2327), - [anon_sym_LT2] = ACTIONS(2329), - [anon_sym_LT_EQ2] = ACTIONS(2327), - [anon_sym_GT_EQ2] = ACTIONS(2327), - [anon_sym_EQ_TILDE2] = ACTIONS(2327), - [anon_sym_BANG_TILDE2] = ACTIONS(2327), - [anon_sym_like2] = ACTIONS(2327), - [anon_sym_not_DASHlike2] = ACTIONS(2327), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_STAR_STAR2] = ACTIONS(2327), - [anon_sym_PLUS_PLUS2] = ACTIONS(2327), - [anon_sym_SLASH2] = ACTIONS(2329), - [anon_sym_mod2] = ACTIONS(2327), - [anon_sym_SLASH_SLASH2] = ACTIONS(2327), - [anon_sym_PLUS2] = ACTIONS(2329), - [anon_sym_bit_DASHshl2] = ACTIONS(2327), - [anon_sym_bit_DASHshr2] = ACTIONS(2327), - [anon_sym_bit_DASHand2] = ACTIONS(2327), - [anon_sym_bit_DASHxor2] = ACTIONS(2327), - [anon_sym_bit_DASHor2] = ACTIONS(2327), - [anon_sym_err_GT] = ACTIONS(2329), - [anon_sym_out_GT] = ACTIONS(2329), - [anon_sym_e_GT] = ACTIONS(2329), - [anon_sym_o_GT] = ACTIONS(2329), - [anon_sym_err_PLUSout_GT] = ACTIONS(2329), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2329), - [anon_sym_o_PLUSe_GT] = ACTIONS(2329), - [anon_sym_e_PLUSo_GT] = ACTIONS(2329), - [anon_sym_err_GT_GT] = ACTIONS(2327), - [anon_sym_out_GT_GT] = ACTIONS(2327), - [anon_sym_e_GT_GT] = ACTIONS(2327), - [anon_sym_o_GT_GT] = ACTIONS(2327), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2327), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2327), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2327), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2327), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(904)] = { - [sym_comment] = STATE(904), - [anon_sym_in] = ACTIONS(1973), - [sym__newline] = ACTIONS(1973), - [anon_sym_SEMI] = ACTIONS(1973), - [anon_sym_PIPE] = ACTIONS(1973), - [anon_sym_err_GT_PIPE] = ACTIONS(1973), - [anon_sym_out_GT_PIPE] = ACTIONS(1973), - [anon_sym_e_GT_PIPE] = ACTIONS(1973), - [anon_sym_o_GT_PIPE] = ACTIONS(1973), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1973), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1973), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1973), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1973), - [anon_sym_RPAREN] = ACTIONS(1973), - [anon_sym_GT2] = ACTIONS(1975), - [anon_sym_DASH2] = ACTIONS(1973), - [anon_sym_LBRACE] = ACTIONS(1973), - [anon_sym_RBRACE] = ACTIONS(1973), - [anon_sym_EQ_GT] = ACTIONS(1973), - [anon_sym_STAR2] = ACTIONS(1975), - [anon_sym_and2] = ACTIONS(1973), - [anon_sym_xor2] = ACTIONS(1973), - [anon_sym_or2] = ACTIONS(1973), - [anon_sym_not_DASHin2] = ACTIONS(1973), - [anon_sym_has2] = ACTIONS(1973), - [anon_sym_not_DASHhas2] = ACTIONS(1973), - [anon_sym_starts_DASHwith2] = ACTIONS(1973), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1973), - [anon_sym_ends_DASHwith2] = ACTIONS(1973), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1973), - [anon_sym_EQ_EQ2] = ACTIONS(1973), - [anon_sym_BANG_EQ2] = ACTIONS(1973), - [anon_sym_LT2] = ACTIONS(1975), - [anon_sym_LT_EQ2] = ACTIONS(1973), - [anon_sym_GT_EQ2] = ACTIONS(1973), - [anon_sym_EQ_TILDE2] = ACTIONS(1973), - [anon_sym_BANG_TILDE2] = ACTIONS(1973), - [anon_sym_like2] = ACTIONS(1973), - [anon_sym_not_DASHlike2] = ACTIONS(1973), - [anon_sym_STAR_STAR2] = ACTIONS(1973), - [anon_sym_PLUS_PLUS2] = ACTIONS(1973), - [anon_sym_SLASH2] = ACTIONS(1975), - [anon_sym_mod2] = ACTIONS(1973), - [anon_sym_SLASH_SLASH2] = ACTIONS(1973), - [anon_sym_PLUS2] = ACTIONS(1975), - [anon_sym_bit_DASHshl2] = ACTIONS(1973), - [anon_sym_bit_DASHshr2] = ACTIONS(1973), - [anon_sym_bit_DASHand2] = ACTIONS(1973), - [anon_sym_bit_DASHxor2] = ACTIONS(1973), - [anon_sym_bit_DASHor2] = ACTIONS(1973), - [anon_sym_err_GT] = ACTIONS(1975), - [anon_sym_out_GT] = ACTIONS(1975), - [anon_sym_e_GT] = ACTIONS(1975), - [anon_sym_o_GT] = ACTIONS(1975), - [anon_sym_err_PLUSout_GT] = ACTIONS(1975), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1975), - [anon_sym_o_PLUSe_GT] = ACTIONS(1975), - [anon_sym_e_PLUSo_GT] = ACTIONS(1975), - [anon_sym_err_GT_GT] = ACTIONS(1973), - [anon_sym_out_GT_GT] = ACTIONS(1973), - [anon_sym_e_GT_GT] = ACTIONS(1973), - [anon_sym_o_GT_GT] = ACTIONS(1973), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1973), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1973), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1973), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1973), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(905)] = { - [sym_comment] = STATE(905), - [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(906)] = { - [sym_comment] = STATE(906), - [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), + [STATE(857)] = { + [aux_sym__repeat_newline] = STATE(879), + [sym_comment] = STATE(857), + [anon_sym_export] = ACTIONS(2535), + [anon_sym_alias] = ACTIONS(2537), + [anon_sym_let] = ACTIONS(2537), + [anon_sym_mut] = ACTIONS(2537), + [anon_sym_const] = ACTIONS(2537), + [aux_sym_cmd_identifier_token1] = ACTIONS(2535), + [anon_sym_def] = ACTIONS(2537), + [anon_sym_use] = ACTIONS(2537), + [anon_sym_export_DASHenv] = ACTIONS(2537), + [anon_sym_extern] = ACTIONS(2537), + [anon_sym_module] = ACTIONS(2537), + [anon_sym_for] = ACTIONS(2537), + [anon_sym_loop] = ACTIONS(2537), + [anon_sym_while] = ACTIONS(2537), + [anon_sym_if] = ACTIONS(2537), + [anon_sym_else] = ACTIONS(2537), + [anon_sym_try] = ACTIONS(2537), + [anon_sym_catch] = ACTIONS(2537), + [anon_sym_finally] = ACTIONS(2537), + [anon_sym_match] = ACTIONS(2537), + [anon_sym_in] = ACTIONS(2535), + [anon_sym_true] = ACTIONS(2537), + [anon_sym_false] = ACTIONS(2537), + [anon_sym_null] = ACTIONS(2537), + [aux_sym_cmd_identifier_token3] = ACTIONS(2537), + [aux_sym_cmd_identifier_token4] = ACTIONS(2537), + [aux_sym_cmd_identifier_token5] = ACTIONS(2537), + [sym__newline] = ACTIONS(2316), + [anon_sym_PIPE] = ACTIONS(2539), + [anon_sym_err_GT_PIPE] = ACTIONS(2539), + [anon_sym_out_GT_PIPE] = ACTIONS(2539), + [anon_sym_e_GT_PIPE] = ACTIONS(2539), + [anon_sym_o_GT_PIPE] = ACTIONS(2539), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2539), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2539), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2539), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2539), + [anon_sym_LBRACK] = ACTIONS(2537), + [anon_sym_LPAREN] = ACTIONS(2537), + [anon_sym_DOLLAR] = ACTIONS(2535), + [anon_sym_DASH2] = ACTIONS(2535), [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), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(907)] = { - [sym_comment] = STATE(907), - [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_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(908)] = { - [sym_comment] = STATE(908), - [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_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), + [anon_sym_DOT_DOT] = ACTIONS(2535), + [anon_sym_where] = ACTIONS(2537), + [aux_sym_expr_unary_token1] = ACTIONS(2537), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2537), + [anon_sym_DOT_DOT_LT] = ACTIONS(2537), + [aux_sym__val_number_decimal_token1] = ACTIONS(2535), + [aux_sym__val_number_decimal_token2] = ACTIONS(2537), + [aux_sym__val_number_decimal_token3] = ACTIONS(2537), + [aux_sym__val_number_decimal_token4] = ACTIONS(2537), + [aux_sym__val_number_token1] = ACTIONS(2537), + [aux_sym__val_number_token2] = ACTIONS(2537), + [aux_sym__val_number_token3] = ACTIONS(2537), + [anon_sym_0b] = ACTIONS(2535), + [anon_sym_0o] = ACTIONS(2535), + [anon_sym_0x] = ACTIONS(2535), + [sym_val_date] = ACTIONS(2537), + [anon_sym_DQUOTE] = ACTIONS(2537), + [anon_sym_SQUOTE] = ACTIONS(2537), + [anon_sym_BQUOTE] = ACTIONS(2537), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2537), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2537), + [anon_sym_CARET] = ACTIONS(2537), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2537), }, - [STATE(909)] = { - [sym_comment] = STATE(909), - [anon_sym_in] = ACTIONS(1770), - [sym__newline] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1770), - [anon_sym_PIPE] = ACTIONS(1770), - [anon_sym_err_GT_PIPE] = ACTIONS(1770), - [anon_sym_out_GT_PIPE] = ACTIONS(1770), - [anon_sym_e_GT_PIPE] = ACTIONS(1770), - [anon_sym_o_GT_PIPE] = ACTIONS(1770), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1770), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1770), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1770), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1770), - [anon_sym_RPAREN] = ACTIONS(1770), - [anon_sym_GT2] = ACTIONS(1772), - [anon_sym_DASH2] = ACTIONS(1770), - [anon_sym_RBRACE] = ACTIONS(1770), - [anon_sym_STAR2] = ACTIONS(1772), - [anon_sym_and2] = ACTIONS(1770), - [anon_sym_xor2] = ACTIONS(1770), - [anon_sym_or2] = ACTIONS(1770), - [anon_sym_not_DASHin2] = ACTIONS(1770), - [anon_sym_has2] = ACTIONS(1770), - [anon_sym_not_DASHhas2] = ACTIONS(1770), - [anon_sym_starts_DASHwith2] = ACTIONS(1770), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1770), - [anon_sym_ends_DASHwith2] = ACTIONS(1770), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1770), - [anon_sym_EQ_EQ2] = ACTIONS(1770), - [anon_sym_BANG_EQ2] = ACTIONS(1770), - [anon_sym_LT2] = ACTIONS(1772), - [anon_sym_LT_EQ2] = ACTIONS(1770), - [anon_sym_GT_EQ2] = ACTIONS(1770), - [anon_sym_EQ_TILDE2] = ACTIONS(1770), - [anon_sym_BANG_TILDE2] = ACTIONS(1770), - [anon_sym_like2] = ACTIONS(1770), - [anon_sym_not_DASHlike2] = ACTIONS(1770), - [anon_sym_LPAREN2] = ACTIONS(1770), - [anon_sym_STAR_STAR2] = ACTIONS(1770), - [anon_sym_PLUS_PLUS2] = ACTIONS(1770), - [anon_sym_SLASH2] = ACTIONS(1772), - [anon_sym_mod2] = ACTIONS(1770), - [anon_sym_SLASH_SLASH2] = ACTIONS(1770), - [anon_sym_PLUS2] = ACTIONS(1772), - [anon_sym_bit_DASHshl2] = ACTIONS(1770), - [anon_sym_bit_DASHshr2] = ACTIONS(1770), - [anon_sym_bit_DASHand2] = ACTIONS(1770), - [anon_sym_bit_DASHxor2] = ACTIONS(1770), - [anon_sym_bit_DASHor2] = ACTIONS(1770), - [anon_sym_err_GT] = ACTIONS(1772), - [anon_sym_out_GT] = ACTIONS(1772), - [anon_sym_e_GT] = ACTIONS(1772), - [anon_sym_o_GT] = ACTIONS(1772), - [anon_sym_err_PLUSout_GT] = ACTIONS(1772), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1772), - [anon_sym_o_PLUSe_GT] = ACTIONS(1772), - [anon_sym_e_PLUSo_GT] = ACTIONS(1772), - [anon_sym_err_GT_GT] = ACTIONS(1770), - [anon_sym_out_GT_GT] = ACTIONS(1770), - [anon_sym_e_GT_GT] = ACTIONS(1770), - [anon_sym_o_GT_GT] = ACTIONS(1770), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1770), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1770), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1770), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1770), - [sym__unquoted_pattern] = ACTIONS(1772), + [STATE(858)] = { + [sym_comment] = STATE(858), + [anon_sym_in] = ACTIONS(2364), + [sym__newline] = ACTIONS(2364), + [anon_sym_SEMI] = ACTIONS(2364), + [anon_sym_PIPE] = ACTIONS(2364), + [anon_sym_err_GT_PIPE] = ACTIONS(2364), + [anon_sym_out_GT_PIPE] = ACTIONS(2364), + [anon_sym_e_GT_PIPE] = ACTIONS(2364), + [anon_sym_o_GT_PIPE] = ACTIONS(2364), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2364), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2364), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2364), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2364), + [anon_sym_RPAREN] = ACTIONS(2364), + [anon_sym_GT2] = ACTIONS(2371), + [anon_sym_DASH2] = ACTIONS(2364), + [anon_sym_LBRACE] = ACTIONS(2364), + [anon_sym_STAR2] = ACTIONS(2371), + [anon_sym_and2] = ACTIONS(2364), + [anon_sym_xor2] = ACTIONS(2364), + [anon_sym_or2] = ACTIONS(2364), + [anon_sym_not_DASHin2] = ACTIONS(2364), + [anon_sym_has2] = ACTIONS(2364), + [anon_sym_not_DASHhas2] = ACTIONS(2364), + [anon_sym_starts_DASHwith2] = ACTIONS(2364), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2364), + [anon_sym_ends_DASHwith2] = ACTIONS(2364), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2364), + [anon_sym_EQ_EQ2] = ACTIONS(2364), + [anon_sym_BANG_EQ2] = ACTIONS(2364), + [anon_sym_LT2] = ACTIONS(2371), + [anon_sym_LT_EQ2] = ACTIONS(2364), + [anon_sym_GT_EQ2] = ACTIONS(2364), + [anon_sym_EQ_TILDE2] = ACTIONS(2364), + [anon_sym_BANG_TILDE2] = ACTIONS(2364), + [anon_sym_like2] = ACTIONS(2364), + [anon_sym_not_DASHlike2] = ACTIONS(2364), + [anon_sym_STAR_STAR2] = ACTIONS(2364), + [anon_sym_PLUS_PLUS2] = ACTIONS(2364), + [anon_sym_SLASH2] = ACTIONS(2371), + [anon_sym_mod2] = ACTIONS(2364), + [anon_sym_SLASH_SLASH2] = ACTIONS(2364), + [anon_sym_PLUS2] = ACTIONS(2371), + [anon_sym_bit_DASHshl2] = ACTIONS(2364), + [anon_sym_bit_DASHshr2] = ACTIONS(2364), + [anon_sym_bit_DASHand2] = ACTIONS(2364), + [anon_sym_bit_DASHxor2] = ACTIONS(2364), + [anon_sym_bit_DASHor2] = ACTIONS(2364), + [anon_sym_DOT_DOT2] = ACTIONS(1619), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1621), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1621), + [anon_sym_err_GT] = ACTIONS(2371), + [anon_sym_out_GT] = ACTIONS(2371), + [anon_sym_e_GT] = ACTIONS(2371), + [anon_sym_o_GT] = ACTIONS(2371), + [anon_sym_err_PLUSout_GT] = ACTIONS(2371), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2371), + [anon_sym_o_PLUSe_GT] = ACTIONS(2371), + [anon_sym_e_PLUSo_GT] = ACTIONS(2371), + [anon_sym_err_GT_GT] = ACTIONS(2364), + [anon_sym_out_GT_GT] = ACTIONS(2364), + [anon_sym_e_GT_GT] = ACTIONS(2364), + [anon_sym_o_GT_GT] = ACTIONS(2364), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2364), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2364), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2364), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2364), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(910)] = { - [sym_comment] = STATE(910), - [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_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), + [STATE(859)] = { + [aux_sym__repeat_newline] = STATE(1016), + [sym__expr_parenthesized_immediate] = STATE(5073), + [sym_comment] = STATE(859), + [anon_sym_in] = ACTIONS(2541), + [sym__newline] = ACTIONS(2541), + [anon_sym_SEMI] = ACTIONS(2541), + [anon_sym_PIPE] = ACTIONS(2541), + [anon_sym_err_GT_PIPE] = ACTIONS(2541), + [anon_sym_out_GT_PIPE] = ACTIONS(2541), + [anon_sym_e_GT_PIPE] = ACTIONS(2541), + [anon_sym_o_GT_PIPE] = ACTIONS(2541), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2541), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2541), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2541), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2541), + [anon_sym_RPAREN] = ACTIONS(2541), + [anon_sym_GT2] = ACTIONS(2543), + [anon_sym_DASH2] = ACTIONS(2541), + [anon_sym_LBRACE] = ACTIONS(2541), + [anon_sym_STAR2] = ACTIONS(2543), + [anon_sym_and2] = ACTIONS(2541), + [anon_sym_xor2] = ACTIONS(2541), + [anon_sym_or2] = ACTIONS(2541), + [anon_sym_not_DASHin2] = ACTIONS(2541), + [anon_sym_has2] = ACTIONS(2541), + [anon_sym_not_DASHhas2] = ACTIONS(2541), + [anon_sym_starts_DASHwith2] = ACTIONS(2541), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2541), + [anon_sym_ends_DASHwith2] = ACTIONS(2541), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2541), + [anon_sym_EQ_EQ2] = ACTIONS(2541), + [anon_sym_BANG_EQ2] = ACTIONS(2541), + [anon_sym_LT2] = ACTIONS(2543), + [anon_sym_LT_EQ2] = ACTIONS(2541), + [anon_sym_GT_EQ2] = ACTIONS(2541), + [anon_sym_EQ_TILDE2] = ACTIONS(2541), + [anon_sym_BANG_TILDE2] = ACTIONS(2541), + [anon_sym_like2] = ACTIONS(2541), + [anon_sym_not_DASHlike2] = ACTIONS(2541), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_STAR_STAR2] = ACTIONS(2541), + [anon_sym_PLUS_PLUS2] = ACTIONS(2541), + [anon_sym_SLASH2] = ACTIONS(2543), + [anon_sym_mod2] = ACTIONS(2541), + [anon_sym_SLASH_SLASH2] = ACTIONS(2541), + [anon_sym_PLUS2] = ACTIONS(2543), + [anon_sym_bit_DASHshl2] = ACTIONS(2541), + [anon_sym_bit_DASHshr2] = ACTIONS(2541), + [anon_sym_bit_DASHand2] = ACTIONS(2541), + [anon_sym_bit_DASHxor2] = ACTIONS(2541), + [anon_sym_bit_DASHor2] = ACTIONS(2541), + [anon_sym_err_GT] = ACTIONS(2543), + [anon_sym_out_GT] = ACTIONS(2543), + [anon_sym_e_GT] = ACTIONS(2543), + [anon_sym_o_GT] = ACTIONS(2543), + [anon_sym_err_PLUSout_GT] = ACTIONS(2543), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2543), + [anon_sym_o_PLUSe_GT] = ACTIONS(2543), + [anon_sym_e_PLUSo_GT] = ACTIONS(2543), + [anon_sym_err_GT_GT] = ACTIONS(2541), + [anon_sym_out_GT_GT] = ACTIONS(2541), + [anon_sym_e_GT_GT] = ACTIONS(2541), + [anon_sym_o_GT_GT] = ACTIONS(2541), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2541), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2541), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2541), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2541), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(911)] = { - [sym_comment] = STATE(911), - [anon_sym_in] = ACTIONS(1852), - [sym__newline] = ACTIONS(1852), - [anon_sym_SEMI] = ACTIONS(1852), - [anon_sym_PIPE] = ACTIONS(1852), - [anon_sym_err_GT_PIPE] = ACTIONS(1852), - [anon_sym_out_GT_PIPE] = ACTIONS(1852), - [anon_sym_e_GT_PIPE] = ACTIONS(1852), - [anon_sym_o_GT_PIPE] = ACTIONS(1852), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1852), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1852), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1852), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1852), - [anon_sym_RPAREN] = ACTIONS(1852), - [anon_sym_GT2] = ACTIONS(1854), - [anon_sym_DASH2] = ACTIONS(1852), - [anon_sym_RBRACE] = ACTIONS(1852), - [anon_sym_STAR2] = ACTIONS(1854), - [anon_sym_and2] = ACTIONS(1852), - [anon_sym_xor2] = ACTIONS(1852), - [anon_sym_or2] = ACTIONS(1852), - [anon_sym_not_DASHin2] = ACTIONS(1852), - [anon_sym_has2] = ACTIONS(1852), - [anon_sym_not_DASHhas2] = ACTIONS(1852), - [anon_sym_starts_DASHwith2] = ACTIONS(1852), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1852), - [anon_sym_ends_DASHwith2] = ACTIONS(1852), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1852), - [anon_sym_EQ_EQ2] = ACTIONS(1852), - [anon_sym_BANG_EQ2] = ACTIONS(1852), - [anon_sym_LT2] = ACTIONS(1854), - [anon_sym_LT_EQ2] = ACTIONS(1852), - [anon_sym_GT_EQ2] = ACTIONS(1852), - [anon_sym_EQ_TILDE2] = ACTIONS(1852), - [anon_sym_BANG_TILDE2] = ACTIONS(1852), - [anon_sym_like2] = ACTIONS(1852), - [anon_sym_not_DASHlike2] = ACTIONS(1852), - [anon_sym_LPAREN2] = ACTIONS(1852), - [anon_sym_STAR_STAR2] = ACTIONS(1852), - [anon_sym_PLUS_PLUS2] = ACTIONS(1852), - [anon_sym_SLASH2] = ACTIONS(1854), - [anon_sym_mod2] = ACTIONS(1852), - [anon_sym_SLASH_SLASH2] = ACTIONS(1852), - [anon_sym_PLUS2] = ACTIONS(1854), - [anon_sym_bit_DASHshl2] = ACTIONS(1852), - [anon_sym_bit_DASHshr2] = ACTIONS(1852), - [anon_sym_bit_DASHand2] = ACTIONS(1852), - [anon_sym_bit_DASHxor2] = ACTIONS(1852), - [anon_sym_bit_DASHor2] = ACTIONS(1852), - [anon_sym_err_GT] = ACTIONS(1854), - [anon_sym_out_GT] = ACTIONS(1854), - [anon_sym_e_GT] = ACTIONS(1854), - [anon_sym_o_GT] = ACTIONS(1854), - [anon_sym_err_PLUSout_GT] = ACTIONS(1854), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1854), - [anon_sym_o_PLUSe_GT] = ACTIONS(1854), - [anon_sym_e_PLUSo_GT] = ACTIONS(1854), - [anon_sym_err_GT_GT] = ACTIONS(1852), - [anon_sym_out_GT_GT] = ACTIONS(1852), - [anon_sym_e_GT_GT] = ACTIONS(1852), - [anon_sym_o_GT_GT] = ACTIONS(1852), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1852), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1852), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1852), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1852), - [sym__unquoted_pattern] = ACTIONS(1854), + [STATE(860)] = { + [sym_expr_unary] = STATE(1320), + [sym__expr_unary_minus] = STATE(1296), + [sym_expr_binary] = STATE(1320), + [sym__expr_binary_expression] = STATE(1321), + [sym_expr_parenthesized] = STATE(935), + [sym_val_range] = STATE(1320), + [sym__val_range] = STATE(4844), + [sym__value] = STATE(1320), + [sym_val_nothing] = STATE(1316), + [sym_val_bool] = STATE(985), + [sym_val_variable] = STATE(912), + [sym_val_cellpath] = STATE(1316), + [sym_val_number] = STATE(1316), + [sym__val_number_decimal] = STATE(471), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1316), + [sym_val_filesize] = STATE(1316), + [sym_val_binary] = STATE(1316), + [sym_val_string] = STATE(1316), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1316), + [sym__inter_single_quotes] = STATE(1277), + [sym__inter_double_quotes] = STATE(1311), + [sym_val_list] = STATE(1316), + [sym_val_record] = STATE(1316), + [sym_val_table] = STATE(1316), + [sym_val_closure] = STATE(1316), + [sym_unquoted] = STATE(980), + [sym__unquoted_with_expr] = STATE(1322), + [sym__unquoted_anonymous_prefix] = STATE(4844), + [sym_comment] = STATE(860), + [anon_sym_true] = ACTIONS(2489), + [anon_sym_false] = ACTIONS(2489), + [anon_sym_null] = ACTIONS(2491), + [aux_sym_cmd_identifier_token3] = ACTIONS(2493), + [aux_sym_cmd_identifier_token4] = ACTIONS(2493), + [aux_sym_cmd_identifier_token5] = ACTIONS(2493), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2495), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2497), + [anon_sym_DOT_DOT_LT] = ACTIONS(2497), + [aux_sym__val_number_decimal_token1] = ACTIONS(2499), + [aux_sym__val_number_decimal_token2] = ACTIONS(2501), + [aux_sym__val_number_decimal_token3] = ACTIONS(2503), + [aux_sym__val_number_decimal_token4] = ACTIONS(2503), + [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(2505), + [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(2403), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(912)] = { - [sym_comment] = STATE(912), - [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), + [STATE(861)] = { + [aux_sym__repeat_newline] = STATE(1020), + [sym__expr_parenthesized_immediate] = STATE(5073), + [sym_comment] = STATE(861), + [anon_sym_in] = ACTIONS(2541), + [sym__newline] = ACTIONS(2541), + [anon_sym_SEMI] = ACTIONS(2541), + [anon_sym_PIPE] = ACTIONS(2541), + [anon_sym_err_GT_PIPE] = ACTIONS(2541), + [anon_sym_out_GT_PIPE] = ACTIONS(2541), + [anon_sym_e_GT_PIPE] = ACTIONS(2541), + [anon_sym_o_GT_PIPE] = ACTIONS(2541), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2541), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2541), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2541), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2541), + [anon_sym_RPAREN] = ACTIONS(2541), + [anon_sym_GT2] = ACTIONS(2543), + [anon_sym_DASH2] = ACTIONS(2541), + [anon_sym_LBRACE] = ACTIONS(2541), + [anon_sym_STAR2] = ACTIONS(2543), + [anon_sym_and2] = ACTIONS(2541), + [anon_sym_xor2] = ACTIONS(2541), + [anon_sym_or2] = ACTIONS(2541), + [anon_sym_not_DASHin2] = ACTIONS(2541), + [anon_sym_has2] = ACTIONS(2541), + [anon_sym_not_DASHhas2] = ACTIONS(2541), + [anon_sym_starts_DASHwith2] = ACTIONS(2541), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2541), + [anon_sym_ends_DASHwith2] = ACTIONS(2541), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2541), + [anon_sym_EQ_EQ2] = ACTIONS(2541), + [anon_sym_BANG_EQ2] = ACTIONS(2541), + [anon_sym_LT2] = ACTIONS(2543), + [anon_sym_LT_EQ2] = ACTIONS(2541), + [anon_sym_GT_EQ2] = ACTIONS(2541), + [anon_sym_EQ_TILDE2] = ACTIONS(2541), + [anon_sym_BANG_TILDE2] = ACTIONS(2541), + [anon_sym_like2] = ACTIONS(2541), + [anon_sym_not_DASHlike2] = ACTIONS(2541), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_STAR_STAR2] = ACTIONS(2541), + [anon_sym_PLUS_PLUS2] = ACTIONS(2541), + [anon_sym_SLASH2] = ACTIONS(2543), + [anon_sym_mod2] = ACTIONS(2541), + [anon_sym_SLASH_SLASH2] = ACTIONS(2541), + [anon_sym_PLUS2] = ACTIONS(2543), + [anon_sym_bit_DASHshl2] = ACTIONS(2541), + [anon_sym_bit_DASHshr2] = ACTIONS(2541), + [anon_sym_bit_DASHand2] = ACTIONS(2541), + [anon_sym_bit_DASHxor2] = ACTIONS(2541), + [anon_sym_bit_DASHor2] = ACTIONS(2541), + [anon_sym_err_GT] = ACTIONS(2543), + [anon_sym_out_GT] = ACTIONS(2543), + [anon_sym_e_GT] = ACTIONS(2543), + [anon_sym_o_GT] = ACTIONS(2543), + [anon_sym_err_PLUSout_GT] = ACTIONS(2543), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2543), + [anon_sym_o_PLUSe_GT] = ACTIONS(2543), + [anon_sym_e_PLUSo_GT] = ACTIONS(2543), + [anon_sym_err_GT_GT] = ACTIONS(2541), + [anon_sym_out_GT_GT] = ACTIONS(2541), + [anon_sym_e_GT_GT] = ACTIONS(2541), + [anon_sym_o_GT_GT] = ACTIONS(2541), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2541), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2541), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2541), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2541), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(913)] = { - [sym_comment] = STATE(913), - [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_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), + [STATE(862)] = { + [sym_expr_unary] = STATE(1320), + [sym__expr_unary_minus] = STATE(1296), + [sym_expr_binary] = STATE(1320), + [sym__expr_binary_expression] = STATE(1323), + [sym_expr_parenthesized] = STATE(935), + [sym_val_range] = STATE(1320), + [sym__val_range] = STATE(4844), + [sym__value] = STATE(1320), + [sym_val_nothing] = STATE(1316), + [sym_val_bool] = STATE(985), + [sym_val_variable] = STATE(912), + [sym_val_cellpath] = STATE(1316), + [sym_val_number] = STATE(1316), + [sym__val_number_decimal] = STATE(471), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1316), + [sym_val_filesize] = STATE(1316), + [sym_val_binary] = STATE(1316), + [sym_val_string] = STATE(1316), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1316), + [sym__inter_single_quotes] = STATE(1277), + [sym__inter_double_quotes] = STATE(1311), + [sym_val_list] = STATE(1316), + [sym_val_record] = STATE(1316), + [sym_val_table] = STATE(1316), + [sym_val_closure] = STATE(1316), + [sym_unquoted] = STATE(1037), + [sym__unquoted_with_expr] = STATE(1324), + [sym__unquoted_anonymous_prefix] = STATE(4844), + [sym_comment] = STATE(862), + [anon_sym_true] = ACTIONS(2489), + [anon_sym_false] = ACTIONS(2489), + [anon_sym_null] = ACTIONS(2491), + [aux_sym_cmd_identifier_token3] = ACTIONS(2493), + [aux_sym_cmd_identifier_token4] = ACTIONS(2493), + [aux_sym_cmd_identifier_token5] = ACTIONS(2493), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2495), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2497), + [anon_sym_DOT_DOT_LT] = ACTIONS(2497), + [aux_sym__val_number_decimal_token1] = ACTIONS(2499), + [aux_sym__val_number_decimal_token2] = ACTIONS(2501), + [aux_sym__val_number_decimal_token3] = ACTIONS(2503), + [aux_sym__val_number_decimal_token4] = ACTIONS(2503), + [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(2505), + [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(2403), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(914)] = { - [sym_comment] = STATE(914), + [STATE(863)] = { + [aux_sym__repeat_newline] = STATE(1026), + [sym__expr_parenthesized_immediate] = STATE(5073), + [sym_comment] = STATE(863), [anon_sym_in] = ACTIONS(2541), [sym__newline] = ACTIONS(2541), [anon_sym_SEMI] = ACTIONS(2541), @@ -116219,8 +113526,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT2] = ACTIONS(2543), [anon_sym_DASH2] = ACTIONS(2541), [anon_sym_LBRACE] = ACTIONS(2541), - [anon_sym_RBRACE] = ACTIONS(2541), - [anon_sym_EQ_GT] = ACTIONS(2541), [anon_sym_STAR2] = ACTIONS(2543), [anon_sym_and2] = ACTIONS(2541), [anon_sym_xor2] = ACTIONS(2541), @@ -116241,6 +113546,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2541), [anon_sym_like2] = ACTIONS(2541), [anon_sym_not_DASHlike2] = ACTIONS(2541), + [anon_sym_LPAREN2] = ACTIONS(1818), [anon_sym_STAR_STAR2] = ACTIONS(2541), [anon_sym_PLUS_PLUS2] = ACTIONS(2541), [anon_sym_SLASH2] = ACTIONS(2543), @@ -116270,146 +113576,989 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2541), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(915)] = { - [sym_comment] = STATE(915), - [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_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), + [STATE(864)] = { + [sym_expr_unary] = STATE(1320), + [sym__expr_unary_minus] = STATE(1296), + [sym_expr_binary] = STATE(1320), + [sym__expr_binary_expression] = STATE(1325), + [sym_expr_parenthesized] = STATE(935), + [sym_val_range] = STATE(1320), + [sym__val_range] = STATE(4844), + [sym__value] = STATE(1320), + [sym_val_nothing] = STATE(1316), + [sym_val_bool] = STATE(985), + [sym_val_variable] = STATE(912), + [sym_val_cellpath] = STATE(1316), + [sym_val_number] = STATE(1316), + [sym__val_number_decimal] = STATE(471), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1316), + [sym_val_filesize] = STATE(1316), + [sym_val_binary] = STATE(1316), + [sym_val_string] = STATE(1316), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1316), + [sym__inter_single_quotes] = STATE(1277), + [sym__inter_double_quotes] = STATE(1311), + [sym_val_list] = STATE(1316), + [sym_val_record] = STATE(1316), + [sym_val_table] = STATE(1316), + [sym_val_closure] = STATE(1316), + [sym_unquoted] = STATE(1053), + [sym__unquoted_with_expr] = STATE(1326), + [sym__unquoted_anonymous_prefix] = STATE(4844), + [sym_comment] = STATE(864), + [anon_sym_true] = ACTIONS(2489), + [anon_sym_false] = ACTIONS(2489), + [anon_sym_null] = ACTIONS(2491), + [aux_sym_cmd_identifier_token3] = ACTIONS(2493), + [aux_sym_cmd_identifier_token4] = ACTIONS(2493), + [aux_sym_cmd_identifier_token5] = ACTIONS(2493), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2495), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2497), + [anon_sym_DOT_DOT_LT] = ACTIONS(2497), + [aux_sym__val_number_decimal_token1] = ACTIONS(2499), + [aux_sym__val_number_decimal_token2] = ACTIONS(2501), + [aux_sym__val_number_decimal_token3] = ACTIONS(2503), + [aux_sym__val_number_decimal_token4] = ACTIONS(2503), + [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(2505), + [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(2403), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(916)] = { - [aux_sym__repeat_newline] = STATE(937), - [sym_comment] = STATE(916), - [anon_sym_export] = ACTIONS(2545), - [anon_sym_alias] = ACTIONS(2547), - [anon_sym_let] = ACTIONS(2547), - [anon_sym_mut] = ACTIONS(2547), - [anon_sym_const] = ACTIONS(2547), - [aux_sym_cmd_identifier_token1] = ACTIONS(2545), - [anon_sym_def] = ACTIONS(2547), - [anon_sym_use] = ACTIONS(2547), - [anon_sym_export_DASHenv] = ACTIONS(2547), - [anon_sym_extern] = ACTIONS(2547), - [anon_sym_module] = ACTIONS(2547), - [anon_sym_for] = ACTIONS(2547), - [anon_sym_loop] = ACTIONS(2547), - [anon_sym_while] = ACTIONS(2547), - [anon_sym_if] = ACTIONS(2547), - [anon_sym_else] = ACTIONS(2547), - [anon_sym_try] = ACTIONS(2547), - [anon_sym_catch] = ACTIONS(2547), - [anon_sym_match] = ACTIONS(2547), + [STATE(865)] = { + [sym_comment] = STATE(865), + [anon_sym_if] = ACTIONS(2545), [anon_sym_in] = ACTIONS(2545), - [anon_sym_true] = ACTIONS(2547), - [anon_sym_false] = ACTIONS(2547), - [anon_sym_null] = ACTIONS(2547), - [aux_sym_cmd_identifier_token3] = ACTIONS(2547), - [aux_sym_cmd_identifier_token4] = ACTIONS(2547), - [aux_sym_cmd_identifier_token5] = ACTIONS(2547), - [sym__newline] = ACTIONS(2323), - [anon_sym_PIPE] = ACTIONS(2549), - [anon_sym_err_GT_PIPE] = ACTIONS(2549), - [anon_sym_out_GT_PIPE] = ACTIONS(2549), - [anon_sym_e_GT_PIPE] = ACTIONS(2549), - [anon_sym_o_GT_PIPE] = ACTIONS(2549), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2549), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2549), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2549), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2549), - [anon_sym_LBRACK] = ACTIONS(2547), - [anon_sym_LPAREN] = ACTIONS(2547), - [anon_sym_DOLLAR] = 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(2547), - [anon_sym_DOT_DOT] = ACTIONS(2545), - [anon_sym_where] = ACTIONS(2547), - [aux_sym_expr_unary_token1] = ACTIONS(2547), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2547), - [anon_sym_DOT_DOT_LT] = ACTIONS(2547), - [aux_sym__val_number_decimal_token1] = ACTIONS(2545), - [aux_sym__val_number_decimal_token2] = ACTIONS(2547), - [aux_sym__val_number_decimal_token3] = ACTIONS(2547), - [aux_sym__val_number_decimal_token4] = ACTIONS(2547), - [aux_sym__val_number_token1] = ACTIONS(2547), - [aux_sym__val_number_token2] = ACTIONS(2547), - [aux_sym__val_number_token3] = ACTIONS(2547), - [anon_sym_0b] = ACTIONS(2545), - [anon_sym_0o] = ACTIONS(2545), - [anon_sym_0x] = ACTIONS(2545), - [sym_val_date] = ACTIONS(2547), - [anon_sym_DQUOTE] = ACTIONS(2547), - [anon_sym_SQUOTE] = ACTIONS(2547), - [anon_sym_BQUOTE] = ACTIONS(2547), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2547), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2547), - [anon_sym_CARET] = ACTIONS(2547), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2547), + [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), + [STATE(866)] = { + [aux_sym__repeat_newline] = STATE(1029), + [sym__expr_parenthesized_immediate] = STATE(5073), + [sym_comment] = STATE(866), + [anon_sym_in] = ACTIONS(2541), + [sym__newline] = ACTIONS(2541), + [anon_sym_SEMI] = ACTIONS(2541), + [anon_sym_PIPE] = ACTIONS(2541), + [anon_sym_err_GT_PIPE] = ACTIONS(2541), + [anon_sym_out_GT_PIPE] = ACTIONS(2541), + [anon_sym_e_GT_PIPE] = ACTIONS(2541), + [anon_sym_o_GT_PIPE] = ACTIONS(2541), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2541), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2541), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2541), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2541), + [anon_sym_RPAREN] = ACTIONS(2541), + [anon_sym_GT2] = ACTIONS(2543), + [anon_sym_DASH2] = ACTIONS(2541), + [anon_sym_LBRACE] = ACTIONS(2541), + [anon_sym_STAR2] = ACTIONS(2543), + [anon_sym_and2] = ACTIONS(2541), + [anon_sym_xor2] = ACTIONS(2541), + [anon_sym_or2] = ACTIONS(2541), + [anon_sym_not_DASHin2] = ACTIONS(2541), + [anon_sym_has2] = ACTIONS(2541), + [anon_sym_not_DASHhas2] = ACTIONS(2541), + [anon_sym_starts_DASHwith2] = ACTIONS(2541), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2541), + [anon_sym_ends_DASHwith2] = ACTIONS(2541), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2541), + [anon_sym_EQ_EQ2] = ACTIONS(2541), + [anon_sym_BANG_EQ2] = ACTIONS(2541), + [anon_sym_LT2] = ACTIONS(2543), + [anon_sym_LT_EQ2] = ACTIONS(2541), + [anon_sym_GT_EQ2] = ACTIONS(2541), + [anon_sym_EQ_TILDE2] = ACTIONS(2541), + [anon_sym_BANG_TILDE2] = ACTIONS(2541), + [anon_sym_like2] = ACTIONS(2541), + [anon_sym_not_DASHlike2] = ACTIONS(2541), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_STAR_STAR2] = ACTIONS(2541), + [anon_sym_PLUS_PLUS2] = ACTIONS(2541), + [anon_sym_SLASH2] = ACTIONS(2543), + [anon_sym_mod2] = ACTIONS(2541), + [anon_sym_SLASH_SLASH2] = ACTIONS(2541), + [anon_sym_PLUS2] = ACTIONS(2543), + [anon_sym_bit_DASHshl2] = ACTIONS(2541), + [anon_sym_bit_DASHshr2] = ACTIONS(2541), + [anon_sym_bit_DASHand2] = ACTIONS(2541), + [anon_sym_bit_DASHxor2] = ACTIONS(2541), + [anon_sym_bit_DASHor2] = ACTIONS(2541), + [anon_sym_err_GT] = ACTIONS(2543), + [anon_sym_out_GT] = ACTIONS(2543), + [anon_sym_e_GT] = ACTIONS(2543), + [anon_sym_o_GT] = ACTIONS(2543), + [anon_sym_err_PLUSout_GT] = ACTIONS(2543), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2543), + [anon_sym_o_PLUSe_GT] = ACTIONS(2543), + [anon_sym_e_PLUSo_GT] = ACTIONS(2543), + [anon_sym_err_GT_GT] = ACTIONS(2541), + [anon_sym_out_GT_GT] = ACTIONS(2541), + [anon_sym_e_GT_GT] = ACTIONS(2541), + [anon_sym_o_GT_GT] = ACTIONS(2541), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2541), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2541), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2541), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2541), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(867)] = { + [aux_sym__repeat_newline] = STATE(1033), + [sym__expr_parenthesized_immediate] = STATE(5073), + [sym_comment] = STATE(867), + [anon_sym_in] = ACTIONS(2541), + [sym__newline] = ACTIONS(2541), + [anon_sym_SEMI] = ACTIONS(2541), + [anon_sym_PIPE] = ACTIONS(2541), + [anon_sym_err_GT_PIPE] = ACTIONS(2541), + [anon_sym_out_GT_PIPE] = ACTIONS(2541), + [anon_sym_e_GT_PIPE] = ACTIONS(2541), + [anon_sym_o_GT_PIPE] = ACTIONS(2541), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2541), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2541), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2541), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2541), + [anon_sym_RPAREN] = ACTIONS(2541), + [anon_sym_GT2] = ACTIONS(2543), + [anon_sym_DASH2] = ACTIONS(2541), + [anon_sym_LBRACE] = ACTIONS(2541), + [anon_sym_STAR2] = ACTIONS(2543), + [anon_sym_and2] = ACTIONS(2541), + [anon_sym_xor2] = ACTIONS(2541), + [anon_sym_or2] = ACTIONS(2541), + [anon_sym_not_DASHin2] = ACTIONS(2541), + [anon_sym_has2] = ACTIONS(2541), + [anon_sym_not_DASHhas2] = ACTIONS(2541), + [anon_sym_starts_DASHwith2] = ACTIONS(2541), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2541), + [anon_sym_ends_DASHwith2] = ACTIONS(2541), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2541), + [anon_sym_EQ_EQ2] = ACTIONS(2541), + [anon_sym_BANG_EQ2] = ACTIONS(2541), + [anon_sym_LT2] = ACTIONS(2543), + [anon_sym_LT_EQ2] = ACTIONS(2541), + [anon_sym_GT_EQ2] = ACTIONS(2541), + [anon_sym_EQ_TILDE2] = ACTIONS(2541), + [anon_sym_BANG_TILDE2] = ACTIONS(2541), + [anon_sym_like2] = ACTIONS(2541), + [anon_sym_not_DASHlike2] = ACTIONS(2541), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_STAR_STAR2] = ACTIONS(2541), + [anon_sym_PLUS_PLUS2] = ACTIONS(2541), + [anon_sym_SLASH2] = ACTIONS(2543), + [anon_sym_mod2] = ACTIONS(2541), + [anon_sym_SLASH_SLASH2] = ACTIONS(2541), + [anon_sym_PLUS2] = ACTIONS(2543), + [anon_sym_bit_DASHshl2] = ACTIONS(2541), + [anon_sym_bit_DASHshr2] = ACTIONS(2541), + [anon_sym_bit_DASHand2] = ACTIONS(2541), + [anon_sym_bit_DASHxor2] = ACTIONS(2541), + [anon_sym_bit_DASHor2] = ACTIONS(2541), + [anon_sym_err_GT] = ACTIONS(2543), + [anon_sym_out_GT] = ACTIONS(2543), + [anon_sym_e_GT] = ACTIONS(2543), + [anon_sym_o_GT] = ACTIONS(2543), + [anon_sym_err_PLUSout_GT] = ACTIONS(2543), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2543), + [anon_sym_o_PLUSe_GT] = ACTIONS(2543), + [anon_sym_e_PLUSo_GT] = ACTIONS(2543), + [anon_sym_err_GT_GT] = ACTIONS(2541), + [anon_sym_out_GT_GT] = ACTIONS(2541), + [anon_sym_e_GT_GT] = ACTIONS(2541), + [anon_sym_o_GT_GT] = ACTIONS(2541), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2541), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2541), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2541), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2541), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(868)] = { + [sym_expr_unary] = STATE(1320), + [sym__expr_unary_minus] = STATE(1296), + [sym_expr_binary] = STATE(1320), + [sym__expr_binary_expression] = STATE(1327), + [sym_expr_parenthesized] = STATE(935), + [sym_val_range] = STATE(1320), + [sym__val_range] = STATE(4844), + [sym__value] = STATE(1320), + [sym_val_nothing] = STATE(1316), + [sym_val_bool] = STATE(985), + [sym_val_variable] = STATE(912), + [sym_val_cellpath] = STATE(1316), + [sym_val_number] = STATE(1316), + [sym__val_number_decimal] = STATE(471), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1316), + [sym_val_filesize] = STATE(1316), + [sym_val_binary] = STATE(1316), + [sym_val_string] = STATE(1316), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1316), + [sym__inter_single_quotes] = STATE(1277), + [sym__inter_double_quotes] = STATE(1311), + [sym_val_list] = STATE(1316), + [sym_val_record] = STATE(1316), + [sym_val_table] = STATE(1316), + [sym_val_closure] = STATE(1316), + [sym_unquoted] = STATE(1058), + [sym__unquoted_with_expr] = STATE(1328), + [sym__unquoted_anonymous_prefix] = STATE(4844), + [sym_comment] = STATE(868), + [anon_sym_true] = ACTIONS(2489), + [anon_sym_false] = ACTIONS(2489), + [anon_sym_null] = ACTIONS(2491), + [aux_sym_cmd_identifier_token3] = ACTIONS(2493), + [aux_sym_cmd_identifier_token4] = ACTIONS(2493), + [aux_sym_cmd_identifier_token5] = ACTIONS(2493), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2495), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2497), + [anon_sym_DOT_DOT_LT] = ACTIONS(2497), + [aux_sym__val_number_decimal_token1] = ACTIONS(2499), + [aux_sym__val_number_decimal_token2] = ACTIONS(2501), + [aux_sym__val_number_decimal_token3] = ACTIONS(2503), + [aux_sym__val_number_decimal_token4] = ACTIONS(2503), + [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(2505), + [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(2403), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, + [STATE(869)] = { + [aux_sym__repeat_newline] = STATE(1050), + [sym__expr_parenthesized_immediate] = STATE(5073), + [sym_comment] = STATE(869), + [anon_sym_in] = ACTIONS(2541), + [sym__newline] = ACTIONS(2541), + [anon_sym_SEMI] = ACTIONS(2541), + [anon_sym_PIPE] = ACTIONS(2541), + [anon_sym_err_GT_PIPE] = ACTIONS(2541), + [anon_sym_out_GT_PIPE] = ACTIONS(2541), + [anon_sym_e_GT_PIPE] = ACTIONS(2541), + [anon_sym_o_GT_PIPE] = ACTIONS(2541), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2541), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2541), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2541), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2541), + [anon_sym_RPAREN] = ACTIONS(2541), + [anon_sym_GT2] = ACTIONS(2543), + [anon_sym_DASH2] = ACTIONS(2541), + [anon_sym_LBRACE] = ACTIONS(2541), + [anon_sym_STAR2] = ACTIONS(2543), + [anon_sym_and2] = ACTIONS(2541), + [anon_sym_xor2] = ACTIONS(2541), + [anon_sym_or2] = ACTIONS(2541), + [anon_sym_not_DASHin2] = ACTIONS(2541), + [anon_sym_has2] = ACTIONS(2541), + [anon_sym_not_DASHhas2] = ACTIONS(2541), + [anon_sym_starts_DASHwith2] = ACTIONS(2541), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2541), + [anon_sym_ends_DASHwith2] = ACTIONS(2541), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2541), + [anon_sym_EQ_EQ2] = ACTIONS(2541), + [anon_sym_BANG_EQ2] = ACTIONS(2541), + [anon_sym_LT2] = ACTIONS(2543), + [anon_sym_LT_EQ2] = ACTIONS(2541), + [anon_sym_GT_EQ2] = ACTIONS(2541), + [anon_sym_EQ_TILDE2] = ACTIONS(2541), + [anon_sym_BANG_TILDE2] = ACTIONS(2541), + [anon_sym_like2] = ACTIONS(2541), + [anon_sym_not_DASHlike2] = ACTIONS(2541), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_STAR_STAR2] = ACTIONS(2541), + [anon_sym_PLUS_PLUS2] = ACTIONS(2541), + [anon_sym_SLASH2] = ACTIONS(2543), + [anon_sym_mod2] = ACTIONS(2541), + [anon_sym_SLASH_SLASH2] = ACTIONS(2541), + [anon_sym_PLUS2] = ACTIONS(2543), + [anon_sym_bit_DASHshl2] = ACTIONS(2541), + [anon_sym_bit_DASHshr2] = ACTIONS(2541), + [anon_sym_bit_DASHand2] = ACTIONS(2541), + [anon_sym_bit_DASHxor2] = ACTIONS(2541), + [anon_sym_bit_DASHor2] = ACTIONS(2541), + [anon_sym_err_GT] = ACTIONS(2543), + [anon_sym_out_GT] = ACTIONS(2543), + [anon_sym_e_GT] = ACTIONS(2543), + [anon_sym_o_GT] = ACTIONS(2543), + [anon_sym_err_PLUSout_GT] = ACTIONS(2543), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2543), + [anon_sym_o_PLUSe_GT] = ACTIONS(2543), + [anon_sym_e_PLUSo_GT] = ACTIONS(2543), + [anon_sym_err_GT_GT] = ACTIONS(2541), + [anon_sym_out_GT_GT] = ACTIONS(2541), + [anon_sym_e_GT_GT] = ACTIONS(2541), + [anon_sym_o_GT_GT] = ACTIONS(2541), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2541), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2541), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2541), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2541), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(870)] = { + [sym_expr_unary] = STATE(1320), + [sym__expr_unary_minus] = STATE(1296), + [sym_expr_binary] = STATE(1320), + [sym__expr_binary_expression] = STATE(1329), + [sym_expr_parenthesized] = STATE(935), + [sym_val_range] = STATE(1320), + [sym__val_range] = STATE(4844), + [sym__value] = STATE(1320), + [sym_val_nothing] = STATE(1316), + [sym_val_bool] = STATE(985), + [sym_val_variable] = STATE(912), + [sym_val_cellpath] = STATE(1316), + [sym_val_number] = STATE(1316), + [sym__val_number_decimal] = STATE(471), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1316), + [sym_val_filesize] = STATE(1316), + [sym_val_binary] = STATE(1316), + [sym_val_string] = STATE(1316), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1316), + [sym__inter_single_quotes] = STATE(1277), + [sym__inter_double_quotes] = STATE(1311), + [sym_val_list] = STATE(1316), + [sym_val_record] = STATE(1316), + [sym_val_table] = STATE(1316), + [sym_val_closure] = STATE(1316), + [sym_unquoted] = STATE(1075), + [sym__unquoted_with_expr] = STATE(1330), + [sym__unquoted_anonymous_prefix] = STATE(4844), + [sym_comment] = STATE(870), + [anon_sym_true] = ACTIONS(2489), + [anon_sym_false] = ACTIONS(2489), + [anon_sym_null] = ACTIONS(2491), + [aux_sym_cmd_identifier_token3] = ACTIONS(2493), + [aux_sym_cmd_identifier_token4] = ACTIONS(2493), + [aux_sym_cmd_identifier_token5] = ACTIONS(2493), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2495), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2497), + [anon_sym_DOT_DOT_LT] = ACTIONS(2497), + [aux_sym__val_number_decimal_token1] = ACTIONS(2499), + [aux_sym__val_number_decimal_token2] = ACTIONS(2501), + [aux_sym__val_number_decimal_token3] = ACTIONS(2503), + [aux_sym__val_number_decimal_token4] = ACTIONS(2503), + [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(2505), + [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(2403), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, + [STATE(871)] = { + [aux_sym__repeat_newline] = STATE(977), + [sym__expr_parenthesized_immediate] = STATE(5073), + [sym_comment] = STATE(871), + [anon_sym_in] = ACTIONS(2541), + [sym__newline] = ACTIONS(2541), + [anon_sym_SEMI] = ACTIONS(2541), + [anon_sym_PIPE] = ACTIONS(2541), + [anon_sym_err_GT_PIPE] = ACTIONS(2541), + [anon_sym_out_GT_PIPE] = ACTIONS(2541), + [anon_sym_e_GT_PIPE] = ACTIONS(2541), + [anon_sym_o_GT_PIPE] = ACTIONS(2541), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2541), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2541), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2541), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2541), + [anon_sym_RPAREN] = ACTIONS(2541), + [anon_sym_GT2] = ACTIONS(2543), + [anon_sym_DASH2] = ACTIONS(2541), + [anon_sym_LBRACE] = ACTIONS(2541), + [anon_sym_STAR2] = ACTIONS(2543), + [anon_sym_and2] = ACTIONS(2541), + [anon_sym_xor2] = ACTIONS(2541), + [anon_sym_or2] = ACTIONS(2541), + [anon_sym_not_DASHin2] = ACTIONS(2541), + [anon_sym_has2] = ACTIONS(2541), + [anon_sym_not_DASHhas2] = ACTIONS(2541), + [anon_sym_starts_DASHwith2] = ACTIONS(2541), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2541), + [anon_sym_ends_DASHwith2] = ACTIONS(2541), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2541), + [anon_sym_EQ_EQ2] = ACTIONS(2541), + [anon_sym_BANG_EQ2] = ACTIONS(2541), + [anon_sym_LT2] = ACTIONS(2543), + [anon_sym_LT_EQ2] = ACTIONS(2541), + [anon_sym_GT_EQ2] = ACTIONS(2541), + [anon_sym_EQ_TILDE2] = ACTIONS(2541), + [anon_sym_BANG_TILDE2] = ACTIONS(2541), + [anon_sym_like2] = ACTIONS(2541), + [anon_sym_not_DASHlike2] = ACTIONS(2541), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_STAR_STAR2] = ACTIONS(2541), + [anon_sym_PLUS_PLUS2] = ACTIONS(2541), + [anon_sym_SLASH2] = ACTIONS(2543), + [anon_sym_mod2] = ACTIONS(2541), + [anon_sym_SLASH_SLASH2] = ACTIONS(2541), + [anon_sym_PLUS2] = ACTIONS(2543), + [anon_sym_bit_DASHshl2] = ACTIONS(2541), + [anon_sym_bit_DASHshr2] = ACTIONS(2541), + [anon_sym_bit_DASHand2] = ACTIONS(2541), + [anon_sym_bit_DASHxor2] = ACTIONS(2541), + [anon_sym_bit_DASHor2] = ACTIONS(2541), + [anon_sym_err_GT] = ACTIONS(2543), + [anon_sym_out_GT] = ACTIONS(2543), + [anon_sym_e_GT] = ACTIONS(2543), + [anon_sym_o_GT] = ACTIONS(2543), + [anon_sym_err_PLUSout_GT] = ACTIONS(2543), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2543), + [anon_sym_o_PLUSe_GT] = ACTIONS(2543), + [anon_sym_e_PLUSo_GT] = ACTIONS(2543), + [anon_sym_err_GT_GT] = ACTIONS(2541), + [anon_sym_out_GT_GT] = ACTIONS(2541), + [anon_sym_e_GT_GT] = ACTIONS(2541), + [anon_sym_o_GT_GT] = ACTIONS(2541), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2541), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2541), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2541), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2541), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(872)] = { + [sym_expr_unary] = STATE(1320), + [sym__expr_unary_minus] = STATE(1296), + [sym_expr_binary] = STATE(1320), + [sym__expr_binary_expression] = STATE(1331), + [sym_expr_parenthesized] = STATE(935), + [sym_val_range] = STATE(1320), + [sym__val_range] = STATE(4844), + [sym__value] = STATE(1320), + [sym_val_nothing] = STATE(1316), + [sym_val_bool] = STATE(985), + [sym_val_variable] = STATE(912), + [sym_val_cellpath] = STATE(1316), + [sym_val_number] = STATE(1316), + [sym__val_number_decimal] = STATE(471), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1316), + [sym_val_filesize] = STATE(1316), + [sym_val_binary] = STATE(1316), + [sym_val_string] = STATE(1316), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1316), + [sym__inter_single_quotes] = STATE(1277), + [sym__inter_double_quotes] = STATE(1311), + [sym_val_list] = STATE(1316), + [sym_val_record] = STATE(1316), + [sym_val_table] = STATE(1316), + [sym_val_closure] = STATE(1316), + [sym_unquoted] = STATE(1078), + [sym__unquoted_with_expr] = STATE(1332), + [sym__unquoted_anonymous_prefix] = STATE(4844), + [sym_comment] = STATE(872), + [anon_sym_true] = ACTIONS(2489), + [anon_sym_false] = ACTIONS(2489), + [anon_sym_null] = ACTIONS(2491), + [aux_sym_cmd_identifier_token3] = ACTIONS(2493), + [aux_sym_cmd_identifier_token4] = ACTIONS(2493), + [aux_sym_cmd_identifier_token5] = ACTIONS(2493), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2495), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2497), + [anon_sym_DOT_DOT_LT] = ACTIONS(2497), + [aux_sym__val_number_decimal_token1] = ACTIONS(2499), + [aux_sym__val_number_decimal_token2] = ACTIONS(2501), + [aux_sym__val_number_decimal_token3] = ACTIONS(2503), + [aux_sym__val_number_decimal_token4] = ACTIONS(2503), + [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(2505), + [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(2403), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, + [STATE(873)] = { + [sym_comment] = STATE(873), + [anon_sym_in] = ACTIONS(1790), + [sym__newline] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym_PIPE] = ACTIONS(1790), + [anon_sym_err_GT_PIPE] = ACTIONS(1790), + [anon_sym_out_GT_PIPE] = ACTIONS(1790), + [anon_sym_e_GT_PIPE] = ACTIONS(1790), + [anon_sym_o_GT_PIPE] = ACTIONS(1790), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1790), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1790), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1790), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1790), + [anon_sym_RPAREN] = ACTIONS(1790), + [anon_sym_GT2] = ACTIONS(1792), + [anon_sym_DASH2] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1790), + [anon_sym_RBRACE] = ACTIONS(1790), + [anon_sym_STAR2] = ACTIONS(1792), + [anon_sym_and2] = ACTIONS(1790), + [anon_sym_xor2] = ACTIONS(1790), + [anon_sym_or2] = ACTIONS(1790), + [anon_sym_not_DASHin2] = ACTIONS(1790), + [anon_sym_has2] = ACTIONS(1790), + [anon_sym_not_DASHhas2] = ACTIONS(1790), + [anon_sym_starts_DASHwith2] = ACTIONS(1790), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1790), + [anon_sym_ends_DASHwith2] = ACTIONS(1790), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1790), + [anon_sym_EQ_EQ2] = ACTIONS(1790), + [anon_sym_BANG_EQ2] = ACTIONS(1790), + [anon_sym_LT2] = ACTIONS(1792), + [anon_sym_LT_EQ2] = ACTIONS(1790), + [anon_sym_GT_EQ2] = ACTIONS(1790), + [anon_sym_EQ_TILDE2] = ACTIONS(1790), + [anon_sym_BANG_TILDE2] = ACTIONS(1790), + [anon_sym_like2] = ACTIONS(1790), + [anon_sym_not_DASHlike2] = ACTIONS(1790), + [anon_sym_STAR_STAR2] = ACTIONS(1790), + [anon_sym_PLUS_PLUS2] = ACTIONS(1790), + [anon_sym_SLASH2] = ACTIONS(1792), + [anon_sym_mod2] = ACTIONS(1790), + [anon_sym_SLASH_SLASH2] = ACTIONS(1790), + [anon_sym_PLUS2] = ACTIONS(1792), + [anon_sym_bit_DASHshl2] = ACTIONS(1790), + [anon_sym_bit_DASHshr2] = ACTIONS(1790), + [anon_sym_bit_DASHand2] = ACTIONS(1790), + [anon_sym_bit_DASHxor2] = ACTIONS(1790), + [anon_sym_bit_DASHor2] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(2549), + [aux_sym__immediate_decimal_token5] = ACTIONS(1796), + [anon_sym_err_GT] = ACTIONS(1792), + [anon_sym_out_GT] = ACTIONS(1792), + [anon_sym_e_GT] = ACTIONS(1792), + [anon_sym_o_GT] = ACTIONS(1792), + [anon_sym_err_PLUSout_GT] = ACTIONS(1792), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1792), + [anon_sym_o_PLUSe_GT] = ACTIONS(1792), + [anon_sym_e_PLUSo_GT] = ACTIONS(1792), + [anon_sym_err_GT_GT] = ACTIONS(1790), + [anon_sym_out_GT_GT] = ACTIONS(1790), + [anon_sym_e_GT_GT] = ACTIONS(1790), + [anon_sym_o_GT_GT] = ACTIONS(1790), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1790), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1790), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1790), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1790), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(874)] = { + [aux_sym__repeat_newline] = STATE(1055), + [sym__expr_parenthesized_immediate] = STATE(5073), + [sym_comment] = STATE(874), + [anon_sym_in] = ACTIONS(2541), + [sym__newline] = ACTIONS(2541), + [anon_sym_SEMI] = ACTIONS(2541), + [anon_sym_PIPE] = ACTIONS(2541), + [anon_sym_err_GT_PIPE] = ACTIONS(2541), + [anon_sym_out_GT_PIPE] = ACTIONS(2541), + [anon_sym_e_GT_PIPE] = ACTIONS(2541), + [anon_sym_o_GT_PIPE] = ACTIONS(2541), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2541), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2541), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2541), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2541), + [anon_sym_RPAREN] = ACTIONS(2541), + [anon_sym_GT2] = ACTIONS(2543), + [anon_sym_DASH2] = ACTIONS(2541), + [anon_sym_LBRACE] = ACTIONS(2541), + [anon_sym_STAR2] = ACTIONS(2543), + [anon_sym_and2] = ACTIONS(2541), + [anon_sym_xor2] = ACTIONS(2541), + [anon_sym_or2] = ACTIONS(2541), + [anon_sym_not_DASHin2] = ACTIONS(2541), + [anon_sym_has2] = ACTIONS(2541), + [anon_sym_not_DASHhas2] = ACTIONS(2541), + [anon_sym_starts_DASHwith2] = ACTIONS(2541), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2541), + [anon_sym_ends_DASHwith2] = ACTIONS(2541), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2541), + [anon_sym_EQ_EQ2] = ACTIONS(2541), + [anon_sym_BANG_EQ2] = ACTIONS(2541), + [anon_sym_LT2] = ACTIONS(2543), + [anon_sym_LT_EQ2] = ACTIONS(2541), + [anon_sym_GT_EQ2] = ACTIONS(2541), + [anon_sym_EQ_TILDE2] = ACTIONS(2541), + [anon_sym_BANG_TILDE2] = ACTIONS(2541), + [anon_sym_like2] = ACTIONS(2541), + [anon_sym_not_DASHlike2] = ACTIONS(2541), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_STAR_STAR2] = ACTIONS(2541), + [anon_sym_PLUS_PLUS2] = ACTIONS(2541), + [anon_sym_SLASH2] = ACTIONS(2543), + [anon_sym_mod2] = ACTIONS(2541), + [anon_sym_SLASH_SLASH2] = ACTIONS(2541), + [anon_sym_PLUS2] = ACTIONS(2543), + [anon_sym_bit_DASHshl2] = ACTIONS(2541), + [anon_sym_bit_DASHshr2] = ACTIONS(2541), + [anon_sym_bit_DASHand2] = ACTIONS(2541), + [anon_sym_bit_DASHxor2] = ACTIONS(2541), + [anon_sym_bit_DASHor2] = ACTIONS(2541), + [anon_sym_err_GT] = ACTIONS(2543), + [anon_sym_out_GT] = ACTIONS(2543), + [anon_sym_e_GT] = ACTIONS(2543), + [anon_sym_o_GT] = ACTIONS(2543), + [anon_sym_err_PLUSout_GT] = ACTIONS(2543), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2543), + [anon_sym_o_PLUSe_GT] = ACTIONS(2543), + [anon_sym_e_PLUSo_GT] = ACTIONS(2543), + [anon_sym_err_GT_GT] = ACTIONS(2541), + [anon_sym_out_GT_GT] = ACTIONS(2541), + [anon_sym_e_GT_GT] = ACTIONS(2541), + [anon_sym_o_GT_GT] = ACTIONS(2541), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2541), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2541), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2541), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2541), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(875)] = { + [aux_sym__repeat_newline] = STATE(1062), + [sym__expr_parenthesized_immediate] = STATE(5073), + [sym_comment] = STATE(875), + [anon_sym_in] = ACTIONS(2541), + [sym__newline] = ACTIONS(2541), + [anon_sym_SEMI] = ACTIONS(2541), + [anon_sym_PIPE] = ACTIONS(2541), + [anon_sym_err_GT_PIPE] = ACTIONS(2541), + [anon_sym_out_GT_PIPE] = ACTIONS(2541), + [anon_sym_e_GT_PIPE] = ACTIONS(2541), + [anon_sym_o_GT_PIPE] = ACTIONS(2541), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2541), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2541), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2541), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2541), + [anon_sym_RPAREN] = ACTIONS(2541), + [anon_sym_GT2] = ACTIONS(2543), + [anon_sym_DASH2] = ACTIONS(2541), + [anon_sym_LBRACE] = ACTIONS(2541), + [anon_sym_STAR2] = ACTIONS(2543), + [anon_sym_and2] = ACTIONS(2541), + [anon_sym_xor2] = ACTIONS(2541), + [anon_sym_or2] = ACTIONS(2541), + [anon_sym_not_DASHin2] = ACTIONS(2541), + [anon_sym_has2] = ACTIONS(2541), + [anon_sym_not_DASHhas2] = ACTIONS(2541), + [anon_sym_starts_DASHwith2] = ACTIONS(2541), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2541), + [anon_sym_ends_DASHwith2] = ACTIONS(2541), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2541), + [anon_sym_EQ_EQ2] = ACTIONS(2541), + [anon_sym_BANG_EQ2] = ACTIONS(2541), + [anon_sym_LT2] = ACTIONS(2543), + [anon_sym_LT_EQ2] = ACTIONS(2541), + [anon_sym_GT_EQ2] = ACTIONS(2541), + [anon_sym_EQ_TILDE2] = ACTIONS(2541), + [anon_sym_BANG_TILDE2] = ACTIONS(2541), + [anon_sym_like2] = ACTIONS(2541), + [anon_sym_not_DASHlike2] = ACTIONS(2541), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_STAR_STAR2] = ACTIONS(2541), + [anon_sym_PLUS_PLUS2] = ACTIONS(2541), + [anon_sym_SLASH2] = ACTIONS(2543), + [anon_sym_mod2] = ACTIONS(2541), + [anon_sym_SLASH_SLASH2] = ACTIONS(2541), + [anon_sym_PLUS2] = ACTIONS(2543), + [anon_sym_bit_DASHshl2] = ACTIONS(2541), + [anon_sym_bit_DASHshr2] = ACTIONS(2541), + [anon_sym_bit_DASHand2] = ACTIONS(2541), + [anon_sym_bit_DASHxor2] = ACTIONS(2541), + [anon_sym_bit_DASHor2] = ACTIONS(2541), + [anon_sym_err_GT] = ACTIONS(2543), + [anon_sym_out_GT] = ACTIONS(2543), + [anon_sym_e_GT] = ACTIONS(2543), + [anon_sym_o_GT] = ACTIONS(2543), + [anon_sym_err_PLUSout_GT] = ACTIONS(2543), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2543), + [anon_sym_o_PLUSe_GT] = ACTIONS(2543), + [anon_sym_e_PLUSo_GT] = ACTIONS(2543), + [anon_sym_err_GT_GT] = ACTIONS(2541), + [anon_sym_out_GT_GT] = ACTIONS(2541), + [anon_sym_e_GT_GT] = ACTIONS(2541), + [anon_sym_o_GT_GT] = ACTIONS(2541), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2541), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2541), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2541), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2541), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(876)] = { + [aux_sym__repeat_newline] = STATE(1065), + [sym__expr_parenthesized_immediate] = STATE(5073), + [sym_comment] = STATE(876), + [anon_sym_in] = ACTIONS(2541), + [sym__newline] = ACTIONS(2541), + [anon_sym_SEMI] = ACTIONS(2541), + [anon_sym_PIPE] = ACTIONS(2541), + [anon_sym_err_GT_PIPE] = ACTIONS(2541), + [anon_sym_out_GT_PIPE] = ACTIONS(2541), + [anon_sym_e_GT_PIPE] = ACTIONS(2541), + [anon_sym_o_GT_PIPE] = ACTIONS(2541), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2541), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2541), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2541), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2541), + [anon_sym_RPAREN] = ACTIONS(2541), + [anon_sym_GT2] = ACTIONS(2543), + [anon_sym_DASH2] = ACTIONS(2541), + [anon_sym_LBRACE] = ACTIONS(2541), + [anon_sym_STAR2] = ACTIONS(2543), + [anon_sym_and2] = ACTIONS(2541), + [anon_sym_xor2] = ACTIONS(2541), + [anon_sym_or2] = ACTIONS(2541), + [anon_sym_not_DASHin2] = ACTIONS(2541), + [anon_sym_has2] = ACTIONS(2541), + [anon_sym_not_DASHhas2] = ACTIONS(2541), + [anon_sym_starts_DASHwith2] = ACTIONS(2541), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2541), + [anon_sym_ends_DASHwith2] = ACTIONS(2541), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2541), + [anon_sym_EQ_EQ2] = ACTIONS(2541), + [anon_sym_BANG_EQ2] = ACTIONS(2541), + [anon_sym_LT2] = ACTIONS(2543), + [anon_sym_LT_EQ2] = ACTIONS(2541), + [anon_sym_GT_EQ2] = ACTIONS(2541), + [anon_sym_EQ_TILDE2] = ACTIONS(2541), + [anon_sym_BANG_TILDE2] = ACTIONS(2541), + [anon_sym_like2] = ACTIONS(2541), + [anon_sym_not_DASHlike2] = ACTIONS(2541), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_STAR_STAR2] = ACTIONS(2541), + [anon_sym_PLUS_PLUS2] = ACTIONS(2541), + [anon_sym_SLASH2] = ACTIONS(2543), + [anon_sym_mod2] = ACTIONS(2541), + [anon_sym_SLASH_SLASH2] = ACTIONS(2541), + [anon_sym_PLUS2] = ACTIONS(2543), + [anon_sym_bit_DASHshl2] = ACTIONS(2541), + [anon_sym_bit_DASHshr2] = ACTIONS(2541), + [anon_sym_bit_DASHand2] = ACTIONS(2541), + [anon_sym_bit_DASHxor2] = ACTIONS(2541), + [anon_sym_bit_DASHor2] = ACTIONS(2541), + [anon_sym_err_GT] = ACTIONS(2543), + [anon_sym_out_GT] = ACTIONS(2543), + [anon_sym_e_GT] = ACTIONS(2543), + [anon_sym_o_GT] = ACTIONS(2543), + [anon_sym_err_PLUSout_GT] = ACTIONS(2543), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2543), + [anon_sym_o_PLUSe_GT] = ACTIONS(2543), + [anon_sym_e_PLUSo_GT] = ACTIONS(2543), + [anon_sym_err_GT_GT] = ACTIONS(2541), + [anon_sym_out_GT_GT] = ACTIONS(2541), + [anon_sym_e_GT_GT] = ACTIONS(2541), + [anon_sym_o_GT_GT] = ACTIONS(2541), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2541), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2541), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2541), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2541), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(877)] = { + [aux_sym__repeat_newline] = STATE(1068), + [sym__expr_parenthesized_immediate] = STATE(5073), + [sym_comment] = STATE(877), + [anon_sym_in] = ACTIONS(2541), + [sym__newline] = ACTIONS(2541), + [anon_sym_SEMI] = ACTIONS(2541), + [anon_sym_PIPE] = ACTIONS(2541), + [anon_sym_err_GT_PIPE] = ACTIONS(2541), + [anon_sym_out_GT_PIPE] = ACTIONS(2541), + [anon_sym_e_GT_PIPE] = ACTIONS(2541), + [anon_sym_o_GT_PIPE] = ACTIONS(2541), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2541), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2541), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2541), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2541), + [anon_sym_RPAREN] = ACTIONS(2541), + [anon_sym_GT2] = ACTIONS(2543), + [anon_sym_DASH2] = ACTIONS(2541), + [anon_sym_LBRACE] = ACTIONS(2541), + [anon_sym_STAR2] = ACTIONS(2543), + [anon_sym_and2] = ACTIONS(2541), + [anon_sym_xor2] = ACTIONS(2541), + [anon_sym_or2] = ACTIONS(2541), + [anon_sym_not_DASHin2] = ACTIONS(2541), + [anon_sym_has2] = ACTIONS(2541), + [anon_sym_not_DASHhas2] = ACTIONS(2541), + [anon_sym_starts_DASHwith2] = ACTIONS(2541), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2541), + [anon_sym_ends_DASHwith2] = ACTIONS(2541), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2541), + [anon_sym_EQ_EQ2] = ACTIONS(2541), + [anon_sym_BANG_EQ2] = ACTIONS(2541), + [anon_sym_LT2] = ACTIONS(2543), + [anon_sym_LT_EQ2] = ACTIONS(2541), + [anon_sym_GT_EQ2] = ACTIONS(2541), + [anon_sym_EQ_TILDE2] = ACTIONS(2541), + [anon_sym_BANG_TILDE2] = ACTIONS(2541), + [anon_sym_like2] = ACTIONS(2541), + [anon_sym_not_DASHlike2] = ACTIONS(2541), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_STAR_STAR2] = ACTIONS(2541), + [anon_sym_PLUS_PLUS2] = ACTIONS(2541), + [anon_sym_SLASH2] = ACTIONS(2543), + [anon_sym_mod2] = ACTIONS(2541), + [anon_sym_SLASH_SLASH2] = ACTIONS(2541), + [anon_sym_PLUS2] = ACTIONS(2543), + [anon_sym_bit_DASHshl2] = ACTIONS(2541), + [anon_sym_bit_DASHshr2] = ACTIONS(2541), + [anon_sym_bit_DASHand2] = ACTIONS(2541), + [anon_sym_bit_DASHxor2] = ACTIONS(2541), + [anon_sym_bit_DASHor2] = ACTIONS(2541), + [anon_sym_err_GT] = ACTIONS(2543), + [anon_sym_out_GT] = ACTIONS(2543), + [anon_sym_e_GT] = ACTIONS(2543), + [anon_sym_o_GT] = ACTIONS(2543), + [anon_sym_err_PLUSout_GT] = ACTIONS(2543), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2543), + [anon_sym_o_PLUSe_GT] = ACTIONS(2543), + [anon_sym_e_PLUSo_GT] = ACTIONS(2543), + [anon_sym_err_GT_GT] = ACTIONS(2541), + [anon_sym_out_GT_GT] = ACTIONS(2541), + [anon_sym_e_GT_GT] = ACTIONS(2541), + [anon_sym_o_GT_GT] = ACTIONS(2541), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2541), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2541), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2541), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2541), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(878)] = { + [sym_comment] = STATE(878), + [anon_sym_finally] = ACTIONS(2551), [anon_sym_in] = ACTIONS(2551), [sym__newline] = ACTIONS(2551), [anon_sym_SEMI] = ACTIONS(2551), @@ -116477,1526 +114626,3629 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2551), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(918)] = { - [aux_sym__repeat_newline] = STATE(991), - [sym__expression_parenthesized] = STATE(4510), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2160), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1861), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_comment] = STATE(918), - [aux_sym_cmd_identifier_token2] = ACTIONS(2555), - [anon_sym_true] = ACTIONS(2557), - [anon_sym_false] = ACTIONS(2557), - [anon_sym_null] = ACTIONS(2559), - [aux_sym_cmd_identifier_token3] = ACTIONS(2561), - [aux_sym_cmd_identifier_token4] = ACTIONS(2561), - [aux_sym_cmd_identifier_token5] = ACTIONS(2561), - [sym__newline] = ACTIONS(2563), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), - [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(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(2565), - [aux_sym__val_number_decimal_token4] = ACTIONS(2565), - [aux_sym__val_number_token1] = ACTIONS(2561), - [aux_sym__val_number_token2] = ACTIONS(2561), - [aux_sym__val_number_token3] = ACTIONS(2561), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2567), - [anon_sym_DQUOTE] = 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(879)] = { + [aux_sym__repeat_newline] = STATE(879), + [sym_comment] = STATE(879), + [anon_sym_export] = ACTIONS(1867), + [anon_sym_alias] = ACTIONS(1862), + [anon_sym_let] = ACTIONS(1862), + [anon_sym_mut] = ACTIONS(1862), + [anon_sym_const] = ACTIONS(1862), + [aux_sym_cmd_identifier_token1] = ACTIONS(1867), + [anon_sym_def] = ACTIONS(1862), + [anon_sym_use] = ACTIONS(1862), + [anon_sym_export_DASHenv] = ACTIONS(1862), + [anon_sym_extern] = ACTIONS(1862), + [anon_sym_module] = ACTIONS(1862), + [anon_sym_for] = ACTIONS(1862), + [anon_sym_loop] = ACTIONS(1862), + [anon_sym_while] = ACTIONS(1862), + [anon_sym_if] = ACTIONS(1862), + [anon_sym_else] = ACTIONS(1862), + [anon_sym_try] = ACTIONS(1862), + [anon_sym_catch] = ACTIONS(1862), + [anon_sym_finally] = ACTIONS(1862), + [anon_sym_match] = ACTIONS(1862), + [anon_sym_in] = ACTIONS(1867), + [anon_sym_true] = ACTIONS(1862), + [anon_sym_false] = ACTIONS(1862), + [anon_sym_null] = ACTIONS(1862), + [aux_sym_cmd_identifier_token3] = ACTIONS(1862), + [aux_sym_cmd_identifier_token4] = ACTIONS(1862), + [aux_sym_cmd_identifier_token5] = ACTIONS(1862), + [sym__newline] = ACTIONS(2555), + [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_LBRACK] = ACTIONS(1862), + [anon_sym_LPAREN] = ACTIONS(1862), + [anon_sym_DOLLAR] = ACTIONS(1867), + [anon_sym_DASH2] = ACTIONS(1867), + [anon_sym_LBRACE] = ACTIONS(1862), + [anon_sym_DOT_DOT] = ACTIONS(1867), + [anon_sym_where] = ACTIONS(1862), + [aux_sym_expr_unary_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1862), + [anon_sym_DOT_DOT_LT] = ACTIONS(1862), + [aux_sym__val_number_decimal_token1] = ACTIONS(1867), + [aux_sym__val_number_decimal_token2] = ACTIONS(1862), + [aux_sym__val_number_decimal_token3] = ACTIONS(1862), + [aux_sym__val_number_decimal_token4] = ACTIONS(1862), + [aux_sym__val_number_token1] = ACTIONS(1862), + [aux_sym__val_number_token2] = ACTIONS(1862), + [aux_sym__val_number_token3] = ACTIONS(1862), + [anon_sym_0b] = ACTIONS(1867), + [anon_sym_0o] = ACTIONS(1867), + [anon_sym_0x] = ACTIONS(1867), + [sym_val_date] = ACTIONS(1862), + [anon_sym_DQUOTE] = ACTIONS(1862), + [anon_sym_SQUOTE] = ACTIONS(1862), + [anon_sym_BQUOTE] = ACTIONS(1862), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1862), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1862), + [anon_sym_CARET] = ACTIONS(1862), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1862), }, - [STATE(919)] = { - [sym_comment] = STATE(919), - [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_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), + [STATE(880)] = { + [aux_sym__repeat_newline] = STATE(1071), + [sym__expr_parenthesized_immediate] = STATE(5073), + [sym_comment] = STATE(880), + [anon_sym_in] = ACTIONS(2541), + [sym__newline] = ACTIONS(2541), + [anon_sym_SEMI] = ACTIONS(2541), + [anon_sym_PIPE] = ACTIONS(2541), + [anon_sym_err_GT_PIPE] = ACTIONS(2541), + [anon_sym_out_GT_PIPE] = ACTIONS(2541), + [anon_sym_e_GT_PIPE] = ACTIONS(2541), + [anon_sym_o_GT_PIPE] = ACTIONS(2541), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2541), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2541), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2541), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2541), + [anon_sym_RPAREN] = ACTIONS(2541), + [anon_sym_GT2] = ACTIONS(2543), + [anon_sym_DASH2] = ACTIONS(2541), + [anon_sym_LBRACE] = ACTIONS(2541), + [anon_sym_STAR2] = ACTIONS(2543), + [anon_sym_and2] = ACTIONS(2541), + [anon_sym_xor2] = ACTIONS(2541), + [anon_sym_or2] = ACTIONS(2541), + [anon_sym_not_DASHin2] = ACTIONS(2541), + [anon_sym_has2] = ACTIONS(2541), + [anon_sym_not_DASHhas2] = ACTIONS(2541), + [anon_sym_starts_DASHwith2] = ACTIONS(2541), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2541), + [anon_sym_ends_DASHwith2] = ACTIONS(2541), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2541), + [anon_sym_EQ_EQ2] = ACTIONS(2541), + [anon_sym_BANG_EQ2] = ACTIONS(2541), + [anon_sym_LT2] = ACTIONS(2543), + [anon_sym_LT_EQ2] = ACTIONS(2541), + [anon_sym_GT_EQ2] = ACTIONS(2541), + [anon_sym_EQ_TILDE2] = ACTIONS(2541), + [anon_sym_BANG_TILDE2] = ACTIONS(2541), + [anon_sym_like2] = ACTIONS(2541), + [anon_sym_not_DASHlike2] = ACTIONS(2541), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_STAR_STAR2] = ACTIONS(2541), + [anon_sym_PLUS_PLUS2] = ACTIONS(2541), + [anon_sym_SLASH2] = ACTIONS(2543), + [anon_sym_mod2] = ACTIONS(2541), + [anon_sym_SLASH_SLASH2] = ACTIONS(2541), + [anon_sym_PLUS2] = ACTIONS(2543), + [anon_sym_bit_DASHshl2] = ACTIONS(2541), + [anon_sym_bit_DASHshr2] = ACTIONS(2541), + [anon_sym_bit_DASHand2] = ACTIONS(2541), + [anon_sym_bit_DASHxor2] = ACTIONS(2541), + [anon_sym_bit_DASHor2] = ACTIONS(2541), + [anon_sym_err_GT] = ACTIONS(2543), + [anon_sym_out_GT] = ACTIONS(2543), + [anon_sym_e_GT] = ACTIONS(2543), + [anon_sym_o_GT] = ACTIONS(2543), + [anon_sym_err_PLUSout_GT] = ACTIONS(2543), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2543), + [anon_sym_o_PLUSe_GT] = ACTIONS(2543), + [anon_sym_e_PLUSo_GT] = ACTIONS(2543), + [anon_sym_err_GT_GT] = ACTIONS(2541), + [anon_sym_out_GT_GT] = ACTIONS(2541), + [anon_sym_e_GT_GT] = ACTIONS(2541), + [anon_sym_o_GT_GT] = ACTIONS(2541), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2541), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2541), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2541), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2541), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(920)] = { - [sym_comment] = STATE(920), - [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_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_DOT_DOT2] = ACTIONS(2569), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2571), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2571), - [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), + [STATE(881)] = { + [sym_comment] = STATE(881), + [anon_sym_finally] = ACTIONS(2558), + [anon_sym_in] = ACTIONS(2558), + [sym__newline] = ACTIONS(2558), + [anon_sym_SEMI] = ACTIONS(2558), + [anon_sym_PIPE] = ACTIONS(2558), + [anon_sym_err_GT_PIPE] = ACTIONS(2558), + [anon_sym_out_GT_PIPE] = ACTIONS(2558), + [anon_sym_e_GT_PIPE] = ACTIONS(2558), + [anon_sym_o_GT_PIPE] = ACTIONS(2558), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2558), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2558), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2558), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2558), + [anon_sym_RPAREN] = ACTIONS(2558), + [anon_sym_GT2] = ACTIONS(2560), + [anon_sym_DASH2] = ACTIONS(2558), + [anon_sym_LBRACE] = ACTIONS(2558), + [anon_sym_RBRACE] = ACTIONS(2558), + [anon_sym_EQ_GT] = ACTIONS(2558), + [anon_sym_STAR2] = ACTIONS(2560), + [anon_sym_and2] = ACTIONS(2558), + [anon_sym_xor2] = ACTIONS(2558), + [anon_sym_or2] = ACTIONS(2558), + [anon_sym_not_DASHin2] = ACTIONS(2558), + [anon_sym_has2] = ACTIONS(2558), + [anon_sym_not_DASHhas2] = ACTIONS(2558), + [anon_sym_starts_DASHwith2] = ACTIONS(2558), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2558), + [anon_sym_ends_DASHwith2] = ACTIONS(2558), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2558), + [anon_sym_EQ_EQ2] = ACTIONS(2558), + [anon_sym_BANG_EQ2] = ACTIONS(2558), + [anon_sym_LT2] = ACTIONS(2560), + [anon_sym_LT_EQ2] = ACTIONS(2558), + [anon_sym_GT_EQ2] = ACTIONS(2558), + [anon_sym_EQ_TILDE2] = ACTIONS(2558), + [anon_sym_BANG_TILDE2] = ACTIONS(2558), + [anon_sym_like2] = ACTIONS(2558), + [anon_sym_not_DASHlike2] = ACTIONS(2558), + [anon_sym_STAR_STAR2] = ACTIONS(2558), + [anon_sym_PLUS_PLUS2] = ACTIONS(2558), + [anon_sym_SLASH2] = ACTIONS(2560), + [anon_sym_mod2] = ACTIONS(2558), + [anon_sym_SLASH_SLASH2] = ACTIONS(2558), + [anon_sym_PLUS2] = ACTIONS(2560), + [anon_sym_bit_DASHshl2] = ACTIONS(2558), + [anon_sym_bit_DASHshr2] = ACTIONS(2558), + [anon_sym_bit_DASHand2] = ACTIONS(2558), + [anon_sym_bit_DASHxor2] = ACTIONS(2558), + [anon_sym_bit_DASHor2] = ACTIONS(2558), + [anon_sym_err_GT] = ACTIONS(2560), + [anon_sym_out_GT] = ACTIONS(2560), + [anon_sym_e_GT] = ACTIONS(2560), + [anon_sym_o_GT] = ACTIONS(2560), + [anon_sym_err_PLUSout_GT] = ACTIONS(2560), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2560), + [anon_sym_o_PLUSe_GT] = ACTIONS(2560), + [anon_sym_e_PLUSo_GT] = ACTIONS(2560), + [anon_sym_err_GT_GT] = ACTIONS(2558), + [anon_sym_out_GT_GT] = ACTIONS(2558), + [anon_sym_e_GT_GT] = ACTIONS(2558), + [anon_sym_o_GT_GT] = ACTIONS(2558), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2558), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2558), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2558), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2558), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(921)] = { - [sym_comment] = STATE(921), - [anon_sym_in] = ACTIONS(2573), - [sym__newline] = ACTIONS(2573), - [anon_sym_SEMI] = ACTIONS(2573), - [anon_sym_PIPE] = ACTIONS(2573), - [anon_sym_err_GT_PIPE] = ACTIONS(2573), - [anon_sym_out_GT_PIPE] = ACTIONS(2573), - [anon_sym_e_GT_PIPE] = ACTIONS(2573), - [anon_sym_o_GT_PIPE] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2573), - [anon_sym_RPAREN] = ACTIONS(2573), - [anon_sym_GT2] = ACTIONS(2575), - [anon_sym_DASH2] = ACTIONS(2573), - [anon_sym_LBRACE] = ACTIONS(2573), - [anon_sym_RBRACE] = ACTIONS(2573), - [anon_sym_EQ_GT] = ACTIONS(2573), - [anon_sym_STAR2] = ACTIONS(2575), - [anon_sym_and2] = ACTIONS(2573), - [anon_sym_xor2] = ACTIONS(2573), - [anon_sym_or2] = ACTIONS(2573), - [anon_sym_not_DASHin2] = ACTIONS(2573), - [anon_sym_has2] = ACTIONS(2573), - [anon_sym_not_DASHhas2] = ACTIONS(2573), - [anon_sym_starts_DASHwith2] = ACTIONS(2573), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2573), - [anon_sym_ends_DASHwith2] = ACTIONS(2573), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2573), - [anon_sym_EQ_EQ2] = ACTIONS(2573), - [anon_sym_BANG_EQ2] = ACTIONS(2573), - [anon_sym_LT2] = ACTIONS(2575), - [anon_sym_LT_EQ2] = ACTIONS(2573), - [anon_sym_GT_EQ2] = ACTIONS(2573), - [anon_sym_EQ_TILDE2] = ACTIONS(2573), - [anon_sym_BANG_TILDE2] = ACTIONS(2573), - [anon_sym_like2] = ACTIONS(2573), - [anon_sym_not_DASHlike2] = ACTIONS(2573), - [anon_sym_STAR_STAR2] = ACTIONS(2573), - [anon_sym_PLUS_PLUS2] = ACTIONS(2573), - [anon_sym_SLASH2] = ACTIONS(2575), - [anon_sym_mod2] = ACTIONS(2573), - [anon_sym_SLASH_SLASH2] = ACTIONS(2573), - [anon_sym_PLUS2] = ACTIONS(2575), - [anon_sym_bit_DASHshl2] = ACTIONS(2573), - [anon_sym_bit_DASHshr2] = ACTIONS(2573), - [anon_sym_bit_DASHand2] = ACTIONS(2573), - [anon_sym_bit_DASHxor2] = ACTIONS(2573), - [anon_sym_bit_DASHor2] = ACTIONS(2573), - [anon_sym_err_GT] = ACTIONS(2575), - [anon_sym_out_GT] = ACTIONS(2575), - [anon_sym_e_GT] = ACTIONS(2575), - [anon_sym_o_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT] = ACTIONS(2575), - [anon_sym_err_GT_GT] = ACTIONS(2573), - [anon_sym_out_GT_GT] = ACTIONS(2573), - [anon_sym_e_GT_GT] = ACTIONS(2573), - [anon_sym_o_GT_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2573), + [STATE(882)] = { + [aux_sym__repeat_newline] = STATE(1074), + [sym__expr_parenthesized_immediate] = STATE(5073), + [sym_comment] = STATE(882), + [anon_sym_in] = ACTIONS(2541), + [sym__newline] = ACTIONS(2541), + [anon_sym_SEMI] = ACTIONS(2541), + [anon_sym_PIPE] = ACTIONS(2541), + [anon_sym_err_GT_PIPE] = ACTIONS(2541), + [anon_sym_out_GT_PIPE] = ACTIONS(2541), + [anon_sym_e_GT_PIPE] = ACTIONS(2541), + [anon_sym_o_GT_PIPE] = ACTIONS(2541), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2541), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2541), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2541), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2541), + [anon_sym_RPAREN] = ACTIONS(2541), + [anon_sym_GT2] = ACTIONS(2543), + [anon_sym_DASH2] = ACTIONS(2541), + [anon_sym_LBRACE] = ACTIONS(2541), + [anon_sym_STAR2] = ACTIONS(2543), + [anon_sym_and2] = ACTIONS(2541), + [anon_sym_xor2] = ACTIONS(2541), + [anon_sym_or2] = ACTIONS(2541), + [anon_sym_not_DASHin2] = ACTIONS(2541), + [anon_sym_has2] = ACTIONS(2541), + [anon_sym_not_DASHhas2] = ACTIONS(2541), + [anon_sym_starts_DASHwith2] = ACTIONS(2541), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2541), + [anon_sym_ends_DASHwith2] = ACTIONS(2541), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2541), + [anon_sym_EQ_EQ2] = ACTIONS(2541), + [anon_sym_BANG_EQ2] = ACTIONS(2541), + [anon_sym_LT2] = ACTIONS(2543), + [anon_sym_LT_EQ2] = ACTIONS(2541), + [anon_sym_GT_EQ2] = ACTIONS(2541), + [anon_sym_EQ_TILDE2] = ACTIONS(2541), + [anon_sym_BANG_TILDE2] = ACTIONS(2541), + [anon_sym_like2] = ACTIONS(2541), + [anon_sym_not_DASHlike2] = ACTIONS(2541), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_STAR_STAR2] = ACTIONS(2541), + [anon_sym_PLUS_PLUS2] = ACTIONS(2541), + [anon_sym_SLASH2] = ACTIONS(2543), + [anon_sym_mod2] = ACTIONS(2541), + [anon_sym_SLASH_SLASH2] = ACTIONS(2541), + [anon_sym_PLUS2] = ACTIONS(2543), + [anon_sym_bit_DASHshl2] = ACTIONS(2541), + [anon_sym_bit_DASHshr2] = ACTIONS(2541), + [anon_sym_bit_DASHand2] = ACTIONS(2541), + [anon_sym_bit_DASHxor2] = ACTIONS(2541), + [anon_sym_bit_DASHor2] = ACTIONS(2541), + [anon_sym_err_GT] = ACTIONS(2543), + [anon_sym_out_GT] = ACTIONS(2543), + [anon_sym_e_GT] = ACTIONS(2543), + [anon_sym_o_GT] = ACTIONS(2543), + [anon_sym_err_PLUSout_GT] = ACTIONS(2543), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2543), + [anon_sym_o_PLUSe_GT] = ACTIONS(2543), + [anon_sym_e_PLUSo_GT] = ACTIONS(2543), + [anon_sym_err_GT_GT] = ACTIONS(2541), + [anon_sym_out_GT_GT] = ACTIONS(2541), + [anon_sym_e_GT_GT] = ACTIONS(2541), + [anon_sym_o_GT_GT] = ACTIONS(2541), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2541), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2541), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2541), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2541), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(922)] = { - [sym_comment] = STATE(922), - [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_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), + [STATE(883)] = { + [sym_cell_path] = STATE(1303), + [sym_path] = STATE(715), + [sym_comment] = STATE(883), + [aux_sym__where_predicate_lhs_repeat1] = STATE(526), + [ts_builtin_sym_end] = ACTIONS(1907), + [anon_sym_in] = ACTIONS(1907), + [sym__newline] = ACTIONS(1907), + [anon_sym_SEMI] = ACTIONS(1907), + [anon_sym_PIPE] = ACTIONS(1907), + [anon_sym_err_GT_PIPE] = ACTIONS(1907), + [anon_sym_out_GT_PIPE] = ACTIONS(1907), + [anon_sym_e_GT_PIPE] = ACTIONS(1907), + [anon_sym_o_GT_PIPE] = ACTIONS(1907), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1907), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1907), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1907), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1907), + [anon_sym_GT2] = ACTIONS(1909), + [anon_sym_DASH2] = ACTIONS(1907), + [anon_sym_STAR2] = ACTIONS(1909), + [anon_sym_and2] = ACTIONS(1907), + [anon_sym_xor2] = ACTIONS(1907), + [anon_sym_or2] = ACTIONS(1907), + [anon_sym_not_DASHin2] = ACTIONS(1907), + [anon_sym_has2] = ACTIONS(1907), + [anon_sym_not_DASHhas2] = ACTIONS(1907), + [anon_sym_starts_DASHwith2] = ACTIONS(1907), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1907), + [anon_sym_ends_DASHwith2] = ACTIONS(1907), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1907), + [anon_sym_EQ_EQ2] = ACTIONS(1907), + [anon_sym_BANG_EQ2] = ACTIONS(1907), + [anon_sym_LT2] = ACTIONS(1909), + [anon_sym_LT_EQ2] = ACTIONS(1907), + [anon_sym_GT_EQ2] = ACTIONS(1907), + [anon_sym_EQ_TILDE2] = ACTIONS(1907), + [anon_sym_BANG_TILDE2] = ACTIONS(1907), + [anon_sym_like2] = ACTIONS(1907), + [anon_sym_not_DASHlike2] = ACTIONS(1907), + [anon_sym_STAR_STAR2] = ACTIONS(1907), + [anon_sym_PLUS_PLUS2] = ACTIONS(1907), + [anon_sym_SLASH2] = ACTIONS(1909), + [anon_sym_mod2] = ACTIONS(1907), + [anon_sym_SLASH_SLASH2] = ACTIONS(1907), + [anon_sym_PLUS2] = ACTIONS(1909), + [anon_sym_bit_DASHshl2] = ACTIONS(1907), + [anon_sym_bit_DASHshr2] = ACTIONS(1907), + [anon_sym_bit_DASHand2] = ACTIONS(1907), + [anon_sym_bit_DASHxor2] = ACTIONS(1907), + [anon_sym_bit_DASHor2] = ACTIONS(1907), + [anon_sym_DOT2] = ACTIONS(2358), + [anon_sym_err_GT] = ACTIONS(1909), + [anon_sym_out_GT] = ACTIONS(1909), + [anon_sym_e_GT] = ACTIONS(1909), + [anon_sym_o_GT] = ACTIONS(1909), + [anon_sym_err_PLUSout_GT] = ACTIONS(1909), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1909), + [anon_sym_o_PLUSe_GT] = ACTIONS(1909), + [anon_sym_e_PLUSo_GT] = ACTIONS(1909), + [anon_sym_err_GT_GT] = ACTIONS(1907), + [anon_sym_out_GT_GT] = ACTIONS(1907), + [anon_sym_e_GT_GT] = ACTIONS(1907), + [anon_sym_o_GT_GT] = ACTIONS(1907), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1907), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1907), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1907), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1907), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(923)] = { - [sym_comment] = STATE(923), - [ts_builtin_sym_end] = ACTIONS(2110), - [anon_sym_in] = ACTIONS(2110), - [sym__newline] = ACTIONS(2110), - [anon_sym_SEMI] = ACTIONS(2110), - [anon_sym_PIPE] = ACTIONS(2110), - [anon_sym_err_GT_PIPE] = ACTIONS(2110), - [anon_sym_out_GT_PIPE] = ACTIONS(2110), - [anon_sym_e_GT_PIPE] = ACTIONS(2110), - [anon_sym_o_GT_PIPE] = ACTIONS(2110), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2110), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2110), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2110), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2110), - [anon_sym_GT2] = ACTIONS(2112), - [anon_sym_DASH2] = ACTIONS(2110), - [anon_sym_STAR2] = ACTIONS(2112), - [anon_sym_and2] = ACTIONS(2110), - [anon_sym_xor2] = ACTIONS(2110), - [anon_sym_or2] = ACTIONS(2110), - [anon_sym_not_DASHin2] = ACTIONS(2110), - [anon_sym_has2] = ACTIONS(2110), - [anon_sym_not_DASHhas2] = ACTIONS(2110), - [anon_sym_starts_DASHwith2] = ACTIONS(2110), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2110), - [anon_sym_ends_DASHwith2] = ACTIONS(2110), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2110), - [anon_sym_EQ_EQ2] = ACTIONS(2110), - [anon_sym_BANG_EQ2] = ACTIONS(2110), - [anon_sym_LT2] = ACTIONS(2112), - [anon_sym_LT_EQ2] = ACTIONS(2110), - [anon_sym_GT_EQ2] = ACTIONS(2110), - [anon_sym_EQ_TILDE2] = ACTIONS(2110), - [anon_sym_BANG_TILDE2] = ACTIONS(2110), - [anon_sym_like2] = ACTIONS(2110), - [anon_sym_not_DASHlike2] = ACTIONS(2110), - [anon_sym_STAR_STAR2] = ACTIONS(2110), - [anon_sym_PLUS_PLUS2] = ACTIONS(2110), - [anon_sym_SLASH2] = ACTIONS(2112), - [anon_sym_mod2] = ACTIONS(2110), - [anon_sym_SLASH_SLASH2] = ACTIONS(2110), - [anon_sym_PLUS2] = ACTIONS(2112), - [anon_sym_bit_DASHshl2] = ACTIONS(2110), - [anon_sym_bit_DASHshr2] = ACTIONS(2110), - [anon_sym_bit_DASHand2] = ACTIONS(2110), - [anon_sym_bit_DASHxor2] = ACTIONS(2110), - [anon_sym_bit_DASHor2] = ACTIONS(2110), - [anon_sym_DOT_DOT2] = ACTIONS(2577), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2579), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2579), - [anon_sym_err_GT] = ACTIONS(2112), - [anon_sym_out_GT] = ACTIONS(2112), - [anon_sym_e_GT] = ACTIONS(2112), - [anon_sym_o_GT] = ACTIONS(2112), - [anon_sym_err_PLUSout_GT] = ACTIONS(2112), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2112), - [anon_sym_o_PLUSe_GT] = ACTIONS(2112), - [anon_sym_e_PLUSo_GT] = ACTIONS(2112), - [anon_sym_err_GT_GT] = ACTIONS(2110), - [anon_sym_out_GT_GT] = ACTIONS(2110), - [anon_sym_e_GT_GT] = ACTIONS(2110), - [anon_sym_o_GT_GT] = ACTIONS(2110), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2110), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2110), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2110), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2110), + [STATE(884)] = { + [sym_comment] = STATE(884), + [anon_sym_if] = ACTIONS(2562), + [anon_sym_in] = ACTIONS(2562), + [sym__newline] = ACTIONS(2562), + [anon_sym_SEMI] = ACTIONS(2562), + [anon_sym_PIPE] = ACTIONS(2562), + [anon_sym_err_GT_PIPE] = ACTIONS(2562), + [anon_sym_out_GT_PIPE] = ACTIONS(2562), + [anon_sym_e_GT_PIPE] = ACTIONS(2562), + [anon_sym_o_GT_PIPE] = ACTIONS(2562), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2562), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2562), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2562), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2562), + [anon_sym_RPAREN] = ACTIONS(2562), + [anon_sym_GT2] = ACTIONS(2564), + [anon_sym_DASH2] = ACTIONS(2562), + [anon_sym_LBRACE] = ACTIONS(2562), + [anon_sym_RBRACE] = ACTIONS(2562), + [anon_sym_EQ_GT] = ACTIONS(2562), + [anon_sym_STAR2] = ACTIONS(2564), + [anon_sym_and2] = ACTIONS(2562), + [anon_sym_xor2] = ACTIONS(2562), + [anon_sym_or2] = ACTIONS(2562), + [anon_sym_not_DASHin2] = ACTIONS(2562), + [anon_sym_has2] = ACTIONS(2562), + [anon_sym_not_DASHhas2] = ACTIONS(2562), + [anon_sym_starts_DASHwith2] = ACTIONS(2562), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2562), + [anon_sym_ends_DASHwith2] = ACTIONS(2562), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2562), + [anon_sym_EQ_EQ2] = ACTIONS(2562), + [anon_sym_BANG_EQ2] = ACTIONS(2562), + [anon_sym_LT2] = ACTIONS(2564), + [anon_sym_LT_EQ2] = ACTIONS(2562), + [anon_sym_GT_EQ2] = ACTIONS(2562), + [anon_sym_EQ_TILDE2] = ACTIONS(2562), + [anon_sym_BANG_TILDE2] = ACTIONS(2562), + [anon_sym_like2] = ACTIONS(2562), + [anon_sym_not_DASHlike2] = ACTIONS(2562), + [anon_sym_STAR_STAR2] = ACTIONS(2562), + [anon_sym_PLUS_PLUS2] = ACTIONS(2562), + [anon_sym_SLASH2] = ACTIONS(2564), + [anon_sym_mod2] = ACTIONS(2562), + [anon_sym_SLASH_SLASH2] = ACTIONS(2562), + [anon_sym_PLUS2] = ACTIONS(2564), + [anon_sym_bit_DASHshl2] = ACTIONS(2562), + [anon_sym_bit_DASHshr2] = ACTIONS(2562), + [anon_sym_bit_DASHand2] = ACTIONS(2562), + [anon_sym_bit_DASHxor2] = ACTIONS(2562), + [anon_sym_bit_DASHor2] = ACTIONS(2562), + [anon_sym_err_GT] = ACTIONS(2564), + [anon_sym_out_GT] = ACTIONS(2564), + [anon_sym_e_GT] = ACTIONS(2564), + [anon_sym_o_GT] = ACTIONS(2564), + [anon_sym_err_PLUSout_GT] = ACTIONS(2564), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2564), + [anon_sym_o_PLUSe_GT] = ACTIONS(2564), + [anon_sym_e_PLUSo_GT] = ACTIONS(2564), + [anon_sym_err_GT_GT] = ACTIONS(2562), + [anon_sym_out_GT_GT] = ACTIONS(2562), + [anon_sym_e_GT_GT] = ACTIONS(2562), + [anon_sym_o_GT_GT] = ACTIONS(2562), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2562), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2562), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2562), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2562), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(924)] = { - [sym_comment] = STATE(924), - [ts_builtin_sym_end] = ACTIONS(2166), - [anon_sym_in] = ACTIONS(2162), - [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(2164), - [anon_sym_DASH2] = ACTIONS(2162), - [anon_sym_STAR2] = ACTIONS(2164), - [anon_sym_and2] = ACTIONS(2162), - [anon_sym_xor2] = ACTIONS(2162), - [anon_sym_or2] = ACTIONS(2162), - [anon_sym_not_DASHin2] = ACTIONS(2162), - [anon_sym_has2] = ACTIONS(2162), - [anon_sym_not_DASHhas2] = ACTIONS(2162), - [anon_sym_starts_DASHwith2] = ACTIONS(2162), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2162), - [anon_sym_ends_DASHwith2] = ACTIONS(2162), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2162), - [anon_sym_EQ_EQ2] = ACTIONS(2162), - [anon_sym_BANG_EQ2] = ACTIONS(2162), - [anon_sym_LT2] = ACTIONS(2164), - [anon_sym_LT_EQ2] = ACTIONS(2162), - [anon_sym_GT_EQ2] = ACTIONS(2162), - [anon_sym_EQ_TILDE2] = ACTIONS(2162), - [anon_sym_BANG_TILDE2] = ACTIONS(2162), - [anon_sym_like2] = ACTIONS(2162), - [anon_sym_not_DASHlike2] = ACTIONS(2162), - [anon_sym_STAR_STAR2] = ACTIONS(2162), - [anon_sym_PLUS_PLUS2] = ACTIONS(2162), - [anon_sym_SLASH2] = ACTIONS(2164), - [anon_sym_mod2] = ACTIONS(2162), - [anon_sym_SLASH_SLASH2] = ACTIONS(2162), - [anon_sym_PLUS2] = ACTIONS(2164), - [anon_sym_bit_DASHshl2] = ACTIONS(2162), - [anon_sym_bit_DASHshr2] = ACTIONS(2162), - [anon_sym_bit_DASHand2] = ACTIONS(2162), - [anon_sym_bit_DASHxor2] = ACTIONS(2162), - [anon_sym_bit_DASHor2] = ACTIONS(2162), - [anon_sym_DOT_DOT2] = ACTIONS(1766), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1768), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1768), - [anon_sym_err_GT] = ACTIONS(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), + [STATE(885)] = { + [sym_cell_path] = STATE(1291), + [sym_path] = STATE(715), + [sym_comment] = STATE(885), + [aux_sym__where_predicate_lhs_repeat1] = STATE(526), + [ts_builtin_sym_end] = ACTIONS(1883), + [anon_sym_in] = ACTIONS(1883), + [sym__newline] = ACTIONS(1883), + [anon_sym_SEMI] = ACTIONS(1883), + [anon_sym_PIPE] = ACTIONS(1883), + [anon_sym_err_GT_PIPE] = ACTIONS(1883), + [anon_sym_out_GT_PIPE] = ACTIONS(1883), + [anon_sym_e_GT_PIPE] = ACTIONS(1883), + [anon_sym_o_GT_PIPE] = ACTIONS(1883), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1883), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1883), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1883), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1883), + [anon_sym_GT2] = ACTIONS(1885), + [anon_sym_DASH2] = ACTIONS(1883), + [anon_sym_STAR2] = ACTIONS(1885), + [anon_sym_and2] = ACTIONS(1883), + [anon_sym_xor2] = ACTIONS(1883), + [anon_sym_or2] = ACTIONS(1883), + [anon_sym_not_DASHin2] = ACTIONS(1883), + [anon_sym_has2] = ACTIONS(1883), + [anon_sym_not_DASHhas2] = ACTIONS(1883), + [anon_sym_starts_DASHwith2] = ACTIONS(1883), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1883), + [anon_sym_ends_DASHwith2] = ACTIONS(1883), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1883), + [anon_sym_EQ_EQ2] = ACTIONS(1883), + [anon_sym_BANG_EQ2] = ACTIONS(1883), + [anon_sym_LT2] = ACTIONS(1885), + [anon_sym_LT_EQ2] = ACTIONS(1883), + [anon_sym_GT_EQ2] = ACTIONS(1883), + [anon_sym_EQ_TILDE2] = ACTIONS(1883), + [anon_sym_BANG_TILDE2] = ACTIONS(1883), + [anon_sym_like2] = ACTIONS(1883), + [anon_sym_not_DASHlike2] = ACTIONS(1883), + [anon_sym_STAR_STAR2] = ACTIONS(1883), + [anon_sym_PLUS_PLUS2] = ACTIONS(1883), + [anon_sym_SLASH2] = ACTIONS(1885), + [anon_sym_mod2] = ACTIONS(1883), + [anon_sym_SLASH_SLASH2] = ACTIONS(1883), + [anon_sym_PLUS2] = ACTIONS(1885), + [anon_sym_bit_DASHshl2] = ACTIONS(1883), + [anon_sym_bit_DASHshr2] = ACTIONS(1883), + [anon_sym_bit_DASHand2] = ACTIONS(1883), + [anon_sym_bit_DASHxor2] = ACTIONS(1883), + [anon_sym_bit_DASHor2] = ACTIONS(1883), + [anon_sym_DOT2] = ACTIONS(2358), + [anon_sym_err_GT] = ACTIONS(1885), + [anon_sym_out_GT] = ACTIONS(1885), + [anon_sym_e_GT] = ACTIONS(1885), + [anon_sym_o_GT] = ACTIONS(1885), + [anon_sym_err_PLUSout_GT] = ACTIONS(1885), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1885), + [anon_sym_o_PLUSe_GT] = ACTIONS(1885), + [anon_sym_e_PLUSo_GT] = ACTIONS(1885), + [anon_sym_err_GT_GT] = ACTIONS(1883), + [anon_sym_out_GT_GT] = ACTIONS(1883), + [anon_sym_e_GT_GT] = ACTIONS(1883), + [anon_sym_o_GT_GT] = ACTIONS(1883), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1883), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1883), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1883), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1883), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(925)] = { - [sym_comment] = STATE(925), - [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_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), + [STATE(886)] = { + [aux_sym__repeat_newline] = STATE(1122), + [sym__expr_parenthesized_immediate] = STATE(5073), + [sym_comment] = STATE(886), + [anon_sym_in] = ACTIONS(2350), + [sym__newline] = ACTIONS(2350), + [anon_sym_SEMI] = ACTIONS(2350), + [anon_sym_PIPE] = ACTIONS(2350), + [anon_sym_err_GT_PIPE] = ACTIONS(2350), + [anon_sym_out_GT_PIPE] = ACTIONS(2350), + [anon_sym_e_GT_PIPE] = ACTIONS(2350), + [anon_sym_o_GT_PIPE] = ACTIONS(2350), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2350), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2350), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2350), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2350), + [anon_sym_RPAREN] = ACTIONS(2350), + [anon_sym_GT2] = ACTIONS(2352), + [anon_sym_DASH2] = ACTIONS(2350), + [anon_sym_LBRACE] = ACTIONS(2350), + [anon_sym_STAR2] = ACTIONS(2352), + [anon_sym_and2] = ACTIONS(2350), + [anon_sym_xor2] = ACTIONS(2350), + [anon_sym_or2] = ACTIONS(2350), + [anon_sym_not_DASHin2] = ACTIONS(2350), + [anon_sym_has2] = ACTIONS(2350), + [anon_sym_not_DASHhas2] = ACTIONS(2350), + [anon_sym_starts_DASHwith2] = ACTIONS(2350), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2350), + [anon_sym_ends_DASHwith2] = ACTIONS(2350), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2350), + [anon_sym_EQ_EQ2] = ACTIONS(2350), + [anon_sym_BANG_EQ2] = ACTIONS(2350), + [anon_sym_LT2] = ACTIONS(2352), + [anon_sym_LT_EQ2] = ACTIONS(2350), + [anon_sym_GT_EQ2] = ACTIONS(2350), + [anon_sym_EQ_TILDE2] = ACTIONS(2350), + [anon_sym_BANG_TILDE2] = ACTIONS(2350), + [anon_sym_like2] = ACTIONS(2350), + [anon_sym_not_DASHlike2] = ACTIONS(2350), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_STAR_STAR2] = ACTIONS(2350), + [anon_sym_PLUS_PLUS2] = ACTIONS(2350), + [anon_sym_SLASH2] = ACTIONS(2352), + [anon_sym_mod2] = ACTIONS(2350), + [anon_sym_SLASH_SLASH2] = ACTIONS(2350), + [anon_sym_PLUS2] = ACTIONS(2352), + [anon_sym_bit_DASHshl2] = ACTIONS(2350), + [anon_sym_bit_DASHshr2] = ACTIONS(2350), + [anon_sym_bit_DASHand2] = ACTIONS(2350), + [anon_sym_bit_DASHxor2] = ACTIONS(2350), + [anon_sym_bit_DASHor2] = ACTIONS(2350), + [anon_sym_err_GT] = ACTIONS(2352), + [anon_sym_out_GT] = ACTIONS(2352), + [anon_sym_e_GT] = ACTIONS(2352), + [anon_sym_o_GT] = ACTIONS(2352), + [anon_sym_err_PLUSout_GT] = ACTIONS(2352), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2352), + [anon_sym_o_PLUSe_GT] = ACTIONS(2352), + [anon_sym_e_PLUSo_GT] = ACTIONS(2352), + [anon_sym_err_GT_GT] = ACTIONS(2350), + [anon_sym_out_GT_GT] = ACTIONS(2350), + [anon_sym_e_GT_GT] = ACTIONS(2350), + [anon_sym_o_GT_GT] = ACTIONS(2350), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2350), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2350), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2350), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2350), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(926)] = { - [sym_comment] = STATE(926), - [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_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), + [STATE(887)] = { + [aux_sym__repeat_newline] = STATE(1123), + [sym__expr_parenthesized_immediate] = STATE(5073), + [sym_comment] = STATE(887), + [anon_sym_in] = ACTIONS(2350), + [sym__newline] = ACTIONS(2350), + [anon_sym_SEMI] = ACTIONS(2350), + [anon_sym_PIPE] = ACTIONS(2350), + [anon_sym_err_GT_PIPE] = ACTIONS(2350), + [anon_sym_out_GT_PIPE] = ACTIONS(2350), + [anon_sym_e_GT_PIPE] = ACTIONS(2350), + [anon_sym_o_GT_PIPE] = ACTIONS(2350), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2350), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2350), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2350), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2350), + [anon_sym_RPAREN] = ACTIONS(2350), + [anon_sym_GT2] = ACTIONS(2352), + [anon_sym_DASH2] = ACTIONS(2350), + [anon_sym_LBRACE] = ACTIONS(2350), + [anon_sym_STAR2] = ACTIONS(2352), + [anon_sym_and2] = ACTIONS(2350), + [anon_sym_xor2] = ACTIONS(2350), + [anon_sym_or2] = ACTIONS(2350), + [anon_sym_not_DASHin2] = ACTIONS(2350), + [anon_sym_has2] = ACTIONS(2350), + [anon_sym_not_DASHhas2] = ACTIONS(2350), + [anon_sym_starts_DASHwith2] = ACTIONS(2350), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2350), + [anon_sym_ends_DASHwith2] = ACTIONS(2350), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2350), + [anon_sym_EQ_EQ2] = ACTIONS(2350), + [anon_sym_BANG_EQ2] = ACTIONS(2350), + [anon_sym_LT2] = ACTIONS(2352), + [anon_sym_LT_EQ2] = ACTIONS(2350), + [anon_sym_GT_EQ2] = ACTIONS(2350), + [anon_sym_EQ_TILDE2] = ACTIONS(2350), + [anon_sym_BANG_TILDE2] = ACTIONS(2350), + [anon_sym_like2] = ACTIONS(2350), + [anon_sym_not_DASHlike2] = ACTIONS(2350), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_STAR_STAR2] = ACTIONS(2350), + [anon_sym_PLUS_PLUS2] = ACTIONS(2350), + [anon_sym_SLASH2] = ACTIONS(2352), + [anon_sym_mod2] = ACTIONS(2350), + [anon_sym_SLASH_SLASH2] = ACTIONS(2350), + [anon_sym_PLUS2] = ACTIONS(2352), + [anon_sym_bit_DASHshl2] = ACTIONS(2350), + [anon_sym_bit_DASHshr2] = ACTIONS(2350), + [anon_sym_bit_DASHand2] = ACTIONS(2350), + [anon_sym_bit_DASHxor2] = ACTIONS(2350), + [anon_sym_bit_DASHor2] = ACTIONS(2350), + [anon_sym_err_GT] = ACTIONS(2352), + [anon_sym_out_GT] = ACTIONS(2352), + [anon_sym_e_GT] = ACTIONS(2352), + [anon_sym_o_GT] = ACTIONS(2352), + [anon_sym_err_PLUSout_GT] = ACTIONS(2352), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2352), + [anon_sym_o_PLUSe_GT] = ACTIONS(2352), + [anon_sym_e_PLUSo_GT] = ACTIONS(2352), + [anon_sym_err_GT_GT] = ACTIONS(2350), + [anon_sym_out_GT_GT] = ACTIONS(2350), + [anon_sym_e_GT_GT] = ACTIONS(2350), + [anon_sym_o_GT_GT] = ACTIONS(2350), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2350), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2350), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2350), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2350), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(927)] = { - [sym_comment] = STATE(927), - [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_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), + [STATE(888)] = { + [aux_sym__repeat_newline] = STATE(1124), + [sym__expr_parenthesized_immediate] = STATE(5073), + [sym_comment] = STATE(888), + [anon_sym_in] = ACTIONS(2350), + [sym__newline] = ACTIONS(2350), + [anon_sym_SEMI] = ACTIONS(2350), + [anon_sym_PIPE] = ACTIONS(2350), + [anon_sym_err_GT_PIPE] = ACTIONS(2350), + [anon_sym_out_GT_PIPE] = ACTIONS(2350), + [anon_sym_e_GT_PIPE] = ACTIONS(2350), + [anon_sym_o_GT_PIPE] = ACTIONS(2350), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2350), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2350), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2350), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2350), + [anon_sym_RPAREN] = ACTIONS(2350), + [anon_sym_GT2] = ACTIONS(2352), + [anon_sym_DASH2] = ACTIONS(2350), + [anon_sym_LBRACE] = ACTIONS(2350), + [anon_sym_STAR2] = ACTIONS(2352), + [anon_sym_and2] = ACTIONS(2350), + [anon_sym_xor2] = ACTIONS(2350), + [anon_sym_or2] = ACTIONS(2350), + [anon_sym_not_DASHin2] = ACTIONS(2350), + [anon_sym_has2] = ACTIONS(2350), + [anon_sym_not_DASHhas2] = ACTIONS(2350), + [anon_sym_starts_DASHwith2] = ACTIONS(2350), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2350), + [anon_sym_ends_DASHwith2] = ACTIONS(2350), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2350), + [anon_sym_EQ_EQ2] = ACTIONS(2350), + [anon_sym_BANG_EQ2] = ACTIONS(2350), + [anon_sym_LT2] = ACTIONS(2352), + [anon_sym_LT_EQ2] = ACTIONS(2350), + [anon_sym_GT_EQ2] = ACTIONS(2350), + [anon_sym_EQ_TILDE2] = ACTIONS(2350), + [anon_sym_BANG_TILDE2] = ACTIONS(2350), + [anon_sym_like2] = ACTIONS(2350), + [anon_sym_not_DASHlike2] = ACTIONS(2350), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_STAR_STAR2] = ACTIONS(2350), + [anon_sym_PLUS_PLUS2] = ACTIONS(2350), + [anon_sym_SLASH2] = ACTIONS(2352), + [anon_sym_mod2] = ACTIONS(2350), + [anon_sym_SLASH_SLASH2] = ACTIONS(2350), + [anon_sym_PLUS2] = ACTIONS(2352), + [anon_sym_bit_DASHshl2] = ACTIONS(2350), + [anon_sym_bit_DASHshr2] = ACTIONS(2350), + [anon_sym_bit_DASHand2] = ACTIONS(2350), + [anon_sym_bit_DASHxor2] = ACTIONS(2350), + [anon_sym_bit_DASHor2] = ACTIONS(2350), + [anon_sym_err_GT] = ACTIONS(2352), + [anon_sym_out_GT] = ACTIONS(2352), + [anon_sym_e_GT] = ACTIONS(2352), + [anon_sym_o_GT] = ACTIONS(2352), + [anon_sym_err_PLUSout_GT] = ACTIONS(2352), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2352), + [anon_sym_o_PLUSe_GT] = ACTIONS(2352), + [anon_sym_e_PLUSo_GT] = ACTIONS(2352), + [anon_sym_err_GT_GT] = ACTIONS(2350), + [anon_sym_out_GT_GT] = ACTIONS(2350), + [anon_sym_e_GT_GT] = ACTIONS(2350), + [anon_sym_o_GT_GT] = ACTIONS(2350), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2350), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2350), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2350), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2350), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(928)] = { - [sym_comment] = STATE(928), - [anon_sym_in] = ACTIONS(2581), - [sym__newline] = ACTIONS(2581), - [anon_sym_SEMI] = ACTIONS(2581), - [anon_sym_PIPE] = ACTIONS(2581), - [anon_sym_err_GT_PIPE] = ACTIONS(2581), - [anon_sym_out_GT_PIPE] = ACTIONS(2581), - [anon_sym_e_GT_PIPE] = ACTIONS(2581), - [anon_sym_o_GT_PIPE] = ACTIONS(2581), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2581), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2581), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2581), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2581), - [anon_sym_RPAREN] = ACTIONS(2581), - [anon_sym_GT2] = ACTIONS(2583), - [anon_sym_DASH2] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(2581), - [anon_sym_RBRACE] = ACTIONS(2581), - [anon_sym_EQ_GT] = ACTIONS(2581), - [anon_sym_STAR2] = ACTIONS(2583), - [anon_sym_and2] = ACTIONS(2581), - [anon_sym_xor2] = ACTIONS(2581), - [anon_sym_or2] = ACTIONS(2581), - [anon_sym_not_DASHin2] = ACTIONS(2581), - [anon_sym_has2] = ACTIONS(2581), - [anon_sym_not_DASHhas2] = ACTIONS(2581), - [anon_sym_starts_DASHwith2] = ACTIONS(2581), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2581), - [anon_sym_ends_DASHwith2] = ACTIONS(2581), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2581), - [anon_sym_EQ_EQ2] = ACTIONS(2581), - [anon_sym_BANG_EQ2] = ACTIONS(2581), - [anon_sym_LT2] = ACTIONS(2583), - [anon_sym_LT_EQ2] = ACTIONS(2581), - [anon_sym_GT_EQ2] = ACTIONS(2581), - [anon_sym_EQ_TILDE2] = ACTIONS(2581), - [anon_sym_BANG_TILDE2] = ACTIONS(2581), - [anon_sym_like2] = ACTIONS(2581), - [anon_sym_not_DASHlike2] = ACTIONS(2581), - [anon_sym_STAR_STAR2] = ACTIONS(2581), - [anon_sym_PLUS_PLUS2] = ACTIONS(2581), - [anon_sym_SLASH2] = ACTIONS(2583), - [anon_sym_mod2] = ACTIONS(2581), - [anon_sym_SLASH_SLASH2] = ACTIONS(2581), - [anon_sym_PLUS2] = ACTIONS(2583), - [anon_sym_bit_DASHshl2] = ACTIONS(2581), - [anon_sym_bit_DASHshr2] = ACTIONS(2581), - [anon_sym_bit_DASHand2] = ACTIONS(2581), - [anon_sym_bit_DASHxor2] = ACTIONS(2581), - [anon_sym_bit_DASHor2] = ACTIONS(2581), - [anon_sym_err_GT] = ACTIONS(2583), - [anon_sym_out_GT] = ACTIONS(2583), - [anon_sym_e_GT] = ACTIONS(2583), - [anon_sym_o_GT] = ACTIONS(2583), - [anon_sym_err_PLUSout_GT] = ACTIONS(2583), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2583), - [anon_sym_o_PLUSe_GT] = ACTIONS(2583), - [anon_sym_e_PLUSo_GT] = ACTIONS(2583), - [anon_sym_err_GT_GT] = ACTIONS(2581), - [anon_sym_out_GT_GT] = ACTIONS(2581), - [anon_sym_e_GT_GT] = ACTIONS(2581), - [anon_sym_o_GT_GT] = ACTIONS(2581), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2581), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2581), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2581), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2581), + [STATE(889)] = { + [aux_sym__repeat_newline] = STATE(1125), + [sym__expr_parenthesized_immediate] = STATE(5073), + [sym_comment] = STATE(889), + [anon_sym_in] = ACTIONS(2350), + [sym__newline] = ACTIONS(2350), + [anon_sym_SEMI] = ACTIONS(2350), + [anon_sym_PIPE] = ACTIONS(2350), + [anon_sym_err_GT_PIPE] = ACTIONS(2350), + [anon_sym_out_GT_PIPE] = ACTIONS(2350), + [anon_sym_e_GT_PIPE] = ACTIONS(2350), + [anon_sym_o_GT_PIPE] = ACTIONS(2350), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2350), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2350), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2350), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2350), + [anon_sym_RPAREN] = ACTIONS(2350), + [anon_sym_GT2] = ACTIONS(2352), + [anon_sym_DASH2] = ACTIONS(2350), + [anon_sym_LBRACE] = ACTIONS(2350), + [anon_sym_STAR2] = ACTIONS(2352), + [anon_sym_and2] = ACTIONS(2350), + [anon_sym_xor2] = ACTIONS(2350), + [anon_sym_or2] = ACTIONS(2350), + [anon_sym_not_DASHin2] = ACTIONS(2350), + [anon_sym_has2] = ACTIONS(2350), + [anon_sym_not_DASHhas2] = ACTIONS(2350), + [anon_sym_starts_DASHwith2] = ACTIONS(2350), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2350), + [anon_sym_ends_DASHwith2] = ACTIONS(2350), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2350), + [anon_sym_EQ_EQ2] = ACTIONS(2350), + [anon_sym_BANG_EQ2] = ACTIONS(2350), + [anon_sym_LT2] = ACTIONS(2352), + [anon_sym_LT_EQ2] = ACTIONS(2350), + [anon_sym_GT_EQ2] = ACTIONS(2350), + [anon_sym_EQ_TILDE2] = ACTIONS(2350), + [anon_sym_BANG_TILDE2] = ACTIONS(2350), + [anon_sym_like2] = ACTIONS(2350), + [anon_sym_not_DASHlike2] = ACTIONS(2350), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_STAR_STAR2] = ACTIONS(2350), + [anon_sym_PLUS_PLUS2] = ACTIONS(2350), + [anon_sym_SLASH2] = ACTIONS(2352), + [anon_sym_mod2] = ACTIONS(2350), + [anon_sym_SLASH_SLASH2] = ACTIONS(2350), + [anon_sym_PLUS2] = ACTIONS(2352), + [anon_sym_bit_DASHshl2] = ACTIONS(2350), + [anon_sym_bit_DASHshr2] = ACTIONS(2350), + [anon_sym_bit_DASHand2] = ACTIONS(2350), + [anon_sym_bit_DASHxor2] = ACTIONS(2350), + [anon_sym_bit_DASHor2] = ACTIONS(2350), + [anon_sym_err_GT] = ACTIONS(2352), + [anon_sym_out_GT] = ACTIONS(2352), + [anon_sym_e_GT] = ACTIONS(2352), + [anon_sym_o_GT] = ACTIONS(2352), + [anon_sym_err_PLUSout_GT] = ACTIONS(2352), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2352), + [anon_sym_o_PLUSe_GT] = ACTIONS(2352), + [anon_sym_e_PLUSo_GT] = ACTIONS(2352), + [anon_sym_err_GT_GT] = ACTIONS(2350), + [anon_sym_out_GT_GT] = ACTIONS(2350), + [anon_sym_e_GT_GT] = ACTIONS(2350), + [anon_sym_o_GT_GT] = ACTIONS(2350), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2350), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2350), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2350), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2350), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(929)] = { - [sym_comment] = STATE(929), - [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(2120), - [anon_sym_DASH2] = ACTIONS(2118), - [anon_sym_STAR2] = 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(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(2120), - [anon_sym_mod2] = ACTIONS(2118), - [anon_sym_SLASH_SLASH2] = ACTIONS(2118), - [anon_sym_PLUS2] = ACTIONS(2120), - [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(2585), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2587), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2587), - [anon_sym_err_GT] = ACTIONS(2120), - [anon_sym_out_GT] = ACTIONS(2120), - [anon_sym_e_GT] = ACTIONS(2120), - [anon_sym_o_GT] = ACTIONS(2120), - [anon_sym_err_PLUSout_GT] = ACTIONS(2120), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2120), - [anon_sym_o_PLUSe_GT] = ACTIONS(2120), - [anon_sym_e_PLUSo_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), + [STATE(890)] = { + [aux_sym__repeat_newline] = STATE(1126), + [sym__expr_parenthesized_immediate] = STATE(5073), + [sym_comment] = STATE(890), + [anon_sym_in] = ACTIONS(2350), + [sym__newline] = ACTIONS(2350), + [anon_sym_SEMI] = ACTIONS(2350), + [anon_sym_PIPE] = ACTIONS(2350), + [anon_sym_err_GT_PIPE] = ACTIONS(2350), + [anon_sym_out_GT_PIPE] = ACTIONS(2350), + [anon_sym_e_GT_PIPE] = ACTIONS(2350), + [anon_sym_o_GT_PIPE] = ACTIONS(2350), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2350), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2350), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2350), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2350), + [anon_sym_RPAREN] = ACTIONS(2350), + [anon_sym_GT2] = ACTIONS(2352), + [anon_sym_DASH2] = ACTIONS(2350), + [anon_sym_LBRACE] = ACTIONS(2350), + [anon_sym_STAR2] = ACTIONS(2352), + [anon_sym_and2] = ACTIONS(2350), + [anon_sym_xor2] = ACTIONS(2350), + [anon_sym_or2] = ACTIONS(2350), + [anon_sym_not_DASHin2] = ACTIONS(2350), + [anon_sym_has2] = ACTIONS(2350), + [anon_sym_not_DASHhas2] = ACTIONS(2350), + [anon_sym_starts_DASHwith2] = ACTIONS(2350), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2350), + [anon_sym_ends_DASHwith2] = ACTIONS(2350), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2350), + [anon_sym_EQ_EQ2] = ACTIONS(2350), + [anon_sym_BANG_EQ2] = ACTIONS(2350), + [anon_sym_LT2] = ACTIONS(2352), + [anon_sym_LT_EQ2] = ACTIONS(2350), + [anon_sym_GT_EQ2] = ACTIONS(2350), + [anon_sym_EQ_TILDE2] = ACTIONS(2350), + [anon_sym_BANG_TILDE2] = ACTIONS(2350), + [anon_sym_like2] = ACTIONS(2350), + [anon_sym_not_DASHlike2] = ACTIONS(2350), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_STAR_STAR2] = ACTIONS(2350), + [anon_sym_PLUS_PLUS2] = ACTIONS(2350), + [anon_sym_SLASH2] = ACTIONS(2352), + [anon_sym_mod2] = ACTIONS(2350), + [anon_sym_SLASH_SLASH2] = ACTIONS(2350), + [anon_sym_PLUS2] = ACTIONS(2352), + [anon_sym_bit_DASHshl2] = ACTIONS(2350), + [anon_sym_bit_DASHshr2] = ACTIONS(2350), + [anon_sym_bit_DASHand2] = ACTIONS(2350), + [anon_sym_bit_DASHxor2] = ACTIONS(2350), + [anon_sym_bit_DASHor2] = ACTIONS(2350), + [anon_sym_err_GT] = ACTIONS(2352), + [anon_sym_out_GT] = ACTIONS(2352), + [anon_sym_e_GT] = ACTIONS(2352), + [anon_sym_o_GT] = ACTIONS(2352), + [anon_sym_err_PLUSout_GT] = ACTIONS(2352), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2352), + [anon_sym_o_PLUSe_GT] = ACTIONS(2352), + [anon_sym_e_PLUSo_GT] = ACTIONS(2352), + [anon_sym_err_GT_GT] = ACTIONS(2350), + [anon_sym_out_GT_GT] = ACTIONS(2350), + [anon_sym_e_GT_GT] = ACTIONS(2350), + [anon_sym_o_GT_GT] = ACTIONS(2350), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2350), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2350), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2350), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2350), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(930)] = { - [sym_comment] = STATE(930), - [anon_sym_in] = ACTIONS(2589), - [sym__newline] = ACTIONS(2589), - [anon_sym_SEMI] = ACTIONS(2589), - [anon_sym_PIPE] = ACTIONS(2589), - [anon_sym_err_GT_PIPE] = ACTIONS(2589), - [anon_sym_out_GT_PIPE] = ACTIONS(2589), - [anon_sym_e_GT_PIPE] = ACTIONS(2589), - [anon_sym_o_GT_PIPE] = ACTIONS(2589), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2589), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2589), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2589), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2589), - [anon_sym_RPAREN] = ACTIONS(2589), - [anon_sym_GT2] = ACTIONS(2591), - [anon_sym_DASH2] = ACTIONS(2589), - [anon_sym_LBRACE] = ACTIONS(2589), - [anon_sym_RBRACE] = ACTIONS(2589), - [anon_sym_EQ_GT] = ACTIONS(2589), - [anon_sym_STAR2] = ACTIONS(2591), - [anon_sym_and2] = ACTIONS(2589), - [anon_sym_xor2] = ACTIONS(2589), - [anon_sym_or2] = ACTIONS(2589), - [anon_sym_not_DASHin2] = ACTIONS(2589), - [anon_sym_has2] = ACTIONS(2589), - [anon_sym_not_DASHhas2] = ACTIONS(2589), - [anon_sym_starts_DASHwith2] = ACTIONS(2589), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2589), - [anon_sym_ends_DASHwith2] = ACTIONS(2589), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2589), - [anon_sym_EQ_EQ2] = ACTIONS(2589), - [anon_sym_BANG_EQ2] = ACTIONS(2589), - [anon_sym_LT2] = ACTIONS(2591), - [anon_sym_LT_EQ2] = ACTIONS(2589), - [anon_sym_GT_EQ2] = ACTIONS(2589), - [anon_sym_EQ_TILDE2] = ACTIONS(2589), - [anon_sym_BANG_TILDE2] = ACTIONS(2589), - [anon_sym_like2] = ACTIONS(2589), - [anon_sym_not_DASHlike2] = ACTIONS(2589), - [anon_sym_STAR_STAR2] = ACTIONS(2589), - [anon_sym_PLUS_PLUS2] = ACTIONS(2589), - [anon_sym_SLASH2] = ACTIONS(2591), - [anon_sym_mod2] = ACTIONS(2589), - [anon_sym_SLASH_SLASH2] = ACTIONS(2589), - [anon_sym_PLUS2] = ACTIONS(2591), - [anon_sym_bit_DASHshl2] = ACTIONS(2589), - [anon_sym_bit_DASHshr2] = ACTIONS(2589), - [anon_sym_bit_DASHand2] = ACTIONS(2589), - [anon_sym_bit_DASHxor2] = ACTIONS(2589), - [anon_sym_bit_DASHor2] = ACTIONS(2589), - [anon_sym_err_GT] = ACTIONS(2591), - [anon_sym_out_GT] = ACTIONS(2591), - [anon_sym_e_GT] = ACTIONS(2591), - [anon_sym_o_GT] = ACTIONS(2591), - [anon_sym_err_PLUSout_GT] = ACTIONS(2591), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2591), - [anon_sym_o_PLUSe_GT] = ACTIONS(2591), - [anon_sym_e_PLUSo_GT] = ACTIONS(2591), - [anon_sym_err_GT_GT] = ACTIONS(2589), - [anon_sym_out_GT_GT] = ACTIONS(2589), - [anon_sym_e_GT_GT] = ACTIONS(2589), - [anon_sym_o_GT_GT] = ACTIONS(2589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), + [STATE(891)] = { + [aux_sym__repeat_newline] = STATE(1127), + [sym__expr_parenthesized_immediate] = STATE(5073), + [sym_comment] = STATE(891), + [anon_sym_in] = ACTIONS(2350), + [sym__newline] = ACTIONS(2350), + [anon_sym_SEMI] = ACTIONS(2350), + [anon_sym_PIPE] = ACTIONS(2350), + [anon_sym_err_GT_PIPE] = ACTIONS(2350), + [anon_sym_out_GT_PIPE] = ACTIONS(2350), + [anon_sym_e_GT_PIPE] = ACTIONS(2350), + [anon_sym_o_GT_PIPE] = ACTIONS(2350), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2350), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2350), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2350), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2350), + [anon_sym_RPAREN] = ACTIONS(2350), + [anon_sym_GT2] = ACTIONS(2352), + [anon_sym_DASH2] = ACTIONS(2350), + [anon_sym_LBRACE] = ACTIONS(2350), + [anon_sym_STAR2] = ACTIONS(2352), + [anon_sym_and2] = ACTIONS(2350), + [anon_sym_xor2] = ACTIONS(2350), + [anon_sym_or2] = ACTIONS(2350), + [anon_sym_not_DASHin2] = ACTIONS(2350), + [anon_sym_has2] = ACTIONS(2350), + [anon_sym_not_DASHhas2] = ACTIONS(2350), + [anon_sym_starts_DASHwith2] = ACTIONS(2350), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2350), + [anon_sym_ends_DASHwith2] = ACTIONS(2350), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2350), + [anon_sym_EQ_EQ2] = ACTIONS(2350), + [anon_sym_BANG_EQ2] = ACTIONS(2350), + [anon_sym_LT2] = ACTIONS(2352), + [anon_sym_LT_EQ2] = ACTIONS(2350), + [anon_sym_GT_EQ2] = ACTIONS(2350), + [anon_sym_EQ_TILDE2] = ACTIONS(2350), + [anon_sym_BANG_TILDE2] = ACTIONS(2350), + [anon_sym_like2] = ACTIONS(2350), + [anon_sym_not_DASHlike2] = ACTIONS(2350), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_STAR_STAR2] = ACTIONS(2350), + [anon_sym_PLUS_PLUS2] = ACTIONS(2350), + [anon_sym_SLASH2] = ACTIONS(2352), + [anon_sym_mod2] = ACTIONS(2350), + [anon_sym_SLASH_SLASH2] = ACTIONS(2350), + [anon_sym_PLUS2] = ACTIONS(2352), + [anon_sym_bit_DASHshl2] = ACTIONS(2350), + [anon_sym_bit_DASHshr2] = ACTIONS(2350), + [anon_sym_bit_DASHand2] = ACTIONS(2350), + [anon_sym_bit_DASHxor2] = ACTIONS(2350), + [anon_sym_bit_DASHor2] = ACTIONS(2350), + [anon_sym_err_GT] = ACTIONS(2352), + [anon_sym_out_GT] = ACTIONS(2352), + [anon_sym_e_GT] = ACTIONS(2352), + [anon_sym_o_GT] = ACTIONS(2352), + [anon_sym_err_PLUSout_GT] = ACTIONS(2352), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2352), + [anon_sym_o_PLUSe_GT] = ACTIONS(2352), + [anon_sym_e_PLUSo_GT] = ACTIONS(2352), + [anon_sym_err_GT_GT] = ACTIONS(2350), + [anon_sym_out_GT_GT] = ACTIONS(2350), + [anon_sym_e_GT_GT] = ACTIONS(2350), + [anon_sym_o_GT_GT] = ACTIONS(2350), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2350), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2350), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2350), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2350), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(931)] = { - [sym_comment] = STATE(931), - [anon_sym_in] = ACTIONS(2593), - [sym__newline] = ACTIONS(2593), - [anon_sym_SEMI] = ACTIONS(2593), - [anon_sym_PIPE] = ACTIONS(2593), - [anon_sym_err_GT_PIPE] = ACTIONS(2593), - [anon_sym_out_GT_PIPE] = ACTIONS(2593), - [anon_sym_e_GT_PIPE] = ACTIONS(2593), - [anon_sym_o_GT_PIPE] = ACTIONS(2593), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2593), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2593), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2593), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2593), - [anon_sym_RPAREN] = ACTIONS(2593), - [anon_sym_GT2] = ACTIONS(2595), - [anon_sym_DASH2] = ACTIONS(2593), - [anon_sym_LBRACE] = ACTIONS(2593), - [anon_sym_RBRACE] = ACTIONS(2593), - [anon_sym_EQ_GT] = ACTIONS(2593), - [anon_sym_STAR2] = ACTIONS(2595), - [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(2593), - [anon_sym_BANG_EQ2] = ACTIONS(2593), - [anon_sym_LT2] = ACTIONS(2595), - [anon_sym_LT_EQ2] = ACTIONS(2593), - [anon_sym_GT_EQ2] = ACTIONS(2593), - [anon_sym_EQ_TILDE2] = ACTIONS(2593), - [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(2595), - [anon_sym_mod2] = ACTIONS(2593), - [anon_sym_SLASH_SLASH2] = ACTIONS(2593), - [anon_sym_PLUS2] = ACTIONS(2595), - [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(2595), - [anon_sym_out_GT] = ACTIONS(2595), - [anon_sym_e_GT] = ACTIONS(2595), - [anon_sym_o_GT] = ACTIONS(2595), - [anon_sym_err_PLUSout_GT] = ACTIONS(2595), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2595), - [anon_sym_o_PLUSe_GT] = ACTIONS(2595), - [anon_sym_e_PLUSo_GT] = ACTIONS(2595), - [anon_sym_err_GT_GT] = ACTIONS(2593), - [anon_sym_out_GT_GT] = ACTIONS(2593), - [anon_sym_e_GT_GT] = ACTIONS(2593), - [anon_sym_o_GT_GT] = ACTIONS(2593), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2593), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2593), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2593), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2593), + [STATE(892)] = { + [sym_expr_unary] = STATE(940), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(940), + [sym__expr_binary_expression] = STATE(1648), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(940), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(940), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1495), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1414), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(683), + [sym__unquoted_with_expr] = STATE(971), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(892), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [anon_sym_null] = ACTIONS(1925), + [aux_sym_cmd_identifier_token3] = ACTIONS(1927), + [aux_sym_cmd_identifier_token4] = ACTIONS(1927), + [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1931), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), + [anon_sym_DOT_DOT_LT] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1937), + [aux_sym__val_number_decimal_token3] = ACTIONS(1939), + [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1941), + [anon_sym_DQUOTE] = 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(1943), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(932)] = { - [sym_comment] = STATE(932), - [anon_sym_in] = ACTIONS(1912), - [sym__newline] = ACTIONS(1912), - [anon_sym_SEMI] = ACTIONS(1912), - [anon_sym_PIPE] = ACTIONS(1912), - [anon_sym_err_GT_PIPE] = ACTIONS(1912), - [anon_sym_out_GT_PIPE] = ACTIONS(1912), - [anon_sym_e_GT_PIPE] = ACTIONS(1912), - [anon_sym_o_GT_PIPE] = ACTIONS(1912), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1912), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1912), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1912), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1912), - [anon_sym_RPAREN] = ACTIONS(1912), - [anon_sym_GT2] = ACTIONS(1914), - [anon_sym_DASH2] = ACTIONS(1912), - [anon_sym_LBRACE] = ACTIONS(1912), - [anon_sym_RBRACE] = ACTIONS(1912), - [anon_sym_EQ_GT] = ACTIONS(1912), - [anon_sym_STAR2] = ACTIONS(1914), - [anon_sym_and2] = ACTIONS(1912), - [anon_sym_xor2] = ACTIONS(1912), - [anon_sym_or2] = ACTIONS(1912), - [anon_sym_not_DASHin2] = ACTIONS(1912), - [anon_sym_has2] = ACTIONS(1912), - [anon_sym_not_DASHhas2] = ACTIONS(1912), - [anon_sym_starts_DASHwith2] = ACTIONS(1912), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1912), - [anon_sym_ends_DASHwith2] = ACTIONS(1912), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1912), - [anon_sym_EQ_EQ2] = ACTIONS(1912), - [anon_sym_BANG_EQ2] = ACTIONS(1912), - [anon_sym_LT2] = ACTIONS(1914), - [anon_sym_LT_EQ2] = ACTIONS(1912), - [anon_sym_GT_EQ2] = ACTIONS(1912), - [anon_sym_EQ_TILDE2] = ACTIONS(1912), - [anon_sym_BANG_TILDE2] = ACTIONS(1912), - [anon_sym_like2] = ACTIONS(1912), - [anon_sym_not_DASHlike2] = ACTIONS(1912), - [anon_sym_STAR_STAR2] = ACTIONS(1912), - [anon_sym_PLUS_PLUS2] = ACTIONS(1912), - [anon_sym_SLASH2] = ACTIONS(1914), - [anon_sym_mod2] = ACTIONS(1912), - [anon_sym_SLASH_SLASH2] = ACTIONS(1912), - [anon_sym_PLUS2] = ACTIONS(1914), - [anon_sym_bit_DASHshl2] = ACTIONS(1912), - [anon_sym_bit_DASHshr2] = ACTIONS(1912), - [anon_sym_bit_DASHand2] = ACTIONS(1912), - [anon_sym_bit_DASHxor2] = ACTIONS(1912), - [anon_sym_bit_DASHor2] = ACTIONS(1912), - [anon_sym_err_GT] = ACTIONS(1914), - [anon_sym_out_GT] = ACTIONS(1914), - [anon_sym_e_GT] = ACTIONS(1914), - [anon_sym_o_GT] = ACTIONS(1914), - [anon_sym_err_PLUSout_GT] = ACTIONS(1914), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1914), - [anon_sym_o_PLUSe_GT] = ACTIONS(1914), - [anon_sym_e_PLUSo_GT] = ACTIONS(1914), - [anon_sym_err_GT_GT] = ACTIONS(1912), - [anon_sym_out_GT_GT] = ACTIONS(1912), - [anon_sym_e_GT_GT] = ACTIONS(1912), - [anon_sym_o_GT_GT] = ACTIONS(1912), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1912), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1912), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1912), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1912), + [STATE(893)] = { + [sym_expr_unary] = STATE(940), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(940), + [sym__expr_binary_expression] = STATE(1649), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(940), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(940), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1495), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1414), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(684), + [sym__unquoted_with_expr] = STATE(973), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(893), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [anon_sym_null] = ACTIONS(1925), + [aux_sym_cmd_identifier_token3] = ACTIONS(1927), + [aux_sym_cmd_identifier_token4] = ACTIONS(1927), + [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1931), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), + [anon_sym_DOT_DOT_LT] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1937), + [aux_sym__val_number_decimal_token3] = ACTIONS(1939), + [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1941), + [anon_sym_DQUOTE] = 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(1943), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(933)] = { - [sym_comment] = STATE(933), - [ts_builtin_sym_end] = ACTIONS(1713), - [anon_sym_in] = ACTIONS(1713), - [sym__newline] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1713), - [anon_sym_err_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_GT_PIPE] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), - [anon_sym_GT2] = ACTIONS(1614), - [anon_sym_DASH2] = ACTIONS(1713), - [anon_sym_STAR2] = ACTIONS(1614), - [anon_sym_and2] = ACTIONS(1713), - [anon_sym_xor2] = ACTIONS(1713), - [anon_sym_or2] = ACTIONS(1713), - [anon_sym_not_DASHin2] = ACTIONS(1713), - [anon_sym_has2] = ACTIONS(1713), - [anon_sym_not_DASHhas2] = ACTIONS(1713), - [anon_sym_starts_DASHwith2] = ACTIONS(1713), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1713), - [anon_sym_ends_DASHwith2] = ACTIONS(1713), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1713), - [anon_sym_EQ_EQ2] = ACTIONS(1713), - [anon_sym_BANG_EQ2] = ACTIONS(1713), - [anon_sym_LT2] = ACTIONS(1614), - [anon_sym_LT_EQ2] = ACTIONS(1713), - [anon_sym_GT_EQ2] = ACTIONS(1713), - [anon_sym_EQ_TILDE2] = ACTIONS(1713), - [anon_sym_BANG_TILDE2] = ACTIONS(1713), - [anon_sym_like2] = ACTIONS(1713), - [anon_sym_not_DASHlike2] = ACTIONS(1713), - [anon_sym_STAR_STAR2] = ACTIONS(1713), - [anon_sym_PLUS_PLUS2] = ACTIONS(1713), - [anon_sym_SLASH2] = ACTIONS(1614), - [anon_sym_mod2] = ACTIONS(1713), - [anon_sym_SLASH_SLASH2] = ACTIONS(1713), - [anon_sym_PLUS2] = ACTIONS(1614), - [anon_sym_bit_DASHshl2] = ACTIONS(1713), - [anon_sym_bit_DASHshr2] = ACTIONS(1713), - [anon_sym_bit_DASHand2] = ACTIONS(1713), - [anon_sym_bit_DASHxor2] = ACTIONS(1713), - [anon_sym_bit_DASHor2] = ACTIONS(1713), - [anon_sym_DOT_DOT2] = ACTIONS(1766), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1768), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1768), - [anon_sym_err_GT] = ACTIONS(1614), - [anon_sym_out_GT] = ACTIONS(1614), - [anon_sym_e_GT] = ACTIONS(1614), - [anon_sym_o_GT] = ACTIONS(1614), - [anon_sym_err_PLUSout_GT] = ACTIONS(1614), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1614), - [anon_sym_o_PLUSe_GT] = ACTIONS(1614), - [anon_sym_e_PLUSo_GT] = ACTIONS(1614), - [anon_sym_err_GT_GT] = ACTIONS(1713), - [anon_sym_out_GT_GT] = ACTIONS(1713), - [anon_sym_e_GT_GT] = ACTIONS(1713), - [anon_sym_o_GT_GT] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), + [STATE(894)] = { + [sym_expr_unary] = STATE(940), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(940), + [sym__expr_binary_expression] = STATE(1650), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(940), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(940), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1495), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1414), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(685), + [sym__unquoted_with_expr] = STATE(947), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(894), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [anon_sym_null] = ACTIONS(1925), + [aux_sym_cmd_identifier_token3] = ACTIONS(1927), + [aux_sym_cmd_identifier_token4] = ACTIONS(1927), + [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1931), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), + [anon_sym_DOT_DOT_LT] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1937), + [aux_sym__val_number_decimal_token3] = ACTIONS(1939), + [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1941), + [anon_sym_DQUOTE] = 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(1943), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(934)] = { - [sym_comment] = STATE(934), - [anon_sym_in] = ACTIONS(2597), - [sym__newline] = ACTIONS(2597), - [anon_sym_SEMI] = ACTIONS(2597), - [anon_sym_PIPE] = ACTIONS(2597), - [anon_sym_err_GT_PIPE] = ACTIONS(2597), - [anon_sym_out_GT_PIPE] = ACTIONS(2597), - [anon_sym_e_GT_PIPE] = ACTIONS(2597), - [anon_sym_o_GT_PIPE] = ACTIONS(2597), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2597), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2597), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2597), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2597), - [anon_sym_RPAREN] = ACTIONS(2597), - [anon_sym_GT2] = ACTIONS(2599), - [anon_sym_DASH2] = ACTIONS(2597), - [anon_sym_LBRACE] = ACTIONS(2597), - [anon_sym_RBRACE] = ACTIONS(2597), - [anon_sym_EQ_GT] = ACTIONS(2597), - [anon_sym_STAR2] = ACTIONS(2599), - [anon_sym_and2] = ACTIONS(2597), - [anon_sym_xor2] = ACTIONS(2597), - [anon_sym_or2] = ACTIONS(2597), - [anon_sym_not_DASHin2] = ACTIONS(2597), - [anon_sym_has2] = ACTIONS(2597), - [anon_sym_not_DASHhas2] = ACTIONS(2597), - [anon_sym_starts_DASHwith2] = ACTIONS(2597), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2597), - [anon_sym_ends_DASHwith2] = ACTIONS(2597), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2597), - [anon_sym_EQ_EQ2] = ACTIONS(2597), - [anon_sym_BANG_EQ2] = ACTIONS(2597), - [anon_sym_LT2] = ACTIONS(2599), - [anon_sym_LT_EQ2] = ACTIONS(2597), - [anon_sym_GT_EQ2] = ACTIONS(2597), - [anon_sym_EQ_TILDE2] = ACTIONS(2597), - [anon_sym_BANG_TILDE2] = ACTIONS(2597), - [anon_sym_like2] = ACTIONS(2597), - [anon_sym_not_DASHlike2] = ACTIONS(2597), - [anon_sym_STAR_STAR2] = ACTIONS(2597), - [anon_sym_PLUS_PLUS2] = ACTIONS(2597), - [anon_sym_SLASH2] = ACTIONS(2599), - [anon_sym_mod2] = ACTIONS(2597), - [anon_sym_SLASH_SLASH2] = ACTIONS(2597), - [anon_sym_PLUS2] = ACTIONS(2599), - [anon_sym_bit_DASHshl2] = ACTIONS(2597), - [anon_sym_bit_DASHshr2] = ACTIONS(2597), - [anon_sym_bit_DASHand2] = ACTIONS(2597), - [anon_sym_bit_DASHxor2] = ACTIONS(2597), - [anon_sym_bit_DASHor2] = ACTIONS(2597), - [anon_sym_err_GT] = ACTIONS(2599), - [anon_sym_out_GT] = ACTIONS(2599), - [anon_sym_e_GT] = ACTIONS(2599), - [anon_sym_o_GT] = ACTIONS(2599), - [anon_sym_err_PLUSout_GT] = ACTIONS(2599), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2599), - [anon_sym_o_PLUSe_GT] = ACTIONS(2599), - [anon_sym_e_PLUSo_GT] = ACTIONS(2599), - [anon_sym_err_GT_GT] = ACTIONS(2597), - [anon_sym_out_GT_GT] = ACTIONS(2597), - [anon_sym_e_GT_GT] = ACTIONS(2597), - [anon_sym_o_GT_GT] = ACTIONS(2597), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2597), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2597), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2597), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2597), + [STATE(895)] = { + [sym_expr_unary] = STATE(940), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(940), + [sym__expr_binary_expression] = STATE(1651), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(940), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(940), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1495), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1414), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(686), + [sym__unquoted_with_expr] = STATE(956), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(895), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [anon_sym_null] = ACTIONS(1925), + [aux_sym_cmd_identifier_token3] = ACTIONS(1927), + [aux_sym_cmd_identifier_token4] = ACTIONS(1927), + [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1931), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), + [anon_sym_DOT_DOT_LT] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1937), + [aux_sym__val_number_decimal_token3] = ACTIONS(1939), + [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1941), + [anon_sym_DQUOTE] = 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(1943), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(935)] = { - [sym_comment] = STATE(935), - [ts_builtin_sym_end] = ACTIONS(1973), - [anon_sym_in] = ACTIONS(1973), - [sym__newline] = ACTIONS(1973), - [anon_sym_SEMI] = ACTIONS(1973), - [anon_sym_PIPE] = ACTIONS(1973), - [anon_sym_err_GT_PIPE] = ACTIONS(1973), - [anon_sym_out_GT_PIPE] = ACTIONS(1973), - [anon_sym_e_GT_PIPE] = ACTIONS(1973), - [anon_sym_o_GT_PIPE] = ACTIONS(1973), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1973), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1973), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1973), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1973), - [anon_sym_GT2] = ACTIONS(1975), - [anon_sym_DASH2] = ACTIONS(1973), - [anon_sym_STAR2] = ACTIONS(1975), - [anon_sym_and2] = ACTIONS(1973), - [anon_sym_xor2] = ACTIONS(1973), - [anon_sym_or2] = ACTIONS(1973), - [anon_sym_not_DASHin2] = ACTIONS(1973), - [anon_sym_has2] = ACTIONS(1973), - [anon_sym_not_DASHhas2] = ACTIONS(1973), - [anon_sym_starts_DASHwith2] = ACTIONS(1973), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1973), - [anon_sym_ends_DASHwith2] = ACTIONS(1973), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1973), - [anon_sym_EQ_EQ2] = ACTIONS(1973), - [anon_sym_BANG_EQ2] = ACTIONS(1973), - [anon_sym_LT2] = ACTIONS(1975), - [anon_sym_LT_EQ2] = ACTIONS(1973), - [anon_sym_GT_EQ2] = ACTIONS(1973), - [anon_sym_EQ_TILDE2] = ACTIONS(1973), - [anon_sym_BANG_TILDE2] = ACTIONS(1973), - [anon_sym_like2] = ACTIONS(1973), - [anon_sym_not_DASHlike2] = ACTIONS(1973), - [anon_sym_STAR_STAR2] = ACTIONS(1973), - [anon_sym_PLUS_PLUS2] = ACTIONS(1973), - [anon_sym_SLASH2] = ACTIONS(1975), - [anon_sym_mod2] = ACTIONS(1973), - [anon_sym_SLASH_SLASH2] = ACTIONS(1973), - [anon_sym_PLUS2] = ACTIONS(1975), - [anon_sym_bit_DASHshl2] = ACTIONS(1973), - [anon_sym_bit_DASHshr2] = ACTIONS(1973), - [anon_sym_bit_DASHand2] = ACTIONS(1973), - [anon_sym_bit_DASHxor2] = ACTIONS(1973), - [anon_sym_bit_DASHor2] = ACTIONS(1973), - [anon_sym_DOT_DOT2] = ACTIONS(2601), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2603), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2603), - [anon_sym_err_GT] = ACTIONS(1975), - [anon_sym_out_GT] = ACTIONS(1975), - [anon_sym_e_GT] = ACTIONS(1975), - [anon_sym_o_GT] = ACTIONS(1975), - [anon_sym_err_PLUSout_GT] = ACTIONS(1975), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1975), - [anon_sym_o_PLUSe_GT] = ACTIONS(1975), - [anon_sym_e_PLUSo_GT] = ACTIONS(1975), - [anon_sym_err_GT_GT] = ACTIONS(1973), - [anon_sym_out_GT_GT] = ACTIONS(1973), - [anon_sym_e_GT_GT] = ACTIONS(1973), - [anon_sym_o_GT_GT] = ACTIONS(1973), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1973), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1973), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1973), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1973), + [STATE(896)] = { + [sym_expr_unary] = STATE(940), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(940), + [sym__expr_binary_expression] = STATE(1652), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(940), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(940), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1495), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1414), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(687), + [sym__unquoted_with_expr] = STATE(924), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(896), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [anon_sym_null] = ACTIONS(1925), + [aux_sym_cmd_identifier_token3] = ACTIONS(1927), + [aux_sym_cmd_identifier_token4] = ACTIONS(1927), + [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1931), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), + [anon_sym_DOT_DOT_LT] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1937), + [aux_sym__val_number_decimal_token3] = ACTIONS(1939), + [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1941), + [anon_sym_DQUOTE] = 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(1943), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(936)] = { - [sym_comment] = STATE(936), - [anon_sym_in] = ACTIONS(2162), - [sym__newline] = ACTIONS(2162), - [anon_sym_SEMI] = ACTIONS(2162), - [anon_sym_PIPE] = ACTIONS(2162), - [anon_sym_err_GT_PIPE] = ACTIONS(2162), - [anon_sym_out_GT_PIPE] = ACTIONS(2162), - [anon_sym_e_GT_PIPE] = ACTIONS(2162), - [anon_sym_o_GT_PIPE] = ACTIONS(2162), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2162), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2162), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2162), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2162), - [anon_sym_RPAREN] = ACTIONS(2162), - [anon_sym_GT2] = ACTIONS(2164), - [anon_sym_DASH2] = ACTIONS(2162), - [anon_sym_LBRACE] = ACTIONS(2162), - [anon_sym_RBRACE] = ACTIONS(2162), - [anon_sym_EQ_GT] = ACTIONS(2162), - [anon_sym_STAR2] = ACTIONS(2164), - [anon_sym_and2] = ACTIONS(2162), - [anon_sym_xor2] = ACTIONS(2162), - [anon_sym_or2] = ACTIONS(2162), - [anon_sym_not_DASHin2] = ACTIONS(2162), - [anon_sym_has2] = ACTIONS(2162), - [anon_sym_not_DASHhas2] = ACTIONS(2162), - [anon_sym_starts_DASHwith2] = ACTIONS(2162), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2162), - [anon_sym_ends_DASHwith2] = ACTIONS(2162), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2162), - [anon_sym_EQ_EQ2] = ACTIONS(2162), - [anon_sym_BANG_EQ2] = ACTIONS(2162), - [anon_sym_LT2] = ACTIONS(2164), - [anon_sym_LT_EQ2] = ACTIONS(2162), - [anon_sym_GT_EQ2] = ACTIONS(2162), - [anon_sym_EQ_TILDE2] = ACTIONS(2162), - [anon_sym_BANG_TILDE2] = ACTIONS(2162), - [anon_sym_like2] = ACTIONS(2162), - [anon_sym_not_DASHlike2] = ACTIONS(2162), - [anon_sym_STAR_STAR2] = ACTIONS(2162), - [anon_sym_PLUS_PLUS2] = ACTIONS(2162), - [anon_sym_SLASH2] = ACTIONS(2164), - [anon_sym_mod2] = ACTIONS(2162), - [anon_sym_SLASH_SLASH2] = ACTIONS(2162), - [anon_sym_PLUS2] = ACTIONS(2164), - [anon_sym_bit_DASHshl2] = ACTIONS(2162), - [anon_sym_bit_DASHshr2] = ACTIONS(2162), - [anon_sym_bit_DASHand2] = ACTIONS(2162), - [anon_sym_bit_DASHxor2] = ACTIONS(2162), - [anon_sym_bit_DASHor2] = ACTIONS(2162), - [anon_sym_err_GT] = ACTIONS(2164), - [anon_sym_out_GT] = ACTIONS(2164), - [anon_sym_e_GT] = ACTIONS(2164), - [anon_sym_o_GT] = ACTIONS(2164), - [anon_sym_err_PLUSout_GT] = ACTIONS(2164), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2164), - [anon_sym_o_PLUSe_GT] = ACTIONS(2164), - [anon_sym_e_PLUSo_GT] = ACTIONS(2164), - [anon_sym_err_GT_GT] = ACTIONS(2162), - [anon_sym_out_GT_GT] = ACTIONS(2162), - [anon_sym_e_GT_GT] = ACTIONS(2162), - [anon_sym_o_GT_GT] = ACTIONS(2162), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2162), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2162), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2162), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2162), + [STATE(897)] = { + [sym_expr_unary] = STATE(940), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(940), + [sym__expr_binary_expression] = STATE(1653), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(940), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(940), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1495), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1414), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(688), + [sym__unquoted_with_expr] = STATE(943), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(897), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [anon_sym_null] = ACTIONS(1925), + [aux_sym_cmd_identifier_token3] = ACTIONS(1927), + [aux_sym_cmd_identifier_token4] = ACTIONS(1927), + [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1931), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), + [anon_sym_DOT_DOT_LT] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1937), + [aux_sym__val_number_decimal_token3] = ACTIONS(1939), + [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1941), + [anon_sym_DQUOTE] = 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(1943), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(937)] = { - [aux_sym__repeat_newline] = STATE(937), - [sym_comment] = STATE(937), - [anon_sym_export] = ACTIONS(1971), - [anon_sym_alias] = ACTIONS(1966), - [anon_sym_let] = ACTIONS(1966), - [anon_sym_mut] = ACTIONS(1966), - [anon_sym_const] = ACTIONS(1966), - [aux_sym_cmd_identifier_token1] = ACTIONS(1971), - [anon_sym_def] = ACTIONS(1966), - [anon_sym_use] = ACTIONS(1966), - [anon_sym_export_DASHenv] = ACTIONS(1966), - [anon_sym_extern] = ACTIONS(1966), - [anon_sym_module] = ACTIONS(1966), - [anon_sym_for] = ACTIONS(1966), - [anon_sym_loop] = ACTIONS(1966), - [anon_sym_while] = ACTIONS(1966), - [anon_sym_if] = ACTIONS(1966), - [anon_sym_else] = ACTIONS(1966), - [anon_sym_try] = ACTIONS(1966), - [anon_sym_catch] = ACTIONS(1966), - [anon_sym_match] = ACTIONS(1966), - [anon_sym_in] = ACTIONS(1971), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_null] = ACTIONS(1966), - [aux_sym_cmd_identifier_token3] = ACTIONS(1966), - [aux_sym_cmd_identifier_token4] = ACTIONS(1966), - [aux_sym_cmd_identifier_token5] = ACTIONS(1966), - [sym__newline] = ACTIONS(2605), - [anon_sym_PIPE] = ACTIONS(1966), - [anon_sym_err_GT_PIPE] = ACTIONS(1966), - [anon_sym_out_GT_PIPE] = ACTIONS(1966), - [anon_sym_e_GT_PIPE] = ACTIONS(1966), - [anon_sym_o_GT_PIPE] = ACTIONS(1966), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1966), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1966), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1966), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1966), - [anon_sym_LBRACK] = ACTIONS(1966), - [anon_sym_LPAREN] = ACTIONS(1966), - [anon_sym_DOLLAR] = ACTIONS(1971), - [anon_sym_DASH2] = ACTIONS(1971), - [anon_sym_LBRACE] = ACTIONS(1966), - [anon_sym_DOT_DOT] = ACTIONS(1971), - [anon_sym_where] = ACTIONS(1966), - [aux_sym_expr_unary_token1] = ACTIONS(1966), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1966), - [anon_sym_DOT_DOT_LT] = ACTIONS(1966), - [aux_sym__val_number_decimal_token1] = ACTIONS(1971), - [aux_sym__val_number_decimal_token2] = ACTIONS(1966), - [aux_sym__val_number_decimal_token3] = ACTIONS(1966), - [aux_sym__val_number_decimal_token4] = ACTIONS(1966), - [aux_sym__val_number_token1] = ACTIONS(1966), - [aux_sym__val_number_token2] = ACTIONS(1966), - [aux_sym__val_number_token3] = ACTIONS(1966), - [anon_sym_0b] = ACTIONS(1971), - [anon_sym_0o] = ACTIONS(1971), - [anon_sym_0x] = ACTIONS(1971), - [sym_val_date] = ACTIONS(1966), - [anon_sym_DQUOTE] = ACTIONS(1966), - [anon_sym_SQUOTE] = ACTIONS(1966), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1966), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1966), - [anon_sym_CARET] = ACTIONS(1966), + [STATE(898)] = { + [sym_expr_unary] = STATE(940), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(940), + [sym__expr_binary_expression] = STATE(1654), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(940), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(940), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1495), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1414), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(689), + [sym__unquoted_with_expr] = STATE(921), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(898), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [anon_sym_null] = ACTIONS(1925), + [aux_sym_cmd_identifier_token3] = ACTIONS(1927), + [aux_sym_cmd_identifier_token4] = ACTIONS(1927), + [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1931), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), + [anon_sym_DOT_DOT_LT] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1937), + [aux_sym__val_number_decimal_token3] = ACTIONS(1939), + [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1941), + [anon_sym_DQUOTE] = 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(1943), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1966), + [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(938)] = { - [sym_comment] = STATE(938), - [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), + [STATE(899)] = { + [sym_expr_unary] = STATE(940), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(940), + [sym__expr_binary_expression] = STATE(1655), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(940), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(940), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1495), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1414), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(690), + [sym__unquoted_with_expr] = STATE(950), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(899), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [anon_sym_null] = ACTIONS(1925), + [aux_sym_cmd_identifier_token3] = ACTIONS(1927), + [aux_sym_cmd_identifier_token4] = ACTIONS(1927), + [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1931), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), + [anon_sym_DOT_DOT_LT] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1937), + [aux_sym__val_number_decimal_token3] = ACTIONS(1939), + [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1941), + [anon_sym_DQUOTE] = 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(1943), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(939)] = { - [sym_comment] = STATE(939), - [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_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(900)] = { + [sym_expr_unary] = STATE(940), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(940), + [sym__expr_binary_expression] = STATE(955), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(940), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(940), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1495), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1414), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(691), + [sym__unquoted_with_expr] = STATE(961), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(900), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [anon_sym_null] = ACTIONS(1925), + [aux_sym_cmd_identifier_token3] = ACTIONS(1927), + [aux_sym_cmd_identifier_token4] = ACTIONS(1927), + [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1931), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), + [anon_sym_DOT_DOT_LT] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1937), + [aux_sym__val_number_decimal_token3] = ACTIONS(1939), + [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1941), + [anon_sym_DQUOTE] = 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(1943), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(940)] = { - [sym_comment] = STATE(940), + [STATE(901)] = { + [sym_expr_unary] = STATE(940), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(940), + [sym__expr_binary_expression] = STATE(1656), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(940), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(940), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1495), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1414), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(693), + [sym__unquoted_with_expr] = STATE(948), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(901), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [anon_sym_null] = ACTIONS(1925), + [aux_sym_cmd_identifier_token3] = ACTIONS(1927), + [aux_sym_cmd_identifier_token4] = ACTIONS(1927), + [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1931), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), + [anon_sym_DOT_DOT_LT] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1937), + [aux_sym__val_number_decimal_token3] = ACTIONS(1939), + [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1941), + [anon_sym_DQUOTE] = 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(1943), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(902)] = { + [sym_expr_unary] = STATE(940), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(940), + [sym__expr_binary_expression] = STATE(1657), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(940), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(940), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1495), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1414), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(694), + [sym__unquoted_with_expr] = STATE(942), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(902), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [anon_sym_null] = ACTIONS(1925), + [aux_sym_cmd_identifier_token3] = ACTIONS(1927), + [aux_sym_cmd_identifier_token4] = ACTIONS(1927), + [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1931), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), + [anon_sym_DOT_DOT_LT] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1937), + [aux_sym__val_number_decimal_token3] = ACTIONS(1939), + [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1941), + [anon_sym_DQUOTE] = 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(1943), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(903)] = { + [sym_expr_unary] = STATE(940), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(940), + [sym__expr_binary_expression] = STATE(1658), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(940), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(940), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1495), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1414), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(695), + [sym__unquoted_with_expr] = STATE(945), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(903), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [anon_sym_null] = ACTIONS(1925), + [aux_sym_cmd_identifier_token3] = ACTIONS(1927), + [aux_sym_cmd_identifier_token4] = ACTIONS(1927), + [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1931), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), + [anon_sym_DOT_DOT_LT] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1937), + [aux_sym__val_number_decimal_token3] = ACTIONS(1939), + [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1941), + [anon_sym_DQUOTE] = 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(1943), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(904)] = { + [sym_expr_unary] = STATE(940), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(940), + [sym__expr_binary_expression] = STATE(1659), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(940), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(940), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(1495), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1414), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(697), + [sym__unquoted_with_expr] = STATE(976), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(904), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [anon_sym_null] = ACTIONS(1925), + [aux_sym_cmd_identifier_token3] = ACTIONS(1927), + [aux_sym_cmd_identifier_token4] = ACTIONS(1927), + [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1931), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), + [anon_sym_DOT_DOT_LT] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1935), + [aux_sym__val_number_decimal_token2] = ACTIONS(1937), + [aux_sym__val_number_decimal_token3] = ACTIONS(1939), + [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1941), + [anon_sym_DQUOTE] = 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(1943), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(905)] = { + [aux_sym__repeat_newline] = STATE(1128), + [sym__expr_parenthesized_immediate] = STATE(5073), + [sym_comment] = STATE(905), + [anon_sym_in] = ACTIONS(2350), + [sym__newline] = ACTIONS(2350), + [anon_sym_SEMI] = ACTIONS(2350), + [anon_sym_PIPE] = ACTIONS(2350), + [anon_sym_err_GT_PIPE] = ACTIONS(2350), + [anon_sym_out_GT_PIPE] = ACTIONS(2350), + [anon_sym_e_GT_PIPE] = ACTIONS(2350), + [anon_sym_o_GT_PIPE] = ACTIONS(2350), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2350), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2350), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2350), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2350), + [anon_sym_RPAREN] = ACTIONS(2350), + [anon_sym_GT2] = ACTIONS(2352), + [anon_sym_DASH2] = ACTIONS(2350), + [anon_sym_LBRACE] = ACTIONS(2350), + [anon_sym_STAR2] = ACTIONS(2352), + [anon_sym_and2] = ACTIONS(2350), + [anon_sym_xor2] = ACTIONS(2350), + [anon_sym_or2] = ACTIONS(2350), + [anon_sym_not_DASHin2] = ACTIONS(2350), + [anon_sym_has2] = ACTIONS(2350), + [anon_sym_not_DASHhas2] = ACTIONS(2350), + [anon_sym_starts_DASHwith2] = ACTIONS(2350), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2350), + [anon_sym_ends_DASHwith2] = ACTIONS(2350), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2350), + [anon_sym_EQ_EQ2] = ACTIONS(2350), + [anon_sym_BANG_EQ2] = ACTIONS(2350), + [anon_sym_LT2] = ACTIONS(2352), + [anon_sym_LT_EQ2] = ACTIONS(2350), + [anon_sym_GT_EQ2] = ACTIONS(2350), + [anon_sym_EQ_TILDE2] = ACTIONS(2350), + [anon_sym_BANG_TILDE2] = ACTIONS(2350), + [anon_sym_like2] = ACTIONS(2350), + [anon_sym_not_DASHlike2] = ACTIONS(2350), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_STAR_STAR2] = ACTIONS(2350), + [anon_sym_PLUS_PLUS2] = ACTIONS(2350), + [anon_sym_SLASH2] = ACTIONS(2352), + [anon_sym_mod2] = ACTIONS(2350), + [anon_sym_SLASH_SLASH2] = ACTIONS(2350), + [anon_sym_PLUS2] = ACTIONS(2352), + [anon_sym_bit_DASHshl2] = ACTIONS(2350), + [anon_sym_bit_DASHshr2] = ACTIONS(2350), + [anon_sym_bit_DASHand2] = ACTIONS(2350), + [anon_sym_bit_DASHxor2] = ACTIONS(2350), + [anon_sym_bit_DASHor2] = ACTIONS(2350), + [anon_sym_err_GT] = ACTIONS(2352), + [anon_sym_out_GT] = ACTIONS(2352), + [anon_sym_e_GT] = ACTIONS(2352), + [anon_sym_o_GT] = ACTIONS(2352), + [anon_sym_err_PLUSout_GT] = ACTIONS(2352), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2352), + [anon_sym_o_PLUSe_GT] = ACTIONS(2352), + [anon_sym_e_PLUSo_GT] = ACTIONS(2352), + [anon_sym_err_GT_GT] = ACTIONS(2350), + [anon_sym_out_GT_GT] = ACTIONS(2350), + [anon_sym_e_GT_GT] = ACTIONS(2350), + [anon_sym_o_GT_GT] = ACTIONS(2350), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2350), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2350), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2350), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2350), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(906)] = { + [aux_sym__repeat_newline] = STATE(1129), + [sym__expr_parenthesized_immediate] = STATE(5073), + [sym_comment] = STATE(906), + [anon_sym_in] = ACTIONS(2350), + [sym__newline] = ACTIONS(2350), + [anon_sym_SEMI] = ACTIONS(2350), + [anon_sym_PIPE] = ACTIONS(2350), + [anon_sym_err_GT_PIPE] = ACTIONS(2350), + [anon_sym_out_GT_PIPE] = ACTIONS(2350), + [anon_sym_e_GT_PIPE] = ACTIONS(2350), + [anon_sym_o_GT_PIPE] = ACTIONS(2350), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2350), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2350), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2350), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2350), + [anon_sym_RPAREN] = ACTIONS(2350), + [anon_sym_GT2] = ACTIONS(2352), + [anon_sym_DASH2] = ACTIONS(2350), + [anon_sym_LBRACE] = ACTIONS(2350), + [anon_sym_STAR2] = ACTIONS(2352), + [anon_sym_and2] = ACTIONS(2350), + [anon_sym_xor2] = ACTIONS(2350), + [anon_sym_or2] = ACTIONS(2350), + [anon_sym_not_DASHin2] = ACTIONS(2350), + [anon_sym_has2] = ACTIONS(2350), + [anon_sym_not_DASHhas2] = ACTIONS(2350), + [anon_sym_starts_DASHwith2] = ACTIONS(2350), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2350), + [anon_sym_ends_DASHwith2] = ACTIONS(2350), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2350), + [anon_sym_EQ_EQ2] = ACTIONS(2350), + [anon_sym_BANG_EQ2] = ACTIONS(2350), + [anon_sym_LT2] = ACTIONS(2352), + [anon_sym_LT_EQ2] = ACTIONS(2350), + [anon_sym_GT_EQ2] = ACTIONS(2350), + [anon_sym_EQ_TILDE2] = ACTIONS(2350), + [anon_sym_BANG_TILDE2] = ACTIONS(2350), + [anon_sym_like2] = ACTIONS(2350), + [anon_sym_not_DASHlike2] = ACTIONS(2350), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_STAR_STAR2] = ACTIONS(2350), + [anon_sym_PLUS_PLUS2] = ACTIONS(2350), + [anon_sym_SLASH2] = ACTIONS(2352), + [anon_sym_mod2] = ACTIONS(2350), + [anon_sym_SLASH_SLASH2] = ACTIONS(2350), + [anon_sym_PLUS2] = ACTIONS(2352), + [anon_sym_bit_DASHshl2] = ACTIONS(2350), + [anon_sym_bit_DASHshr2] = ACTIONS(2350), + [anon_sym_bit_DASHand2] = ACTIONS(2350), + [anon_sym_bit_DASHxor2] = ACTIONS(2350), + [anon_sym_bit_DASHor2] = ACTIONS(2350), + [anon_sym_err_GT] = ACTIONS(2352), + [anon_sym_out_GT] = ACTIONS(2352), + [anon_sym_e_GT] = ACTIONS(2352), + [anon_sym_o_GT] = ACTIONS(2352), + [anon_sym_err_PLUSout_GT] = ACTIONS(2352), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2352), + [anon_sym_o_PLUSe_GT] = ACTIONS(2352), + [anon_sym_e_PLUSo_GT] = ACTIONS(2352), + [anon_sym_err_GT_GT] = ACTIONS(2350), + [anon_sym_out_GT_GT] = ACTIONS(2350), + [anon_sym_e_GT_GT] = ACTIONS(2350), + [anon_sym_o_GT_GT] = ACTIONS(2350), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2350), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2350), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2350), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2350), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(907)] = { + [aux_sym__repeat_newline] = STATE(1132), + [sym__expr_parenthesized_immediate] = STATE(5073), + [sym_comment] = STATE(907), + [anon_sym_in] = ACTIONS(2350), + [sym__newline] = ACTIONS(2350), + [anon_sym_SEMI] = ACTIONS(2350), + [anon_sym_PIPE] = ACTIONS(2350), + [anon_sym_err_GT_PIPE] = ACTIONS(2350), + [anon_sym_out_GT_PIPE] = ACTIONS(2350), + [anon_sym_e_GT_PIPE] = ACTIONS(2350), + [anon_sym_o_GT_PIPE] = ACTIONS(2350), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2350), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2350), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2350), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2350), + [anon_sym_RPAREN] = ACTIONS(2350), + [anon_sym_GT2] = ACTIONS(2352), + [anon_sym_DASH2] = ACTIONS(2350), + [anon_sym_LBRACE] = ACTIONS(2350), + [anon_sym_STAR2] = ACTIONS(2352), + [anon_sym_and2] = ACTIONS(2350), + [anon_sym_xor2] = ACTIONS(2350), + [anon_sym_or2] = ACTIONS(2350), + [anon_sym_not_DASHin2] = ACTIONS(2350), + [anon_sym_has2] = ACTIONS(2350), + [anon_sym_not_DASHhas2] = ACTIONS(2350), + [anon_sym_starts_DASHwith2] = ACTIONS(2350), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2350), + [anon_sym_ends_DASHwith2] = ACTIONS(2350), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2350), + [anon_sym_EQ_EQ2] = ACTIONS(2350), + [anon_sym_BANG_EQ2] = ACTIONS(2350), + [anon_sym_LT2] = ACTIONS(2352), + [anon_sym_LT_EQ2] = ACTIONS(2350), + [anon_sym_GT_EQ2] = ACTIONS(2350), + [anon_sym_EQ_TILDE2] = ACTIONS(2350), + [anon_sym_BANG_TILDE2] = ACTIONS(2350), + [anon_sym_like2] = ACTIONS(2350), + [anon_sym_not_DASHlike2] = ACTIONS(2350), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_STAR_STAR2] = ACTIONS(2350), + [anon_sym_PLUS_PLUS2] = ACTIONS(2350), + [anon_sym_SLASH2] = ACTIONS(2352), + [anon_sym_mod2] = ACTIONS(2350), + [anon_sym_SLASH_SLASH2] = ACTIONS(2350), + [anon_sym_PLUS2] = ACTIONS(2352), + [anon_sym_bit_DASHshl2] = ACTIONS(2350), + [anon_sym_bit_DASHshr2] = ACTIONS(2350), + [anon_sym_bit_DASHand2] = ACTIONS(2350), + [anon_sym_bit_DASHxor2] = ACTIONS(2350), + [anon_sym_bit_DASHor2] = ACTIONS(2350), + [anon_sym_err_GT] = ACTIONS(2352), + [anon_sym_out_GT] = ACTIONS(2352), + [anon_sym_e_GT] = ACTIONS(2352), + [anon_sym_o_GT] = ACTIONS(2352), + [anon_sym_err_PLUSout_GT] = ACTIONS(2352), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2352), + [anon_sym_o_PLUSe_GT] = ACTIONS(2352), + [anon_sym_e_PLUSo_GT] = ACTIONS(2352), + [anon_sym_err_GT_GT] = ACTIONS(2350), + [anon_sym_out_GT_GT] = ACTIONS(2350), + [anon_sym_e_GT_GT] = ACTIONS(2350), + [anon_sym_o_GT_GT] = ACTIONS(2350), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2350), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2350), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2350), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2350), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(908)] = { + [aux_sym__repeat_newline] = STATE(1133), + [sym__expr_parenthesized_immediate] = STATE(5073), + [sym_comment] = STATE(908), + [anon_sym_in] = ACTIONS(2350), + [sym__newline] = ACTIONS(2350), + [anon_sym_SEMI] = ACTIONS(2350), + [anon_sym_PIPE] = ACTIONS(2350), + [anon_sym_err_GT_PIPE] = ACTIONS(2350), + [anon_sym_out_GT_PIPE] = ACTIONS(2350), + [anon_sym_e_GT_PIPE] = ACTIONS(2350), + [anon_sym_o_GT_PIPE] = ACTIONS(2350), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2350), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2350), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2350), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2350), + [anon_sym_RPAREN] = ACTIONS(2350), + [anon_sym_GT2] = ACTIONS(2352), + [anon_sym_DASH2] = ACTIONS(2350), + [anon_sym_LBRACE] = ACTIONS(2350), + [anon_sym_STAR2] = ACTIONS(2352), + [anon_sym_and2] = ACTIONS(2350), + [anon_sym_xor2] = ACTIONS(2350), + [anon_sym_or2] = ACTIONS(2350), + [anon_sym_not_DASHin2] = ACTIONS(2350), + [anon_sym_has2] = ACTIONS(2350), + [anon_sym_not_DASHhas2] = ACTIONS(2350), + [anon_sym_starts_DASHwith2] = ACTIONS(2350), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2350), + [anon_sym_ends_DASHwith2] = ACTIONS(2350), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2350), + [anon_sym_EQ_EQ2] = ACTIONS(2350), + [anon_sym_BANG_EQ2] = ACTIONS(2350), + [anon_sym_LT2] = ACTIONS(2352), + [anon_sym_LT_EQ2] = ACTIONS(2350), + [anon_sym_GT_EQ2] = ACTIONS(2350), + [anon_sym_EQ_TILDE2] = ACTIONS(2350), + [anon_sym_BANG_TILDE2] = ACTIONS(2350), + [anon_sym_like2] = ACTIONS(2350), + [anon_sym_not_DASHlike2] = ACTIONS(2350), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_STAR_STAR2] = ACTIONS(2350), + [anon_sym_PLUS_PLUS2] = ACTIONS(2350), + [anon_sym_SLASH2] = ACTIONS(2352), + [anon_sym_mod2] = ACTIONS(2350), + [anon_sym_SLASH_SLASH2] = ACTIONS(2350), + [anon_sym_PLUS2] = ACTIONS(2352), + [anon_sym_bit_DASHshl2] = ACTIONS(2350), + [anon_sym_bit_DASHshr2] = ACTIONS(2350), + [anon_sym_bit_DASHand2] = ACTIONS(2350), + [anon_sym_bit_DASHxor2] = ACTIONS(2350), + [anon_sym_bit_DASHor2] = ACTIONS(2350), + [anon_sym_err_GT] = ACTIONS(2352), + [anon_sym_out_GT] = ACTIONS(2352), + [anon_sym_e_GT] = ACTIONS(2352), + [anon_sym_o_GT] = ACTIONS(2352), + [anon_sym_err_PLUSout_GT] = ACTIONS(2352), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2352), + [anon_sym_o_PLUSe_GT] = ACTIONS(2352), + [anon_sym_e_PLUSo_GT] = ACTIONS(2352), + [anon_sym_err_GT_GT] = ACTIONS(2350), + [anon_sym_out_GT_GT] = ACTIONS(2350), + [anon_sym_e_GT_GT] = ACTIONS(2350), + [anon_sym_o_GT_GT] = ACTIONS(2350), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2350), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2350), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2350), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2350), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(909)] = { + [aux_sym__repeat_newline] = STATE(1134), + [sym__expr_parenthesized_immediate] = STATE(5073), + [sym_comment] = STATE(909), + [anon_sym_in] = ACTIONS(2350), + [sym__newline] = ACTIONS(2350), + [anon_sym_SEMI] = ACTIONS(2350), + [anon_sym_PIPE] = ACTIONS(2350), + [anon_sym_err_GT_PIPE] = ACTIONS(2350), + [anon_sym_out_GT_PIPE] = ACTIONS(2350), + [anon_sym_e_GT_PIPE] = ACTIONS(2350), + [anon_sym_o_GT_PIPE] = ACTIONS(2350), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2350), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2350), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2350), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2350), + [anon_sym_RPAREN] = ACTIONS(2350), + [anon_sym_GT2] = ACTIONS(2352), + [anon_sym_DASH2] = ACTIONS(2350), + [anon_sym_LBRACE] = ACTIONS(2350), + [anon_sym_STAR2] = ACTIONS(2352), + [anon_sym_and2] = ACTIONS(2350), + [anon_sym_xor2] = ACTIONS(2350), + [anon_sym_or2] = ACTIONS(2350), + [anon_sym_not_DASHin2] = ACTIONS(2350), + [anon_sym_has2] = ACTIONS(2350), + [anon_sym_not_DASHhas2] = ACTIONS(2350), + [anon_sym_starts_DASHwith2] = ACTIONS(2350), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2350), + [anon_sym_ends_DASHwith2] = ACTIONS(2350), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2350), + [anon_sym_EQ_EQ2] = ACTIONS(2350), + [anon_sym_BANG_EQ2] = ACTIONS(2350), + [anon_sym_LT2] = ACTIONS(2352), + [anon_sym_LT_EQ2] = ACTIONS(2350), + [anon_sym_GT_EQ2] = ACTIONS(2350), + [anon_sym_EQ_TILDE2] = ACTIONS(2350), + [anon_sym_BANG_TILDE2] = ACTIONS(2350), + [anon_sym_like2] = ACTIONS(2350), + [anon_sym_not_DASHlike2] = ACTIONS(2350), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_STAR_STAR2] = ACTIONS(2350), + [anon_sym_PLUS_PLUS2] = ACTIONS(2350), + [anon_sym_SLASH2] = ACTIONS(2352), + [anon_sym_mod2] = ACTIONS(2350), + [anon_sym_SLASH_SLASH2] = ACTIONS(2350), + [anon_sym_PLUS2] = ACTIONS(2352), + [anon_sym_bit_DASHshl2] = ACTIONS(2350), + [anon_sym_bit_DASHshr2] = ACTIONS(2350), + [anon_sym_bit_DASHand2] = ACTIONS(2350), + [anon_sym_bit_DASHxor2] = ACTIONS(2350), + [anon_sym_bit_DASHor2] = ACTIONS(2350), + [anon_sym_err_GT] = ACTIONS(2352), + [anon_sym_out_GT] = ACTIONS(2352), + [anon_sym_e_GT] = ACTIONS(2352), + [anon_sym_o_GT] = ACTIONS(2352), + [anon_sym_err_PLUSout_GT] = ACTIONS(2352), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2352), + [anon_sym_o_PLUSe_GT] = ACTIONS(2352), + [anon_sym_e_PLUSo_GT] = ACTIONS(2352), + [anon_sym_err_GT_GT] = ACTIONS(2350), + [anon_sym_out_GT_GT] = ACTIONS(2350), + [anon_sym_e_GT_GT] = ACTIONS(2350), + [anon_sym_o_GT_GT] = ACTIONS(2350), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2350), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2350), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2350), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2350), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(910)] = { + [aux_sym__repeat_newline] = STATE(1135), + [sym__expr_parenthesized_immediate] = STATE(5073), + [sym_comment] = STATE(910), + [anon_sym_in] = ACTIONS(2350), + [sym__newline] = ACTIONS(2350), + [anon_sym_SEMI] = ACTIONS(2350), + [anon_sym_PIPE] = ACTIONS(2350), + [anon_sym_err_GT_PIPE] = ACTIONS(2350), + [anon_sym_out_GT_PIPE] = ACTIONS(2350), + [anon_sym_e_GT_PIPE] = ACTIONS(2350), + [anon_sym_o_GT_PIPE] = ACTIONS(2350), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2350), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2350), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2350), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2350), + [anon_sym_RPAREN] = ACTIONS(2350), + [anon_sym_GT2] = ACTIONS(2352), + [anon_sym_DASH2] = ACTIONS(2350), + [anon_sym_LBRACE] = ACTIONS(2350), + [anon_sym_STAR2] = ACTIONS(2352), + [anon_sym_and2] = ACTIONS(2350), + [anon_sym_xor2] = ACTIONS(2350), + [anon_sym_or2] = ACTIONS(2350), + [anon_sym_not_DASHin2] = ACTIONS(2350), + [anon_sym_has2] = ACTIONS(2350), + [anon_sym_not_DASHhas2] = ACTIONS(2350), + [anon_sym_starts_DASHwith2] = ACTIONS(2350), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2350), + [anon_sym_ends_DASHwith2] = ACTIONS(2350), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2350), + [anon_sym_EQ_EQ2] = ACTIONS(2350), + [anon_sym_BANG_EQ2] = ACTIONS(2350), + [anon_sym_LT2] = ACTIONS(2352), + [anon_sym_LT_EQ2] = ACTIONS(2350), + [anon_sym_GT_EQ2] = ACTIONS(2350), + [anon_sym_EQ_TILDE2] = ACTIONS(2350), + [anon_sym_BANG_TILDE2] = ACTIONS(2350), + [anon_sym_like2] = ACTIONS(2350), + [anon_sym_not_DASHlike2] = ACTIONS(2350), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_STAR_STAR2] = ACTIONS(2350), + [anon_sym_PLUS_PLUS2] = ACTIONS(2350), + [anon_sym_SLASH2] = ACTIONS(2352), + [anon_sym_mod2] = ACTIONS(2350), + [anon_sym_SLASH_SLASH2] = ACTIONS(2350), + [anon_sym_PLUS2] = ACTIONS(2352), + [anon_sym_bit_DASHshl2] = ACTIONS(2350), + [anon_sym_bit_DASHshr2] = ACTIONS(2350), + [anon_sym_bit_DASHand2] = ACTIONS(2350), + [anon_sym_bit_DASHxor2] = ACTIONS(2350), + [anon_sym_bit_DASHor2] = ACTIONS(2350), + [anon_sym_err_GT] = ACTIONS(2352), + [anon_sym_out_GT] = ACTIONS(2352), + [anon_sym_e_GT] = ACTIONS(2352), + [anon_sym_o_GT] = ACTIONS(2352), + [anon_sym_err_PLUSout_GT] = ACTIONS(2352), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2352), + [anon_sym_o_PLUSe_GT] = ACTIONS(2352), + [anon_sym_e_PLUSo_GT] = ACTIONS(2352), + [anon_sym_err_GT_GT] = ACTIONS(2350), + [anon_sym_out_GT_GT] = ACTIONS(2350), + [anon_sym_e_GT_GT] = ACTIONS(2350), + [anon_sym_o_GT_GT] = ACTIONS(2350), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2350), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2350), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2350), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2350), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(911)] = { + [sym_expr_unary] = STATE(940), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(940), + [sym__expr_binary_expression] = STATE(1232), + [sym_expr_parenthesized] = STATE(706), + [sym_val_range] = STATE(940), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(940), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(469), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(694), + [sym__unquoted_with_expr] = STATE(942), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(911), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1947), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1951), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), + [anon_sym_DOT_DOT_LT] = ACTIONS(1953), + [aux_sym__val_number_decimal_token1] = ACTIONS(1955), + [aux_sym__val_number_decimal_token2] = ACTIONS(1957), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1961), + [anon_sym_DQUOTE] = 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(1943), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(912)] = { + [sym_comment] = STATE(912), + [ts_builtin_sym_end] = ACTIONS(1699), + [anon_sym_in] = ACTIONS(1699), + [sym__newline] = ACTIONS(1699), + [anon_sym_SEMI] = ACTIONS(1699), + [anon_sym_PIPE] = ACTIONS(1699), + [anon_sym_err_GT_PIPE] = ACTIONS(1699), + [anon_sym_out_GT_PIPE] = ACTIONS(1699), + [anon_sym_e_GT_PIPE] = ACTIONS(1699), + [anon_sym_o_GT_PIPE] = ACTIONS(1699), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1699), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1699), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1699), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1699), + [anon_sym_GT2] = ACTIONS(1615), + [anon_sym_DASH2] = ACTIONS(1699), + [anon_sym_STAR2] = ACTIONS(1615), + [anon_sym_and2] = ACTIONS(1699), + [anon_sym_xor2] = ACTIONS(1699), + [anon_sym_or2] = ACTIONS(1699), + [anon_sym_not_DASHin2] = ACTIONS(1699), + [anon_sym_has2] = ACTIONS(1699), + [anon_sym_not_DASHhas2] = ACTIONS(1699), + [anon_sym_starts_DASHwith2] = ACTIONS(1699), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1699), + [anon_sym_ends_DASHwith2] = ACTIONS(1699), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1699), + [anon_sym_EQ_EQ2] = ACTIONS(1699), + [anon_sym_BANG_EQ2] = ACTIONS(1699), + [anon_sym_LT2] = ACTIONS(1615), + [anon_sym_LT_EQ2] = ACTIONS(1699), + [anon_sym_GT_EQ2] = ACTIONS(1699), + [anon_sym_EQ_TILDE2] = ACTIONS(1699), + [anon_sym_BANG_TILDE2] = ACTIONS(1699), + [anon_sym_like2] = ACTIONS(1699), + [anon_sym_not_DASHlike2] = ACTIONS(1699), + [anon_sym_STAR_STAR2] = ACTIONS(1699), + [anon_sym_PLUS_PLUS2] = ACTIONS(1699), + [anon_sym_SLASH2] = ACTIONS(1615), + [anon_sym_mod2] = ACTIONS(1699), + [anon_sym_SLASH_SLASH2] = ACTIONS(1699), + [anon_sym_PLUS2] = ACTIONS(1615), + [anon_sym_bit_DASHshl2] = ACTIONS(1699), + [anon_sym_bit_DASHshr2] = ACTIONS(1699), + [anon_sym_bit_DASHand2] = ACTIONS(1699), + [anon_sym_bit_DASHxor2] = ACTIONS(1699), + [anon_sym_bit_DASHor2] = ACTIONS(1699), + [anon_sym_DOT_DOT2] = ACTIONS(1750), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1752), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1752), + [anon_sym_err_GT] = ACTIONS(1615), + [anon_sym_out_GT] = ACTIONS(1615), + [anon_sym_e_GT] = ACTIONS(1615), + [anon_sym_o_GT] = ACTIONS(1615), + [anon_sym_err_PLUSout_GT] = ACTIONS(1615), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1615), + [anon_sym_o_PLUSe_GT] = ACTIONS(1615), + [anon_sym_e_PLUSo_GT] = ACTIONS(1615), + [anon_sym_err_GT_GT] = ACTIONS(1699), + [anon_sym_out_GT_GT] = ACTIONS(1699), + [anon_sym_e_GT_GT] = ACTIONS(1699), + [anon_sym_o_GT_GT] = ACTIONS(1699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1699), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(913)] = { + [sym_comment] = STATE(913), + [anon_sym_in] = ACTIONS(2566), + [sym__newline] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym_PIPE] = ACTIONS(2566), + [anon_sym_err_GT_PIPE] = ACTIONS(2566), + [anon_sym_out_GT_PIPE] = ACTIONS(2566), + [anon_sym_e_GT_PIPE] = ACTIONS(2566), + [anon_sym_o_GT_PIPE] = ACTIONS(2566), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2566), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2566), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2566), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2566), + [anon_sym_RPAREN] = ACTIONS(2566), + [anon_sym_GT2] = ACTIONS(2568), + [anon_sym_DASH2] = ACTIONS(2566), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_RBRACE] = ACTIONS(2566), + [anon_sym_EQ_GT] = ACTIONS(2566), + [anon_sym_STAR2] = ACTIONS(2568), + [anon_sym_and2] = ACTIONS(2566), + [anon_sym_xor2] = ACTIONS(2566), + [anon_sym_or2] = ACTIONS(2566), + [anon_sym_not_DASHin2] = ACTIONS(2566), + [anon_sym_has2] = ACTIONS(2566), + [anon_sym_not_DASHhas2] = ACTIONS(2566), + [anon_sym_starts_DASHwith2] = ACTIONS(2566), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2566), + [anon_sym_ends_DASHwith2] = ACTIONS(2566), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2566), + [anon_sym_EQ_EQ2] = ACTIONS(2566), + [anon_sym_BANG_EQ2] = ACTIONS(2566), + [anon_sym_LT2] = ACTIONS(2568), + [anon_sym_LT_EQ2] = ACTIONS(2566), + [anon_sym_GT_EQ2] = ACTIONS(2566), + [anon_sym_EQ_TILDE2] = ACTIONS(2566), + [anon_sym_BANG_TILDE2] = ACTIONS(2566), + [anon_sym_like2] = ACTIONS(2566), + [anon_sym_not_DASHlike2] = ACTIONS(2566), + [anon_sym_STAR_STAR2] = ACTIONS(2566), + [anon_sym_PLUS_PLUS2] = ACTIONS(2566), + [anon_sym_SLASH2] = ACTIONS(2568), + [anon_sym_mod2] = ACTIONS(2566), + [anon_sym_SLASH_SLASH2] = ACTIONS(2566), + [anon_sym_PLUS2] = ACTIONS(2568), + [anon_sym_bit_DASHshl2] = ACTIONS(2566), + [anon_sym_bit_DASHshr2] = ACTIONS(2566), + [anon_sym_bit_DASHand2] = ACTIONS(2566), + [anon_sym_bit_DASHxor2] = ACTIONS(2566), + [anon_sym_bit_DASHor2] = ACTIONS(2566), + [anon_sym_err_GT] = ACTIONS(2568), + [anon_sym_out_GT] = ACTIONS(2568), + [anon_sym_e_GT] = ACTIONS(2568), + [anon_sym_o_GT] = ACTIONS(2568), + [anon_sym_err_PLUSout_GT] = ACTIONS(2568), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2568), + [anon_sym_o_PLUSe_GT] = ACTIONS(2568), + [anon_sym_e_PLUSo_GT] = ACTIONS(2568), + [anon_sym_err_GT_GT] = ACTIONS(2566), + [anon_sym_out_GT_GT] = ACTIONS(2566), + [anon_sym_e_GT_GT] = ACTIONS(2566), + [anon_sym_o_GT_GT] = ACTIONS(2566), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2566), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2566), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2566), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2566), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(914)] = { + [sym_comment] = STATE(914), + [anon_sym_in] = ACTIONS(1887), + [sym__newline] = ACTIONS(1887), + [anon_sym_SEMI] = ACTIONS(1887), + [anon_sym_PIPE] = ACTIONS(1887), + [anon_sym_err_GT_PIPE] = ACTIONS(1887), + [anon_sym_out_GT_PIPE] = ACTIONS(1887), + [anon_sym_e_GT_PIPE] = ACTIONS(1887), + [anon_sym_o_GT_PIPE] = ACTIONS(1887), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1887), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1887), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1887), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1887), + [anon_sym_RPAREN] = ACTIONS(1887), + [anon_sym_GT2] = ACTIONS(1889), + [anon_sym_DASH2] = ACTIONS(1887), + [anon_sym_LBRACE] = ACTIONS(1887), + [anon_sym_RBRACE] = ACTIONS(1887), + [anon_sym_EQ_GT] = ACTIONS(1887), + [anon_sym_STAR2] = ACTIONS(1889), + [anon_sym_and2] = ACTIONS(1887), + [anon_sym_xor2] = ACTIONS(1887), + [anon_sym_or2] = ACTIONS(1887), + [anon_sym_not_DASHin2] = ACTIONS(1887), + [anon_sym_has2] = ACTIONS(1887), + [anon_sym_not_DASHhas2] = ACTIONS(1887), + [anon_sym_starts_DASHwith2] = ACTIONS(1887), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1887), + [anon_sym_ends_DASHwith2] = ACTIONS(1887), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1887), + [anon_sym_EQ_EQ2] = ACTIONS(1887), + [anon_sym_BANG_EQ2] = ACTIONS(1887), + [anon_sym_LT2] = ACTIONS(1889), + [anon_sym_LT_EQ2] = ACTIONS(1887), + [anon_sym_GT_EQ2] = ACTIONS(1887), + [anon_sym_EQ_TILDE2] = ACTIONS(1887), + [anon_sym_BANG_TILDE2] = ACTIONS(1887), + [anon_sym_like2] = ACTIONS(1887), + [anon_sym_not_DASHlike2] = ACTIONS(1887), + [anon_sym_STAR_STAR2] = ACTIONS(1887), + [anon_sym_PLUS_PLUS2] = ACTIONS(1887), + [anon_sym_SLASH2] = ACTIONS(1889), + [anon_sym_mod2] = ACTIONS(1887), + [anon_sym_SLASH_SLASH2] = ACTIONS(1887), + [anon_sym_PLUS2] = ACTIONS(1889), + [anon_sym_bit_DASHshl2] = ACTIONS(1887), + [anon_sym_bit_DASHshr2] = ACTIONS(1887), + [anon_sym_bit_DASHand2] = ACTIONS(1887), + [anon_sym_bit_DASHxor2] = ACTIONS(1887), + [anon_sym_bit_DASHor2] = ACTIONS(1887), + [anon_sym_err_GT] = ACTIONS(1889), + [anon_sym_out_GT] = ACTIONS(1889), + [anon_sym_e_GT] = ACTIONS(1889), + [anon_sym_o_GT] = ACTIONS(1889), + [anon_sym_err_PLUSout_GT] = ACTIONS(1889), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1889), + [anon_sym_o_PLUSe_GT] = ACTIONS(1889), + [anon_sym_e_PLUSo_GT] = ACTIONS(1889), + [anon_sym_err_GT_GT] = ACTIONS(1887), + [anon_sym_out_GT_GT] = ACTIONS(1887), + [anon_sym_e_GT_GT] = ACTIONS(1887), + [anon_sym_o_GT_GT] = ACTIONS(1887), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1887), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1887), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1887), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1887), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(915)] = { + [sym_comment] = STATE(915), + [ts_builtin_sym_end] = ACTIONS(1903), + [anon_sym_in] = ACTIONS(1903), + [sym__newline] = ACTIONS(1903), + [anon_sym_SEMI] = ACTIONS(1903), + [anon_sym_PIPE] = ACTIONS(1903), + [anon_sym_err_GT_PIPE] = ACTIONS(1903), + [anon_sym_out_GT_PIPE] = ACTIONS(1903), + [anon_sym_e_GT_PIPE] = ACTIONS(1903), + [anon_sym_o_GT_PIPE] = ACTIONS(1903), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1903), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1903), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1903), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1903), + [anon_sym_GT2] = ACTIONS(1905), + [anon_sym_DASH2] = ACTIONS(1903), + [anon_sym_STAR2] = ACTIONS(1905), + [anon_sym_and2] = ACTIONS(1903), + [anon_sym_xor2] = ACTIONS(1903), + [anon_sym_or2] = ACTIONS(1903), + [anon_sym_not_DASHin2] = ACTIONS(1903), + [anon_sym_has2] = ACTIONS(1903), + [anon_sym_not_DASHhas2] = ACTIONS(1903), + [anon_sym_starts_DASHwith2] = ACTIONS(1903), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1903), + [anon_sym_ends_DASHwith2] = ACTIONS(1903), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1903), + [anon_sym_EQ_EQ2] = ACTIONS(1903), + [anon_sym_BANG_EQ2] = ACTIONS(1903), + [anon_sym_LT2] = ACTIONS(1905), + [anon_sym_LT_EQ2] = ACTIONS(1903), + [anon_sym_GT_EQ2] = ACTIONS(1903), + [anon_sym_EQ_TILDE2] = ACTIONS(1903), + [anon_sym_BANG_TILDE2] = ACTIONS(1903), + [anon_sym_like2] = ACTIONS(1903), + [anon_sym_not_DASHlike2] = ACTIONS(1903), + [anon_sym_STAR_STAR2] = ACTIONS(1903), + [anon_sym_PLUS_PLUS2] = ACTIONS(1903), + [anon_sym_SLASH2] = ACTIONS(1905), + [anon_sym_mod2] = ACTIONS(1903), + [anon_sym_SLASH_SLASH2] = ACTIONS(1903), + [anon_sym_PLUS2] = ACTIONS(1905), + [anon_sym_bit_DASHshl2] = ACTIONS(1903), + [anon_sym_bit_DASHshr2] = ACTIONS(1903), + [anon_sym_bit_DASHand2] = ACTIONS(1903), + [anon_sym_bit_DASHxor2] = ACTIONS(1903), + [anon_sym_bit_DASHor2] = ACTIONS(1903), + [anon_sym_DOT_DOT2] = ACTIONS(1905), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1903), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1903), + [anon_sym_err_GT] = ACTIONS(1905), + [anon_sym_out_GT] = ACTIONS(1905), + [anon_sym_e_GT] = ACTIONS(1905), + [anon_sym_o_GT] = ACTIONS(1905), + [anon_sym_err_PLUSout_GT] = ACTIONS(1905), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1905), + [anon_sym_o_PLUSe_GT] = ACTIONS(1905), + [anon_sym_e_PLUSo_GT] = ACTIONS(1905), + [anon_sym_err_GT_GT] = ACTIONS(1903), + [anon_sym_out_GT_GT] = ACTIONS(1903), + [anon_sym_e_GT_GT] = ACTIONS(1903), + [anon_sym_o_GT_GT] = ACTIONS(1903), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1903), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1903), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1903), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1903), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(916)] = { + [sym_comment] = STATE(916), + [ts_builtin_sym_end] = ACTIONS(1846), + [anon_sym_in] = ACTIONS(1846), + [sym__newline] = ACTIONS(1846), + [anon_sym_SEMI] = ACTIONS(1846), + [anon_sym_PIPE] = ACTIONS(1846), + [anon_sym_err_GT_PIPE] = ACTIONS(1846), + [anon_sym_out_GT_PIPE] = ACTIONS(1846), + [anon_sym_e_GT_PIPE] = ACTIONS(1846), + [anon_sym_o_GT_PIPE] = ACTIONS(1846), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1846), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1846), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1846), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1846), + [anon_sym_GT2] = ACTIONS(1848), + [anon_sym_DASH2] = ACTIONS(1846), + [anon_sym_STAR2] = ACTIONS(1848), + [anon_sym_and2] = ACTIONS(1846), + [anon_sym_xor2] = ACTIONS(1846), + [anon_sym_or2] = ACTIONS(1846), + [anon_sym_not_DASHin2] = ACTIONS(1846), + [anon_sym_has2] = ACTIONS(1846), + [anon_sym_not_DASHhas2] = ACTIONS(1846), + [anon_sym_starts_DASHwith2] = ACTIONS(1846), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1846), + [anon_sym_ends_DASHwith2] = ACTIONS(1846), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1846), + [anon_sym_EQ_EQ2] = ACTIONS(1846), + [anon_sym_BANG_EQ2] = ACTIONS(1846), + [anon_sym_LT2] = ACTIONS(1848), + [anon_sym_LT_EQ2] = ACTIONS(1846), + [anon_sym_GT_EQ2] = ACTIONS(1846), + [anon_sym_EQ_TILDE2] = ACTIONS(1846), + [anon_sym_BANG_TILDE2] = ACTIONS(1846), + [anon_sym_like2] = ACTIONS(1846), + [anon_sym_not_DASHlike2] = ACTIONS(1846), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_STAR_STAR2] = ACTIONS(1846), + [anon_sym_PLUS_PLUS2] = ACTIONS(1846), + [anon_sym_SLASH2] = ACTIONS(1848), + [anon_sym_mod2] = ACTIONS(1846), + [anon_sym_SLASH_SLASH2] = ACTIONS(1846), + [anon_sym_PLUS2] = ACTIONS(1848), + [anon_sym_bit_DASHshl2] = ACTIONS(1846), + [anon_sym_bit_DASHshr2] = ACTIONS(1846), + [anon_sym_bit_DASHand2] = ACTIONS(1846), + [anon_sym_bit_DASHxor2] = ACTIONS(1846), + [anon_sym_bit_DASHor2] = ACTIONS(1846), + [aux_sym__immediate_decimal_token5] = ACTIONS(2570), + [anon_sym_err_GT] = ACTIONS(1848), + [anon_sym_out_GT] = ACTIONS(1848), + [anon_sym_e_GT] = ACTIONS(1848), + [anon_sym_o_GT] = ACTIONS(1848), + [anon_sym_err_PLUSout_GT] = ACTIONS(1848), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1848), + [anon_sym_o_PLUSe_GT] = ACTIONS(1848), + [anon_sym_e_PLUSo_GT] = ACTIONS(1848), + [anon_sym_err_GT_GT] = ACTIONS(1846), + [anon_sym_out_GT_GT] = ACTIONS(1846), + [anon_sym_e_GT_GT] = ACTIONS(1846), + [anon_sym_o_GT_GT] = ACTIONS(1846), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1846), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1846), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1846), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1846), + [sym__unquoted_pattern] = ACTIONS(1848), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(917)] = { + [sym_comment] = STATE(917), + [anon_sym_in] = ACTIONS(2572), + [sym__newline] = ACTIONS(2572), + [anon_sym_SEMI] = ACTIONS(2572), + [anon_sym_PIPE] = ACTIONS(2572), + [anon_sym_err_GT_PIPE] = ACTIONS(2572), + [anon_sym_out_GT_PIPE] = ACTIONS(2572), + [anon_sym_e_GT_PIPE] = ACTIONS(2572), + [anon_sym_o_GT_PIPE] = ACTIONS(2572), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2572), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2572), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2572), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2572), + [anon_sym_RPAREN] = ACTIONS(2572), + [anon_sym_GT2] = ACTIONS(2574), + [anon_sym_DASH2] = ACTIONS(2572), + [anon_sym_RBRACE] = ACTIONS(2572), + [anon_sym_STAR2] = ACTIONS(2574), + [anon_sym_and2] = ACTIONS(2572), + [anon_sym_xor2] = ACTIONS(2572), + [anon_sym_or2] = ACTIONS(2572), + [anon_sym_not_DASHin2] = ACTIONS(2572), + [anon_sym_has2] = ACTIONS(2572), + [anon_sym_not_DASHhas2] = ACTIONS(2572), + [anon_sym_starts_DASHwith2] = ACTIONS(2572), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2572), + [anon_sym_ends_DASHwith2] = ACTIONS(2572), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2572), + [anon_sym_EQ_EQ2] = ACTIONS(2572), + [anon_sym_BANG_EQ2] = ACTIONS(2572), + [anon_sym_LT2] = ACTIONS(2574), + [anon_sym_LT_EQ2] = ACTIONS(2572), + [anon_sym_GT_EQ2] = ACTIONS(2572), + [anon_sym_EQ_TILDE2] = ACTIONS(2572), + [anon_sym_BANG_TILDE2] = ACTIONS(2572), + [anon_sym_like2] = ACTIONS(2572), + [anon_sym_not_DASHlike2] = ACTIONS(2572), + [anon_sym_LPAREN2] = ACTIONS(2576), + [anon_sym_STAR_STAR2] = ACTIONS(2572), + [anon_sym_PLUS_PLUS2] = ACTIONS(2572), + [anon_sym_SLASH2] = ACTIONS(2574), + [anon_sym_mod2] = ACTIONS(2572), + [anon_sym_SLASH_SLASH2] = ACTIONS(2572), + [anon_sym_PLUS2] = ACTIONS(2574), + [anon_sym_bit_DASHshl2] = ACTIONS(2572), + [anon_sym_bit_DASHshr2] = ACTIONS(2572), + [anon_sym_bit_DASHand2] = ACTIONS(2572), + [anon_sym_bit_DASHxor2] = ACTIONS(2572), + [anon_sym_bit_DASHor2] = ACTIONS(2572), + [anon_sym_err_GT] = ACTIONS(2574), + [anon_sym_out_GT] = ACTIONS(2574), + [anon_sym_e_GT] = ACTIONS(2574), + [anon_sym_o_GT] = ACTIONS(2574), + [anon_sym_err_PLUSout_GT] = ACTIONS(2574), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2574), + [anon_sym_o_PLUSe_GT] = ACTIONS(2574), + [anon_sym_e_PLUSo_GT] = ACTIONS(2574), + [anon_sym_err_GT_GT] = ACTIONS(2572), + [anon_sym_out_GT_GT] = ACTIONS(2572), + [anon_sym_e_GT_GT] = ACTIONS(2572), + [anon_sym_o_GT_GT] = ACTIONS(2572), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2572), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2572), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2572), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2572), + [sym__unquoted_pattern] = ACTIONS(1695), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(918)] = { + [sym_comment] = STATE(918), + [anon_sym_in] = ACTIONS(2578), + [sym__newline] = ACTIONS(2578), + [anon_sym_SEMI] = ACTIONS(2578), + [anon_sym_PIPE] = ACTIONS(2578), + [anon_sym_err_GT_PIPE] = ACTIONS(2578), + [anon_sym_out_GT_PIPE] = ACTIONS(2578), + [anon_sym_e_GT_PIPE] = ACTIONS(2578), + [anon_sym_o_GT_PIPE] = ACTIONS(2578), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2578), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2578), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2578), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2578), + [anon_sym_RPAREN] = ACTIONS(2578), + [anon_sym_GT2] = ACTIONS(2580), + [anon_sym_DASH2] = ACTIONS(2578), + [anon_sym_LBRACE] = ACTIONS(2578), + [anon_sym_RBRACE] = ACTIONS(2578), + [anon_sym_EQ_GT] = ACTIONS(2578), + [anon_sym_STAR2] = ACTIONS(2580), + [anon_sym_and2] = ACTIONS(2578), + [anon_sym_xor2] = ACTIONS(2578), + [anon_sym_or2] = ACTIONS(2578), + [anon_sym_not_DASHin2] = ACTIONS(2578), + [anon_sym_has2] = ACTIONS(2578), + [anon_sym_not_DASHhas2] = ACTIONS(2578), + [anon_sym_starts_DASHwith2] = ACTIONS(2578), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2578), + [anon_sym_ends_DASHwith2] = ACTIONS(2578), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2578), + [anon_sym_EQ_EQ2] = ACTIONS(2578), + [anon_sym_BANG_EQ2] = ACTIONS(2578), + [anon_sym_LT2] = ACTIONS(2580), + [anon_sym_LT_EQ2] = ACTIONS(2578), + [anon_sym_GT_EQ2] = ACTIONS(2578), + [anon_sym_EQ_TILDE2] = ACTIONS(2578), + [anon_sym_BANG_TILDE2] = ACTIONS(2578), + [anon_sym_like2] = ACTIONS(2578), + [anon_sym_not_DASHlike2] = ACTIONS(2578), + [anon_sym_STAR_STAR2] = ACTIONS(2578), + [anon_sym_PLUS_PLUS2] = ACTIONS(2578), + [anon_sym_SLASH2] = ACTIONS(2580), + [anon_sym_mod2] = ACTIONS(2578), + [anon_sym_SLASH_SLASH2] = ACTIONS(2578), + [anon_sym_PLUS2] = ACTIONS(2580), + [anon_sym_bit_DASHshl2] = ACTIONS(2578), + [anon_sym_bit_DASHshr2] = ACTIONS(2578), + [anon_sym_bit_DASHand2] = ACTIONS(2578), + [anon_sym_bit_DASHxor2] = ACTIONS(2578), + [anon_sym_bit_DASHor2] = ACTIONS(2578), + [anon_sym_err_GT] = ACTIONS(2580), + [anon_sym_out_GT] = ACTIONS(2580), + [anon_sym_e_GT] = ACTIONS(2580), + [anon_sym_o_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT] = ACTIONS(2580), + [anon_sym_err_GT_GT] = ACTIONS(2578), + [anon_sym_out_GT_GT] = ACTIONS(2578), + [anon_sym_e_GT_GT] = ACTIONS(2578), + [anon_sym_o_GT_GT] = ACTIONS(2578), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2578), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2578), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2578), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2578), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(919)] = { + [sym_comment] = STATE(919), + [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), + [anon_sym_GT2] = ACTIONS(2122), + [anon_sym_DASH2] = 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_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_SLASH2] = ACTIONS(2122), + [anon_sym_mod2] = ACTIONS(2120), + [anon_sym_SLASH_SLASH2] = ACTIONS(2120), + [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(2582), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2584), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2584), + [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(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(920)] = { + [sym_comment] = STATE(920), + [ts_builtin_sym_end] = ACTIONS(1982), + [anon_sym_in] = ACTIONS(1982), + [sym__newline] = ACTIONS(1982), + [anon_sym_SEMI] = ACTIONS(1982), + [anon_sym_PIPE] = ACTIONS(1982), + [anon_sym_err_GT_PIPE] = ACTIONS(1982), + [anon_sym_out_GT_PIPE] = ACTIONS(1982), + [anon_sym_e_GT_PIPE] = ACTIONS(1982), + [anon_sym_o_GT_PIPE] = ACTIONS(1982), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1982), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1982), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1982), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1982), + [anon_sym_GT2] = ACTIONS(1984), + [anon_sym_DASH2] = ACTIONS(1982), + [anon_sym_STAR2] = ACTIONS(1984), + [anon_sym_and2] = ACTIONS(1982), + [anon_sym_xor2] = ACTIONS(1982), + [anon_sym_or2] = ACTIONS(1982), + [anon_sym_not_DASHin2] = ACTIONS(1982), + [anon_sym_has2] = ACTIONS(1982), + [anon_sym_not_DASHhas2] = ACTIONS(1982), + [anon_sym_starts_DASHwith2] = ACTIONS(1982), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1982), + [anon_sym_ends_DASHwith2] = ACTIONS(1982), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1982), + [anon_sym_EQ_EQ2] = ACTIONS(1982), + [anon_sym_BANG_EQ2] = ACTIONS(1982), + [anon_sym_LT2] = ACTIONS(1984), + [anon_sym_LT_EQ2] = ACTIONS(1982), + [anon_sym_GT_EQ2] = ACTIONS(1982), + [anon_sym_EQ_TILDE2] = ACTIONS(1982), + [anon_sym_BANG_TILDE2] = ACTIONS(1982), + [anon_sym_like2] = ACTIONS(1982), + [anon_sym_not_DASHlike2] = ACTIONS(1982), + [anon_sym_STAR_STAR2] = ACTIONS(1982), + [anon_sym_PLUS_PLUS2] = ACTIONS(1982), + [anon_sym_SLASH2] = ACTIONS(1984), + [anon_sym_mod2] = ACTIONS(1982), + [anon_sym_SLASH_SLASH2] = ACTIONS(1982), + [anon_sym_PLUS2] = ACTIONS(1984), + [anon_sym_bit_DASHshl2] = ACTIONS(1982), + [anon_sym_bit_DASHshr2] = ACTIONS(1982), + [anon_sym_bit_DASHand2] = ACTIONS(1982), + [anon_sym_bit_DASHxor2] = ACTIONS(1982), + [anon_sym_bit_DASHor2] = ACTIONS(1982), + [anon_sym_DOT_DOT2] = ACTIONS(2586), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2588), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2588), + [anon_sym_err_GT] = ACTIONS(1984), + [anon_sym_out_GT] = ACTIONS(1984), + [anon_sym_e_GT] = ACTIONS(1984), + [anon_sym_o_GT] = ACTIONS(1984), + [anon_sym_err_PLUSout_GT] = ACTIONS(1984), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1984), + [anon_sym_o_PLUSe_GT] = ACTIONS(1984), + [anon_sym_e_PLUSo_GT] = ACTIONS(1984), + [anon_sym_err_GT_GT] = ACTIONS(1982), + [anon_sym_out_GT_GT] = ACTIONS(1982), + [anon_sym_e_GT_GT] = ACTIONS(1982), + [anon_sym_o_GT_GT] = ACTIONS(1982), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1982), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1982), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1982), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1982), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(921)] = { + [sym_comment] = STATE(921), + [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_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_POUND] = ACTIONS(3), + }, + [STATE(922)] = { + [sym_comment] = STATE(922), + [anon_sym_in] = ACTIONS(1730), + [sym__newline] = ACTIONS(1730), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_PIPE] = ACTIONS(1730), + [anon_sym_err_GT_PIPE] = ACTIONS(1730), + [anon_sym_out_GT_PIPE] = ACTIONS(1730), + [anon_sym_e_GT_PIPE] = ACTIONS(1730), + [anon_sym_o_GT_PIPE] = ACTIONS(1730), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1730), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1730), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1730), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1730), + [anon_sym_RPAREN] = ACTIONS(1730), + [anon_sym_GT2] = ACTIONS(1732), + [anon_sym_DASH2] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(1730), + [anon_sym_STAR2] = ACTIONS(1732), + [anon_sym_and2] = ACTIONS(1730), + [anon_sym_xor2] = ACTIONS(1730), + [anon_sym_or2] = ACTIONS(1730), + [anon_sym_not_DASHin2] = ACTIONS(1730), + [anon_sym_has2] = ACTIONS(1730), + [anon_sym_not_DASHhas2] = ACTIONS(1730), + [anon_sym_starts_DASHwith2] = ACTIONS(1730), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1730), + [anon_sym_ends_DASHwith2] = ACTIONS(1730), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1730), + [anon_sym_EQ_EQ2] = ACTIONS(1730), + [anon_sym_BANG_EQ2] = ACTIONS(1730), + [anon_sym_LT2] = ACTIONS(1732), + [anon_sym_LT_EQ2] = ACTIONS(1730), + [anon_sym_GT_EQ2] = ACTIONS(1730), + [anon_sym_EQ_TILDE2] = ACTIONS(1730), + [anon_sym_BANG_TILDE2] = ACTIONS(1730), + [anon_sym_like2] = ACTIONS(1730), + [anon_sym_not_DASHlike2] = ACTIONS(1730), + [anon_sym_LPAREN2] = ACTIONS(1730), + [anon_sym_STAR_STAR2] = ACTIONS(1730), + [anon_sym_PLUS_PLUS2] = ACTIONS(1730), + [anon_sym_SLASH2] = ACTIONS(1732), + [anon_sym_mod2] = ACTIONS(1730), + [anon_sym_SLASH_SLASH2] = ACTIONS(1730), + [anon_sym_PLUS2] = ACTIONS(1732), + [anon_sym_bit_DASHshl2] = ACTIONS(1730), + [anon_sym_bit_DASHshr2] = ACTIONS(1730), + [anon_sym_bit_DASHand2] = ACTIONS(1730), + [anon_sym_bit_DASHxor2] = ACTIONS(1730), + [anon_sym_bit_DASHor2] = ACTIONS(1730), + [anon_sym_err_GT] = ACTIONS(1732), + [anon_sym_out_GT] = ACTIONS(1732), + [anon_sym_e_GT] = ACTIONS(1732), + [anon_sym_o_GT] = ACTIONS(1732), + [anon_sym_err_PLUSout_GT] = ACTIONS(1732), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1732), + [anon_sym_o_PLUSe_GT] = ACTIONS(1732), + [anon_sym_e_PLUSo_GT] = ACTIONS(1732), + [anon_sym_err_GT_GT] = ACTIONS(1730), + [anon_sym_out_GT_GT] = ACTIONS(1730), + [anon_sym_e_GT_GT] = ACTIONS(1730), + [anon_sym_o_GT_GT] = ACTIONS(1730), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1730), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1730), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1730), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1730), + [sym__unquoted_pattern] = ACTIONS(1732), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(923)] = { + [sym_comment] = STATE(923), + [anon_sym_export] = ACTIONS(2330), + [anon_sym_alias] = ACTIONS(2332), + [anon_sym_let] = ACTIONS(2332), + [anon_sym_mut] = ACTIONS(2332), + [anon_sym_const] = ACTIONS(2332), + [aux_sym_cmd_identifier_token1] = ACTIONS(2330), + [anon_sym_def] = ACTIONS(2332), + [anon_sym_use] = ACTIONS(2332), + [anon_sym_export_DASHenv] = ACTIONS(2332), + [anon_sym_extern] = ACTIONS(2332), + [anon_sym_module] = ACTIONS(2332), + [anon_sym_for] = ACTIONS(2332), + [anon_sym_loop] = ACTIONS(2332), + [anon_sym_while] = ACTIONS(2332), + [anon_sym_if] = ACTIONS(2332), + [anon_sym_else] = ACTIONS(2332), + [anon_sym_try] = ACTIONS(2332), + [anon_sym_catch] = ACTIONS(2332), + [anon_sym_finally] = ACTIONS(2332), + [anon_sym_match] = ACTIONS(2332), + [anon_sym_in] = ACTIONS(2330), + [anon_sym_true] = ACTIONS(2332), + [anon_sym_false] = ACTIONS(2332), + [anon_sym_null] = ACTIONS(2332), + [aux_sym_cmd_identifier_token3] = ACTIONS(2332), + [aux_sym_cmd_identifier_token4] = ACTIONS(2332), + [aux_sym_cmd_identifier_token5] = ACTIONS(2332), + [sym__newline] = ACTIONS(2332), + [anon_sym_PIPE] = ACTIONS(2332), + [anon_sym_err_GT_PIPE] = ACTIONS(2332), + [anon_sym_out_GT_PIPE] = ACTIONS(2332), + [anon_sym_e_GT_PIPE] = ACTIONS(2332), + [anon_sym_o_GT_PIPE] = ACTIONS(2332), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2332), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2332), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2332), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2332), + [anon_sym_LBRACK] = ACTIONS(2332), + [anon_sym_LPAREN] = ACTIONS(2332), + [anon_sym_DOLLAR] = ACTIONS(2330), + [anon_sym_DASH2] = ACTIONS(2330), + [anon_sym_LBRACE] = ACTIONS(2332), + [anon_sym_DOT_DOT] = ACTIONS(2330), + [anon_sym_where] = ACTIONS(2332), + [aux_sym_expr_unary_token1] = ACTIONS(2332), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2332), + [anon_sym_DOT_DOT_LT] = ACTIONS(2332), + [aux_sym__val_number_decimal_token1] = ACTIONS(2330), + [aux_sym__val_number_decimal_token2] = ACTIONS(2332), + [aux_sym__val_number_decimal_token3] = ACTIONS(2332), + [aux_sym__val_number_decimal_token4] = ACTIONS(2332), + [aux_sym__val_number_token1] = ACTIONS(2332), + [aux_sym__val_number_token2] = ACTIONS(2332), + [aux_sym__val_number_token3] = ACTIONS(2332), + [anon_sym_0b] = ACTIONS(2330), + [anon_sym_0o] = ACTIONS(2330), + [anon_sym_0x] = ACTIONS(2330), + [sym_val_date] = ACTIONS(2332), + [anon_sym_DQUOTE] = ACTIONS(2332), + [anon_sym_SQUOTE] = ACTIONS(2332), + [anon_sym_BQUOTE] = ACTIONS(2332), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2332), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2332), + [anon_sym_CARET] = ACTIONS(2332), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2332), + }, + [STATE(924)] = { + [sym_comment] = STATE(924), + [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_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_POUND] = ACTIONS(3), + }, + [STATE(925)] = { + [sym_comment] = STATE(925), + [anon_sym_export] = ACTIONS(2590), + [anon_sym_alias] = ACTIONS(2592), + [anon_sym_let] = ACTIONS(2592), + [anon_sym_mut] = ACTIONS(2592), + [anon_sym_const] = ACTIONS(2592), + [aux_sym_cmd_identifier_token1] = ACTIONS(2590), + [anon_sym_def] = ACTIONS(2592), + [anon_sym_use] = ACTIONS(2592), + [anon_sym_export_DASHenv] = ACTIONS(2592), + [anon_sym_extern] = ACTIONS(2592), + [anon_sym_module] = ACTIONS(2592), + [anon_sym_for] = ACTIONS(2592), + [anon_sym_loop] = ACTIONS(2592), + [anon_sym_while] = ACTIONS(2592), + [anon_sym_if] = ACTIONS(2592), + [anon_sym_else] = ACTIONS(2592), + [anon_sym_try] = ACTIONS(2592), + [anon_sym_catch] = ACTIONS(2592), + [anon_sym_finally] = ACTIONS(2592), + [anon_sym_match] = ACTIONS(2592), + [anon_sym_in] = ACTIONS(2590), + [anon_sym_true] = ACTIONS(2592), + [anon_sym_false] = ACTIONS(2592), + [anon_sym_null] = ACTIONS(2592), + [aux_sym_cmd_identifier_token3] = ACTIONS(2592), + [aux_sym_cmd_identifier_token4] = ACTIONS(2592), + [aux_sym_cmd_identifier_token5] = ACTIONS(2592), + [sym__newline] = ACTIONS(1966), + [anon_sym_PIPE] = ACTIONS(1966), + [anon_sym_err_GT_PIPE] = ACTIONS(1966), + [anon_sym_out_GT_PIPE] = ACTIONS(1966), + [anon_sym_e_GT_PIPE] = ACTIONS(1966), + [anon_sym_o_GT_PIPE] = ACTIONS(1966), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1966), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1966), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1966), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1966), + [anon_sym_LBRACK] = ACTIONS(2592), + [anon_sym_LPAREN] = ACTIONS(2592), + [anon_sym_DOLLAR] = ACTIONS(2590), + [anon_sym_DASH2] = ACTIONS(2590), + [anon_sym_LBRACE] = ACTIONS(2592), + [anon_sym_DOT_DOT] = ACTIONS(2590), + [anon_sym_where] = ACTIONS(2592), + [aux_sym_expr_unary_token1] = ACTIONS(2592), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2592), + [anon_sym_DOT_DOT_LT] = ACTIONS(2592), + [aux_sym__val_number_decimal_token1] = ACTIONS(2590), + [aux_sym__val_number_decimal_token2] = ACTIONS(2592), + [aux_sym__val_number_decimal_token3] = ACTIONS(2592), + [aux_sym__val_number_decimal_token4] = ACTIONS(2592), + [aux_sym__val_number_token1] = ACTIONS(2592), + [aux_sym__val_number_token2] = ACTIONS(2592), + [aux_sym__val_number_token3] = ACTIONS(2592), + [anon_sym_0b] = ACTIONS(2590), + [anon_sym_0o] = ACTIONS(2590), + [anon_sym_0x] = ACTIONS(2590), + [sym_val_date] = ACTIONS(2592), + [anon_sym_DQUOTE] = ACTIONS(2592), + [anon_sym_SQUOTE] = ACTIONS(2592), + [anon_sym_BQUOTE] = ACTIONS(2592), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2592), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2592), + [anon_sym_CARET] = ACTIONS(2592), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2592), + }, + [STATE(926)] = { + [sym_comment] = STATE(926), + [anon_sym_in] = ACTIONS(2572), + [sym__newline] = ACTIONS(2572), + [anon_sym_SEMI] = ACTIONS(2572), + [anon_sym_PIPE] = ACTIONS(2572), + [anon_sym_err_GT_PIPE] = ACTIONS(2572), + [anon_sym_out_GT_PIPE] = ACTIONS(2572), + [anon_sym_e_GT_PIPE] = ACTIONS(2572), + [anon_sym_o_GT_PIPE] = ACTIONS(2572), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2572), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2572), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2572), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2572), + [anon_sym_RPAREN] = ACTIONS(2572), + [anon_sym_GT2] = ACTIONS(2574), + [anon_sym_DASH2] = ACTIONS(2572), + [anon_sym_LBRACE] = ACTIONS(2572), + [anon_sym_RBRACE] = ACTIONS(2572), + [anon_sym_EQ_GT] = ACTIONS(2572), + [anon_sym_STAR2] = ACTIONS(2574), + [anon_sym_and2] = ACTIONS(2572), + [anon_sym_xor2] = ACTIONS(2572), + [anon_sym_or2] = ACTIONS(2572), + [anon_sym_not_DASHin2] = ACTIONS(2572), + [anon_sym_has2] = ACTIONS(2572), + [anon_sym_not_DASHhas2] = ACTIONS(2572), + [anon_sym_starts_DASHwith2] = ACTIONS(2572), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2572), + [anon_sym_ends_DASHwith2] = ACTIONS(2572), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2572), + [anon_sym_EQ_EQ2] = ACTIONS(2572), + [anon_sym_BANG_EQ2] = ACTIONS(2572), + [anon_sym_LT2] = ACTIONS(2574), + [anon_sym_LT_EQ2] = ACTIONS(2572), + [anon_sym_GT_EQ2] = ACTIONS(2572), + [anon_sym_EQ_TILDE2] = ACTIONS(2572), + [anon_sym_BANG_TILDE2] = ACTIONS(2572), + [anon_sym_like2] = ACTIONS(2572), + [anon_sym_not_DASHlike2] = ACTIONS(2572), + [anon_sym_STAR_STAR2] = ACTIONS(2572), + [anon_sym_PLUS_PLUS2] = ACTIONS(2572), + [anon_sym_SLASH2] = ACTIONS(2574), + [anon_sym_mod2] = ACTIONS(2572), + [anon_sym_SLASH_SLASH2] = ACTIONS(2572), + [anon_sym_PLUS2] = ACTIONS(2574), + [anon_sym_bit_DASHshl2] = ACTIONS(2572), + [anon_sym_bit_DASHshr2] = ACTIONS(2572), + [anon_sym_bit_DASHand2] = ACTIONS(2572), + [anon_sym_bit_DASHxor2] = ACTIONS(2572), + [anon_sym_bit_DASHor2] = ACTIONS(2572), + [anon_sym_err_GT] = ACTIONS(2574), + [anon_sym_out_GT] = ACTIONS(2574), + [anon_sym_e_GT] = ACTIONS(2574), + [anon_sym_o_GT] = ACTIONS(2574), + [anon_sym_err_PLUSout_GT] = ACTIONS(2574), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2574), + [anon_sym_o_PLUSe_GT] = ACTIONS(2574), + [anon_sym_e_PLUSo_GT] = ACTIONS(2574), + [anon_sym_err_GT_GT] = ACTIONS(2572), + [anon_sym_out_GT_GT] = ACTIONS(2572), + [anon_sym_e_GT_GT] = ACTIONS(2572), + [anon_sym_o_GT_GT] = ACTIONS(2572), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2572), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2572), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2572), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2572), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(927)] = { + [sym_comment] = STATE(927), + [anon_sym_in] = ACTIONS(1907), + [sym__newline] = ACTIONS(1907), + [anon_sym_SEMI] = ACTIONS(1907), + [anon_sym_PIPE] = ACTIONS(1907), + [anon_sym_err_GT_PIPE] = ACTIONS(1907), + [anon_sym_out_GT_PIPE] = ACTIONS(1907), + [anon_sym_e_GT_PIPE] = ACTIONS(1907), + [anon_sym_o_GT_PIPE] = ACTIONS(1907), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1907), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1907), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1907), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1907), + [anon_sym_RPAREN] = ACTIONS(1907), + [anon_sym_GT2] = ACTIONS(1909), + [anon_sym_DASH2] = ACTIONS(1907), + [anon_sym_LBRACE] = ACTIONS(1907), + [anon_sym_RBRACE] = ACTIONS(1907), + [anon_sym_EQ_GT] = ACTIONS(1907), + [anon_sym_STAR2] = ACTIONS(1909), + [anon_sym_and2] = ACTIONS(1907), + [anon_sym_xor2] = ACTIONS(1907), + [anon_sym_or2] = ACTIONS(1907), + [anon_sym_not_DASHin2] = ACTIONS(1907), + [anon_sym_has2] = ACTIONS(1907), + [anon_sym_not_DASHhas2] = ACTIONS(1907), + [anon_sym_starts_DASHwith2] = ACTIONS(1907), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1907), + [anon_sym_ends_DASHwith2] = ACTIONS(1907), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1907), + [anon_sym_EQ_EQ2] = ACTIONS(1907), + [anon_sym_BANG_EQ2] = ACTIONS(1907), + [anon_sym_LT2] = ACTIONS(1909), + [anon_sym_LT_EQ2] = ACTIONS(1907), + [anon_sym_GT_EQ2] = ACTIONS(1907), + [anon_sym_EQ_TILDE2] = ACTIONS(1907), + [anon_sym_BANG_TILDE2] = ACTIONS(1907), + [anon_sym_like2] = ACTIONS(1907), + [anon_sym_not_DASHlike2] = ACTIONS(1907), + [anon_sym_STAR_STAR2] = ACTIONS(1907), + [anon_sym_PLUS_PLUS2] = ACTIONS(1907), + [anon_sym_SLASH2] = ACTIONS(1909), + [anon_sym_mod2] = ACTIONS(1907), + [anon_sym_SLASH_SLASH2] = ACTIONS(1907), + [anon_sym_PLUS2] = ACTIONS(1909), + [anon_sym_bit_DASHshl2] = ACTIONS(1907), + [anon_sym_bit_DASHshr2] = ACTIONS(1907), + [anon_sym_bit_DASHand2] = ACTIONS(1907), + [anon_sym_bit_DASHxor2] = ACTIONS(1907), + [anon_sym_bit_DASHor2] = ACTIONS(1907), + [anon_sym_err_GT] = ACTIONS(1909), + [anon_sym_out_GT] = ACTIONS(1909), + [anon_sym_e_GT] = ACTIONS(1909), + [anon_sym_o_GT] = ACTIONS(1909), + [anon_sym_err_PLUSout_GT] = ACTIONS(1909), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1909), + [anon_sym_o_PLUSe_GT] = ACTIONS(1909), + [anon_sym_e_PLUSo_GT] = ACTIONS(1909), + [anon_sym_err_GT_GT] = ACTIONS(1907), + [anon_sym_out_GT_GT] = ACTIONS(1907), + [anon_sym_e_GT_GT] = ACTIONS(1907), + [anon_sym_o_GT_GT] = ACTIONS(1907), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1907), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1907), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1907), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1907), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(928)] = { + [sym_comment] = STATE(928), + [anon_sym_in] = ACTIONS(1846), + [sym__newline] = ACTIONS(1846), + [anon_sym_SEMI] = ACTIONS(1846), + [anon_sym_PIPE] = ACTIONS(1846), + [anon_sym_err_GT_PIPE] = ACTIONS(1846), + [anon_sym_out_GT_PIPE] = ACTIONS(1846), + [anon_sym_e_GT_PIPE] = ACTIONS(1846), + [anon_sym_o_GT_PIPE] = ACTIONS(1846), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1846), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1846), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1846), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1846), + [anon_sym_RPAREN] = ACTIONS(1846), + [anon_sym_GT2] = ACTIONS(1848), + [anon_sym_DASH2] = ACTIONS(1846), + [anon_sym_RBRACE] = ACTIONS(1846), + [anon_sym_STAR2] = ACTIONS(1848), + [anon_sym_and2] = ACTIONS(1846), + [anon_sym_xor2] = ACTIONS(1846), + [anon_sym_or2] = ACTIONS(1846), + [anon_sym_not_DASHin2] = ACTIONS(1846), + [anon_sym_has2] = ACTIONS(1846), + [anon_sym_not_DASHhas2] = ACTIONS(1846), + [anon_sym_starts_DASHwith2] = ACTIONS(1846), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1846), + [anon_sym_ends_DASHwith2] = ACTIONS(1846), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1846), + [anon_sym_EQ_EQ2] = ACTIONS(1846), + [anon_sym_BANG_EQ2] = ACTIONS(1846), + [anon_sym_LT2] = ACTIONS(1848), + [anon_sym_LT_EQ2] = ACTIONS(1846), + [anon_sym_GT_EQ2] = ACTIONS(1846), + [anon_sym_EQ_TILDE2] = ACTIONS(1846), + [anon_sym_BANG_TILDE2] = ACTIONS(1846), + [anon_sym_like2] = ACTIONS(1846), + [anon_sym_not_DASHlike2] = ACTIONS(1846), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_STAR_STAR2] = ACTIONS(1846), + [anon_sym_PLUS_PLUS2] = ACTIONS(1846), + [anon_sym_SLASH2] = ACTIONS(1848), + [anon_sym_mod2] = ACTIONS(1846), + [anon_sym_SLASH_SLASH2] = ACTIONS(1846), + [anon_sym_PLUS2] = ACTIONS(1848), + [anon_sym_bit_DASHshl2] = ACTIONS(1846), + [anon_sym_bit_DASHshr2] = ACTIONS(1846), + [anon_sym_bit_DASHand2] = ACTIONS(1846), + [anon_sym_bit_DASHxor2] = ACTIONS(1846), + [anon_sym_bit_DASHor2] = ACTIONS(1846), + [anon_sym_err_GT] = ACTIONS(1848), + [anon_sym_out_GT] = ACTIONS(1848), + [anon_sym_e_GT] = ACTIONS(1848), + [anon_sym_o_GT] = ACTIONS(1848), + [anon_sym_err_PLUSout_GT] = ACTIONS(1848), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1848), + [anon_sym_o_PLUSe_GT] = ACTIONS(1848), + [anon_sym_e_PLUSo_GT] = ACTIONS(1848), + [anon_sym_err_GT_GT] = ACTIONS(1846), + [anon_sym_out_GT_GT] = ACTIONS(1846), + [anon_sym_e_GT_GT] = ACTIONS(1846), + [anon_sym_o_GT_GT] = ACTIONS(1846), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1846), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1846), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1846), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1846), + [sym__unquoted_pattern] = ACTIONS(1848), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(929)] = { + [sym_comment] = STATE(929), + [anon_sym_in] = ACTIONS(1895), + [sym__newline] = ACTIONS(1895), + [anon_sym_SEMI] = ACTIONS(1895), + [anon_sym_PIPE] = ACTIONS(1895), + [anon_sym_err_GT_PIPE] = ACTIONS(1895), + [anon_sym_out_GT_PIPE] = ACTIONS(1895), + [anon_sym_e_GT_PIPE] = ACTIONS(1895), + [anon_sym_o_GT_PIPE] = ACTIONS(1895), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1895), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1895), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1895), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1895), + [anon_sym_RPAREN] = ACTIONS(1895), + [anon_sym_GT2] = ACTIONS(1897), + [anon_sym_DASH2] = ACTIONS(1895), + [anon_sym_RBRACE] = ACTIONS(1895), + [anon_sym_STAR2] = ACTIONS(1897), + [anon_sym_and2] = ACTIONS(1895), + [anon_sym_xor2] = ACTIONS(1895), + [anon_sym_or2] = ACTIONS(1895), + [anon_sym_not_DASHin2] = ACTIONS(1895), + [anon_sym_has2] = ACTIONS(1895), + [anon_sym_not_DASHhas2] = ACTIONS(1895), + [anon_sym_starts_DASHwith2] = ACTIONS(1895), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1895), + [anon_sym_ends_DASHwith2] = ACTIONS(1895), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1895), + [anon_sym_EQ_EQ2] = ACTIONS(1895), + [anon_sym_BANG_EQ2] = ACTIONS(1895), + [anon_sym_LT2] = ACTIONS(1897), + [anon_sym_LT_EQ2] = ACTIONS(1895), + [anon_sym_GT_EQ2] = ACTIONS(1895), + [anon_sym_EQ_TILDE2] = ACTIONS(1895), + [anon_sym_BANG_TILDE2] = ACTIONS(1895), + [anon_sym_like2] = ACTIONS(1895), + [anon_sym_not_DASHlike2] = ACTIONS(1895), + [anon_sym_LPAREN2] = ACTIONS(1895), + [anon_sym_STAR_STAR2] = ACTIONS(1895), + [anon_sym_PLUS_PLUS2] = ACTIONS(1895), + [anon_sym_SLASH2] = ACTIONS(1897), + [anon_sym_mod2] = ACTIONS(1895), + [anon_sym_SLASH_SLASH2] = ACTIONS(1895), + [anon_sym_PLUS2] = ACTIONS(1897), + [anon_sym_bit_DASHshl2] = ACTIONS(1895), + [anon_sym_bit_DASHshr2] = ACTIONS(1895), + [anon_sym_bit_DASHand2] = ACTIONS(1895), + [anon_sym_bit_DASHxor2] = ACTIONS(1895), + [anon_sym_bit_DASHor2] = ACTIONS(1895), + [anon_sym_err_GT] = ACTIONS(1897), + [anon_sym_out_GT] = ACTIONS(1897), + [anon_sym_e_GT] = ACTIONS(1897), + [anon_sym_o_GT] = ACTIONS(1897), + [anon_sym_err_PLUSout_GT] = ACTIONS(1897), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1897), + [anon_sym_o_PLUSe_GT] = ACTIONS(1897), + [anon_sym_e_PLUSo_GT] = ACTIONS(1897), + [anon_sym_err_GT_GT] = ACTIONS(1895), + [anon_sym_out_GT_GT] = ACTIONS(1895), + [anon_sym_e_GT_GT] = ACTIONS(1895), + [anon_sym_o_GT_GT] = ACTIONS(1895), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1895), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1895), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1895), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1895), + [sym__unquoted_pattern] = ACTIONS(1897), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(930)] = { + [aux_sym__repeat_newline] = STATE(1059), + [sym__expression_parenthesized] = STATE(4643), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2190), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1886), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_comment] = STATE(930), + [aux_sym_cmd_identifier_token2] = ACTIONS(2594), + [anon_sym_true] = ACTIONS(2596), + [anon_sym_false] = ACTIONS(2596), + [anon_sym_null] = ACTIONS(2598), + [aux_sym_cmd_identifier_token3] = ACTIONS(2600), + [aux_sym_cmd_identifier_token4] = ACTIONS(2600), + [aux_sym_cmd_identifier_token5] = ACTIONS(2600), + [sym__newline] = ACTIONS(2602), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(998), + [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(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2006), + [aux_sym__val_number_decimal_token3] = ACTIONS(2604), + [aux_sym__val_number_decimal_token4] = ACTIONS(2604), + [aux_sym__val_number_token1] = ACTIONS(2600), + [aux_sym__val_number_token2] = ACTIONS(2600), + [aux_sym__val_number_token3] = ACTIONS(2600), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2606), + [anon_sym_DQUOTE] = 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(931)] = { + [sym_comment] = STATE(931), [anon_sym_in] = ACTIONS(2608), [sym__newline] = ACTIONS(2608), [anon_sym_SEMI] = ACTIONS(2608), @@ -118012,9 +118264,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RPAREN] = ACTIONS(2608), [anon_sym_GT2] = ACTIONS(2610), [anon_sym_DASH2] = ACTIONS(2608), - [anon_sym_LBRACE] = ACTIONS(2608), [anon_sym_RBRACE] = ACTIONS(2608), - [anon_sym_EQ_GT] = ACTIONS(2608), [anon_sym_STAR2] = ACTIONS(2610), [anon_sym_and2] = ACTIONS(2608), [anon_sym_xor2] = ACTIONS(2608), @@ -118035,6 +118285,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2608), [anon_sym_like2] = ACTIONS(2608), [anon_sym_not_DASHlike2] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(2612), [anon_sym_STAR_STAR2] = ACTIONS(2608), [anon_sym_PLUS_PLUS2] = ACTIONS(2608), [anon_sym_SLASH2] = ACTIONS(2610), @@ -118062,493 +118313,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2608), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2608), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2608), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(941)] = { - [sym_comment] = STATE(941), - [ts_builtin_sym_end] = ACTIONS(1892), - [anon_sym_in] = ACTIONS(1892), - [sym__newline] = ACTIONS(1892), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_err_GT_PIPE] = ACTIONS(1892), - [anon_sym_out_GT_PIPE] = ACTIONS(1892), - [anon_sym_e_GT_PIPE] = ACTIONS(1892), - [anon_sym_o_GT_PIPE] = ACTIONS(1892), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1892), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1892), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1892), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1892), - [anon_sym_GT2] = ACTIONS(1894), - [anon_sym_DASH2] = ACTIONS(1892), - [anon_sym_STAR2] = ACTIONS(1894), - [anon_sym_and2] = ACTIONS(1892), - [anon_sym_xor2] = ACTIONS(1892), - [anon_sym_or2] = ACTIONS(1892), - [anon_sym_not_DASHin2] = ACTIONS(1892), - [anon_sym_has2] = ACTIONS(1892), - [anon_sym_not_DASHhas2] = ACTIONS(1892), - [anon_sym_starts_DASHwith2] = ACTIONS(1892), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1892), - [anon_sym_ends_DASHwith2] = ACTIONS(1892), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1892), - [anon_sym_EQ_EQ2] = ACTIONS(1892), - [anon_sym_BANG_EQ2] = ACTIONS(1892), - [anon_sym_LT2] = ACTIONS(1894), - [anon_sym_LT_EQ2] = ACTIONS(1892), - [anon_sym_GT_EQ2] = ACTIONS(1892), - [anon_sym_EQ_TILDE2] = ACTIONS(1892), - [anon_sym_BANG_TILDE2] = ACTIONS(1892), - [anon_sym_like2] = ACTIONS(1892), - [anon_sym_not_DASHlike2] = ACTIONS(1892), - [anon_sym_STAR_STAR2] = ACTIONS(1892), - [anon_sym_PLUS_PLUS2] = ACTIONS(1892), - [anon_sym_SLASH2] = ACTIONS(1894), - [anon_sym_mod2] = ACTIONS(1892), - [anon_sym_SLASH_SLASH2] = ACTIONS(1892), - [anon_sym_PLUS2] = ACTIONS(1894), - [anon_sym_bit_DASHshl2] = ACTIONS(1892), - [anon_sym_bit_DASHshr2] = ACTIONS(1892), - [anon_sym_bit_DASHand2] = ACTIONS(1892), - [anon_sym_bit_DASHxor2] = ACTIONS(1892), - [anon_sym_bit_DASHor2] = ACTIONS(1892), - [anon_sym_DOT_DOT2] = ACTIONS(1894), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1892), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1892), - [anon_sym_err_GT] = ACTIONS(1894), - [anon_sym_out_GT] = ACTIONS(1894), - [anon_sym_e_GT] = ACTIONS(1894), - [anon_sym_o_GT] = ACTIONS(1894), - [anon_sym_err_PLUSout_GT] = ACTIONS(1894), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1894), - [anon_sym_o_PLUSe_GT] = ACTIONS(1894), - [anon_sym_e_PLUSo_GT] = ACTIONS(1894), - [anon_sym_err_GT_GT] = ACTIONS(1892), - [anon_sym_out_GT_GT] = ACTIONS(1892), - [anon_sym_e_GT_GT] = ACTIONS(1892), - [anon_sym_o_GT_GT] = ACTIONS(1892), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1892), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1892), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1892), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1892), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(942)] = { - [sym_comment] = STATE(942), - [anon_sym_in] = ACTIONS(1713), - [sym__newline] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1713), - [anon_sym_err_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_GT_PIPE] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), - [anon_sym_RPAREN] = ACTIONS(1713), - [anon_sym_GT2] = ACTIONS(1614), - [anon_sym_DASH2] = ACTIONS(1713), - [anon_sym_RBRACE] = ACTIONS(1713), - [anon_sym_STAR2] = ACTIONS(1614), - [anon_sym_and2] = ACTIONS(1713), - [anon_sym_xor2] = ACTIONS(1713), - [anon_sym_or2] = ACTIONS(1713), - [anon_sym_not_DASHin2] = ACTIONS(1713), - [anon_sym_has2] = ACTIONS(1713), - [anon_sym_not_DASHhas2] = ACTIONS(1713), - [anon_sym_starts_DASHwith2] = ACTIONS(1713), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1713), - [anon_sym_ends_DASHwith2] = ACTIONS(1713), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1713), - [anon_sym_EQ_EQ2] = ACTIONS(1713), - [anon_sym_BANG_EQ2] = ACTIONS(1713), - [anon_sym_LT2] = ACTIONS(1614), - [anon_sym_LT_EQ2] = ACTIONS(1713), - [anon_sym_GT_EQ2] = ACTIONS(1713), - [anon_sym_EQ_TILDE2] = ACTIONS(1713), - [anon_sym_BANG_TILDE2] = ACTIONS(1713), - [anon_sym_like2] = ACTIONS(1713), - [anon_sym_not_DASHlike2] = ACTIONS(1713), - [anon_sym_LPAREN2] = ACTIONS(2612), - [anon_sym_STAR_STAR2] = ACTIONS(1713), - [anon_sym_PLUS_PLUS2] = ACTIONS(1713), - [anon_sym_SLASH2] = ACTIONS(1614), - [anon_sym_mod2] = ACTIONS(1713), - [anon_sym_SLASH_SLASH2] = ACTIONS(1713), - [anon_sym_PLUS2] = ACTIONS(1614), - [anon_sym_bit_DASHshl2] = ACTIONS(1713), - [anon_sym_bit_DASHshr2] = ACTIONS(1713), - [anon_sym_bit_DASHand2] = ACTIONS(1713), - [anon_sym_bit_DASHxor2] = ACTIONS(1713), - [anon_sym_bit_DASHor2] = ACTIONS(1713), - [anon_sym_err_GT] = ACTIONS(1614), - [anon_sym_out_GT] = ACTIONS(1614), - [anon_sym_e_GT] = ACTIONS(1614), - [anon_sym_o_GT] = ACTIONS(1614), - [anon_sym_err_PLUSout_GT] = ACTIONS(1614), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1614), - [anon_sym_o_PLUSe_GT] = ACTIONS(1614), - [anon_sym_e_PLUSo_GT] = ACTIONS(1614), - [anon_sym_err_GT_GT] = ACTIONS(1713), - [anon_sym_out_GT_GT] = ACTIONS(1713), - [anon_sym_e_GT_GT] = ACTIONS(1713), - [anon_sym_o_GT_GT] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), [sym__unquoted_pattern] = ACTIONS(2614), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(943)] = { - [sym_comment] = STATE(943), - [ts_builtin_sym_end] = ACTIONS(1744), - [anon_sym_in] = ACTIONS(1744), - [sym__newline] = ACTIONS(1744), - [anon_sym_SEMI] = ACTIONS(1744), - [anon_sym_PIPE] = ACTIONS(1744), - [anon_sym_err_GT_PIPE] = ACTIONS(1744), - [anon_sym_out_GT_PIPE] = ACTIONS(1744), - [anon_sym_e_GT_PIPE] = ACTIONS(1744), - [anon_sym_o_GT_PIPE] = ACTIONS(1744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1744), - [anon_sym_GT2] = ACTIONS(1746), - [anon_sym_DASH2] = ACTIONS(1744), - [anon_sym_STAR2] = ACTIONS(1746), - [anon_sym_and2] = ACTIONS(1744), - [anon_sym_xor2] = ACTIONS(1744), - [anon_sym_or2] = ACTIONS(1744), - [anon_sym_not_DASHin2] = ACTIONS(1744), - [anon_sym_has2] = ACTIONS(1744), - [anon_sym_not_DASHhas2] = ACTIONS(1744), - [anon_sym_starts_DASHwith2] = ACTIONS(1744), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1744), - [anon_sym_ends_DASHwith2] = ACTIONS(1744), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1744), - [anon_sym_EQ_EQ2] = ACTIONS(1744), - [anon_sym_BANG_EQ2] = ACTIONS(1744), - [anon_sym_LT2] = ACTIONS(1746), - [anon_sym_LT_EQ2] = ACTIONS(1744), - [anon_sym_GT_EQ2] = ACTIONS(1744), - [anon_sym_EQ_TILDE2] = ACTIONS(1744), - [anon_sym_BANG_TILDE2] = ACTIONS(1744), - [anon_sym_like2] = ACTIONS(1744), - [anon_sym_not_DASHlike2] = ACTIONS(1744), - [anon_sym_LPAREN2] = ACTIONS(1744), - [anon_sym_STAR_STAR2] = ACTIONS(1744), - [anon_sym_PLUS_PLUS2] = ACTIONS(1744), - [anon_sym_SLASH2] = ACTIONS(1746), - [anon_sym_mod2] = ACTIONS(1744), - [anon_sym_SLASH_SLASH2] = ACTIONS(1744), - [anon_sym_PLUS2] = ACTIONS(1746), - [anon_sym_bit_DASHshl2] = ACTIONS(1744), - [anon_sym_bit_DASHshr2] = ACTIONS(1744), - [anon_sym_bit_DASHand2] = ACTIONS(1744), - [anon_sym_bit_DASHxor2] = ACTIONS(1744), - [anon_sym_bit_DASHor2] = ACTIONS(1744), - [aux_sym__immediate_decimal_token5] = ACTIONS(2333), - [anon_sym_err_GT] = ACTIONS(1746), - [anon_sym_out_GT] = ACTIONS(1746), - [anon_sym_e_GT] = ACTIONS(1746), - [anon_sym_o_GT] = ACTIONS(1746), - [anon_sym_err_PLUSout_GT] = ACTIONS(1746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1746), - [anon_sym_o_PLUSe_GT] = ACTIONS(1746), - [anon_sym_e_PLUSo_GT] = ACTIONS(1746), - [anon_sym_err_GT_GT] = ACTIONS(1744), - [anon_sym_out_GT_GT] = ACTIONS(1744), - [anon_sym_e_GT_GT] = ACTIONS(1744), - [anon_sym_o_GT_GT] = ACTIONS(1744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1744), - [sym__unquoted_pattern] = ACTIONS(1746), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(944)] = { - [sym_comment] = STATE(944), - [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_DOT_DOT2] = ACTIONS(1880), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1878), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1878), - [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(945)] = { - [sym_comment] = STATE(945), - [anon_sym_in] = ACTIONS(1956), - [sym__newline] = ACTIONS(1956), - [anon_sym_SEMI] = ACTIONS(1956), - [anon_sym_PIPE] = ACTIONS(1956), - [anon_sym_err_GT_PIPE] = ACTIONS(1956), - [anon_sym_out_GT_PIPE] = ACTIONS(1956), - [anon_sym_e_GT_PIPE] = ACTIONS(1956), - [anon_sym_o_GT_PIPE] = ACTIONS(1956), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1956), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1956), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1956), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1956), - [anon_sym_RPAREN] = ACTIONS(1956), - [anon_sym_GT2] = ACTIONS(1958), - [anon_sym_DASH2] = ACTIONS(1956), - [anon_sym_RBRACE] = ACTIONS(1956), - [anon_sym_STAR2] = ACTIONS(1958), - [anon_sym_and2] = ACTIONS(1956), - [anon_sym_xor2] = ACTIONS(1956), - [anon_sym_or2] = ACTIONS(1956), - [anon_sym_not_DASHin2] = ACTIONS(1956), - [anon_sym_has2] = ACTIONS(1956), - [anon_sym_not_DASHhas2] = ACTIONS(1956), - [anon_sym_starts_DASHwith2] = ACTIONS(1956), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1956), - [anon_sym_ends_DASHwith2] = ACTIONS(1956), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1956), - [anon_sym_EQ_EQ2] = ACTIONS(1956), - [anon_sym_BANG_EQ2] = ACTIONS(1956), - [anon_sym_LT2] = ACTIONS(1958), - [anon_sym_LT_EQ2] = ACTIONS(1956), - [anon_sym_GT_EQ2] = ACTIONS(1956), - [anon_sym_EQ_TILDE2] = ACTIONS(1956), - [anon_sym_BANG_TILDE2] = ACTIONS(1956), - [anon_sym_like2] = ACTIONS(1956), - [anon_sym_not_DASHlike2] = ACTIONS(1956), - [anon_sym_LPAREN2] = ACTIONS(1960), - [anon_sym_STAR_STAR2] = ACTIONS(1956), - [anon_sym_PLUS_PLUS2] = ACTIONS(1956), - [anon_sym_SLASH2] = ACTIONS(1958), - [anon_sym_mod2] = ACTIONS(1956), - [anon_sym_SLASH_SLASH2] = ACTIONS(1956), - [anon_sym_PLUS2] = ACTIONS(1958), - [anon_sym_bit_DASHshl2] = ACTIONS(1956), - [anon_sym_bit_DASHshr2] = ACTIONS(1956), - [anon_sym_bit_DASHand2] = ACTIONS(1956), - [anon_sym_bit_DASHxor2] = ACTIONS(1956), - [anon_sym_bit_DASHor2] = ACTIONS(1956), - [anon_sym_err_GT] = ACTIONS(1958), - [anon_sym_out_GT] = ACTIONS(1958), - [anon_sym_e_GT] = ACTIONS(1958), - [anon_sym_o_GT] = ACTIONS(1958), - [anon_sym_err_PLUSout_GT] = ACTIONS(1958), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1958), - [anon_sym_o_PLUSe_GT] = ACTIONS(1958), - [anon_sym_e_PLUSo_GT] = ACTIONS(1958), - [anon_sym_err_GT_GT] = ACTIONS(1956), - [anon_sym_out_GT_GT] = ACTIONS(1956), - [anon_sym_e_GT_GT] = ACTIONS(1956), - [anon_sym_o_GT_GT] = ACTIONS(1956), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1956), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1956), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1956), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1956), - [sym__unquoted_pattern] = ACTIONS(1635), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(946)] = { - [sym_comment] = STATE(946), - [anon_sym_in] = ACTIONS(1713), - [sym__newline] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1713), - [anon_sym_err_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_GT_PIPE] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), - [anon_sym_RPAREN] = ACTIONS(1713), - [anon_sym_GT2] = ACTIONS(1614), - [anon_sym_DASH2] = ACTIONS(1713), - [anon_sym_LBRACE] = ACTIONS(1713), - [anon_sym_RBRACE] = ACTIONS(1713), - [anon_sym_EQ_GT] = ACTIONS(1713), - [anon_sym_STAR2] = ACTIONS(1614), - [anon_sym_and2] = ACTIONS(1713), - [anon_sym_xor2] = ACTIONS(1713), - [anon_sym_or2] = ACTIONS(1713), - [anon_sym_not_DASHin2] = ACTIONS(1713), - [anon_sym_has2] = ACTIONS(1713), - [anon_sym_not_DASHhas2] = ACTIONS(1713), - [anon_sym_starts_DASHwith2] = ACTIONS(1713), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1713), - [anon_sym_ends_DASHwith2] = ACTIONS(1713), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1713), - [anon_sym_EQ_EQ2] = ACTIONS(1713), - [anon_sym_BANG_EQ2] = ACTIONS(1713), - [anon_sym_LT2] = ACTIONS(1614), - [anon_sym_LT_EQ2] = ACTIONS(1713), - [anon_sym_GT_EQ2] = ACTIONS(1713), - [anon_sym_EQ_TILDE2] = ACTIONS(1713), - [anon_sym_BANG_TILDE2] = ACTIONS(1713), - [anon_sym_like2] = ACTIONS(1713), - [anon_sym_not_DASHlike2] = ACTIONS(1713), - [anon_sym_STAR_STAR2] = ACTIONS(1713), - [anon_sym_PLUS_PLUS2] = ACTIONS(1713), - [anon_sym_SLASH2] = ACTIONS(1614), - [anon_sym_mod2] = ACTIONS(1713), - [anon_sym_SLASH_SLASH2] = ACTIONS(1713), - [anon_sym_PLUS2] = ACTIONS(1614), - [anon_sym_bit_DASHshl2] = ACTIONS(1713), - [anon_sym_bit_DASHshr2] = ACTIONS(1713), - [anon_sym_bit_DASHand2] = ACTIONS(1713), - [anon_sym_bit_DASHxor2] = ACTIONS(1713), - [anon_sym_bit_DASHor2] = ACTIONS(1713), - [anon_sym_err_GT] = ACTIONS(1614), - [anon_sym_out_GT] = ACTIONS(1614), - [anon_sym_e_GT] = ACTIONS(1614), - [anon_sym_o_GT] = ACTIONS(1614), - [anon_sym_err_PLUSout_GT] = ACTIONS(1614), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1614), - [anon_sym_o_PLUSe_GT] = ACTIONS(1614), - [anon_sym_e_PLUSo_GT] = ACTIONS(1614), - [anon_sym_err_GT_GT] = ACTIONS(1713), - [anon_sym_out_GT_GT] = ACTIONS(1713), - [anon_sym_e_GT_GT] = ACTIONS(1713), - [anon_sym_o_GT_GT] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(947)] = { - [sym_comment] = STATE(947), - [anon_sym_in] = ACTIONS(2162), - [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(2164), - [anon_sym_DASH2] = ACTIONS(2162), - [anon_sym_LBRACE] = ACTIONS(2166), - [anon_sym_RBRACE] = ACTIONS(2166), - [anon_sym_EQ_GT] = ACTIONS(2166), - [anon_sym_STAR2] = ACTIONS(2164), - [anon_sym_and2] = ACTIONS(2162), - [anon_sym_xor2] = ACTIONS(2162), - [anon_sym_or2] = ACTIONS(2162), - [anon_sym_not_DASHin2] = ACTIONS(2162), - [anon_sym_has2] = ACTIONS(2162), - [anon_sym_not_DASHhas2] = ACTIONS(2162), - [anon_sym_starts_DASHwith2] = ACTIONS(2162), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2162), - [anon_sym_ends_DASHwith2] = ACTIONS(2162), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2162), - [anon_sym_EQ_EQ2] = ACTIONS(2162), - [anon_sym_BANG_EQ2] = ACTIONS(2162), - [anon_sym_LT2] = ACTIONS(2164), - [anon_sym_LT_EQ2] = ACTIONS(2162), - [anon_sym_GT_EQ2] = ACTIONS(2162), - [anon_sym_EQ_TILDE2] = ACTIONS(2162), - [anon_sym_BANG_TILDE2] = ACTIONS(2162), - [anon_sym_like2] = ACTIONS(2162), - [anon_sym_not_DASHlike2] = ACTIONS(2162), - [anon_sym_STAR_STAR2] = ACTIONS(2162), - [anon_sym_PLUS_PLUS2] = ACTIONS(2162), - [anon_sym_SLASH2] = ACTIONS(2164), - [anon_sym_mod2] = ACTIONS(2162), - [anon_sym_SLASH_SLASH2] = ACTIONS(2162), - [anon_sym_PLUS2] = ACTIONS(2164), - [anon_sym_bit_DASHshl2] = ACTIONS(2162), - [anon_sym_bit_DASHshr2] = ACTIONS(2162), - [anon_sym_bit_DASHand2] = ACTIONS(2162), - [anon_sym_bit_DASHxor2] = ACTIONS(2162), - [anon_sym_bit_DASHor2] = ACTIONS(2162), - [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), + [STATE(932)] = { + [sym_comment] = STATE(932), + [anon_sym_in] = ACTIONS(2132), + [sym__newline] = ACTIONS(2245), + [anon_sym_SEMI] = ACTIONS(2245), + [anon_sym_PIPE] = ACTIONS(2245), + [anon_sym_err_GT_PIPE] = ACTIONS(2245), + [anon_sym_out_GT_PIPE] = ACTIONS(2245), + [anon_sym_e_GT_PIPE] = ACTIONS(2245), + [anon_sym_o_GT_PIPE] = ACTIONS(2245), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2245), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2245), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2245), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2245), + [anon_sym_RPAREN] = ACTIONS(2245), + [anon_sym_GT2] = ACTIONS(2134), + [anon_sym_DASH2] = ACTIONS(2132), + [anon_sym_LBRACE] = ACTIONS(2245), + [anon_sym_RBRACE] = ACTIONS(2245), + [anon_sym_EQ_GT] = ACTIONS(2245), + [anon_sym_STAR2] = ACTIONS(2134), + [anon_sym_and2] = ACTIONS(2132), + [anon_sym_xor2] = ACTIONS(2132), + [anon_sym_or2] = ACTIONS(2132), + [anon_sym_not_DASHin2] = ACTIONS(2132), + [anon_sym_has2] = ACTIONS(2132), + [anon_sym_not_DASHhas2] = ACTIONS(2132), + [anon_sym_starts_DASHwith2] = ACTIONS(2132), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2132), + [anon_sym_ends_DASHwith2] = ACTIONS(2132), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2132), + [anon_sym_EQ_EQ2] = ACTIONS(2132), + [anon_sym_BANG_EQ2] = ACTIONS(2132), + [anon_sym_LT2] = ACTIONS(2134), + [anon_sym_LT_EQ2] = ACTIONS(2132), + [anon_sym_GT_EQ2] = ACTIONS(2132), + [anon_sym_EQ_TILDE2] = ACTIONS(2132), + [anon_sym_BANG_TILDE2] = ACTIONS(2132), + [anon_sym_like2] = ACTIONS(2132), + [anon_sym_not_DASHlike2] = ACTIONS(2132), + [anon_sym_STAR_STAR2] = ACTIONS(2132), + [anon_sym_PLUS_PLUS2] = ACTIONS(2132), + [anon_sym_SLASH2] = ACTIONS(2134), + [anon_sym_mod2] = ACTIONS(2132), + [anon_sym_SLASH_SLASH2] = ACTIONS(2132), + [anon_sym_PLUS2] = ACTIONS(2134), + [anon_sym_bit_DASHshl2] = ACTIONS(2132), + [anon_sym_bit_DASHshr2] = ACTIONS(2132), + [anon_sym_bit_DASHand2] = ACTIONS(2132), + [anon_sym_bit_DASHxor2] = ACTIONS(2132), + [anon_sym_bit_DASHor2] = ACTIONS(2132), + [anon_sym_err_GT] = ACTIONS(2247), + [anon_sym_out_GT] = ACTIONS(2247), + [anon_sym_e_GT] = ACTIONS(2247), + [anon_sym_o_GT] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT] = ACTIONS(2247), + [anon_sym_err_GT_GT] = ACTIONS(2245), + [anon_sym_out_GT_GT] = ACTIONS(2245), + [anon_sym_e_GT_GT] = ACTIONS(2245), + [anon_sym_o_GT_GT] = ACTIONS(2245), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2245), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2245), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2245), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2245), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(948)] = { - [sym_comment] = STATE(948), + [STATE(933)] = { + [sym_comment] = STATE(933), [anon_sym_in] = ACTIONS(2616), [sym__newline] = ACTIONS(2616), [anon_sym_SEMI] = ACTIONS(2616), @@ -118564,9 +118402,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -118587,6 +118423,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2616), [anon_sym_like2] = ACTIONS(2616), [anon_sym_not_DASHlike2] = ACTIONS(2616), + [anon_sym_LPAREN2] = ACTIONS(2620), [anon_sym_STAR_STAR2] = ACTIONS(2616), [anon_sym_PLUS_PLUS2] = ACTIONS(2616), [anon_sym_SLASH2] = ACTIONS(2618), @@ -118614,907 +118451,1460 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2616), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2616), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2616), + [sym__unquoted_pattern] = ACTIONS(2622), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(949)] = { - [sym_comment] = STATE(949), - [anon_sym_in] = ACTIONS(2620), - [sym__newline] = ACTIONS(2620), - [anon_sym_SEMI] = ACTIONS(2620), - [anon_sym_PIPE] = ACTIONS(2620), - [anon_sym_err_GT_PIPE] = ACTIONS(2620), - [anon_sym_out_GT_PIPE] = ACTIONS(2620), - [anon_sym_e_GT_PIPE] = ACTIONS(2620), - [anon_sym_o_GT_PIPE] = ACTIONS(2620), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2620), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2620), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2620), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2620), - [anon_sym_RPAREN] = ACTIONS(2620), - [anon_sym_GT2] = ACTIONS(2622), - [anon_sym_DASH2] = ACTIONS(2620), - [anon_sym_LBRACE] = ACTIONS(2620), - [anon_sym_RBRACE] = ACTIONS(2620), - [anon_sym_EQ_GT] = ACTIONS(2620), - [anon_sym_STAR2] = ACTIONS(2622), - [anon_sym_and2] = ACTIONS(2620), - [anon_sym_xor2] = ACTIONS(2620), - [anon_sym_or2] = ACTIONS(2620), - [anon_sym_not_DASHin2] = ACTIONS(2620), - [anon_sym_has2] = ACTIONS(2620), - [anon_sym_not_DASHhas2] = ACTIONS(2620), - [anon_sym_starts_DASHwith2] = ACTIONS(2620), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2620), - [anon_sym_ends_DASHwith2] = ACTIONS(2620), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2620), - [anon_sym_EQ_EQ2] = ACTIONS(2620), - [anon_sym_BANG_EQ2] = ACTIONS(2620), - [anon_sym_LT2] = ACTIONS(2622), - [anon_sym_LT_EQ2] = ACTIONS(2620), - [anon_sym_GT_EQ2] = ACTIONS(2620), - [anon_sym_EQ_TILDE2] = ACTIONS(2620), - [anon_sym_BANG_TILDE2] = ACTIONS(2620), - [anon_sym_like2] = ACTIONS(2620), - [anon_sym_not_DASHlike2] = ACTIONS(2620), - [anon_sym_STAR_STAR2] = ACTIONS(2620), - [anon_sym_PLUS_PLUS2] = ACTIONS(2620), - [anon_sym_SLASH2] = ACTIONS(2622), - [anon_sym_mod2] = ACTIONS(2620), - [anon_sym_SLASH_SLASH2] = ACTIONS(2620), - [anon_sym_PLUS2] = ACTIONS(2622), - [anon_sym_bit_DASHshl2] = ACTIONS(2620), - [anon_sym_bit_DASHshr2] = ACTIONS(2620), - [anon_sym_bit_DASHand2] = ACTIONS(2620), - [anon_sym_bit_DASHxor2] = ACTIONS(2620), - [anon_sym_bit_DASHor2] = ACTIONS(2620), - [anon_sym_err_GT] = ACTIONS(2622), - [anon_sym_out_GT] = ACTIONS(2622), - [anon_sym_e_GT] = ACTIONS(2622), - [anon_sym_o_GT] = ACTIONS(2622), - [anon_sym_err_PLUSout_GT] = ACTIONS(2622), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2622), - [anon_sym_o_PLUSe_GT] = ACTIONS(2622), - [anon_sym_e_PLUSo_GT] = ACTIONS(2622), - [anon_sym_err_GT_GT] = ACTIONS(2620), - [anon_sym_out_GT_GT] = ACTIONS(2620), - [anon_sym_e_GT_GT] = ACTIONS(2620), - [anon_sym_o_GT_GT] = ACTIONS(2620), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2620), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2620), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2620), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2620), + [STATE(934)] = { + [sym_comment] = STATE(934), + [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(950)] = { - [sym_comment] = STATE(950), - [ts_builtin_sym_end] = ACTIONS(2154), - [anon_sym_in] = ACTIONS(2154), - [sym__newline] = ACTIONS(2154), - [anon_sym_SEMI] = ACTIONS(2154), - [anon_sym_PIPE] = ACTIONS(2154), - [anon_sym_err_GT_PIPE] = ACTIONS(2154), - [anon_sym_out_GT_PIPE] = ACTIONS(2154), - [anon_sym_e_GT_PIPE] = ACTIONS(2154), - [anon_sym_o_GT_PIPE] = ACTIONS(2154), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2154), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2154), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2154), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2154), - [anon_sym_GT2] = ACTIONS(2156), - [anon_sym_DASH2] = ACTIONS(2154), - [anon_sym_STAR2] = ACTIONS(2156), - [anon_sym_and2] = ACTIONS(2154), - [anon_sym_xor2] = ACTIONS(2154), - [anon_sym_or2] = ACTIONS(2154), - [anon_sym_not_DASHin2] = ACTIONS(2154), - [anon_sym_has2] = ACTIONS(2154), - [anon_sym_not_DASHhas2] = ACTIONS(2154), - [anon_sym_starts_DASHwith2] = ACTIONS(2154), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2154), - [anon_sym_ends_DASHwith2] = ACTIONS(2154), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2154), - [anon_sym_EQ_EQ2] = ACTIONS(2154), - [anon_sym_BANG_EQ2] = ACTIONS(2154), - [anon_sym_LT2] = ACTIONS(2156), - [anon_sym_LT_EQ2] = ACTIONS(2154), - [anon_sym_GT_EQ2] = ACTIONS(2154), - [anon_sym_EQ_TILDE2] = ACTIONS(2154), - [anon_sym_BANG_TILDE2] = ACTIONS(2154), - [anon_sym_like2] = ACTIONS(2154), - [anon_sym_not_DASHlike2] = ACTIONS(2154), - [anon_sym_STAR_STAR2] = ACTIONS(2154), - [anon_sym_PLUS_PLUS2] = ACTIONS(2154), - [anon_sym_SLASH2] = ACTIONS(2156), - [anon_sym_mod2] = ACTIONS(2154), - [anon_sym_SLASH_SLASH2] = ACTIONS(2154), - [anon_sym_PLUS2] = ACTIONS(2156), - [anon_sym_bit_DASHshl2] = ACTIONS(2154), - [anon_sym_bit_DASHshr2] = ACTIONS(2154), - [anon_sym_bit_DASHand2] = ACTIONS(2154), - [anon_sym_bit_DASHxor2] = ACTIONS(2154), - [anon_sym_bit_DASHor2] = ACTIONS(2154), - [anon_sym_DOT_DOT2] = ACTIONS(2624), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2626), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2626), - [anon_sym_err_GT] = ACTIONS(2156), - [anon_sym_out_GT] = ACTIONS(2156), - [anon_sym_e_GT] = ACTIONS(2156), - [anon_sym_o_GT] = ACTIONS(2156), - [anon_sym_err_PLUSout_GT] = ACTIONS(2156), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2156), - [anon_sym_o_PLUSe_GT] = ACTIONS(2156), - [anon_sym_e_PLUSo_GT] = ACTIONS(2156), - [anon_sym_err_GT_GT] = ACTIONS(2154), - [anon_sym_out_GT_GT] = ACTIONS(2154), - [anon_sym_e_GT_GT] = ACTIONS(2154), - [anon_sym_o_GT_GT] = ACTIONS(2154), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2154), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2154), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2154), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2154), + [STATE(935)] = { + [sym_comment] = STATE(935), + [ts_builtin_sym_end] = ACTIONS(2132), + [anon_sym_in] = ACTIONS(2132), + [sym__newline] = ACTIONS(2132), + [anon_sym_SEMI] = ACTIONS(2132), + [anon_sym_PIPE] = ACTIONS(2132), + [anon_sym_err_GT_PIPE] = ACTIONS(2132), + [anon_sym_out_GT_PIPE] = ACTIONS(2132), + [anon_sym_e_GT_PIPE] = ACTIONS(2132), + [anon_sym_o_GT_PIPE] = ACTIONS(2132), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2132), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2132), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2132), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2132), + [anon_sym_GT2] = ACTIONS(2134), + [anon_sym_DASH2] = ACTIONS(2132), + [anon_sym_STAR2] = ACTIONS(2134), + [anon_sym_and2] = ACTIONS(2132), + [anon_sym_xor2] = ACTIONS(2132), + [anon_sym_or2] = ACTIONS(2132), + [anon_sym_not_DASHin2] = ACTIONS(2132), + [anon_sym_has2] = ACTIONS(2132), + [anon_sym_not_DASHhas2] = ACTIONS(2132), + [anon_sym_starts_DASHwith2] = ACTIONS(2132), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2132), + [anon_sym_ends_DASHwith2] = ACTIONS(2132), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2132), + [anon_sym_EQ_EQ2] = ACTIONS(2132), + [anon_sym_BANG_EQ2] = ACTIONS(2132), + [anon_sym_LT2] = ACTIONS(2134), + [anon_sym_LT_EQ2] = ACTIONS(2132), + [anon_sym_GT_EQ2] = ACTIONS(2132), + [anon_sym_EQ_TILDE2] = ACTIONS(2132), + [anon_sym_BANG_TILDE2] = ACTIONS(2132), + [anon_sym_like2] = ACTIONS(2132), + [anon_sym_not_DASHlike2] = ACTIONS(2132), + [anon_sym_STAR_STAR2] = ACTIONS(2132), + [anon_sym_PLUS_PLUS2] = ACTIONS(2132), + [anon_sym_SLASH2] = ACTIONS(2134), + [anon_sym_mod2] = ACTIONS(2132), + [anon_sym_SLASH_SLASH2] = ACTIONS(2132), + [anon_sym_PLUS2] = ACTIONS(2134), + [anon_sym_bit_DASHshl2] = ACTIONS(2132), + [anon_sym_bit_DASHshr2] = ACTIONS(2132), + [anon_sym_bit_DASHand2] = ACTIONS(2132), + [anon_sym_bit_DASHxor2] = ACTIONS(2132), + [anon_sym_bit_DASHor2] = ACTIONS(2132), + [anon_sym_DOT_DOT2] = ACTIONS(1750), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1752), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1752), + [anon_sym_err_GT] = ACTIONS(2134), + [anon_sym_out_GT] = ACTIONS(2134), + [anon_sym_e_GT] = ACTIONS(2134), + [anon_sym_o_GT] = ACTIONS(2134), + [anon_sym_err_PLUSout_GT] = ACTIONS(2134), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2134), + [anon_sym_o_PLUSe_GT] = ACTIONS(2134), + [anon_sym_e_PLUSo_GT] = ACTIONS(2134), + [anon_sym_err_GT_GT] = ACTIONS(2132), + [anon_sym_out_GT_GT] = ACTIONS(2132), + [anon_sym_e_GT_GT] = ACTIONS(2132), + [anon_sym_o_GT_GT] = ACTIONS(2132), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2132), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2132), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2132), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2132), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(951)] = { - [sym_comment] = STATE(951), - [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_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), + [STATE(936)] = { + [sym_comment] = STATE(936), + [ts_builtin_sym_end] = ACTIONS(1972), + [anon_sym_in] = ACTIONS(1972), + [sym__newline] = ACTIONS(1972), + [anon_sym_SEMI] = ACTIONS(1972), + [anon_sym_PIPE] = ACTIONS(1972), + [anon_sym_err_GT_PIPE] = ACTIONS(1972), + [anon_sym_out_GT_PIPE] = ACTIONS(1972), + [anon_sym_e_GT_PIPE] = ACTIONS(1972), + [anon_sym_o_GT_PIPE] = ACTIONS(1972), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1972), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1972), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1972), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1972), + [anon_sym_GT2] = ACTIONS(1974), + [anon_sym_DASH2] = ACTIONS(1972), + [anon_sym_STAR2] = ACTIONS(1974), + [anon_sym_and2] = ACTIONS(1972), + [anon_sym_xor2] = ACTIONS(1972), + [anon_sym_or2] = ACTIONS(1972), + [anon_sym_not_DASHin2] = ACTIONS(1972), + [anon_sym_has2] = ACTIONS(1972), + [anon_sym_not_DASHhas2] = ACTIONS(1972), + [anon_sym_starts_DASHwith2] = ACTIONS(1972), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1972), + [anon_sym_ends_DASHwith2] = ACTIONS(1972), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1972), + [anon_sym_EQ_EQ2] = ACTIONS(1972), + [anon_sym_BANG_EQ2] = ACTIONS(1972), + [anon_sym_LT2] = ACTIONS(1974), + [anon_sym_LT_EQ2] = ACTIONS(1972), + [anon_sym_GT_EQ2] = ACTIONS(1972), + [anon_sym_EQ_TILDE2] = ACTIONS(1972), + [anon_sym_BANG_TILDE2] = ACTIONS(1972), + [anon_sym_like2] = ACTIONS(1972), + [anon_sym_not_DASHlike2] = ACTIONS(1972), + [anon_sym_STAR_STAR2] = ACTIONS(1972), + [anon_sym_PLUS_PLUS2] = ACTIONS(1972), + [anon_sym_SLASH2] = ACTIONS(1974), + [anon_sym_mod2] = ACTIONS(1972), + [anon_sym_SLASH_SLASH2] = ACTIONS(1972), + [anon_sym_PLUS2] = ACTIONS(1974), + [anon_sym_bit_DASHshl2] = ACTIONS(1972), + [anon_sym_bit_DASHshr2] = ACTIONS(1972), + [anon_sym_bit_DASHand2] = ACTIONS(1972), + [anon_sym_bit_DASHxor2] = ACTIONS(1972), + [anon_sym_bit_DASHor2] = ACTIONS(1972), + [anon_sym_DOT_DOT2] = ACTIONS(2628), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2630), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2630), + [anon_sym_err_GT] = ACTIONS(1974), + [anon_sym_out_GT] = ACTIONS(1974), + [anon_sym_e_GT] = ACTIONS(1974), + [anon_sym_o_GT] = ACTIONS(1974), + [anon_sym_err_PLUSout_GT] = ACTIONS(1974), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1974), + [anon_sym_o_PLUSe_GT] = ACTIONS(1974), + [anon_sym_e_PLUSo_GT] = ACTIONS(1974), + [anon_sym_err_GT_GT] = ACTIONS(1972), + [anon_sym_out_GT_GT] = ACTIONS(1972), + [anon_sym_e_GT_GT] = ACTIONS(1972), + [anon_sym_o_GT_GT] = ACTIONS(1972), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1972), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1972), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1972), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1972), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(952)] = { - [sym_comment] = STATE(952), - [ts_builtin_sym_end] = ACTIONS(2162), - [anon_sym_in] = ACTIONS(2162), - [sym__newline] = ACTIONS(2162), - [anon_sym_SEMI] = ACTIONS(2162), - [anon_sym_PIPE] = ACTIONS(2162), - [anon_sym_err_GT_PIPE] = ACTIONS(2162), - [anon_sym_out_GT_PIPE] = ACTIONS(2162), - [anon_sym_e_GT_PIPE] = ACTIONS(2162), - [anon_sym_o_GT_PIPE] = ACTIONS(2162), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2162), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2162), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2162), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2162), - [anon_sym_GT2] = ACTIONS(2164), - [anon_sym_DASH2] = ACTIONS(2162), - [anon_sym_STAR2] = ACTIONS(2164), - [anon_sym_and2] = ACTIONS(2162), - [anon_sym_xor2] = ACTIONS(2162), - [anon_sym_or2] = ACTIONS(2162), - [anon_sym_not_DASHin2] = ACTIONS(2162), - [anon_sym_has2] = ACTIONS(2162), - [anon_sym_not_DASHhas2] = ACTIONS(2162), - [anon_sym_starts_DASHwith2] = ACTIONS(2162), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2162), - [anon_sym_ends_DASHwith2] = ACTIONS(2162), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2162), - [anon_sym_EQ_EQ2] = ACTIONS(2162), - [anon_sym_BANG_EQ2] = ACTIONS(2162), - [anon_sym_LT2] = ACTIONS(2164), - [anon_sym_LT_EQ2] = ACTIONS(2162), - [anon_sym_GT_EQ2] = ACTIONS(2162), - [anon_sym_EQ_TILDE2] = ACTIONS(2162), - [anon_sym_BANG_TILDE2] = ACTIONS(2162), - [anon_sym_like2] = ACTIONS(2162), - [anon_sym_not_DASHlike2] = ACTIONS(2162), - [anon_sym_STAR_STAR2] = ACTIONS(2162), - [anon_sym_PLUS_PLUS2] = ACTIONS(2162), - [anon_sym_SLASH2] = ACTIONS(2164), - [anon_sym_mod2] = ACTIONS(2162), - [anon_sym_SLASH_SLASH2] = ACTIONS(2162), - [anon_sym_PLUS2] = ACTIONS(2164), - [anon_sym_bit_DASHshl2] = ACTIONS(2162), - [anon_sym_bit_DASHshr2] = ACTIONS(2162), - [anon_sym_bit_DASHand2] = ACTIONS(2162), - [anon_sym_bit_DASHxor2] = ACTIONS(2162), - [anon_sym_bit_DASHor2] = ACTIONS(2162), - [anon_sym_DOT_DOT2] = ACTIONS(1766), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1768), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1768), - [anon_sym_err_GT] = ACTIONS(2164), - [anon_sym_out_GT] = ACTIONS(2164), - [anon_sym_e_GT] = ACTIONS(2164), - [anon_sym_o_GT] = ACTIONS(2164), - [anon_sym_err_PLUSout_GT] = ACTIONS(2164), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2164), - [anon_sym_o_PLUSe_GT] = ACTIONS(2164), - [anon_sym_e_PLUSo_GT] = ACTIONS(2164), - [anon_sym_err_GT_GT] = ACTIONS(2162), - [anon_sym_out_GT_GT] = ACTIONS(2162), - [anon_sym_e_GT_GT] = ACTIONS(2162), - [anon_sym_o_GT_GT] = ACTIONS(2162), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2162), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2162), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2162), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2162), + [STATE(937)] = { + [sym_comment] = STATE(937), + [ts_builtin_sym_end] = ACTIONS(1842), + [anon_sym_in] = ACTIONS(1842), + [sym__newline] = ACTIONS(1842), + [anon_sym_SEMI] = ACTIONS(1842), + [anon_sym_PIPE] = ACTIONS(1842), + [anon_sym_err_GT_PIPE] = ACTIONS(1842), + [anon_sym_out_GT_PIPE] = ACTIONS(1842), + [anon_sym_e_GT_PIPE] = ACTIONS(1842), + [anon_sym_o_GT_PIPE] = ACTIONS(1842), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1842), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1842), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1842), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1842), + [anon_sym_GT2] = ACTIONS(1844), + [anon_sym_DASH2] = ACTIONS(1842), + [anon_sym_STAR2] = ACTIONS(1844), + [anon_sym_and2] = ACTIONS(1842), + [anon_sym_xor2] = ACTIONS(1842), + [anon_sym_or2] = ACTIONS(1842), + [anon_sym_not_DASHin2] = ACTIONS(1842), + [anon_sym_has2] = ACTIONS(1842), + [anon_sym_not_DASHhas2] = ACTIONS(1842), + [anon_sym_starts_DASHwith2] = ACTIONS(1842), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1842), + [anon_sym_ends_DASHwith2] = ACTIONS(1842), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1842), + [anon_sym_EQ_EQ2] = ACTIONS(1842), + [anon_sym_BANG_EQ2] = ACTIONS(1842), + [anon_sym_LT2] = ACTIONS(1844), + [anon_sym_LT_EQ2] = ACTIONS(1842), + [anon_sym_GT_EQ2] = ACTIONS(1842), + [anon_sym_EQ_TILDE2] = ACTIONS(1842), + [anon_sym_BANG_TILDE2] = ACTIONS(1842), + [anon_sym_like2] = ACTIONS(1842), + [anon_sym_not_DASHlike2] = ACTIONS(1842), + [anon_sym_STAR_STAR2] = ACTIONS(1842), + [anon_sym_PLUS_PLUS2] = ACTIONS(1842), + [anon_sym_SLASH2] = ACTIONS(1844), + [anon_sym_mod2] = ACTIONS(1842), + [anon_sym_SLASH_SLASH2] = ACTIONS(1842), + [anon_sym_PLUS2] = ACTIONS(1844), + [anon_sym_bit_DASHshl2] = ACTIONS(1842), + [anon_sym_bit_DASHshr2] = ACTIONS(1842), + [anon_sym_bit_DASHand2] = ACTIONS(1842), + [anon_sym_bit_DASHxor2] = ACTIONS(1842), + [anon_sym_bit_DASHor2] = ACTIONS(1842), + [anon_sym_DOT_DOT2] = ACTIONS(1844), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1842), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1842), + [anon_sym_err_GT] = ACTIONS(1844), + [anon_sym_out_GT] = ACTIONS(1844), + [anon_sym_e_GT] = ACTIONS(1844), + [anon_sym_o_GT] = ACTIONS(1844), + [anon_sym_err_PLUSout_GT] = ACTIONS(1844), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1844), + [anon_sym_o_PLUSe_GT] = ACTIONS(1844), + [anon_sym_e_PLUSo_GT] = ACTIONS(1844), + [anon_sym_err_GT_GT] = ACTIONS(1842), + [anon_sym_out_GT_GT] = ACTIONS(1842), + [anon_sym_e_GT_GT] = ACTIONS(1842), + [anon_sym_o_GT_GT] = ACTIONS(1842), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1842), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1842), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1842), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1842), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(953)] = { - [sym_comment] = STATE(953), - [ts_builtin_sym_end] = ACTIONS(1956), - [anon_sym_in] = ACTIONS(1956), - [sym__newline] = ACTIONS(1956), - [anon_sym_SEMI] = ACTIONS(1956), - [anon_sym_PIPE] = ACTIONS(1956), - [anon_sym_err_GT_PIPE] = ACTIONS(1956), - [anon_sym_out_GT_PIPE] = ACTIONS(1956), - [anon_sym_e_GT_PIPE] = ACTIONS(1956), - [anon_sym_o_GT_PIPE] = ACTIONS(1956), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1956), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1956), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1956), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1956), - [anon_sym_GT2] = ACTIONS(1958), - [anon_sym_DASH2] = ACTIONS(1956), - [anon_sym_STAR2] = ACTIONS(1958), - [anon_sym_and2] = ACTIONS(1956), - [anon_sym_xor2] = ACTIONS(1956), - [anon_sym_or2] = ACTIONS(1956), - [anon_sym_not_DASHin2] = ACTIONS(1956), - [anon_sym_has2] = ACTIONS(1956), - [anon_sym_not_DASHhas2] = ACTIONS(1956), - [anon_sym_starts_DASHwith2] = ACTIONS(1956), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1956), - [anon_sym_ends_DASHwith2] = ACTIONS(1956), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1956), - [anon_sym_EQ_EQ2] = ACTIONS(1956), - [anon_sym_BANG_EQ2] = ACTIONS(1956), - [anon_sym_LT2] = ACTIONS(1958), - [anon_sym_LT_EQ2] = ACTIONS(1956), - [anon_sym_GT_EQ2] = ACTIONS(1956), - [anon_sym_EQ_TILDE2] = ACTIONS(1956), - [anon_sym_BANG_TILDE2] = ACTIONS(1956), - [anon_sym_like2] = ACTIONS(1956), - [anon_sym_not_DASHlike2] = ACTIONS(1956), - [anon_sym_STAR_STAR2] = ACTIONS(1956), - [anon_sym_PLUS_PLUS2] = ACTIONS(1956), - [anon_sym_SLASH2] = ACTIONS(1958), - [anon_sym_mod2] = ACTIONS(1956), - [anon_sym_SLASH_SLASH2] = ACTIONS(1956), - [anon_sym_PLUS2] = ACTIONS(1958), - [anon_sym_bit_DASHshl2] = ACTIONS(1956), - [anon_sym_bit_DASHshr2] = ACTIONS(1956), - [anon_sym_bit_DASHand2] = ACTIONS(1956), - [anon_sym_bit_DASHxor2] = ACTIONS(1956), - [anon_sym_bit_DASHor2] = ACTIONS(1956), - [anon_sym_DOT_DOT2] = ACTIONS(2628), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2630), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2630), - [anon_sym_err_GT] = ACTIONS(1958), - [anon_sym_out_GT] = ACTIONS(1958), - [anon_sym_e_GT] = ACTIONS(1958), - [anon_sym_o_GT] = ACTIONS(1958), - [anon_sym_err_PLUSout_GT] = ACTIONS(1958), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1958), - [anon_sym_o_PLUSe_GT] = ACTIONS(1958), - [anon_sym_e_PLUSo_GT] = ACTIONS(1958), - [anon_sym_err_GT_GT] = ACTIONS(1956), - [anon_sym_out_GT_GT] = ACTIONS(1956), - [anon_sym_e_GT_GT] = ACTIONS(1956), - [anon_sym_o_GT_GT] = ACTIONS(1956), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1956), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1956), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1956), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1956), + [STATE(938)] = { + [sym_comment] = STATE(938), + [anon_sym_in] = ACTIONS(1226), + [sym__newline] = ACTIONS(1226), + [anon_sym_SEMI] = ACTIONS(1226), + [anon_sym_PIPE] = ACTIONS(1226), + [anon_sym_err_GT_PIPE] = ACTIONS(1226), + [anon_sym_out_GT_PIPE] = ACTIONS(1226), + [anon_sym_e_GT_PIPE] = ACTIONS(1226), + [anon_sym_o_GT_PIPE] = ACTIONS(1226), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1226), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1226), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1226), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1226), + [anon_sym_RPAREN] = ACTIONS(1226), + [anon_sym_GT2] = ACTIONS(1012), + [anon_sym_DASH2] = ACTIONS(1226), + [anon_sym_RBRACE] = ACTIONS(1226), + [anon_sym_STAR2] = ACTIONS(1012), + [anon_sym_and2] = ACTIONS(1226), + [anon_sym_xor2] = ACTIONS(1226), + [anon_sym_or2] = ACTIONS(1226), + [anon_sym_not_DASHin2] = ACTIONS(1226), + [anon_sym_has2] = ACTIONS(1226), + [anon_sym_not_DASHhas2] = ACTIONS(1226), + [anon_sym_starts_DASHwith2] = ACTIONS(1226), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1226), + [anon_sym_ends_DASHwith2] = ACTIONS(1226), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1226), + [anon_sym_EQ_EQ2] = ACTIONS(1226), + [anon_sym_BANG_EQ2] = ACTIONS(1226), + [anon_sym_LT2] = ACTIONS(1012), + [anon_sym_LT_EQ2] = ACTIONS(1226), + [anon_sym_GT_EQ2] = ACTIONS(1226), + [anon_sym_EQ_TILDE2] = ACTIONS(1226), + [anon_sym_BANG_TILDE2] = ACTIONS(1226), + [anon_sym_like2] = ACTIONS(1226), + [anon_sym_not_DASHlike2] = ACTIONS(1226), + [anon_sym_LPAREN2] = ACTIONS(2632), + [anon_sym_STAR_STAR2] = ACTIONS(1226), + [anon_sym_PLUS_PLUS2] = ACTIONS(1226), + [anon_sym_SLASH2] = ACTIONS(1012), + [anon_sym_mod2] = ACTIONS(1226), + [anon_sym_SLASH_SLASH2] = ACTIONS(1226), + [anon_sym_PLUS2] = ACTIONS(1012), + [anon_sym_bit_DASHshl2] = ACTIONS(1226), + [anon_sym_bit_DASHshr2] = ACTIONS(1226), + [anon_sym_bit_DASHand2] = ACTIONS(1226), + [anon_sym_bit_DASHxor2] = ACTIONS(1226), + [anon_sym_bit_DASHor2] = ACTIONS(1226), + [anon_sym_err_GT] = ACTIONS(1012), + [anon_sym_out_GT] = ACTIONS(1012), + [anon_sym_e_GT] = ACTIONS(1012), + [anon_sym_o_GT] = ACTIONS(1012), + [anon_sym_err_PLUSout_GT] = ACTIONS(1012), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1012), + [anon_sym_o_PLUSe_GT] = ACTIONS(1012), + [anon_sym_e_PLUSo_GT] = ACTIONS(1012), + [anon_sym_err_GT_GT] = ACTIONS(1226), + [anon_sym_out_GT_GT] = ACTIONS(1226), + [anon_sym_e_GT_GT] = ACTIONS(1226), + [anon_sym_o_GT_GT] = ACTIONS(1226), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1226), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1226), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1226), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1226), + [sym__unquoted_pattern] = ACTIONS(2634), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(954)] = { - [sym_comment] = STATE(954), - [anon_sym_in] = ACTIONS(2632), - [sym__newline] = ACTIONS(2632), - [anon_sym_SEMI] = ACTIONS(2632), - [anon_sym_PIPE] = ACTIONS(2632), - [anon_sym_err_GT_PIPE] = ACTIONS(2632), - [anon_sym_out_GT_PIPE] = ACTIONS(2632), - [anon_sym_e_GT_PIPE] = ACTIONS(2632), - [anon_sym_o_GT_PIPE] = ACTIONS(2632), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2632), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2632), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2632), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2632), - [anon_sym_RPAREN] = ACTIONS(2632), - [anon_sym_GT2] = ACTIONS(2634), - [anon_sym_DASH2] = ACTIONS(2632), - [anon_sym_LBRACE] = ACTIONS(2632), - [anon_sym_RBRACE] = ACTIONS(2632), - [anon_sym_EQ_GT] = ACTIONS(2632), - [anon_sym_STAR2] = ACTIONS(2634), - [anon_sym_and2] = ACTIONS(2632), - [anon_sym_xor2] = ACTIONS(2632), - [anon_sym_or2] = ACTIONS(2632), - [anon_sym_not_DASHin2] = ACTIONS(2632), - [anon_sym_has2] = ACTIONS(2632), - [anon_sym_not_DASHhas2] = ACTIONS(2632), - [anon_sym_starts_DASHwith2] = ACTIONS(2632), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2632), - [anon_sym_ends_DASHwith2] = ACTIONS(2632), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2632), - [anon_sym_EQ_EQ2] = ACTIONS(2632), - [anon_sym_BANG_EQ2] = ACTIONS(2632), - [anon_sym_LT2] = ACTIONS(2634), - [anon_sym_LT_EQ2] = ACTIONS(2632), - [anon_sym_GT_EQ2] = ACTIONS(2632), - [anon_sym_EQ_TILDE2] = ACTIONS(2632), - [anon_sym_BANG_TILDE2] = ACTIONS(2632), - [anon_sym_like2] = ACTIONS(2632), - [anon_sym_not_DASHlike2] = ACTIONS(2632), - [anon_sym_STAR_STAR2] = ACTIONS(2632), - [anon_sym_PLUS_PLUS2] = ACTIONS(2632), - [anon_sym_SLASH2] = ACTIONS(2634), - [anon_sym_mod2] = ACTIONS(2632), - [anon_sym_SLASH_SLASH2] = ACTIONS(2632), - [anon_sym_PLUS2] = ACTIONS(2634), - [anon_sym_bit_DASHshl2] = ACTIONS(2632), - [anon_sym_bit_DASHshr2] = ACTIONS(2632), - [anon_sym_bit_DASHand2] = ACTIONS(2632), - [anon_sym_bit_DASHxor2] = ACTIONS(2632), - [anon_sym_bit_DASHor2] = ACTIONS(2632), - [anon_sym_err_GT] = ACTIONS(2634), - [anon_sym_out_GT] = ACTIONS(2634), - [anon_sym_e_GT] = ACTIONS(2634), - [anon_sym_o_GT] = ACTIONS(2634), - [anon_sym_err_PLUSout_GT] = ACTIONS(2634), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2634), - [anon_sym_o_PLUSe_GT] = ACTIONS(2634), - [anon_sym_e_PLUSo_GT] = ACTIONS(2634), - [anon_sym_err_GT_GT] = ACTIONS(2632), - [anon_sym_out_GT_GT] = ACTIONS(2632), - [anon_sym_e_GT_GT] = ACTIONS(2632), - [anon_sym_o_GT_GT] = ACTIONS(2632), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2632), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2632), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2632), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2632), + [STATE(939)] = { + [sym_comment] = STATE(939), + [anon_sym_export] = ACTIONS(1968), + [anon_sym_alias] = ACTIONS(1966), + [anon_sym_let] = ACTIONS(1966), + [anon_sym_mut] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(1966), + [aux_sym_cmd_identifier_token1] = ACTIONS(1968), + [anon_sym_def] = ACTIONS(1966), + [anon_sym_use] = ACTIONS(1966), + [anon_sym_export_DASHenv] = ACTIONS(1966), + [anon_sym_extern] = ACTIONS(1966), + [anon_sym_module] = ACTIONS(1966), + [anon_sym_for] = ACTIONS(1966), + [anon_sym_loop] = ACTIONS(1966), + [anon_sym_while] = ACTIONS(1966), + [anon_sym_if] = ACTIONS(1966), + [anon_sym_else] = ACTIONS(1966), + [anon_sym_try] = ACTIONS(1966), + [anon_sym_catch] = ACTIONS(1966), + [anon_sym_finally] = ACTIONS(1966), + [anon_sym_match] = ACTIONS(1966), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_null] = ACTIONS(1966), + [aux_sym_cmd_identifier_token3] = ACTIONS(1966), + [aux_sym_cmd_identifier_token4] = ACTIONS(1966), + [aux_sym_cmd_identifier_token5] = ACTIONS(1966), + [sym__newline] = ACTIONS(1966), + [anon_sym_PIPE] = ACTIONS(1966), + [anon_sym_err_GT_PIPE] = ACTIONS(1966), + [anon_sym_out_GT_PIPE] = ACTIONS(1966), + [anon_sym_e_GT_PIPE] = ACTIONS(1966), + [anon_sym_o_GT_PIPE] = ACTIONS(1966), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1966), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1966), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1966), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1966), + [anon_sym_LBRACK] = ACTIONS(1966), + [anon_sym_LPAREN] = ACTIONS(1966), + [anon_sym_DOLLAR] = ACTIONS(1968), + [anon_sym_DASH2] = ACTIONS(1968), + [anon_sym_LBRACE] = ACTIONS(1966), + [anon_sym_DOT_DOT] = ACTIONS(1968), + [anon_sym_where] = ACTIONS(1966), + [aux_sym_expr_unary_token1] = ACTIONS(1966), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1966), + [anon_sym_DOT_DOT_LT] = ACTIONS(1966), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1966), + [aux_sym__val_number_decimal_token3] = ACTIONS(1966), + [aux_sym__val_number_decimal_token4] = ACTIONS(1966), + [aux_sym__val_number_token1] = ACTIONS(1966), + [aux_sym__val_number_token2] = ACTIONS(1966), + [aux_sym__val_number_token3] = ACTIONS(1966), + [anon_sym_0b] = ACTIONS(1968), + [anon_sym_0o] = ACTIONS(1968), + [anon_sym_0x] = ACTIONS(1968), + [sym_val_date] = ACTIONS(1966), + [anon_sym_DQUOTE] = ACTIONS(1966), + [anon_sym_SQUOTE] = ACTIONS(1966), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1966), + [anon_sym_CARET] = ACTIONS(1966), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1966), }, - [STATE(955)] = { - [sym_comment] = STATE(955), - [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), + [STATE(940)] = { + [sym_comment] = STATE(940), + [anon_sym_in] = ACTIONS(2132), + [sym__newline] = ACTIONS(2132), + [anon_sym_SEMI] = ACTIONS(2132), + [anon_sym_PIPE] = ACTIONS(2132), + [anon_sym_err_GT_PIPE] = ACTIONS(2132), + [anon_sym_out_GT_PIPE] = ACTIONS(2132), + [anon_sym_e_GT_PIPE] = ACTIONS(2132), + [anon_sym_o_GT_PIPE] = ACTIONS(2132), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2132), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2132), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2132), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2132), + [anon_sym_RPAREN] = ACTIONS(2132), + [anon_sym_GT2] = ACTIONS(2134), + [anon_sym_DASH2] = ACTIONS(2132), + [anon_sym_LBRACE] = ACTIONS(2132), + [anon_sym_RBRACE] = ACTIONS(2132), + [anon_sym_EQ_GT] = ACTIONS(2132), + [anon_sym_STAR2] = ACTIONS(2134), + [anon_sym_and2] = ACTIONS(2132), + [anon_sym_xor2] = ACTIONS(2132), + [anon_sym_or2] = ACTIONS(2132), + [anon_sym_not_DASHin2] = ACTIONS(2132), + [anon_sym_has2] = ACTIONS(2132), + [anon_sym_not_DASHhas2] = ACTIONS(2132), + [anon_sym_starts_DASHwith2] = ACTIONS(2132), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2132), + [anon_sym_ends_DASHwith2] = ACTIONS(2132), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2132), + [anon_sym_EQ_EQ2] = ACTIONS(2132), + [anon_sym_BANG_EQ2] = ACTIONS(2132), + [anon_sym_LT2] = ACTIONS(2134), + [anon_sym_LT_EQ2] = ACTIONS(2132), + [anon_sym_GT_EQ2] = ACTIONS(2132), + [anon_sym_EQ_TILDE2] = ACTIONS(2132), + [anon_sym_BANG_TILDE2] = ACTIONS(2132), + [anon_sym_like2] = ACTIONS(2132), + [anon_sym_not_DASHlike2] = ACTIONS(2132), + [anon_sym_STAR_STAR2] = ACTIONS(2132), + [anon_sym_PLUS_PLUS2] = ACTIONS(2132), + [anon_sym_SLASH2] = ACTIONS(2134), + [anon_sym_mod2] = ACTIONS(2132), + [anon_sym_SLASH_SLASH2] = ACTIONS(2132), + [anon_sym_PLUS2] = ACTIONS(2134), + [anon_sym_bit_DASHshl2] = ACTIONS(2132), + [anon_sym_bit_DASHshr2] = ACTIONS(2132), + [anon_sym_bit_DASHand2] = ACTIONS(2132), + [anon_sym_bit_DASHxor2] = ACTIONS(2132), + [anon_sym_bit_DASHor2] = ACTIONS(2132), + [anon_sym_err_GT] = ACTIONS(2134), + [anon_sym_out_GT] = ACTIONS(2134), + [anon_sym_e_GT] = ACTIONS(2134), + [anon_sym_o_GT] = ACTIONS(2134), + [anon_sym_err_PLUSout_GT] = ACTIONS(2134), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2134), + [anon_sym_o_PLUSe_GT] = ACTIONS(2134), + [anon_sym_e_PLUSo_GT] = ACTIONS(2134), + [anon_sym_err_GT_GT] = ACTIONS(2132), + [anon_sym_out_GT_GT] = ACTIONS(2132), + [anon_sym_e_GT_GT] = ACTIONS(2132), + [anon_sym_o_GT_GT] = ACTIONS(2132), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2132), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2132), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2132), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2132), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(956)] = { - [sym_comment] = STATE(956), - [anon_sym_in] = ACTIONS(2597), - [sym__newline] = ACTIONS(2597), - [anon_sym_SEMI] = ACTIONS(2597), - [anon_sym_PIPE] = ACTIONS(2597), - [anon_sym_err_GT_PIPE] = ACTIONS(2597), - [anon_sym_out_GT_PIPE] = ACTIONS(2597), - [anon_sym_e_GT_PIPE] = ACTIONS(2597), - [anon_sym_o_GT_PIPE] = ACTIONS(2597), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2597), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2597), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2597), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2597), - [anon_sym_RPAREN] = ACTIONS(2597), - [anon_sym_GT2] = ACTIONS(2599), - [anon_sym_DASH2] = ACTIONS(2597), - [anon_sym_RBRACE] = ACTIONS(2597), - [anon_sym_STAR2] = ACTIONS(2599), - [anon_sym_and2] = ACTIONS(2597), - [anon_sym_xor2] = ACTIONS(2597), - [anon_sym_or2] = ACTIONS(2597), - [anon_sym_not_DASHin2] = ACTIONS(2597), - [anon_sym_has2] = ACTIONS(2597), - [anon_sym_not_DASHhas2] = ACTIONS(2597), - [anon_sym_starts_DASHwith2] = ACTIONS(2597), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2597), - [anon_sym_ends_DASHwith2] = ACTIONS(2597), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2597), - [anon_sym_EQ_EQ2] = ACTIONS(2597), - [anon_sym_BANG_EQ2] = ACTIONS(2597), - [anon_sym_LT2] = ACTIONS(2599), - [anon_sym_LT_EQ2] = ACTIONS(2597), - [anon_sym_GT_EQ2] = ACTIONS(2597), - [anon_sym_EQ_TILDE2] = ACTIONS(2597), - [anon_sym_BANG_TILDE2] = ACTIONS(2597), - [anon_sym_like2] = ACTIONS(2597), - [anon_sym_not_DASHlike2] = ACTIONS(2597), - [anon_sym_LPAREN2] = ACTIONS(1977), - [anon_sym_STAR_STAR2] = ACTIONS(2597), - [anon_sym_PLUS_PLUS2] = ACTIONS(2597), - [anon_sym_SLASH2] = ACTIONS(2599), - [anon_sym_mod2] = ACTIONS(2597), - [anon_sym_SLASH_SLASH2] = ACTIONS(2597), - [anon_sym_PLUS2] = ACTIONS(2599), - [anon_sym_bit_DASHshl2] = ACTIONS(2597), - [anon_sym_bit_DASHshr2] = ACTIONS(2597), - [anon_sym_bit_DASHand2] = ACTIONS(2597), - [anon_sym_bit_DASHxor2] = ACTIONS(2597), - [anon_sym_bit_DASHor2] = ACTIONS(2597), - [anon_sym_err_GT] = ACTIONS(2599), - [anon_sym_out_GT] = ACTIONS(2599), - [anon_sym_e_GT] = ACTIONS(2599), - [anon_sym_o_GT] = ACTIONS(2599), - [anon_sym_err_PLUSout_GT] = ACTIONS(2599), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2599), - [anon_sym_o_PLUSe_GT] = ACTIONS(2599), - [anon_sym_e_PLUSo_GT] = ACTIONS(2599), - [anon_sym_err_GT_GT] = ACTIONS(2597), - [anon_sym_out_GT_GT] = ACTIONS(2597), - [anon_sym_e_GT_GT] = ACTIONS(2597), - [anon_sym_o_GT_GT] = ACTIONS(2597), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2597), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2597), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2597), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2597), - [sym__unquoted_pattern] = ACTIONS(1983), + [STATE(941)] = { + [sym_comment] = STATE(941), + [anon_sym_in] = ACTIONS(1234), + [sym__newline] = ACTIONS(1234), + [anon_sym_SEMI] = ACTIONS(1234), + [anon_sym_PIPE] = ACTIONS(1234), + [anon_sym_err_GT_PIPE] = ACTIONS(1234), + [anon_sym_out_GT_PIPE] = ACTIONS(1234), + [anon_sym_e_GT_PIPE] = ACTIONS(1234), + [anon_sym_o_GT_PIPE] = ACTIONS(1234), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1234), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1234), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1234), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1234), + [anon_sym_RPAREN] = ACTIONS(1234), + [anon_sym_GT2] = ACTIONS(1020), + [anon_sym_DASH2] = ACTIONS(1234), + [anon_sym_RBRACE] = ACTIONS(1234), + [anon_sym_STAR2] = ACTIONS(1020), + [anon_sym_and2] = ACTIONS(1234), + [anon_sym_xor2] = ACTIONS(1234), + [anon_sym_or2] = ACTIONS(1234), + [anon_sym_not_DASHin2] = ACTIONS(1234), + [anon_sym_has2] = ACTIONS(1234), + [anon_sym_not_DASHhas2] = ACTIONS(1234), + [anon_sym_starts_DASHwith2] = ACTIONS(1234), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1234), + [anon_sym_ends_DASHwith2] = ACTIONS(1234), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1234), + [anon_sym_EQ_EQ2] = ACTIONS(1234), + [anon_sym_BANG_EQ2] = ACTIONS(1234), + [anon_sym_LT2] = ACTIONS(1020), + [anon_sym_LT_EQ2] = ACTIONS(1234), + [anon_sym_GT_EQ2] = ACTIONS(1234), + [anon_sym_EQ_TILDE2] = ACTIONS(1234), + [anon_sym_BANG_TILDE2] = ACTIONS(1234), + [anon_sym_like2] = ACTIONS(1234), + [anon_sym_not_DASHlike2] = ACTIONS(1234), + [anon_sym_LPAREN2] = ACTIONS(2632), + [anon_sym_STAR_STAR2] = ACTIONS(1234), + [anon_sym_PLUS_PLUS2] = ACTIONS(1234), + [anon_sym_SLASH2] = ACTIONS(1020), + [anon_sym_mod2] = ACTIONS(1234), + [anon_sym_SLASH_SLASH2] = ACTIONS(1234), + [anon_sym_PLUS2] = ACTIONS(1020), + [anon_sym_bit_DASHshl2] = ACTIONS(1234), + [anon_sym_bit_DASHshr2] = ACTIONS(1234), + [anon_sym_bit_DASHand2] = ACTIONS(1234), + [anon_sym_bit_DASHxor2] = ACTIONS(1234), + [anon_sym_bit_DASHor2] = ACTIONS(1234), + [anon_sym_err_GT] = ACTIONS(1020), + [anon_sym_out_GT] = ACTIONS(1020), + [anon_sym_e_GT] = ACTIONS(1020), + [anon_sym_o_GT] = ACTIONS(1020), + [anon_sym_err_PLUSout_GT] = ACTIONS(1020), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1020), + [anon_sym_o_PLUSe_GT] = ACTIONS(1020), + [anon_sym_e_PLUSo_GT] = ACTIONS(1020), + [anon_sym_err_GT_GT] = ACTIONS(1234), + [anon_sym_out_GT_GT] = ACTIONS(1234), + [anon_sym_e_GT_GT] = ACTIONS(1234), + [anon_sym_o_GT_GT] = ACTIONS(1234), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1234), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1234), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1234), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1234), + [sym__unquoted_pattern] = ACTIONS(2634), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(957)] = { - [sym_comment] = STATE(957), - [anon_sym_in] = ACTIONS(1956), - [sym__newline] = ACTIONS(1956), - [anon_sym_SEMI] = ACTIONS(1956), - [anon_sym_PIPE] = ACTIONS(1956), - [anon_sym_err_GT_PIPE] = ACTIONS(1956), - [anon_sym_out_GT_PIPE] = ACTIONS(1956), - [anon_sym_e_GT_PIPE] = ACTIONS(1956), - [anon_sym_o_GT_PIPE] = ACTIONS(1956), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1956), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1956), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1956), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1956), - [anon_sym_RPAREN] = ACTIONS(1956), - [anon_sym_GT2] = ACTIONS(1958), - [anon_sym_DASH2] = ACTIONS(1956), - [anon_sym_LBRACE] = ACTIONS(1956), - [anon_sym_RBRACE] = ACTIONS(1956), - [anon_sym_EQ_GT] = ACTIONS(1956), - [anon_sym_STAR2] = ACTIONS(1958), - [anon_sym_and2] = ACTIONS(1956), - [anon_sym_xor2] = ACTIONS(1956), - [anon_sym_or2] = ACTIONS(1956), - [anon_sym_not_DASHin2] = ACTIONS(1956), - [anon_sym_has2] = ACTIONS(1956), - [anon_sym_not_DASHhas2] = ACTIONS(1956), - [anon_sym_starts_DASHwith2] = ACTIONS(1956), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1956), - [anon_sym_ends_DASHwith2] = ACTIONS(1956), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1956), - [anon_sym_EQ_EQ2] = ACTIONS(1956), - [anon_sym_BANG_EQ2] = ACTIONS(1956), - [anon_sym_LT2] = ACTIONS(1958), - [anon_sym_LT_EQ2] = ACTIONS(1956), - [anon_sym_GT_EQ2] = ACTIONS(1956), - [anon_sym_EQ_TILDE2] = ACTIONS(1956), - [anon_sym_BANG_TILDE2] = ACTIONS(1956), - [anon_sym_like2] = ACTIONS(1956), - [anon_sym_not_DASHlike2] = ACTIONS(1956), - [anon_sym_STAR_STAR2] = ACTIONS(1956), - [anon_sym_PLUS_PLUS2] = ACTIONS(1956), - [anon_sym_SLASH2] = ACTIONS(1958), - [anon_sym_mod2] = ACTIONS(1956), - [anon_sym_SLASH_SLASH2] = ACTIONS(1956), - [anon_sym_PLUS2] = ACTIONS(1958), - [anon_sym_bit_DASHshl2] = ACTIONS(1956), - [anon_sym_bit_DASHshr2] = ACTIONS(1956), - [anon_sym_bit_DASHand2] = ACTIONS(1956), - [anon_sym_bit_DASHxor2] = ACTIONS(1956), - [anon_sym_bit_DASHor2] = ACTIONS(1956), - [anon_sym_err_GT] = ACTIONS(1958), - [anon_sym_out_GT] = ACTIONS(1958), - [anon_sym_e_GT] = ACTIONS(1958), - [anon_sym_o_GT] = ACTIONS(1958), - [anon_sym_err_PLUSout_GT] = ACTIONS(1958), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1958), - [anon_sym_o_PLUSe_GT] = ACTIONS(1958), - [anon_sym_e_PLUSo_GT] = ACTIONS(1958), - [anon_sym_err_GT_GT] = ACTIONS(1956), - [anon_sym_out_GT_GT] = ACTIONS(1956), - [anon_sym_e_GT_GT] = ACTIONS(1956), - [anon_sym_o_GT_GT] = ACTIONS(1956), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1956), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1956), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1956), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1956), + [STATE(942)] = { + [sym_comment] = STATE(942), + [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_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_POUND] = ACTIONS(3), }, - [STATE(958)] = { - [sym_comment] = STATE(958), - [anon_sym_in] = ACTIONS(1973), - [sym__newline] = ACTIONS(1973), - [anon_sym_SEMI] = ACTIONS(1973), - [anon_sym_PIPE] = ACTIONS(1973), - [anon_sym_err_GT_PIPE] = ACTIONS(1973), - [anon_sym_out_GT_PIPE] = ACTIONS(1973), - [anon_sym_e_GT_PIPE] = ACTIONS(1973), - [anon_sym_o_GT_PIPE] = ACTIONS(1973), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1973), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1973), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1973), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1973), - [anon_sym_RPAREN] = ACTIONS(1973), - [anon_sym_GT2] = ACTIONS(1975), - [anon_sym_DASH2] = ACTIONS(1973), - [anon_sym_RBRACE] = ACTIONS(1973), - [anon_sym_STAR2] = ACTIONS(1975), - [anon_sym_and2] = ACTIONS(1973), - [anon_sym_xor2] = ACTIONS(1973), - [anon_sym_or2] = ACTIONS(1973), - [anon_sym_not_DASHin2] = ACTIONS(1973), - [anon_sym_has2] = ACTIONS(1973), - [anon_sym_not_DASHhas2] = ACTIONS(1973), - [anon_sym_starts_DASHwith2] = ACTIONS(1973), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1973), - [anon_sym_ends_DASHwith2] = ACTIONS(1973), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1973), - [anon_sym_EQ_EQ2] = ACTIONS(1973), - [anon_sym_BANG_EQ2] = ACTIONS(1973), - [anon_sym_LT2] = ACTIONS(1975), - [anon_sym_LT_EQ2] = ACTIONS(1973), - [anon_sym_GT_EQ2] = ACTIONS(1973), - [anon_sym_EQ_TILDE2] = ACTIONS(1973), - [anon_sym_BANG_TILDE2] = ACTIONS(1973), - [anon_sym_like2] = ACTIONS(1973), - [anon_sym_not_DASHlike2] = ACTIONS(1973), - [anon_sym_LPAREN2] = ACTIONS(1977), - [anon_sym_STAR_STAR2] = ACTIONS(1973), - [anon_sym_PLUS_PLUS2] = ACTIONS(1973), - [anon_sym_SLASH2] = ACTIONS(1975), - [anon_sym_mod2] = ACTIONS(1973), - [anon_sym_SLASH_SLASH2] = ACTIONS(1973), - [anon_sym_PLUS2] = ACTIONS(1975), - [anon_sym_bit_DASHshl2] = ACTIONS(1973), - [anon_sym_bit_DASHshr2] = ACTIONS(1973), - [anon_sym_bit_DASHand2] = ACTIONS(1973), - [anon_sym_bit_DASHxor2] = ACTIONS(1973), - [anon_sym_bit_DASHor2] = ACTIONS(1973), - [anon_sym_err_GT] = ACTIONS(1975), - [anon_sym_out_GT] = ACTIONS(1975), - [anon_sym_e_GT] = ACTIONS(1975), - [anon_sym_o_GT] = ACTIONS(1975), - [anon_sym_err_PLUSout_GT] = ACTIONS(1975), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1975), - [anon_sym_o_PLUSe_GT] = ACTIONS(1975), - [anon_sym_e_PLUSo_GT] = ACTIONS(1975), - [anon_sym_err_GT_GT] = ACTIONS(1973), - [anon_sym_out_GT_GT] = ACTIONS(1973), - [anon_sym_e_GT_GT] = ACTIONS(1973), - [anon_sym_o_GT_GT] = ACTIONS(1973), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1973), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1973), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1973), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1973), - [sym__unquoted_pattern] = ACTIONS(1983), + [STATE(943)] = { + [sym_comment] = STATE(943), + [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_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_POUND] = ACTIONS(3), }, - [STATE(959)] = { - [sym_comment] = STATE(959), - [ts_builtin_sym_end] = ACTIONS(1852), - [anon_sym_in] = ACTIONS(1852), - [sym__newline] = ACTIONS(1852), - [anon_sym_SEMI] = ACTIONS(1852), - [anon_sym_PIPE] = ACTIONS(1852), - [anon_sym_err_GT_PIPE] = ACTIONS(1852), - [anon_sym_out_GT_PIPE] = ACTIONS(1852), - [anon_sym_e_GT_PIPE] = ACTIONS(1852), - [anon_sym_o_GT_PIPE] = ACTIONS(1852), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1852), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1852), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1852), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1852), - [anon_sym_GT2] = ACTIONS(1854), - [anon_sym_DASH2] = ACTIONS(1852), - [anon_sym_STAR2] = ACTIONS(1854), - [anon_sym_and2] = ACTIONS(1852), - [anon_sym_xor2] = ACTIONS(1852), - [anon_sym_or2] = ACTIONS(1852), - [anon_sym_not_DASHin2] = ACTIONS(1852), - [anon_sym_has2] = ACTIONS(1852), - [anon_sym_not_DASHhas2] = ACTIONS(1852), - [anon_sym_starts_DASHwith2] = ACTIONS(1852), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1852), - [anon_sym_ends_DASHwith2] = ACTIONS(1852), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1852), - [anon_sym_EQ_EQ2] = ACTIONS(1852), - [anon_sym_BANG_EQ2] = ACTIONS(1852), - [anon_sym_LT2] = ACTIONS(1854), - [anon_sym_LT_EQ2] = ACTIONS(1852), - [anon_sym_GT_EQ2] = ACTIONS(1852), - [anon_sym_EQ_TILDE2] = ACTIONS(1852), - [anon_sym_BANG_TILDE2] = ACTIONS(1852), - [anon_sym_like2] = ACTIONS(1852), - [anon_sym_not_DASHlike2] = ACTIONS(1852), - [anon_sym_LPAREN2] = ACTIONS(1852), - [anon_sym_STAR_STAR2] = ACTIONS(1852), - [anon_sym_PLUS_PLUS2] = ACTIONS(1852), - [anon_sym_SLASH2] = ACTIONS(1854), - [anon_sym_mod2] = ACTIONS(1852), - [anon_sym_SLASH_SLASH2] = ACTIONS(1852), - [anon_sym_PLUS2] = ACTIONS(1854), - [anon_sym_bit_DASHshl2] = ACTIONS(1852), - [anon_sym_bit_DASHshr2] = ACTIONS(1852), - [anon_sym_bit_DASHand2] = ACTIONS(1852), - [anon_sym_bit_DASHxor2] = ACTIONS(1852), - [anon_sym_bit_DASHor2] = ACTIONS(1852), - [aux_sym__immediate_decimal_token5] = ACTIONS(2640), - [anon_sym_err_GT] = ACTIONS(1854), - [anon_sym_out_GT] = ACTIONS(1854), - [anon_sym_e_GT] = ACTIONS(1854), - [anon_sym_o_GT] = ACTIONS(1854), - [anon_sym_err_PLUSout_GT] = ACTIONS(1854), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1854), - [anon_sym_o_PLUSe_GT] = ACTIONS(1854), - [anon_sym_e_PLUSo_GT] = ACTIONS(1854), - [anon_sym_err_GT_GT] = ACTIONS(1852), - [anon_sym_out_GT_GT] = ACTIONS(1852), - [anon_sym_e_GT_GT] = ACTIONS(1852), - [anon_sym_o_GT_GT] = ACTIONS(1852), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1852), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1852), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1852), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1852), - [sym__unquoted_pattern] = ACTIONS(1854), + [STATE(944)] = { + [sym_comment] = STATE(944), + [anon_sym_in] = ACTIONS(2608), + [sym__newline] = ACTIONS(2608), + [anon_sym_SEMI] = ACTIONS(2608), + [anon_sym_PIPE] = ACTIONS(2608), + [anon_sym_err_GT_PIPE] = ACTIONS(2608), + [anon_sym_out_GT_PIPE] = ACTIONS(2608), + [anon_sym_e_GT_PIPE] = ACTIONS(2608), + [anon_sym_o_GT_PIPE] = ACTIONS(2608), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2608), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2608), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2608), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2608), + [anon_sym_RPAREN] = ACTIONS(2608), + [anon_sym_GT2] = ACTIONS(2610), + [anon_sym_DASH2] = ACTIONS(2608), + [anon_sym_LBRACE] = ACTIONS(2608), + [anon_sym_RBRACE] = ACTIONS(2608), + [anon_sym_EQ_GT] = ACTIONS(2608), + [anon_sym_STAR2] = ACTIONS(2610), + [anon_sym_and2] = ACTIONS(2608), + [anon_sym_xor2] = ACTIONS(2608), + [anon_sym_or2] = ACTIONS(2608), + [anon_sym_not_DASHin2] = ACTIONS(2608), + [anon_sym_has2] = ACTIONS(2608), + [anon_sym_not_DASHhas2] = ACTIONS(2608), + [anon_sym_starts_DASHwith2] = ACTIONS(2608), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2608), + [anon_sym_ends_DASHwith2] = ACTIONS(2608), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2608), + [anon_sym_EQ_EQ2] = ACTIONS(2608), + [anon_sym_BANG_EQ2] = ACTIONS(2608), + [anon_sym_LT2] = ACTIONS(2610), + [anon_sym_LT_EQ2] = ACTIONS(2608), + [anon_sym_GT_EQ2] = ACTIONS(2608), + [anon_sym_EQ_TILDE2] = ACTIONS(2608), + [anon_sym_BANG_TILDE2] = ACTIONS(2608), + [anon_sym_like2] = ACTIONS(2608), + [anon_sym_not_DASHlike2] = ACTIONS(2608), + [anon_sym_STAR_STAR2] = ACTIONS(2608), + [anon_sym_PLUS_PLUS2] = ACTIONS(2608), + [anon_sym_SLASH2] = ACTIONS(2610), + [anon_sym_mod2] = ACTIONS(2608), + [anon_sym_SLASH_SLASH2] = ACTIONS(2608), + [anon_sym_PLUS2] = ACTIONS(2610), + [anon_sym_bit_DASHshl2] = ACTIONS(2608), + [anon_sym_bit_DASHshr2] = ACTIONS(2608), + [anon_sym_bit_DASHand2] = ACTIONS(2608), + [anon_sym_bit_DASHxor2] = ACTIONS(2608), + [anon_sym_bit_DASHor2] = ACTIONS(2608), + [anon_sym_err_GT] = ACTIONS(2610), + [anon_sym_out_GT] = ACTIONS(2610), + [anon_sym_e_GT] = ACTIONS(2610), + [anon_sym_o_GT] = ACTIONS(2610), + [anon_sym_err_PLUSout_GT] = ACTIONS(2610), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2610), + [anon_sym_o_PLUSe_GT] = ACTIONS(2610), + [anon_sym_e_PLUSo_GT] = ACTIONS(2610), + [anon_sym_err_GT_GT] = ACTIONS(2608), + [anon_sym_out_GT_GT] = ACTIONS(2608), + [anon_sym_e_GT_GT] = ACTIONS(2608), + [anon_sym_o_GT_GT] = ACTIONS(2608), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2608), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2608), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2608), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2608), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(960)] = { - [sym_comment] = STATE(960), - [anon_sym_in] = ACTIONS(2541), - [sym__newline] = ACTIONS(2541), - [anon_sym_SEMI] = ACTIONS(2541), - [anon_sym_PIPE] = ACTIONS(2541), - [anon_sym_err_GT_PIPE] = ACTIONS(2541), - [anon_sym_out_GT_PIPE] = ACTIONS(2541), - [anon_sym_e_GT_PIPE] = ACTIONS(2541), - [anon_sym_o_GT_PIPE] = ACTIONS(2541), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2541), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2541), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2541), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2541), - [anon_sym_RPAREN] = ACTIONS(2541), - [anon_sym_GT2] = ACTIONS(2543), - [anon_sym_DASH2] = ACTIONS(2541), - [anon_sym_RBRACE] = ACTIONS(2541), - [anon_sym_STAR2] = ACTIONS(2543), - [anon_sym_and2] = ACTIONS(2541), - [anon_sym_xor2] = ACTIONS(2541), - [anon_sym_or2] = ACTIONS(2541), - [anon_sym_not_DASHin2] = ACTIONS(2541), - [anon_sym_has2] = ACTIONS(2541), - [anon_sym_not_DASHhas2] = ACTIONS(2541), - [anon_sym_starts_DASHwith2] = ACTIONS(2541), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2541), - [anon_sym_ends_DASHwith2] = ACTIONS(2541), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2541), - [anon_sym_EQ_EQ2] = ACTIONS(2541), - [anon_sym_BANG_EQ2] = ACTIONS(2541), - [anon_sym_LT2] = ACTIONS(2543), - [anon_sym_LT_EQ2] = ACTIONS(2541), - [anon_sym_GT_EQ2] = ACTIONS(2541), - [anon_sym_EQ_TILDE2] = ACTIONS(2541), - [anon_sym_BANG_TILDE2] = ACTIONS(2541), - [anon_sym_like2] = ACTIONS(2541), - [anon_sym_not_DASHlike2] = ACTIONS(2541), - [anon_sym_LPAREN2] = ACTIONS(2642), - [anon_sym_STAR_STAR2] = ACTIONS(2541), - [anon_sym_PLUS_PLUS2] = ACTIONS(2541), - [anon_sym_SLASH2] = ACTIONS(2543), - [anon_sym_mod2] = ACTIONS(2541), - [anon_sym_SLASH_SLASH2] = ACTIONS(2541), - [anon_sym_PLUS2] = ACTIONS(2543), - [anon_sym_bit_DASHshl2] = ACTIONS(2541), - [anon_sym_bit_DASHshr2] = ACTIONS(2541), - [anon_sym_bit_DASHand2] = ACTIONS(2541), - [anon_sym_bit_DASHxor2] = ACTIONS(2541), - [anon_sym_bit_DASHor2] = ACTIONS(2541), - [anon_sym_err_GT] = ACTIONS(2543), - [anon_sym_out_GT] = ACTIONS(2543), - [anon_sym_e_GT] = ACTIONS(2543), - [anon_sym_o_GT] = ACTIONS(2543), - [anon_sym_err_PLUSout_GT] = ACTIONS(2543), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2543), - [anon_sym_o_PLUSe_GT] = ACTIONS(2543), - [anon_sym_e_PLUSo_GT] = ACTIONS(2543), - [anon_sym_err_GT_GT] = ACTIONS(2541), - [anon_sym_out_GT_GT] = ACTIONS(2541), - [anon_sym_e_GT_GT] = ACTIONS(2541), - [anon_sym_o_GT_GT] = ACTIONS(2541), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2541), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2541), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2541), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2541), - [sym__unquoted_pattern] = ACTIONS(1679), + [STATE(945)] = { + [sym_comment] = STATE(945), + [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_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_POUND] = ACTIONS(3), }, - [STATE(961)] = { - [sym_comment] = STATE(961), - [anon_sym_in] = ACTIONS(2589), - [sym__newline] = ACTIONS(2589), - [anon_sym_SEMI] = ACTIONS(2589), - [anon_sym_PIPE] = ACTIONS(2589), - [anon_sym_err_GT_PIPE] = ACTIONS(2589), - [anon_sym_out_GT_PIPE] = ACTIONS(2589), - [anon_sym_e_GT_PIPE] = ACTIONS(2589), - [anon_sym_o_GT_PIPE] = ACTIONS(2589), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2589), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2589), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2589), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2589), - [anon_sym_RPAREN] = ACTIONS(2589), - [anon_sym_GT2] = ACTIONS(2591), - [anon_sym_DASH2] = ACTIONS(2589), - [anon_sym_RBRACE] = ACTIONS(2589), - [anon_sym_STAR2] = ACTIONS(2591), - [anon_sym_and2] = ACTIONS(2589), - [anon_sym_xor2] = ACTIONS(2589), - [anon_sym_or2] = ACTIONS(2589), - [anon_sym_not_DASHin2] = ACTIONS(2589), - [anon_sym_has2] = ACTIONS(2589), - [anon_sym_not_DASHhas2] = ACTIONS(2589), - [anon_sym_starts_DASHwith2] = ACTIONS(2589), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2589), - [anon_sym_ends_DASHwith2] = ACTIONS(2589), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2589), - [anon_sym_EQ_EQ2] = ACTIONS(2589), - [anon_sym_BANG_EQ2] = ACTIONS(2589), - [anon_sym_LT2] = ACTIONS(2591), - [anon_sym_LT_EQ2] = ACTIONS(2589), - [anon_sym_GT_EQ2] = ACTIONS(2589), - [anon_sym_EQ_TILDE2] = ACTIONS(2589), - [anon_sym_BANG_TILDE2] = ACTIONS(2589), - [anon_sym_like2] = ACTIONS(2589), - [anon_sym_not_DASHlike2] = ACTIONS(2589), - [anon_sym_LPAREN2] = ACTIONS(2644), - [anon_sym_STAR_STAR2] = ACTIONS(2589), - [anon_sym_PLUS_PLUS2] = ACTIONS(2589), - [anon_sym_SLASH2] = ACTIONS(2591), - [anon_sym_mod2] = ACTIONS(2589), - [anon_sym_SLASH_SLASH2] = ACTIONS(2589), - [anon_sym_PLUS2] = ACTIONS(2591), - [anon_sym_bit_DASHshl2] = ACTIONS(2589), - [anon_sym_bit_DASHshr2] = ACTIONS(2589), - [anon_sym_bit_DASHand2] = ACTIONS(2589), - [anon_sym_bit_DASHxor2] = ACTIONS(2589), - [anon_sym_bit_DASHor2] = ACTIONS(2589), - [anon_sym_err_GT] = ACTIONS(2591), - [anon_sym_out_GT] = ACTIONS(2591), - [anon_sym_e_GT] = ACTIONS(2591), - [anon_sym_o_GT] = ACTIONS(2591), - [anon_sym_err_PLUSout_GT] = ACTIONS(2591), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2591), - [anon_sym_o_PLUSe_GT] = ACTIONS(2591), - [anon_sym_e_PLUSo_GT] = ACTIONS(2591), - [anon_sym_err_GT_GT] = ACTIONS(2589), - [anon_sym_out_GT_GT] = ACTIONS(2589), - [anon_sym_e_GT_GT] = ACTIONS(2589), - [anon_sym_o_GT_GT] = ACTIONS(2589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [sym__unquoted_pattern] = ACTIONS(2646), + [STATE(946)] = { + [aux_sym__repeat_newline] = STATE(1119), + [sym__expression_parenthesized] = STATE(4429), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2190), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1886), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_comment] = STATE(946), + [aux_sym_cmd_identifier_token2] = ACTIONS(2594), + [anon_sym_true] = ACTIONS(2596), + [anon_sym_false] = ACTIONS(2596), + [anon_sym_null] = ACTIONS(2598), + [aux_sym_cmd_identifier_token3] = ACTIONS(2600), + [aux_sym_cmd_identifier_token4] = ACTIONS(2600), + [aux_sym_cmd_identifier_token5] = ACTIONS(2600), + [sym__newline] = ACTIONS(2602), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(998), + [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(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2006), + [aux_sym__val_number_decimal_token3] = ACTIONS(2604), + [aux_sym__val_number_decimal_token4] = ACTIONS(2604), + [aux_sym__val_number_token1] = ACTIONS(2600), + [aux_sym__val_number_token2] = ACTIONS(2600), + [aux_sym__val_number_token3] = ACTIONS(2600), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2606), + [anon_sym_DQUOTE] = 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(947)] = { + [sym_comment] = STATE(947), + [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_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_POUND] = ACTIONS(3), }, - [STATE(962)] = { - [sym_comment] = STATE(962), + [STATE(948)] = { + [sym_comment] = STATE(948), + [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_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_POUND] = ACTIONS(3), + }, + [STATE(949)] = { + [sym_comment] = STATE(949), + [ts_builtin_sym_end] = ACTIONS(2104), + [anon_sym_in] = ACTIONS(2104), + [sym__newline] = ACTIONS(2104), + [anon_sym_SEMI] = ACTIONS(2104), + [anon_sym_PIPE] = ACTIONS(2104), + [anon_sym_err_GT_PIPE] = ACTIONS(2104), + [anon_sym_out_GT_PIPE] = ACTIONS(2104), + [anon_sym_e_GT_PIPE] = ACTIONS(2104), + [anon_sym_o_GT_PIPE] = ACTIONS(2104), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2104), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2104), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2104), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2104), + [anon_sym_GT2] = ACTIONS(2106), + [anon_sym_DASH2] = ACTIONS(2104), + [anon_sym_STAR2] = ACTIONS(2106), + [anon_sym_and2] = ACTIONS(2104), + [anon_sym_xor2] = ACTIONS(2104), + [anon_sym_or2] = ACTIONS(2104), + [anon_sym_not_DASHin2] = ACTIONS(2104), + [anon_sym_has2] = ACTIONS(2104), + [anon_sym_not_DASHhas2] = ACTIONS(2104), + [anon_sym_starts_DASHwith2] = ACTIONS(2104), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2104), + [anon_sym_ends_DASHwith2] = ACTIONS(2104), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2104), + [anon_sym_EQ_EQ2] = ACTIONS(2104), + [anon_sym_BANG_EQ2] = ACTIONS(2104), + [anon_sym_LT2] = ACTIONS(2106), + [anon_sym_LT_EQ2] = ACTIONS(2104), + [anon_sym_GT_EQ2] = ACTIONS(2104), + [anon_sym_EQ_TILDE2] = ACTIONS(2104), + [anon_sym_BANG_TILDE2] = ACTIONS(2104), + [anon_sym_like2] = ACTIONS(2104), + [anon_sym_not_DASHlike2] = ACTIONS(2104), + [anon_sym_STAR_STAR2] = ACTIONS(2104), + [anon_sym_PLUS_PLUS2] = ACTIONS(2104), + [anon_sym_SLASH2] = ACTIONS(2106), + [anon_sym_mod2] = ACTIONS(2104), + [anon_sym_SLASH_SLASH2] = ACTIONS(2104), + [anon_sym_PLUS2] = ACTIONS(2106), + [anon_sym_bit_DASHshl2] = ACTIONS(2104), + [anon_sym_bit_DASHshr2] = ACTIONS(2104), + [anon_sym_bit_DASHand2] = ACTIONS(2104), + [anon_sym_bit_DASHxor2] = ACTIONS(2104), + [anon_sym_bit_DASHor2] = ACTIONS(2104), + [anon_sym_DOT_DOT2] = ACTIONS(2636), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2638), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2638), + [anon_sym_err_GT] = ACTIONS(2106), + [anon_sym_out_GT] = ACTIONS(2106), + [anon_sym_e_GT] = ACTIONS(2106), + [anon_sym_o_GT] = ACTIONS(2106), + [anon_sym_err_PLUSout_GT] = ACTIONS(2106), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2106), + [anon_sym_o_PLUSe_GT] = ACTIONS(2106), + [anon_sym_e_PLUSo_GT] = ACTIONS(2106), + [anon_sym_err_GT_GT] = ACTIONS(2104), + [anon_sym_out_GT_GT] = ACTIONS(2104), + [anon_sym_e_GT_GT] = ACTIONS(2104), + [anon_sym_o_GT_GT] = ACTIONS(2104), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2104), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2104), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2104), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2104), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(950)] = { + [sym_comment] = STATE(950), + [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_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_POUND] = ACTIONS(3), + }, + [STATE(951)] = { + [sym_comment] = STATE(951), + [anon_sym_in] = ACTIONS(1972), + [sym__newline] = ACTIONS(1972), + [anon_sym_SEMI] = ACTIONS(1972), + [anon_sym_PIPE] = ACTIONS(1972), + [anon_sym_err_GT_PIPE] = ACTIONS(1972), + [anon_sym_out_GT_PIPE] = ACTIONS(1972), + [anon_sym_e_GT_PIPE] = ACTIONS(1972), + [anon_sym_o_GT_PIPE] = ACTIONS(1972), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1972), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1972), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1972), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1972), + [anon_sym_RPAREN] = ACTIONS(1972), + [anon_sym_GT2] = ACTIONS(1974), + [anon_sym_DASH2] = ACTIONS(1972), + [anon_sym_LBRACE] = ACTIONS(1972), + [anon_sym_RBRACE] = ACTIONS(1972), + [anon_sym_EQ_GT] = ACTIONS(1972), + [anon_sym_STAR2] = ACTIONS(1974), + [anon_sym_and2] = ACTIONS(1972), + [anon_sym_xor2] = ACTIONS(1972), + [anon_sym_or2] = ACTIONS(1972), + [anon_sym_not_DASHin2] = ACTIONS(1972), + [anon_sym_has2] = ACTIONS(1972), + [anon_sym_not_DASHhas2] = ACTIONS(1972), + [anon_sym_starts_DASHwith2] = ACTIONS(1972), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1972), + [anon_sym_ends_DASHwith2] = ACTIONS(1972), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1972), + [anon_sym_EQ_EQ2] = ACTIONS(1972), + [anon_sym_BANG_EQ2] = ACTIONS(1972), + [anon_sym_LT2] = ACTIONS(1974), + [anon_sym_LT_EQ2] = ACTIONS(1972), + [anon_sym_GT_EQ2] = ACTIONS(1972), + [anon_sym_EQ_TILDE2] = ACTIONS(1972), + [anon_sym_BANG_TILDE2] = ACTIONS(1972), + [anon_sym_like2] = ACTIONS(1972), + [anon_sym_not_DASHlike2] = ACTIONS(1972), + [anon_sym_STAR_STAR2] = ACTIONS(1972), + [anon_sym_PLUS_PLUS2] = ACTIONS(1972), + [anon_sym_SLASH2] = ACTIONS(1974), + [anon_sym_mod2] = ACTIONS(1972), + [anon_sym_SLASH_SLASH2] = ACTIONS(1972), + [anon_sym_PLUS2] = ACTIONS(1974), + [anon_sym_bit_DASHshl2] = ACTIONS(1972), + [anon_sym_bit_DASHshr2] = ACTIONS(1972), + [anon_sym_bit_DASHand2] = ACTIONS(1972), + [anon_sym_bit_DASHxor2] = ACTIONS(1972), + [anon_sym_bit_DASHor2] = ACTIONS(1972), + [anon_sym_err_GT] = ACTIONS(1974), + [anon_sym_out_GT] = ACTIONS(1974), + [anon_sym_e_GT] = ACTIONS(1974), + [anon_sym_o_GT] = ACTIONS(1974), + [anon_sym_err_PLUSout_GT] = ACTIONS(1974), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1974), + [anon_sym_o_PLUSe_GT] = ACTIONS(1974), + [anon_sym_e_PLUSo_GT] = ACTIONS(1974), + [anon_sym_err_GT_GT] = ACTIONS(1972), + [anon_sym_out_GT_GT] = ACTIONS(1972), + [anon_sym_e_GT_GT] = ACTIONS(1972), + [anon_sym_o_GT_GT] = ACTIONS(1972), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1972), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1972), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1972), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1972), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(952)] = { + [sym_comment] = STATE(952), + [ts_builtin_sym_end] = 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_GT2] = ACTIONS(2114), + [anon_sym_DASH2] = 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_DOT_DOT2] = ACTIONS(2640), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2642), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2642), + [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(953)] = { + [sym_comment] = STATE(953), + [ts_builtin_sym_end] = ACTIONS(1915), + [anon_sym_in] = ACTIONS(1915), + [sym__newline] = ACTIONS(1915), + [anon_sym_SEMI] = ACTIONS(1915), + [anon_sym_PIPE] = ACTIONS(1915), + [anon_sym_err_GT_PIPE] = ACTIONS(1915), + [anon_sym_out_GT_PIPE] = ACTIONS(1915), + [anon_sym_e_GT_PIPE] = ACTIONS(1915), + [anon_sym_o_GT_PIPE] = ACTIONS(1915), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1915), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1915), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1915), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1915), + [anon_sym_GT2] = ACTIONS(1917), + [anon_sym_DASH2] = ACTIONS(1915), + [anon_sym_STAR2] = ACTIONS(1917), + [anon_sym_and2] = ACTIONS(1915), + [anon_sym_xor2] = ACTIONS(1915), + [anon_sym_or2] = ACTIONS(1915), + [anon_sym_not_DASHin2] = ACTIONS(1915), + [anon_sym_has2] = ACTIONS(1915), + [anon_sym_not_DASHhas2] = ACTIONS(1915), + [anon_sym_starts_DASHwith2] = ACTIONS(1915), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1915), + [anon_sym_ends_DASHwith2] = ACTIONS(1915), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1915), + [anon_sym_EQ_EQ2] = ACTIONS(1915), + [anon_sym_BANG_EQ2] = ACTIONS(1915), + [anon_sym_LT2] = ACTIONS(1917), + [anon_sym_LT_EQ2] = ACTIONS(1915), + [anon_sym_GT_EQ2] = ACTIONS(1915), + [anon_sym_EQ_TILDE2] = ACTIONS(1915), + [anon_sym_BANG_TILDE2] = ACTIONS(1915), + [anon_sym_like2] = ACTIONS(1915), + [anon_sym_not_DASHlike2] = ACTIONS(1915), + [anon_sym_STAR_STAR2] = ACTIONS(1915), + [anon_sym_PLUS_PLUS2] = ACTIONS(1915), + [anon_sym_SLASH2] = ACTIONS(1917), + [anon_sym_mod2] = ACTIONS(1915), + [anon_sym_SLASH_SLASH2] = ACTIONS(1915), + [anon_sym_PLUS2] = ACTIONS(1917), + [anon_sym_bit_DASHshl2] = ACTIONS(1915), + [anon_sym_bit_DASHshr2] = ACTIONS(1915), + [anon_sym_bit_DASHand2] = ACTIONS(1915), + [anon_sym_bit_DASHxor2] = ACTIONS(1915), + [anon_sym_bit_DASHor2] = ACTIONS(1915), + [anon_sym_DOT_DOT2] = ACTIONS(1917), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1915), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1915), + [anon_sym_err_GT] = ACTIONS(1917), + [anon_sym_out_GT] = ACTIONS(1917), + [anon_sym_e_GT] = ACTIONS(1917), + [anon_sym_o_GT] = ACTIONS(1917), + [anon_sym_err_PLUSout_GT] = ACTIONS(1917), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1917), + [anon_sym_o_PLUSe_GT] = ACTIONS(1917), + [anon_sym_e_PLUSo_GT] = ACTIONS(1917), + [anon_sym_err_GT_GT] = ACTIONS(1915), + [anon_sym_out_GT_GT] = ACTIONS(1915), + [anon_sym_e_GT_GT] = ACTIONS(1915), + [anon_sym_o_GT_GT] = ACTIONS(1915), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1915), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1915), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1915), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1915), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(954)] = { + [sym_comment] = STATE(954), + [anon_sym_export] = ACTIONS(2644), + [anon_sym_alias] = ACTIONS(2646), + [anon_sym_let] = ACTIONS(2646), + [anon_sym_mut] = ACTIONS(2646), + [anon_sym_const] = ACTIONS(2646), + [aux_sym_cmd_identifier_token1] = ACTIONS(2644), + [anon_sym_def] = ACTIONS(2646), + [anon_sym_use] = ACTIONS(2646), + [anon_sym_export_DASHenv] = ACTIONS(2646), + [anon_sym_extern] = ACTIONS(2646), + [anon_sym_module] = ACTIONS(2646), + [anon_sym_for] = ACTIONS(2646), + [anon_sym_loop] = ACTIONS(2646), + [anon_sym_while] = ACTIONS(2646), + [anon_sym_if] = ACTIONS(2646), + [anon_sym_else] = ACTIONS(2646), + [anon_sym_try] = ACTIONS(2646), + [anon_sym_catch] = ACTIONS(2646), + [anon_sym_finally] = ACTIONS(2646), + [anon_sym_match] = ACTIONS(2646), + [anon_sym_in] = ACTIONS(2644), + [anon_sym_true] = ACTIONS(2646), + [anon_sym_false] = ACTIONS(2646), + [anon_sym_null] = ACTIONS(2646), + [aux_sym_cmd_identifier_token3] = ACTIONS(2646), + [aux_sym_cmd_identifier_token4] = ACTIONS(2646), + [aux_sym_cmd_identifier_token5] = ACTIONS(2646), + [sym__newline] = ACTIONS(2646), + [anon_sym_PIPE] = ACTIONS(2646), + [anon_sym_err_GT_PIPE] = ACTIONS(2646), + [anon_sym_out_GT_PIPE] = ACTIONS(2646), + [anon_sym_e_GT_PIPE] = ACTIONS(2646), + [anon_sym_o_GT_PIPE] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2646), + [anon_sym_LBRACK] = ACTIONS(2646), + [anon_sym_LPAREN] = ACTIONS(2646), + [anon_sym_DOLLAR] = ACTIONS(2644), + [anon_sym_DASH2] = ACTIONS(2644), + [anon_sym_LBRACE] = ACTIONS(2646), + [anon_sym_DOT_DOT] = ACTIONS(2644), + [anon_sym_where] = ACTIONS(2646), + [aux_sym_expr_unary_token1] = ACTIONS(2646), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2646), + [anon_sym_DOT_DOT_LT] = ACTIONS(2646), + [aux_sym__val_number_decimal_token1] = ACTIONS(2644), + [aux_sym__val_number_decimal_token2] = ACTIONS(2646), + [aux_sym__val_number_decimal_token3] = ACTIONS(2646), + [aux_sym__val_number_decimal_token4] = ACTIONS(2646), + [aux_sym__val_number_token1] = ACTIONS(2646), + [aux_sym__val_number_token2] = ACTIONS(2646), + [aux_sym__val_number_token3] = ACTIONS(2646), + [anon_sym_0b] = ACTIONS(2644), + [anon_sym_0o] = ACTIONS(2644), + [anon_sym_0x] = ACTIONS(2644), + [sym_val_date] = ACTIONS(2646), + [anon_sym_DQUOTE] = ACTIONS(2646), + [anon_sym_SQUOTE] = ACTIONS(2646), + [anon_sym_BQUOTE] = ACTIONS(2646), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2646), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2646), + [anon_sym_CARET] = ACTIONS(2646), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2646), + }, + [STATE(955)] = { + [sym_comment] = STATE(955), [anon_sym_in] = ACTIONS(2648), [sym__newline] = ACTIONS(2648), [anon_sym_SEMI] = ACTIONS(2648), @@ -119530,7 +119920,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RPAREN] = ACTIONS(2648), [anon_sym_GT2] = ACTIONS(2650), [anon_sym_DASH2] = ACTIONS(2648), + [anon_sym_LBRACE] = ACTIONS(2648), [anon_sym_RBRACE] = ACTIONS(2648), + [anon_sym_EQ_GT] = ACTIONS(2648), [anon_sym_STAR2] = ACTIONS(2650), [anon_sym_and2] = ACTIONS(2648), [anon_sym_xor2] = ACTIONS(2648), @@ -119551,7 +119943,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2648), [anon_sym_like2] = ACTIONS(2648), [anon_sym_not_DASHlike2] = ACTIONS(2648), - [anon_sym_LPAREN2] = ACTIONS(2652), [anon_sym_STAR_STAR2] = ACTIONS(2648), [anon_sym_PLUS_PLUS2] = ACTIONS(2648), [anon_sym_SLASH2] = ACTIONS(2650), @@ -119579,494 +119970,769 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2648), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2648), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2648), - [sym__unquoted_pattern] = ACTIONS(2654), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(956)] = { + [sym_comment] = STATE(956), + [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_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_POUND] = ACTIONS(3), + }, + [STATE(957)] = { + [sym_comment] = STATE(957), + [anon_sym_in] = ACTIONS(1972), + [sym__newline] = ACTIONS(1972), + [anon_sym_SEMI] = ACTIONS(1972), + [anon_sym_PIPE] = ACTIONS(1972), + [anon_sym_err_GT_PIPE] = ACTIONS(1972), + [anon_sym_out_GT_PIPE] = ACTIONS(1972), + [anon_sym_e_GT_PIPE] = ACTIONS(1972), + [anon_sym_o_GT_PIPE] = ACTIONS(1972), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1972), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1972), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1972), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1972), + [anon_sym_RPAREN] = ACTIONS(1972), + [anon_sym_GT2] = ACTIONS(1974), + [anon_sym_DASH2] = ACTIONS(1972), + [anon_sym_RBRACE] = ACTIONS(1972), + [anon_sym_STAR2] = ACTIONS(1974), + [anon_sym_and2] = ACTIONS(1972), + [anon_sym_xor2] = ACTIONS(1972), + [anon_sym_or2] = ACTIONS(1972), + [anon_sym_not_DASHin2] = ACTIONS(1972), + [anon_sym_has2] = ACTIONS(1972), + [anon_sym_not_DASHhas2] = ACTIONS(1972), + [anon_sym_starts_DASHwith2] = ACTIONS(1972), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1972), + [anon_sym_ends_DASHwith2] = ACTIONS(1972), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1972), + [anon_sym_EQ_EQ2] = ACTIONS(1972), + [anon_sym_BANG_EQ2] = ACTIONS(1972), + [anon_sym_LT2] = ACTIONS(1974), + [anon_sym_LT_EQ2] = ACTIONS(1972), + [anon_sym_GT_EQ2] = ACTIONS(1972), + [anon_sym_EQ_TILDE2] = ACTIONS(1972), + [anon_sym_BANG_TILDE2] = ACTIONS(1972), + [anon_sym_like2] = ACTIONS(1972), + [anon_sym_not_DASHlike2] = ACTIONS(1972), + [anon_sym_LPAREN2] = ACTIONS(1976), + [anon_sym_STAR_STAR2] = ACTIONS(1972), + [anon_sym_PLUS_PLUS2] = ACTIONS(1972), + [anon_sym_SLASH2] = ACTIONS(1974), + [anon_sym_mod2] = ACTIONS(1972), + [anon_sym_SLASH_SLASH2] = ACTIONS(1972), + [anon_sym_PLUS2] = ACTIONS(1974), + [anon_sym_bit_DASHshl2] = ACTIONS(1972), + [anon_sym_bit_DASHshr2] = ACTIONS(1972), + [anon_sym_bit_DASHand2] = ACTIONS(1972), + [anon_sym_bit_DASHxor2] = ACTIONS(1972), + [anon_sym_bit_DASHor2] = ACTIONS(1972), + [anon_sym_err_GT] = ACTIONS(1974), + [anon_sym_out_GT] = ACTIONS(1974), + [anon_sym_e_GT] = ACTIONS(1974), + [anon_sym_o_GT] = ACTIONS(1974), + [anon_sym_err_PLUSout_GT] = ACTIONS(1974), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1974), + [anon_sym_o_PLUSe_GT] = ACTIONS(1974), + [anon_sym_e_PLUSo_GT] = ACTIONS(1974), + [anon_sym_err_GT_GT] = ACTIONS(1972), + [anon_sym_out_GT_GT] = ACTIONS(1972), + [anon_sym_e_GT_GT] = ACTIONS(1972), + [anon_sym_o_GT_GT] = ACTIONS(1972), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1972), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1972), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1972), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1972), + [sym__unquoted_pattern] = ACTIONS(1637), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(958)] = { + [sym_comment] = STATE(958), + [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_RBRACE] = ACTIONS(2652), + [anon_sym_EQ_GT] = 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), + }, + [STATE(959)] = { + [sym_comment] = STATE(959), + [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_RBRACE] = ACTIONS(2656), + [anon_sym_EQ_GT] = 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(960)] = { + [sym_comment] = STATE(960), + [ts_builtin_sym_end] = ACTIONS(1790), + [anon_sym_in] = ACTIONS(1790), + [sym__newline] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym_PIPE] = ACTIONS(1790), + [anon_sym_err_GT_PIPE] = ACTIONS(1790), + [anon_sym_out_GT_PIPE] = ACTIONS(1790), + [anon_sym_e_GT_PIPE] = ACTIONS(1790), + [anon_sym_o_GT_PIPE] = ACTIONS(1790), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1790), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1790), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1790), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1790), + [anon_sym_GT2] = ACTIONS(1792), + [anon_sym_DASH2] = ACTIONS(1790), + [anon_sym_STAR2] = ACTIONS(1792), + [anon_sym_and2] = ACTIONS(1790), + [anon_sym_xor2] = ACTIONS(1790), + [anon_sym_or2] = ACTIONS(1790), + [anon_sym_not_DASHin2] = ACTIONS(1790), + [anon_sym_has2] = ACTIONS(1790), + [anon_sym_not_DASHhas2] = ACTIONS(1790), + [anon_sym_starts_DASHwith2] = ACTIONS(1790), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1790), + [anon_sym_ends_DASHwith2] = ACTIONS(1790), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1790), + [anon_sym_EQ_EQ2] = ACTIONS(1790), + [anon_sym_BANG_EQ2] = ACTIONS(1790), + [anon_sym_LT2] = ACTIONS(1792), + [anon_sym_LT_EQ2] = ACTIONS(1790), + [anon_sym_GT_EQ2] = ACTIONS(1790), + [anon_sym_EQ_TILDE2] = ACTIONS(1790), + [anon_sym_BANG_TILDE2] = ACTIONS(1790), + [anon_sym_like2] = ACTIONS(1790), + [anon_sym_not_DASHlike2] = ACTIONS(1790), + [anon_sym_LPAREN2] = ACTIONS(1790), + [anon_sym_STAR_STAR2] = ACTIONS(1790), + [anon_sym_PLUS_PLUS2] = ACTIONS(1790), + [anon_sym_SLASH2] = ACTIONS(1792), + [anon_sym_mod2] = ACTIONS(1790), + [anon_sym_SLASH_SLASH2] = ACTIONS(1790), + [anon_sym_PLUS2] = ACTIONS(1792), + [anon_sym_bit_DASHshl2] = ACTIONS(1790), + [anon_sym_bit_DASHshr2] = ACTIONS(1790), + [anon_sym_bit_DASHand2] = ACTIONS(1790), + [anon_sym_bit_DASHxor2] = ACTIONS(1790), + [anon_sym_bit_DASHor2] = ACTIONS(1790), + [aux_sym__immediate_decimal_token5] = ACTIONS(2377), + [anon_sym_err_GT] = ACTIONS(1792), + [anon_sym_out_GT] = ACTIONS(1792), + [anon_sym_e_GT] = ACTIONS(1792), + [anon_sym_o_GT] = ACTIONS(1792), + [anon_sym_err_PLUSout_GT] = ACTIONS(1792), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1792), + [anon_sym_o_PLUSe_GT] = ACTIONS(1792), + [anon_sym_e_PLUSo_GT] = ACTIONS(1792), + [anon_sym_err_GT_GT] = ACTIONS(1790), + [anon_sym_out_GT_GT] = ACTIONS(1790), + [anon_sym_e_GT_GT] = ACTIONS(1790), + [anon_sym_o_GT_GT] = ACTIONS(1790), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1790), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1790), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1790), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1790), + [sym__unquoted_pattern] = ACTIONS(1792), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(961)] = { + [sym_comment] = STATE(961), + [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_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_POUND] = ACTIONS(3), + }, + [STATE(962)] = { + [sym_comment] = STATE(962), + [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_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_DOT_DOT2] = ACTIONS(2660), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2662), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2662), + [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_POUND] = ACTIONS(3), }, [STATE(963)] = { [sym_comment] = STATE(963), - [ts_builtin_sym_end] = ACTIONS(1645), - [anon_sym_in] = ACTIONS(1645), - [sym__newline] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1645), - [anon_sym_err_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_GT_PIPE] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), - [anon_sym_GT2] = ACTIONS(1647), - [anon_sym_DASH2] = ACTIONS(1645), - [anon_sym_STAR2] = ACTIONS(1647), - [anon_sym_and2] = ACTIONS(1645), - [anon_sym_xor2] = ACTIONS(1645), - [anon_sym_or2] = ACTIONS(1645), - [anon_sym_not_DASHin2] = ACTIONS(1645), - [anon_sym_has2] = ACTIONS(1645), - [anon_sym_not_DASHhas2] = ACTIONS(1645), - [anon_sym_starts_DASHwith2] = ACTIONS(1645), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1645), - [anon_sym_ends_DASHwith2] = ACTIONS(1645), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1645), - [anon_sym_EQ_EQ2] = ACTIONS(1645), - [anon_sym_BANG_EQ2] = ACTIONS(1645), - [anon_sym_LT2] = ACTIONS(1647), - [anon_sym_LT_EQ2] = ACTIONS(1645), - [anon_sym_GT_EQ2] = ACTIONS(1645), - [anon_sym_EQ_TILDE2] = ACTIONS(1645), - [anon_sym_BANG_TILDE2] = ACTIONS(1645), - [anon_sym_like2] = ACTIONS(1645), - [anon_sym_not_DASHlike2] = ACTIONS(1645), - [anon_sym_STAR_STAR2] = ACTIONS(1645), - [anon_sym_PLUS_PLUS2] = ACTIONS(1645), - [anon_sym_SLASH2] = ACTIONS(1647), - [anon_sym_mod2] = ACTIONS(1645), - [anon_sym_SLASH_SLASH2] = ACTIONS(1645), - [anon_sym_PLUS2] = ACTIONS(1647), - [anon_sym_bit_DASHshl2] = ACTIONS(1645), - [anon_sym_bit_DASHshr2] = ACTIONS(1645), - [anon_sym_bit_DASHand2] = ACTIONS(1645), - [anon_sym_bit_DASHxor2] = ACTIONS(1645), - [anon_sym_bit_DASHor2] = ACTIONS(1645), - [anon_sym_DOT_DOT2] = ACTIONS(1647), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1645), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1645), - [anon_sym_err_GT] = ACTIONS(1647), - [anon_sym_out_GT] = ACTIONS(1647), - [anon_sym_e_GT] = ACTIONS(1647), - [anon_sym_o_GT] = ACTIONS(1647), - [anon_sym_err_PLUSout_GT] = ACTIONS(1647), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1647), - [anon_sym_o_PLUSe_GT] = ACTIONS(1647), - [anon_sym_e_PLUSo_GT] = ACTIONS(1647), - [anon_sym_err_GT_GT] = ACTIONS(1645), - [anon_sym_out_GT_GT] = ACTIONS(1645), - [anon_sym_e_GT_GT] = ACTIONS(1645), - [anon_sym_o_GT_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), + [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_RBRACE] = 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_LPAREN2] = ACTIONS(1986), + [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), + [sym__unquoted_pattern] = ACTIONS(1992), [anon_sym_POUND] = ACTIONS(3), }, [STATE(964)] = { - [aux_sym__repeat_newline] = STATE(982), - [sym__expression_parenthesized] = STATE(4326), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2160), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1861), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), [sym_comment] = STATE(964), - [aux_sym_cmd_identifier_token2] = ACTIONS(2555), - [anon_sym_true] = ACTIONS(2557), - [anon_sym_false] = ACTIONS(2557), - [anon_sym_null] = ACTIONS(2559), - [aux_sym_cmd_identifier_token3] = ACTIONS(2561), - [aux_sym_cmd_identifier_token4] = ACTIONS(2561), - [aux_sym_cmd_identifier_token5] = ACTIONS(2561), - [sym__newline] = ACTIONS(2563), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), - [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(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(2565), - [aux_sym__val_number_decimal_token4] = ACTIONS(2565), - [aux_sym__val_number_token1] = ACTIONS(2561), - [aux_sym__val_number_token2] = ACTIONS(2561), - [aux_sym__val_number_token3] = ACTIONS(2561), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2567), - [anon_sym_DQUOTE] = 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), + [ts_builtin_sym_end] = ACTIONS(2245), + [anon_sym_in] = ACTIONS(2132), + [sym__newline] = ACTIONS(2245), + [anon_sym_SEMI] = ACTIONS(2245), + [anon_sym_PIPE] = ACTIONS(2245), + [anon_sym_err_GT_PIPE] = ACTIONS(2245), + [anon_sym_out_GT_PIPE] = ACTIONS(2245), + [anon_sym_e_GT_PIPE] = ACTIONS(2245), + [anon_sym_o_GT_PIPE] = ACTIONS(2245), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2245), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2245), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2245), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2245), + [anon_sym_GT2] = ACTIONS(2134), + [anon_sym_DASH2] = ACTIONS(2132), + [anon_sym_STAR2] = ACTIONS(2134), + [anon_sym_and2] = ACTIONS(2132), + [anon_sym_xor2] = ACTIONS(2132), + [anon_sym_or2] = ACTIONS(2132), + [anon_sym_not_DASHin2] = ACTIONS(2132), + [anon_sym_has2] = ACTIONS(2132), + [anon_sym_not_DASHhas2] = ACTIONS(2132), + [anon_sym_starts_DASHwith2] = ACTIONS(2132), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2132), + [anon_sym_ends_DASHwith2] = ACTIONS(2132), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2132), + [anon_sym_EQ_EQ2] = ACTIONS(2132), + [anon_sym_BANG_EQ2] = ACTIONS(2132), + [anon_sym_LT2] = ACTIONS(2134), + [anon_sym_LT_EQ2] = ACTIONS(2132), + [anon_sym_GT_EQ2] = ACTIONS(2132), + [anon_sym_EQ_TILDE2] = ACTIONS(2132), + [anon_sym_BANG_TILDE2] = ACTIONS(2132), + [anon_sym_like2] = ACTIONS(2132), + [anon_sym_not_DASHlike2] = ACTIONS(2132), + [anon_sym_STAR_STAR2] = ACTIONS(2132), + [anon_sym_PLUS_PLUS2] = ACTIONS(2132), + [anon_sym_SLASH2] = ACTIONS(2134), + [anon_sym_mod2] = ACTIONS(2132), + [anon_sym_SLASH_SLASH2] = ACTIONS(2132), + [anon_sym_PLUS2] = ACTIONS(2134), + [anon_sym_bit_DASHshl2] = ACTIONS(2132), + [anon_sym_bit_DASHshr2] = ACTIONS(2132), + [anon_sym_bit_DASHand2] = ACTIONS(2132), + [anon_sym_bit_DASHxor2] = ACTIONS(2132), + [anon_sym_bit_DASHor2] = ACTIONS(2132), + [anon_sym_DOT_DOT2] = ACTIONS(1750), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1752), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1752), + [anon_sym_err_GT] = ACTIONS(2247), + [anon_sym_out_GT] = ACTIONS(2247), + [anon_sym_e_GT] = ACTIONS(2247), + [anon_sym_o_GT] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT] = ACTIONS(2247), + [anon_sym_err_GT_GT] = ACTIONS(2245), + [anon_sym_out_GT_GT] = ACTIONS(2245), + [anon_sym_e_GT_GT] = ACTIONS(2245), + [anon_sym_o_GT_GT] = ACTIONS(2245), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2245), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2245), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2245), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2245), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(965)] = { [sym_comment] = STATE(965), - [anon_sym_in] = ACTIONS(1022), - [sym__newline] = ACTIONS(1022), - [anon_sym_SEMI] = ACTIONS(1022), - [anon_sym_PIPE] = ACTIONS(1022), - [anon_sym_err_GT_PIPE] = ACTIONS(1022), - [anon_sym_out_GT_PIPE] = ACTIONS(1022), - [anon_sym_e_GT_PIPE] = ACTIONS(1022), - [anon_sym_o_GT_PIPE] = ACTIONS(1022), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1022), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1022), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1022), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1022), - [anon_sym_RPAREN] = ACTIONS(1022), - [anon_sym_GT2] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(1022), - [anon_sym_RBRACE] = ACTIONS(1022), - [anon_sym_STAR2] = ACTIONS(1020), - [anon_sym_and2] = ACTIONS(1022), - [anon_sym_xor2] = ACTIONS(1022), - [anon_sym_or2] = ACTIONS(1022), - [anon_sym_not_DASHin2] = ACTIONS(1022), - [anon_sym_has2] = ACTIONS(1022), - [anon_sym_not_DASHhas2] = ACTIONS(1022), - [anon_sym_starts_DASHwith2] = ACTIONS(1022), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1022), - [anon_sym_ends_DASHwith2] = ACTIONS(1022), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1022), - [anon_sym_EQ_EQ2] = ACTIONS(1022), - [anon_sym_BANG_EQ2] = ACTIONS(1022), - [anon_sym_LT2] = ACTIONS(1020), - [anon_sym_LT_EQ2] = ACTIONS(1022), - [anon_sym_GT_EQ2] = ACTIONS(1022), - [anon_sym_EQ_TILDE2] = ACTIONS(1022), - [anon_sym_BANG_TILDE2] = ACTIONS(1022), - [anon_sym_like2] = ACTIONS(1022), - [anon_sym_not_DASHlike2] = ACTIONS(1022), - [anon_sym_LPAREN2] = ACTIONS(2656), - [anon_sym_STAR_STAR2] = ACTIONS(1022), - [anon_sym_PLUS_PLUS2] = ACTIONS(1022), - [anon_sym_SLASH2] = ACTIONS(1020), - [anon_sym_mod2] = ACTIONS(1022), - [anon_sym_SLASH_SLASH2] = ACTIONS(1022), - [anon_sym_PLUS2] = ACTIONS(1020), - [anon_sym_bit_DASHshl2] = ACTIONS(1022), - [anon_sym_bit_DASHshr2] = ACTIONS(1022), - [anon_sym_bit_DASHand2] = ACTIONS(1022), - [anon_sym_bit_DASHxor2] = ACTIONS(1022), - [anon_sym_bit_DASHor2] = ACTIONS(1022), - [anon_sym_err_GT] = ACTIONS(1020), - [anon_sym_out_GT] = ACTIONS(1020), - [anon_sym_e_GT] = ACTIONS(1020), - [anon_sym_o_GT] = ACTIONS(1020), - [anon_sym_err_PLUSout_GT] = ACTIONS(1020), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1020), - [anon_sym_o_PLUSe_GT] = ACTIONS(1020), - [anon_sym_e_PLUSo_GT] = ACTIONS(1020), - [anon_sym_err_GT_GT] = ACTIONS(1022), - [anon_sym_out_GT_GT] = ACTIONS(1022), - [anon_sym_e_GT_GT] = ACTIONS(1022), - [anon_sym_o_GT_GT] = ACTIONS(1022), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1022), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1022), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1022), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1022), - [sym__unquoted_pattern] = ACTIONS(2658), + [anon_sym_in] = ACTIONS(1982), + [sym__newline] = ACTIONS(1982), + [anon_sym_SEMI] = ACTIONS(1982), + [anon_sym_PIPE] = ACTIONS(1982), + [anon_sym_err_GT_PIPE] = ACTIONS(1982), + [anon_sym_out_GT_PIPE] = ACTIONS(1982), + [anon_sym_e_GT_PIPE] = ACTIONS(1982), + [anon_sym_o_GT_PIPE] = ACTIONS(1982), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1982), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1982), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1982), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1982), + [anon_sym_RPAREN] = ACTIONS(1982), + [anon_sym_GT2] = ACTIONS(1984), + [anon_sym_DASH2] = ACTIONS(1982), + [anon_sym_RBRACE] = ACTIONS(1982), + [anon_sym_STAR2] = ACTIONS(1984), + [anon_sym_and2] = ACTIONS(1982), + [anon_sym_xor2] = ACTIONS(1982), + [anon_sym_or2] = ACTIONS(1982), + [anon_sym_not_DASHin2] = ACTIONS(1982), + [anon_sym_has2] = ACTIONS(1982), + [anon_sym_not_DASHhas2] = ACTIONS(1982), + [anon_sym_starts_DASHwith2] = ACTIONS(1982), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1982), + [anon_sym_ends_DASHwith2] = ACTIONS(1982), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1982), + [anon_sym_EQ_EQ2] = ACTIONS(1982), + [anon_sym_BANG_EQ2] = ACTIONS(1982), + [anon_sym_LT2] = ACTIONS(1984), + [anon_sym_LT_EQ2] = ACTIONS(1982), + [anon_sym_GT_EQ2] = ACTIONS(1982), + [anon_sym_EQ_TILDE2] = ACTIONS(1982), + [anon_sym_BANG_TILDE2] = ACTIONS(1982), + [anon_sym_like2] = ACTIONS(1982), + [anon_sym_not_DASHlike2] = ACTIONS(1982), + [anon_sym_LPAREN2] = ACTIONS(1986), + [anon_sym_STAR_STAR2] = ACTIONS(1982), + [anon_sym_PLUS_PLUS2] = ACTIONS(1982), + [anon_sym_SLASH2] = ACTIONS(1984), + [anon_sym_mod2] = ACTIONS(1982), + [anon_sym_SLASH_SLASH2] = ACTIONS(1982), + [anon_sym_PLUS2] = ACTIONS(1984), + [anon_sym_bit_DASHshl2] = ACTIONS(1982), + [anon_sym_bit_DASHshr2] = ACTIONS(1982), + [anon_sym_bit_DASHand2] = ACTIONS(1982), + [anon_sym_bit_DASHxor2] = ACTIONS(1982), + [anon_sym_bit_DASHor2] = ACTIONS(1982), + [anon_sym_err_GT] = ACTIONS(1984), + [anon_sym_out_GT] = ACTIONS(1984), + [anon_sym_e_GT] = ACTIONS(1984), + [anon_sym_o_GT] = ACTIONS(1984), + [anon_sym_err_PLUSout_GT] = ACTIONS(1984), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1984), + [anon_sym_o_PLUSe_GT] = ACTIONS(1984), + [anon_sym_e_PLUSo_GT] = ACTIONS(1984), + [anon_sym_err_GT_GT] = ACTIONS(1982), + [anon_sym_out_GT_GT] = ACTIONS(1982), + [anon_sym_e_GT_GT] = ACTIONS(1982), + [anon_sym_o_GT_GT] = ACTIONS(1982), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1982), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1982), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1982), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1982), + [sym__unquoted_pattern] = ACTIONS(1992), [anon_sym_POUND] = ACTIONS(3), }, [STATE(966)] = { [sym_comment] = STATE(966), - [anon_sym_in] = ACTIONS(1030), - [sym__newline] = ACTIONS(1030), - [anon_sym_SEMI] = ACTIONS(1030), - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_err_GT_PIPE] = ACTIONS(1030), - [anon_sym_out_GT_PIPE] = ACTIONS(1030), - [anon_sym_e_GT_PIPE] = ACTIONS(1030), - [anon_sym_o_GT_PIPE] = ACTIONS(1030), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1030), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1030), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1030), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1030), - [anon_sym_RPAREN] = ACTIONS(1030), - [anon_sym_GT2] = ACTIONS(994), - [anon_sym_DASH2] = ACTIONS(1030), - [anon_sym_RBRACE] = ACTIONS(1030), - [anon_sym_STAR2] = ACTIONS(994), - [anon_sym_and2] = ACTIONS(1030), - [anon_sym_xor2] = ACTIONS(1030), - [anon_sym_or2] = ACTIONS(1030), - [anon_sym_not_DASHin2] = ACTIONS(1030), - [anon_sym_has2] = ACTIONS(1030), - [anon_sym_not_DASHhas2] = ACTIONS(1030), - [anon_sym_starts_DASHwith2] = ACTIONS(1030), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1030), - [anon_sym_ends_DASHwith2] = ACTIONS(1030), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1030), - [anon_sym_EQ_EQ2] = ACTIONS(1030), - [anon_sym_BANG_EQ2] = ACTIONS(1030), - [anon_sym_LT2] = ACTIONS(994), - [anon_sym_LT_EQ2] = ACTIONS(1030), - [anon_sym_GT_EQ2] = ACTIONS(1030), - [anon_sym_EQ_TILDE2] = ACTIONS(1030), - [anon_sym_BANG_TILDE2] = ACTIONS(1030), - [anon_sym_like2] = ACTIONS(1030), - [anon_sym_not_DASHlike2] = ACTIONS(1030), - [anon_sym_LPAREN2] = ACTIONS(2656), - [anon_sym_STAR_STAR2] = ACTIONS(1030), - [anon_sym_PLUS_PLUS2] = ACTIONS(1030), - [anon_sym_SLASH2] = ACTIONS(994), - [anon_sym_mod2] = ACTIONS(1030), - [anon_sym_SLASH_SLASH2] = ACTIONS(1030), - [anon_sym_PLUS2] = ACTIONS(994), - [anon_sym_bit_DASHshl2] = ACTIONS(1030), - [anon_sym_bit_DASHshr2] = ACTIONS(1030), - [anon_sym_bit_DASHand2] = ACTIONS(1030), - [anon_sym_bit_DASHxor2] = ACTIONS(1030), - [anon_sym_bit_DASHor2] = ACTIONS(1030), - [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(1030), - [anon_sym_out_GT_GT] = ACTIONS(1030), - [anon_sym_e_GT_GT] = ACTIONS(1030), - [anon_sym_o_GT_GT] = ACTIONS(1030), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1030), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1030), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1030), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1030), - [sym__unquoted_pattern] = ACTIONS(2658), + [anon_sym_in] = ACTIONS(1982), + [sym__newline] = ACTIONS(1982), + [anon_sym_SEMI] = ACTIONS(1982), + [anon_sym_PIPE] = ACTIONS(1982), + [anon_sym_err_GT_PIPE] = ACTIONS(1982), + [anon_sym_out_GT_PIPE] = ACTIONS(1982), + [anon_sym_e_GT_PIPE] = ACTIONS(1982), + [anon_sym_o_GT_PIPE] = ACTIONS(1982), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1982), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1982), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1982), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1982), + [anon_sym_RPAREN] = ACTIONS(1982), + [anon_sym_GT2] = ACTIONS(1984), + [anon_sym_DASH2] = ACTIONS(1982), + [anon_sym_LBRACE] = ACTIONS(1982), + [anon_sym_RBRACE] = ACTIONS(1982), + [anon_sym_EQ_GT] = ACTIONS(1982), + [anon_sym_STAR2] = ACTIONS(1984), + [anon_sym_and2] = ACTIONS(1982), + [anon_sym_xor2] = ACTIONS(1982), + [anon_sym_or2] = ACTIONS(1982), + [anon_sym_not_DASHin2] = ACTIONS(1982), + [anon_sym_has2] = ACTIONS(1982), + [anon_sym_not_DASHhas2] = ACTIONS(1982), + [anon_sym_starts_DASHwith2] = ACTIONS(1982), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1982), + [anon_sym_ends_DASHwith2] = ACTIONS(1982), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1982), + [anon_sym_EQ_EQ2] = ACTIONS(1982), + [anon_sym_BANG_EQ2] = ACTIONS(1982), + [anon_sym_LT2] = ACTIONS(1984), + [anon_sym_LT_EQ2] = ACTIONS(1982), + [anon_sym_GT_EQ2] = ACTIONS(1982), + [anon_sym_EQ_TILDE2] = ACTIONS(1982), + [anon_sym_BANG_TILDE2] = ACTIONS(1982), + [anon_sym_like2] = ACTIONS(1982), + [anon_sym_not_DASHlike2] = ACTIONS(1982), + [anon_sym_STAR_STAR2] = ACTIONS(1982), + [anon_sym_PLUS_PLUS2] = ACTIONS(1982), + [anon_sym_SLASH2] = ACTIONS(1984), + [anon_sym_mod2] = ACTIONS(1982), + [anon_sym_SLASH_SLASH2] = ACTIONS(1982), + [anon_sym_PLUS2] = ACTIONS(1984), + [anon_sym_bit_DASHshl2] = ACTIONS(1982), + [anon_sym_bit_DASHshr2] = ACTIONS(1982), + [anon_sym_bit_DASHand2] = ACTIONS(1982), + [anon_sym_bit_DASHxor2] = ACTIONS(1982), + [anon_sym_bit_DASHor2] = ACTIONS(1982), + [anon_sym_err_GT] = ACTIONS(1984), + [anon_sym_out_GT] = ACTIONS(1984), + [anon_sym_e_GT] = ACTIONS(1984), + [anon_sym_o_GT] = ACTIONS(1984), + [anon_sym_err_PLUSout_GT] = ACTIONS(1984), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1984), + [anon_sym_o_PLUSe_GT] = ACTIONS(1984), + [anon_sym_e_PLUSo_GT] = ACTIONS(1984), + [anon_sym_err_GT_GT] = ACTIONS(1982), + [anon_sym_out_GT_GT] = ACTIONS(1982), + [anon_sym_e_GT_GT] = ACTIONS(1982), + [anon_sym_o_GT_GT] = ACTIONS(1982), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1982), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1982), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1982), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1982), [anon_sym_POUND] = ACTIONS(3), }, [STATE(967)] = { [sym_comment] = STATE(967), - [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_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(968)] = { - [sym_comment] = STATE(968), - [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_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(969)] = { - [sym_comment] = STATE(969), - [anon_sym_in] = ACTIONS(2660), - [sym__newline] = ACTIONS(2660), - [anon_sym_SEMI] = ACTIONS(2660), - [anon_sym_PIPE] = ACTIONS(2660), - [anon_sym_err_GT_PIPE] = ACTIONS(2660), - [anon_sym_out_GT_PIPE] = ACTIONS(2660), - [anon_sym_e_GT_PIPE] = ACTIONS(2660), - [anon_sym_o_GT_PIPE] = ACTIONS(2660), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2660), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2660), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2660), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2660), - [anon_sym_RPAREN] = ACTIONS(2660), - [anon_sym_GT2] = ACTIONS(2662), - [anon_sym_DASH2] = ACTIONS(2660), - [anon_sym_LBRACE] = ACTIONS(2660), - [anon_sym_RBRACE] = ACTIONS(2660), - [anon_sym_EQ_GT] = ACTIONS(2660), - [anon_sym_STAR2] = ACTIONS(2662), - [anon_sym_and2] = ACTIONS(2660), - [anon_sym_xor2] = ACTIONS(2660), - [anon_sym_or2] = ACTIONS(2660), - [anon_sym_not_DASHin2] = ACTIONS(2660), - [anon_sym_has2] = ACTIONS(2660), - [anon_sym_not_DASHhas2] = ACTIONS(2660), - [anon_sym_starts_DASHwith2] = ACTIONS(2660), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2660), - [anon_sym_ends_DASHwith2] = ACTIONS(2660), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2660), - [anon_sym_EQ_EQ2] = ACTIONS(2660), - [anon_sym_BANG_EQ2] = ACTIONS(2660), - [anon_sym_LT2] = ACTIONS(2662), - [anon_sym_LT_EQ2] = ACTIONS(2660), - [anon_sym_GT_EQ2] = ACTIONS(2660), - [anon_sym_EQ_TILDE2] = ACTIONS(2660), - [anon_sym_BANG_TILDE2] = ACTIONS(2660), - [anon_sym_like2] = ACTIONS(2660), - [anon_sym_not_DASHlike2] = ACTIONS(2660), - [anon_sym_STAR_STAR2] = ACTIONS(2660), - [anon_sym_PLUS_PLUS2] = ACTIONS(2660), - [anon_sym_SLASH2] = ACTIONS(2662), - [anon_sym_mod2] = ACTIONS(2660), - [anon_sym_SLASH_SLASH2] = ACTIONS(2660), - [anon_sym_PLUS2] = ACTIONS(2662), - [anon_sym_bit_DASHshl2] = ACTIONS(2660), - [anon_sym_bit_DASHshr2] = ACTIONS(2660), - [anon_sym_bit_DASHand2] = ACTIONS(2660), - [anon_sym_bit_DASHxor2] = ACTIONS(2660), - [anon_sym_bit_DASHor2] = ACTIONS(2660), - [anon_sym_err_GT] = ACTIONS(2662), - [anon_sym_out_GT] = ACTIONS(2662), - [anon_sym_e_GT] = ACTIONS(2662), - [anon_sym_o_GT] = ACTIONS(2662), - [anon_sym_err_PLUSout_GT] = ACTIONS(2662), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2662), - [anon_sym_o_PLUSe_GT] = ACTIONS(2662), - [anon_sym_e_PLUSo_GT] = ACTIONS(2662), - [anon_sym_err_GT_GT] = ACTIONS(2660), - [anon_sym_out_GT_GT] = ACTIONS(2660), - [anon_sym_e_GT_GT] = ACTIONS(2660), - [anon_sym_o_GT_GT] = ACTIONS(2660), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2660), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2660), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2660), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2660), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(970)] = { - [sym_comment] = STATE(970), [anon_sym_in] = ACTIONS(2664), [sym__newline] = ACTIONS(2664), [anon_sym_SEMI] = ACTIONS(2664), @@ -120134,7015 +120800,5662 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2664), [anon_sym_POUND] = ACTIONS(3), }, + [STATE(968)] = { + [sym_comment] = STATE(968), + [ts_builtin_sym_end] = ACTIONS(1580), + [anon_sym_in] = ACTIONS(1580), + [sym__newline] = ACTIONS(1580), + [anon_sym_SEMI] = ACTIONS(1580), + [anon_sym_PIPE] = ACTIONS(1580), + [anon_sym_err_GT_PIPE] = ACTIONS(1580), + [anon_sym_out_GT_PIPE] = ACTIONS(1580), + [anon_sym_e_GT_PIPE] = ACTIONS(1580), + [anon_sym_o_GT_PIPE] = ACTIONS(1580), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1580), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1580), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1580), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1580), + [anon_sym_GT2] = ACTIONS(1578), + [anon_sym_DASH2] = ACTIONS(1580), + [anon_sym_STAR2] = ACTIONS(1578), + [anon_sym_and2] = ACTIONS(1580), + [anon_sym_xor2] = ACTIONS(1580), + [anon_sym_or2] = ACTIONS(1580), + [anon_sym_not_DASHin2] = ACTIONS(1580), + [anon_sym_has2] = ACTIONS(1580), + [anon_sym_not_DASHhas2] = ACTIONS(1580), + [anon_sym_starts_DASHwith2] = ACTIONS(1580), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1580), + [anon_sym_ends_DASHwith2] = ACTIONS(1580), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1580), + [anon_sym_EQ_EQ2] = ACTIONS(1580), + [anon_sym_BANG_EQ2] = ACTIONS(1580), + [anon_sym_LT2] = ACTIONS(1578), + [anon_sym_LT_EQ2] = ACTIONS(1580), + [anon_sym_GT_EQ2] = ACTIONS(1580), + [anon_sym_EQ_TILDE2] = ACTIONS(1580), + [anon_sym_BANG_TILDE2] = ACTIONS(1580), + [anon_sym_like2] = ACTIONS(1580), + [anon_sym_not_DASHlike2] = ACTIONS(1580), + [anon_sym_STAR_STAR2] = ACTIONS(1580), + [anon_sym_PLUS_PLUS2] = ACTIONS(1580), + [anon_sym_SLASH2] = ACTIONS(1578), + [anon_sym_mod2] = ACTIONS(1580), + [anon_sym_SLASH_SLASH2] = ACTIONS(1580), + [anon_sym_PLUS2] = ACTIONS(1578), + [anon_sym_bit_DASHshl2] = ACTIONS(1580), + [anon_sym_bit_DASHshr2] = ACTIONS(1580), + [anon_sym_bit_DASHand2] = ACTIONS(1580), + [anon_sym_bit_DASHxor2] = ACTIONS(1580), + [anon_sym_bit_DASHor2] = ACTIONS(1580), + [anon_sym_DOT_DOT2] = ACTIONS(1578), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1580), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1580), + [anon_sym_err_GT] = ACTIONS(1578), + [anon_sym_out_GT] = ACTIONS(1578), + [anon_sym_e_GT] = ACTIONS(1578), + [anon_sym_o_GT] = ACTIONS(1578), + [anon_sym_err_PLUSout_GT] = ACTIONS(1578), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1578), + [anon_sym_o_PLUSe_GT] = ACTIONS(1578), + [anon_sym_e_PLUSo_GT] = ACTIONS(1578), + [anon_sym_err_GT_GT] = ACTIONS(1580), + [anon_sym_out_GT_GT] = ACTIONS(1580), + [anon_sym_e_GT_GT] = ACTIONS(1580), + [anon_sym_o_GT_GT] = ACTIONS(1580), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1580), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1580), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1580), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1580), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(969)] = { + [sym_comment] = STATE(969), + [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(970)] = { + [sym_comment] = STATE(970), + [anon_sym_in] = ACTIONS(1699), + [sym__newline] = ACTIONS(1699), + [anon_sym_SEMI] = ACTIONS(1699), + [anon_sym_PIPE] = ACTIONS(1699), + [anon_sym_err_GT_PIPE] = ACTIONS(1699), + [anon_sym_out_GT_PIPE] = ACTIONS(1699), + [anon_sym_e_GT_PIPE] = ACTIONS(1699), + [anon_sym_o_GT_PIPE] = ACTIONS(1699), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1699), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1699), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1699), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1699), + [anon_sym_RPAREN] = ACTIONS(1699), + [anon_sym_GT2] = ACTIONS(1615), + [anon_sym_DASH2] = ACTIONS(1699), + [anon_sym_LBRACE] = ACTIONS(1699), + [anon_sym_RBRACE] = ACTIONS(1699), + [anon_sym_EQ_GT] = ACTIONS(1699), + [anon_sym_STAR2] = ACTIONS(1615), + [anon_sym_and2] = ACTIONS(1699), + [anon_sym_xor2] = ACTIONS(1699), + [anon_sym_or2] = ACTIONS(1699), + [anon_sym_not_DASHin2] = ACTIONS(1699), + [anon_sym_has2] = ACTIONS(1699), + [anon_sym_not_DASHhas2] = ACTIONS(1699), + [anon_sym_starts_DASHwith2] = ACTIONS(1699), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1699), + [anon_sym_ends_DASHwith2] = ACTIONS(1699), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1699), + [anon_sym_EQ_EQ2] = ACTIONS(1699), + [anon_sym_BANG_EQ2] = ACTIONS(1699), + [anon_sym_LT2] = ACTIONS(1615), + [anon_sym_LT_EQ2] = ACTIONS(1699), + [anon_sym_GT_EQ2] = ACTIONS(1699), + [anon_sym_EQ_TILDE2] = ACTIONS(1699), + [anon_sym_BANG_TILDE2] = ACTIONS(1699), + [anon_sym_like2] = ACTIONS(1699), + [anon_sym_not_DASHlike2] = ACTIONS(1699), + [anon_sym_STAR_STAR2] = ACTIONS(1699), + [anon_sym_PLUS_PLUS2] = ACTIONS(1699), + [anon_sym_SLASH2] = ACTIONS(1615), + [anon_sym_mod2] = ACTIONS(1699), + [anon_sym_SLASH_SLASH2] = ACTIONS(1699), + [anon_sym_PLUS2] = ACTIONS(1615), + [anon_sym_bit_DASHshl2] = ACTIONS(1699), + [anon_sym_bit_DASHshr2] = ACTIONS(1699), + [anon_sym_bit_DASHand2] = ACTIONS(1699), + [anon_sym_bit_DASHxor2] = ACTIONS(1699), + [anon_sym_bit_DASHor2] = ACTIONS(1699), + [anon_sym_err_GT] = ACTIONS(1615), + [anon_sym_out_GT] = ACTIONS(1615), + [anon_sym_e_GT] = ACTIONS(1615), + [anon_sym_o_GT] = ACTIONS(1615), + [anon_sym_err_PLUSout_GT] = ACTIONS(1615), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1615), + [anon_sym_o_PLUSe_GT] = ACTIONS(1615), + [anon_sym_e_PLUSo_GT] = ACTIONS(1615), + [anon_sym_err_GT_GT] = ACTIONS(1699), + [anon_sym_out_GT_GT] = ACTIONS(1699), + [anon_sym_e_GT_GT] = ACTIONS(1699), + [anon_sym_o_GT_GT] = ACTIONS(1699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1699), + [anon_sym_POUND] = ACTIONS(3), + }, [STATE(971)] = { - [aux_sym__repeat_newline] = STATE(1137), - [sym__expression_parenthesized] = STATE(4494), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2160), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1861), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), [sym_comment] = STATE(971), - [aux_sym_cmd_identifier_token2] = ACTIONS(2555), - [anon_sym_true] = ACTIONS(2557), - [anon_sym_false] = ACTIONS(2557), - [anon_sym_null] = ACTIONS(2559), - [aux_sym_cmd_identifier_token3] = ACTIONS(2561), - [aux_sym_cmd_identifier_token4] = ACTIONS(2561), - [aux_sym_cmd_identifier_token5] = ACTIONS(2561), - [sym__newline] = ACTIONS(2563), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), - [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(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(2565), - [aux_sym__val_number_decimal_token4] = ACTIONS(2565), - [aux_sym__val_number_token1] = ACTIONS(2561), - [aux_sym__val_number_token2] = ACTIONS(2561), - [aux_sym__val_number_token3] = ACTIONS(2561), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2567), - [anon_sym_DQUOTE] = 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(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_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_POUND] = ACTIONS(3), }, [STATE(972)] = { [sym_comment] = STATE(972), - [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_GT2] = ACTIONS(1580), - [anon_sym_DASH2] = ACTIONS(1582), - [anon_sym_STAR2] = ACTIONS(1580), - [anon_sym_and2] = ACTIONS(1582), - [anon_sym_xor2] = ACTIONS(1582), - [anon_sym_or2] = ACTIONS(1582), - [anon_sym_not_DASHin2] = ACTIONS(1582), - [anon_sym_has2] = ACTIONS(1582), - [anon_sym_not_DASHhas2] = ACTIONS(1582), - [anon_sym_starts_DASHwith2] = ACTIONS(1582), - [anon_sym_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(1580), - [anon_sym_LT_EQ2] = ACTIONS(1582), - [anon_sym_GT_EQ2] = ACTIONS(1582), - [anon_sym_EQ_TILDE2] = ACTIONS(1582), - [anon_sym_BANG_TILDE2] = ACTIONS(1582), - [anon_sym_like2] = ACTIONS(1582), - [anon_sym_not_DASHlike2] = ACTIONS(1582), - [anon_sym_STAR_STAR2] = ACTIONS(1582), - [anon_sym_PLUS_PLUS2] = ACTIONS(1582), - [anon_sym_SLASH2] = ACTIONS(1580), - [anon_sym_mod2] = ACTIONS(1582), - [anon_sym_SLASH_SLASH2] = ACTIONS(1582), - [anon_sym_PLUS2] = ACTIONS(1580), - [anon_sym_bit_DASHshl2] = ACTIONS(1582), - [anon_sym_bit_DASHshr2] = ACTIONS(1582), - [anon_sym_bit_DASHand2] = ACTIONS(1582), - [anon_sym_bit_DASHxor2] = ACTIONS(1582), - [anon_sym_bit_DASHor2] = ACTIONS(1582), - [anon_sym_DOT_DOT2] = ACTIONS(1580), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1582), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1582), - [anon_sym_err_GT] = ACTIONS(1580), - [anon_sym_out_GT] = ACTIONS(1580), - [anon_sym_e_GT] = ACTIONS(1580), - [anon_sym_o_GT] = ACTIONS(1580), - [anon_sym_err_PLUSout_GT] = ACTIONS(1580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1580), - [anon_sym_o_PLUSe_GT] = ACTIONS(1580), - [anon_sym_e_PLUSo_GT] = ACTIONS(1580), - [anon_sym_err_GT_GT] = ACTIONS(1582), - [anon_sym_out_GT_GT] = ACTIONS(1582), - [anon_sym_e_GT_GT] = ACTIONS(1582), - [anon_sym_o_GT_GT] = ACTIONS(1582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1582), + [anon_sym_in] = ACTIONS(2668), + [sym__newline] = ACTIONS(2668), + [anon_sym_SEMI] = ACTIONS(2668), + [anon_sym_PIPE] = ACTIONS(2668), + [anon_sym_err_GT_PIPE] = ACTIONS(2668), + [anon_sym_out_GT_PIPE] = ACTIONS(2668), + [anon_sym_e_GT_PIPE] = ACTIONS(2668), + [anon_sym_o_GT_PIPE] = ACTIONS(2668), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2668), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2668), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2668), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2668), + [anon_sym_RPAREN] = ACTIONS(2668), + [anon_sym_GT2] = ACTIONS(2670), + [anon_sym_DASH2] = ACTIONS(2668), + [anon_sym_LBRACE] = ACTIONS(2668), + [anon_sym_RBRACE] = ACTIONS(2668), + [anon_sym_EQ_GT] = ACTIONS(2668), + [anon_sym_STAR2] = ACTIONS(2670), + [anon_sym_and2] = ACTIONS(2668), + [anon_sym_xor2] = ACTIONS(2668), + [anon_sym_or2] = ACTIONS(2668), + [anon_sym_not_DASHin2] = ACTIONS(2668), + [anon_sym_has2] = ACTIONS(2668), + [anon_sym_not_DASHhas2] = ACTIONS(2668), + [anon_sym_starts_DASHwith2] = ACTIONS(2668), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2668), + [anon_sym_ends_DASHwith2] = ACTIONS(2668), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2668), + [anon_sym_EQ_EQ2] = ACTIONS(2668), + [anon_sym_BANG_EQ2] = ACTIONS(2668), + [anon_sym_LT2] = ACTIONS(2670), + [anon_sym_LT_EQ2] = ACTIONS(2668), + [anon_sym_GT_EQ2] = ACTIONS(2668), + [anon_sym_EQ_TILDE2] = ACTIONS(2668), + [anon_sym_BANG_TILDE2] = ACTIONS(2668), + [anon_sym_like2] = ACTIONS(2668), + [anon_sym_not_DASHlike2] = ACTIONS(2668), + [anon_sym_STAR_STAR2] = ACTIONS(2668), + [anon_sym_PLUS_PLUS2] = ACTIONS(2668), + [anon_sym_SLASH2] = ACTIONS(2670), + [anon_sym_mod2] = ACTIONS(2668), + [anon_sym_SLASH_SLASH2] = ACTIONS(2668), + [anon_sym_PLUS2] = ACTIONS(2670), + [anon_sym_bit_DASHshl2] = ACTIONS(2668), + [anon_sym_bit_DASHshr2] = ACTIONS(2668), + [anon_sym_bit_DASHand2] = ACTIONS(2668), + [anon_sym_bit_DASHxor2] = ACTIONS(2668), + [anon_sym_bit_DASHor2] = ACTIONS(2668), + [anon_sym_err_GT] = ACTIONS(2670), + [anon_sym_out_GT] = ACTIONS(2670), + [anon_sym_e_GT] = ACTIONS(2670), + [anon_sym_o_GT] = ACTIONS(2670), + [anon_sym_err_PLUSout_GT] = ACTIONS(2670), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2670), + [anon_sym_o_PLUSe_GT] = ACTIONS(2670), + [anon_sym_e_PLUSo_GT] = ACTIONS(2670), + [anon_sym_err_GT_GT] = ACTIONS(2668), + [anon_sym_out_GT_GT] = ACTIONS(2668), + [anon_sym_e_GT_GT] = ACTIONS(2668), + [anon_sym_o_GT_GT] = ACTIONS(2668), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2668), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2668), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2668), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2668), [anon_sym_POUND] = ACTIONS(3), }, [STATE(973)] = { - [aux_sym__repeat_newline] = STATE(4207), - [sym__match_pattern_expression] = STATE(4432), - [sym__match_pattern_value] = STATE(4736), - [sym__match_pattern_list_body] = STATE(4648), - [sym__match_pattern_list] = STATE(4737), - [sym__match_pattern_rest] = STATE(5137), - [sym__match_pattern_record] = STATE(4742), - [sym_expr_parenthesized] = STATE(4040), - [sym_val_range] = STATE(4736), - [sym__val_range] = STATE(5140), - [sym_val_nothing] = STATE(4742), - [sym_val_bool] = STATE(4490), - [sym_val_variable] = STATE(4041), - [sym_val_number] = STATE(4742), - [sym__val_number_decimal] = STATE(3727), - [sym__val_number] = STATE(4386), - [sym_val_duration] = STATE(4742), - [sym_val_filesize] = STATE(4742), - [sym_val_binary] = STATE(4742), - [sym_val_string] = STATE(4742), - [sym__raw_str] = STATE(3665), - [sym__str_double_quotes] = STATE(3665), - [sym__str_single_quotes] = STATE(3665), - [sym__str_back_ticks] = STATE(3665), - [sym_val_list] = STATE(5146), - [sym__table_head] = STATE(3815), - [sym_val_table] = STATE(4742), - [sym__unquoted_in_list] = STATE(4432), - [sym__unquoted_anonymous_prefix] = STATE(5140), [sym_comment] = STATE(973), - [aux_sym__types_body_repeat1] = STATE(1402), - [aux_sym_parameter_repeat2] = STATE(4158), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1433), - [anon_sym_true] = ACTIONS(1384), - [anon_sym_false] = ACTIONS(1384), - [anon_sym_null] = ACTIONS(1386), - [aux_sym_cmd_identifier_token3] = ACTIONS(1388), - [aux_sym_cmd_identifier_token4] = ACTIONS(1388), - [aux_sym_cmd_identifier_token5] = ACTIONS(1388), - [sym__newline] = ACTIONS(2668), - [anon_sym_LBRACK] = ACTIONS(2670), - [anon_sym_RBRACK] = ACTIONS(2672), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1398), - [anon_sym_DOLLAR] = ACTIONS(2674), - [anon_sym_LBRACE] = ACTIONS(2676), - [anon_sym_DOT_DOT] = ACTIONS(2678), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1406), - [anon_sym_DOT_DOT_LT] = ACTIONS(1406), - [aux_sym__val_number_decimal_token1] = ACTIONS(1408), - [aux_sym__val_number_decimal_token2] = ACTIONS(1410), - [aux_sym__val_number_decimal_token3] = ACTIONS(1412), - [aux_sym__val_number_decimal_token4] = ACTIONS(1412), - [aux_sym__val_number_token1] = ACTIONS(1414), - [aux_sym__val_number_token2] = ACTIONS(1414), - [aux_sym__val_number_token3] = ACTIONS(1414), - [anon_sym_0b] = ACTIONS(1416), - [anon_sym_0o] = ACTIONS(1418), - [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(2680), - [anon_sym_DQUOTE] = ACTIONS(1422), - [anon_sym_SQUOTE] = ACTIONS(1424), - [anon_sym_BQUOTE] = ACTIONS(1426), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), + [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_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_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1436), }, [STATE(974)] = { - [sym__expr_parenthesized_immediate] = STATE(5171), [sym_comment] = STATE(974), - [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(1724), - [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_in] = ACTIONS(1699), + [sym__newline] = ACTIONS(1699), + [anon_sym_SEMI] = ACTIONS(1699), + [anon_sym_PIPE] = ACTIONS(1699), + [anon_sym_err_GT_PIPE] = ACTIONS(1699), + [anon_sym_out_GT_PIPE] = ACTIONS(1699), + [anon_sym_e_GT_PIPE] = ACTIONS(1699), + [anon_sym_o_GT_PIPE] = ACTIONS(1699), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1699), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1699), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1699), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1699), + [anon_sym_RPAREN] = ACTIONS(1699), + [anon_sym_GT2] = ACTIONS(1615), + [anon_sym_DASH2] = ACTIONS(1699), + [anon_sym_RBRACE] = ACTIONS(1699), + [anon_sym_STAR2] = ACTIONS(1615), + [anon_sym_and2] = ACTIONS(1699), + [anon_sym_xor2] = ACTIONS(1699), + [anon_sym_or2] = ACTIONS(1699), + [anon_sym_not_DASHin2] = ACTIONS(1699), + [anon_sym_has2] = ACTIONS(1699), + [anon_sym_not_DASHhas2] = ACTIONS(1699), + [anon_sym_starts_DASHwith2] = ACTIONS(1699), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1699), + [anon_sym_ends_DASHwith2] = ACTIONS(1699), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1699), + [anon_sym_EQ_EQ2] = ACTIONS(1699), + [anon_sym_BANG_EQ2] = ACTIONS(1699), + [anon_sym_LT2] = ACTIONS(1615), + [anon_sym_LT_EQ2] = ACTIONS(1699), + [anon_sym_GT_EQ2] = ACTIONS(1699), + [anon_sym_EQ_TILDE2] = ACTIONS(1699), + [anon_sym_BANG_TILDE2] = ACTIONS(1699), + [anon_sym_like2] = ACTIONS(1699), + [anon_sym_not_DASHlike2] = ACTIONS(1699), + [anon_sym_LPAREN2] = ACTIONS(2672), + [anon_sym_STAR_STAR2] = ACTIONS(1699), + [anon_sym_PLUS_PLUS2] = ACTIONS(1699), + [anon_sym_SLASH2] = ACTIONS(1615), + [anon_sym_mod2] = ACTIONS(1699), + [anon_sym_SLASH_SLASH2] = ACTIONS(1699), + [anon_sym_PLUS2] = ACTIONS(1615), + [anon_sym_bit_DASHshl2] = ACTIONS(1699), + [anon_sym_bit_DASHshr2] = ACTIONS(1699), + [anon_sym_bit_DASHand2] = ACTIONS(1699), + [anon_sym_bit_DASHxor2] = ACTIONS(1699), + [anon_sym_bit_DASHor2] = ACTIONS(1699), + [anon_sym_err_GT] = ACTIONS(1615), + [anon_sym_out_GT] = ACTIONS(1615), + [anon_sym_e_GT] = ACTIONS(1615), + [anon_sym_o_GT] = ACTIONS(1615), + [anon_sym_err_PLUSout_GT] = ACTIONS(1615), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1615), + [anon_sym_o_PLUSe_GT] = ACTIONS(1615), + [anon_sym_e_PLUSo_GT] = ACTIONS(1615), + [anon_sym_err_GT_GT] = ACTIONS(1699), + [anon_sym_out_GT_GT] = ACTIONS(1699), + [anon_sym_e_GT_GT] = ACTIONS(1699), + [anon_sym_o_GT_GT] = ACTIONS(1699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1699), + [sym__unquoted_pattern] = ACTIONS(2674), [anon_sym_POUND] = ACTIONS(3), }, [STATE(975)] = { - [sym__expr_parenthesized_immediate] = STATE(5171), + [aux_sym__repeat_newline] = STATE(1137), + [sym__expression_parenthesized] = STATE(4632), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2190), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1886), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), [sym_comment] = STATE(975), - [ts_builtin_sym_end] = ACTIONS(2184), - [anon_sym_in] = ACTIONS(2184), - [sym__newline] = ACTIONS(2184), - [anon_sym_SEMI] = ACTIONS(2184), - [anon_sym_PIPE] = ACTIONS(2184), - [anon_sym_err_GT_PIPE] = ACTIONS(2184), - [anon_sym_out_GT_PIPE] = ACTIONS(2184), - [anon_sym_e_GT_PIPE] = ACTIONS(2184), - [anon_sym_o_GT_PIPE] = ACTIONS(2184), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2184), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2184), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2184), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2184), - [anon_sym_GT2] = ACTIONS(2186), - [anon_sym_DASH2] = ACTIONS(2184), - [anon_sym_STAR2] = ACTIONS(2186), - [anon_sym_and2] = ACTIONS(2184), - [anon_sym_xor2] = ACTIONS(2184), - [anon_sym_or2] = ACTIONS(2184), - [anon_sym_not_DASHin2] = ACTIONS(2184), - [anon_sym_has2] = ACTIONS(2184), - [anon_sym_not_DASHhas2] = ACTIONS(2184), - [anon_sym_starts_DASHwith2] = ACTIONS(2184), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2184), - [anon_sym_ends_DASHwith2] = ACTIONS(2184), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2184), - [anon_sym_EQ_EQ2] = ACTIONS(2184), - [anon_sym_BANG_EQ2] = ACTIONS(2184), - [anon_sym_LT2] = ACTIONS(2186), - [anon_sym_LT_EQ2] = ACTIONS(2184), - [anon_sym_GT_EQ2] = ACTIONS(2184), - [anon_sym_EQ_TILDE2] = ACTIONS(2184), - [anon_sym_BANG_TILDE2] = ACTIONS(2184), - [anon_sym_like2] = ACTIONS(2184), - [anon_sym_not_DASHlike2] = ACTIONS(2184), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_STAR_STAR2] = ACTIONS(2184), - [anon_sym_PLUS_PLUS2] = ACTIONS(2184), - [anon_sym_SLASH2] = ACTIONS(2186), - [anon_sym_mod2] = ACTIONS(2184), - [anon_sym_SLASH_SLASH2] = ACTIONS(2184), - [anon_sym_PLUS2] = ACTIONS(2186), - [anon_sym_bit_DASHshl2] = ACTIONS(2184), - [anon_sym_bit_DASHshr2] = ACTIONS(2184), - [anon_sym_bit_DASHand2] = ACTIONS(2184), - [anon_sym_bit_DASHxor2] = ACTIONS(2184), - [anon_sym_bit_DASHor2] = ACTIONS(2184), - [anon_sym_err_GT] = ACTIONS(2186), - [anon_sym_out_GT] = ACTIONS(2186), - [anon_sym_e_GT] = ACTIONS(2186), - [anon_sym_o_GT] = ACTIONS(2186), - [anon_sym_err_PLUSout_GT] = ACTIONS(2186), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2186), - [anon_sym_o_PLUSe_GT] = ACTIONS(2186), - [anon_sym_e_PLUSo_GT] = ACTIONS(2186), - [anon_sym_err_GT_GT] = ACTIONS(2184), - [anon_sym_out_GT_GT] = ACTIONS(2184), - [anon_sym_e_GT_GT] = ACTIONS(2184), - [anon_sym_o_GT_GT] = ACTIONS(2184), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2184), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2184), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2184), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2184), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(976)] = { - [sym__expression] = STATE(4841), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), - [sym__expr_binary_expression] = STATE(2253), - [sym_expr_parenthesized] = STATE(704), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1861), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_comment] = STATE(976), - [aux_sym_cmd_identifier_token2] = ACTIONS(2682), - [anon_sym_true] = ACTIONS(2557), - [anon_sym_false] = ACTIONS(2557), - [anon_sym_null] = ACTIONS(2559), - [aux_sym_cmd_identifier_token3] = ACTIONS(2561), - [aux_sym_cmd_identifier_token4] = ACTIONS(2561), - [aux_sym_cmd_identifier_token5] = ACTIONS(2561), + [aux_sym_cmd_identifier_token2] = ACTIONS(2594), + [anon_sym_true] = ACTIONS(2596), + [anon_sym_false] = ACTIONS(2596), + [anon_sym_null] = ACTIONS(2598), + [aux_sym_cmd_identifier_token3] = ACTIONS(2600), + [aux_sym_cmd_identifier_token4] = ACTIONS(2600), + [aux_sym_cmd_identifier_token5] = ACTIONS(2600), + [sym__newline] = ACTIONS(2602), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [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(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(2565), - [aux_sym__val_number_decimal_token4] = ACTIONS(2565), - [aux_sym__val_number_token1] = ACTIONS(2561), - [aux_sym__val_number_token2] = ACTIONS(2561), - [aux_sym__val_number_token3] = ACTIONS(2561), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2006), + [aux_sym__val_number_decimal_token3] = ACTIONS(2604), + [aux_sym__val_number_decimal_token4] = ACTIONS(2604), + [aux_sym__val_number_token1] = ACTIONS(2600), + [aux_sym__val_number_token2] = ACTIONS(2600), + [aux_sym__val_number_token3] = ACTIONS(2600), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2567), + [sym_val_date] = ACTIONS(2606), [anon_sym_DQUOTE] = 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(2684), [anon_sym_POUND] = ACTIONS(103), [sym_raw_string_begin] = ACTIONS(211), }, + [STATE(976)] = { + [sym_comment] = STATE(976), + [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_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_POUND] = ACTIONS(3), + }, [STATE(977)] = { - [sym_expr_unary] = STATE(2775), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_parenthesized] = STATE(2544), - [sym_val_range] = STATE(2775), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(2775), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(2613), - [sym_val_variable] = STATE(2549), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(2356), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(2266), - [sym__str_double_quotes] = STATE(2266), - [sym__str_single_quotes] = STATE(2266), - [sym__str_back_ticks] = STATE(2266), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(2564), - [sym__unquoted_with_expr] = STATE(2858), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(977), - [anon_sym_true] = ACTIONS(2686), - [anon_sym_false] = ACTIONS(2686), - [anon_sym_null] = ACTIONS(2688), - [aux_sym_cmd_identifier_token3] = ACTIONS(2690), - [aux_sym_cmd_identifier_token4] = ACTIONS(2690), - [aux_sym_cmd_identifier_token5] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(2692), - [anon_sym_LPAREN] = ACTIONS(2694), - [anon_sym_DOLLAR] = ACTIONS(2696), + [anon_sym_in] = ACTIONS(2676), + [sym__newline] = ACTIONS(2676), + [anon_sym_SEMI] = ACTIONS(2676), + [anon_sym_PIPE] = ACTIONS(2676), + [anon_sym_err_GT_PIPE] = ACTIONS(2676), + [anon_sym_out_GT_PIPE] = ACTIONS(2676), + [anon_sym_e_GT_PIPE] = ACTIONS(2676), + [anon_sym_o_GT_PIPE] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2676), + [anon_sym_RPAREN] = ACTIONS(2676), + [anon_sym_GT2] = ACTIONS(2678), + [anon_sym_DASH2] = ACTIONS(2676), + [anon_sym_LBRACE] = ACTIONS(2676), + [anon_sym_STAR2] = ACTIONS(2678), + [anon_sym_and2] = ACTIONS(2676), + [anon_sym_xor2] = ACTIONS(2676), + [anon_sym_or2] = ACTIONS(2676), + [anon_sym_not_DASHin2] = ACTIONS(2676), + [anon_sym_has2] = ACTIONS(2676), + [anon_sym_not_DASHhas2] = ACTIONS(2676), + [anon_sym_starts_DASHwith2] = ACTIONS(2676), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2676), + [anon_sym_ends_DASHwith2] = ACTIONS(2676), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2676), + [anon_sym_EQ_EQ2] = ACTIONS(2676), + [anon_sym_BANG_EQ2] = ACTIONS(2676), + [anon_sym_LT2] = ACTIONS(2678), + [anon_sym_LT_EQ2] = ACTIONS(2676), + [anon_sym_GT_EQ2] = ACTIONS(2676), + [anon_sym_EQ_TILDE2] = ACTIONS(2676), + [anon_sym_BANG_TILDE2] = ACTIONS(2676), + [anon_sym_like2] = ACTIONS(2676), + [anon_sym_not_DASHlike2] = ACTIONS(2676), + [anon_sym_STAR_STAR2] = ACTIONS(2676), + [anon_sym_PLUS_PLUS2] = ACTIONS(2676), + [anon_sym_SLASH2] = ACTIONS(2678), + [anon_sym_mod2] = ACTIONS(2676), + [anon_sym_SLASH_SLASH2] = ACTIONS(2676), + [anon_sym_PLUS2] = ACTIONS(2678), + [anon_sym_bit_DASHshl2] = ACTIONS(2676), + [anon_sym_bit_DASHshr2] = ACTIONS(2676), + [anon_sym_bit_DASHand2] = ACTIONS(2676), + [anon_sym_bit_DASHxor2] = ACTIONS(2676), + [anon_sym_bit_DASHor2] = ACTIONS(2676), + [anon_sym_err_GT] = ACTIONS(2678), + [anon_sym_out_GT] = ACTIONS(2678), + [anon_sym_e_GT] = ACTIONS(2678), + [anon_sym_o_GT] = ACTIONS(2678), + [anon_sym_err_PLUSout_GT] = ACTIONS(2678), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2678), + [anon_sym_o_PLUSe_GT] = ACTIONS(2678), + [anon_sym_e_PLUSo_GT] = ACTIONS(2678), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(978)] = { + [sym_expr_unary] = STATE(2871), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_parenthesized] = STATE(2552), + [sym_val_range] = STATE(2871), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(2871), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(2578), + [sym_val_variable] = STATE(2555), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(2367), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(2274), + [sym__str_double_quotes] = STATE(2274), + [sym__str_single_quotes] = STATE(2274), + [sym__str_back_ticks] = STATE(2274), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(2635), + [sym__unquoted_with_expr] = STATE(2874), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(978), + [anon_sym_true] = ACTIONS(2680), + [anon_sym_false] = ACTIONS(2680), + [anon_sym_null] = ACTIONS(2682), + [aux_sym_cmd_identifier_token3] = ACTIONS(2684), + [aux_sym_cmd_identifier_token4] = ACTIONS(2684), + [aux_sym_cmd_identifier_token5] = ACTIONS(2684), + [anon_sym_LBRACK] = ACTIONS(2686), + [anon_sym_LPAREN] = ACTIONS(2688), + [anon_sym_DOLLAR] = ACTIONS(2690), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(2698), - [anon_sym_DOT_DOT] = ACTIONS(2700), - [aux_sym_expr_unary_token1] = ACTIONS(2702), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2704), - [anon_sym_DOT_DOT_LT] = ACTIONS(2704), - [aux_sym__val_number_decimal_token1] = ACTIONS(2706), - [aux_sym__val_number_decimal_token2] = ACTIONS(2708), - [aux_sym__val_number_decimal_token3] = ACTIONS(2710), - [aux_sym__val_number_decimal_token4] = ACTIONS(2710), + [anon_sym_LBRACE] = ACTIONS(2692), + [anon_sym_DOT_DOT] = ACTIONS(2694), + [aux_sym_expr_unary_token1] = ACTIONS(2696), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2698), + [anon_sym_DOT_DOT_LT] = ACTIONS(2698), + [aux_sym__val_number_decimal_token1] = ACTIONS(2700), + [aux_sym__val_number_decimal_token2] = ACTIONS(2702), + [aux_sym__val_number_decimal_token3] = ACTIONS(2704), + [aux_sym__val_number_decimal_token4] = ACTIONS(2704), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2712), - [anon_sym_DQUOTE] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(1802), - [anon_sym_BQUOTE] = ACTIONS(1804), + [sym_val_date] = ACTIONS(2706), + [anon_sym_DQUOTE] = ACTIONS(1772), + [anon_sym_SQUOTE] = ACTIONS(1774), + [anon_sym_BQUOTE] = ACTIONS(1776), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1936), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1806), - }, - [STATE(978)] = { - [sym_comment] = STATE(978), - [ts_builtin_sym_end] = ACTIONS(1770), - [anon_sym_in] = ACTIONS(1770), - [sym__newline] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1770), - [anon_sym_PIPE] = ACTIONS(1770), - [anon_sym_err_GT_PIPE] = ACTIONS(1770), - [anon_sym_out_GT_PIPE] = ACTIONS(1770), - [anon_sym_e_GT_PIPE] = ACTIONS(1770), - [anon_sym_o_GT_PIPE] = ACTIONS(1770), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1770), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1770), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1770), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1770), - [anon_sym_GT2] = ACTIONS(1772), - [anon_sym_DASH2] = ACTIONS(1770), - [anon_sym_STAR2] = ACTIONS(1772), - [anon_sym_and2] = ACTIONS(1770), - [anon_sym_xor2] = ACTIONS(1770), - [anon_sym_or2] = ACTIONS(1770), - [anon_sym_not_DASHin2] = ACTIONS(1770), - [anon_sym_has2] = ACTIONS(1770), - [anon_sym_not_DASHhas2] = ACTIONS(1770), - [anon_sym_starts_DASHwith2] = ACTIONS(1770), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1770), - [anon_sym_ends_DASHwith2] = ACTIONS(1770), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1770), - [anon_sym_EQ_EQ2] = ACTIONS(1770), - [anon_sym_BANG_EQ2] = ACTIONS(1770), - [anon_sym_LT2] = ACTIONS(1772), - [anon_sym_LT_EQ2] = ACTIONS(1770), - [anon_sym_GT_EQ2] = ACTIONS(1770), - [anon_sym_EQ_TILDE2] = ACTIONS(1770), - [anon_sym_BANG_TILDE2] = ACTIONS(1770), - [anon_sym_like2] = ACTIONS(1770), - [anon_sym_not_DASHlike2] = ACTIONS(1770), - [anon_sym_LPAREN2] = ACTIONS(1770), - [anon_sym_STAR_STAR2] = ACTIONS(1770), - [anon_sym_PLUS_PLUS2] = ACTIONS(1770), - [anon_sym_SLASH2] = ACTIONS(1772), - [anon_sym_mod2] = ACTIONS(1770), - [anon_sym_SLASH_SLASH2] = ACTIONS(1770), - [anon_sym_PLUS2] = ACTIONS(1772), - [anon_sym_bit_DASHshl2] = ACTIONS(1770), - [anon_sym_bit_DASHshr2] = ACTIONS(1770), - [anon_sym_bit_DASHand2] = ACTIONS(1770), - [anon_sym_bit_DASHxor2] = ACTIONS(1770), - [anon_sym_bit_DASHor2] = ACTIONS(1770), - [anon_sym_err_GT] = ACTIONS(1772), - [anon_sym_out_GT] = ACTIONS(1772), - [anon_sym_e_GT] = ACTIONS(1772), - [anon_sym_o_GT] = ACTIONS(1772), - [anon_sym_err_PLUSout_GT] = ACTIONS(1772), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1772), - [anon_sym_o_PLUSe_GT] = ACTIONS(1772), - [anon_sym_e_PLUSo_GT] = ACTIONS(1772), - [anon_sym_err_GT_GT] = ACTIONS(1770), - [anon_sym_out_GT_GT] = ACTIONS(1770), - [anon_sym_e_GT_GT] = ACTIONS(1770), - [anon_sym_o_GT_GT] = ACTIONS(1770), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1770), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1770), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1770), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1770), - [sym__unquoted_pattern] = ACTIONS(1772), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1778), }, [STATE(979)] = { [sym_comment] = STATE(979), - [ts_builtin_sym_end] = ACTIONS(1852), - [anon_sym_in] = ACTIONS(1852), - [sym__newline] = ACTIONS(1852), - [anon_sym_SEMI] = ACTIONS(1852), - [anon_sym_PIPE] = ACTIONS(1852), - [anon_sym_err_GT_PIPE] = ACTIONS(1852), - [anon_sym_out_GT_PIPE] = ACTIONS(1852), - [anon_sym_e_GT_PIPE] = ACTIONS(1852), - [anon_sym_o_GT_PIPE] = ACTIONS(1852), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1852), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1852), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1852), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1852), - [anon_sym_GT2] = ACTIONS(1854), - [anon_sym_DASH2] = ACTIONS(1852), - [anon_sym_STAR2] = ACTIONS(1854), - [anon_sym_and2] = ACTIONS(1852), - [anon_sym_xor2] = ACTIONS(1852), - [anon_sym_or2] = ACTIONS(1852), - [anon_sym_not_DASHin2] = ACTIONS(1852), - [anon_sym_has2] = ACTIONS(1852), - [anon_sym_not_DASHhas2] = ACTIONS(1852), - [anon_sym_starts_DASHwith2] = ACTIONS(1852), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1852), - [anon_sym_ends_DASHwith2] = ACTIONS(1852), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1852), - [anon_sym_EQ_EQ2] = ACTIONS(1852), - [anon_sym_BANG_EQ2] = ACTIONS(1852), - [anon_sym_LT2] = ACTIONS(1854), - [anon_sym_LT_EQ2] = ACTIONS(1852), - [anon_sym_GT_EQ2] = ACTIONS(1852), - [anon_sym_EQ_TILDE2] = ACTIONS(1852), - [anon_sym_BANG_TILDE2] = ACTIONS(1852), - [anon_sym_like2] = ACTIONS(1852), - [anon_sym_not_DASHlike2] = ACTIONS(1852), - [anon_sym_LPAREN2] = ACTIONS(1852), - [anon_sym_STAR_STAR2] = ACTIONS(1852), - [anon_sym_PLUS_PLUS2] = ACTIONS(1852), - [anon_sym_SLASH2] = ACTIONS(1854), - [anon_sym_mod2] = ACTIONS(1852), - [anon_sym_SLASH_SLASH2] = ACTIONS(1852), - [anon_sym_PLUS2] = ACTIONS(1854), - [anon_sym_bit_DASHshl2] = ACTIONS(1852), - [anon_sym_bit_DASHshr2] = ACTIONS(1852), - [anon_sym_bit_DASHand2] = ACTIONS(1852), - [anon_sym_bit_DASHxor2] = ACTIONS(1852), - [anon_sym_bit_DASHor2] = ACTIONS(1852), - [anon_sym_err_GT] = ACTIONS(1854), - [anon_sym_out_GT] = ACTIONS(1854), - [anon_sym_e_GT] = ACTIONS(1854), - [anon_sym_o_GT] = ACTIONS(1854), - [anon_sym_err_PLUSout_GT] = ACTIONS(1854), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1854), - [anon_sym_o_PLUSe_GT] = ACTIONS(1854), - [anon_sym_e_PLUSo_GT] = ACTIONS(1854), - [anon_sym_err_GT_GT] = ACTIONS(1852), - [anon_sym_out_GT_GT] = ACTIONS(1852), - [anon_sym_e_GT_GT] = ACTIONS(1852), - [anon_sym_o_GT_GT] = ACTIONS(1852), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1852), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1852), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1852), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1852), - [sym__unquoted_pattern] = ACTIONS(1854), + [ts_builtin_sym_end] = ACTIONS(1790), + [anon_sym_in] = ACTIONS(1790), + [sym__newline] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym_PIPE] = ACTIONS(1790), + [anon_sym_err_GT_PIPE] = ACTIONS(1790), + [anon_sym_out_GT_PIPE] = ACTIONS(1790), + [anon_sym_e_GT_PIPE] = ACTIONS(1790), + [anon_sym_o_GT_PIPE] = ACTIONS(1790), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1790), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1790), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1790), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1790), + [anon_sym_GT2] = ACTIONS(1792), + [anon_sym_DASH2] = ACTIONS(1790), + [anon_sym_STAR2] = ACTIONS(1792), + [anon_sym_and2] = ACTIONS(1790), + [anon_sym_xor2] = ACTIONS(1790), + [anon_sym_or2] = ACTIONS(1790), + [anon_sym_not_DASHin2] = ACTIONS(1790), + [anon_sym_has2] = ACTIONS(1790), + [anon_sym_not_DASHhas2] = ACTIONS(1790), + [anon_sym_starts_DASHwith2] = ACTIONS(1790), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1790), + [anon_sym_ends_DASHwith2] = ACTIONS(1790), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1790), + [anon_sym_EQ_EQ2] = ACTIONS(1790), + [anon_sym_BANG_EQ2] = ACTIONS(1790), + [anon_sym_LT2] = ACTIONS(1792), + [anon_sym_LT_EQ2] = ACTIONS(1790), + [anon_sym_GT_EQ2] = ACTIONS(1790), + [anon_sym_EQ_TILDE2] = ACTIONS(1790), + [anon_sym_BANG_TILDE2] = ACTIONS(1790), + [anon_sym_like2] = ACTIONS(1790), + [anon_sym_not_DASHlike2] = ACTIONS(1790), + [anon_sym_STAR_STAR2] = ACTIONS(1790), + [anon_sym_PLUS_PLUS2] = ACTIONS(1790), + [anon_sym_SLASH2] = ACTIONS(1792), + [anon_sym_mod2] = ACTIONS(1790), + [anon_sym_SLASH_SLASH2] = ACTIONS(1790), + [anon_sym_PLUS2] = ACTIONS(1792), + [anon_sym_bit_DASHshl2] = ACTIONS(1790), + [anon_sym_bit_DASHshr2] = ACTIONS(1790), + [anon_sym_bit_DASHand2] = ACTIONS(1790), + [anon_sym_bit_DASHxor2] = ACTIONS(1790), + [anon_sym_bit_DASHor2] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(2708), + [aux_sym__immediate_decimal_token5] = ACTIONS(1901), + [anon_sym_err_GT] = ACTIONS(1792), + [anon_sym_out_GT] = ACTIONS(1792), + [anon_sym_e_GT] = ACTIONS(1792), + [anon_sym_o_GT] = ACTIONS(1792), + [anon_sym_err_PLUSout_GT] = ACTIONS(1792), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1792), + [anon_sym_o_PLUSe_GT] = ACTIONS(1792), + [anon_sym_e_PLUSo_GT] = ACTIONS(1792), + [anon_sym_err_GT_GT] = ACTIONS(1790), + [anon_sym_out_GT_GT] = ACTIONS(1790), + [anon_sym_e_GT_GT] = ACTIONS(1790), + [anon_sym_o_GT_GT] = ACTIONS(1790), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1790), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1790), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1790), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1790), [anon_sym_POUND] = ACTIONS(3), }, [STATE(980)] = { + [sym__expr_parenthesized_immediate] = STATE(4973), [sym_comment] = STATE(980), - [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), + [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(1818), + [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_POUND] = ACTIONS(3), }, [STATE(981)] = { - [sym__expr_parenthesized_immediate] = STATE(4884), + [sym__expr_parenthesized_immediate] = STATE(4973), [sym_comment] = STATE(981), - [ts_builtin_sym_end] = ACTIONS(2098), - [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_GT2] = ACTIONS(2100), - [anon_sym_DASH2] = 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(1724), - [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), + [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(1818), + [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_POUND] = ACTIONS(3), }, [STATE(982)] = { - [aux_sym__repeat_newline] = STATE(1356), - [sym__expression_parenthesized] = STATE(4216), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2160), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1861), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), [sym_comment] = STATE(982), - [anon_sym_true] = ACTIONS(1938), - [anon_sym_false] = ACTIONS(1938), - [anon_sym_null] = ACTIONS(2714), - [aux_sym_cmd_identifier_token3] = ACTIONS(189), - [aux_sym_cmd_identifier_token4] = ACTIONS(189), - [aux_sym_cmd_identifier_token5] = ACTIONS(189), - [sym__newline] = ACTIONS(2563), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), - [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(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1930), - [aux_sym__val_number_decimal_token3] = ACTIONS(1932), - [aux_sym__val_number_decimal_token4] = ACTIONS(1932), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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), + [ts_builtin_sym_end] = ACTIONS(2360), + [anon_sym_in] = ACTIONS(2360), + [sym__newline] = ACTIONS(2360), + [anon_sym_SEMI] = ACTIONS(2360), + [anon_sym_PIPE] = ACTIONS(2360), + [anon_sym_err_GT_PIPE] = ACTIONS(2360), + [anon_sym_out_GT_PIPE] = ACTIONS(2360), + [anon_sym_e_GT_PIPE] = ACTIONS(2360), + [anon_sym_o_GT_PIPE] = ACTIONS(2360), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2360), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2360), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2360), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2360), + [anon_sym_GT2] = ACTIONS(2362), + [anon_sym_DASH2] = ACTIONS(2360), + [anon_sym_STAR2] = ACTIONS(2362), + [anon_sym_and2] = ACTIONS(2360), + [anon_sym_xor2] = ACTIONS(2360), + [anon_sym_or2] = ACTIONS(2360), + [anon_sym_not_DASHin2] = ACTIONS(2360), + [anon_sym_has2] = ACTIONS(2360), + [anon_sym_not_DASHhas2] = ACTIONS(2360), + [anon_sym_starts_DASHwith2] = ACTIONS(2360), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2360), + [anon_sym_ends_DASHwith2] = ACTIONS(2360), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2360), + [anon_sym_EQ_EQ2] = ACTIONS(2360), + [anon_sym_BANG_EQ2] = ACTIONS(2360), + [anon_sym_LT2] = ACTIONS(2362), + [anon_sym_LT_EQ2] = ACTIONS(2360), + [anon_sym_GT_EQ2] = ACTIONS(2360), + [anon_sym_EQ_TILDE2] = ACTIONS(2360), + [anon_sym_BANG_TILDE2] = ACTIONS(2360), + [anon_sym_like2] = ACTIONS(2360), + [anon_sym_not_DASHlike2] = ACTIONS(2360), + [anon_sym_LPAREN2] = ACTIONS(2360), + [anon_sym_STAR_STAR2] = ACTIONS(2360), + [anon_sym_PLUS_PLUS2] = ACTIONS(2360), + [anon_sym_SLASH2] = ACTIONS(2362), + [anon_sym_mod2] = ACTIONS(2360), + [anon_sym_SLASH_SLASH2] = ACTIONS(2360), + [anon_sym_PLUS2] = ACTIONS(2362), + [anon_sym_bit_DASHshl2] = ACTIONS(2360), + [anon_sym_bit_DASHshr2] = ACTIONS(2360), + [anon_sym_bit_DASHand2] = ACTIONS(2360), + [anon_sym_bit_DASHxor2] = ACTIONS(2360), + [anon_sym_bit_DASHor2] = ACTIONS(2360), + [anon_sym_err_GT] = ACTIONS(2362), + [anon_sym_out_GT] = ACTIONS(2362), + [anon_sym_e_GT] = ACTIONS(2362), + [anon_sym_o_GT] = ACTIONS(2362), + [anon_sym_err_PLUSout_GT] = ACTIONS(2362), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2362), + [anon_sym_o_PLUSe_GT] = ACTIONS(2362), + [anon_sym_e_PLUSo_GT] = ACTIONS(2362), + [anon_sym_err_GT_GT] = ACTIONS(2360), + [anon_sym_out_GT_GT] = ACTIONS(2360), + [anon_sym_e_GT_GT] = ACTIONS(2360), + [anon_sym_o_GT_GT] = ACTIONS(2360), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2360), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2360), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2360), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2360), + [sym__unquoted_pattern] = ACTIONS(2362), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(983)] = { - [sym__expr_parenthesized_immediate] = STATE(4884), [sym_comment] = STATE(983), - [ts_builtin_sym_end] = ACTIONS(2098), - [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_GT2] = ACTIONS(2100), - [anon_sym_DASH2] = 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(1724), - [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_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(847), + [anon_sym_DASH2] = ACTIONS(968), + [anon_sym_RBRACE] = ACTIONS(968), + [anon_sym_STAR2] = ACTIONS(847), + [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(847), + [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(847), + [anon_sym_mod2] = ACTIONS(968), + [anon_sym_SLASH_SLASH2] = ACTIONS(968), + [anon_sym_PLUS2] = ACTIONS(847), + [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(847), + [anon_sym_out_GT] = ACTIONS(847), + [anon_sym_e_GT] = ACTIONS(847), + [anon_sym_o_GT] = ACTIONS(847), + [anon_sym_err_PLUSout_GT] = ACTIONS(847), + [anon_sym_out_PLUSerr_GT] = ACTIONS(847), + [anon_sym_o_PLUSe_GT] = ACTIONS(847), + [anon_sym_e_PLUSo_GT] = ACTIONS(847), + [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(1828), [anon_sym_POUND] = ACTIONS(3), }, [STATE(984)] = { - [aux_sym__repeat_newline] = STATE(1038), [sym_comment] = STATE(984), - [anon_sym_in] = ACTIONS(2327), - [sym__newline] = ACTIONS(2327), - [anon_sym_SEMI] = ACTIONS(2327), - [anon_sym_PIPE] = ACTIONS(2327), - [anon_sym_err_GT_PIPE] = ACTIONS(2327), - [anon_sym_out_GT_PIPE] = ACTIONS(2327), - [anon_sym_e_GT_PIPE] = ACTIONS(2327), - [anon_sym_o_GT_PIPE] = ACTIONS(2327), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2327), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2327), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2327), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2327), - [anon_sym_RPAREN] = ACTIONS(2327), - [anon_sym_GT2] = ACTIONS(2329), - [anon_sym_DASH2] = ACTIONS(2327), - [anon_sym_LBRACE] = ACTIONS(2327), - [anon_sym_STAR2] = ACTIONS(2329), - [anon_sym_and2] = ACTIONS(2327), - [anon_sym_xor2] = ACTIONS(2327), - [anon_sym_or2] = ACTIONS(2327), - [anon_sym_not_DASHin2] = ACTIONS(2327), - [anon_sym_has2] = ACTIONS(2327), - [anon_sym_not_DASHhas2] = ACTIONS(2327), - [anon_sym_starts_DASHwith2] = ACTIONS(2327), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2327), - [anon_sym_ends_DASHwith2] = ACTIONS(2327), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2327), - [anon_sym_EQ_EQ2] = ACTIONS(2327), - [anon_sym_BANG_EQ2] = ACTIONS(2327), - [anon_sym_LT2] = ACTIONS(2329), - [anon_sym_LT_EQ2] = ACTIONS(2327), - [anon_sym_GT_EQ2] = ACTIONS(2327), - [anon_sym_EQ_TILDE2] = ACTIONS(2327), - [anon_sym_BANG_TILDE2] = ACTIONS(2327), - [anon_sym_like2] = ACTIONS(2327), - [anon_sym_not_DASHlike2] = ACTIONS(2327), - [anon_sym_STAR_STAR2] = ACTIONS(2327), - [anon_sym_PLUS_PLUS2] = ACTIONS(2327), - [anon_sym_SLASH2] = ACTIONS(2329), - [anon_sym_mod2] = ACTIONS(2327), - [anon_sym_SLASH_SLASH2] = ACTIONS(2327), - [anon_sym_PLUS2] = ACTIONS(2329), - [anon_sym_bit_DASHshl2] = ACTIONS(2327), - [anon_sym_bit_DASHshr2] = ACTIONS(2327), - [anon_sym_bit_DASHand2] = ACTIONS(2327), - [anon_sym_bit_DASHxor2] = ACTIONS(2327), - [anon_sym_bit_DASHor2] = ACTIONS(2327), - [anon_sym_err_GT] = ACTIONS(2329), - [anon_sym_out_GT] = ACTIONS(2329), - [anon_sym_e_GT] = ACTIONS(2329), - [anon_sym_o_GT] = ACTIONS(2329), - [anon_sym_err_PLUSout_GT] = ACTIONS(2329), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2329), - [anon_sym_o_PLUSe_GT] = ACTIONS(2329), - [anon_sym_e_PLUSo_GT] = ACTIONS(2329), - [anon_sym_err_GT_GT] = ACTIONS(2327), - [anon_sym_out_GT_GT] = ACTIONS(2327), - [anon_sym_e_GT_GT] = ACTIONS(2327), - [anon_sym_o_GT_GT] = ACTIONS(2327), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2327), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2327), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2327), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2327), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(985)] = { - [aux_sym__repeat_newline] = STATE(527), - [sym_comment] = STATE(985), - [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_POUND] = ACTIONS(3), - }, - [STATE(986)] = { - [aux_sym__repeat_newline] = STATE(1039), - [sym_comment] = STATE(986), - [anon_sym_in] = ACTIONS(2327), - [sym__newline] = ACTIONS(2327), - [anon_sym_SEMI] = ACTIONS(2327), - [anon_sym_PIPE] = ACTIONS(2327), - [anon_sym_err_GT_PIPE] = ACTIONS(2327), - [anon_sym_out_GT_PIPE] = ACTIONS(2327), - [anon_sym_e_GT_PIPE] = ACTIONS(2327), - [anon_sym_o_GT_PIPE] = ACTIONS(2327), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2327), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2327), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2327), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2327), - [anon_sym_RPAREN] = ACTIONS(2327), - [anon_sym_GT2] = ACTIONS(2329), - [anon_sym_DASH2] = ACTIONS(2327), - [anon_sym_LBRACE] = ACTIONS(2327), - [anon_sym_STAR2] = ACTIONS(2329), - [anon_sym_and2] = ACTIONS(2327), - [anon_sym_xor2] = ACTIONS(2327), - [anon_sym_or2] = ACTIONS(2327), - [anon_sym_not_DASHin2] = ACTIONS(2327), - [anon_sym_has2] = ACTIONS(2327), - [anon_sym_not_DASHhas2] = ACTIONS(2327), - [anon_sym_starts_DASHwith2] = ACTIONS(2327), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2327), - [anon_sym_ends_DASHwith2] = ACTIONS(2327), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2327), - [anon_sym_EQ_EQ2] = ACTIONS(2327), - [anon_sym_BANG_EQ2] = ACTIONS(2327), - [anon_sym_LT2] = ACTIONS(2329), - [anon_sym_LT_EQ2] = ACTIONS(2327), - [anon_sym_GT_EQ2] = ACTIONS(2327), - [anon_sym_EQ_TILDE2] = ACTIONS(2327), - [anon_sym_BANG_TILDE2] = ACTIONS(2327), - [anon_sym_like2] = ACTIONS(2327), - [anon_sym_not_DASHlike2] = ACTIONS(2327), - [anon_sym_STAR_STAR2] = ACTIONS(2327), - [anon_sym_PLUS_PLUS2] = ACTIONS(2327), - [anon_sym_SLASH2] = ACTIONS(2329), - [anon_sym_mod2] = ACTIONS(2327), - [anon_sym_SLASH_SLASH2] = ACTIONS(2327), - [anon_sym_PLUS2] = ACTIONS(2329), - [anon_sym_bit_DASHshl2] = ACTIONS(2327), - [anon_sym_bit_DASHshr2] = ACTIONS(2327), - [anon_sym_bit_DASHand2] = ACTIONS(2327), - [anon_sym_bit_DASHxor2] = ACTIONS(2327), - [anon_sym_bit_DASHor2] = ACTIONS(2327), - [anon_sym_err_GT] = ACTIONS(2329), - [anon_sym_out_GT] = ACTIONS(2329), - [anon_sym_e_GT] = ACTIONS(2329), - [anon_sym_o_GT] = ACTIONS(2329), - [anon_sym_err_PLUSout_GT] = ACTIONS(2329), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2329), - [anon_sym_o_PLUSe_GT] = ACTIONS(2329), - [anon_sym_e_PLUSo_GT] = ACTIONS(2329), - [anon_sym_err_GT_GT] = ACTIONS(2327), - [anon_sym_out_GT_GT] = ACTIONS(2327), - [anon_sym_e_GT_GT] = ACTIONS(2327), - [anon_sym_o_GT_GT] = ACTIONS(2327), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2327), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2327), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2327), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2327), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(987)] = { - [aux_sym__repeat_newline] = STATE(527), - [sym_comment] = STATE(987), - [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_POUND] = ACTIONS(3), - }, - [STATE(988)] = { - [aux_sym__repeat_newline] = STATE(1040), - [sym_comment] = STATE(988), - [anon_sym_in] = ACTIONS(2327), - [sym__newline] = ACTIONS(2327), - [anon_sym_SEMI] = ACTIONS(2327), - [anon_sym_PIPE] = ACTIONS(2327), - [anon_sym_err_GT_PIPE] = ACTIONS(2327), - [anon_sym_out_GT_PIPE] = ACTIONS(2327), - [anon_sym_e_GT_PIPE] = ACTIONS(2327), - [anon_sym_o_GT_PIPE] = ACTIONS(2327), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2327), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2327), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2327), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2327), - [anon_sym_RPAREN] = ACTIONS(2327), - [anon_sym_GT2] = ACTIONS(2329), - [anon_sym_DASH2] = ACTIONS(2327), - [anon_sym_LBRACE] = ACTIONS(2327), - [anon_sym_STAR2] = ACTIONS(2329), - [anon_sym_and2] = ACTIONS(2327), - [anon_sym_xor2] = ACTIONS(2327), - [anon_sym_or2] = ACTIONS(2327), - [anon_sym_not_DASHin2] = ACTIONS(2327), - [anon_sym_has2] = ACTIONS(2327), - [anon_sym_not_DASHhas2] = ACTIONS(2327), - [anon_sym_starts_DASHwith2] = ACTIONS(2327), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2327), - [anon_sym_ends_DASHwith2] = ACTIONS(2327), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2327), - [anon_sym_EQ_EQ2] = ACTIONS(2327), - [anon_sym_BANG_EQ2] = ACTIONS(2327), - [anon_sym_LT2] = ACTIONS(2329), - [anon_sym_LT_EQ2] = ACTIONS(2327), - [anon_sym_GT_EQ2] = ACTIONS(2327), - [anon_sym_EQ_TILDE2] = ACTIONS(2327), - [anon_sym_BANG_TILDE2] = ACTIONS(2327), - [anon_sym_like2] = ACTIONS(2327), - [anon_sym_not_DASHlike2] = ACTIONS(2327), - [anon_sym_STAR_STAR2] = ACTIONS(2327), - [anon_sym_PLUS_PLUS2] = ACTIONS(2327), - [anon_sym_SLASH2] = ACTIONS(2329), - [anon_sym_mod2] = ACTIONS(2327), - [anon_sym_SLASH_SLASH2] = ACTIONS(2327), - [anon_sym_PLUS2] = ACTIONS(2329), - [anon_sym_bit_DASHshl2] = ACTIONS(2327), - [anon_sym_bit_DASHshr2] = ACTIONS(2327), - [anon_sym_bit_DASHand2] = ACTIONS(2327), - [anon_sym_bit_DASHxor2] = ACTIONS(2327), - [anon_sym_bit_DASHor2] = ACTIONS(2327), - [anon_sym_err_GT] = ACTIONS(2329), - [anon_sym_out_GT] = ACTIONS(2329), - [anon_sym_e_GT] = ACTIONS(2329), - [anon_sym_o_GT] = ACTIONS(2329), - [anon_sym_err_PLUSout_GT] = ACTIONS(2329), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2329), - [anon_sym_o_PLUSe_GT] = ACTIONS(2329), - [anon_sym_e_PLUSo_GT] = ACTIONS(2329), - [anon_sym_err_GT_GT] = ACTIONS(2327), - [anon_sym_out_GT_GT] = ACTIONS(2327), - [anon_sym_e_GT_GT] = ACTIONS(2327), - [anon_sym_o_GT_GT] = ACTIONS(2327), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2327), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2327), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2327), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2327), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(989)] = { - [aux_sym__repeat_newline] = STATE(527), - [sym_comment] = STATE(989), - [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_POUND] = ACTIONS(3), - }, - [STATE(990)] = { - [sym__expr_parenthesized_immediate] = STATE(4884), - [sym_comment] = STATE(990), - [ts_builtin_sym_end] = ACTIONS(2098), - [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_GT2] = ACTIONS(2100), - [anon_sym_DASH2] = 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(1724), - [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(991)] = { - [aux_sym__repeat_newline] = STATE(1356), - [sym__expression_parenthesized] = STATE(4511), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2160), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1861), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_comment] = STATE(991), - [anon_sym_true] = ACTIONS(1938), - [anon_sym_false] = ACTIONS(1938), - [anon_sym_null] = ACTIONS(2714), - [aux_sym_cmd_identifier_token3] = ACTIONS(189), - [aux_sym_cmd_identifier_token4] = ACTIONS(189), - [aux_sym_cmd_identifier_token5] = ACTIONS(189), - [sym__newline] = ACTIONS(2563), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), - [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(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1930), - [aux_sym__val_number_decimal_token3] = ACTIONS(1932), - [aux_sym__val_number_decimal_token4] = ACTIONS(1932), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__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), + [ts_builtin_sym_end] = ACTIONS(2616), + [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_GT2] = ACTIONS(2618), + [anon_sym_DASH2] = 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_LPAREN2] = ACTIONS(2620), + [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), + [sym__unquoted_pattern] = ACTIONS(2622), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(985)] = { + [sym_comment] = STATE(985), + [ts_builtin_sym_end] = ACTIONS(1699), + [anon_sym_in] = ACTIONS(1699), + [sym__newline] = ACTIONS(1699), + [anon_sym_SEMI] = ACTIONS(1699), + [anon_sym_PIPE] = ACTIONS(1699), + [anon_sym_err_GT_PIPE] = ACTIONS(1699), + [anon_sym_out_GT_PIPE] = ACTIONS(1699), + [anon_sym_e_GT_PIPE] = ACTIONS(1699), + [anon_sym_o_GT_PIPE] = ACTIONS(1699), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1699), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1699), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1699), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1699), + [anon_sym_GT2] = ACTIONS(1615), + [anon_sym_DASH2] = ACTIONS(1699), + [anon_sym_STAR2] = ACTIONS(1615), + [anon_sym_and2] = ACTIONS(1699), + [anon_sym_xor2] = ACTIONS(1699), + [anon_sym_or2] = ACTIONS(1699), + [anon_sym_not_DASHin2] = ACTIONS(1699), + [anon_sym_has2] = ACTIONS(1699), + [anon_sym_not_DASHhas2] = ACTIONS(1699), + [anon_sym_starts_DASHwith2] = ACTIONS(1699), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1699), + [anon_sym_ends_DASHwith2] = ACTIONS(1699), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1699), + [anon_sym_EQ_EQ2] = ACTIONS(1699), + [anon_sym_BANG_EQ2] = ACTIONS(1699), + [anon_sym_LT2] = ACTIONS(1615), + [anon_sym_LT_EQ2] = ACTIONS(1699), + [anon_sym_GT_EQ2] = ACTIONS(1699), + [anon_sym_EQ_TILDE2] = ACTIONS(1699), + [anon_sym_BANG_TILDE2] = ACTIONS(1699), + [anon_sym_like2] = ACTIONS(1699), + [anon_sym_not_DASHlike2] = ACTIONS(1699), + [anon_sym_LPAREN2] = ACTIONS(2672), + [anon_sym_STAR_STAR2] = ACTIONS(1699), + [anon_sym_PLUS_PLUS2] = ACTIONS(1699), + [anon_sym_SLASH2] = ACTIONS(1615), + [anon_sym_mod2] = ACTIONS(1699), + [anon_sym_SLASH_SLASH2] = ACTIONS(1699), + [anon_sym_PLUS2] = ACTIONS(1615), + [anon_sym_bit_DASHshl2] = ACTIONS(1699), + [anon_sym_bit_DASHshr2] = ACTIONS(1699), + [anon_sym_bit_DASHand2] = ACTIONS(1699), + [anon_sym_bit_DASHxor2] = ACTIONS(1699), + [anon_sym_bit_DASHor2] = ACTIONS(1699), + [anon_sym_err_GT] = ACTIONS(1615), + [anon_sym_out_GT] = ACTIONS(1615), + [anon_sym_e_GT] = ACTIONS(1615), + [anon_sym_o_GT] = ACTIONS(1615), + [anon_sym_err_PLUSout_GT] = ACTIONS(1615), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1615), + [anon_sym_o_PLUSe_GT] = ACTIONS(1615), + [anon_sym_e_PLUSo_GT] = ACTIONS(1615), + [anon_sym_err_GT_GT] = ACTIONS(1699), + [anon_sym_out_GT_GT] = ACTIONS(1699), + [anon_sym_e_GT_GT] = ACTIONS(1699), + [anon_sym_o_GT_GT] = ACTIONS(1699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1699), + [sym__unquoted_pattern] = ACTIONS(2674), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(986)] = { + [aux_sym__repeat_newline] = STATE(485), + [sym_comment] = STATE(986), + [anon_sym_in] = ACTIONS(2710), + [sym__newline] = ACTIONS(2710), + [anon_sym_SEMI] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(2710), + [anon_sym_err_GT_PIPE] = ACTIONS(2710), + [anon_sym_out_GT_PIPE] = ACTIONS(2710), + [anon_sym_e_GT_PIPE] = ACTIONS(2710), + [anon_sym_o_GT_PIPE] = ACTIONS(2710), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2710), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2710), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2710), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2710), + [anon_sym_RPAREN] = ACTIONS(2710), + [anon_sym_GT2] = ACTIONS(2712), + [anon_sym_DASH2] = ACTIONS(2710), + [anon_sym_LBRACE] = ACTIONS(2710), + [anon_sym_STAR2] = ACTIONS(2712), + [anon_sym_and2] = ACTIONS(2710), + [anon_sym_xor2] = ACTIONS(2710), + [anon_sym_or2] = ACTIONS(2710), + [anon_sym_not_DASHin2] = ACTIONS(2710), + [anon_sym_has2] = ACTIONS(2710), + [anon_sym_not_DASHhas2] = ACTIONS(2710), + [anon_sym_starts_DASHwith2] = ACTIONS(2710), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2710), + [anon_sym_ends_DASHwith2] = ACTIONS(2710), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2710), + [anon_sym_EQ_EQ2] = ACTIONS(2710), + [anon_sym_BANG_EQ2] = ACTIONS(2710), + [anon_sym_LT2] = ACTIONS(2712), + [anon_sym_LT_EQ2] = ACTIONS(2710), + [anon_sym_GT_EQ2] = ACTIONS(2710), + [anon_sym_EQ_TILDE2] = ACTIONS(2710), + [anon_sym_BANG_TILDE2] = ACTIONS(2710), + [anon_sym_like2] = ACTIONS(2710), + [anon_sym_not_DASHlike2] = ACTIONS(2710), + [anon_sym_STAR_STAR2] = ACTIONS(2710), + [anon_sym_PLUS_PLUS2] = ACTIONS(2710), + [anon_sym_SLASH2] = ACTIONS(2712), + [anon_sym_mod2] = ACTIONS(2710), + [anon_sym_SLASH_SLASH2] = ACTIONS(2710), + [anon_sym_PLUS2] = ACTIONS(2712), + [anon_sym_bit_DASHshl2] = ACTIONS(2710), + [anon_sym_bit_DASHshr2] = ACTIONS(2710), + [anon_sym_bit_DASHand2] = ACTIONS(2710), + [anon_sym_bit_DASHxor2] = ACTIONS(2710), + [anon_sym_bit_DASHor2] = ACTIONS(2710), + [anon_sym_err_GT] = ACTIONS(2712), + [anon_sym_out_GT] = ACTIONS(2712), + [anon_sym_e_GT] = ACTIONS(2712), + [anon_sym_o_GT] = ACTIONS(2712), + [anon_sym_err_PLUSout_GT] = ACTIONS(2712), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2712), + [anon_sym_o_PLUSe_GT] = ACTIONS(2712), + [anon_sym_e_PLUSo_GT] = ACTIONS(2712), + [anon_sym_err_GT_GT] = ACTIONS(2710), + [anon_sym_out_GT_GT] = ACTIONS(2710), + [anon_sym_e_GT_GT] = ACTIONS(2710), + [anon_sym_o_GT_GT] = ACTIONS(2710), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2710), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2710), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2710), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2710), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(987)] = { + [aux_sym__repeat_newline] = STATE(1102), + [sym_comment] = STATE(987), + [anon_sym_in] = ACTIONS(2381), + [sym__newline] = ACTIONS(2381), + [anon_sym_SEMI] = ACTIONS(2381), + [anon_sym_PIPE] = ACTIONS(2381), + [anon_sym_err_GT_PIPE] = ACTIONS(2381), + [anon_sym_out_GT_PIPE] = ACTIONS(2381), + [anon_sym_e_GT_PIPE] = ACTIONS(2381), + [anon_sym_o_GT_PIPE] = ACTIONS(2381), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2381), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2381), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2381), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2381), + [anon_sym_RPAREN] = ACTIONS(2381), + [anon_sym_GT2] = ACTIONS(2383), + [anon_sym_DASH2] = ACTIONS(2381), + [anon_sym_LBRACE] = ACTIONS(2381), + [anon_sym_STAR2] = ACTIONS(2383), + [anon_sym_and2] = ACTIONS(2381), + [anon_sym_xor2] = ACTIONS(2381), + [anon_sym_or2] = ACTIONS(2381), + [anon_sym_not_DASHin2] = ACTIONS(2381), + [anon_sym_has2] = ACTIONS(2381), + [anon_sym_not_DASHhas2] = ACTIONS(2381), + [anon_sym_starts_DASHwith2] = ACTIONS(2381), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2381), + [anon_sym_ends_DASHwith2] = ACTIONS(2381), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2381), + [anon_sym_EQ_EQ2] = ACTIONS(2381), + [anon_sym_BANG_EQ2] = ACTIONS(2381), + [anon_sym_LT2] = ACTIONS(2383), + [anon_sym_LT_EQ2] = ACTIONS(2381), + [anon_sym_GT_EQ2] = ACTIONS(2381), + [anon_sym_EQ_TILDE2] = ACTIONS(2381), + [anon_sym_BANG_TILDE2] = ACTIONS(2381), + [anon_sym_like2] = ACTIONS(2381), + [anon_sym_not_DASHlike2] = ACTIONS(2381), + [anon_sym_STAR_STAR2] = ACTIONS(2381), + [anon_sym_PLUS_PLUS2] = ACTIONS(2381), + [anon_sym_SLASH2] = ACTIONS(2383), + [anon_sym_mod2] = ACTIONS(2381), + [anon_sym_SLASH_SLASH2] = ACTIONS(2381), + [anon_sym_PLUS2] = ACTIONS(2383), + [anon_sym_bit_DASHshl2] = ACTIONS(2381), + [anon_sym_bit_DASHshr2] = ACTIONS(2381), + [anon_sym_bit_DASHand2] = ACTIONS(2381), + [anon_sym_bit_DASHxor2] = ACTIONS(2381), + [anon_sym_bit_DASHor2] = ACTIONS(2381), + [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(2381), + [anon_sym_out_GT_GT] = ACTIONS(2381), + [anon_sym_e_GT_GT] = ACTIONS(2381), + [anon_sym_o_GT_GT] = ACTIONS(2381), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2381), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2381), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2381), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2381), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(988)] = { + [sym__expr_parenthesized_immediate] = STATE(4973), + [sym_comment] = STATE(988), + [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(1818), + [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_POUND] = ACTIONS(3), + }, + [STATE(989)] = { + [aux_sym__repeat_newline] = STATE(4461), + [sym__match_pattern_expression] = STATE(4356), + [sym__match_pattern_value] = STATE(4686), + [sym__match_pattern_list_body] = STATE(4803), + [sym__match_pattern_list] = STATE(4805), + [sym__match_pattern_rest] = STATE(5278), + [sym__match_pattern_record] = STATE(4754), + [sym_expr_parenthesized] = STATE(3964), + [sym_val_range] = STATE(4686), + [sym__val_range] = STATE(5330), + [sym_val_nothing] = STATE(4754), + [sym_val_bool] = STATE(4347), + [sym_val_variable] = STATE(3965), + [sym_val_number] = STATE(4754), + [sym__val_number_decimal] = STATE(3795), + [sym__val_number] = STATE(4628), + [sym_val_duration] = STATE(4754), + [sym_val_filesize] = STATE(4754), + [sym_val_binary] = STATE(4754), + [sym_val_string] = STATE(4754), + [sym__raw_str] = STATE(3725), + [sym__str_double_quotes] = STATE(3725), + [sym__str_single_quotes] = STATE(3725), + [sym__str_back_ticks] = STATE(3725), + [sym_val_list] = STATE(5121), + [sym__table_head] = STATE(3940), + [sym_val_table] = STATE(4754), + [sym__unquoted_in_list] = STATE(4356), + [sym__unquoted_anonymous_prefix] = STATE(5330), + [sym_comment] = STATE(989), + [aux_sym__types_body_repeat1] = STATE(1407), + [aux_sym_parameter_repeat2] = STATE(4311), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1431), + [anon_sym_true] = ACTIONS(1384), + [anon_sym_false] = ACTIONS(1384), + [anon_sym_null] = ACTIONS(1386), + [aux_sym_cmd_identifier_token3] = ACTIONS(1388), + [aux_sym_cmd_identifier_token4] = ACTIONS(1388), + [aux_sym_cmd_identifier_token5] = ACTIONS(1388), + [sym__newline] = ACTIONS(2714), + [anon_sym_LBRACK] = ACTIONS(2716), + [anon_sym_RBRACK] = ACTIONS(2718), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_COMMA] = ACTIONS(1398), + [anon_sym_DOLLAR] = ACTIONS(2720), + [anon_sym_LBRACE] = ACTIONS(2722), + [anon_sym_DOT_DOT] = ACTIONS(1404), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1406), + [anon_sym_DOT_DOT_LT] = ACTIONS(1406), + [aux_sym__val_number_decimal_token1] = ACTIONS(1408), + [aux_sym__val_number_decimal_token2] = ACTIONS(1410), + [aux_sym__val_number_decimal_token3] = ACTIONS(1412), + [aux_sym__val_number_decimal_token4] = ACTIONS(1412), + [aux_sym__val_number_token1] = ACTIONS(1414), + [aux_sym__val_number_token2] = ACTIONS(1414), + [aux_sym__val_number_token3] = ACTIONS(1414), + [anon_sym_0b] = ACTIONS(1416), + [anon_sym_0o] = ACTIONS(1418), + [anon_sym_0x] = ACTIONS(1418), + [sym_val_date] = ACTIONS(2724), + [anon_sym_DQUOTE] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_BQUOTE] = ACTIONS(1426), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1436), + }, + [STATE(990)] = { + [sym_expr_unary] = STATE(3033), + [sym__expr_unary_minus] = STATE(1296), + [sym_expr_parenthesized] = STATE(2592), + [sym_val_range] = STATE(3033), + [sym__val_range] = STATE(4844), + [sym__value] = STATE(3033), + [sym_val_nothing] = STATE(1316), + [sym_val_bool] = STATE(2712), + [sym_val_variable] = STATE(2628), + [sym_val_cellpath] = STATE(1316), + [sym_val_number] = STATE(1316), + [sym__val_number_decimal] = STATE(2378), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1316), + [sym_val_filesize] = STATE(1316), + [sym_val_binary] = STATE(1316), + [sym_val_string] = STATE(1316), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1316), + [sym__inter_single_quotes] = STATE(1277), + [sym__inter_double_quotes] = STATE(1311), + [sym_val_list] = STATE(1316), + [sym_val_record] = STATE(1316), + [sym_val_table] = STATE(1316), + [sym_val_closure] = STATE(1316), + [sym_unquoted] = STATE(2667), + [sym__unquoted_with_expr] = STATE(3005), + [sym__unquoted_anonymous_prefix] = STATE(4844), + [sym_comment] = STATE(990), + [anon_sym_true] = ACTIONS(2726), + [anon_sym_false] = ACTIONS(2726), + [anon_sym_null] = ACTIONS(2728), + [aux_sym_cmd_identifier_token3] = ACTIONS(2730), + [aux_sym_cmd_identifier_token4] = ACTIONS(2730), + [aux_sym_cmd_identifier_token5] = ACTIONS(2730), + [anon_sym_LBRACK] = ACTIONS(2732), + [anon_sym_LPAREN] = ACTIONS(2734), + [anon_sym_DOLLAR] = ACTIONS(2736), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(2738), + [anon_sym_DOT_DOT] = ACTIONS(2740), + [aux_sym_expr_unary_token1] = ACTIONS(2742), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2744), + [anon_sym_DOT_DOT_LT] = ACTIONS(2744), + [aux_sym__val_number_decimal_token1] = ACTIONS(2746), + [aux_sym__val_number_decimal_token2] = ACTIONS(2748), + [aux_sym__val_number_decimal_token3] = ACTIONS(2750), + [aux_sym__val_number_decimal_token4] = ACTIONS(2750), + [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(2752), + [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(2403), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, + [STATE(991)] = { + [sym_expr_unary] = STATE(3009), + [sym__expr_unary_minus] = STATE(1296), + [sym_expr_parenthesized] = STATE(2593), + [sym_val_range] = STATE(3009), + [sym__val_range] = STATE(4844), + [sym__value] = STATE(3009), + [sym_val_nothing] = STATE(1316), + [sym_val_bool] = STATE(2712), + [sym_val_variable] = STATE(2628), + [sym_val_cellpath] = STATE(1316), + [sym_val_number] = STATE(1316), + [sym__val_number_decimal] = STATE(2378), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1316), + [sym_val_filesize] = STATE(1316), + [sym_val_binary] = STATE(1316), + [sym_val_string] = STATE(1316), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1316), + [sym__inter_single_quotes] = STATE(1277), + [sym__inter_double_quotes] = STATE(1311), + [sym_val_list] = STATE(1316), + [sym_val_record] = STATE(1316), + [sym_val_table] = STATE(1316), + [sym_val_closure] = STATE(1316), + [sym_unquoted] = STATE(2669), + [sym__unquoted_with_expr] = STATE(2912), + [sym__unquoted_anonymous_prefix] = STATE(4844), + [sym_comment] = STATE(991), + [anon_sym_true] = ACTIONS(2726), + [anon_sym_false] = ACTIONS(2726), + [anon_sym_null] = ACTIONS(2728), + [aux_sym_cmd_identifier_token3] = ACTIONS(2730), + [aux_sym_cmd_identifier_token4] = ACTIONS(2730), + [aux_sym_cmd_identifier_token5] = ACTIONS(2730), + [anon_sym_LBRACK] = ACTIONS(2732), + [anon_sym_LPAREN] = ACTIONS(2734), + [anon_sym_DOLLAR] = ACTIONS(2736), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(2738), + [anon_sym_DOT_DOT] = ACTIONS(2740), + [aux_sym_expr_unary_token1] = ACTIONS(2742), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2744), + [anon_sym_DOT_DOT_LT] = ACTIONS(2744), + [aux_sym__val_number_decimal_token1] = ACTIONS(2746), + [aux_sym__val_number_decimal_token2] = ACTIONS(2748), + [aux_sym__val_number_decimal_token3] = ACTIONS(2750), + [aux_sym__val_number_decimal_token4] = ACTIONS(2750), + [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(2752), + [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(2403), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), }, [STATE(992)] = { - [aux_sym__repeat_newline] = STATE(1041), [sym_comment] = STATE(992), - [anon_sym_in] = ACTIONS(2327), - [sym__newline] = ACTIONS(2327), - [anon_sym_SEMI] = ACTIONS(2327), - [anon_sym_PIPE] = ACTIONS(2327), - [anon_sym_err_GT_PIPE] = ACTIONS(2327), - [anon_sym_out_GT_PIPE] = ACTIONS(2327), - [anon_sym_e_GT_PIPE] = ACTIONS(2327), - [anon_sym_o_GT_PIPE] = ACTIONS(2327), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2327), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2327), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2327), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2327), - [anon_sym_RPAREN] = ACTIONS(2327), - [anon_sym_GT2] = ACTIONS(2329), - [anon_sym_DASH2] = ACTIONS(2327), - [anon_sym_LBRACE] = ACTIONS(2327), - [anon_sym_STAR2] = ACTIONS(2329), - [anon_sym_and2] = ACTIONS(2327), - [anon_sym_xor2] = ACTIONS(2327), - [anon_sym_or2] = ACTIONS(2327), - [anon_sym_not_DASHin2] = ACTIONS(2327), - [anon_sym_has2] = ACTIONS(2327), - [anon_sym_not_DASHhas2] = ACTIONS(2327), - [anon_sym_starts_DASHwith2] = ACTIONS(2327), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2327), - [anon_sym_ends_DASHwith2] = ACTIONS(2327), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2327), - [anon_sym_EQ_EQ2] = ACTIONS(2327), - [anon_sym_BANG_EQ2] = ACTIONS(2327), - [anon_sym_LT2] = ACTIONS(2329), - [anon_sym_LT_EQ2] = ACTIONS(2327), - [anon_sym_GT_EQ2] = ACTIONS(2327), - [anon_sym_EQ_TILDE2] = ACTIONS(2327), - [anon_sym_BANG_TILDE2] = ACTIONS(2327), - [anon_sym_like2] = ACTIONS(2327), - [anon_sym_not_DASHlike2] = ACTIONS(2327), - [anon_sym_STAR_STAR2] = ACTIONS(2327), - [anon_sym_PLUS_PLUS2] = ACTIONS(2327), - [anon_sym_SLASH2] = ACTIONS(2329), - [anon_sym_mod2] = ACTIONS(2327), - [anon_sym_SLASH_SLASH2] = ACTIONS(2327), - [anon_sym_PLUS2] = ACTIONS(2329), - [anon_sym_bit_DASHshl2] = ACTIONS(2327), - [anon_sym_bit_DASHshr2] = ACTIONS(2327), - [anon_sym_bit_DASHand2] = ACTIONS(2327), - [anon_sym_bit_DASHxor2] = ACTIONS(2327), - [anon_sym_bit_DASHor2] = ACTIONS(2327), - [anon_sym_err_GT] = ACTIONS(2329), - [anon_sym_out_GT] = ACTIONS(2329), - [anon_sym_e_GT] = ACTIONS(2329), - [anon_sym_o_GT] = ACTIONS(2329), - [anon_sym_err_PLUSout_GT] = ACTIONS(2329), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2329), - [anon_sym_o_PLUSe_GT] = ACTIONS(2329), - [anon_sym_e_PLUSo_GT] = ACTIONS(2329), - [anon_sym_err_GT_GT] = ACTIONS(2327), - [anon_sym_out_GT_GT] = ACTIONS(2327), - [anon_sym_e_GT_GT] = ACTIONS(2327), - [anon_sym_o_GT_GT] = ACTIONS(2327), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2327), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2327), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2327), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2327), + [ts_builtin_sym_end] = ACTIONS(1730), + [anon_sym_in] = ACTIONS(1730), + [sym__newline] = ACTIONS(1730), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_PIPE] = ACTIONS(1730), + [anon_sym_err_GT_PIPE] = ACTIONS(1730), + [anon_sym_out_GT_PIPE] = ACTIONS(1730), + [anon_sym_e_GT_PIPE] = ACTIONS(1730), + [anon_sym_o_GT_PIPE] = ACTIONS(1730), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1730), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1730), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1730), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1730), + [anon_sym_GT2] = ACTIONS(1732), + [anon_sym_DASH2] = ACTIONS(1730), + [anon_sym_STAR2] = ACTIONS(1732), + [anon_sym_and2] = ACTIONS(1730), + [anon_sym_xor2] = ACTIONS(1730), + [anon_sym_or2] = ACTIONS(1730), + [anon_sym_not_DASHin2] = ACTIONS(1730), + [anon_sym_has2] = ACTIONS(1730), + [anon_sym_not_DASHhas2] = ACTIONS(1730), + [anon_sym_starts_DASHwith2] = ACTIONS(1730), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1730), + [anon_sym_ends_DASHwith2] = ACTIONS(1730), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1730), + [anon_sym_EQ_EQ2] = ACTIONS(1730), + [anon_sym_BANG_EQ2] = ACTIONS(1730), + [anon_sym_LT2] = ACTIONS(1732), + [anon_sym_LT_EQ2] = ACTIONS(1730), + [anon_sym_GT_EQ2] = ACTIONS(1730), + [anon_sym_EQ_TILDE2] = ACTIONS(1730), + [anon_sym_BANG_TILDE2] = ACTIONS(1730), + [anon_sym_like2] = ACTIONS(1730), + [anon_sym_not_DASHlike2] = ACTIONS(1730), + [anon_sym_LPAREN2] = ACTIONS(1730), + [anon_sym_STAR_STAR2] = ACTIONS(1730), + [anon_sym_PLUS_PLUS2] = ACTIONS(1730), + [anon_sym_SLASH2] = ACTIONS(1732), + [anon_sym_mod2] = ACTIONS(1730), + [anon_sym_SLASH_SLASH2] = ACTIONS(1730), + [anon_sym_PLUS2] = ACTIONS(1732), + [anon_sym_bit_DASHshl2] = ACTIONS(1730), + [anon_sym_bit_DASHshr2] = ACTIONS(1730), + [anon_sym_bit_DASHand2] = ACTIONS(1730), + [anon_sym_bit_DASHxor2] = ACTIONS(1730), + [anon_sym_bit_DASHor2] = ACTIONS(1730), + [anon_sym_err_GT] = ACTIONS(1732), + [anon_sym_out_GT] = ACTIONS(1732), + [anon_sym_e_GT] = ACTIONS(1732), + [anon_sym_o_GT] = ACTIONS(1732), + [anon_sym_err_PLUSout_GT] = ACTIONS(1732), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1732), + [anon_sym_o_PLUSe_GT] = ACTIONS(1732), + [anon_sym_e_PLUSo_GT] = ACTIONS(1732), + [anon_sym_err_GT_GT] = ACTIONS(1730), + [anon_sym_out_GT_GT] = ACTIONS(1730), + [anon_sym_e_GT_GT] = ACTIONS(1730), + [anon_sym_o_GT_GT] = ACTIONS(1730), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1730), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1730), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1730), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1730), + [sym__unquoted_pattern] = ACTIONS(1732), [anon_sym_POUND] = ACTIONS(3), }, [STATE(993)] = { - [aux_sym__repeat_newline] = STATE(527), + [sym_expr_unary] = STATE(2915), + [sym__expr_unary_minus] = STATE(1296), + [sym_expr_parenthesized] = STATE(2621), + [sym_val_range] = STATE(2915), + [sym__val_range] = STATE(4844), + [sym__value] = STATE(2915), + [sym_val_nothing] = STATE(1316), + [sym_val_bool] = STATE(2712), + [sym_val_variable] = STATE(2628), + [sym_val_cellpath] = STATE(1316), + [sym_val_number] = STATE(1316), + [sym__val_number_decimal] = STATE(2378), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1316), + [sym_val_filesize] = STATE(1316), + [sym_val_binary] = STATE(1316), + [sym_val_string] = STATE(1316), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1316), + [sym__inter_single_quotes] = STATE(1277), + [sym__inter_double_quotes] = STATE(1311), + [sym_val_list] = STATE(1316), + [sym_val_record] = STATE(1316), + [sym_val_table] = STATE(1316), + [sym_val_closure] = STATE(1316), + [sym_unquoted] = STATE(2671), + [sym__unquoted_with_expr] = STATE(2924), + [sym__unquoted_anonymous_prefix] = STATE(4844), [sym_comment] = STATE(993), - [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(2726), + [anon_sym_false] = ACTIONS(2726), + [anon_sym_null] = ACTIONS(2728), + [aux_sym_cmd_identifier_token3] = ACTIONS(2730), + [aux_sym_cmd_identifier_token4] = ACTIONS(2730), + [aux_sym_cmd_identifier_token5] = ACTIONS(2730), + [anon_sym_LBRACK] = ACTIONS(2732), + [anon_sym_LPAREN] = ACTIONS(2734), + [anon_sym_DOLLAR] = ACTIONS(2736), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(2738), + [anon_sym_DOT_DOT] = ACTIONS(2740), + [aux_sym_expr_unary_token1] = ACTIONS(2742), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2744), + [anon_sym_DOT_DOT_LT] = ACTIONS(2744), + [aux_sym__val_number_decimal_token1] = ACTIONS(2746), + [aux_sym__val_number_decimal_token2] = ACTIONS(2748), + [aux_sym__val_number_decimal_token3] = ACTIONS(2750), + [aux_sym__val_number_decimal_token4] = ACTIONS(2750), + [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(2752), + [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(2403), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), }, [STATE(994)] = { - [aux_sym__repeat_newline] = STATE(1042), [sym_comment] = STATE(994), - [anon_sym_in] = ACTIONS(2327), - [sym__newline] = ACTIONS(2327), - [anon_sym_SEMI] = ACTIONS(2327), - [anon_sym_PIPE] = ACTIONS(2327), - [anon_sym_err_GT_PIPE] = ACTIONS(2327), - [anon_sym_out_GT_PIPE] = ACTIONS(2327), - [anon_sym_e_GT_PIPE] = ACTIONS(2327), - [anon_sym_o_GT_PIPE] = ACTIONS(2327), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2327), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2327), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2327), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2327), - [anon_sym_RPAREN] = ACTIONS(2327), - [anon_sym_GT2] = ACTIONS(2329), - [anon_sym_DASH2] = ACTIONS(2327), - [anon_sym_LBRACE] = ACTIONS(2327), - [anon_sym_STAR2] = ACTIONS(2329), - [anon_sym_and2] = ACTIONS(2327), - [anon_sym_xor2] = ACTIONS(2327), - [anon_sym_or2] = ACTIONS(2327), - [anon_sym_not_DASHin2] = ACTIONS(2327), - [anon_sym_has2] = ACTIONS(2327), - [anon_sym_not_DASHhas2] = ACTIONS(2327), - [anon_sym_starts_DASHwith2] = ACTIONS(2327), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2327), - [anon_sym_ends_DASHwith2] = ACTIONS(2327), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2327), - [anon_sym_EQ_EQ2] = ACTIONS(2327), - [anon_sym_BANG_EQ2] = ACTIONS(2327), - [anon_sym_LT2] = ACTIONS(2329), - [anon_sym_LT_EQ2] = ACTIONS(2327), - [anon_sym_GT_EQ2] = ACTIONS(2327), - [anon_sym_EQ_TILDE2] = ACTIONS(2327), - [anon_sym_BANG_TILDE2] = ACTIONS(2327), - [anon_sym_like2] = ACTIONS(2327), - [anon_sym_not_DASHlike2] = ACTIONS(2327), - [anon_sym_STAR_STAR2] = ACTIONS(2327), - [anon_sym_PLUS_PLUS2] = ACTIONS(2327), - [anon_sym_SLASH2] = ACTIONS(2329), - [anon_sym_mod2] = ACTIONS(2327), - [anon_sym_SLASH_SLASH2] = ACTIONS(2327), - [anon_sym_PLUS2] = ACTIONS(2329), - [anon_sym_bit_DASHshl2] = ACTIONS(2327), - [anon_sym_bit_DASHshr2] = ACTIONS(2327), - [anon_sym_bit_DASHand2] = ACTIONS(2327), - [anon_sym_bit_DASHxor2] = ACTIONS(2327), - [anon_sym_bit_DASHor2] = ACTIONS(2327), - [anon_sym_err_GT] = ACTIONS(2329), - [anon_sym_out_GT] = ACTIONS(2329), - [anon_sym_e_GT] = ACTIONS(2329), - [anon_sym_o_GT] = ACTIONS(2329), - [anon_sym_err_PLUSout_GT] = ACTIONS(2329), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2329), - [anon_sym_o_PLUSe_GT] = ACTIONS(2329), - [anon_sym_e_PLUSo_GT] = ACTIONS(2329), - [anon_sym_err_GT_GT] = ACTIONS(2327), - [anon_sym_out_GT_GT] = ACTIONS(2327), - [anon_sym_e_GT_GT] = ACTIONS(2327), - [anon_sym_o_GT_GT] = ACTIONS(2327), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2327), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2327), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2327), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2327), + [ts_builtin_sym_end] = ACTIONS(1972), + [anon_sym_in] = ACTIONS(1972), + [sym__newline] = ACTIONS(1972), + [anon_sym_SEMI] = ACTIONS(1972), + [anon_sym_PIPE] = ACTIONS(1972), + [anon_sym_err_GT_PIPE] = ACTIONS(1972), + [anon_sym_out_GT_PIPE] = ACTIONS(1972), + [anon_sym_e_GT_PIPE] = ACTIONS(1972), + [anon_sym_o_GT_PIPE] = ACTIONS(1972), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1972), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1972), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1972), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1972), + [anon_sym_GT2] = ACTIONS(1974), + [anon_sym_DASH2] = ACTIONS(1972), + [anon_sym_STAR2] = ACTIONS(1974), + [anon_sym_and2] = ACTIONS(1972), + [anon_sym_xor2] = ACTIONS(1972), + [anon_sym_or2] = ACTIONS(1972), + [anon_sym_not_DASHin2] = ACTIONS(1972), + [anon_sym_has2] = ACTIONS(1972), + [anon_sym_not_DASHhas2] = ACTIONS(1972), + [anon_sym_starts_DASHwith2] = ACTIONS(1972), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1972), + [anon_sym_ends_DASHwith2] = ACTIONS(1972), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1972), + [anon_sym_EQ_EQ2] = ACTIONS(1972), + [anon_sym_BANG_EQ2] = ACTIONS(1972), + [anon_sym_LT2] = ACTIONS(1974), + [anon_sym_LT_EQ2] = ACTIONS(1972), + [anon_sym_GT_EQ2] = ACTIONS(1972), + [anon_sym_EQ_TILDE2] = ACTIONS(1972), + [anon_sym_BANG_TILDE2] = ACTIONS(1972), + [anon_sym_like2] = ACTIONS(1972), + [anon_sym_not_DASHlike2] = ACTIONS(1972), + [anon_sym_LPAREN2] = ACTIONS(1976), + [anon_sym_STAR_STAR2] = ACTIONS(1972), + [anon_sym_PLUS_PLUS2] = ACTIONS(1972), + [anon_sym_SLASH2] = ACTIONS(1974), + [anon_sym_mod2] = ACTIONS(1972), + [anon_sym_SLASH_SLASH2] = ACTIONS(1972), + [anon_sym_PLUS2] = ACTIONS(1974), + [anon_sym_bit_DASHshl2] = ACTIONS(1972), + [anon_sym_bit_DASHshr2] = ACTIONS(1972), + [anon_sym_bit_DASHand2] = ACTIONS(1972), + [anon_sym_bit_DASHxor2] = ACTIONS(1972), + [anon_sym_bit_DASHor2] = ACTIONS(1972), + [anon_sym_err_GT] = ACTIONS(1974), + [anon_sym_out_GT] = ACTIONS(1974), + [anon_sym_e_GT] = ACTIONS(1974), + [anon_sym_o_GT] = ACTIONS(1974), + [anon_sym_err_PLUSout_GT] = ACTIONS(1974), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1974), + [anon_sym_o_PLUSe_GT] = ACTIONS(1974), + [anon_sym_e_PLUSo_GT] = ACTIONS(1974), + [anon_sym_err_GT_GT] = ACTIONS(1972), + [anon_sym_out_GT_GT] = ACTIONS(1972), + [anon_sym_e_GT_GT] = ACTIONS(1972), + [anon_sym_o_GT_GT] = ACTIONS(1972), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1972), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1972), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1972), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1972), + [sym__unquoted_pattern] = ACTIONS(1637), [anon_sym_POUND] = ACTIONS(3), }, [STATE(995)] = { - [aux_sym__repeat_newline] = STATE(527), + [aux_sym__repeat_newline] = STATE(1016), [sym_comment] = STATE(995), - [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(2541), + [sym__newline] = ACTIONS(2541), + [anon_sym_SEMI] = ACTIONS(2541), + [anon_sym_PIPE] = ACTIONS(2541), + [anon_sym_err_GT_PIPE] = ACTIONS(2541), + [anon_sym_out_GT_PIPE] = ACTIONS(2541), + [anon_sym_e_GT_PIPE] = ACTIONS(2541), + [anon_sym_o_GT_PIPE] = ACTIONS(2541), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2541), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2541), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2541), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2541), + [anon_sym_RPAREN] = ACTIONS(2541), + [anon_sym_GT2] = ACTIONS(2543), + [anon_sym_DASH2] = ACTIONS(2541), + [anon_sym_LBRACE] = ACTIONS(2541), + [anon_sym_STAR2] = ACTIONS(2543), + [anon_sym_and2] = ACTIONS(2541), + [anon_sym_xor2] = ACTIONS(2541), + [anon_sym_or2] = ACTIONS(2541), + [anon_sym_not_DASHin2] = ACTIONS(2541), + [anon_sym_has2] = ACTIONS(2541), + [anon_sym_not_DASHhas2] = ACTIONS(2541), + [anon_sym_starts_DASHwith2] = ACTIONS(2541), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2541), + [anon_sym_ends_DASHwith2] = ACTIONS(2541), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2541), + [anon_sym_EQ_EQ2] = ACTIONS(2541), + [anon_sym_BANG_EQ2] = ACTIONS(2541), + [anon_sym_LT2] = ACTIONS(2543), + [anon_sym_LT_EQ2] = ACTIONS(2541), + [anon_sym_GT_EQ2] = ACTIONS(2541), + [anon_sym_EQ_TILDE2] = ACTIONS(2541), + [anon_sym_BANG_TILDE2] = ACTIONS(2541), + [anon_sym_like2] = ACTIONS(2541), + [anon_sym_not_DASHlike2] = ACTIONS(2541), + [anon_sym_STAR_STAR2] = ACTIONS(2541), + [anon_sym_PLUS_PLUS2] = ACTIONS(2541), + [anon_sym_SLASH2] = ACTIONS(2543), + [anon_sym_mod2] = ACTIONS(2541), + [anon_sym_SLASH_SLASH2] = ACTIONS(2541), + [anon_sym_PLUS2] = ACTIONS(2543), + [anon_sym_bit_DASHshl2] = ACTIONS(2541), + [anon_sym_bit_DASHshr2] = ACTIONS(2541), + [anon_sym_bit_DASHand2] = ACTIONS(2541), + [anon_sym_bit_DASHxor2] = ACTIONS(2541), + [anon_sym_bit_DASHor2] = ACTIONS(2541), + [anon_sym_err_GT] = ACTIONS(2543), + [anon_sym_out_GT] = ACTIONS(2543), + [anon_sym_e_GT] = ACTIONS(2543), + [anon_sym_o_GT] = ACTIONS(2543), + [anon_sym_err_PLUSout_GT] = ACTIONS(2543), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2543), + [anon_sym_o_PLUSe_GT] = ACTIONS(2543), + [anon_sym_e_PLUSo_GT] = ACTIONS(2543), + [anon_sym_err_GT_GT] = ACTIONS(2541), + [anon_sym_out_GT_GT] = ACTIONS(2541), + [anon_sym_e_GT_GT] = ACTIONS(2541), + [anon_sym_o_GT_GT] = ACTIONS(2541), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2541), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2541), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2541), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2541), [anon_sym_POUND] = ACTIONS(3), }, [STATE(996)] = { - [aux_sym__repeat_newline] = STATE(1043), [sym_comment] = STATE(996), - [anon_sym_in] = ACTIONS(2327), - [sym__newline] = ACTIONS(2327), - [anon_sym_SEMI] = ACTIONS(2327), - [anon_sym_PIPE] = ACTIONS(2327), - [anon_sym_err_GT_PIPE] = ACTIONS(2327), - [anon_sym_out_GT_PIPE] = ACTIONS(2327), - [anon_sym_e_GT_PIPE] = ACTIONS(2327), - [anon_sym_o_GT_PIPE] = ACTIONS(2327), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2327), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2327), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2327), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2327), - [anon_sym_RPAREN] = ACTIONS(2327), - [anon_sym_GT2] = ACTIONS(2329), - [anon_sym_DASH2] = ACTIONS(2327), - [anon_sym_LBRACE] = ACTIONS(2327), - [anon_sym_STAR2] = ACTIONS(2329), - [anon_sym_and2] = ACTIONS(2327), - [anon_sym_xor2] = ACTIONS(2327), - [anon_sym_or2] = ACTIONS(2327), - [anon_sym_not_DASHin2] = ACTIONS(2327), - [anon_sym_has2] = ACTIONS(2327), - [anon_sym_not_DASHhas2] = ACTIONS(2327), - [anon_sym_starts_DASHwith2] = ACTIONS(2327), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2327), - [anon_sym_ends_DASHwith2] = ACTIONS(2327), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2327), - [anon_sym_EQ_EQ2] = ACTIONS(2327), - [anon_sym_BANG_EQ2] = ACTIONS(2327), - [anon_sym_LT2] = ACTIONS(2329), - [anon_sym_LT_EQ2] = ACTIONS(2327), - [anon_sym_GT_EQ2] = ACTIONS(2327), - [anon_sym_EQ_TILDE2] = ACTIONS(2327), - [anon_sym_BANG_TILDE2] = ACTIONS(2327), - [anon_sym_like2] = ACTIONS(2327), - [anon_sym_not_DASHlike2] = ACTIONS(2327), - [anon_sym_STAR_STAR2] = ACTIONS(2327), - [anon_sym_PLUS_PLUS2] = ACTIONS(2327), - [anon_sym_SLASH2] = ACTIONS(2329), - [anon_sym_mod2] = ACTIONS(2327), - [anon_sym_SLASH_SLASH2] = ACTIONS(2327), - [anon_sym_PLUS2] = ACTIONS(2329), - [anon_sym_bit_DASHshl2] = ACTIONS(2327), - [anon_sym_bit_DASHshr2] = ACTIONS(2327), - [anon_sym_bit_DASHand2] = ACTIONS(2327), - [anon_sym_bit_DASHxor2] = ACTIONS(2327), - [anon_sym_bit_DASHor2] = ACTIONS(2327), - [anon_sym_err_GT] = ACTIONS(2329), - [anon_sym_out_GT] = ACTIONS(2329), - [anon_sym_e_GT] = ACTIONS(2329), - [anon_sym_o_GT] = ACTIONS(2329), - [anon_sym_err_PLUSout_GT] = ACTIONS(2329), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2329), - [anon_sym_o_PLUSe_GT] = ACTIONS(2329), - [anon_sym_e_PLUSo_GT] = ACTIONS(2329), - [anon_sym_err_GT_GT] = ACTIONS(2327), - [anon_sym_out_GT_GT] = ACTIONS(2327), - [anon_sym_e_GT_GT] = ACTIONS(2327), - [anon_sym_o_GT_GT] = ACTIONS(2327), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2327), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2327), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2327), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2327), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token2] = ACTIONS(2594), + [anon_sym_in] = ACTIONS(2362), + [sym__newline] = ACTIONS(2360), + [anon_sym_SEMI] = ACTIONS(2360), + [anon_sym_PIPE] = ACTIONS(2360), + [anon_sym_err_GT_PIPE] = ACTIONS(2360), + [anon_sym_out_GT_PIPE] = ACTIONS(2360), + [anon_sym_e_GT_PIPE] = ACTIONS(2360), + [anon_sym_o_GT_PIPE] = ACTIONS(2360), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2360), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2360), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2360), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2360), + [anon_sym_RPAREN] = ACTIONS(2360), + [anon_sym_GT2] = ACTIONS(2362), + [anon_sym_DASH2] = ACTIONS(2362), + [anon_sym_RBRACE] = ACTIONS(2360), + [anon_sym_STAR2] = ACTIONS(2362), + [anon_sym_and2] = ACTIONS(2362), + [anon_sym_xor2] = ACTIONS(2362), + [anon_sym_or2] = ACTIONS(2362), + [anon_sym_not_DASHin2] = ACTIONS(2362), + [anon_sym_has2] = ACTIONS(2362), + [anon_sym_not_DASHhas2] = ACTIONS(2362), + [anon_sym_starts_DASHwith2] = ACTIONS(2362), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2362), + [anon_sym_ends_DASHwith2] = ACTIONS(2362), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2362), + [anon_sym_EQ_EQ2] = ACTIONS(2360), + [anon_sym_BANG_EQ2] = ACTIONS(2360), + [anon_sym_LT2] = ACTIONS(2362), + [anon_sym_LT_EQ2] = ACTIONS(2360), + [anon_sym_GT_EQ2] = ACTIONS(2360), + [anon_sym_EQ_TILDE2] = ACTIONS(2360), + [anon_sym_BANG_TILDE2] = ACTIONS(2362), + [anon_sym_like2] = ACTIONS(2362), + [anon_sym_not_DASHlike2] = ACTIONS(2362), + [anon_sym_STAR_STAR2] = ACTIONS(2362), + [anon_sym_PLUS_PLUS2] = ACTIONS(2362), + [anon_sym_SLASH2] = ACTIONS(2362), + [anon_sym_mod2] = ACTIONS(2362), + [anon_sym_SLASH_SLASH2] = ACTIONS(2362), + [anon_sym_PLUS2] = ACTIONS(2362), + [anon_sym_bit_DASHshl2] = ACTIONS(2362), + [anon_sym_bit_DASHshr2] = ACTIONS(2362), + [anon_sym_bit_DASHand2] = ACTIONS(2362), + [anon_sym_bit_DASHxor2] = ACTIONS(2362), + [anon_sym_bit_DASHor2] = ACTIONS(2362), + [anon_sym_err_GT] = ACTIONS(2362), + [anon_sym_out_GT] = ACTIONS(2362), + [anon_sym_e_GT] = ACTIONS(2362), + [anon_sym_o_GT] = ACTIONS(2362), + [anon_sym_err_PLUSout_GT] = ACTIONS(2362), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2362), + [anon_sym_o_PLUSe_GT] = ACTIONS(2362), + [anon_sym_e_PLUSo_GT] = ACTIONS(2362), + [anon_sym_err_GT_GT] = ACTIONS(2360), + [anon_sym_out_GT_GT] = ACTIONS(2360), + [anon_sym_e_GT_GT] = ACTIONS(2360), + [anon_sym_o_GT_GT] = ACTIONS(2360), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2360), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2360), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2360), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2360), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(997)] = { - [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(997), - [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(1226), + [anon_sym_in] = ACTIONS(1226), + [sym__newline] = ACTIONS(1226), + [anon_sym_SEMI] = ACTIONS(1226), + [anon_sym_PIPE] = ACTIONS(1226), + [anon_sym_err_GT_PIPE] = ACTIONS(1226), + [anon_sym_out_GT_PIPE] = ACTIONS(1226), + [anon_sym_e_GT_PIPE] = ACTIONS(1226), + [anon_sym_o_GT_PIPE] = ACTIONS(1226), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1226), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1226), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1226), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1226), + [anon_sym_GT2] = ACTIONS(1012), + [anon_sym_DASH2] = ACTIONS(1226), + [anon_sym_STAR2] = ACTIONS(1012), + [anon_sym_and2] = ACTIONS(1226), + [anon_sym_xor2] = ACTIONS(1226), + [anon_sym_or2] = ACTIONS(1226), + [anon_sym_not_DASHin2] = ACTIONS(1226), + [anon_sym_has2] = ACTIONS(1226), + [anon_sym_not_DASHhas2] = ACTIONS(1226), + [anon_sym_starts_DASHwith2] = ACTIONS(1226), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1226), + [anon_sym_ends_DASHwith2] = ACTIONS(1226), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1226), + [anon_sym_EQ_EQ2] = ACTIONS(1226), + [anon_sym_BANG_EQ2] = ACTIONS(1226), + [anon_sym_LT2] = ACTIONS(1012), + [anon_sym_LT_EQ2] = ACTIONS(1226), + [anon_sym_GT_EQ2] = ACTIONS(1226), + [anon_sym_EQ_TILDE2] = ACTIONS(1226), + [anon_sym_BANG_TILDE2] = ACTIONS(1226), + [anon_sym_like2] = ACTIONS(1226), + [anon_sym_not_DASHlike2] = ACTIONS(1226), + [anon_sym_LPAREN2] = ACTIONS(2632), + [anon_sym_STAR_STAR2] = ACTIONS(1226), + [anon_sym_PLUS_PLUS2] = ACTIONS(1226), + [anon_sym_SLASH2] = ACTIONS(1012), + [anon_sym_mod2] = ACTIONS(1226), + [anon_sym_SLASH_SLASH2] = ACTIONS(1226), + [anon_sym_PLUS2] = ACTIONS(1012), + [anon_sym_bit_DASHshl2] = ACTIONS(1226), + [anon_sym_bit_DASHshr2] = ACTIONS(1226), + [anon_sym_bit_DASHand2] = ACTIONS(1226), + [anon_sym_bit_DASHxor2] = ACTIONS(1226), + [anon_sym_bit_DASHor2] = ACTIONS(1226), + [anon_sym_err_GT] = ACTIONS(1012), + [anon_sym_out_GT] = ACTIONS(1012), + [anon_sym_e_GT] = ACTIONS(1012), + [anon_sym_o_GT] = ACTIONS(1012), + [anon_sym_err_PLUSout_GT] = ACTIONS(1012), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1012), + [anon_sym_o_PLUSe_GT] = ACTIONS(1012), + [anon_sym_e_PLUSo_GT] = ACTIONS(1012), + [anon_sym_err_GT_GT] = ACTIONS(1226), + [anon_sym_out_GT_GT] = ACTIONS(1226), + [anon_sym_e_GT_GT] = ACTIONS(1226), + [anon_sym_o_GT_GT] = ACTIONS(1226), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1226), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1226), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1226), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1226), + [sym__unquoted_pattern] = ACTIONS(2634), [anon_sym_POUND] = ACTIONS(3), }, [STATE(998)] = { - [aux_sym__repeat_newline] = STATE(1044), [sym_comment] = STATE(998), - [anon_sym_in] = ACTIONS(2327), - [sym__newline] = ACTIONS(2327), - [anon_sym_SEMI] = ACTIONS(2327), - [anon_sym_PIPE] = ACTIONS(2327), - [anon_sym_err_GT_PIPE] = ACTIONS(2327), - [anon_sym_out_GT_PIPE] = ACTIONS(2327), - [anon_sym_e_GT_PIPE] = ACTIONS(2327), - [anon_sym_o_GT_PIPE] = ACTIONS(2327), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2327), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2327), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2327), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2327), - [anon_sym_RPAREN] = ACTIONS(2327), - [anon_sym_GT2] = ACTIONS(2329), - [anon_sym_DASH2] = ACTIONS(2327), - [anon_sym_LBRACE] = ACTIONS(2327), - [anon_sym_STAR2] = ACTIONS(2329), - [anon_sym_and2] = ACTIONS(2327), - [anon_sym_xor2] = ACTIONS(2327), - [anon_sym_or2] = ACTIONS(2327), - [anon_sym_not_DASHin2] = ACTIONS(2327), - [anon_sym_has2] = ACTIONS(2327), - [anon_sym_not_DASHhas2] = ACTIONS(2327), - [anon_sym_starts_DASHwith2] = ACTIONS(2327), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2327), - [anon_sym_ends_DASHwith2] = ACTIONS(2327), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2327), - [anon_sym_EQ_EQ2] = ACTIONS(2327), - [anon_sym_BANG_EQ2] = ACTIONS(2327), - [anon_sym_LT2] = ACTIONS(2329), - [anon_sym_LT_EQ2] = ACTIONS(2327), - [anon_sym_GT_EQ2] = ACTIONS(2327), - [anon_sym_EQ_TILDE2] = ACTIONS(2327), - [anon_sym_BANG_TILDE2] = ACTIONS(2327), - [anon_sym_like2] = ACTIONS(2327), - [anon_sym_not_DASHlike2] = ACTIONS(2327), - [anon_sym_STAR_STAR2] = ACTIONS(2327), - [anon_sym_PLUS_PLUS2] = ACTIONS(2327), - [anon_sym_SLASH2] = ACTIONS(2329), - [anon_sym_mod2] = ACTIONS(2327), - [anon_sym_SLASH_SLASH2] = ACTIONS(2327), - [anon_sym_PLUS2] = ACTIONS(2329), - [anon_sym_bit_DASHshl2] = ACTIONS(2327), - [anon_sym_bit_DASHshr2] = ACTIONS(2327), - [anon_sym_bit_DASHand2] = ACTIONS(2327), - [anon_sym_bit_DASHxor2] = ACTIONS(2327), - [anon_sym_bit_DASHor2] = ACTIONS(2327), - [anon_sym_err_GT] = ACTIONS(2329), - [anon_sym_out_GT] = ACTIONS(2329), - [anon_sym_e_GT] = ACTIONS(2329), - [anon_sym_o_GT] = ACTIONS(2329), - [anon_sym_err_PLUSout_GT] = ACTIONS(2329), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2329), - [anon_sym_o_PLUSe_GT] = ACTIONS(2329), - [anon_sym_e_PLUSo_GT] = ACTIONS(2329), - [anon_sym_err_GT_GT] = ACTIONS(2327), - [anon_sym_out_GT_GT] = ACTIONS(2327), - [anon_sym_e_GT_GT] = ACTIONS(2327), - [anon_sym_o_GT_GT] = ACTIONS(2327), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2327), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2327), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2327), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2327), + [ts_builtin_sym_end] = ACTIONS(1846), + [anon_sym_in] = ACTIONS(1846), + [sym__newline] = ACTIONS(1846), + [anon_sym_SEMI] = ACTIONS(1846), + [anon_sym_PIPE] = ACTIONS(1846), + [anon_sym_err_GT_PIPE] = ACTIONS(1846), + [anon_sym_out_GT_PIPE] = ACTIONS(1846), + [anon_sym_e_GT_PIPE] = ACTIONS(1846), + [anon_sym_o_GT_PIPE] = ACTIONS(1846), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1846), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1846), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1846), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1846), + [anon_sym_GT2] = ACTIONS(1848), + [anon_sym_DASH2] = ACTIONS(1846), + [anon_sym_STAR2] = ACTIONS(1848), + [anon_sym_and2] = ACTIONS(1846), + [anon_sym_xor2] = ACTIONS(1846), + [anon_sym_or2] = ACTIONS(1846), + [anon_sym_not_DASHin2] = ACTIONS(1846), + [anon_sym_has2] = ACTIONS(1846), + [anon_sym_not_DASHhas2] = ACTIONS(1846), + [anon_sym_starts_DASHwith2] = ACTIONS(1846), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1846), + [anon_sym_ends_DASHwith2] = ACTIONS(1846), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1846), + [anon_sym_EQ_EQ2] = ACTIONS(1846), + [anon_sym_BANG_EQ2] = ACTIONS(1846), + [anon_sym_LT2] = ACTIONS(1848), + [anon_sym_LT_EQ2] = ACTIONS(1846), + [anon_sym_GT_EQ2] = ACTIONS(1846), + [anon_sym_EQ_TILDE2] = ACTIONS(1846), + [anon_sym_BANG_TILDE2] = ACTIONS(1846), + [anon_sym_like2] = ACTIONS(1846), + [anon_sym_not_DASHlike2] = ACTIONS(1846), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_STAR_STAR2] = ACTIONS(1846), + [anon_sym_PLUS_PLUS2] = ACTIONS(1846), + [anon_sym_SLASH2] = ACTIONS(1848), + [anon_sym_mod2] = ACTIONS(1846), + [anon_sym_SLASH_SLASH2] = ACTIONS(1846), + [anon_sym_PLUS2] = ACTIONS(1848), + [anon_sym_bit_DASHshl2] = ACTIONS(1846), + [anon_sym_bit_DASHshr2] = ACTIONS(1846), + [anon_sym_bit_DASHand2] = ACTIONS(1846), + [anon_sym_bit_DASHxor2] = ACTIONS(1846), + [anon_sym_bit_DASHor2] = ACTIONS(1846), + [anon_sym_err_GT] = ACTIONS(1848), + [anon_sym_out_GT] = ACTIONS(1848), + [anon_sym_e_GT] = ACTIONS(1848), + [anon_sym_o_GT] = ACTIONS(1848), + [anon_sym_err_PLUSout_GT] = ACTIONS(1848), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1848), + [anon_sym_o_PLUSe_GT] = ACTIONS(1848), + [anon_sym_e_PLUSo_GT] = ACTIONS(1848), + [anon_sym_err_GT_GT] = ACTIONS(1846), + [anon_sym_out_GT_GT] = ACTIONS(1846), + [anon_sym_e_GT_GT] = ACTIONS(1846), + [anon_sym_o_GT_GT] = ACTIONS(1846), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1846), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1846), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1846), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1846), + [sym__unquoted_pattern] = ACTIONS(1848), [anon_sym_POUND] = ACTIONS(3), }, [STATE(999)] = { - [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(999), - [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(1234), + [anon_sym_in] = ACTIONS(1234), + [sym__newline] = ACTIONS(1234), + [anon_sym_SEMI] = ACTIONS(1234), + [anon_sym_PIPE] = ACTIONS(1234), + [anon_sym_err_GT_PIPE] = ACTIONS(1234), + [anon_sym_out_GT_PIPE] = ACTIONS(1234), + [anon_sym_e_GT_PIPE] = ACTIONS(1234), + [anon_sym_o_GT_PIPE] = ACTIONS(1234), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1234), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1234), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1234), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1234), + [anon_sym_GT2] = ACTIONS(1020), + [anon_sym_DASH2] = ACTIONS(1234), + [anon_sym_STAR2] = ACTIONS(1020), + [anon_sym_and2] = ACTIONS(1234), + [anon_sym_xor2] = ACTIONS(1234), + [anon_sym_or2] = ACTIONS(1234), + [anon_sym_not_DASHin2] = ACTIONS(1234), + [anon_sym_has2] = ACTIONS(1234), + [anon_sym_not_DASHhas2] = ACTIONS(1234), + [anon_sym_starts_DASHwith2] = ACTIONS(1234), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1234), + [anon_sym_ends_DASHwith2] = ACTIONS(1234), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1234), + [anon_sym_EQ_EQ2] = ACTIONS(1234), + [anon_sym_BANG_EQ2] = ACTIONS(1234), + [anon_sym_LT2] = ACTIONS(1020), + [anon_sym_LT_EQ2] = ACTIONS(1234), + [anon_sym_GT_EQ2] = ACTIONS(1234), + [anon_sym_EQ_TILDE2] = ACTIONS(1234), + [anon_sym_BANG_TILDE2] = ACTIONS(1234), + [anon_sym_like2] = ACTIONS(1234), + [anon_sym_not_DASHlike2] = ACTIONS(1234), + [anon_sym_LPAREN2] = ACTIONS(2632), + [anon_sym_STAR_STAR2] = ACTIONS(1234), + [anon_sym_PLUS_PLUS2] = ACTIONS(1234), + [anon_sym_SLASH2] = ACTIONS(1020), + [anon_sym_mod2] = ACTIONS(1234), + [anon_sym_SLASH_SLASH2] = ACTIONS(1234), + [anon_sym_PLUS2] = ACTIONS(1020), + [anon_sym_bit_DASHshl2] = ACTIONS(1234), + [anon_sym_bit_DASHshr2] = ACTIONS(1234), + [anon_sym_bit_DASHand2] = ACTIONS(1234), + [anon_sym_bit_DASHxor2] = ACTIONS(1234), + [anon_sym_bit_DASHor2] = ACTIONS(1234), + [anon_sym_err_GT] = ACTIONS(1020), + [anon_sym_out_GT] = ACTIONS(1020), + [anon_sym_e_GT] = ACTIONS(1020), + [anon_sym_o_GT] = ACTIONS(1020), + [anon_sym_err_PLUSout_GT] = ACTIONS(1020), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1020), + [anon_sym_o_PLUSe_GT] = ACTIONS(1020), + [anon_sym_e_PLUSo_GT] = ACTIONS(1020), + [anon_sym_err_GT_GT] = ACTIONS(1234), + [anon_sym_out_GT_GT] = ACTIONS(1234), + [anon_sym_e_GT_GT] = ACTIONS(1234), + [anon_sym_o_GT_GT] = ACTIONS(1234), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1234), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1234), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1234), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1234), + [sym__unquoted_pattern] = ACTIONS(2634), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1000)] = { - [aux_sym__repeat_newline] = STATE(1045), [sym_comment] = STATE(1000), - [anon_sym_in] = ACTIONS(2327), - [sym__newline] = ACTIONS(2327), - [anon_sym_SEMI] = ACTIONS(2327), - [anon_sym_PIPE] = ACTIONS(2327), - [anon_sym_err_GT_PIPE] = ACTIONS(2327), - [anon_sym_out_GT_PIPE] = ACTIONS(2327), - [anon_sym_e_GT_PIPE] = ACTIONS(2327), - [anon_sym_o_GT_PIPE] = ACTIONS(2327), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2327), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2327), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2327), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2327), - [anon_sym_RPAREN] = ACTIONS(2327), - [anon_sym_GT2] = ACTIONS(2329), - [anon_sym_DASH2] = ACTIONS(2327), - [anon_sym_LBRACE] = ACTIONS(2327), - [anon_sym_STAR2] = ACTIONS(2329), - [anon_sym_and2] = ACTIONS(2327), - [anon_sym_xor2] = ACTIONS(2327), - [anon_sym_or2] = ACTIONS(2327), - [anon_sym_not_DASHin2] = ACTIONS(2327), - [anon_sym_has2] = ACTIONS(2327), - [anon_sym_not_DASHhas2] = ACTIONS(2327), - [anon_sym_starts_DASHwith2] = ACTIONS(2327), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2327), - [anon_sym_ends_DASHwith2] = ACTIONS(2327), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2327), - [anon_sym_EQ_EQ2] = ACTIONS(2327), - [anon_sym_BANG_EQ2] = ACTIONS(2327), - [anon_sym_LT2] = ACTIONS(2329), - [anon_sym_LT_EQ2] = ACTIONS(2327), - [anon_sym_GT_EQ2] = ACTIONS(2327), - [anon_sym_EQ_TILDE2] = ACTIONS(2327), - [anon_sym_BANG_TILDE2] = ACTIONS(2327), - [anon_sym_like2] = ACTIONS(2327), - [anon_sym_not_DASHlike2] = ACTIONS(2327), - [anon_sym_STAR_STAR2] = ACTIONS(2327), - [anon_sym_PLUS_PLUS2] = ACTIONS(2327), - [anon_sym_SLASH2] = ACTIONS(2329), - [anon_sym_mod2] = ACTIONS(2327), - [anon_sym_SLASH_SLASH2] = ACTIONS(2327), - [anon_sym_PLUS2] = ACTIONS(2329), - [anon_sym_bit_DASHshl2] = ACTIONS(2327), - [anon_sym_bit_DASHshr2] = ACTIONS(2327), - [anon_sym_bit_DASHand2] = ACTIONS(2327), - [anon_sym_bit_DASHxor2] = ACTIONS(2327), - [anon_sym_bit_DASHor2] = ACTIONS(2327), - [anon_sym_err_GT] = ACTIONS(2329), - [anon_sym_out_GT] = ACTIONS(2329), - [anon_sym_e_GT] = ACTIONS(2329), - [anon_sym_o_GT] = ACTIONS(2329), - [anon_sym_err_PLUSout_GT] = ACTIONS(2329), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2329), - [anon_sym_o_PLUSe_GT] = ACTIONS(2329), - [anon_sym_e_PLUSo_GT] = ACTIONS(2329), - [anon_sym_err_GT_GT] = ACTIONS(2327), - [anon_sym_out_GT_GT] = ACTIONS(2327), - [anon_sym_e_GT_GT] = ACTIONS(2327), - [anon_sym_o_GT_GT] = ACTIONS(2327), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2327), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2327), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2327), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2327), + [ts_builtin_sym_end] = ACTIONS(1895), + [anon_sym_in] = ACTIONS(1895), + [sym__newline] = ACTIONS(1895), + [anon_sym_SEMI] = ACTIONS(1895), + [anon_sym_PIPE] = ACTIONS(1895), + [anon_sym_err_GT_PIPE] = ACTIONS(1895), + [anon_sym_out_GT_PIPE] = ACTIONS(1895), + [anon_sym_e_GT_PIPE] = ACTIONS(1895), + [anon_sym_o_GT_PIPE] = ACTIONS(1895), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1895), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1895), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1895), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1895), + [anon_sym_GT2] = ACTIONS(1897), + [anon_sym_DASH2] = ACTIONS(1895), + [anon_sym_STAR2] = ACTIONS(1897), + [anon_sym_and2] = ACTIONS(1895), + [anon_sym_xor2] = ACTIONS(1895), + [anon_sym_or2] = ACTIONS(1895), + [anon_sym_not_DASHin2] = ACTIONS(1895), + [anon_sym_has2] = ACTIONS(1895), + [anon_sym_not_DASHhas2] = ACTIONS(1895), + [anon_sym_starts_DASHwith2] = ACTIONS(1895), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1895), + [anon_sym_ends_DASHwith2] = ACTIONS(1895), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1895), + [anon_sym_EQ_EQ2] = ACTIONS(1895), + [anon_sym_BANG_EQ2] = ACTIONS(1895), + [anon_sym_LT2] = ACTIONS(1897), + [anon_sym_LT_EQ2] = ACTIONS(1895), + [anon_sym_GT_EQ2] = ACTIONS(1895), + [anon_sym_EQ_TILDE2] = ACTIONS(1895), + [anon_sym_BANG_TILDE2] = ACTIONS(1895), + [anon_sym_like2] = ACTIONS(1895), + [anon_sym_not_DASHlike2] = ACTIONS(1895), + [anon_sym_LPAREN2] = ACTIONS(1895), + [anon_sym_STAR_STAR2] = ACTIONS(1895), + [anon_sym_PLUS_PLUS2] = ACTIONS(1895), + [anon_sym_SLASH2] = ACTIONS(1897), + [anon_sym_mod2] = ACTIONS(1895), + [anon_sym_SLASH_SLASH2] = ACTIONS(1895), + [anon_sym_PLUS2] = ACTIONS(1897), + [anon_sym_bit_DASHshl2] = ACTIONS(1895), + [anon_sym_bit_DASHshr2] = ACTIONS(1895), + [anon_sym_bit_DASHand2] = ACTIONS(1895), + [anon_sym_bit_DASHxor2] = ACTIONS(1895), + [anon_sym_bit_DASHor2] = ACTIONS(1895), + [anon_sym_err_GT] = ACTIONS(1897), + [anon_sym_out_GT] = ACTIONS(1897), + [anon_sym_e_GT] = ACTIONS(1897), + [anon_sym_o_GT] = ACTIONS(1897), + [anon_sym_err_PLUSout_GT] = ACTIONS(1897), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1897), + [anon_sym_o_PLUSe_GT] = ACTIONS(1897), + [anon_sym_e_PLUSo_GT] = ACTIONS(1897), + [anon_sym_err_GT_GT] = ACTIONS(1895), + [anon_sym_out_GT_GT] = ACTIONS(1895), + [anon_sym_e_GT_GT] = ACTIONS(1895), + [anon_sym_o_GT_GT] = ACTIONS(1895), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1895), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1895), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1895), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1895), + [sym__unquoted_pattern] = ACTIONS(1897), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1001)] = { - [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1001), - [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_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token2] = ACTIONS(2594), + [anon_sym_in] = ACTIONS(2618), + [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(2618), + [anon_sym_RBRACE] = ACTIONS(2616), + [anon_sym_STAR2] = ACTIONS(2618), + [anon_sym_and2] = ACTIONS(2618), + [anon_sym_xor2] = ACTIONS(2618), + [anon_sym_or2] = ACTIONS(2618), + [anon_sym_not_DASHin2] = ACTIONS(2618), + [anon_sym_has2] = ACTIONS(2618), + [anon_sym_not_DASHhas2] = ACTIONS(2618), + [anon_sym_starts_DASHwith2] = ACTIONS(2618), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2618), + [anon_sym_ends_DASHwith2] = ACTIONS(2618), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2618), + [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(2618), + [anon_sym_like2] = ACTIONS(2618), + [anon_sym_not_DASHlike2] = ACTIONS(2618), + [anon_sym_STAR_STAR2] = ACTIONS(2618), + [anon_sym_PLUS_PLUS2] = ACTIONS(2618), + [anon_sym_SLASH2] = ACTIONS(2618), + [anon_sym_mod2] = ACTIONS(2618), + [anon_sym_SLASH_SLASH2] = ACTIONS(2618), + [anon_sym_PLUS2] = ACTIONS(2618), + [anon_sym_bit_DASHshl2] = ACTIONS(2618), + [anon_sym_bit_DASHshr2] = ACTIONS(2618), + [anon_sym_bit_DASHand2] = ACTIONS(2618), + [anon_sym_bit_DASHxor2] = ACTIONS(2618), + [anon_sym_bit_DASHor2] = ACTIONS(2618), + [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(103), }, [STATE(1002)] = { - [aux_sym__repeat_newline] = STATE(1046), + [aux_sym__repeat_newline] = STATE(1020), [sym_comment] = STATE(1002), - [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), + [anon_sym_in] = ACTIONS(2541), + [sym__newline] = ACTIONS(2541), + [anon_sym_SEMI] = ACTIONS(2541), + [anon_sym_PIPE] = ACTIONS(2541), + [anon_sym_err_GT_PIPE] = ACTIONS(2541), + [anon_sym_out_GT_PIPE] = ACTIONS(2541), + [anon_sym_e_GT_PIPE] = ACTIONS(2541), + [anon_sym_o_GT_PIPE] = ACTIONS(2541), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2541), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2541), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2541), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2541), + [anon_sym_RPAREN] = ACTIONS(2541), + [anon_sym_GT2] = ACTIONS(2543), + [anon_sym_DASH2] = ACTIONS(2541), + [anon_sym_LBRACE] = ACTIONS(2541), + [anon_sym_STAR2] = ACTIONS(2543), + [anon_sym_and2] = ACTIONS(2541), + [anon_sym_xor2] = ACTIONS(2541), + [anon_sym_or2] = ACTIONS(2541), + [anon_sym_not_DASHin2] = ACTIONS(2541), + [anon_sym_has2] = ACTIONS(2541), + [anon_sym_not_DASHhas2] = ACTIONS(2541), + [anon_sym_starts_DASHwith2] = ACTIONS(2541), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2541), + [anon_sym_ends_DASHwith2] = ACTIONS(2541), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2541), + [anon_sym_EQ_EQ2] = ACTIONS(2541), + [anon_sym_BANG_EQ2] = ACTIONS(2541), + [anon_sym_LT2] = ACTIONS(2543), + [anon_sym_LT_EQ2] = ACTIONS(2541), + [anon_sym_GT_EQ2] = ACTIONS(2541), + [anon_sym_EQ_TILDE2] = ACTIONS(2541), + [anon_sym_BANG_TILDE2] = ACTIONS(2541), + [anon_sym_like2] = ACTIONS(2541), + [anon_sym_not_DASHlike2] = ACTIONS(2541), + [anon_sym_STAR_STAR2] = ACTIONS(2541), + [anon_sym_PLUS_PLUS2] = ACTIONS(2541), + [anon_sym_SLASH2] = ACTIONS(2543), + [anon_sym_mod2] = ACTIONS(2541), + [anon_sym_SLASH_SLASH2] = ACTIONS(2541), + [anon_sym_PLUS2] = ACTIONS(2543), + [anon_sym_bit_DASHshl2] = ACTIONS(2541), + [anon_sym_bit_DASHshr2] = ACTIONS(2541), + [anon_sym_bit_DASHand2] = ACTIONS(2541), + [anon_sym_bit_DASHxor2] = ACTIONS(2541), + [anon_sym_bit_DASHor2] = ACTIONS(2541), + [anon_sym_err_GT] = ACTIONS(2543), + [anon_sym_out_GT] = ACTIONS(2543), + [anon_sym_e_GT] = ACTIONS(2543), + [anon_sym_o_GT] = ACTIONS(2543), + [anon_sym_err_PLUSout_GT] = ACTIONS(2543), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2543), + [anon_sym_o_PLUSe_GT] = ACTIONS(2543), + [anon_sym_e_PLUSo_GT] = ACTIONS(2543), + [anon_sym_err_GT_GT] = ACTIONS(2541), + [anon_sym_out_GT_GT] = ACTIONS(2541), + [anon_sym_e_GT_GT] = ACTIONS(2541), + [anon_sym_o_GT_GT] = ACTIONS(2541), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2541), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2541), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2541), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2541), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1003)] = { - [aux_sym__repeat_newline] = STATE(1047), + [sym__expr_parenthesized_immediate] = STATE(4973), [sym_comment] = STATE(1003), - [anon_sym_in] = ACTIONS(2327), - [sym__newline] = ACTIONS(2327), - [anon_sym_SEMI] = ACTIONS(2327), - [anon_sym_PIPE] = ACTIONS(2327), - [anon_sym_err_GT_PIPE] = ACTIONS(2327), - [anon_sym_out_GT_PIPE] = ACTIONS(2327), - [anon_sym_e_GT_PIPE] = ACTIONS(2327), - [anon_sym_o_GT_PIPE] = ACTIONS(2327), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2327), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2327), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2327), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2327), - [anon_sym_RPAREN] = ACTIONS(2327), - [anon_sym_GT2] = ACTIONS(2329), - [anon_sym_DASH2] = ACTIONS(2327), - [anon_sym_LBRACE] = ACTIONS(2327), - [anon_sym_STAR2] = ACTIONS(2329), - [anon_sym_and2] = ACTIONS(2327), - [anon_sym_xor2] = ACTIONS(2327), - [anon_sym_or2] = ACTIONS(2327), - [anon_sym_not_DASHin2] = ACTIONS(2327), - [anon_sym_has2] = ACTIONS(2327), - [anon_sym_not_DASHhas2] = ACTIONS(2327), - [anon_sym_starts_DASHwith2] = ACTIONS(2327), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2327), - [anon_sym_ends_DASHwith2] = ACTIONS(2327), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2327), - [anon_sym_EQ_EQ2] = ACTIONS(2327), - [anon_sym_BANG_EQ2] = ACTIONS(2327), - [anon_sym_LT2] = ACTIONS(2329), - [anon_sym_LT_EQ2] = ACTIONS(2327), - [anon_sym_GT_EQ2] = ACTIONS(2327), - [anon_sym_EQ_TILDE2] = ACTIONS(2327), - [anon_sym_BANG_TILDE2] = ACTIONS(2327), - [anon_sym_like2] = ACTIONS(2327), - [anon_sym_not_DASHlike2] = ACTIONS(2327), - [anon_sym_STAR_STAR2] = ACTIONS(2327), - [anon_sym_PLUS_PLUS2] = ACTIONS(2327), - [anon_sym_SLASH2] = ACTIONS(2329), - [anon_sym_mod2] = ACTIONS(2327), - [anon_sym_SLASH_SLASH2] = ACTIONS(2327), - [anon_sym_PLUS2] = ACTIONS(2329), - [anon_sym_bit_DASHshl2] = ACTIONS(2327), - [anon_sym_bit_DASHshr2] = ACTIONS(2327), - [anon_sym_bit_DASHand2] = ACTIONS(2327), - [anon_sym_bit_DASHxor2] = ACTIONS(2327), - [anon_sym_bit_DASHor2] = ACTIONS(2327), - [anon_sym_err_GT] = ACTIONS(2329), - [anon_sym_out_GT] = ACTIONS(2329), - [anon_sym_e_GT] = ACTIONS(2329), - [anon_sym_o_GT] = ACTIONS(2329), - [anon_sym_err_PLUSout_GT] = ACTIONS(2329), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2329), - [anon_sym_o_PLUSe_GT] = ACTIONS(2329), - [anon_sym_e_PLUSo_GT] = ACTIONS(2329), - [anon_sym_err_GT_GT] = ACTIONS(2327), - [anon_sym_out_GT_GT] = ACTIONS(2327), - [anon_sym_e_GT_GT] = ACTIONS(2327), - [anon_sym_o_GT_GT] = ACTIONS(2327), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2327), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2327), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2327), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2327), + [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(1818), + [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_POUND] = ACTIONS(3), }, [STATE(1004)] = { - [aux_sym__repeat_newline] = STATE(527), + [sym__expression] = STATE(4937), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), + [sym__expr_binary_expression] = STATE(2246), + [sym_expr_parenthesized] = STATE(724), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1886), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), [sym_comment] = STATE(1004), - [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(2754), + [anon_sym_true] = ACTIONS(2596), + [anon_sym_false] = ACTIONS(2596), + [anon_sym_null] = ACTIONS(2598), + [aux_sym_cmd_identifier_token3] = ACTIONS(2600), + [aux_sym_cmd_identifier_token4] = ACTIONS(2600), + [aux_sym_cmd_identifier_token5] = ACTIONS(2600), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(998), + [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(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2006), + [aux_sym__val_number_decimal_token3] = ACTIONS(2604), + [aux_sym__val_number_decimal_token4] = ACTIONS(2604), + [aux_sym__val_number_token1] = ACTIONS(2600), + [aux_sym__val_number_token2] = ACTIONS(2600), + [aux_sym__val_number_token3] = ACTIONS(2600), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2606), + [anon_sym_DQUOTE] = 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(2756), + [anon_sym_POUND] = ACTIONS(103), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(1005)] = { - [aux_sym__repeat_newline] = STATE(527), + [sym__expression] = STATE(4947), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), + [sym__expr_binary_expression] = STATE(2246), + [sym_expr_parenthesized] = STATE(724), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1886), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), [sym_comment] = STATE(1005), - [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_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token2] = ACTIONS(2754), + [anon_sym_true] = ACTIONS(2596), + [anon_sym_false] = ACTIONS(2596), + [anon_sym_null] = ACTIONS(2598), + [aux_sym_cmd_identifier_token3] = ACTIONS(2600), + [aux_sym_cmd_identifier_token4] = ACTIONS(2600), + [aux_sym_cmd_identifier_token5] = ACTIONS(2600), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(998), + [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(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2006), + [aux_sym__val_number_decimal_token3] = ACTIONS(2604), + [aux_sym__val_number_decimal_token4] = ACTIONS(2604), + [aux_sym__val_number_token1] = ACTIONS(2600), + [aux_sym__val_number_token2] = ACTIONS(2600), + [aux_sym__val_number_token3] = ACTIONS(2600), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2606), + [anon_sym_DQUOTE] = 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(2756), + [anon_sym_POUND] = ACTIONS(103), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(1006)] = { - [sym__expr_parenthesized_immediate] = STATE(4884), [sym_comment] = STATE(1006), - [ts_builtin_sym_end] = ACTIONS(2098), - [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_GT2] = ACTIONS(2100), - [anon_sym_DASH2] = 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(1724), - [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), + [anon_sym_export] = ACTIONS(2758), + [anon_sym_alias] = ACTIONS(2762), + [anon_sym_let] = ACTIONS(2762), + [anon_sym_mut] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [aux_sym_cmd_identifier_token1] = ACTIONS(2758), + [anon_sym_def] = ACTIONS(2762), + [anon_sym_use] = ACTIONS(2762), + [anon_sym_export_DASHenv] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym_module] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_loop] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_catch] = ACTIONS(2762), + [anon_sym_finally] = ACTIONS(2762), + [anon_sym_match] = ACTIONS(2762), + [anon_sym_in] = ACTIONS(2758), + [anon_sym_true] = ACTIONS(2762), + [anon_sym_false] = ACTIONS(2762), + [anon_sym_null] = ACTIONS(2762), + [aux_sym_cmd_identifier_token3] = ACTIONS(2762), + [aux_sym_cmd_identifier_token4] = ACTIONS(2762), + [aux_sym_cmd_identifier_token5] = ACTIONS(2762), + [sym__newline] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2766), + [anon_sym_PIPE] = ACTIONS(1966), + [anon_sym_AT] = ACTIONS(2766), + [anon_sym_LBRACK] = ACTIONS(2766), + [anon_sym_LPAREN] = ACTIONS(2762), + [anon_sym_DOLLAR] = ACTIONS(2758), + [anon_sym_DASH2] = ACTIONS(2758), + [anon_sym_LBRACE] = ACTIONS(2766), + [anon_sym_RBRACE] = ACTIONS(2766), + [anon_sym_DOT_DOT] = ACTIONS(2769), + [anon_sym_where] = ACTIONS(2766), + [aux_sym_expr_unary_token1] = ACTIONS(2766), + [anon_sym_PLUS2] = ACTIONS(2772), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2774), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2766), + [anon_sym_DOT_DOT_LT] = ACTIONS(2766), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2774), + [aux_sym__val_number_decimal_token1] = ACTIONS(2758), + [aux_sym__val_number_decimal_token2] = ACTIONS(2762), + [aux_sym__val_number_decimal_token3] = ACTIONS(2762), + [aux_sym__val_number_decimal_token4] = ACTIONS(2762), + [aux_sym__val_number_token1] = ACTIONS(2762), + [aux_sym__val_number_token2] = ACTIONS(2762), + [aux_sym__val_number_token3] = ACTIONS(2762), + [anon_sym_0b] = ACTIONS(2769), + [anon_sym_0o] = ACTIONS(2769), + [anon_sym_0x] = ACTIONS(2769), + [sym_val_date] = ACTIONS(2766), + [anon_sym_DQUOTE] = ACTIONS(2762), + [anon_sym_SQUOTE] = ACTIONS(2762), + [anon_sym_BQUOTE] = ACTIONS(2762), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2762), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2762), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2774), + [anon_sym_CARET] = ACTIONS(2766), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2762), }, [STATE(1007)] = { - [aux_sym__repeat_newline] = STATE(1048), + [sym__expr_parenthesized_immediate] = STATE(4973), [sym_comment] = STATE(1007), - [anon_sym_in] = ACTIONS(2327), - [sym__newline] = ACTIONS(2327), - [anon_sym_SEMI] = ACTIONS(2327), - [anon_sym_PIPE] = ACTIONS(2327), - [anon_sym_err_GT_PIPE] = ACTIONS(2327), - [anon_sym_out_GT_PIPE] = ACTIONS(2327), - [anon_sym_e_GT_PIPE] = ACTIONS(2327), - [anon_sym_o_GT_PIPE] = ACTIONS(2327), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2327), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2327), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2327), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2327), - [anon_sym_RPAREN] = ACTIONS(2327), - [anon_sym_GT2] = ACTIONS(2329), - [anon_sym_DASH2] = ACTIONS(2327), - [anon_sym_LBRACE] = ACTIONS(2327), - [anon_sym_STAR2] = ACTIONS(2329), - [anon_sym_and2] = ACTIONS(2327), - [anon_sym_xor2] = ACTIONS(2327), - [anon_sym_or2] = ACTIONS(2327), - [anon_sym_not_DASHin2] = ACTIONS(2327), - [anon_sym_has2] = ACTIONS(2327), - [anon_sym_not_DASHhas2] = ACTIONS(2327), - [anon_sym_starts_DASHwith2] = ACTIONS(2327), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2327), - [anon_sym_ends_DASHwith2] = ACTIONS(2327), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2327), - [anon_sym_EQ_EQ2] = ACTIONS(2327), - [anon_sym_BANG_EQ2] = ACTIONS(2327), - [anon_sym_LT2] = ACTIONS(2329), - [anon_sym_LT_EQ2] = ACTIONS(2327), - [anon_sym_GT_EQ2] = ACTIONS(2327), - [anon_sym_EQ_TILDE2] = ACTIONS(2327), - [anon_sym_BANG_TILDE2] = ACTIONS(2327), - [anon_sym_like2] = ACTIONS(2327), - [anon_sym_not_DASHlike2] = ACTIONS(2327), - [anon_sym_STAR_STAR2] = ACTIONS(2327), - [anon_sym_PLUS_PLUS2] = ACTIONS(2327), - [anon_sym_SLASH2] = ACTIONS(2329), - [anon_sym_mod2] = ACTIONS(2327), - [anon_sym_SLASH_SLASH2] = ACTIONS(2327), - [anon_sym_PLUS2] = ACTIONS(2329), - [anon_sym_bit_DASHshl2] = ACTIONS(2327), - [anon_sym_bit_DASHshr2] = ACTIONS(2327), - [anon_sym_bit_DASHand2] = ACTIONS(2327), - [anon_sym_bit_DASHxor2] = ACTIONS(2327), - [anon_sym_bit_DASHor2] = ACTIONS(2327), - [anon_sym_err_GT] = ACTIONS(2329), - [anon_sym_out_GT] = ACTIONS(2329), - [anon_sym_e_GT] = ACTIONS(2329), - [anon_sym_o_GT] = ACTIONS(2329), - [anon_sym_err_PLUSout_GT] = ACTIONS(2329), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2329), - [anon_sym_o_PLUSe_GT] = ACTIONS(2329), - [anon_sym_e_PLUSo_GT] = ACTIONS(2329), - [anon_sym_err_GT_GT] = ACTIONS(2327), - [anon_sym_out_GT_GT] = ACTIONS(2327), - [anon_sym_e_GT_GT] = ACTIONS(2327), - [anon_sym_o_GT_GT] = ACTIONS(2327), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2327), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2327), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2327), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2327), + [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(1818), + [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_POUND] = ACTIONS(3), }, [STATE(1008)] = { - [aux_sym__repeat_newline] = STATE(527), + [aux_sym__repeat_newline] = STATE(1026), [sym_comment] = STATE(1008), - [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(2541), + [sym__newline] = ACTIONS(2541), + [anon_sym_SEMI] = ACTIONS(2541), + [anon_sym_PIPE] = ACTIONS(2541), + [anon_sym_err_GT_PIPE] = ACTIONS(2541), + [anon_sym_out_GT_PIPE] = ACTIONS(2541), + [anon_sym_e_GT_PIPE] = ACTIONS(2541), + [anon_sym_o_GT_PIPE] = ACTIONS(2541), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2541), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2541), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2541), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2541), + [anon_sym_RPAREN] = ACTIONS(2541), + [anon_sym_GT2] = ACTIONS(2543), + [anon_sym_DASH2] = ACTIONS(2541), + [anon_sym_LBRACE] = ACTIONS(2541), + [anon_sym_STAR2] = ACTIONS(2543), + [anon_sym_and2] = ACTIONS(2541), + [anon_sym_xor2] = ACTIONS(2541), + [anon_sym_or2] = ACTIONS(2541), + [anon_sym_not_DASHin2] = ACTIONS(2541), + [anon_sym_has2] = ACTIONS(2541), + [anon_sym_not_DASHhas2] = ACTIONS(2541), + [anon_sym_starts_DASHwith2] = ACTIONS(2541), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2541), + [anon_sym_ends_DASHwith2] = ACTIONS(2541), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2541), + [anon_sym_EQ_EQ2] = ACTIONS(2541), + [anon_sym_BANG_EQ2] = ACTIONS(2541), + [anon_sym_LT2] = ACTIONS(2543), + [anon_sym_LT_EQ2] = ACTIONS(2541), + [anon_sym_GT_EQ2] = ACTIONS(2541), + [anon_sym_EQ_TILDE2] = ACTIONS(2541), + [anon_sym_BANG_TILDE2] = ACTIONS(2541), + [anon_sym_like2] = ACTIONS(2541), + [anon_sym_not_DASHlike2] = ACTIONS(2541), + [anon_sym_STAR_STAR2] = ACTIONS(2541), + [anon_sym_PLUS_PLUS2] = ACTIONS(2541), + [anon_sym_SLASH2] = ACTIONS(2543), + [anon_sym_mod2] = ACTIONS(2541), + [anon_sym_SLASH_SLASH2] = ACTIONS(2541), + [anon_sym_PLUS2] = ACTIONS(2543), + [anon_sym_bit_DASHshl2] = ACTIONS(2541), + [anon_sym_bit_DASHshr2] = ACTIONS(2541), + [anon_sym_bit_DASHand2] = ACTIONS(2541), + [anon_sym_bit_DASHxor2] = ACTIONS(2541), + [anon_sym_bit_DASHor2] = ACTIONS(2541), + [anon_sym_err_GT] = ACTIONS(2543), + [anon_sym_out_GT] = ACTIONS(2543), + [anon_sym_e_GT] = ACTIONS(2543), + [anon_sym_o_GT] = ACTIONS(2543), + [anon_sym_err_PLUSout_GT] = ACTIONS(2543), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2543), + [anon_sym_o_PLUSe_GT] = ACTIONS(2543), + [anon_sym_e_PLUSo_GT] = ACTIONS(2543), + [anon_sym_err_GT_GT] = ACTIONS(2541), + [anon_sym_out_GT_GT] = ACTIONS(2541), + [anon_sym_e_GT_GT] = ACTIONS(2541), + [anon_sym_o_GT_GT] = ACTIONS(2541), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2541), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2541), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2541), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2541), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1009)] = { - [aux_sym__repeat_newline] = STATE(1049), + [aux_sym__repeat_newline] = STATE(1108), [sym_comment] = STATE(1009), - [anon_sym_in] = ACTIONS(2327), - [sym__newline] = ACTIONS(2327), - [anon_sym_SEMI] = ACTIONS(2327), - [anon_sym_PIPE] = ACTIONS(2327), - [anon_sym_err_GT_PIPE] = ACTIONS(2327), - [anon_sym_out_GT_PIPE] = ACTIONS(2327), - [anon_sym_e_GT_PIPE] = ACTIONS(2327), - [anon_sym_o_GT_PIPE] = ACTIONS(2327), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2327), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2327), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2327), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2327), - [anon_sym_RPAREN] = ACTIONS(2327), - [anon_sym_GT2] = ACTIONS(2329), - [anon_sym_DASH2] = ACTIONS(2327), - [anon_sym_LBRACE] = ACTIONS(2327), - [anon_sym_STAR2] = ACTIONS(2329), - [anon_sym_and2] = ACTIONS(2327), - [anon_sym_xor2] = ACTIONS(2327), - [anon_sym_or2] = ACTIONS(2327), - [anon_sym_not_DASHin2] = ACTIONS(2327), - [anon_sym_has2] = ACTIONS(2327), - [anon_sym_not_DASHhas2] = ACTIONS(2327), - [anon_sym_starts_DASHwith2] = ACTIONS(2327), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2327), - [anon_sym_ends_DASHwith2] = ACTIONS(2327), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2327), - [anon_sym_EQ_EQ2] = ACTIONS(2327), - [anon_sym_BANG_EQ2] = ACTIONS(2327), - [anon_sym_LT2] = ACTIONS(2329), - [anon_sym_LT_EQ2] = ACTIONS(2327), - [anon_sym_GT_EQ2] = ACTIONS(2327), - [anon_sym_EQ_TILDE2] = ACTIONS(2327), - [anon_sym_BANG_TILDE2] = ACTIONS(2327), - [anon_sym_like2] = ACTIONS(2327), - [anon_sym_not_DASHlike2] = ACTIONS(2327), - [anon_sym_STAR_STAR2] = ACTIONS(2327), - [anon_sym_PLUS_PLUS2] = ACTIONS(2327), - [anon_sym_SLASH2] = ACTIONS(2329), - [anon_sym_mod2] = ACTIONS(2327), - [anon_sym_SLASH_SLASH2] = ACTIONS(2327), - [anon_sym_PLUS2] = ACTIONS(2329), - [anon_sym_bit_DASHshl2] = ACTIONS(2327), - [anon_sym_bit_DASHshr2] = ACTIONS(2327), - [anon_sym_bit_DASHand2] = ACTIONS(2327), - [anon_sym_bit_DASHxor2] = ACTIONS(2327), - [anon_sym_bit_DASHor2] = ACTIONS(2327), - [anon_sym_err_GT] = ACTIONS(2329), - [anon_sym_out_GT] = ACTIONS(2329), - [anon_sym_e_GT] = ACTIONS(2329), - [anon_sym_o_GT] = ACTIONS(2329), - [anon_sym_err_PLUSout_GT] = ACTIONS(2329), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2329), - [anon_sym_o_PLUSe_GT] = ACTIONS(2329), - [anon_sym_e_PLUSo_GT] = ACTIONS(2329), - [anon_sym_err_GT_GT] = ACTIONS(2327), - [anon_sym_out_GT_GT] = ACTIONS(2327), - [anon_sym_e_GT_GT] = ACTIONS(2327), - [anon_sym_o_GT_GT] = ACTIONS(2327), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2327), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2327), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2327), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2327), + [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(1010)] = { - [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1010), - [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(2652), + [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_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_LPAREN2] = ACTIONS(1986), + [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), + [sym__unquoted_pattern] = ACTIONS(1992), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1011)] = { - [aux_sym__repeat_newline] = STATE(1051), + [aux_sym__repeat_newline] = STATE(1109), [sym_comment] = STATE(1011), - [anon_sym_in] = ACTIONS(2327), - [sym__newline] = ACTIONS(2327), - [anon_sym_SEMI] = ACTIONS(2327), - [anon_sym_PIPE] = ACTIONS(2327), - [anon_sym_err_GT_PIPE] = ACTIONS(2327), - [anon_sym_out_GT_PIPE] = ACTIONS(2327), - [anon_sym_e_GT_PIPE] = ACTIONS(2327), - [anon_sym_o_GT_PIPE] = ACTIONS(2327), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2327), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2327), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2327), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2327), - [anon_sym_RPAREN] = ACTIONS(2327), - [anon_sym_GT2] = ACTIONS(2329), - [anon_sym_DASH2] = ACTIONS(2327), - [anon_sym_LBRACE] = ACTIONS(2327), - [anon_sym_STAR2] = ACTIONS(2329), - [anon_sym_and2] = ACTIONS(2327), - [anon_sym_xor2] = ACTIONS(2327), - [anon_sym_or2] = ACTIONS(2327), - [anon_sym_not_DASHin2] = ACTIONS(2327), - [anon_sym_has2] = ACTIONS(2327), - [anon_sym_not_DASHhas2] = ACTIONS(2327), - [anon_sym_starts_DASHwith2] = ACTIONS(2327), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2327), - [anon_sym_ends_DASHwith2] = ACTIONS(2327), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2327), - [anon_sym_EQ_EQ2] = ACTIONS(2327), - [anon_sym_BANG_EQ2] = ACTIONS(2327), - [anon_sym_LT2] = ACTIONS(2329), - [anon_sym_LT_EQ2] = ACTIONS(2327), - [anon_sym_GT_EQ2] = ACTIONS(2327), - [anon_sym_EQ_TILDE2] = ACTIONS(2327), - [anon_sym_BANG_TILDE2] = ACTIONS(2327), - [anon_sym_like2] = ACTIONS(2327), - [anon_sym_not_DASHlike2] = ACTIONS(2327), - [anon_sym_STAR_STAR2] = ACTIONS(2327), - [anon_sym_PLUS_PLUS2] = ACTIONS(2327), - [anon_sym_SLASH2] = ACTIONS(2329), - [anon_sym_mod2] = ACTIONS(2327), - [anon_sym_SLASH_SLASH2] = ACTIONS(2327), - [anon_sym_PLUS2] = ACTIONS(2329), - [anon_sym_bit_DASHshl2] = ACTIONS(2327), - [anon_sym_bit_DASHshr2] = ACTIONS(2327), - [anon_sym_bit_DASHand2] = ACTIONS(2327), - [anon_sym_bit_DASHxor2] = ACTIONS(2327), - [anon_sym_bit_DASHor2] = ACTIONS(2327), - [anon_sym_err_GT] = ACTIONS(2329), - [anon_sym_out_GT] = ACTIONS(2329), - [anon_sym_e_GT] = ACTIONS(2329), - [anon_sym_o_GT] = ACTIONS(2329), - [anon_sym_err_PLUSout_GT] = ACTIONS(2329), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2329), - [anon_sym_o_PLUSe_GT] = ACTIONS(2329), - [anon_sym_e_PLUSo_GT] = ACTIONS(2329), - [anon_sym_err_GT_GT] = ACTIONS(2327), - [anon_sym_out_GT_GT] = ACTIONS(2327), - [anon_sym_e_GT_GT] = ACTIONS(2327), - [anon_sym_o_GT_GT] = ACTIONS(2327), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2327), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2327), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2327), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2327), + [anon_sym_in] = ACTIONS(2381), + [sym__newline] = ACTIONS(2381), + [anon_sym_SEMI] = ACTIONS(2381), + [anon_sym_PIPE] = ACTIONS(2381), + [anon_sym_err_GT_PIPE] = ACTIONS(2381), + [anon_sym_out_GT_PIPE] = ACTIONS(2381), + [anon_sym_e_GT_PIPE] = ACTIONS(2381), + [anon_sym_o_GT_PIPE] = ACTIONS(2381), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2381), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2381), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2381), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2381), + [anon_sym_RPAREN] = ACTIONS(2381), + [anon_sym_GT2] = ACTIONS(2383), + [anon_sym_DASH2] = ACTIONS(2381), + [anon_sym_LBRACE] = ACTIONS(2381), + [anon_sym_STAR2] = ACTIONS(2383), + [anon_sym_and2] = ACTIONS(2381), + [anon_sym_xor2] = ACTIONS(2381), + [anon_sym_or2] = ACTIONS(2381), + [anon_sym_not_DASHin2] = ACTIONS(2381), + [anon_sym_has2] = ACTIONS(2381), + [anon_sym_not_DASHhas2] = ACTIONS(2381), + [anon_sym_starts_DASHwith2] = ACTIONS(2381), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2381), + [anon_sym_ends_DASHwith2] = ACTIONS(2381), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2381), + [anon_sym_EQ_EQ2] = ACTIONS(2381), + [anon_sym_BANG_EQ2] = ACTIONS(2381), + [anon_sym_LT2] = ACTIONS(2383), + [anon_sym_LT_EQ2] = ACTIONS(2381), + [anon_sym_GT_EQ2] = ACTIONS(2381), + [anon_sym_EQ_TILDE2] = ACTIONS(2381), + [anon_sym_BANG_TILDE2] = ACTIONS(2381), + [anon_sym_like2] = ACTIONS(2381), + [anon_sym_not_DASHlike2] = ACTIONS(2381), + [anon_sym_STAR_STAR2] = ACTIONS(2381), + [anon_sym_PLUS_PLUS2] = ACTIONS(2381), + [anon_sym_SLASH2] = ACTIONS(2383), + [anon_sym_mod2] = ACTIONS(2381), + [anon_sym_SLASH_SLASH2] = ACTIONS(2381), + [anon_sym_PLUS2] = ACTIONS(2383), + [anon_sym_bit_DASHshl2] = ACTIONS(2381), + [anon_sym_bit_DASHshr2] = ACTIONS(2381), + [anon_sym_bit_DASHand2] = ACTIONS(2381), + [anon_sym_bit_DASHxor2] = ACTIONS(2381), + [anon_sym_bit_DASHor2] = ACTIONS(2381), + [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(2381), + [anon_sym_out_GT_GT] = ACTIONS(2381), + [anon_sym_e_GT_GT] = ACTIONS(2381), + [anon_sym_o_GT_GT] = ACTIONS(2381), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2381), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2381), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2381), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2381), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1012)] = { - [aux_sym__repeat_newline] = STATE(527), + [sym__expr_parenthesized_immediate] = STATE(4973), [sym_comment] = STATE(1012), - [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(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(1818), + [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_POUND] = ACTIONS(3), }, [STATE(1013)] = { - [aux_sym__repeat_newline] = STATE(1052), [sym_comment] = STATE(1013), - [anon_sym_in] = ACTIONS(2327), - [sym__newline] = ACTIONS(2327), - [anon_sym_SEMI] = ACTIONS(2327), - [anon_sym_PIPE] = ACTIONS(2327), - [anon_sym_err_GT_PIPE] = ACTIONS(2327), - [anon_sym_out_GT_PIPE] = ACTIONS(2327), - [anon_sym_e_GT_PIPE] = ACTIONS(2327), - [anon_sym_o_GT_PIPE] = ACTIONS(2327), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2327), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2327), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2327), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2327), - [anon_sym_RPAREN] = ACTIONS(2327), - [anon_sym_GT2] = ACTIONS(2329), - [anon_sym_DASH2] = ACTIONS(2327), - [anon_sym_LBRACE] = ACTIONS(2327), - [anon_sym_STAR2] = ACTIONS(2329), - [anon_sym_and2] = ACTIONS(2327), - [anon_sym_xor2] = ACTIONS(2327), - [anon_sym_or2] = ACTIONS(2327), - [anon_sym_not_DASHin2] = ACTIONS(2327), - [anon_sym_has2] = ACTIONS(2327), - [anon_sym_not_DASHhas2] = ACTIONS(2327), - [anon_sym_starts_DASHwith2] = ACTIONS(2327), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2327), - [anon_sym_ends_DASHwith2] = ACTIONS(2327), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2327), - [anon_sym_EQ_EQ2] = ACTIONS(2327), - [anon_sym_BANG_EQ2] = ACTIONS(2327), - [anon_sym_LT2] = ACTIONS(2329), - [anon_sym_LT_EQ2] = ACTIONS(2327), - [anon_sym_GT_EQ2] = ACTIONS(2327), - [anon_sym_EQ_TILDE2] = ACTIONS(2327), - [anon_sym_BANG_TILDE2] = ACTIONS(2327), - [anon_sym_like2] = ACTIONS(2327), - [anon_sym_not_DASHlike2] = ACTIONS(2327), - [anon_sym_STAR_STAR2] = ACTIONS(2327), - [anon_sym_PLUS_PLUS2] = ACTIONS(2327), - [anon_sym_SLASH2] = ACTIONS(2329), - [anon_sym_mod2] = ACTIONS(2327), - [anon_sym_SLASH_SLASH2] = ACTIONS(2327), - [anon_sym_PLUS2] = ACTIONS(2329), - [anon_sym_bit_DASHshl2] = ACTIONS(2327), - [anon_sym_bit_DASHshr2] = ACTIONS(2327), - [anon_sym_bit_DASHand2] = ACTIONS(2327), - [anon_sym_bit_DASHxor2] = ACTIONS(2327), - [anon_sym_bit_DASHor2] = ACTIONS(2327), - [anon_sym_err_GT] = ACTIONS(2329), - [anon_sym_out_GT] = ACTIONS(2329), - [anon_sym_e_GT] = ACTIONS(2329), - [anon_sym_o_GT] = ACTIONS(2329), - [anon_sym_err_PLUSout_GT] = ACTIONS(2329), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2329), - [anon_sym_o_PLUSe_GT] = ACTIONS(2329), - [anon_sym_e_PLUSo_GT] = ACTIONS(2329), - [anon_sym_err_GT_GT] = ACTIONS(2327), - [anon_sym_out_GT_GT] = ACTIONS(2327), - [anon_sym_e_GT_GT] = ACTIONS(2327), - [anon_sym_o_GT_GT] = ACTIONS(2327), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2327), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2327), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2327), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2327), + [ts_builtin_sym_end] = ACTIONS(1982), + [anon_sym_in] = ACTIONS(1982), + [sym__newline] = ACTIONS(1982), + [anon_sym_SEMI] = ACTIONS(1982), + [anon_sym_PIPE] = ACTIONS(1982), + [anon_sym_err_GT_PIPE] = ACTIONS(1982), + [anon_sym_out_GT_PIPE] = ACTIONS(1982), + [anon_sym_e_GT_PIPE] = ACTIONS(1982), + [anon_sym_o_GT_PIPE] = ACTIONS(1982), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1982), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1982), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1982), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1982), + [anon_sym_GT2] = ACTIONS(1984), + [anon_sym_DASH2] = ACTIONS(1982), + [anon_sym_STAR2] = ACTIONS(1984), + [anon_sym_and2] = ACTIONS(1982), + [anon_sym_xor2] = ACTIONS(1982), + [anon_sym_or2] = ACTIONS(1982), + [anon_sym_not_DASHin2] = ACTIONS(1982), + [anon_sym_has2] = ACTIONS(1982), + [anon_sym_not_DASHhas2] = ACTIONS(1982), + [anon_sym_starts_DASHwith2] = ACTIONS(1982), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1982), + [anon_sym_ends_DASHwith2] = ACTIONS(1982), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1982), + [anon_sym_EQ_EQ2] = ACTIONS(1982), + [anon_sym_BANG_EQ2] = ACTIONS(1982), + [anon_sym_LT2] = ACTIONS(1984), + [anon_sym_LT_EQ2] = ACTIONS(1982), + [anon_sym_GT_EQ2] = ACTIONS(1982), + [anon_sym_EQ_TILDE2] = ACTIONS(1982), + [anon_sym_BANG_TILDE2] = ACTIONS(1982), + [anon_sym_like2] = ACTIONS(1982), + [anon_sym_not_DASHlike2] = ACTIONS(1982), + [anon_sym_LPAREN2] = ACTIONS(1986), + [anon_sym_STAR_STAR2] = ACTIONS(1982), + [anon_sym_PLUS_PLUS2] = ACTIONS(1982), + [anon_sym_SLASH2] = ACTIONS(1984), + [anon_sym_mod2] = ACTIONS(1982), + [anon_sym_SLASH_SLASH2] = ACTIONS(1982), + [anon_sym_PLUS2] = ACTIONS(1984), + [anon_sym_bit_DASHshl2] = ACTIONS(1982), + [anon_sym_bit_DASHshr2] = ACTIONS(1982), + [anon_sym_bit_DASHand2] = ACTIONS(1982), + [anon_sym_bit_DASHxor2] = ACTIONS(1982), + [anon_sym_bit_DASHor2] = ACTIONS(1982), + [anon_sym_err_GT] = ACTIONS(1984), + [anon_sym_out_GT] = ACTIONS(1984), + [anon_sym_e_GT] = ACTIONS(1984), + [anon_sym_o_GT] = ACTIONS(1984), + [anon_sym_err_PLUSout_GT] = ACTIONS(1984), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1984), + [anon_sym_o_PLUSe_GT] = ACTIONS(1984), + [anon_sym_e_PLUSo_GT] = ACTIONS(1984), + [anon_sym_err_GT_GT] = ACTIONS(1982), + [anon_sym_out_GT_GT] = ACTIONS(1982), + [anon_sym_e_GT_GT] = ACTIONS(1982), + [anon_sym_o_GT_GT] = ACTIONS(1982), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1982), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1982), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1982), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1982), + [sym__unquoted_pattern] = ACTIONS(1992), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1014)] = { - [aux_sym__repeat_newline] = STATE(527), + [sym__expr_parenthesized_immediate] = STATE(4973), [sym_comment] = STATE(1014), - [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(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(1818), + [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_POUND] = ACTIONS(3), }, [STATE(1015)] = { - [aux_sym__repeat_newline] = STATE(1138), + [aux_sym__repeat_newline] = STATE(1030), [sym_comment] = STATE(1015), - [anon_sym_in] = ACTIONS(2337), - [sym__newline] = ACTIONS(2337), - [anon_sym_SEMI] = ACTIONS(2337), - [anon_sym_PIPE] = ACTIONS(2337), - [anon_sym_err_GT_PIPE] = ACTIONS(2337), - [anon_sym_out_GT_PIPE] = ACTIONS(2337), - [anon_sym_e_GT_PIPE] = ACTIONS(2337), - [anon_sym_o_GT_PIPE] = ACTIONS(2337), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2337), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2337), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2337), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2337), - [anon_sym_RPAREN] = ACTIONS(2337), - [anon_sym_GT2] = ACTIONS(2339), - [anon_sym_DASH2] = ACTIONS(2337), - [anon_sym_LBRACE] = ACTIONS(2337), - [anon_sym_STAR2] = ACTIONS(2339), - [anon_sym_and2] = ACTIONS(2337), - [anon_sym_xor2] = ACTIONS(2337), - [anon_sym_or2] = ACTIONS(2337), - [anon_sym_not_DASHin2] = ACTIONS(2337), - [anon_sym_has2] = ACTIONS(2337), - [anon_sym_not_DASHhas2] = ACTIONS(2337), - [anon_sym_starts_DASHwith2] = ACTIONS(2337), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2337), - [anon_sym_ends_DASHwith2] = ACTIONS(2337), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2337), - [anon_sym_EQ_EQ2] = ACTIONS(2337), - [anon_sym_BANG_EQ2] = ACTIONS(2337), - [anon_sym_LT2] = ACTIONS(2339), - [anon_sym_LT_EQ2] = ACTIONS(2337), - [anon_sym_GT_EQ2] = ACTIONS(2337), - [anon_sym_EQ_TILDE2] = ACTIONS(2337), - [anon_sym_BANG_TILDE2] = ACTIONS(2337), - [anon_sym_like2] = ACTIONS(2337), - [anon_sym_not_DASHlike2] = ACTIONS(2337), - [anon_sym_STAR_STAR2] = ACTIONS(2337), - [anon_sym_PLUS_PLUS2] = ACTIONS(2337), - [anon_sym_SLASH2] = ACTIONS(2339), - [anon_sym_mod2] = ACTIONS(2337), - [anon_sym_SLASH_SLASH2] = ACTIONS(2337), - [anon_sym_PLUS2] = ACTIONS(2339), - [anon_sym_bit_DASHshl2] = ACTIONS(2337), - [anon_sym_bit_DASHshr2] = ACTIONS(2337), - [anon_sym_bit_DASHand2] = ACTIONS(2337), - [anon_sym_bit_DASHxor2] = ACTIONS(2337), - [anon_sym_bit_DASHor2] = ACTIONS(2337), - [anon_sym_err_GT] = ACTIONS(2339), - [anon_sym_out_GT] = ACTIONS(2339), - [anon_sym_e_GT] = ACTIONS(2339), - [anon_sym_o_GT] = ACTIONS(2339), - [anon_sym_err_PLUSout_GT] = ACTIONS(2339), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2339), - [anon_sym_o_PLUSe_GT] = ACTIONS(2339), - [anon_sym_e_PLUSo_GT] = ACTIONS(2339), - [anon_sym_err_GT_GT] = ACTIONS(2337), - [anon_sym_out_GT_GT] = ACTIONS(2337), - [anon_sym_e_GT_GT] = ACTIONS(2337), - [anon_sym_o_GT_GT] = ACTIONS(2337), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2337), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2337), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2337), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2337), + [anon_sym_in] = ACTIONS(2346), + [sym__newline] = ACTIONS(2346), + [anon_sym_SEMI] = 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_RPAREN] = ACTIONS(2346), + [anon_sym_GT2] = ACTIONS(2348), + [anon_sym_DASH2] = ACTIONS(2346), + [anon_sym_LBRACE] = ACTIONS(2346), + [anon_sym_STAR2] = ACTIONS(2348), + [anon_sym_and2] = ACTIONS(2346), + [anon_sym_xor2] = ACTIONS(2346), + [anon_sym_or2] = ACTIONS(2346), + [anon_sym_not_DASHin2] = ACTIONS(2346), + [anon_sym_has2] = ACTIONS(2346), + [anon_sym_not_DASHhas2] = ACTIONS(2346), + [anon_sym_starts_DASHwith2] = ACTIONS(2346), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2346), + [anon_sym_ends_DASHwith2] = ACTIONS(2346), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2346), + [anon_sym_EQ_EQ2] = ACTIONS(2346), + [anon_sym_BANG_EQ2] = ACTIONS(2346), + [anon_sym_LT2] = ACTIONS(2348), + [anon_sym_LT_EQ2] = ACTIONS(2346), + [anon_sym_GT_EQ2] = ACTIONS(2346), + [anon_sym_EQ_TILDE2] = ACTIONS(2346), + [anon_sym_BANG_TILDE2] = ACTIONS(2346), + [anon_sym_like2] = ACTIONS(2346), + [anon_sym_not_DASHlike2] = ACTIONS(2346), + [anon_sym_STAR_STAR2] = ACTIONS(2346), + [anon_sym_PLUS_PLUS2] = ACTIONS(2346), + [anon_sym_SLASH2] = ACTIONS(2348), + [anon_sym_mod2] = ACTIONS(2346), + [anon_sym_SLASH_SLASH2] = ACTIONS(2346), + [anon_sym_PLUS2] = ACTIONS(2348), + [anon_sym_bit_DASHshl2] = ACTIONS(2346), + [anon_sym_bit_DASHshr2] = ACTIONS(2346), + [anon_sym_bit_DASHand2] = ACTIONS(2346), + [anon_sym_bit_DASHxor2] = ACTIONS(2346), + [anon_sym_bit_DASHor2] = ACTIONS(2346), + [anon_sym_err_GT] = ACTIONS(2348), + [anon_sym_out_GT] = ACTIONS(2348), + [anon_sym_e_GT] = ACTIONS(2348), + [anon_sym_o_GT] = ACTIONS(2348), + [anon_sym_err_PLUSout_GT] = ACTIONS(2348), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2348), + [anon_sym_o_PLUSe_GT] = ACTIONS(2348), + [anon_sym_e_PLUSo_GT] = ACTIONS(2348), + [anon_sym_err_GT_GT] = ACTIONS(2346), + [anon_sym_out_GT_GT] = ACTIONS(2346), + [anon_sym_e_GT_GT] = ACTIONS(2346), + [anon_sym_o_GT_GT] = ACTIONS(2346), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2346), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2346), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2346), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2346), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1016)] = { - [aux_sym__repeat_newline] = STATE(1064), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1016), - [anon_sym_in] = ACTIONS(2337), - [sym__newline] = ACTIONS(2337), - [anon_sym_SEMI] = ACTIONS(2337), - [anon_sym_PIPE] = ACTIONS(2337), - [anon_sym_err_GT_PIPE] = ACTIONS(2337), - [anon_sym_out_GT_PIPE] = ACTIONS(2337), - [anon_sym_e_GT_PIPE] = ACTIONS(2337), - [anon_sym_o_GT_PIPE] = ACTIONS(2337), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2337), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2337), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2337), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2337), - [anon_sym_RPAREN] = ACTIONS(2337), - [anon_sym_GT2] = ACTIONS(2339), - [anon_sym_DASH2] = ACTIONS(2337), - [anon_sym_LBRACE] = ACTIONS(2337), - [anon_sym_STAR2] = ACTIONS(2339), - [anon_sym_and2] = ACTIONS(2337), - [anon_sym_xor2] = ACTIONS(2337), - [anon_sym_or2] = ACTIONS(2337), - [anon_sym_not_DASHin2] = ACTIONS(2337), - [anon_sym_has2] = ACTIONS(2337), - [anon_sym_not_DASHhas2] = ACTIONS(2337), - [anon_sym_starts_DASHwith2] = ACTIONS(2337), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2337), - [anon_sym_ends_DASHwith2] = ACTIONS(2337), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2337), - [anon_sym_EQ_EQ2] = ACTIONS(2337), - [anon_sym_BANG_EQ2] = ACTIONS(2337), - [anon_sym_LT2] = ACTIONS(2339), - [anon_sym_LT_EQ2] = ACTIONS(2337), - [anon_sym_GT_EQ2] = ACTIONS(2337), - [anon_sym_EQ_TILDE2] = ACTIONS(2337), - [anon_sym_BANG_TILDE2] = ACTIONS(2337), - [anon_sym_like2] = ACTIONS(2337), - [anon_sym_not_DASHlike2] = ACTIONS(2337), - [anon_sym_STAR_STAR2] = ACTIONS(2337), - [anon_sym_PLUS_PLUS2] = ACTIONS(2337), - [anon_sym_SLASH2] = ACTIONS(2339), - [anon_sym_mod2] = ACTIONS(2337), - [anon_sym_SLASH_SLASH2] = ACTIONS(2337), - [anon_sym_PLUS2] = ACTIONS(2339), - [anon_sym_bit_DASHshl2] = ACTIONS(2337), - [anon_sym_bit_DASHshr2] = ACTIONS(2337), - [anon_sym_bit_DASHand2] = ACTIONS(2337), - [anon_sym_bit_DASHxor2] = ACTIONS(2337), - [anon_sym_bit_DASHor2] = ACTIONS(2337), - [anon_sym_err_GT] = ACTIONS(2339), - [anon_sym_out_GT] = ACTIONS(2339), - [anon_sym_e_GT] = ACTIONS(2339), - [anon_sym_o_GT] = ACTIONS(2339), - [anon_sym_err_PLUSout_GT] = ACTIONS(2339), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2339), - [anon_sym_o_PLUSe_GT] = ACTIONS(2339), - [anon_sym_e_PLUSo_GT] = ACTIONS(2339), - [anon_sym_err_GT_GT] = ACTIONS(2337), - [anon_sym_out_GT_GT] = ACTIONS(2337), - [anon_sym_e_GT_GT] = ACTIONS(2337), - [anon_sym_o_GT_GT] = ACTIONS(2337), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2337), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2337), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2337), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2337), + [anon_sym_in] = ACTIONS(2676), + [sym__newline] = ACTIONS(2676), + [anon_sym_SEMI] = ACTIONS(2676), + [anon_sym_PIPE] = ACTIONS(2676), + [anon_sym_err_GT_PIPE] = ACTIONS(2676), + [anon_sym_out_GT_PIPE] = ACTIONS(2676), + [anon_sym_e_GT_PIPE] = ACTIONS(2676), + [anon_sym_o_GT_PIPE] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2676), + [anon_sym_RPAREN] = ACTIONS(2676), + [anon_sym_GT2] = ACTIONS(2678), + [anon_sym_DASH2] = ACTIONS(2676), + [anon_sym_LBRACE] = ACTIONS(2676), + [anon_sym_STAR2] = ACTIONS(2678), + [anon_sym_and2] = ACTIONS(2676), + [anon_sym_xor2] = ACTIONS(2676), + [anon_sym_or2] = ACTIONS(2676), + [anon_sym_not_DASHin2] = ACTIONS(2676), + [anon_sym_has2] = ACTIONS(2676), + [anon_sym_not_DASHhas2] = ACTIONS(2676), + [anon_sym_starts_DASHwith2] = ACTIONS(2676), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2676), + [anon_sym_ends_DASHwith2] = ACTIONS(2676), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2676), + [anon_sym_EQ_EQ2] = ACTIONS(2676), + [anon_sym_BANG_EQ2] = ACTIONS(2676), + [anon_sym_LT2] = ACTIONS(2678), + [anon_sym_LT_EQ2] = ACTIONS(2676), + [anon_sym_GT_EQ2] = ACTIONS(2676), + [anon_sym_EQ_TILDE2] = ACTIONS(2676), + [anon_sym_BANG_TILDE2] = ACTIONS(2676), + [anon_sym_like2] = ACTIONS(2676), + [anon_sym_not_DASHlike2] = ACTIONS(2676), + [anon_sym_STAR_STAR2] = ACTIONS(2676), + [anon_sym_PLUS_PLUS2] = ACTIONS(2676), + [anon_sym_SLASH2] = ACTIONS(2678), + [anon_sym_mod2] = ACTIONS(2676), + [anon_sym_SLASH_SLASH2] = ACTIONS(2676), + [anon_sym_PLUS2] = ACTIONS(2678), + [anon_sym_bit_DASHshl2] = ACTIONS(2676), + [anon_sym_bit_DASHshr2] = ACTIONS(2676), + [anon_sym_bit_DASHand2] = ACTIONS(2676), + [anon_sym_bit_DASHxor2] = ACTIONS(2676), + [anon_sym_bit_DASHor2] = ACTIONS(2676), + [anon_sym_err_GT] = ACTIONS(2678), + [anon_sym_out_GT] = ACTIONS(2678), + [anon_sym_e_GT] = ACTIONS(2678), + [anon_sym_o_GT] = ACTIONS(2678), + [anon_sym_err_PLUSout_GT] = ACTIONS(2678), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2678), + [anon_sym_o_PLUSe_GT] = ACTIONS(2678), + [anon_sym_e_PLUSo_GT] = ACTIONS(2678), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1017)] = { - [aux_sym__repeat_newline] = STATE(1066), + [aux_sym__repeat_newline] = STATE(1029), [sym_comment] = STATE(1017), - [anon_sym_in] = ACTIONS(2337), - [sym__newline] = ACTIONS(2337), - [anon_sym_SEMI] = ACTIONS(2337), - [anon_sym_PIPE] = ACTIONS(2337), - [anon_sym_err_GT_PIPE] = ACTIONS(2337), - [anon_sym_out_GT_PIPE] = ACTIONS(2337), - [anon_sym_e_GT_PIPE] = ACTIONS(2337), - [anon_sym_o_GT_PIPE] = ACTIONS(2337), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2337), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2337), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2337), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2337), - [anon_sym_RPAREN] = ACTIONS(2337), - [anon_sym_GT2] = ACTIONS(2339), - [anon_sym_DASH2] = ACTIONS(2337), - [anon_sym_LBRACE] = ACTIONS(2337), - [anon_sym_STAR2] = ACTIONS(2339), - [anon_sym_and2] = ACTIONS(2337), - [anon_sym_xor2] = ACTIONS(2337), - [anon_sym_or2] = ACTIONS(2337), - [anon_sym_not_DASHin2] = ACTIONS(2337), - [anon_sym_has2] = ACTIONS(2337), - [anon_sym_not_DASHhas2] = ACTIONS(2337), - [anon_sym_starts_DASHwith2] = ACTIONS(2337), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2337), - [anon_sym_ends_DASHwith2] = ACTIONS(2337), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2337), - [anon_sym_EQ_EQ2] = ACTIONS(2337), - [anon_sym_BANG_EQ2] = ACTIONS(2337), - [anon_sym_LT2] = ACTIONS(2339), - [anon_sym_LT_EQ2] = ACTIONS(2337), - [anon_sym_GT_EQ2] = ACTIONS(2337), - [anon_sym_EQ_TILDE2] = ACTIONS(2337), - [anon_sym_BANG_TILDE2] = ACTIONS(2337), - [anon_sym_like2] = ACTIONS(2337), - [anon_sym_not_DASHlike2] = ACTIONS(2337), - [anon_sym_STAR_STAR2] = ACTIONS(2337), - [anon_sym_PLUS_PLUS2] = ACTIONS(2337), - [anon_sym_SLASH2] = ACTIONS(2339), - [anon_sym_mod2] = ACTIONS(2337), - [anon_sym_SLASH_SLASH2] = ACTIONS(2337), - [anon_sym_PLUS2] = ACTIONS(2339), - [anon_sym_bit_DASHshl2] = ACTIONS(2337), - [anon_sym_bit_DASHshr2] = ACTIONS(2337), - [anon_sym_bit_DASHand2] = ACTIONS(2337), - [anon_sym_bit_DASHxor2] = ACTIONS(2337), - [anon_sym_bit_DASHor2] = ACTIONS(2337), - [anon_sym_err_GT] = ACTIONS(2339), - [anon_sym_out_GT] = ACTIONS(2339), - [anon_sym_e_GT] = ACTIONS(2339), - [anon_sym_o_GT] = ACTIONS(2339), - [anon_sym_err_PLUSout_GT] = ACTIONS(2339), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2339), - [anon_sym_o_PLUSe_GT] = ACTIONS(2339), - [anon_sym_e_PLUSo_GT] = ACTIONS(2339), - [anon_sym_err_GT_GT] = ACTIONS(2337), - [anon_sym_out_GT_GT] = ACTIONS(2337), - [anon_sym_e_GT_GT] = ACTIONS(2337), - [anon_sym_o_GT_GT] = ACTIONS(2337), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2337), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2337), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2337), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2337), + [anon_sym_in] = ACTIONS(2541), + [sym__newline] = ACTIONS(2541), + [anon_sym_SEMI] = ACTIONS(2541), + [anon_sym_PIPE] = ACTIONS(2541), + [anon_sym_err_GT_PIPE] = ACTIONS(2541), + [anon_sym_out_GT_PIPE] = ACTIONS(2541), + [anon_sym_e_GT_PIPE] = ACTIONS(2541), + [anon_sym_o_GT_PIPE] = ACTIONS(2541), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2541), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2541), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2541), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2541), + [anon_sym_RPAREN] = ACTIONS(2541), + [anon_sym_GT2] = ACTIONS(2543), + [anon_sym_DASH2] = ACTIONS(2541), + [anon_sym_LBRACE] = ACTIONS(2541), + [anon_sym_STAR2] = ACTIONS(2543), + [anon_sym_and2] = ACTIONS(2541), + [anon_sym_xor2] = ACTIONS(2541), + [anon_sym_or2] = ACTIONS(2541), + [anon_sym_not_DASHin2] = ACTIONS(2541), + [anon_sym_has2] = ACTIONS(2541), + [anon_sym_not_DASHhas2] = ACTIONS(2541), + [anon_sym_starts_DASHwith2] = ACTIONS(2541), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2541), + [anon_sym_ends_DASHwith2] = ACTIONS(2541), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2541), + [anon_sym_EQ_EQ2] = ACTIONS(2541), + [anon_sym_BANG_EQ2] = ACTIONS(2541), + [anon_sym_LT2] = ACTIONS(2543), + [anon_sym_LT_EQ2] = ACTIONS(2541), + [anon_sym_GT_EQ2] = ACTIONS(2541), + [anon_sym_EQ_TILDE2] = ACTIONS(2541), + [anon_sym_BANG_TILDE2] = ACTIONS(2541), + [anon_sym_like2] = ACTIONS(2541), + [anon_sym_not_DASHlike2] = ACTIONS(2541), + [anon_sym_STAR_STAR2] = ACTIONS(2541), + [anon_sym_PLUS_PLUS2] = ACTIONS(2541), + [anon_sym_SLASH2] = ACTIONS(2543), + [anon_sym_mod2] = ACTIONS(2541), + [anon_sym_SLASH_SLASH2] = ACTIONS(2541), + [anon_sym_PLUS2] = ACTIONS(2543), + [anon_sym_bit_DASHshl2] = ACTIONS(2541), + [anon_sym_bit_DASHshr2] = ACTIONS(2541), + [anon_sym_bit_DASHand2] = ACTIONS(2541), + [anon_sym_bit_DASHxor2] = ACTIONS(2541), + [anon_sym_bit_DASHor2] = ACTIONS(2541), + [anon_sym_err_GT] = ACTIONS(2543), + [anon_sym_out_GT] = ACTIONS(2543), + [anon_sym_e_GT] = ACTIONS(2543), + [anon_sym_o_GT] = ACTIONS(2543), + [anon_sym_err_PLUSout_GT] = ACTIONS(2543), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2543), + [anon_sym_o_PLUSe_GT] = ACTIONS(2543), + [anon_sym_e_PLUSo_GT] = ACTIONS(2543), + [anon_sym_err_GT_GT] = ACTIONS(2541), + [anon_sym_out_GT_GT] = ACTIONS(2541), + [anon_sym_e_GT_GT] = ACTIONS(2541), + [anon_sym_o_GT_GT] = ACTIONS(2541), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2541), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2541), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2541), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2541), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1018)] = { - [aux_sym__repeat_newline] = STATE(1068), + [aux_sym__repeat_newline] = STATE(1038), [sym_comment] = STATE(1018), - [anon_sym_in] = ACTIONS(2337), - [sym__newline] = ACTIONS(2337), - [anon_sym_SEMI] = ACTIONS(2337), - [anon_sym_PIPE] = ACTIONS(2337), - [anon_sym_err_GT_PIPE] = ACTIONS(2337), - [anon_sym_out_GT_PIPE] = ACTIONS(2337), - [anon_sym_e_GT_PIPE] = ACTIONS(2337), - [anon_sym_o_GT_PIPE] = ACTIONS(2337), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2337), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2337), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2337), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2337), - [anon_sym_RPAREN] = ACTIONS(2337), - [anon_sym_GT2] = ACTIONS(2339), - [anon_sym_DASH2] = ACTIONS(2337), - [anon_sym_LBRACE] = ACTIONS(2337), - [anon_sym_STAR2] = ACTIONS(2339), - [anon_sym_and2] = ACTIONS(2337), - [anon_sym_xor2] = ACTIONS(2337), - [anon_sym_or2] = ACTIONS(2337), - [anon_sym_not_DASHin2] = ACTIONS(2337), - [anon_sym_has2] = ACTIONS(2337), - [anon_sym_not_DASHhas2] = ACTIONS(2337), - [anon_sym_starts_DASHwith2] = ACTIONS(2337), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2337), - [anon_sym_ends_DASHwith2] = ACTIONS(2337), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2337), - [anon_sym_EQ_EQ2] = ACTIONS(2337), - [anon_sym_BANG_EQ2] = ACTIONS(2337), - [anon_sym_LT2] = ACTIONS(2339), - [anon_sym_LT_EQ2] = ACTIONS(2337), - [anon_sym_GT_EQ2] = ACTIONS(2337), - [anon_sym_EQ_TILDE2] = ACTIONS(2337), - [anon_sym_BANG_TILDE2] = ACTIONS(2337), - [anon_sym_like2] = ACTIONS(2337), - [anon_sym_not_DASHlike2] = ACTIONS(2337), - [anon_sym_STAR_STAR2] = ACTIONS(2337), - [anon_sym_PLUS_PLUS2] = ACTIONS(2337), - [anon_sym_SLASH2] = ACTIONS(2339), - [anon_sym_mod2] = ACTIONS(2337), - [anon_sym_SLASH_SLASH2] = ACTIONS(2337), - [anon_sym_PLUS2] = ACTIONS(2339), - [anon_sym_bit_DASHshl2] = ACTIONS(2337), - [anon_sym_bit_DASHshr2] = ACTIONS(2337), - [anon_sym_bit_DASHand2] = ACTIONS(2337), - [anon_sym_bit_DASHxor2] = ACTIONS(2337), - [anon_sym_bit_DASHor2] = ACTIONS(2337), - [anon_sym_err_GT] = ACTIONS(2339), - [anon_sym_out_GT] = ACTIONS(2339), - [anon_sym_e_GT] = ACTIONS(2339), - [anon_sym_o_GT] = ACTIONS(2339), - [anon_sym_err_PLUSout_GT] = ACTIONS(2339), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2339), - [anon_sym_o_PLUSe_GT] = ACTIONS(2339), - [anon_sym_e_PLUSo_GT] = ACTIONS(2339), - [anon_sym_err_GT_GT] = ACTIONS(2337), - [anon_sym_out_GT_GT] = ACTIONS(2337), - [anon_sym_e_GT_GT] = ACTIONS(2337), - [anon_sym_o_GT_GT] = ACTIONS(2337), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2337), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2337), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2337), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2337), + [anon_sym_in] = ACTIONS(2346), + [sym__newline] = ACTIONS(2346), + [anon_sym_SEMI] = 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_RPAREN] = ACTIONS(2346), + [anon_sym_GT2] = ACTIONS(2348), + [anon_sym_DASH2] = ACTIONS(2346), + [anon_sym_LBRACE] = ACTIONS(2346), + [anon_sym_STAR2] = ACTIONS(2348), + [anon_sym_and2] = ACTIONS(2346), + [anon_sym_xor2] = ACTIONS(2346), + [anon_sym_or2] = ACTIONS(2346), + [anon_sym_not_DASHin2] = ACTIONS(2346), + [anon_sym_has2] = ACTIONS(2346), + [anon_sym_not_DASHhas2] = ACTIONS(2346), + [anon_sym_starts_DASHwith2] = ACTIONS(2346), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2346), + [anon_sym_ends_DASHwith2] = ACTIONS(2346), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2346), + [anon_sym_EQ_EQ2] = ACTIONS(2346), + [anon_sym_BANG_EQ2] = ACTIONS(2346), + [anon_sym_LT2] = ACTIONS(2348), + [anon_sym_LT_EQ2] = ACTIONS(2346), + [anon_sym_GT_EQ2] = ACTIONS(2346), + [anon_sym_EQ_TILDE2] = ACTIONS(2346), + [anon_sym_BANG_TILDE2] = ACTIONS(2346), + [anon_sym_like2] = ACTIONS(2346), + [anon_sym_not_DASHlike2] = ACTIONS(2346), + [anon_sym_STAR_STAR2] = ACTIONS(2346), + [anon_sym_PLUS_PLUS2] = ACTIONS(2346), + [anon_sym_SLASH2] = ACTIONS(2348), + [anon_sym_mod2] = ACTIONS(2346), + [anon_sym_SLASH_SLASH2] = ACTIONS(2346), + [anon_sym_PLUS2] = ACTIONS(2348), + [anon_sym_bit_DASHshl2] = ACTIONS(2346), + [anon_sym_bit_DASHshr2] = ACTIONS(2346), + [anon_sym_bit_DASHand2] = ACTIONS(2346), + [anon_sym_bit_DASHxor2] = ACTIONS(2346), + [anon_sym_bit_DASHor2] = ACTIONS(2346), + [anon_sym_err_GT] = ACTIONS(2348), + [anon_sym_out_GT] = ACTIONS(2348), + [anon_sym_e_GT] = ACTIONS(2348), + [anon_sym_o_GT] = ACTIONS(2348), + [anon_sym_err_PLUSout_GT] = ACTIONS(2348), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2348), + [anon_sym_o_PLUSe_GT] = ACTIONS(2348), + [anon_sym_e_PLUSo_GT] = ACTIONS(2348), + [anon_sym_err_GT_GT] = ACTIONS(2346), + [anon_sym_out_GT_GT] = ACTIONS(2346), + [anon_sym_e_GT_GT] = ACTIONS(2346), + [anon_sym_o_GT_GT] = ACTIONS(2346), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2346), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2346), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2346), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2346), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1019)] = { - [sym__expr_parenthesized_immediate] = STATE(4884), + [aux_sym__repeat_newline] = STATE(1111), [sym_comment] = STATE(1019), - [ts_builtin_sym_end] = ACTIONS(2098), - [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_GT2] = ACTIONS(2100), - [anon_sym_DASH2] = 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(1724), - [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_in] = ACTIONS(2381), + [sym__newline] = ACTIONS(2381), + [anon_sym_SEMI] = ACTIONS(2381), + [anon_sym_PIPE] = ACTIONS(2381), + [anon_sym_err_GT_PIPE] = ACTIONS(2381), + [anon_sym_out_GT_PIPE] = ACTIONS(2381), + [anon_sym_e_GT_PIPE] = ACTIONS(2381), + [anon_sym_o_GT_PIPE] = ACTIONS(2381), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2381), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2381), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2381), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2381), + [anon_sym_RPAREN] = ACTIONS(2381), + [anon_sym_GT2] = ACTIONS(2383), + [anon_sym_DASH2] = ACTIONS(2381), + [anon_sym_LBRACE] = ACTIONS(2381), + [anon_sym_STAR2] = ACTIONS(2383), + [anon_sym_and2] = ACTIONS(2381), + [anon_sym_xor2] = ACTIONS(2381), + [anon_sym_or2] = ACTIONS(2381), + [anon_sym_not_DASHin2] = ACTIONS(2381), + [anon_sym_has2] = ACTIONS(2381), + [anon_sym_not_DASHhas2] = ACTIONS(2381), + [anon_sym_starts_DASHwith2] = ACTIONS(2381), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2381), + [anon_sym_ends_DASHwith2] = ACTIONS(2381), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2381), + [anon_sym_EQ_EQ2] = ACTIONS(2381), + [anon_sym_BANG_EQ2] = ACTIONS(2381), + [anon_sym_LT2] = ACTIONS(2383), + [anon_sym_LT_EQ2] = ACTIONS(2381), + [anon_sym_GT_EQ2] = ACTIONS(2381), + [anon_sym_EQ_TILDE2] = ACTIONS(2381), + [anon_sym_BANG_TILDE2] = ACTIONS(2381), + [anon_sym_like2] = ACTIONS(2381), + [anon_sym_not_DASHlike2] = ACTIONS(2381), + [anon_sym_STAR_STAR2] = ACTIONS(2381), + [anon_sym_PLUS_PLUS2] = ACTIONS(2381), + [anon_sym_SLASH2] = ACTIONS(2383), + [anon_sym_mod2] = ACTIONS(2381), + [anon_sym_SLASH_SLASH2] = ACTIONS(2381), + [anon_sym_PLUS2] = ACTIONS(2383), + [anon_sym_bit_DASHshl2] = ACTIONS(2381), + [anon_sym_bit_DASHshr2] = ACTIONS(2381), + [anon_sym_bit_DASHand2] = ACTIONS(2381), + [anon_sym_bit_DASHxor2] = ACTIONS(2381), + [anon_sym_bit_DASHor2] = ACTIONS(2381), + [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(2381), + [anon_sym_out_GT_GT] = ACTIONS(2381), + [anon_sym_e_GT_GT] = ACTIONS(2381), + [anon_sym_o_GT_GT] = ACTIONS(2381), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2381), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2381), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2381), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2381), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1020)] = { - [aux_sym__repeat_newline] = STATE(985), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1020), - [anon_sym_in] = ACTIONS(2302), - [sym__newline] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_PIPE] = ACTIONS(2302), - [anon_sym_err_GT_PIPE] = ACTIONS(2302), - [anon_sym_out_GT_PIPE] = ACTIONS(2302), - [anon_sym_e_GT_PIPE] = ACTIONS(2302), - [anon_sym_o_GT_PIPE] = ACTIONS(2302), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2302), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2302), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2302), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2302), - [anon_sym_RPAREN] = ACTIONS(2302), - [anon_sym_GT2] = ACTIONS(2304), - [anon_sym_DASH2] = ACTIONS(2302), - [anon_sym_LBRACE] = ACTIONS(2302), - [anon_sym_STAR2] = ACTIONS(2304), - [anon_sym_and2] = ACTIONS(2302), - [anon_sym_xor2] = ACTIONS(2302), - [anon_sym_or2] = ACTIONS(2302), - [anon_sym_not_DASHin2] = ACTIONS(2302), - [anon_sym_has2] = ACTIONS(2302), - [anon_sym_not_DASHhas2] = ACTIONS(2302), - [anon_sym_starts_DASHwith2] = ACTIONS(2302), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2302), - [anon_sym_ends_DASHwith2] = ACTIONS(2302), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2302), - [anon_sym_EQ_EQ2] = ACTIONS(2302), - [anon_sym_BANG_EQ2] = ACTIONS(2302), - [anon_sym_LT2] = ACTIONS(2304), - [anon_sym_LT_EQ2] = ACTIONS(2302), - [anon_sym_GT_EQ2] = ACTIONS(2302), - [anon_sym_EQ_TILDE2] = ACTIONS(2302), - [anon_sym_BANG_TILDE2] = ACTIONS(2302), - [anon_sym_like2] = ACTIONS(2302), - [anon_sym_not_DASHlike2] = ACTIONS(2302), - [anon_sym_STAR_STAR2] = ACTIONS(2302), - [anon_sym_PLUS_PLUS2] = ACTIONS(2302), - [anon_sym_SLASH2] = ACTIONS(2304), - [anon_sym_mod2] = ACTIONS(2302), - [anon_sym_SLASH_SLASH2] = ACTIONS(2302), - [anon_sym_PLUS2] = ACTIONS(2304), - [anon_sym_bit_DASHshl2] = ACTIONS(2302), - [anon_sym_bit_DASHshr2] = ACTIONS(2302), - [anon_sym_bit_DASHand2] = ACTIONS(2302), - [anon_sym_bit_DASHxor2] = ACTIONS(2302), - [anon_sym_bit_DASHor2] = ACTIONS(2302), - [anon_sym_err_GT] = ACTIONS(2304), - [anon_sym_out_GT] = ACTIONS(2304), - [anon_sym_e_GT] = ACTIONS(2304), - [anon_sym_o_GT] = ACTIONS(2304), - [anon_sym_err_PLUSout_GT] = ACTIONS(2304), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2304), - [anon_sym_o_PLUSe_GT] = ACTIONS(2304), - [anon_sym_e_PLUSo_GT] = ACTIONS(2304), - [anon_sym_err_GT_GT] = ACTIONS(2302), - [anon_sym_out_GT_GT] = ACTIONS(2302), - [anon_sym_e_GT_GT] = ACTIONS(2302), - [anon_sym_o_GT_GT] = ACTIONS(2302), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2302), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2302), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2302), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2302), + [anon_sym_in] = ACTIONS(2676), + [sym__newline] = ACTIONS(2676), + [anon_sym_SEMI] = ACTIONS(2676), + [anon_sym_PIPE] = ACTIONS(2676), + [anon_sym_err_GT_PIPE] = ACTIONS(2676), + [anon_sym_out_GT_PIPE] = ACTIONS(2676), + [anon_sym_e_GT_PIPE] = ACTIONS(2676), + [anon_sym_o_GT_PIPE] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2676), + [anon_sym_RPAREN] = ACTIONS(2676), + [anon_sym_GT2] = ACTIONS(2678), + [anon_sym_DASH2] = ACTIONS(2676), + [anon_sym_LBRACE] = ACTIONS(2676), + [anon_sym_STAR2] = ACTIONS(2678), + [anon_sym_and2] = ACTIONS(2676), + [anon_sym_xor2] = ACTIONS(2676), + [anon_sym_or2] = ACTIONS(2676), + [anon_sym_not_DASHin2] = ACTIONS(2676), + [anon_sym_has2] = ACTIONS(2676), + [anon_sym_not_DASHhas2] = ACTIONS(2676), + [anon_sym_starts_DASHwith2] = ACTIONS(2676), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2676), + [anon_sym_ends_DASHwith2] = ACTIONS(2676), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2676), + [anon_sym_EQ_EQ2] = ACTIONS(2676), + [anon_sym_BANG_EQ2] = ACTIONS(2676), + [anon_sym_LT2] = ACTIONS(2678), + [anon_sym_LT_EQ2] = ACTIONS(2676), + [anon_sym_GT_EQ2] = ACTIONS(2676), + [anon_sym_EQ_TILDE2] = ACTIONS(2676), + [anon_sym_BANG_TILDE2] = ACTIONS(2676), + [anon_sym_like2] = ACTIONS(2676), + [anon_sym_not_DASHlike2] = ACTIONS(2676), + [anon_sym_STAR_STAR2] = ACTIONS(2676), + [anon_sym_PLUS_PLUS2] = ACTIONS(2676), + [anon_sym_SLASH2] = ACTIONS(2678), + [anon_sym_mod2] = ACTIONS(2676), + [anon_sym_SLASH_SLASH2] = ACTIONS(2676), + [anon_sym_PLUS2] = ACTIONS(2678), + [anon_sym_bit_DASHshl2] = ACTIONS(2676), + [anon_sym_bit_DASHshr2] = ACTIONS(2676), + [anon_sym_bit_DASHand2] = ACTIONS(2676), + [anon_sym_bit_DASHxor2] = ACTIONS(2676), + [anon_sym_bit_DASHor2] = ACTIONS(2676), + [anon_sym_err_GT] = ACTIONS(2678), + [anon_sym_out_GT] = ACTIONS(2678), + [anon_sym_e_GT] = ACTIONS(2678), + [anon_sym_o_GT] = ACTIONS(2678), + [anon_sym_err_PLUSout_GT] = ACTIONS(2678), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2678), + [anon_sym_o_PLUSe_GT] = ACTIONS(2678), + [anon_sym_e_PLUSo_GT] = ACTIONS(2678), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1021)] = { - [aux_sym__repeat_newline] = STATE(1070), + [aux_sym__repeat_newline] = STATE(1113), [sym_comment] = STATE(1021), - [anon_sym_in] = ACTIONS(2337), - [sym__newline] = ACTIONS(2337), - [anon_sym_SEMI] = ACTIONS(2337), - [anon_sym_PIPE] = ACTIONS(2337), - [anon_sym_err_GT_PIPE] = ACTIONS(2337), - [anon_sym_out_GT_PIPE] = ACTIONS(2337), - [anon_sym_e_GT_PIPE] = ACTIONS(2337), - [anon_sym_o_GT_PIPE] = ACTIONS(2337), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2337), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2337), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2337), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2337), - [anon_sym_RPAREN] = ACTIONS(2337), - [anon_sym_GT2] = ACTIONS(2339), - [anon_sym_DASH2] = ACTIONS(2337), - [anon_sym_LBRACE] = ACTIONS(2337), - [anon_sym_STAR2] = ACTIONS(2339), - [anon_sym_and2] = ACTIONS(2337), - [anon_sym_xor2] = ACTIONS(2337), - [anon_sym_or2] = ACTIONS(2337), - [anon_sym_not_DASHin2] = ACTIONS(2337), - [anon_sym_has2] = ACTIONS(2337), - [anon_sym_not_DASHhas2] = ACTIONS(2337), - [anon_sym_starts_DASHwith2] = ACTIONS(2337), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2337), - [anon_sym_ends_DASHwith2] = ACTIONS(2337), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2337), - [anon_sym_EQ_EQ2] = ACTIONS(2337), - [anon_sym_BANG_EQ2] = ACTIONS(2337), - [anon_sym_LT2] = ACTIONS(2339), - [anon_sym_LT_EQ2] = ACTIONS(2337), - [anon_sym_GT_EQ2] = ACTIONS(2337), - [anon_sym_EQ_TILDE2] = ACTIONS(2337), - [anon_sym_BANG_TILDE2] = ACTIONS(2337), - [anon_sym_like2] = ACTIONS(2337), - [anon_sym_not_DASHlike2] = ACTIONS(2337), - [anon_sym_STAR_STAR2] = ACTIONS(2337), - [anon_sym_PLUS_PLUS2] = ACTIONS(2337), - [anon_sym_SLASH2] = ACTIONS(2339), - [anon_sym_mod2] = ACTIONS(2337), - [anon_sym_SLASH_SLASH2] = ACTIONS(2337), - [anon_sym_PLUS2] = ACTIONS(2339), - [anon_sym_bit_DASHshl2] = ACTIONS(2337), - [anon_sym_bit_DASHshr2] = ACTIONS(2337), - [anon_sym_bit_DASHand2] = ACTIONS(2337), - [anon_sym_bit_DASHxor2] = ACTIONS(2337), - [anon_sym_bit_DASHor2] = ACTIONS(2337), - [anon_sym_err_GT] = ACTIONS(2339), - [anon_sym_out_GT] = ACTIONS(2339), - [anon_sym_e_GT] = ACTIONS(2339), - [anon_sym_o_GT] = ACTIONS(2339), - [anon_sym_err_PLUSout_GT] = ACTIONS(2339), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2339), - [anon_sym_o_PLUSe_GT] = ACTIONS(2339), - [anon_sym_e_PLUSo_GT] = ACTIONS(2339), - [anon_sym_err_GT_GT] = ACTIONS(2337), - [anon_sym_out_GT_GT] = ACTIONS(2337), - [anon_sym_e_GT_GT] = ACTIONS(2337), - [anon_sym_o_GT_GT] = ACTIONS(2337), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2337), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2337), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2337), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2337), + [anon_sym_in] = ACTIONS(2381), + [sym__newline] = ACTIONS(2381), + [anon_sym_SEMI] = ACTIONS(2381), + [anon_sym_PIPE] = ACTIONS(2381), + [anon_sym_err_GT_PIPE] = ACTIONS(2381), + [anon_sym_out_GT_PIPE] = ACTIONS(2381), + [anon_sym_e_GT_PIPE] = ACTIONS(2381), + [anon_sym_o_GT_PIPE] = ACTIONS(2381), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2381), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2381), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2381), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2381), + [anon_sym_RPAREN] = ACTIONS(2381), + [anon_sym_GT2] = ACTIONS(2383), + [anon_sym_DASH2] = ACTIONS(2381), + [anon_sym_LBRACE] = ACTIONS(2381), + [anon_sym_STAR2] = ACTIONS(2383), + [anon_sym_and2] = ACTIONS(2381), + [anon_sym_xor2] = ACTIONS(2381), + [anon_sym_or2] = ACTIONS(2381), + [anon_sym_not_DASHin2] = ACTIONS(2381), + [anon_sym_has2] = ACTIONS(2381), + [anon_sym_not_DASHhas2] = ACTIONS(2381), + [anon_sym_starts_DASHwith2] = ACTIONS(2381), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2381), + [anon_sym_ends_DASHwith2] = ACTIONS(2381), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2381), + [anon_sym_EQ_EQ2] = ACTIONS(2381), + [anon_sym_BANG_EQ2] = ACTIONS(2381), + [anon_sym_LT2] = ACTIONS(2383), + [anon_sym_LT_EQ2] = ACTIONS(2381), + [anon_sym_GT_EQ2] = ACTIONS(2381), + [anon_sym_EQ_TILDE2] = ACTIONS(2381), + [anon_sym_BANG_TILDE2] = ACTIONS(2381), + [anon_sym_like2] = ACTIONS(2381), + [anon_sym_not_DASHlike2] = ACTIONS(2381), + [anon_sym_STAR_STAR2] = ACTIONS(2381), + [anon_sym_PLUS_PLUS2] = ACTIONS(2381), + [anon_sym_SLASH2] = ACTIONS(2383), + [anon_sym_mod2] = ACTIONS(2381), + [anon_sym_SLASH_SLASH2] = ACTIONS(2381), + [anon_sym_PLUS2] = ACTIONS(2383), + [anon_sym_bit_DASHshl2] = ACTIONS(2381), + [anon_sym_bit_DASHshr2] = ACTIONS(2381), + [anon_sym_bit_DASHand2] = ACTIONS(2381), + [anon_sym_bit_DASHxor2] = ACTIONS(2381), + [anon_sym_bit_DASHor2] = ACTIONS(2381), + [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(2381), + [anon_sym_out_GT_GT] = ACTIONS(2381), + [anon_sym_e_GT_GT] = ACTIONS(2381), + [anon_sym_o_GT_GT] = ACTIONS(2381), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2381), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2381), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2381), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2381), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1022)] = { - [aux_sym__repeat_newline] = STATE(1073), [sym_comment] = STATE(1022), - [anon_sym_in] = ACTIONS(2337), - [sym__newline] = ACTIONS(2337), - [anon_sym_SEMI] = ACTIONS(2337), - [anon_sym_PIPE] = ACTIONS(2337), - [anon_sym_err_GT_PIPE] = ACTIONS(2337), - [anon_sym_out_GT_PIPE] = ACTIONS(2337), - [anon_sym_e_GT_PIPE] = ACTIONS(2337), - [anon_sym_o_GT_PIPE] = ACTIONS(2337), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2337), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2337), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2337), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2337), - [anon_sym_RPAREN] = ACTIONS(2337), - [anon_sym_GT2] = ACTIONS(2339), - [anon_sym_DASH2] = ACTIONS(2337), - [anon_sym_LBRACE] = ACTIONS(2337), - [anon_sym_STAR2] = ACTIONS(2339), - [anon_sym_and2] = ACTIONS(2337), - [anon_sym_xor2] = ACTIONS(2337), - [anon_sym_or2] = ACTIONS(2337), - [anon_sym_not_DASHin2] = ACTIONS(2337), - [anon_sym_has2] = ACTIONS(2337), - [anon_sym_not_DASHhas2] = ACTIONS(2337), - [anon_sym_starts_DASHwith2] = ACTIONS(2337), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2337), - [anon_sym_ends_DASHwith2] = ACTIONS(2337), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2337), - [anon_sym_EQ_EQ2] = ACTIONS(2337), - [anon_sym_BANG_EQ2] = ACTIONS(2337), - [anon_sym_LT2] = ACTIONS(2339), - [anon_sym_LT_EQ2] = ACTIONS(2337), - [anon_sym_GT_EQ2] = ACTIONS(2337), - [anon_sym_EQ_TILDE2] = ACTIONS(2337), - [anon_sym_BANG_TILDE2] = ACTIONS(2337), - [anon_sym_like2] = ACTIONS(2337), - [anon_sym_not_DASHlike2] = ACTIONS(2337), - [anon_sym_STAR_STAR2] = ACTIONS(2337), - [anon_sym_PLUS_PLUS2] = ACTIONS(2337), - [anon_sym_SLASH2] = ACTIONS(2339), - [anon_sym_mod2] = ACTIONS(2337), - [anon_sym_SLASH_SLASH2] = ACTIONS(2337), - [anon_sym_PLUS2] = ACTIONS(2339), - [anon_sym_bit_DASHshl2] = ACTIONS(2337), - [anon_sym_bit_DASHshr2] = ACTIONS(2337), - [anon_sym_bit_DASHand2] = ACTIONS(2337), - [anon_sym_bit_DASHxor2] = ACTIONS(2337), - [anon_sym_bit_DASHor2] = ACTIONS(2337), - [anon_sym_err_GT] = ACTIONS(2339), - [anon_sym_out_GT] = ACTIONS(2339), - [anon_sym_e_GT] = ACTIONS(2339), - [anon_sym_o_GT] = ACTIONS(2339), - [anon_sym_err_PLUSout_GT] = ACTIONS(2339), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2339), - [anon_sym_o_PLUSe_GT] = ACTIONS(2339), - [anon_sym_e_PLUSo_GT] = ACTIONS(2339), - [anon_sym_err_GT_GT] = ACTIONS(2337), - [anon_sym_out_GT_GT] = ACTIONS(2337), - [anon_sym_e_GT_GT] = ACTIONS(2337), - [anon_sym_o_GT_GT] = ACTIONS(2337), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2337), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2337), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2337), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2337), + [ts_builtin_sym_end] = ACTIONS(2572), + [anon_sym_in] = ACTIONS(2572), + [sym__newline] = ACTIONS(2572), + [anon_sym_SEMI] = ACTIONS(2572), + [anon_sym_PIPE] = ACTIONS(2572), + [anon_sym_err_GT_PIPE] = ACTIONS(2572), + [anon_sym_out_GT_PIPE] = ACTIONS(2572), + [anon_sym_e_GT_PIPE] = ACTIONS(2572), + [anon_sym_o_GT_PIPE] = ACTIONS(2572), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2572), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2572), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2572), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2572), + [anon_sym_GT2] = ACTIONS(2574), + [anon_sym_DASH2] = ACTIONS(2572), + [anon_sym_STAR2] = ACTIONS(2574), + [anon_sym_and2] = ACTIONS(2572), + [anon_sym_xor2] = ACTIONS(2572), + [anon_sym_or2] = ACTIONS(2572), + [anon_sym_not_DASHin2] = ACTIONS(2572), + [anon_sym_has2] = ACTIONS(2572), + [anon_sym_not_DASHhas2] = ACTIONS(2572), + [anon_sym_starts_DASHwith2] = ACTIONS(2572), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2572), + [anon_sym_ends_DASHwith2] = ACTIONS(2572), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2572), + [anon_sym_EQ_EQ2] = ACTIONS(2572), + [anon_sym_BANG_EQ2] = ACTIONS(2572), + [anon_sym_LT2] = ACTIONS(2574), + [anon_sym_LT_EQ2] = ACTIONS(2572), + [anon_sym_GT_EQ2] = ACTIONS(2572), + [anon_sym_EQ_TILDE2] = ACTIONS(2572), + [anon_sym_BANG_TILDE2] = ACTIONS(2572), + [anon_sym_like2] = ACTIONS(2572), + [anon_sym_not_DASHlike2] = ACTIONS(2572), + [anon_sym_LPAREN2] = ACTIONS(2576), + [anon_sym_STAR_STAR2] = ACTIONS(2572), + [anon_sym_PLUS_PLUS2] = ACTIONS(2572), + [anon_sym_SLASH2] = ACTIONS(2574), + [anon_sym_mod2] = ACTIONS(2572), + [anon_sym_SLASH_SLASH2] = ACTIONS(2572), + [anon_sym_PLUS2] = ACTIONS(2574), + [anon_sym_bit_DASHshl2] = ACTIONS(2572), + [anon_sym_bit_DASHshr2] = ACTIONS(2572), + [anon_sym_bit_DASHand2] = ACTIONS(2572), + [anon_sym_bit_DASHxor2] = ACTIONS(2572), + [anon_sym_bit_DASHor2] = ACTIONS(2572), + [anon_sym_err_GT] = ACTIONS(2574), + [anon_sym_out_GT] = ACTIONS(2574), + [anon_sym_e_GT] = ACTIONS(2574), + [anon_sym_o_GT] = ACTIONS(2574), + [anon_sym_err_PLUSout_GT] = ACTIONS(2574), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2574), + [anon_sym_o_PLUSe_GT] = ACTIONS(2574), + [anon_sym_e_PLUSo_GT] = ACTIONS(2574), + [anon_sym_err_GT_GT] = ACTIONS(2572), + [anon_sym_out_GT_GT] = ACTIONS(2572), + [anon_sym_e_GT_GT] = ACTIONS(2572), + [anon_sym_o_GT_GT] = ACTIONS(2572), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2572), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2572), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2572), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2572), + [sym__unquoted_pattern] = ACTIONS(1695), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1023)] = { - [aux_sym__repeat_newline] = STATE(1076), + [aux_sym__repeat_newline] = STATE(1116), [sym_comment] = STATE(1023), - [anon_sym_in] = ACTIONS(2337), - [sym__newline] = ACTIONS(2337), - [anon_sym_SEMI] = ACTIONS(2337), - [anon_sym_PIPE] = ACTIONS(2337), - [anon_sym_err_GT_PIPE] = ACTIONS(2337), - [anon_sym_out_GT_PIPE] = ACTIONS(2337), - [anon_sym_e_GT_PIPE] = ACTIONS(2337), - [anon_sym_o_GT_PIPE] = ACTIONS(2337), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2337), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2337), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2337), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2337), - [anon_sym_RPAREN] = ACTIONS(2337), - [anon_sym_GT2] = ACTIONS(2339), - [anon_sym_DASH2] = ACTIONS(2337), - [anon_sym_LBRACE] = ACTIONS(2337), - [anon_sym_STAR2] = ACTIONS(2339), - [anon_sym_and2] = ACTIONS(2337), - [anon_sym_xor2] = ACTIONS(2337), - [anon_sym_or2] = ACTIONS(2337), - [anon_sym_not_DASHin2] = ACTIONS(2337), - [anon_sym_has2] = ACTIONS(2337), - [anon_sym_not_DASHhas2] = ACTIONS(2337), - [anon_sym_starts_DASHwith2] = ACTIONS(2337), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2337), - [anon_sym_ends_DASHwith2] = ACTIONS(2337), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2337), - [anon_sym_EQ_EQ2] = ACTIONS(2337), - [anon_sym_BANG_EQ2] = ACTIONS(2337), - [anon_sym_LT2] = ACTIONS(2339), - [anon_sym_LT_EQ2] = ACTIONS(2337), - [anon_sym_GT_EQ2] = ACTIONS(2337), - [anon_sym_EQ_TILDE2] = ACTIONS(2337), - [anon_sym_BANG_TILDE2] = ACTIONS(2337), - [anon_sym_like2] = ACTIONS(2337), - [anon_sym_not_DASHlike2] = ACTIONS(2337), - [anon_sym_STAR_STAR2] = ACTIONS(2337), - [anon_sym_PLUS_PLUS2] = ACTIONS(2337), - [anon_sym_SLASH2] = ACTIONS(2339), - [anon_sym_mod2] = ACTIONS(2337), - [anon_sym_SLASH_SLASH2] = ACTIONS(2337), - [anon_sym_PLUS2] = ACTIONS(2339), - [anon_sym_bit_DASHshl2] = ACTIONS(2337), - [anon_sym_bit_DASHshr2] = ACTIONS(2337), - [anon_sym_bit_DASHand2] = ACTIONS(2337), - [anon_sym_bit_DASHxor2] = ACTIONS(2337), - [anon_sym_bit_DASHor2] = ACTIONS(2337), - [anon_sym_err_GT] = ACTIONS(2339), - [anon_sym_out_GT] = ACTIONS(2339), - [anon_sym_e_GT] = ACTIONS(2339), - [anon_sym_o_GT] = ACTIONS(2339), - [anon_sym_err_PLUSout_GT] = ACTIONS(2339), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2339), - [anon_sym_o_PLUSe_GT] = ACTIONS(2339), - [anon_sym_e_PLUSo_GT] = ACTIONS(2339), - [anon_sym_err_GT_GT] = ACTIONS(2337), - [anon_sym_out_GT_GT] = ACTIONS(2337), - [anon_sym_e_GT_GT] = ACTIONS(2337), - [anon_sym_o_GT_GT] = ACTIONS(2337), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2337), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2337), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2337), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2337), + [anon_sym_in] = ACTIONS(2381), + [sym__newline] = ACTIONS(2381), + [anon_sym_SEMI] = ACTIONS(2381), + [anon_sym_PIPE] = ACTIONS(2381), + [anon_sym_err_GT_PIPE] = ACTIONS(2381), + [anon_sym_out_GT_PIPE] = ACTIONS(2381), + [anon_sym_e_GT_PIPE] = ACTIONS(2381), + [anon_sym_o_GT_PIPE] = ACTIONS(2381), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2381), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2381), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2381), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2381), + [anon_sym_RPAREN] = ACTIONS(2381), + [anon_sym_GT2] = ACTIONS(2383), + [anon_sym_DASH2] = ACTIONS(2381), + [anon_sym_LBRACE] = ACTIONS(2381), + [anon_sym_STAR2] = ACTIONS(2383), + [anon_sym_and2] = ACTIONS(2381), + [anon_sym_xor2] = ACTIONS(2381), + [anon_sym_or2] = ACTIONS(2381), + [anon_sym_not_DASHin2] = ACTIONS(2381), + [anon_sym_has2] = ACTIONS(2381), + [anon_sym_not_DASHhas2] = ACTIONS(2381), + [anon_sym_starts_DASHwith2] = ACTIONS(2381), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2381), + [anon_sym_ends_DASHwith2] = ACTIONS(2381), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2381), + [anon_sym_EQ_EQ2] = ACTIONS(2381), + [anon_sym_BANG_EQ2] = ACTIONS(2381), + [anon_sym_LT2] = ACTIONS(2383), + [anon_sym_LT_EQ2] = ACTIONS(2381), + [anon_sym_GT_EQ2] = ACTIONS(2381), + [anon_sym_EQ_TILDE2] = ACTIONS(2381), + [anon_sym_BANG_TILDE2] = ACTIONS(2381), + [anon_sym_like2] = ACTIONS(2381), + [anon_sym_not_DASHlike2] = ACTIONS(2381), + [anon_sym_STAR_STAR2] = ACTIONS(2381), + [anon_sym_PLUS_PLUS2] = ACTIONS(2381), + [anon_sym_SLASH2] = ACTIONS(2383), + [anon_sym_mod2] = ACTIONS(2381), + [anon_sym_SLASH_SLASH2] = ACTIONS(2381), + [anon_sym_PLUS2] = ACTIONS(2383), + [anon_sym_bit_DASHshl2] = ACTIONS(2381), + [anon_sym_bit_DASHshr2] = ACTIONS(2381), + [anon_sym_bit_DASHand2] = ACTIONS(2381), + [anon_sym_bit_DASHxor2] = ACTIONS(2381), + [anon_sym_bit_DASHor2] = ACTIONS(2381), + [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(2381), + [anon_sym_out_GT_GT] = ACTIONS(2381), + [anon_sym_e_GT_GT] = ACTIONS(2381), + [anon_sym_o_GT_GT] = ACTIONS(2381), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2381), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2381), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2381), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2381), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1024)] = { + [aux_sym__repeat_newline] = STATE(1039), [sym_comment] = STATE(1024), - [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(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), - [sym__unquoted_pattern] = ACTIONS(2527), + [anon_sym_in] = ACTIONS(2346), + [sym__newline] = ACTIONS(2346), + [anon_sym_SEMI] = 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_RPAREN] = ACTIONS(2346), + [anon_sym_GT2] = ACTIONS(2348), + [anon_sym_DASH2] = ACTIONS(2346), + [anon_sym_LBRACE] = ACTIONS(2346), + [anon_sym_STAR2] = ACTIONS(2348), + [anon_sym_and2] = ACTIONS(2346), + [anon_sym_xor2] = ACTIONS(2346), + [anon_sym_or2] = ACTIONS(2346), + [anon_sym_not_DASHin2] = ACTIONS(2346), + [anon_sym_has2] = ACTIONS(2346), + [anon_sym_not_DASHhas2] = ACTIONS(2346), + [anon_sym_starts_DASHwith2] = ACTIONS(2346), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2346), + [anon_sym_ends_DASHwith2] = ACTIONS(2346), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2346), + [anon_sym_EQ_EQ2] = ACTIONS(2346), + [anon_sym_BANG_EQ2] = ACTIONS(2346), + [anon_sym_LT2] = ACTIONS(2348), + [anon_sym_LT_EQ2] = ACTIONS(2346), + [anon_sym_GT_EQ2] = ACTIONS(2346), + [anon_sym_EQ_TILDE2] = ACTIONS(2346), + [anon_sym_BANG_TILDE2] = ACTIONS(2346), + [anon_sym_like2] = ACTIONS(2346), + [anon_sym_not_DASHlike2] = ACTIONS(2346), + [anon_sym_STAR_STAR2] = ACTIONS(2346), + [anon_sym_PLUS_PLUS2] = ACTIONS(2346), + [anon_sym_SLASH2] = ACTIONS(2348), + [anon_sym_mod2] = ACTIONS(2346), + [anon_sym_SLASH_SLASH2] = ACTIONS(2346), + [anon_sym_PLUS2] = ACTIONS(2348), + [anon_sym_bit_DASHshl2] = ACTIONS(2346), + [anon_sym_bit_DASHshr2] = ACTIONS(2346), + [anon_sym_bit_DASHand2] = ACTIONS(2346), + [anon_sym_bit_DASHxor2] = ACTIONS(2346), + [anon_sym_bit_DASHor2] = ACTIONS(2346), + [anon_sym_err_GT] = ACTIONS(2348), + [anon_sym_out_GT] = ACTIONS(2348), + [anon_sym_e_GT] = ACTIONS(2348), + [anon_sym_o_GT] = ACTIONS(2348), + [anon_sym_err_PLUSout_GT] = ACTIONS(2348), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2348), + [anon_sym_o_PLUSe_GT] = ACTIONS(2348), + [anon_sym_e_PLUSo_GT] = ACTIONS(2348), + [anon_sym_err_GT_GT] = ACTIONS(2346), + [anon_sym_out_GT_GT] = ACTIONS(2346), + [anon_sym_e_GT_GT] = ACTIONS(2346), + [anon_sym_o_GT_GT] = ACTIONS(2346), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2346), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2346), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2346), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2346), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1025)] = { + [aux_sym__repeat_newline] = STATE(1118), [sym_comment] = STATE(1025), - [ts_builtin_sym_end] = ACTIONS(2648), - [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_GT2] = ACTIONS(2650), - [anon_sym_DASH2] = 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_LPAREN2] = ACTIONS(2652), - [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), - [sym__unquoted_pattern] = ACTIONS(2654), + [anon_sym_in] = ACTIONS(2381), + [sym__newline] = ACTIONS(2381), + [anon_sym_SEMI] = ACTIONS(2381), + [anon_sym_PIPE] = ACTIONS(2381), + [anon_sym_err_GT_PIPE] = ACTIONS(2381), + [anon_sym_out_GT_PIPE] = ACTIONS(2381), + [anon_sym_e_GT_PIPE] = ACTIONS(2381), + [anon_sym_o_GT_PIPE] = ACTIONS(2381), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2381), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2381), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2381), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2381), + [anon_sym_RPAREN] = ACTIONS(2381), + [anon_sym_GT2] = ACTIONS(2383), + [anon_sym_DASH2] = ACTIONS(2381), + [anon_sym_LBRACE] = ACTIONS(2381), + [anon_sym_STAR2] = ACTIONS(2383), + [anon_sym_and2] = ACTIONS(2381), + [anon_sym_xor2] = ACTIONS(2381), + [anon_sym_or2] = ACTIONS(2381), + [anon_sym_not_DASHin2] = ACTIONS(2381), + [anon_sym_has2] = ACTIONS(2381), + [anon_sym_not_DASHhas2] = ACTIONS(2381), + [anon_sym_starts_DASHwith2] = ACTIONS(2381), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2381), + [anon_sym_ends_DASHwith2] = ACTIONS(2381), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2381), + [anon_sym_EQ_EQ2] = ACTIONS(2381), + [anon_sym_BANG_EQ2] = ACTIONS(2381), + [anon_sym_LT2] = ACTIONS(2383), + [anon_sym_LT_EQ2] = ACTIONS(2381), + [anon_sym_GT_EQ2] = ACTIONS(2381), + [anon_sym_EQ_TILDE2] = ACTIONS(2381), + [anon_sym_BANG_TILDE2] = ACTIONS(2381), + [anon_sym_like2] = ACTIONS(2381), + [anon_sym_not_DASHlike2] = ACTIONS(2381), + [anon_sym_STAR_STAR2] = ACTIONS(2381), + [anon_sym_PLUS_PLUS2] = ACTIONS(2381), + [anon_sym_SLASH2] = ACTIONS(2383), + [anon_sym_mod2] = ACTIONS(2381), + [anon_sym_SLASH_SLASH2] = ACTIONS(2381), + [anon_sym_PLUS2] = ACTIONS(2383), + [anon_sym_bit_DASHshl2] = ACTIONS(2381), + [anon_sym_bit_DASHshr2] = ACTIONS(2381), + [anon_sym_bit_DASHand2] = ACTIONS(2381), + [anon_sym_bit_DASHxor2] = ACTIONS(2381), + [anon_sym_bit_DASHor2] = ACTIONS(2381), + [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(2381), + [anon_sym_out_GT_GT] = ACTIONS(2381), + [anon_sym_e_GT_GT] = ACTIONS(2381), + [anon_sym_o_GT_GT] = ACTIONS(2381), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2381), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2381), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2381), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2381), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1026)] = { - [aux_sym__repeat_newline] = STATE(1078), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1026), - [anon_sym_in] = ACTIONS(2337), - [sym__newline] = ACTIONS(2337), - [anon_sym_SEMI] = ACTIONS(2337), - [anon_sym_PIPE] = ACTIONS(2337), - [anon_sym_err_GT_PIPE] = ACTIONS(2337), - [anon_sym_out_GT_PIPE] = ACTIONS(2337), - [anon_sym_e_GT_PIPE] = ACTIONS(2337), - [anon_sym_o_GT_PIPE] = ACTIONS(2337), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2337), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2337), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2337), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2337), - [anon_sym_RPAREN] = ACTIONS(2337), - [anon_sym_GT2] = ACTIONS(2339), - [anon_sym_DASH2] = ACTIONS(2337), - [anon_sym_LBRACE] = ACTIONS(2337), - [anon_sym_STAR2] = ACTIONS(2339), - [anon_sym_and2] = ACTIONS(2337), - [anon_sym_xor2] = ACTIONS(2337), - [anon_sym_or2] = ACTIONS(2337), - [anon_sym_not_DASHin2] = ACTIONS(2337), - [anon_sym_has2] = ACTIONS(2337), - [anon_sym_not_DASHhas2] = ACTIONS(2337), - [anon_sym_starts_DASHwith2] = ACTIONS(2337), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2337), - [anon_sym_ends_DASHwith2] = ACTIONS(2337), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2337), - [anon_sym_EQ_EQ2] = ACTIONS(2337), - [anon_sym_BANG_EQ2] = ACTIONS(2337), - [anon_sym_LT2] = ACTIONS(2339), - [anon_sym_LT_EQ2] = ACTIONS(2337), - [anon_sym_GT_EQ2] = ACTIONS(2337), - [anon_sym_EQ_TILDE2] = ACTIONS(2337), - [anon_sym_BANG_TILDE2] = ACTIONS(2337), - [anon_sym_like2] = ACTIONS(2337), - [anon_sym_not_DASHlike2] = ACTIONS(2337), - [anon_sym_STAR_STAR2] = ACTIONS(2337), - [anon_sym_PLUS_PLUS2] = ACTIONS(2337), - [anon_sym_SLASH2] = ACTIONS(2339), - [anon_sym_mod2] = ACTIONS(2337), - [anon_sym_SLASH_SLASH2] = ACTIONS(2337), - [anon_sym_PLUS2] = ACTIONS(2339), - [anon_sym_bit_DASHshl2] = ACTIONS(2337), - [anon_sym_bit_DASHshr2] = ACTIONS(2337), - [anon_sym_bit_DASHand2] = ACTIONS(2337), - [anon_sym_bit_DASHxor2] = ACTIONS(2337), - [anon_sym_bit_DASHor2] = ACTIONS(2337), - [anon_sym_err_GT] = ACTIONS(2339), - [anon_sym_out_GT] = ACTIONS(2339), - [anon_sym_e_GT] = ACTIONS(2339), - [anon_sym_o_GT] = ACTIONS(2339), - [anon_sym_err_PLUSout_GT] = ACTIONS(2339), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2339), - [anon_sym_o_PLUSe_GT] = ACTIONS(2339), - [anon_sym_e_PLUSo_GT] = ACTIONS(2339), - [anon_sym_err_GT_GT] = ACTIONS(2337), - [anon_sym_out_GT_GT] = ACTIONS(2337), - [anon_sym_e_GT_GT] = ACTIONS(2337), - [anon_sym_o_GT_GT] = ACTIONS(2337), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2337), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2337), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2337), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2337), + [anon_sym_in] = ACTIONS(2676), + [sym__newline] = ACTIONS(2676), + [anon_sym_SEMI] = ACTIONS(2676), + [anon_sym_PIPE] = ACTIONS(2676), + [anon_sym_err_GT_PIPE] = ACTIONS(2676), + [anon_sym_out_GT_PIPE] = ACTIONS(2676), + [anon_sym_e_GT_PIPE] = ACTIONS(2676), + [anon_sym_o_GT_PIPE] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2676), + [anon_sym_RPAREN] = ACTIONS(2676), + [anon_sym_GT2] = ACTIONS(2678), + [anon_sym_DASH2] = ACTIONS(2676), + [anon_sym_LBRACE] = ACTIONS(2676), + [anon_sym_STAR2] = ACTIONS(2678), + [anon_sym_and2] = ACTIONS(2676), + [anon_sym_xor2] = ACTIONS(2676), + [anon_sym_or2] = ACTIONS(2676), + [anon_sym_not_DASHin2] = ACTIONS(2676), + [anon_sym_has2] = ACTIONS(2676), + [anon_sym_not_DASHhas2] = ACTIONS(2676), + [anon_sym_starts_DASHwith2] = ACTIONS(2676), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2676), + [anon_sym_ends_DASHwith2] = ACTIONS(2676), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2676), + [anon_sym_EQ_EQ2] = ACTIONS(2676), + [anon_sym_BANG_EQ2] = ACTIONS(2676), + [anon_sym_LT2] = ACTIONS(2678), + [anon_sym_LT_EQ2] = ACTIONS(2676), + [anon_sym_GT_EQ2] = ACTIONS(2676), + [anon_sym_EQ_TILDE2] = ACTIONS(2676), + [anon_sym_BANG_TILDE2] = ACTIONS(2676), + [anon_sym_like2] = ACTIONS(2676), + [anon_sym_not_DASHlike2] = ACTIONS(2676), + [anon_sym_STAR_STAR2] = ACTIONS(2676), + [anon_sym_PLUS_PLUS2] = ACTIONS(2676), + [anon_sym_SLASH2] = ACTIONS(2678), + [anon_sym_mod2] = ACTIONS(2676), + [anon_sym_SLASH_SLASH2] = ACTIONS(2676), + [anon_sym_PLUS2] = ACTIONS(2678), + [anon_sym_bit_DASHshl2] = ACTIONS(2676), + [anon_sym_bit_DASHshr2] = ACTIONS(2676), + [anon_sym_bit_DASHand2] = ACTIONS(2676), + [anon_sym_bit_DASHxor2] = ACTIONS(2676), + [anon_sym_bit_DASHor2] = ACTIONS(2676), + [anon_sym_err_GT] = ACTIONS(2678), + [anon_sym_out_GT] = ACTIONS(2678), + [anon_sym_e_GT] = ACTIONS(2678), + [anon_sym_o_GT] = ACTIONS(2678), + [anon_sym_err_PLUSout_GT] = ACTIONS(2678), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2678), + [anon_sym_o_PLUSe_GT] = ACTIONS(2678), + [anon_sym_e_PLUSo_GT] = ACTIONS(2678), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1027)] = { + [aux_sym__repeat_newline] = STATE(1040), [sym_comment] = STATE(1027), - [ts_builtin_sym_end] = ACTIONS(1713), - [anon_sym_in] = ACTIONS(1713), - [sym__newline] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1713), - [anon_sym_err_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_GT_PIPE] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), - [anon_sym_GT2] = ACTIONS(1614), - [anon_sym_DASH2] = ACTIONS(1713), - [anon_sym_STAR2] = ACTIONS(1614), - [anon_sym_and2] = ACTIONS(1713), - [anon_sym_xor2] = ACTIONS(1713), - [anon_sym_or2] = ACTIONS(1713), - [anon_sym_not_DASHin2] = ACTIONS(1713), - [anon_sym_has2] = ACTIONS(1713), - [anon_sym_not_DASHhas2] = ACTIONS(1713), - [anon_sym_starts_DASHwith2] = ACTIONS(1713), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1713), - [anon_sym_ends_DASHwith2] = ACTIONS(1713), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1713), - [anon_sym_EQ_EQ2] = ACTIONS(1713), - [anon_sym_BANG_EQ2] = ACTIONS(1713), - [anon_sym_LT2] = ACTIONS(1614), - [anon_sym_LT_EQ2] = ACTIONS(1713), - [anon_sym_GT_EQ2] = ACTIONS(1713), - [anon_sym_EQ_TILDE2] = ACTIONS(1713), - [anon_sym_BANG_TILDE2] = ACTIONS(1713), - [anon_sym_like2] = ACTIONS(1713), - [anon_sym_not_DASHlike2] = ACTIONS(1713), - [anon_sym_LPAREN2] = ACTIONS(2612), - [anon_sym_STAR_STAR2] = ACTIONS(1713), - [anon_sym_PLUS_PLUS2] = ACTIONS(1713), - [anon_sym_SLASH2] = ACTIONS(1614), - [anon_sym_mod2] = ACTIONS(1713), - [anon_sym_SLASH_SLASH2] = ACTIONS(1713), - [anon_sym_PLUS2] = ACTIONS(1614), - [anon_sym_bit_DASHshl2] = ACTIONS(1713), - [anon_sym_bit_DASHshr2] = ACTIONS(1713), - [anon_sym_bit_DASHand2] = ACTIONS(1713), - [anon_sym_bit_DASHxor2] = ACTIONS(1713), - [anon_sym_bit_DASHor2] = ACTIONS(1713), - [anon_sym_err_GT] = ACTIONS(1614), - [anon_sym_out_GT] = ACTIONS(1614), - [anon_sym_e_GT] = ACTIONS(1614), - [anon_sym_o_GT] = ACTIONS(1614), - [anon_sym_err_PLUSout_GT] = ACTIONS(1614), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1614), - [anon_sym_o_PLUSe_GT] = ACTIONS(1614), - [anon_sym_e_PLUSo_GT] = ACTIONS(1614), - [anon_sym_err_GT_GT] = ACTIONS(1713), - [anon_sym_out_GT_GT] = ACTIONS(1713), - [anon_sym_e_GT_GT] = ACTIONS(1713), - [anon_sym_o_GT_GT] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), - [sym__unquoted_pattern] = ACTIONS(2614), + [anon_sym_in] = ACTIONS(2346), + [sym__newline] = ACTIONS(2346), + [anon_sym_SEMI] = 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_RPAREN] = ACTIONS(2346), + [anon_sym_GT2] = ACTIONS(2348), + [anon_sym_DASH2] = ACTIONS(2346), + [anon_sym_LBRACE] = ACTIONS(2346), + [anon_sym_STAR2] = ACTIONS(2348), + [anon_sym_and2] = ACTIONS(2346), + [anon_sym_xor2] = ACTIONS(2346), + [anon_sym_or2] = ACTIONS(2346), + [anon_sym_not_DASHin2] = ACTIONS(2346), + [anon_sym_has2] = ACTIONS(2346), + [anon_sym_not_DASHhas2] = ACTIONS(2346), + [anon_sym_starts_DASHwith2] = ACTIONS(2346), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2346), + [anon_sym_ends_DASHwith2] = ACTIONS(2346), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2346), + [anon_sym_EQ_EQ2] = ACTIONS(2346), + [anon_sym_BANG_EQ2] = ACTIONS(2346), + [anon_sym_LT2] = ACTIONS(2348), + [anon_sym_LT_EQ2] = ACTIONS(2346), + [anon_sym_GT_EQ2] = ACTIONS(2346), + [anon_sym_EQ_TILDE2] = ACTIONS(2346), + [anon_sym_BANG_TILDE2] = ACTIONS(2346), + [anon_sym_like2] = ACTIONS(2346), + [anon_sym_not_DASHlike2] = ACTIONS(2346), + [anon_sym_STAR_STAR2] = ACTIONS(2346), + [anon_sym_PLUS_PLUS2] = ACTIONS(2346), + [anon_sym_SLASH2] = ACTIONS(2348), + [anon_sym_mod2] = ACTIONS(2346), + [anon_sym_SLASH_SLASH2] = ACTIONS(2346), + [anon_sym_PLUS2] = ACTIONS(2348), + [anon_sym_bit_DASHshl2] = ACTIONS(2346), + [anon_sym_bit_DASHshr2] = ACTIONS(2346), + [anon_sym_bit_DASHand2] = ACTIONS(2346), + [anon_sym_bit_DASHxor2] = ACTIONS(2346), + [anon_sym_bit_DASHor2] = ACTIONS(2346), + [anon_sym_err_GT] = ACTIONS(2348), + [anon_sym_out_GT] = ACTIONS(2348), + [anon_sym_e_GT] = ACTIONS(2348), + [anon_sym_o_GT] = ACTIONS(2348), + [anon_sym_err_PLUSout_GT] = ACTIONS(2348), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2348), + [anon_sym_o_PLUSe_GT] = ACTIONS(2348), + [anon_sym_e_PLUSo_GT] = ACTIONS(2348), + [anon_sym_err_GT_GT] = ACTIONS(2346), + [anon_sym_out_GT_GT] = ACTIONS(2346), + [anon_sym_e_GT_GT] = ACTIONS(2346), + [anon_sym_o_GT_GT] = ACTIONS(2346), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2346), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2346), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2346), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2346), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1028)] = { - [aux_sym__repeat_newline] = STATE(4207), - [sym__match_pattern_expression] = STATE(4432), - [sym__match_pattern_value] = STATE(4736), - [sym__match_pattern_list_body] = STATE(4697), - [sym__match_pattern_list] = STATE(4737), - [sym__match_pattern_rest] = STATE(5356), - [sym__match_pattern_record] = STATE(4742), - [sym_expr_parenthesized] = STATE(4040), - [sym_val_range] = STATE(4736), - [sym__val_range] = STATE(5140), - [sym_val_nothing] = STATE(4742), - [sym_val_bool] = STATE(4490), - [sym_val_variable] = STATE(4041), - [sym_val_number] = STATE(4742), - [sym__val_number_decimal] = STATE(3727), - [sym__val_number] = STATE(4386), - [sym_val_duration] = STATE(4742), - [sym_val_filesize] = STATE(4742), - [sym_val_binary] = STATE(4742), - [sym_val_string] = STATE(4742), - [sym__raw_str] = STATE(3665), - [sym__str_double_quotes] = STATE(3665), - [sym__str_single_quotes] = STATE(3665), - [sym__str_back_ticks] = STATE(3665), - [sym_val_list] = STATE(5146), - [sym__table_head] = STATE(3882), - [sym_val_table] = STATE(4742), - [sym__unquoted_in_list] = STATE(4432), - [sym__unquoted_anonymous_prefix] = STATE(5140), [sym_comment] = STATE(1028), - [aux_sym__types_body_repeat1] = STATE(1402), - [aux_sym_parameter_repeat2] = STATE(4158), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1433), - [anon_sym_true] = ACTIONS(1384), - [anon_sym_false] = ACTIONS(1384), - [anon_sym_null] = ACTIONS(1386), - [aux_sym_cmd_identifier_token3] = ACTIONS(1388), - [aux_sym_cmd_identifier_token4] = ACTIONS(1388), - [aux_sym_cmd_identifier_token5] = ACTIONS(1388), - [sym__newline] = ACTIONS(2668), - [anon_sym_LBRACK] = ACTIONS(2670), - [anon_sym_RBRACK] = ACTIONS(2728), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1398), - [anon_sym_DOLLAR] = ACTIONS(2674), - [anon_sym_LBRACE] = ACTIONS(2676), - [anon_sym_DOT_DOT] = ACTIONS(1404), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1406), - [anon_sym_DOT_DOT_LT] = ACTIONS(1406), - [aux_sym__val_number_decimal_token1] = ACTIONS(1408), - [aux_sym__val_number_decimal_token2] = ACTIONS(1410), - [aux_sym__val_number_decimal_token3] = ACTIONS(1412), - [aux_sym__val_number_decimal_token4] = ACTIONS(1412), - [aux_sym__val_number_token1] = ACTIONS(1414), - [aux_sym__val_number_token2] = ACTIONS(1414), - [aux_sym__val_number_token3] = ACTIONS(1414), - [anon_sym_0b] = ACTIONS(1416), - [anon_sym_0o] = ACTIONS(1418), - [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(2680), - [anon_sym_DQUOTE] = ACTIONS(1422), - [anon_sym_SQUOTE] = ACTIONS(1424), - [anon_sym_BQUOTE] = ACTIONS(1426), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1436), + [aux_sym_cmd_identifier_token2] = ACTIONS(2754), + [anon_sym_in] = ACTIONS(847), + [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(847), + [anon_sym_DASH2] = ACTIONS(847), + [anon_sym_RBRACE] = ACTIONS(968), + [anon_sym_STAR2] = ACTIONS(847), + [anon_sym_and2] = ACTIONS(847), + [anon_sym_xor2] = ACTIONS(847), + [anon_sym_or2] = ACTIONS(847), + [anon_sym_not_DASHin2] = ACTIONS(847), + [anon_sym_has2] = ACTIONS(847), + [anon_sym_not_DASHhas2] = ACTIONS(847), + [anon_sym_starts_DASHwith2] = ACTIONS(847), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(847), + [anon_sym_ends_DASHwith2] = ACTIONS(847), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(847), + [anon_sym_EQ_EQ2] = ACTIONS(968), + [anon_sym_BANG_EQ2] = ACTIONS(968), + [anon_sym_LT2] = ACTIONS(847), + [anon_sym_LT_EQ2] = ACTIONS(968), + [anon_sym_GT_EQ2] = ACTIONS(968), + [anon_sym_EQ_TILDE2] = ACTIONS(968), + [anon_sym_BANG_TILDE2] = ACTIONS(847), + [anon_sym_like2] = ACTIONS(847), + [anon_sym_not_DASHlike2] = ACTIONS(847), + [anon_sym_STAR_STAR2] = ACTIONS(847), + [anon_sym_PLUS_PLUS2] = ACTIONS(847), + [anon_sym_SLASH2] = ACTIONS(847), + [anon_sym_mod2] = ACTIONS(847), + [anon_sym_SLASH_SLASH2] = ACTIONS(847), + [anon_sym_PLUS2] = ACTIONS(847), + [anon_sym_bit_DASHshl2] = ACTIONS(847), + [anon_sym_bit_DASHshr2] = ACTIONS(847), + [anon_sym_bit_DASHand2] = ACTIONS(847), + [anon_sym_bit_DASHxor2] = ACTIONS(847), + [anon_sym_bit_DASHor2] = ACTIONS(847), + [anon_sym_COLON2] = ACTIONS(968), + [anon_sym_err_GT] = ACTIONS(847), + [anon_sym_out_GT] = ACTIONS(847), + [anon_sym_e_GT] = ACTIONS(847), + [anon_sym_o_GT] = ACTIONS(847), + [anon_sym_err_PLUSout_GT] = ACTIONS(847), + [anon_sym_out_PLUSerr_GT] = ACTIONS(847), + [anon_sym_o_PLUSe_GT] = ACTIONS(847), + [anon_sym_e_PLUSo_GT] = ACTIONS(847), + [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(1029)] = { - [aux_sym__repeat_newline] = STATE(1081), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1029), - [anon_sym_in] = ACTIONS(2730), - [sym__newline] = ACTIONS(2730), - [anon_sym_SEMI] = ACTIONS(2730), - [anon_sym_PIPE] = ACTIONS(2730), - [anon_sym_err_GT_PIPE] = ACTIONS(2730), - [anon_sym_out_GT_PIPE] = ACTIONS(2730), - [anon_sym_e_GT_PIPE] = ACTIONS(2730), - [anon_sym_o_GT_PIPE] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2730), - [anon_sym_RPAREN] = ACTIONS(2730), - [anon_sym_GT2] = ACTIONS(2732), - [anon_sym_DASH2] = ACTIONS(2730), - [anon_sym_LBRACE] = ACTIONS(2730), - [anon_sym_STAR2] = ACTIONS(2732), - [anon_sym_and2] = ACTIONS(2730), - [anon_sym_xor2] = ACTIONS(2730), - [anon_sym_or2] = ACTIONS(2730), - [anon_sym_not_DASHin2] = ACTIONS(2730), - [anon_sym_has2] = ACTIONS(2730), - [anon_sym_not_DASHhas2] = ACTIONS(2730), - [anon_sym_starts_DASHwith2] = ACTIONS(2730), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2730), - [anon_sym_ends_DASHwith2] = ACTIONS(2730), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2730), - [anon_sym_EQ_EQ2] = ACTIONS(2730), - [anon_sym_BANG_EQ2] = ACTIONS(2730), - [anon_sym_LT2] = ACTIONS(2732), - [anon_sym_LT_EQ2] = ACTIONS(2730), - [anon_sym_GT_EQ2] = ACTIONS(2730), - [anon_sym_EQ_TILDE2] = ACTIONS(2730), - [anon_sym_BANG_TILDE2] = ACTIONS(2730), - [anon_sym_like2] = ACTIONS(2730), - [anon_sym_not_DASHlike2] = ACTIONS(2730), - [anon_sym_STAR_STAR2] = ACTIONS(2730), - [anon_sym_PLUS_PLUS2] = ACTIONS(2730), - [anon_sym_SLASH2] = ACTIONS(2732), - [anon_sym_mod2] = ACTIONS(2730), - [anon_sym_SLASH_SLASH2] = ACTIONS(2730), - [anon_sym_PLUS2] = ACTIONS(2732), - [anon_sym_bit_DASHshl2] = ACTIONS(2730), - [anon_sym_bit_DASHshr2] = ACTIONS(2730), - [anon_sym_bit_DASHand2] = ACTIONS(2730), - [anon_sym_bit_DASHxor2] = ACTIONS(2730), - [anon_sym_bit_DASHor2] = ACTIONS(2730), - [anon_sym_err_GT] = ACTIONS(2732), - [anon_sym_out_GT] = ACTIONS(2732), - [anon_sym_e_GT] = ACTIONS(2732), - [anon_sym_o_GT] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT] = ACTIONS(2732), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), + [anon_sym_in] = ACTIONS(2676), + [sym__newline] = ACTIONS(2676), + [anon_sym_SEMI] = ACTIONS(2676), + [anon_sym_PIPE] = ACTIONS(2676), + [anon_sym_err_GT_PIPE] = ACTIONS(2676), + [anon_sym_out_GT_PIPE] = ACTIONS(2676), + [anon_sym_e_GT_PIPE] = ACTIONS(2676), + [anon_sym_o_GT_PIPE] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2676), + [anon_sym_RPAREN] = ACTIONS(2676), + [anon_sym_GT2] = ACTIONS(2678), + [anon_sym_DASH2] = ACTIONS(2676), + [anon_sym_LBRACE] = ACTIONS(2676), + [anon_sym_STAR2] = ACTIONS(2678), + [anon_sym_and2] = ACTIONS(2676), + [anon_sym_xor2] = ACTIONS(2676), + [anon_sym_or2] = ACTIONS(2676), + [anon_sym_not_DASHin2] = ACTIONS(2676), + [anon_sym_has2] = ACTIONS(2676), + [anon_sym_not_DASHhas2] = ACTIONS(2676), + [anon_sym_starts_DASHwith2] = ACTIONS(2676), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2676), + [anon_sym_ends_DASHwith2] = ACTIONS(2676), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2676), + [anon_sym_EQ_EQ2] = ACTIONS(2676), + [anon_sym_BANG_EQ2] = ACTIONS(2676), + [anon_sym_LT2] = ACTIONS(2678), + [anon_sym_LT_EQ2] = ACTIONS(2676), + [anon_sym_GT_EQ2] = ACTIONS(2676), + [anon_sym_EQ_TILDE2] = ACTIONS(2676), + [anon_sym_BANG_TILDE2] = ACTIONS(2676), + [anon_sym_like2] = ACTIONS(2676), + [anon_sym_not_DASHlike2] = ACTIONS(2676), + [anon_sym_STAR_STAR2] = ACTIONS(2676), + [anon_sym_PLUS_PLUS2] = ACTIONS(2676), + [anon_sym_SLASH2] = ACTIONS(2678), + [anon_sym_mod2] = ACTIONS(2676), + [anon_sym_SLASH_SLASH2] = ACTIONS(2676), + [anon_sym_PLUS2] = ACTIONS(2678), + [anon_sym_bit_DASHshl2] = ACTIONS(2676), + [anon_sym_bit_DASHshr2] = ACTIONS(2676), + [anon_sym_bit_DASHand2] = ACTIONS(2676), + [anon_sym_bit_DASHxor2] = ACTIONS(2676), + [anon_sym_bit_DASHor2] = ACTIONS(2676), + [anon_sym_err_GT] = ACTIONS(2678), + [anon_sym_out_GT] = ACTIONS(2678), + [anon_sym_e_GT] = ACTIONS(2678), + [anon_sym_o_GT] = ACTIONS(2678), + [anon_sym_err_PLUSout_GT] = ACTIONS(2678), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2678), + [anon_sym_o_PLUSe_GT] = ACTIONS(2678), + [anon_sym_e_PLUSo_GT] = ACTIONS(2678), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1030)] = { - [sym__expr_parenthesized_immediate] = STATE(4884), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1030), - [ts_builtin_sym_end] = ACTIONS(2098), - [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_GT2] = ACTIONS(2100), - [anon_sym_DASH2] = 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(1724), - [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_in] = ACTIONS(2780), + [sym__newline] = ACTIONS(2780), + [anon_sym_SEMI] = ACTIONS(2780), + [anon_sym_PIPE] = ACTIONS(2780), + [anon_sym_err_GT_PIPE] = ACTIONS(2780), + [anon_sym_out_GT_PIPE] = ACTIONS(2780), + [anon_sym_e_GT_PIPE] = ACTIONS(2780), + [anon_sym_o_GT_PIPE] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2780), + [anon_sym_RPAREN] = ACTIONS(2780), + [anon_sym_GT2] = ACTIONS(2782), + [anon_sym_DASH2] = ACTIONS(2780), + [anon_sym_LBRACE] = ACTIONS(2780), + [anon_sym_STAR2] = ACTIONS(2782), + [anon_sym_and2] = ACTIONS(2780), + [anon_sym_xor2] = ACTIONS(2780), + [anon_sym_or2] = ACTIONS(2780), + [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(2780), + [anon_sym_BANG_EQ2] = ACTIONS(2780), + [anon_sym_LT2] = ACTIONS(2782), + [anon_sym_LT_EQ2] = ACTIONS(2780), + [anon_sym_GT_EQ2] = ACTIONS(2780), + [anon_sym_EQ_TILDE2] = ACTIONS(2780), + [anon_sym_BANG_TILDE2] = ACTIONS(2780), + [anon_sym_like2] = ACTIONS(2780), + [anon_sym_not_DASHlike2] = ACTIONS(2780), + [anon_sym_STAR_STAR2] = ACTIONS(2780), + [anon_sym_PLUS_PLUS2] = ACTIONS(2780), + [anon_sym_SLASH2] = ACTIONS(2782), + [anon_sym_mod2] = ACTIONS(2780), + [anon_sym_SLASH_SLASH2] = ACTIONS(2780), + [anon_sym_PLUS2] = ACTIONS(2782), + [anon_sym_bit_DASHshl2] = ACTIONS(2780), + [anon_sym_bit_DASHshr2] = ACTIONS(2780), + [anon_sym_bit_DASHand2] = ACTIONS(2780), + [anon_sym_bit_DASHxor2] = ACTIONS(2780), + [anon_sym_bit_DASHor2] = ACTIONS(2780), + [anon_sym_err_GT] = ACTIONS(2782), + [anon_sym_out_GT] = ACTIONS(2782), + [anon_sym_e_GT] = ACTIONS(2782), + [anon_sym_o_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT] = ACTIONS(2782), + [anon_sym_err_GT_GT] = ACTIONS(2780), + [anon_sym_out_GT_GT] = ACTIONS(2780), + [anon_sym_e_GT_GT] = ACTIONS(2780), + [anon_sym_o_GT_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2780), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1031)] = { - [aux_sym__repeat_newline] = STATE(1082), [sym_comment] = STATE(1031), - [anon_sym_in] = ACTIONS(2337), - [sym__newline] = ACTIONS(2337), - [anon_sym_SEMI] = ACTIONS(2337), - [anon_sym_PIPE] = ACTIONS(2337), - [anon_sym_err_GT_PIPE] = ACTIONS(2337), - [anon_sym_out_GT_PIPE] = ACTIONS(2337), - [anon_sym_e_GT_PIPE] = ACTIONS(2337), - [anon_sym_o_GT_PIPE] = ACTIONS(2337), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2337), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2337), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2337), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2337), - [anon_sym_RPAREN] = ACTIONS(2337), - [anon_sym_GT2] = ACTIONS(2339), - [anon_sym_DASH2] = ACTIONS(2337), - [anon_sym_LBRACE] = ACTIONS(2337), - [anon_sym_STAR2] = ACTIONS(2339), - [anon_sym_and2] = ACTIONS(2337), - [anon_sym_xor2] = ACTIONS(2337), - [anon_sym_or2] = ACTIONS(2337), - [anon_sym_not_DASHin2] = ACTIONS(2337), - [anon_sym_has2] = ACTIONS(2337), - [anon_sym_not_DASHhas2] = ACTIONS(2337), - [anon_sym_starts_DASHwith2] = ACTIONS(2337), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2337), - [anon_sym_ends_DASHwith2] = ACTIONS(2337), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2337), - [anon_sym_EQ_EQ2] = ACTIONS(2337), - [anon_sym_BANG_EQ2] = ACTIONS(2337), - [anon_sym_LT2] = ACTIONS(2339), - [anon_sym_LT_EQ2] = ACTIONS(2337), - [anon_sym_GT_EQ2] = ACTIONS(2337), - [anon_sym_EQ_TILDE2] = ACTIONS(2337), - [anon_sym_BANG_TILDE2] = ACTIONS(2337), - [anon_sym_like2] = ACTIONS(2337), - [anon_sym_not_DASHlike2] = ACTIONS(2337), - [anon_sym_STAR_STAR2] = ACTIONS(2337), - [anon_sym_PLUS_PLUS2] = ACTIONS(2337), - [anon_sym_SLASH2] = ACTIONS(2339), - [anon_sym_mod2] = ACTIONS(2337), - [anon_sym_SLASH_SLASH2] = ACTIONS(2337), - [anon_sym_PLUS2] = ACTIONS(2339), - [anon_sym_bit_DASHshl2] = ACTIONS(2337), - [anon_sym_bit_DASHshr2] = ACTIONS(2337), - [anon_sym_bit_DASHand2] = ACTIONS(2337), - [anon_sym_bit_DASHxor2] = ACTIONS(2337), - [anon_sym_bit_DASHor2] = ACTIONS(2337), - [anon_sym_err_GT] = ACTIONS(2339), - [anon_sym_out_GT] = ACTIONS(2339), - [anon_sym_e_GT] = ACTIONS(2339), - [anon_sym_o_GT] = ACTIONS(2339), - [anon_sym_err_PLUSout_GT] = ACTIONS(2339), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2339), - [anon_sym_o_PLUSe_GT] = ACTIONS(2339), - [anon_sym_e_PLUSo_GT] = ACTIONS(2339), - [anon_sym_err_GT_GT] = ACTIONS(2337), - [anon_sym_out_GT_GT] = ACTIONS(2337), - [anon_sym_e_GT_GT] = ACTIONS(2337), - [anon_sym_o_GT_GT] = ACTIONS(2337), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2337), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2337), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2337), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2337), + [ts_builtin_sym_end] = ACTIONS(2608), + [anon_sym_in] = ACTIONS(2608), + [sym__newline] = ACTIONS(2608), + [anon_sym_SEMI] = ACTIONS(2608), + [anon_sym_PIPE] = ACTIONS(2608), + [anon_sym_err_GT_PIPE] = ACTIONS(2608), + [anon_sym_out_GT_PIPE] = ACTIONS(2608), + [anon_sym_e_GT_PIPE] = ACTIONS(2608), + [anon_sym_o_GT_PIPE] = ACTIONS(2608), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2608), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2608), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2608), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2608), + [anon_sym_GT2] = ACTIONS(2610), + [anon_sym_DASH2] = ACTIONS(2608), + [anon_sym_STAR2] = ACTIONS(2610), + [anon_sym_and2] = ACTIONS(2608), + [anon_sym_xor2] = ACTIONS(2608), + [anon_sym_or2] = ACTIONS(2608), + [anon_sym_not_DASHin2] = ACTIONS(2608), + [anon_sym_has2] = ACTIONS(2608), + [anon_sym_not_DASHhas2] = ACTIONS(2608), + [anon_sym_starts_DASHwith2] = ACTIONS(2608), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2608), + [anon_sym_ends_DASHwith2] = ACTIONS(2608), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2608), + [anon_sym_EQ_EQ2] = ACTIONS(2608), + [anon_sym_BANG_EQ2] = ACTIONS(2608), + [anon_sym_LT2] = ACTIONS(2610), + [anon_sym_LT_EQ2] = ACTIONS(2608), + [anon_sym_GT_EQ2] = ACTIONS(2608), + [anon_sym_EQ_TILDE2] = ACTIONS(2608), + [anon_sym_BANG_TILDE2] = ACTIONS(2608), + [anon_sym_like2] = ACTIONS(2608), + [anon_sym_not_DASHlike2] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(2612), + [anon_sym_STAR_STAR2] = ACTIONS(2608), + [anon_sym_PLUS_PLUS2] = ACTIONS(2608), + [anon_sym_SLASH2] = ACTIONS(2610), + [anon_sym_mod2] = ACTIONS(2608), + [anon_sym_SLASH_SLASH2] = ACTIONS(2608), + [anon_sym_PLUS2] = ACTIONS(2610), + [anon_sym_bit_DASHshl2] = ACTIONS(2608), + [anon_sym_bit_DASHshr2] = ACTIONS(2608), + [anon_sym_bit_DASHand2] = ACTIONS(2608), + [anon_sym_bit_DASHxor2] = ACTIONS(2608), + [anon_sym_bit_DASHor2] = ACTIONS(2608), + [anon_sym_err_GT] = ACTIONS(2610), + [anon_sym_out_GT] = ACTIONS(2610), + [anon_sym_e_GT] = ACTIONS(2610), + [anon_sym_o_GT] = ACTIONS(2610), + [anon_sym_err_PLUSout_GT] = ACTIONS(2610), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2610), + [anon_sym_o_PLUSe_GT] = ACTIONS(2610), + [anon_sym_e_PLUSo_GT] = ACTIONS(2610), + [anon_sym_err_GT_GT] = ACTIONS(2608), + [anon_sym_out_GT_GT] = ACTIONS(2608), + [anon_sym_e_GT_GT] = ACTIONS(2608), + [anon_sym_o_GT_GT] = ACTIONS(2608), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2608), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2608), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2608), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2608), + [sym__unquoted_pattern] = ACTIONS(2614), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1032)] = { - [aux_sym__repeat_newline] = STATE(987), + [aux_sym__repeat_newline] = STATE(1041), [sym_comment] = STATE(1032), - [anon_sym_in] = ACTIONS(2302), - [sym__newline] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_PIPE] = ACTIONS(2302), - [anon_sym_err_GT_PIPE] = ACTIONS(2302), - [anon_sym_out_GT_PIPE] = ACTIONS(2302), - [anon_sym_e_GT_PIPE] = ACTIONS(2302), - [anon_sym_o_GT_PIPE] = ACTIONS(2302), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2302), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2302), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2302), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2302), - [anon_sym_RPAREN] = ACTIONS(2302), - [anon_sym_GT2] = ACTIONS(2304), - [anon_sym_DASH2] = ACTIONS(2302), - [anon_sym_LBRACE] = ACTIONS(2302), - [anon_sym_STAR2] = ACTIONS(2304), - [anon_sym_and2] = ACTIONS(2302), - [anon_sym_xor2] = ACTIONS(2302), - [anon_sym_or2] = ACTIONS(2302), - [anon_sym_not_DASHin2] = ACTIONS(2302), - [anon_sym_has2] = ACTIONS(2302), - [anon_sym_not_DASHhas2] = ACTIONS(2302), - [anon_sym_starts_DASHwith2] = ACTIONS(2302), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2302), - [anon_sym_ends_DASHwith2] = ACTIONS(2302), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2302), - [anon_sym_EQ_EQ2] = ACTIONS(2302), - [anon_sym_BANG_EQ2] = ACTIONS(2302), - [anon_sym_LT2] = ACTIONS(2304), - [anon_sym_LT_EQ2] = ACTIONS(2302), - [anon_sym_GT_EQ2] = ACTIONS(2302), - [anon_sym_EQ_TILDE2] = ACTIONS(2302), - [anon_sym_BANG_TILDE2] = ACTIONS(2302), - [anon_sym_like2] = ACTIONS(2302), - [anon_sym_not_DASHlike2] = ACTIONS(2302), - [anon_sym_STAR_STAR2] = ACTIONS(2302), - [anon_sym_PLUS_PLUS2] = ACTIONS(2302), - [anon_sym_SLASH2] = ACTIONS(2304), - [anon_sym_mod2] = ACTIONS(2302), - [anon_sym_SLASH_SLASH2] = ACTIONS(2302), - [anon_sym_PLUS2] = ACTIONS(2304), - [anon_sym_bit_DASHshl2] = ACTIONS(2302), - [anon_sym_bit_DASHshr2] = ACTIONS(2302), - [anon_sym_bit_DASHand2] = ACTIONS(2302), - [anon_sym_bit_DASHxor2] = ACTIONS(2302), - [anon_sym_bit_DASHor2] = ACTIONS(2302), - [anon_sym_err_GT] = ACTIONS(2304), - [anon_sym_out_GT] = ACTIONS(2304), - [anon_sym_e_GT] = ACTIONS(2304), - [anon_sym_o_GT] = ACTIONS(2304), - [anon_sym_err_PLUSout_GT] = ACTIONS(2304), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2304), - [anon_sym_o_PLUSe_GT] = ACTIONS(2304), - [anon_sym_e_PLUSo_GT] = ACTIONS(2304), - [anon_sym_err_GT_GT] = ACTIONS(2302), - [anon_sym_out_GT_GT] = ACTIONS(2302), - [anon_sym_e_GT_GT] = ACTIONS(2302), - [anon_sym_o_GT_GT] = ACTIONS(2302), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2302), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2302), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2302), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2302), + [anon_sym_in] = ACTIONS(2346), + [sym__newline] = ACTIONS(2346), + [anon_sym_SEMI] = 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_RPAREN] = ACTIONS(2346), + [anon_sym_GT2] = ACTIONS(2348), + [anon_sym_DASH2] = ACTIONS(2346), + [anon_sym_LBRACE] = ACTIONS(2346), + [anon_sym_STAR2] = ACTIONS(2348), + [anon_sym_and2] = ACTIONS(2346), + [anon_sym_xor2] = ACTIONS(2346), + [anon_sym_or2] = ACTIONS(2346), + [anon_sym_not_DASHin2] = ACTIONS(2346), + [anon_sym_has2] = ACTIONS(2346), + [anon_sym_not_DASHhas2] = ACTIONS(2346), + [anon_sym_starts_DASHwith2] = ACTIONS(2346), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2346), + [anon_sym_ends_DASHwith2] = ACTIONS(2346), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2346), + [anon_sym_EQ_EQ2] = ACTIONS(2346), + [anon_sym_BANG_EQ2] = ACTIONS(2346), + [anon_sym_LT2] = ACTIONS(2348), + [anon_sym_LT_EQ2] = ACTIONS(2346), + [anon_sym_GT_EQ2] = ACTIONS(2346), + [anon_sym_EQ_TILDE2] = ACTIONS(2346), + [anon_sym_BANG_TILDE2] = ACTIONS(2346), + [anon_sym_like2] = ACTIONS(2346), + [anon_sym_not_DASHlike2] = ACTIONS(2346), + [anon_sym_STAR_STAR2] = ACTIONS(2346), + [anon_sym_PLUS_PLUS2] = ACTIONS(2346), + [anon_sym_SLASH2] = ACTIONS(2348), + [anon_sym_mod2] = ACTIONS(2346), + [anon_sym_SLASH_SLASH2] = ACTIONS(2346), + [anon_sym_PLUS2] = ACTIONS(2348), + [anon_sym_bit_DASHshl2] = ACTIONS(2346), + [anon_sym_bit_DASHshr2] = ACTIONS(2346), + [anon_sym_bit_DASHand2] = ACTIONS(2346), + [anon_sym_bit_DASHxor2] = ACTIONS(2346), + [anon_sym_bit_DASHor2] = ACTIONS(2346), + [anon_sym_err_GT] = ACTIONS(2348), + [anon_sym_out_GT] = ACTIONS(2348), + [anon_sym_e_GT] = ACTIONS(2348), + [anon_sym_o_GT] = ACTIONS(2348), + [anon_sym_err_PLUSout_GT] = ACTIONS(2348), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2348), + [anon_sym_o_PLUSe_GT] = ACTIONS(2348), + [anon_sym_e_PLUSo_GT] = ACTIONS(2348), + [anon_sym_err_GT_GT] = ACTIONS(2346), + [anon_sym_out_GT_GT] = ACTIONS(2346), + [anon_sym_e_GT_GT] = ACTIONS(2346), + [anon_sym_o_GT_GT] = ACTIONS(2346), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2346), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2346), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2346), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2346), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1033)] = { - [aux_sym__repeat_newline] = STATE(1085), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1033), - [anon_sym_in] = ACTIONS(2337), - [sym__newline] = ACTIONS(2337), - [anon_sym_SEMI] = ACTIONS(2337), - [anon_sym_PIPE] = ACTIONS(2337), - [anon_sym_err_GT_PIPE] = ACTIONS(2337), - [anon_sym_out_GT_PIPE] = ACTIONS(2337), - [anon_sym_e_GT_PIPE] = ACTIONS(2337), - [anon_sym_o_GT_PIPE] = ACTIONS(2337), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2337), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2337), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2337), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2337), - [anon_sym_RPAREN] = ACTIONS(2337), - [anon_sym_GT2] = ACTIONS(2339), - [anon_sym_DASH2] = ACTIONS(2337), - [anon_sym_LBRACE] = ACTIONS(2337), - [anon_sym_STAR2] = ACTIONS(2339), - [anon_sym_and2] = ACTIONS(2337), - [anon_sym_xor2] = ACTIONS(2337), - [anon_sym_or2] = ACTIONS(2337), - [anon_sym_not_DASHin2] = ACTIONS(2337), - [anon_sym_has2] = ACTIONS(2337), - [anon_sym_not_DASHhas2] = ACTIONS(2337), - [anon_sym_starts_DASHwith2] = ACTIONS(2337), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2337), - [anon_sym_ends_DASHwith2] = ACTIONS(2337), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2337), - [anon_sym_EQ_EQ2] = ACTIONS(2337), - [anon_sym_BANG_EQ2] = ACTIONS(2337), - [anon_sym_LT2] = ACTIONS(2339), - [anon_sym_LT_EQ2] = ACTIONS(2337), - [anon_sym_GT_EQ2] = ACTIONS(2337), - [anon_sym_EQ_TILDE2] = ACTIONS(2337), - [anon_sym_BANG_TILDE2] = ACTIONS(2337), - [anon_sym_like2] = ACTIONS(2337), - [anon_sym_not_DASHlike2] = ACTIONS(2337), - [anon_sym_STAR_STAR2] = ACTIONS(2337), - [anon_sym_PLUS_PLUS2] = ACTIONS(2337), - [anon_sym_SLASH2] = ACTIONS(2339), - [anon_sym_mod2] = ACTIONS(2337), - [anon_sym_SLASH_SLASH2] = ACTIONS(2337), - [anon_sym_PLUS2] = ACTIONS(2339), - [anon_sym_bit_DASHshl2] = ACTIONS(2337), - [anon_sym_bit_DASHshr2] = ACTIONS(2337), - [anon_sym_bit_DASHand2] = ACTIONS(2337), - [anon_sym_bit_DASHxor2] = ACTIONS(2337), - [anon_sym_bit_DASHor2] = ACTIONS(2337), - [anon_sym_err_GT] = ACTIONS(2339), - [anon_sym_out_GT] = ACTIONS(2339), - [anon_sym_e_GT] = ACTIONS(2339), - [anon_sym_o_GT] = ACTIONS(2339), - [anon_sym_err_PLUSout_GT] = ACTIONS(2339), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2339), - [anon_sym_o_PLUSe_GT] = ACTIONS(2339), - [anon_sym_e_PLUSo_GT] = ACTIONS(2339), - [anon_sym_err_GT_GT] = ACTIONS(2337), - [anon_sym_out_GT_GT] = ACTIONS(2337), - [anon_sym_e_GT_GT] = ACTIONS(2337), - [anon_sym_o_GT_GT] = ACTIONS(2337), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2337), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2337), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2337), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2337), + [anon_sym_in] = ACTIONS(2676), + [sym__newline] = ACTIONS(2676), + [anon_sym_SEMI] = ACTIONS(2676), + [anon_sym_PIPE] = ACTIONS(2676), + [anon_sym_err_GT_PIPE] = ACTIONS(2676), + [anon_sym_out_GT_PIPE] = ACTIONS(2676), + [anon_sym_e_GT_PIPE] = ACTIONS(2676), + [anon_sym_o_GT_PIPE] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2676), + [anon_sym_RPAREN] = ACTIONS(2676), + [anon_sym_GT2] = ACTIONS(2678), + [anon_sym_DASH2] = ACTIONS(2676), + [anon_sym_LBRACE] = ACTIONS(2676), + [anon_sym_STAR2] = ACTIONS(2678), + [anon_sym_and2] = ACTIONS(2676), + [anon_sym_xor2] = ACTIONS(2676), + [anon_sym_or2] = ACTIONS(2676), + [anon_sym_not_DASHin2] = ACTIONS(2676), + [anon_sym_has2] = ACTIONS(2676), + [anon_sym_not_DASHhas2] = ACTIONS(2676), + [anon_sym_starts_DASHwith2] = ACTIONS(2676), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2676), + [anon_sym_ends_DASHwith2] = ACTIONS(2676), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2676), + [anon_sym_EQ_EQ2] = ACTIONS(2676), + [anon_sym_BANG_EQ2] = ACTIONS(2676), + [anon_sym_LT2] = ACTIONS(2678), + [anon_sym_LT_EQ2] = ACTIONS(2676), + [anon_sym_GT_EQ2] = ACTIONS(2676), + [anon_sym_EQ_TILDE2] = ACTIONS(2676), + [anon_sym_BANG_TILDE2] = ACTIONS(2676), + [anon_sym_like2] = ACTIONS(2676), + [anon_sym_not_DASHlike2] = ACTIONS(2676), + [anon_sym_STAR_STAR2] = ACTIONS(2676), + [anon_sym_PLUS_PLUS2] = ACTIONS(2676), + [anon_sym_SLASH2] = ACTIONS(2678), + [anon_sym_mod2] = ACTIONS(2676), + [anon_sym_SLASH_SLASH2] = ACTIONS(2676), + [anon_sym_PLUS2] = ACTIONS(2678), + [anon_sym_bit_DASHshl2] = ACTIONS(2676), + [anon_sym_bit_DASHshr2] = ACTIONS(2676), + [anon_sym_bit_DASHand2] = ACTIONS(2676), + [anon_sym_bit_DASHxor2] = ACTIONS(2676), + [anon_sym_bit_DASHor2] = ACTIONS(2676), + [anon_sym_err_GT] = ACTIONS(2678), + [anon_sym_out_GT] = ACTIONS(2678), + [anon_sym_e_GT] = ACTIONS(2678), + [anon_sym_o_GT] = ACTIONS(2678), + [anon_sym_err_PLUSout_GT] = ACTIONS(2678), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2678), + [anon_sym_o_PLUSe_GT] = ACTIONS(2678), + [anon_sym_e_PLUSo_GT] = ACTIONS(2678), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1034)] = { - [aux_sym__repeat_newline] = STATE(1087), + [sym__expr_parenthesized_immediate] = STATE(5483), [sym_comment] = STATE(1034), - [anon_sym_in] = ACTIONS(2337), - [sym__newline] = ACTIONS(2337), - [anon_sym_SEMI] = ACTIONS(2337), - [anon_sym_PIPE] = ACTIONS(2337), - [anon_sym_err_GT_PIPE] = ACTIONS(2337), - [anon_sym_out_GT_PIPE] = ACTIONS(2337), - [anon_sym_e_GT_PIPE] = ACTIONS(2337), - [anon_sym_o_GT_PIPE] = ACTIONS(2337), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2337), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2337), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2337), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2337), - [anon_sym_RPAREN] = ACTIONS(2337), - [anon_sym_GT2] = ACTIONS(2339), - [anon_sym_DASH2] = ACTIONS(2337), - [anon_sym_LBRACE] = ACTIONS(2337), - [anon_sym_STAR2] = ACTIONS(2339), - [anon_sym_and2] = ACTIONS(2337), - [anon_sym_xor2] = ACTIONS(2337), - [anon_sym_or2] = ACTIONS(2337), - [anon_sym_not_DASHin2] = ACTIONS(2337), - [anon_sym_has2] = ACTIONS(2337), - [anon_sym_not_DASHhas2] = ACTIONS(2337), - [anon_sym_starts_DASHwith2] = ACTIONS(2337), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2337), - [anon_sym_ends_DASHwith2] = ACTIONS(2337), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2337), - [anon_sym_EQ_EQ2] = ACTIONS(2337), - [anon_sym_BANG_EQ2] = ACTIONS(2337), - [anon_sym_LT2] = ACTIONS(2339), - [anon_sym_LT_EQ2] = ACTIONS(2337), - [anon_sym_GT_EQ2] = ACTIONS(2337), - [anon_sym_EQ_TILDE2] = ACTIONS(2337), - [anon_sym_BANG_TILDE2] = ACTIONS(2337), - [anon_sym_like2] = ACTIONS(2337), - [anon_sym_not_DASHlike2] = ACTIONS(2337), - [anon_sym_STAR_STAR2] = ACTIONS(2337), - [anon_sym_PLUS_PLUS2] = ACTIONS(2337), - [anon_sym_SLASH2] = ACTIONS(2339), - [anon_sym_mod2] = ACTIONS(2337), - [anon_sym_SLASH_SLASH2] = ACTIONS(2337), - [anon_sym_PLUS2] = ACTIONS(2339), - [anon_sym_bit_DASHshl2] = ACTIONS(2337), - [anon_sym_bit_DASHshr2] = ACTIONS(2337), - [anon_sym_bit_DASHand2] = ACTIONS(2337), - [anon_sym_bit_DASHxor2] = ACTIONS(2337), - [anon_sym_bit_DASHor2] = ACTIONS(2337), - [anon_sym_err_GT] = ACTIONS(2339), - [anon_sym_out_GT] = ACTIONS(2339), - [anon_sym_e_GT] = ACTIONS(2339), - [anon_sym_o_GT] = ACTIONS(2339), - [anon_sym_err_PLUSout_GT] = ACTIONS(2339), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2339), - [anon_sym_o_PLUSe_GT] = ACTIONS(2339), - [anon_sym_e_PLUSo_GT] = ACTIONS(2339), - [anon_sym_err_GT_GT] = ACTIONS(2337), - [anon_sym_out_GT_GT] = ACTIONS(2337), - [anon_sym_e_GT_GT] = ACTIONS(2337), - [anon_sym_o_GT_GT] = ACTIONS(2337), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2337), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2337), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2337), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2337), + [ts_builtin_sym_end] = ACTIONS(2342), + [anon_sym_in] = ACTIONS(2342), + [sym__newline] = ACTIONS(2342), + [anon_sym_SEMI] = ACTIONS(2342), + [anon_sym_PIPE] = ACTIONS(2342), + [anon_sym_err_GT_PIPE] = ACTIONS(2342), + [anon_sym_out_GT_PIPE] = ACTIONS(2342), + [anon_sym_e_GT_PIPE] = ACTIONS(2342), + [anon_sym_o_GT_PIPE] = ACTIONS(2342), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2342), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2342), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2342), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2342), + [anon_sym_GT2] = ACTIONS(2344), + [anon_sym_DASH2] = ACTIONS(2342), + [anon_sym_STAR2] = ACTIONS(2344), + [anon_sym_and2] = ACTIONS(2342), + [anon_sym_xor2] = ACTIONS(2342), + [anon_sym_or2] = ACTIONS(2342), + [anon_sym_not_DASHin2] = ACTIONS(2342), + [anon_sym_has2] = ACTIONS(2342), + [anon_sym_not_DASHhas2] = ACTIONS(2342), + [anon_sym_starts_DASHwith2] = ACTIONS(2342), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2342), + [anon_sym_ends_DASHwith2] = ACTIONS(2342), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2342), + [anon_sym_EQ_EQ2] = ACTIONS(2342), + [anon_sym_BANG_EQ2] = ACTIONS(2342), + [anon_sym_LT2] = ACTIONS(2344), + [anon_sym_LT_EQ2] = ACTIONS(2342), + [anon_sym_GT_EQ2] = ACTIONS(2342), + [anon_sym_EQ_TILDE2] = ACTIONS(2342), + [anon_sym_BANG_TILDE2] = ACTIONS(2342), + [anon_sym_like2] = ACTIONS(2342), + [anon_sym_not_DASHlike2] = ACTIONS(2342), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_STAR_STAR2] = ACTIONS(2342), + [anon_sym_PLUS_PLUS2] = ACTIONS(2342), + [anon_sym_SLASH2] = ACTIONS(2344), + [anon_sym_mod2] = ACTIONS(2342), + [anon_sym_SLASH_SLASH2] = ACTIONS(2342), + [anon_sym_PLUS2] = ACTIONS(2344), + [anon_sym_bit_DASHshl2] = ACTIONS(2342), + [anon_sym_bit_DASHshr2] = ACTIONS(2342), + [anon_sym_bit_DASHand2] = ACTIONS(2342), + [anon_sym_bit_DASHxor2] = ACTIONS(2342), + [anon_sym_bit_DASHor2] = ACTIONS(2342), + [anon_sym_err_GT] = ACTIONS(2344), + [anon_sym_out_GT] = ACTIONS(2344), + [anon_sym_e_GT] = ACTIONS(2344), + [anon_sym_o_GT] = ACTIONS(2344), + [anon_sym_err_PLUSout_GT] = ACTIONS(2344), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2344), + [anon_sym_o_PLUSe_GT] = ACTIONS(2344), + [anon_sym_e_PLUSo_GT] = ACTIONS(2344), + [anon_sym_err_GT_GT] = ACTIONS(2342), + [anon_sym_out_GT_GT] = ACTIONS(2342), + [anon_sym_e_GT_GT] = ACTIONS(2342), + [anon_sym_o_GT_GT] = ACTIONS(2342), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2342), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2342), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2342), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2342), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1035)] = { - [aux_sym__repeat_newline] = STATE(1089), + [aux_sym__repeat_newline] = STATE(1033), [sym_comment] = STATE(1035), - [anon_sym_in] = ACTIONS(2337), - [sym__newline] = ACTIONS(2337), - [anon_sym_SEMI] = ACTIONS(2337), - [anon_sym_PIPE] = ACTIONS(2337), - [anon_sym_err_GT_PIPE] = ACTIONS(2337), - [anon_sym_out_GT_PIPE] = ACTIONS(2337), - [anon_sym_e_GT_PIPE] = ACTIONS(2337), - [anon_sym_o_GT_PIPE] = ACTIONS(2337), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2337), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2337), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2337), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2337), - [anon_sym_RPAREN] = ACTIONS(2337), - [anon_sym_GT2] = ACTIONS(2339), - [anon_sym_DASH2] = ACTIONS(2337), - [anon_sym_LBRACE] = ACTIONS(2337), - [anon_sym_STAR2] = ACTIONS(2339), - [anon_sym_and2] = ACTIONS(2337), - [anon_sym_xor2] = ACTIONS(2337), - [anon_sym_or2] = ACTIONS(2337), - [anon_sym_not_DASHin2] = ACTIONS(2337), - [anon_sym_has2] = ACTIONS(2337), - [anon_sym_not_DASHhas2] = ACTIONS(2337), - [anon_sym_starts_DASHwith2] = ACTIONS(2337), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2337), - [anon_sym_ends_DASHwith2] = ACTIONS(2337), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2337), - [anon_sym_EQ_EQ2] = ACTIONS(2337), - [anon_sym_BANG_EQ2] = ACTIONS(2337), - [anon_sym_LT2] = ACTIONS(2339), - [anon_sym_LT_EQ2] = ACTIONS(2337), - [anon_sym_GT_EQ2] = ACTIONS(2337), - [anon_sym_EQ_TILDE2] = ACTIONS(2337), - [anon_sym_BANG_TILDE2] = ACTIONS(2337), - [anon_sym_like2] = ACTIONS(2337), - [anon_sym_not_DASHlike2] = ACTIONS(2337), - [anon_sym_STAR_STAR2] = ACTIONS(2337), - [anon_sym_PLUS_PLUS2] = ACTIONS(2337), - [anon_sym_SLASH2] = ACTIONS(2339), - [anon_sym_mod2] = ACTIONS(2337), - [anon_sym_SLASH_SLASH2] = ACTIONS(2337), - [anon_sym_PLUS2] = ACTIONS(2339), - [anon_sym_bit_DASHshl2] = ACTIONS(2337), - [anon_sym_bit_DASHshr2] = ACTIONS(2337), - [anon_sym_bit_DASHand2] = ACTIONS(2337), - [anon_sym_bit_DASHxor2] = ACTIONS(2337), - [anon_sym_bit_DASHor2] = ACTIONS(2337), - [anon_sym_err_GT] = ACTIONS(2339), - [anon_sym_out_GT] = ACTIONS(2339), - [anon_sym_e_GT] = ACTIONS(2339), - [anon_sym_o_GT] = ACTIONS(2339), - [anon_sym_err_PLUSout_GT] = ACTIONS(2339), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2339), - [anon_sym_o_PLUSe_GT] = ACTIONS(2339), - [anon_sym_e_PLUSo_GT] = ACTIONS(2339), - [anon_sym_err_GT_GT] = ACTIONS(2337), - [anon_sym_out_GT_GT] = ACTIONS(2337), - [anon_sym_e_GT_GT] = ACTIONS(2337), - [anon_sym_o_GT_GT] = ACTIONS(2337), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2337), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2337), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2337), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2337), + [anon_sym_in] = ACTIONS(2541), + [sym__newline] = ACTIONS(2541), + [anon_sym_SEMI] = ACTIONS(2541), + [anon_sym_PIPE] = ACTIONS(2541), + [anon_sym_err_GT_PIPE] = ACTIONS(2541), + [anon_sym_out_GT_PIPE] = ACTIONS(2541), + [anon_sym_e_GT_PIPE] = ACTIONS(2541), + [anon_sym_o_GT_PIPE] = ACTIONS(2541), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2541), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2541), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2541), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2541), + [anon_sym_RPAREN] = ACTIONS(2541), + [anon_sym_GT2] = ACTIONS(2543), + [anon_sym_DASH2] = ACTIONS(2541), + [anon_sym_LBRACE] = ACTIONS(2541), + [anon_sym_STAR2] = ACTIONS(2543), + [anon_sym_and2] = ACTIONS(2541), + [anon_sym_xor2] = ACTIONS(2541), + [anon_sym_or2] = ACTIONS(2541), + [anon_sym_not_DASHin2] = ACTIONS(2541), + [anon_sym_has2] = ACTIONS(2541), + [anon_sym_not_DASHhas2] = ACTIONS(2541), + [anon_sym_starts_DASHwith2] = ACTIONS(2541), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2541), + [anon_sym_ends_DASHwith2] = ACTIONS(2541), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2541), + [anon_sym_EQ_EQ2] = ACTIONS(2541), + [anon_sym_BANG_EQ2] = ACTIONS(2541), + [anon_sym_LT2] = ACTIONS(2543), + [anon_sym_LT_EQ2] = ACTIONS(2541), + [anon_sym_GT_EQ2] = ACTIONS(2541), + [anon_sym_EQ_TILDE2] = ACTIONS(2541), + [anon_sym_BANG_TILDE2] = ACTIONS(2541), + [anon_sym_like2] = ACTIONS(2541), + [anon_sym_not_DASHlike2] = ACTIONS(2541), + [anon_sym_STAR_STAR2] = ACTIONS(2541), + [anon_sym_PLUS_PLUS2] = ACTIONS(2541), + [anon_sym_SLASH2] = ACTIONS(2543), + [anon_sym_mod2] = ACTIONS(2541), + [anon_sym_SLASH_SLASH2] = ACTIONS(2541), + [anon_sym_PLUS2] = ACTIONS(2543), + [anon_sym_bit_DASHshl2] = ACTIONS(2541), + [anon_sym_bit_DASHshr2] = ACTIONS(2541), + [anon_sym_bit_DASHand2] = ACTIONS(2541), + [anon_sym_bit_DASHxor2] = ACTIONS(2541), + [anon_sym_bit_DASHor2] = ACTIONS(2541), + [anon_sym_err_GT] = ACTIONS(2543), + [anon_sym_out_GT] = ACTIONS(2543), + [anon_sym_e_GT] = ACTIONS(2543), + [anon_sym_o_GT] = ACTIONS(2543), + [anon_sym_err_PLUSout_GT] = ACTIONS(2543), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2543), + [anon_sym_o_PLUSe_GT] = ACTIONS(2543), + [anon_sym_e_PLUSo_GT] = ACTIONS(2543), + [anon_sym_err_GT_GT] = ACTIONS(2541), + [anon_sym_out_GT_GT] = ACTIONS(2541), + [anon_sym_e_GT_GT] = ACTIONS(2541), + [anon_sym_o_GT_GT] = ACTIONS(2541), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2541), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2541), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2541), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2541), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1036)] = { - [aux_sym__repeat_newline] = STATE(1091), + [sym__expr_parenthesized_immediate] = STATE(5483), [sym_comment] = STATE(1036), - [anon_sym_in] = ACTIONS(2337), - [sym__newline] = ACTIONS(2337), - [anon_sym_SEMI] = ACTIONS(2337), - [anon_sym_PIPE] = ACTIONS(2337), - [anon_sym_err_GT_PIPE] = ACTIONS(2337), - [anon_sym_out_GT_PIPE] = ACTIONS(2337), - [anon_sym_e_GT_PIPE] = ACTIONS(2337), - [anon_sym_o_GT_PIPE] = ACTIONS(2337), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2337), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2337), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2337), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2337), - [anon_sym_RPAREN] = ACTIONS(2337), - [anon_sym_GT2] = ACTIONS(2339), - [anon_sym_DASH2] = ACTIONS(2337), - [anon_sym_LBRACE] = ACTIONS(2337), - [anon_sym_STAR2] = ACTIONS(2339), - [anon_sym_and2] = ACTIONS(2337), - [anon_sym_xor2] = ACTIONS(2337), - [anon_sym_or2] = ACTIONS(2337), - [anon_sym_not_DASHin2] = ACTIONS(2337), - [anon_sym_has2] = ACTIONS(2337), - [anon_sym_not_DASHhas2] = ACTIONS(2337), - [anon_sym_starts_DASHwith2] = ACTIONS(2337), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2337), - [anon_sym_ends_DASHwith2] = ACTIONS(2337), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2337), - [anon_sym_EQ_EQ2] = ACTIONS(2337), - [anon_sym_BANG_EQ2] = ACTIONS(2337), - [anon_sym_LT2] = ACTIONS(2339), - [anon_sym_LT_EQ2] = ACTIONS(2337), - [anon_sym_GT_EQ2] = ACTIONS(2337), - [anon_sym_EQ_TILDE2] = ACTIONS(2337), - [anon_sym_BANG_TILDE2] = ACTIONS(2337), - [anon_sym_like2] = ACTIONS(2337), - [anon_sym_not_DASHlike2] = ACTIONS(2337), - [anon_sym_STAR_STAR2] = ACTIONS(2337), - [anon_sym_PLUS_PLUS2] = ACTIONS(2337), - [anon_sym_SLASH2] = ACTIONS(2339), - [anon_sym_mod2] = ACTIONS(2337), - [anon_sym_SLASH_SLASH2] = ACTIONS(2337), - [anon_sym_PLUS2] = ACTIONS(2339), - [anon_sym_bit_DASHshl2] = ACTIONS(2337), - [anon_sym_bit_DASHshr2] = ACTIONS(2337), - [anon_sym_bit_DASHand2] = ACTIONS(2337), - [anon_sym_bit_DASHxor2] = ACTIONS(2337), - [anon_sym_bit_DASHor2] = ACTIONS(2337), - [anon_sym_err_GT] = ACTIONS(2339), - [anon_sym_out_GT] = ACTIONS(2339), - [anon_sym_e_GT] = ACTIONS(2339), - [anon_sym_o_GT] = ACTIONS(2339), - [anon_sym_err_PLUSout_GT] = ACTIONS(2339), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2339), - [anon_sym_o_PLUSe_GT] = ACTIONS(2339), - [anon_sym_e_PLUSo_GT] = ACTIONS(2339), - [anon_sym_err_GT_GT] = ACTIONS(2337), - [anon_sym_out_GT_GT] = ACTIONS(2337), - [anon_sym_e_GT_GT] = ACTIONS(2337), - [anon_sym_o_GT_GT] = ACTIONS(2337), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2337), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2337), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2337), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2337), + [ts_builtin_sym_end] = ACTIONS(2136), + [anon_sym_in] = ACTIONS(2136), + [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(2136), + [anon_sym_STAR2] = ACTIONS(2138), + [anon_sym_and2] = ACTIONS(2136), + [anon_sym_xor2] = ACTIONS(2136), + [anon_sym_or2] = ACTIONS(2136), + [anon_sym_not_DASHin2] = ACTIONS(2136), + [anon_sym_has2] = ACTIONS(2136), + [anon_sym_not_DASHhas2] = ACTIONS(2136), + [anon_sym_starts_DASHwith2] = ACTIONS(2136), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2136), + [anon_sym_ends_DASHwith2] = ACTIONS(2136), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2136), + [anon_sym_EQ_EQ2] = ACTIONS(2136), + [anon_sym_BANG_EQ2] = ACTIONS(2136), + [anon_sym_LT2] = ACTIONS(2138), + [anon_sym_LT_EQ2] = ACTIONS(2136), + [anon_sym_GT_EQ2] = ACTIONS(2136), + [anon_sym_EQ_TILDE2] = ACTIONS(2136), + [anon_sym_BANG_TILDE2] = ACTIONS(2136), + [anon_sym_like2] = ACTIONS(2136), + [anon_sym_not_DASHlike2] = ACTIONS(2136), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_STAR_STAR2] = ACTIONS(2136), + [anon_sym_PLUS_PLUS2] = ACTIONS(2136), + [anon_sym_SLASH2] = ACTIONS(2138), + [anon_sym_mod2] = ACTIONS(2136), + [anon_sym_SLASH_SLASH2] = ACTIONS(2136), + [anon_sym_PLUS2] = ACTIONS(2138), + [anon_sym_bit_DASHshl2] = ACTIONS(2136), + [anon_sym_bit_DASHshr2] = ACTIONS(2136), + [anon_sym_bit_DASHand2] = ACTIONS(2136), + [anon_sym_bit_DASHxor2] = ACTIONS(2136), + [anon_sym_bit_DASHor2] = ACTIONS(2136), + [anon_sym_err_GT] = ACTIONS(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(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(1037)] = { - [aux_sym__repeat_newline] = STATE(989), + [sym__expr_parenthesized_immediate] = STATE(4973), [sym_comment] = STATE(1037), - [anon_sym_in] = ACTIONS(2302), - [sym__newline] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_PIPE] = ACTIONS(2302), - [anon_sym_err_GT_PIPE] = ACTIONS(2302), - [anon_sym_out_GT_PIPE] = ACTIONS(2302), - [anon_sym_e_GT_PIPE] = ACTIONS(2302), - [anon_sym_o_GT_PIPE] = ACTIONS(2302), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2302), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2302), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2302), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2302), - [anon_sym_RPAREN] = ACTIONS(2302), - [anon_sym_GT2] = ACTIONS(2304), - [anon_sym_DASH2] = ACTIONS(2302), - [anon_sym_LBRACE] = ACTIONS(2302), - [anon_sym_STAR2] = ACTIONS(2304), - [anon_sym_and2] = ACTIONS(2302), - [anon_sym_xor2] = ACTIONS(2302), - [anon_sym_or2] = ACTIONS(2302), - [anon_sym_not_DASHin2] = ACTIONS(2302), - [anon_sym_has2] = ACTIONS(2302), - [anon_sym_not_DASHhas2] = ACTIONS(2302), - [anon_sym_starts_DASHwith2] = ACTIONS(2302), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2302), - [anon_sym_ends_DASHwith2] = ACTIONS(2302), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2302), - [anon_sym_EQ_EQ2] = ACTIONS(2302), - [anon_sym_BANG_EQ2] = ACTIONS(2302), - [anon_sym_LT2] = ACTIONS(2304), - [anon_sym_LT_EQ2] = ACTIONS(2302), - [anon_sym_GT_EQ2] = ACTIONS(2302), - [anon_sym_EQ_TILDE2] = ACTIONS(2302), - [anon_sym_BANG_TILDE2] = ACTIONS(2302), - [anon_sym_like2] = ACTIONS(2302), - [anon_sym_not_DASHlike2] = ACTIONS(2302), - [anon_sym_STAR_STAR2] = ACTIONS(2302), - [anon_sym_PLUS_PLUS2] = ACTIONS(2302), - [anon_sym_SLASH2] = ACTIONS(2304), - [anon_sym_mod2] = ACTIONS(2302), - [anon_sym_SLASH_SLASH2] = ACTIONS(2302), - [anon_sym_PLUS2] = ACTIONS(2304), - [anon_sym_bit_DASHshl2] = ACTIONS(2302), - [anon_sym_bit_DASHshr2] = ACTIONS(2302), - [anon_sym_bit_DASHand2] = ACTIONS(2302), - [anon_sym_bit_DASHxor2] = ACTIONS(2302), - [anon_sym_bit_DASHor2] = ACTIONS(2302), - [anon_sym_err_GT] = ACTIONS(2304), - [anon_sym_out_GT] = ACTIONS(2304), - [anon_sym_e_GT] = ACTIONS(2304), - [anon_sym_o_GT] = ACTIONS(2304), - [anon_sym_err_PLUSout_GT] = ACTIONS(2304), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2304), - [anon_sym_o_PLUSe_GT] = ACTIONS(2304), - [anon_sym_e_PLUSo_GT] = ACTIONS(2304), - [anon_sym_err_GT_GT] = ACTIONS(2302), - [anon_sym_out_GT_GT] = ACTIONS(2302), - [anon_sym_e_GT_GT] = ACTIONS(2302), - [anon_sym_o_GT_GT] = ACTIONS(2302), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2302), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2302), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2302), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2302), + [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(1818), + [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_POUND] = ACTIONS(3), }, [STATE(1038)] = { - [aux_sym__repeat_newline] = STATE(527), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1038), - [anon_sym_in] = ACTIONS(2734), - [sym__newline] = ACTIONS(2734), - [anon_sym_SEMI] = ACTIONS(2734), - [anon_sym_PIPE] = ACTIONS(2734), - [anon_sym_err_GT_PIPE] = ACTIONS(2734), - [anon_sym_out_GT_PIPE] = ACTIONS(2734), - [anon_sym_e_GT_PIPE] = ACTIONS(2734), - [anon_sym_o_GT_PIPE] = ACTIONS(2734), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2734), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2734), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2734), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2734), - [anon_sym_RPAREN] = ACTIONS(2734), - [anon_sym_GT2] = ACTIONS(2736), - [anon_sym_DASH2] = ACTIONS(2734), - [anon_sym_LBRACE] = ACTIONS(2734), - [anon_sym_STAR2] = ACTIONS(2736), - [anon_sym_and2] = ACTIONS(2734), - [anon_sym_xor2] = ACTIONS(2734), - [anon_sym_or2] = ACTIONS(2734), - [anon_sym_not_DASHin2] = ACTIONS(2734), - [anon_sym_has2] = ACTIONS(2734), - [anon_sym_not_DASHhas2] = ACTIONS(2734), - [anon_sym_starts_DASHwith2] = ACTIONS(2734), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2734), - [anon_sym_ends_DASHwith2] = ACTIONS(2734), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2734), - [anon_sym_EQ_EQ2] = ACTIONS(2734), - [anon_sym_BANG_EQ2] = ACTIONS(2734), - [anon_sym_LT2] = ACTIONS(2736), - [anon_sym_LT_EQ2] = ACTIONS(2734), - [anon_sym_GT_EQ2] = ACTIONS(2734), - [anon_sym_EQ_TILDE2] = ACTIONS(2734), - [anon_sym_BANG_TILDE2] = ACTIONS(2734), - [anon_sym_like2] = ACTIONS(2734), - [anon_sym_not_DASHlike2] = ACTIONS(2734), - [anon_sym_STAR_STAR2] = ACTIONS(2734), - [anon_sym_PLUS_PLUS2] = ACTIONS(2734), - [anon_sym_SLASH2] = ACTIONS(2736), - [anon_sym_mod2] = ACTIONS(2734), - [anon_sym_SLASH_SLASH2] = ACTIONS(2734), - [anon_sym_PLUS2] = ACTIONS(2736), - [anon_sym_bit_DASHshl2] = ACTIONS(2734), - [anon_sym_bit_DASHshr2] = ACTIONS(2734), - [anon_sym_bit_DASHand2] = ACTIONS(2734), - [anon_sym_bit_DASHxor2] = ACTIONS(2734), - [anon_sym_bit_DASHor2] = ACTIONS(2734), - [anon_sym_err_GT] = ACTIONS(2736), - [anon_sym_out_GT] = ACTIONS(2736), - [anon_sym_e_GT] = ACTIONS(2736), - [anon_sym_o_GT] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT] = ACTIONS(2736), - [anon_sym_err_GT_GT] = ACTIONS(2734), - [anon_sym_out_GT_GT] = ACTIONS(2734), - [anon_sym_e_GT_GT] = ACTIONS(2734), - [anon_sym_o_GT_GT] = ACTIONS(2734), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2734), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2734), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2734), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2734), + [anon_sym_in] = ACTIONS(2780), + [sym__newline] = ACTIONS(2780), + [anon_sym_SEMI] = ACTIONS(2780), + [anon_sym_PIPE] = ACTIONS(2780), + [anon_sym_err_GT_PIPE] = ACTIONS(2780), + [anon_sym_out_GT_PIPE] = ACTIONS(2780), + [anon_sym_e_GT_PIPE] = ACTIONS(2780), + [anon_sym_o_GT_PIPE] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2780), + [anon_sym_RPAREN] = ACTIONS(2780), + [anon_sym_GT2] = ACTIONS(2782), + [anon_sym_DASH2] = ACTIONS(2780), + [anon_sym_LBRACE] = ACTIONS(2780), + [anon_sym_STAR2] = ACTIONS(2782), + [anon_sym_and2] = ACTIONS(2780), + [anon_sym_xor2] = ACTIONS(2780), + [anon_sym_or2] = ACTIONS(2780), + [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(2780), + [anon_sym_BANG_EQ2] = ACTIONS(2780), + [anon_sym_LT2] = ACTIONS(2782), + [anon_sym_LT_EQ2] = ACTIONS(2780), + [anon_sym_GT_EQ2] = ACTIONS(2780), + [anon_sym_EQ_TILDE2] = ACTIONS(2780), + [anon_sym_BANG_TILDE2] = ACTIONS(2780), + [anon_sym_like2] = ACTIONS(2780), + [anon_sym_not_DASHlike2] = ACTIONS(2780), + [anon_sym_STAR_STAR2] = ACTIONS(2780), + [anon_sym_PLUS_PLUS2] = ACTIONS(2780), + [anon_sym_SLASH2] = ACTIONS(2782), + [anon_sym_mod2] = ACTIONS(2780), + [anon_sym_SLASH_SLASH2] = ACTIONS(2780), + [anon_sym_PLUS2] = ACTIONS(2782), + [anon_sym_bit_DASHshl2] = ACTIONS(2780), + [anon_sym_bit_DASHshr2] = ACTIONS(2780), + [anon_sym_bit_DASHand2] = ACTIONS(2780), + [anon_sym_bit_DASHxor2] = ACTIONS(2780), + [anon_sym_bit_DASHor2] = ACTIONS(2780), + [anon_sym_err_GT] = ACTIONS(2782), + [anon_sym_out_GT] = ACTIONS(2782), + [anon_sym_e_GT] = ACTIONS(2782), + [anon_sym_o_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT] = ACTIONS(2782), + [anon_sym_err_GT_GT] = ACTIONS(2780), + [anon_sym_out_GT_GT] = ACTIONS(2780), + [anon_sym_e_GT_GT] = ACTIONS(2780), + [anon_sym_o_GT_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2780), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1039)] = { - [aux_sym__repeat_newline] = STATE(527), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1039), - [anon_sym_in] = ACTIONS(2734), - [sym__newline] = ACTIONS(2734), - [anon_sym_SEMI] = ACTIONS(2734), - [anon_sym_PIPE] = ACTIONS(2734), - [anon_sym_err_GT_PIPE] = ACTIONS(2734), - [anon_sym_out_GT_PIPE] = ACTIONS(2734), - [anon_sym_e_GT_PIPE] = ACTIONS(2734), - [anon_sym_o_GT_PIPE] = ACTIONS(2734), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2734), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2734), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2734), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2734), - [anon_sym_RPAREN] = ACTIONS(2734), - [anon_sym_GT2] = ACTIONS(2736), - [anon_sym_DASH2] = ACTIONS(2734), - [anon_sym_LBRACE] = ACTIONS(2734), - [anon_sym_STAR2] = ACTIONS(2736), - [anon_sym_and2] = ACTIONS(2734), - [anon_sym_xor2] = ACTIONS(2734), - [anon_sym_or2] = ACTIONS(2734), - [anon_sym_not_DASHin2] = ACTIONS(2734), - [anon_sym_has2] = ACTIONS(2734), - [anon_sym_not_DASHhas2] = ACTIONS(2734), - [anon_sym_starts_DASHwith2] = ACTIONS(2734), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2734), - [anon_sym_ends_DASHwith2] = ACTIONS(2734), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2734), - [anon_sym_EQ_EQ2] = ACTIONS(2734), - [anon_sym_BANG_EQ2] = ACTIONS(2734), - [anon_sym_LT2] = ACTIONS(2736), - [anon_sym_LT_EQ2] = ACTIONS(2734), - [anon_sym_GT_EQ2] = ACTIONS(2734), - [anon_sym_EQ_TILDE2] = ACTIONS(2734), - [anon_sym_BANG_TILDE2] = ACTIONS(2734), - [anon_sym_like2] = ACTIONS(2734), - [anon_sym_not_DASHlike2] = ACTIONS(2734), - [anon_sym_STAR_STAR2] = ACTIONS(2734), - [anon_sym_PLUS_PLUS2] = ACTIONS(2734), - [anon_sym_SLASH2] = ACTIONS(2736), - [anon_sym_mod2] = ACTIONS(2734), - [anon_sym_SLASH_SLASH2] = ACTIONS(2734), - [anon_sym_PLUS2] = ACTIONS(2736), - [anon_sym_bit_DASHshl2] = ACTIONS(2734), - [anon_sym_bit_DASHshr2] = ACTIONS(2734), - [anon_sym_bit_DASHand2] = ACTIONS(2734), - [anon_sym_bit_DASHxor2] = ACTIONS(2734), - [anon_sym_bit_DASHor2] = ACTIONS(2734), - [anon_sym_err_GT] = ACTIONS(2736), - [anon_sym_out_GT] = ACTIONS(2736), - [anon_sym_e_GT] = ACTIONS(2736), - [anon_sym_o_GT] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT] = ACTIONS(2736), - [anon_sym_err_GT_GT] = ACTIONS(2734), - [anon_sym_out_GT_GT] = ACTIONS(2734), - [anon_sym_e_GT_GT] = ACTIONS(2734), - [anon_sym_o_GT_GT] = ACTIONS(2734), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2734), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2734), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2734), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2734), + [anon_sym_in] = ACTIONS(2780), + [sym__newline] = ACTIONS(2780), + [anon_sym_SEMI] = ACTIONS(2780), + [anon_sym_PIPE] = ACTIONS(2780), + [anon_sym_err_GT_PIPE] = ACTIONS(2780), + [anon_sym_out_GT_PIPE] = ACTIONS(2780), + [anon_sym_e_GT_PIPE] = ACTIONS(2780), + [anon_sym_o_GT_PIPE] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2780), + [anon_sym_RPAREN] = ACTIONS(2780), + [anon_sym_GT2] = ACTIONS(2782), + [anon_sym_DASH2] = ACTIONS(2780), + [anon_sym_LBRACE] = ACTIONS(2780), + [anon_sym_STAR2] = ACTIONS(2782), + [anon_sym_and2] = ACTIONS(2780), + [anon_sym_xor2] = ACTIONS(2780), + [anon_sym_or2] = ACTIONS(2780), + [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(2780), + [anon_sym_BANG_EQ2] = ACTIONS(2780), + [anon_sym_LT2] = ACTIONS(2782), + [anon_sym_LT_EQ2] = ACTIONS(2780), + [anon_sym_GT_EQ2] = ACTIONS(2780), + [anon_sym_EQ_TILDE2] = ACTIONS(2780), + [anon_sym_BANG_TILDE2] = ACTIONS(2780), + [anon_sym_like2] = ACTIONS(2780), + [anon_sym_not_DASHlike2] = ACTIONS(2780), + [anon_sym_STAR_STAR2] = ACTIONS(2780), + [anon_sym_PLUS_PLUS2] = ACTIONS(2780), + [anon_sym_SLASH2] = ACTIONS(2782), + [anon_sym_mod2] = ACTIONS(2780), + [anon_sym_SLASH_SLASH2] = ACTIONS(2780), + [anon_sym_PLUS2] = ACTIONS(2782), + [anon_sym_bit_DASHshl2] = ACTIONS(2780), + [anon_sym_bit_DASHshr2] = ACTIONS(2780), + [anon_sym_bit_DASHand2] = ACTIONS(2780), + [anon_sym_bit_DASHxor2] = ACTIONS(2780), + [anon_sym_bit_DASHor2] = ACTIONS(2780), + [anon_sym_err_GT] = ACTIONS(2782), + [anon_sym_out_GT] = ACTIONS(2782), + [anon_sym_e_GT] = ACTIONS(2782), + [anon_sym_o_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT] = ACTIONS(2782), + [anon_sym_err_GT_GT] = ACTIONS(2780), + [anon_sym_out_GT_GT] = ACTIONS(2780), + [anon_sym_e_GT_GT] = ACTIONS(2780), + [anon_sym_o_GT_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2780), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1040)] = { - [aux_sym__repeat_newline] = STATE(527), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1040), - [anon_sym_in] = ACTIONS(2734), - [sym__newline] = ACTIONS(2734), - [anon_sym_SEMI] = ACTIONS(2734), - [anon_sym_PIPE] = ACTIONS(2734), - [anon_sym_err_GT_PIPE] = ACTIONS(2734), - [anon_sym_out_GT_PIPE] = ACTIONS(2734), - [anon_sym_e_GT_PIPE] = ACTIONS(2734), - [anon_sym_o_GT_PIPE] = ACTIONS(2734), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2734), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2734), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2734), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2734), - [anon_sym_RPAREN] = ACTIONS(2734), - [anon_sym_GT2] = ACTIONS(2736), - [anon_sym_DASH2] = ACTIONS(2734), - [anon_sym_LBRACE] = ACTIONS(2734), - [anon_sym_STAR2] = ACTIONS(2736), - [anon_sym_and2] = ACTIONS(2734), - [anon_sym_xor2] = ACTIONS(2734), - [anon_sym_or2] = ACTIONS(2734), - [anon_sym_not_DASHin2] = ACTIONS(2734), - [anon_sym_has2] = ACTIONS(2734), - [anon_sym_not_DASHhas2] = ACTIONS(2734), - [anon_sym_starts_DASHwith2] = ACTIONS(2734), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2734), - [anon_sym_ends_DASHwith2] = ACTIONS(2734), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2734), - [anon_sym_EQ_EQ2] = ACTIONS(2734), - [anon_sym_BANG_EQ2] = ACTIONS(2734), - [anon_sym_LT2] = ACTIONS(2736), - [anon_sym_LT_EQ2] = ACTIONS(2734), - [anon_sym_GT_EQ2] = ACTIONS(2734), - [anon_sym_EQ_TILDE2] = ACTIONS(2734), - [anon_sym_BANG_TILDE2] = ACTIONS(2734), - [anon_sym_like2] = ACTIONS(2734), - [anon_sym_not_DASHlike2] = ACTIONS(2734), - [anon_sym_STAR_STAR2] = ACTIONS(2734), - [anon_sym_PLUS_PLUS2] = ACTIONS(2734), - [anon_sym_SLASH2] = ACTIONS(2736), - [anon_sym_mod2] = ACTIONS(2734), - [anon_sym_SLASH_SLASH2] = ACTIONS(2734), - [anon_sym_PLUS2] = ACTIONS(2736), - [anon_sym_bit_DASHshl2] = ACTIONS(2734), - [anon_sym_bit_DASHshr2] = ACTIONS(2734), - [anon_sym_bit_DASHand2] = ACTIONS(2734), - [anon_sym_bit_DASHxor2] = ACTIONS(2734), - [anon_sym_bit_DASHor2] = ACTIONS(2734), - [anon_sym_err_GT] = ACTIONS(2736), - [anon_sym_out_GT] = ACTIONS(2736), - [anon_sym_e_GT] = ACTIONS(2736), - [anon_sym_o_GT] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT] = ACTIONS(2736), - [anon_sym_err_GT_GT] = ACTIONS(2734), - [anon_sym_out_GT_GT] = ACTIONS(2734), - [anon_sym_e_GT_GT] = ACTIONS(2734), - [anon_sym_o_GT_GT] = ACTIONS(2734), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2734), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2734), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2734), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2734), + [anon_sym_in] = ACTIONS(2780), + [sym__newline] = ACTIONS(2780), + [anon_sym_SEMI] = ACTIONS(2780), + [anon_sym_PIPE] = ACTIONS(2780), + [anon_sym_err_GT_PIPE] = ACTIONS(2780), + [anon_sym_out_GT_PIPE] = ACTIONS(2780), + [anon_sym_e_GT_PIPE] = ACTIONS(2780), + [anon_sym_o_GT_PIPE] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2780), + [anon_sym_RPAREN] = ACTIONS(2780), + [anon_sym_GT2] = ACTIONS(2782), + [anon_sym_DASH2] = ACTIONS(2780), + [anon_sym_LBRACE] = ACTIONS(2780), + [anon_sym_STAR2] = ACTIONS(2782), + [anon_sym_and2] = ACTIONS(2780), + [anon_sym_xor2] = ACTIONS(2780), + [anon_sym_or2] = ACTIONS(2780), + [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(2780), + [anon_sym_BANG_EQ2] = ACTIONS(2780), + [anon_sym_LT2] = ACTIONS(2782), + [anon_sym_LT_EQ2] = ACTIONS(2780), + [anon_sym_GT_EQ2] = ACTIONS(2780), + [anon_sym_EQ_TILDE2] = ACTIONS(2780), + [anon_sym_BANG_TILDE2] = ACTIONS(2780), + [anon_sym_like2] = ACTIONS(2780), + [anon_sym_not_DASHlike2] = ACTIONS(2780), + [anon_sym_STAR_STAR2] = ACTIONS(2780), + [anon_sym_PLUS_PLUS2] = ACTIONS(2780), + [anon_sym_SLASH2] = ACTIONS(2782), + [anon_sym_mod2] = ACTIONS(2780), + [anon_sym_SLASH_SLASH2] = ACTIONS(2780), + [anon_sym_PLUS2] = ACTIONS(2782), + [anon_sym_bit_DASHshl2] = ACTIONS(2780), + [anon_sym_bit_DASHshr2] = ACTIONS(2780), + [anon_sym_bit_DASHand2] = ACTIONS(2780), + [anon_sym_bit_DASHxor2] = ACTIONS(2780), + [anon_sym_bit_DASHor2] = ACTIONS(2780), + [anon_sym_err_GT] = ACTIONS(2782), + [anon_sym_out_GT] = ACTIONS(2782), + [anon_sym_e_GT] = ACTIONS(2782), + [anon_sym_o_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT] = ACTIONS(2782), + [anon_sym_err_GT_GT] = ACTIONS(2780), + [anon_sym_out_GT_GT] = ACTIONS(2780), + [anon_sym_e_GT_GT] = ACTIONS(2780), + [anon_sym_o_GT_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2780), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1041)] = { - [aux_sym__repeat_newline] = STATE(527), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1041), - [anon_sym_in] = ACTIONS(2734), - [sym__newline] = ACTIONS(2734), - [anon_sym_SEMI] = ACTIONS(2734), - [anon_sym_PIPE] = ACTIONS(2734), - [anon_sym_err_GT_PIPE] = ACTIONS(2734), - [anon_sym_out_GT_PIPE] = ACTIONS(2734), - [anon_sym_e_GT_PIPE] = ACTIONS(2734), - [anon_sym_o_GT_PIPE] = ACTIONS(2734), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2734), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2734), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2734), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2734), - [anon_sym_RPAREN] = ACTIONS(2734), - [anon_sym_GT2] = ACTIONS(2736), - [anon_sym_DASH2] = ACTIONS(2734), - [anon_sym_LBRACE] = ACTIONS(2734), - [anon_sym_STAR2] = ACTIONS(2736), - [anon_sym_and2] = ACTIONS(2734), - [anon_sym_xor2] = ACTIONS(2734), - [anon_sym_or2] = ACTIONS(2734), - [anon_sym_not_DASHin2] = ACTIONS(2734), - [anon_sym_has2] = ACTIONS(2734), - [anon_sym_not_DASHhas2] = ACTIONS(2734), - [anon_sym_starts_DASHwith2] = ACTIONS(2734), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2734), - [anon_sym_ends_DASHwith2] = ACTIONS(2734), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2734), - [anon_sym_EQ_EQ2] = ACTIONS(2734), - [anon_sym_BANG_EQ2] = ACTIONS(2734), - [anon_sym_LT2] = ACTIONS(2736), - [anon_sym_LT_EQ2] = ACTIONS(2734), - [anon_sym_GT_EQ2] = ACTIONS(2734), - [anon_sym_EQ_TILDE2] = ACTIONS(2734), - [anon_sym_BANG_TILDE2] = ACTIONS(2734), - [anon_sym_like2] = ACTIONS(2734), - [anon_sym_not_DASHlike2] = ACTIONS(2734), - [anon_sym_STAR_STAR2] = ACTIONS(2734), - [anon_sym_PLUS_PLUS2] = ACTIONS(2734), - [anon_sym_SLASH2] = ACTIONS(2736), - [anon_sym_mod2] = ACTIONS(2734), - [anon_sym_SLASH_SLASH2] = ACTIONS(2734), - [anon_sym_PLUS2] = ACTIONS(2736), - [anon_sym_bit_DASHshl2] = ACTIONS(2734), - [anon_sym_bit_DASHshr2] = ACTIONS(2734), - [anon_sym_bit_DASHand2] = ACTIONS(2734), - [anon_sym_bit_DASHxor2] = ACTIONS(2734), - [anon_sym_bit_DASHor2] = ACTIONS(2734), - [anon_sym_err_GT] = ACTIONS(2736), - [anon_sym_out_GT] = ACTIONS(2736), - [anon_sym_e_GT] = ACTIONS(2736), - [anon_sym_o_GT] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT] = ACTIONS(2736), - [anon_sym_err_GT_GT] = ACTIONS(2734), - [anon_sym_out_GT_GT] = ACTIONS(2734), - [anon_sym_e_GT_GT] = ACTIONS(2734), - [anon_sym_o_GT_GT] = ACTIONS(2734), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2734), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2734), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2734), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2734), + [anon_sym_in] = ACTIONS(2780), + [sym__newline] = ACTIONS(2780), + [anon_sym_SEMI] = ACTIONS(2780), + [anon_sym_PIPE] = ACTIONS(2780), + [anon_sym_err_GT_PIPE] = ACTIONS(2780), + [anon_sym_out_GT_PIPE] = ACTIONS(2780), + [anon_sym_e_GT_PIPE] = ACTIONS(2780), + [anon_sym_o_GT_PIPE] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2780), + [anon_sym_RPAREN] = ACTIONS(2780), + [anon_sym_GT2] = ACTIONS(2782), + [anon_sym_DASH2] = ACTIONS(2780), + [anon_sym_LBRACE] = ACTIONS(2780), + [anon_sym_STAR2] = ACTIONS(2782), + [anon_sym_and2] = ACTIONS(2780), + [anon_sym_xor2] = ACTIONS(2780), + [anon_sym_or2] = ACTIONS(2780), + [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(2780), + [anon_sym_BANG_EQ2] = ACTIONS(2780), + [anon_sym_LT2] = ACTIONS(2782), + [anon_sym_LT_EQ2] = ACTIONS(2780), + [anon_sym_GT_EQ2] = ACTIONS(2780), + [anon_sym_EQ_TILDE2] = ACTIONS(2780), + [anon_sym_BANG_TILDE2] = ACTIONS(2780), + [anon_sym_like2] = ACTIONS(2780), + [anon_sym_not_DASHlike2] = ACTIONS(2780), + [anon_sym_STAR_STAR2] = ACTIONS(2780), + [anon_sym_PLUS_PLUS2] = ACTIONS(2780), + [anon_sym_SLASH2] = ACTIONS(2782), + [anon_sym_mod2] = ACTIONS(2780), + [anon_sym_SLASH_SLASH2] = ACTIONS(2780), + [anon_sym_PLUS2] = ACTIONS(2782), + [anon_sym_bit_DASHshl2] = ACTIONS(2780), + [anon_sym_bit_DASHshr2] = ACTIONS(2780), + [anon_sym_bit_DASHand2] = ACTIONS(2780), + [anon_sym_bit_DASHxor2] = ACTIONS(2780), + [anon_sym_bit_DASHor2] = ACTIONS(2780), + [anon_sym_err_GT] = ACTIONS(2782), + [anon_sym_out_GT] = ACTIONS(2782), + [anon_sym_e_GT] = ACTIONS(2782), + [anon_sym_o_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT] = ACTIONS(2782), + [anon_sym_err_GT_GT] = ACTIONS(2780), + [anon_sym_out_GT_GT] = ACTIONS(2780), + [anon_sym_e_GT_GT] = ACTIONS(2780), + [anon_sym_o_GT_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2780), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1042)] = { - [aux_sym__repeat_newline] = STATE(527), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1042), - [anon_sym_in] = ACTIONS(2734), - [sym__newline] = ACTIONS(2734), - [anon_sym_SEMI] = ACTIONS(2734), - [anon_sym_PIPE] = ACTIONS(2734), - [anon_sym_err_GT_PIPE] = ACTIONS(2734), - [anon_sym_out_GT_PIPE] = ACTIONS(2734), - [anon_sym_e_GT_PIPE] = ACTIONS(2734), - [anon_sym_o_GT_PIPE] = ACTIONS(2734), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2734), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2734), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2734), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2734), - [anon_sym_RPAREN] = ACTIONS(2734), - [anon_sym_GT2] = ACTIONS(2736), - [anon_sym_DASH2] = ACTIONS(2734), - [anon_sym_LBRACE] = ACTIONS(2734), - [anon_sym_STAR2] = ACTIONS(2736), - [anon_sym_and2] = ACTIONS(2734), - [anon_sym_xor2] = ACTIONS(2734), - [anon_sym_or2] = ACTIONS(2734), - [anon_sym_not_DASHin2] = ACTIONS(2734), - [anon_sym_has2] = ACTIONS(2734), - [anon_sym_not_DASHhas2] = ACTIONS(2734), - [anon_sym_starts_DASHwith2] = ACTIONS(2734), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2734), - [anon_sym_ends_DASHwith2] = ACTIONS(2734), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2734), - [anon_sym_EQ_EQ2] = ACTIONS(2734), - [anon_sym_BANG_EQ2] = ACTIONS(2734), - [anon_sym_LT2] = ACTIONS(2736), - [anon_sym_LT_EQ2] = ACTIONS(2734), - [anon_sym_GT_EQ2] = ACTIONS(2734), - [anon_sym_EQ_TILDE2] = ACTIONS(2734), - [anon_sym_BANG_TILDE2] = ACTIONS(2734), - [anon_sym_like2] = ACTIONS(2734), - [anon_sym_not_DASHlike2] = ACTIONS(2734), - [anon_sym_STAR_STAR2] = ACTIONS(2734), - [anon_sym_PLUS_PLUS2] = ACTIONS(2734), - [anon_sym_SLASH2] = ACTIONS(2736), - [anon_sym_mod2] = ACTIONS(2734), - [anon_sym_SLASH_SLASH2] = ACTIONS(2734), - [anon_sym_PLUS2] = ACTIONS(2736), - [anon_sym_bit_DASHshl2] = ACTIONS(2734), - [anon_sym_bit_DASHshr2] = ACTIONS(2734), - [anon_sym_bit_DASHand2] = ACTIONS(2734), - [anon_sym_bit_DASHxor2] = ACTIONS(2734), - [anon_sym_bit_DASHor2] = ACTIONS(2734), - [anon_sym_err_GT] = ACTIONS(2736), - [anon_sym_out_GT] = ACTIONS(2736), - [anon_sym_e_GT] = ACTIONS(2736), - [anon_sym_o_GT] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT] = ACTIONS(2736), - [anon_sym_err_GT_GT] = ACTIONS(2734), - [anon_sym_out_GT_GT] = ACTIONS(2734), - [anon_sym_e_GT_GT] = ACTIONS(2734), - [anon_sym_o_GT_GT] = ACTIONS(2734), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2734), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2734), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2734), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2734), + [anon_sym_in] = ACTIONS(2780), + [sym__newline] = ACTIONS(2780), + [anon_sym_SEMI] = ACTIONS(2780), + [anon_sym_PIPE] = ACTIONS(2780), + [anon_sym_err_GT_PIPE] = ACTIONS(2780), + [anon_sym_out_GT_PIPE] = ACTIONS(2780), + [anon_sym_e_GT_PIPE] = ACTIONS(2780), + [anon_sym_o_GT_PIPE] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2780), + [anon_sym_RPAREN] = ACTIONS(2780), + [anon_sym_GT2] = ACTIONS(2782), + [anon_sym_DASH2] = ACTIONS(2780), + [anon_sym_LBRACE] = ACTIONS(2780), + [anon_sym_STAR2] = ACTIONS(2782), + [anon_sym_and2] = ACTIONS(2780), + [anon_sym_xor2] = ACTIONS(2780), + [anon_sym_or2] = ACTIONS(2780), + [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(2780), + [anon_sym_BANG_EQ2] = ACTIONS(2780), + [anon_sym_LT2] = ACTIONS(2782), + [anon_sym_LT_EQ2] = ACTIONS(2780), + [anon_sym_GT_EQ2] = ACTIONS(2780), + [anon_sym_EQ_TILDE2] = ACTIONS(2780), + [anon_sym_BANG_TILDE2] = ACTIONS(2780), + [anon_sym_like2] = ACTIONS(2780), + [anon_sym_not_DASHlike2] = ACTIONS(2780), + [anon_sym_STAR_STAR2] = ACTIONS(2780), + [anon_sym_PLUS_PLUS2] = ACTIONS(2780), + [anon_sym_SLASH2] = ACTIONS(2782), + [anon_sym_mod2] = ACTIONS(2780), + [anon_sym_SLASH_SLASH2] = ACTIONS(2780), + [anon_sym_PLUS2] = ACTIONS(2782), + [anon_sym_bit_DASHshl2] = ACTIONS(2780), + [anon_sym_bit_DASHshr2] = ACTIONS(2780), + [anon_sym_bit_DASHand2] = ACTIONS(2780), + [anon_sym_bit_DASHxor2] = ACTIONS(2780), + [anon_sym_bit_DASHor2] = ACTIONS(2780), + [anon_sym_err_GT] = ACTIONS(2782), + [anon_sym_out_GT] = ACTIONS(2782), + [anon_sym_e_GT] = ACTIONS(2782), + [anon_sym_o_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT] = ACTIONS(2782), + [anon_sym_err_GT_GT] = ACTIONS(2780), + [anon_sym_out_GT_GT] = ACTIONS(2780), + [anon_sym_e_GT_GT] = ACTIONS(2780), + [anon_sym_o_GT_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2780), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1043)] = { - [aux_sym__repeat_newline] = STATE(527), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1043), - [anon_sym_in] = ACTIONS(2734), - [sym__newline] = ACTIONS(2734), - [anon_sym_SEMI] = ACTIONS(2734), - [anon_sym_PIPE] = ACTIONS(2734), - [anon_sym_err_GT_PIPE] = ACTIONS(2734), - [anon_sym_out_GT_PIPE] = ACTIONS(2734), - [anon_sym_e_GT_PIPE] = ACTIONS(2734), - [anon_sym_o_GT_PIPE] = ACTIONS(2734), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2734), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2734), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2734), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2734), - [anon_sym_RPAREN] = ACTIONS(2734), - [anon_sym_GT2] = ACTIONS(2736), - [anon_sym_DASH2] = ACTIONS(2734), - [anon_sym_LBRACE] = ACTIONS(2734), - [anon_sym_STAR2] = ACTIONS(2736), - [anon_sym_and2] = ACTIONS(2734), - [anon_sym_xor2] = ACTIONS(2734), - [anon_sym_or2] = ACTIONS(2734), - [anon_sym_not_DASHin2] = ACTIONS(2734), - [anon_sym_has2] = ACTIONS(2734), - [anon_sym_not_DASHhas2] = ACTIONS(2734), - [anon_sym_starts_DASHwith2] = ACTIONS(2734), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2734), - [anon_sym_ends_DASHwith2] = ACTIONS(2734), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2734), - [anon_sym_EQ_EQ2] = ACTIONS(2734), - [anon_sym_BANG_EQ2] = ACTIONS(2734), - [anon_sym_LT2] = ACTIONS(2736), - [anon_sym_LT_EQ2] = ACTIONS(2734), - [anon_sym_GT_EQ2] = ACTIONS(2734), - [anon_sym_EQ_TILDE2] = ACTIONS(2734), - [anon_sym_BANG_TILDE2] = ACTIONS(2734), - [anon_sym_like2] = ACTIONS(2734), - [anon_sym_not_DASHlike2] = ACTIONS(2734), - [anon_sym_STAR_STAR2] = ACTIONS(2734), - [anon_sym_PLUS_PLUS2] = ACTIONS(2734), - [anon_sym_SLASH2] = ACTIONS(2736), - [anon_sym_mod2] = ACTIONS(2734), - [anon_sym_SLASH_SLASH2] = ACTIONS(2734), - [anon_sym_PLUS2] = ACTIONS(2736), - [anon_sym_bit_DASHshl2] = ACTIONS(2734), - [anon_sym_bit_DASHshr2] = ACTIONS(2734), - [anon_sym_bit_DASHand2] = ACTIONS(2734), - [anon_sym_bit_DASHxor2] = ACTIONS(2734), - [anon_sym_bit_DASHor2] = ACTIONS(2734), - [anon_sym_err_GT] = ACTIONS(2736), - [anon_sym_out_GT] = ACTIONS(2736), - [anon_sym_e_GT] = ACTIONS(2736), - [anon_sym_o_GT] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT] = ACTIONS(2736), - [anon_sym_err_GT_GT] = ACTIONS(2734), - [anon_sym_out_GT_GT] = ACTIONS(2734), - [anon_sym_e_GT_GT] = ACTIONS(2734), - [anon_sym_o_GT_GT] = ACTIONS(2734), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2734), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2734), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2734), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2734), + [anon_sym_in] = ACTIONS(2780), + [sym__newline] = ACTIONS(2780), + [anon_sym_SEMI] = ACTIONS(2780), + [anon_sym_PIPE] = ACTIONS(2780), + [anon_sym_err_GT_PIPE] = ACTIONS(2780), + [anon_sym_out_GT_PIPE] = ACTIONS(2780), + [anon_sym_e_GT_PIPE] = ACTIONS(2780), + [anon_sym_o_GT_PIPE] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2780), + [anon_sym_RPAREN] = ACTIONS(2780), + [anon_sym_GT2] = ACTIONS(2782), + [anon_sym_DASH2] = ACTIONS(2780), + [anon_sym_LBRACE] = ACTIONS(2780), + [anon_sym_STAR2] = ACTIONS(2782), + [anon_sym_and2] = ACTIONS(2780), + [anon_sym_xor2] = ACTIONS(2780), + [anon_sym_or2] = ACTIONS(2780), + [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(2780), + [anon_sym_BANG_EQ2] = ACTIONS(2780), + [anon_sym_LT2] = ACTIONS(2782), + [anon_sym_LT_EQ2] = ACTIONS(2780), + [anon_sym_GT_EQ2] = ACTIONS(2780), + [anon_sym_EQ_TILDE2] = ACTIONS(2780), + [anon_sym_BANG_TILDE2] = ACTIONS(2780), + [anon_sym_like2] = ACTIONS(2780), + [anon_sym_not_DASHlike2] = ACTIONS(2780), + [anon_sym_STAR_STAR2] = ACTIONS(2780), + [anon_sym_PLUS_PLUS2] = ACTIONS(2780), + [anon_sym_SLASH2] = ACTIONS(2782), + [anon_sym_mod2] = ACTIONS(2780), + [anon_sym_SLASH_SLASH2] = ACTIONS(2780), + [anon_sym_PLUS2] = ACTIONS(2782), + [anon_sym_bit_DASHshl2] = ACTIONS(2780), + [anon_sym_bit_DASHshr2] = ACTIONS(2780), + [anon_sym_bit_DASHand2] = ACTIONS(2780), + [anon_sym_bit_DASHxor2] = ACTIONS(2780), + [anon_sym_bit_DASHor2] = ACTIONS(2780), + [anon_sym_err_GT] = ACTIONS(2782), + [anon_sym_out_GT] = ACTIONS(2782), + [anon_sym_e_GT] = ACTIONS(2782), + [anon_sym_o_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT] = ACTIONS(2782), + [anon_sym_err_GT_GT] = ACTIONS(2780), + [anon_sym_out_GT_GT] = ACTIONS(2780), + [anon_sym_e_GT_GT] = ACTIONS(2780), + [anon_sym_o_GT_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2780), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1044)] = { - [aux_sym__repeat_newline] = STATE(527), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1044), - [anon_sym_in] = ACTIONS(2734), - [sym__newline] = ACTIONS(2734), - [anon_sym_SEMI] = ACTIONS(2734), - [anon_sym_PIPE] = ACTIONS(2734), - [anon_sym_err_GT_PIPE] = ACTIONS(2734), - [anon_sym_out_GT_PIPE] = ACTIONS(2734), - [anon_sym_e_GT_PIPE] = ACTIONS(2734), - [anon_sym_o_GT_PIPE] = ACTIONS(2734), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2734), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2734), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2734), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2734), - [anon_sym_RPAREN] = ACTIONS(2734), - [anon_sym_GT2] = ACTIONS(2736), - [anon_sym_DASH2] = ACTIONS(2734), - [anon_sym_LBRACE] = ACTIONS(2734), - [anon_sym_STAR2] = ACTIONS(2736), - [anon_sym_and2] = ACTIONS(2734), - [anon_sym_xor2] = ACTIONS(2734), - [anon_sym_or2] = ACTIONS(2734), - [anon_sym_not_DASHin2] = ACTIONS(2734), - [anon_sym_has2] = ACTIONS(2734), - [anon_sym_not_DASHhas2] = ACTIONS(2734), - [anon_sym_starts_DASHwith2] = ACTIONS(2734), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2734), - [anon_sym_ends_DASHwith2] = ACTIONS(2734), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2734), - [anon_sym_EQ_EQ2] = ACTIONS(2734), - [anon_sym_BANG_EQ2] = ACTIONS(2734), - [anon_sym_LT2] = ACTIONS(2736), - [anon_sym_LT_EQ2] = ACTIONS(2734), - [anon_sym_GT_EQ2] = ACTIONS(2734), - [anon_sym_EQ_TILDE2] = ACTIONS(2734), - [anon_sym_BANG_TILDE2] = ACTIONS(2734), - [anon_sym_like2] = ACTIONS(2734), - [anon_sym_not_DASHlike2] = ACTIONS(2734), - [anon_sym_STAR_STAR2] = ACTIONS(2734), - [anon_sym_PLUS_PLUS2] = ACTIONS(2734), - [anon_sym_SLASH2] = ACTIONS(2736), - [anon_sym_mod2] = ACTIONS(2734), - [anon_sym_SLASH_SLASH2] = ACTIONS(2734), - [anon_sym_PLUS2] = ACTIONS(2736), - [anon_sym_bit_DASHshl2] = ACTIONS(2734), - [anon_sym_bit_DASHshr2] = ACTIONS(2734), - [anon_sym_bit_DASHand2] = ACTIONS(2734), - [anon_sym_bit_DASHxor2] = ACTIONS(2734), - [anon_sym_bit_DASHor2] = ACTIONS(2734), - [anon_sym_err_GT] = ACTIONS(2736), - [anon_sym_out_GT] = ACTIONS(2736), - [anon_sym_e_GT] = ACTIONS(2736), - [anon_sym_o_GT] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT] = ACTIONS(2736), - [anon_sym_err_GT_GT] = ACTIONS(2734), - [anon_sym_out_GT_GT] = ACTIONS(2734), - [anon_sym_e_GT_GT] = ACTIONS(2734), - [anon_sym_o_GT_GT] = ACTIONS(2734), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2734), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2734), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2734), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2734), + [anon_sym_in] = ACTIONS(2780), + [sym__newline] = ACTIONS(2780), + [anon_sym_SEMI] = ACTIONS(2780), + [anon_sym_PIPE] = ACTIONS(2780), + [anon_sym_err_GT_PIPE] = ACTIONS(2780), + [anon_sym_out_GT_PIPE] = ACTIONS(2780), + [anon_sym_e_GT_PIPE] = ACTIONS(2780), + [anon_sym_o_GT_PIPE] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2780), + [anon_sym_RPAREN] = ACTIONS(2780), + [anon_sym_GT2] = ACTIONS(2782), + [anon_sym_DASH2] = ACTIONS(2780), + [anon_sym_LBRACE] = ACTIONS(2780), + [anon_sym_STAR2] = ACTIONS(2782), + [anon_sym_and2] = ACTIONS(2780), + [anon_sym_xor2] = ACTIONS(2780), + [anon_sym_or2] = ACTIONS(2780), + [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(2780), + [anon_sym_BANG_EQ2] = ACTIONS(2780), + [anon_sym_LT2] = ACTIONS(2782), + [anon_sym_LT_EQ2] = ACTIONS(2780), + [anon_sym_GT_EQ2] = ACTIONS(2780), + [anon_sym_EQ_TILDE2] = ACTIONS(2780), + [anon_sym_BANG_TILDE2] = ACTIONS(2780), + [anon_sym_like2] = ACTIONS(2780), + [anon_sym_not_DASHlike2] = ACTIONS(2780), + [anon_sym_STAR_STAR2] = ACTIONS(2780), + [anon_sym_PLUS_PLUS2] = ACTIONS(2780), + [anon_sym_SLASH2] = ACTIONS(2782), + [anon_sym_mod2] = ACTIONS(2780), + [anon_sym_SLASH_SLASH2] = ACTIONS(2780), + [anon_sym_PLUS2] = ACTIONS(2782), + [anon_sym_bit_DASHshl2] = ACTIONS(2780), + [anon_sym_bit_DASHshr2] = ACTIONS(2780), + [anon_sym_bit_DASHand2] = ACTIONS(2780), + [anon_sym_bit_DASHxor2] = ACTIONS(2780), + [anon_sym_bit_DASHor2] = ACTIONS(2780), + [anon_sym_err_GT] = ACTIONS(2782), + [anon_sym_out_GT] = ACTIONS(2782), + [anon_sym_e_GT] = ACTIONS(2782), + [anon_sym_o_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT] = ACTIONS(2782), + [anon_sym_err_GT_GT] = ACTIONS(2780), + [anon_sym_out_GT_GT] = ACTIONS(2780), + [anon_sym_e_GT_GT] = ACTIONS(2780), + [anon_sym_o_GT_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2780), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1045)] = { - [aux_sym__repeat_newline] = STATE(527), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1045), - [anon_sym_in] = ACTIONS(2734), - [sym__newline] = ACTIONS(2734), - [anon_sym_SEMI] = ACTIONS(2734), - [anon_sym_PIPE] = ACTIONS(2734), - [anon_sym_err_GT_PIPE] = ACTIONS(2734), - [anon_sym_out_GT_PIPE] = ACTIONS(2734), - [anon_sym_e_GT_PIPE] = ACTIONS(2734), - [anon_sym_o_GT_PIPE] = ACTIONS(2734), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2734), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2734), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2734), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2734), - [anon_sym_RPAREN] = ACTIONS(2734), - [anon_sym_GT2] = ACTIONS(2736), - [anon_sym_DASH2] = ACTIONS(2734), - [anon_sym_LBRACE] = ACTIONS(2734), - [anon_sym_STAR2] = ACTIONS(2736), - [anon_sym_and2] = ACTIONS(2734), - [anon_sym_xor2] = ACTIONS(2734), - [anon_sym_or2] = ACTIONS(2734), - [anon_sym_not_DASHin2] = ACTIONS(2734), - [anon_sym_has2] = ACTIONS(2734), - [anon_sym_not_DASHhas2] = ACTIONS(2734), - [anon_sym_starts_DASHwith2] = ACTIONS(2734), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2734), - [anon_sym_ends_DASHwith2] = ACTIONS(2734), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2734), - [anon_sym_EQ_EQ2] = ACTIONS(2734), - [anon_sym_BANG_EQ2] = ACTIONS(2734), - [anon_sym_LT2] = ACTIONS(2736), - [anon_sym_LT_EQ2] = ACTIONS(2734), - [anon_sym_GT_EQ2] = ACTIONS(2734), - [anon_sym_EQ_TILDE2] = ACTIONS(2734), - [anon_sym_BANG_TILDE2] = ACTIONS(2734), - [anon_sym_like2] = ACTIONS(2734), - [anon_sym_not_DASHlike2] = ACTIONS(2734), - [anon_sym_STAR_STAR2] = ACTIONS(2734), - [anon_sym_PLUS_PLUS2] = ACTIONS(2734), - [anon_sym_SLASH2] = ACTIONS(2736), - [anon_sym_mod2] = ACTIONS(2734), - [anon_sym_SLASH_SLASH2] = ACTIONS(2734), - [anon_sym_PLUS2] = ACTIONS(2736), - [anon_sym_bit_DASHshl2] = ACTIONS(2734), - [anon_sym_bit_DASHshr2] = ACTIONS(2734), - [anon_sym_bit_DASHand2] = ACTIONS(2734), - [anon_sym_bit_DASHxor2] = ACTIONS(2734), - [anon_sym_bit_DASHor2] = ACTIONS(2734), - [anon_sym_err_GT] = ACTIONS(2736), - [anon_sym_out_GT] = ACTIONS(2736), - [anon_sym_e_GT] = ACTIONS(2736), - [anon_sym_o_GT] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT] = ACTIONS(2736), - [anon_sym_err_GT_GT] = ACTIONS(2734), - [anon_sym_out_GT_GT] = ACTIONS(2734), - [anon_sym_e_GT_GT] = ACTIONS(2734), - [anon_sym_o_GT_GT] = ACTIONS(2734), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2734), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2734), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2734), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2734), + [anon_sym_in] = ACTIONS(2784), + [sym__newline] = ACTIONS(2784), + [anon_sym_SEMI] = ACTIONS(2784), + [anon_sym_PIPE] = ACTIONS(2784), + [anon_sym_err_GT_PIPE] = ACTIONS(2784), + [anon_sym_out_GT_PIPE] = ACTIONS(2784), + [anon_sym_e_GT_PIPE] = ACTIONS(2784), + [anon_sym_o_GT_PIPE] = ACTIONS(2784), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2784), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2784), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2784), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2784), + [anon_sym_RPAREN] = ACTIONS(2784), + [anon_sym_GT2] = ACTIONS(2786), + [anon_sym_DASH2] = ACTIONS(2784), + [anon_sym_LBRACE] = ACTIONS(2784), + [anon_sym_STAR2] = ACTIONS(2786), + [anon_sym_and2] = ACTIONS(2784), + [anon_sym_xor2] = ACTIONS(2784), + [anon_sym_or2] = ACTIONS(2784), + [anon_sym_not_DASHin2] = ACTIONS(2784), + [anon_sym_has2] = ACTIONS(2784), + [anon_sym_not_DASHhas2] = ACTIONS(2784), + [anon_sym_starts_DASHwith2] = ACTIONS(2784), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2784), + [anon_sym_ends_DASHwith2] = ACTIONS(2784), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2784), + [anon_sym_EQ_EQ2] = ACTIONS(2784), + [anon_sym_BANG_EQ2] = ACTIONS(2784), + [anon_sym_LT2] = ACTIONS(2786), + [anon_sym_LT_EQ2] = ACTIONS(2784), + [anon_sym_GT_EQ2] = ACTIONS(2784), + [anon_sym_EQ_TILDE2] = ACTIONS(2784), + [anon_sym_BANG_TILDE2] = ACTIONS(2784), + [anon_sym_like2] = ACTIONS(2784), + [anon_sym_not_DASHlike2] = ACTIONS(2784), + [anon_sym_STAR_STAR2] = ACTIONS(2784), + [anon_sym_PLUS_PLUS2] = ACTIONS(2784), + [anon_sym_SLASH2] = ACTIONS(2786), + [anon_sym_mod2] = ACTIONS(2784), + [anon_sym_SLASH_SLASH2] = ACTIONS(2784), + [anon_sym_PLUS2] = ACTIONS(2786), + [anon_sym_bit_DASHshl2] = ACTIONS(2784), + [anon_sym_bit_DASHshr2] = ACTIONS(2784), + [anon_sym_bit_DASHand2] = ACTIONS(2784), + [anon_sym_bit_DASHxor2] = ACTIONS(2784), + [anon_sym_bit_DASHor2] = ACTIONS(2784), + [anon_sym_err_GT] = ACTIONS(2786), + [anon_sym_out_GT] = ACTIONS(2786), + [anon_sym_e_GT] = ACTIONS(2786), + [anon_sym_o_GT] = ACTIONS(2786), + [anon_sym_err_PLUSout_GT] = ACTIONS(2786), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2786), + [anon_sym_o_PLUSe_GT] = ACTIONS(2786), + [anon_sym_e_PLUSo_GT] = ACTIONS(2786), + [anon_sym_err_GT_GT] = ACTIONS(2784), + [anon_sym_out_GT_GT] = ACTIONS(2784), + [anon_sym_e_GT_GT] = ACTIONS(2784), + [anon_sym_o_GT_GT] = ACTIONS(2784), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2784), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2784), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2784), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2784), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1046)] = { - [aux_sym__repeat_newline] = STATE(527), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1046), - [anon_sym_in] = ACTIONS(2738), - [sym__newline] = ACTIONS(2738), - [anon_sym_SEMI] = ACTIONS(2738), - [anon_sym_PIPE] = ACTIONS(2738), - [anon_sym_err_GT_PIPE] = ACTIONS(2738), - [anon_sym_out_GT_PIPE] = ACTIONS(2738), - [anon_sym_e_GT_PIPE] = ACTIONS(2738), - [anon_sym_o_GT_PIPE] = ACTIONS(2738), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2738), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2738), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2738), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2738), - [anon_sym_RPAREN] = ACTIONS(2738), - [anon_sym_GT2] = ACTIONS(2740), - [anon_sym_DASH2] = ACTIONS(2738), - [anon_sym_LBRACE] = ACTIONS(2738), - [anon_sym_STAR2] = ACTIONS(2740), - [anon_sym_and2] = ACTIONS(2738), - [anon_sym_xor2] = ACTIONS(2738), - [anon_sym_or2] = ACTIONS(2738), - [anon_sym_not_DASHin2] = ACTIONS(2738), - [anon_sym_has2] = ACTIONS(2738), - [anon_sym_not_DASHhas2] = ACTIONS(2738), - [anon_sym_starts_DASHwith2] = ACTIONS(2738), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2738), - [anon_sym_ends_DASHwith2] = ACTIONS(2738), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2738), - [anon_sym_EQ_EQ2] = ACTIONS(2738), - [anon_sym_BANG_EQ2] = ACTIONS(2738), - [anon_sym_LT2] = ACTIONS(2740), - [anon_sym_LT_EQ2] = ACTIONS(2738), - [anon_sym_GT_EQ2] = ACTIONS(2738), - [anon_sym_EQ_TILDE2] = ACTIONS(2738), - [anon_sym_BANG_TILDE2] = ACTIONS(2738), - [anon_sym_like2] = ACTIONS(2738), - [anon_sym_not_DASHlike2] = ACTIONS(2738), - [anon_sym_STAR_STAR2] = ACTIONS(2738), - [anon_sym_PLUS_PLUS2] = ACTIONS(2738), - [anon_sym_SLASH2] = ACTIONS(2740), - [anon_sym_mod2] = ACTIONS(2738), - [anon_sym_SLASH_SLASH2] = ACTIONS(2738), - [anon_sym_PLUS2] = ACTIONS(2740), - [anon_sym_bit_DASHshl2] = ACTIONS(2738), - [anon_sym_bit_DASHshr2] = ACTIONS(2738), - [anon_sym_bit_DASHand2] = ACTIONS(2738), - [anon_sym_bit_DASHxor2] = ACTIONS(2738), - [anon_sym_bit_DASHor2] = ACTIONS(2738), - [anon_sym_err_GT] = ACTIONS(2740), - [anon_sym_out_GT] = ACTIONS(2740), - [anon_sym_e_GT] = ACTIONS(2740), - [anon_sym_o_GT] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT] = ACTIONS(2740), - [anon_sym_err_GT_GT] = ACTIONS(2738), - [anon_sym_out_GT_GT] = ACTIONS(2738), - [anon_sym_e_GT_GT] = ACTIONS(2738), - [anon_sym_o_GT_GT] = ACTIONS(2738), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2738), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2738), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2738), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2738), + [anon_sym_in] = ACTIONS(2780), + [sym__newline] = ACTIONS(2780), + [anon_sym_SEMI] = ACTIONS(2780), + [anon_sym_PIPE] = ACTIONS(2780), + [anon_sym_err_GT_PIPE] = ACTIONS(2780), + [anon_sym_out_GT_PIPE] = ACTIONS(2780), + [anon_sym_e_GT_PIPE] = ACTIONS(2780), + [anon_sym_o_GT_PIPE] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2780), + [anon_sym_RPAREN] = ACTIONS(2780), + [anon_sym_GT2] = ACTIONS(2782), + [anon_sym_DASH2] = ACTIONS(2780), + [anon_sym_LBRACE] = ACTIONS(2780), + [anon_sym_STAR2] = ACTIONS(2782), + [anon_sym_and2] = ACTIONS(2780), + [anon_sym_xor2] = ACTIONS(2780), + [anon_sym_or2] = ACTIONS(2780), + [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(2780), + [anon_sym_BANG_EQ2] = ACTIONS(2780), + [anon_sym_LT2] = ACTIONS(2782), + [anon_sym_LT_EQ2] = ACTIONS(2780), + [anon_sym_GT_EQ2] = ACTIONS(2780), + [anon_sym_EQ_TILDE2] = ACTIONS(2780), + [anon_sym_BANG_TILDE2] = ACTIONS(2780), + [anon_sym_like2] = ACTIONS(2780), + [anon_sym_not_DASHlike2] = ACTIONS(2780), + [anon_sym_STAR_STAR2] = ACTIONS(2780), + [anon_sym_PLUS_PLUS2] = ACTIONS(2780), + [anon_sym_SLASH2] = ACTIONS(2782), + [anon_sym_mod2] = ACTIONS(2780), + [anon_sym_SLASH_SLASH2] = ACTIONS(2780), + [anon_sym_PLUS2] = ACTIONS(2782), + [anon_sym_bit_DASHshl2] = ACTIONS(2780), + [anon_sym_bit_DASHshr2] = ACTIONS(2780), + [anon_sym_bit_DASHand2] = ACTIONS(2780), + [anon_sym_bit_DASHxor2] = ACTIONS(2780), + [anon_sym_bit_DASHor2] = ACTIONS(2780), + [anon_sym_err_GT] = ACTIONS(2782), + [anon_sym_out_GT] = ACTIONS(2782), + [anon_sym_e_GT] = ACTIONS(2782), + [anon_sym_o_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT] = ACTIONS(2782), + [anon_sym_err_GT_GT] = ACTIONS(2780), + [anon_sym_out_GT_GT] = ACTIONS(2780), + [anon_sym_e_GT_GT] = ACTIONS(2780), + [anon_sym_o_GT_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2780), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1047)] = { - [aux_sym__repeat_newline] = STATE(527), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1047), - [anon_sym_in] = ACTIONS(2734), - [sym__newline] = ACTIONS(2734), - [anon_sym_SEMI] = ACTIONS(2734), - [anon_sym_PIPE] = ACTIONS(2734), - [anon_sym_err_GT_PIPE] = ACTIONS(2734), - [anon_sym_out_GT_PIPE] = ACTIONS(2734), - [anon_sym_e_GT_PIPE] = ACTIONS(2734), - [anon_sym_o_GT_PIPE] = ACTIONS(2734), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2734), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2734), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2734), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2734), - [anon_sym_RPAREN] = ACTIONS(2734), - [anon_sym_GT2] = ACTIONS(2736), - [anon_sym_DASH2] = ACTIONS(2734), - [anon_sym_LBRACE] = ACTIONS(2734), - [anon_sym_STAR2] = ACTIONS(2736), - [anon_sym_and2] = ACTIONS(2734), - [anon_sym_xor2] = ACTIONS(2734), - [anon_sym_or2] = ACTIONS(2734), - [anon_sym_not_DASHin2] = ACTIONS(2734), - [anon_sym_has2] = ACTIONS(2734), - [anon_sym_not_DASHhas2] = ACTIONS(2734), - [anon_sym_starts_DASHwith2] = ACTIONS(2734), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2734), - [anon_sym_ends_DASHwith2] = ACTIONS(2734), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2734), - [anon_sym_EQ_EQ2] = ACTIONS(2734), - [anon_sym_BANG_EQ2] = ACTIONS(2734), - [anon_sym_LT2] = ACTIONS(2736), - [anon_sym_LT_EQ2] = ACTIONS(2734), - [anon_sym_GT_EQ2] = ACTIONS(2734), - [anon_sym_EQ_TILDE2] = ACTIONS(2734), - [anon_sym_BANG_TILDE2] = ACTIONS(2734), - [anon_sym_like2] = ACTIONS(2734), - [anon_sym_not_DASHlike2] = ACTIONS(2734), - [anon_sym_STAR_STAR2] = ACTIONS(2734), - [anon_sym_PLUS_PLUS2] = ACTIONS(2734), - [anon_sym_SLASH2] = ACTIONS(2736), - [anon_sym_mod2] = ACTIONS(2734), - [anon_sym_SLASH_SLASH2] = ACTIONS(2734), - [anon_sym_PLUS2] = ACTIONS(2736), - [anon_sym_bit_DASHshl2] = ACTIONS(2734), - [anon_sym_bit_DASHshr2] = ACTIONS(2734), - [anon_sym_bit_DASHand2] = ACTIONS(2734), - [anon_sym_bit_DASHxor2] = ACTIONS(2734), - [anon_sym_bit_DASHor2] = ACTIONS(2734), - [anon_sym_err_GT] = ACTIONS(2736), - [anon_sym_out_GT] = ACTIONS(2736), - [anon_sym_e_GT] = ACTIONS(2736), - [anon_sym_o_GT] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT] = ACTIONS(2736), - [anon_sym_err_GT_GT] = ACTIONS(2734), - [anon_sym_out_GT_GT] = ACTIONS(2734), - [anon_sym_e_GT_GT] = ACTIONS(2734), - [anon_sym_o_GT_GT] = ACTIONS(2734), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2734), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2734), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2734), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2734), + [anon_sym_in] = ACTIONS(2780), + [sym__newline] = ACTIONS(2780), + [anon_sym_SEMI] = ACTIONS(2780), + [anon_sym_PIPE] = ACTIONS(2780), + [anon_sym_err_GT_PIPE] = ACTIONS(2780), + [anon_sym_out_GT_PIPE] = ACTIONS(2780), + [anon_sym_e_GT_PIPE] = ACTIONS(2780), + [anon_sym_o_GT_PIPE] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2780), + [anon_sym_RPAREN] = ACTIONS(2780), + [anon_sym_GT2] = ACTIONS(2782), + [anon_sym_DASH2] = ACTIONS(2780), + [anon_sym_LBRACE] = ACTIONS(2780), + [anon_sym_STAR2] = ACTIONS(2782), + [anon_sym_and2] = ACTIONS(2780), + [anon_sym_xor2] = ACTIONS(2780), + [anon_sym_or2] = ACTIONS(2780), + [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(2780), + [anon_sym_BANG_EQ2] = ACTIONS(2780), + [anon_sym_LT2] = ACTIONS(2782), + [anon_sym_LT_EQ2] = ACTIONS(2780), + [anon_sym_GT_EQ2] = ACTIONS(2780), + [anon_sym_EQ_TILDE2] = ACTIONS(2780), + [anon_sym_BANG_TILDE2] = ACTIONS(2780), + [anon_sym_like2] = ACTIONS(2780), + [anon_sym_not_DASHlike2] = ACTIONS(2780), + [anon_sym_STAR_STAR2] = ACTIONS(2780), + [anon_sym_PLUS_PLUS2] = ACTIONS(2780), + [anon_sym_SLASH2] = ACTIONS(2782), + [anon_sym_mod2] = ACTIONS(2780), + [anon_sym_SLASH_SLASH2] = ACTIONS(2780), + [anon_sym_PLUS2] = ACTIONS(2782), + [anon_sym_bit_DASHshl2] = ACTIONS(2780), + [anon_sym_bit_DASHshr2] = ACTIONS(2780), + [anon_sym_bit_DASHand2] = ACTIONS(2780), + [anon_sym_bit_DASHxor2] = ACTIONS(2780), + [anon_sym_bit_DASHor2] = ACTIONS(2780), + [anon_sym_err_GT] = ACTIONS(2782), + [anon_sym_out_GT] = ACTIONS(2782), + [anon_sym_e_GT] = ACTIONS(2782), + [anon_sym_o_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT] = ACTIONS(2782), + [anon_sym_err_GT_GT] = ACTIONS(2780), + [anon_sym_out_GT_GT] = ACTIONS(2780), + [anon_sym_e_GT_GT] = ACTIONS(2780), + [anon_sym_o_GT_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2780), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1048)] = { - [aux_sym__repeat_newline] = STATE(527), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1048), - [anon_sym_in] = ACTIONS(2734), - [sym__newline] = ACTIONS(2734), - [anon_sym_SEMI] = ACTIONS(2734), - [anon_sym_PIPE] = ACTIONS(2734), - [anon_sym_err_GT_PIPE] = ACTIONS(2734), - [anon_sym_out_GT_PIPE] = ACTIONS(2734), - [anon_sym_e_GT_PIPE] = ACTIONS(2734), - [anon_sym_o_GT_PIPE] = ACTIONS(2734), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2734), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2734), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2734), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2734), - [anon_sym_RPAREN] = ACTIONS(2734), - [anon_sym_GT2] = ACTIONS(2736), - [anon_sym_DASH2] = ACTIONS(2734), - [anon_sym_LBRACE] = ACTIONS(2734), - [anon_sym_STAR2] = ACTIONS(2736), - [anon_sym_and2] = ACTIONS(2734), - [anon_sym_xor2] = ACTIONS(2734), - [anon_sym_or2] = ACTIONS(2734), - [anon_sym_not_DASHin2] = ACTIONS(2734), - [anon_sym_has2] = ACTIONS(2734), - [anon_sym_not_DASHhas2] = ACTIONS(2734), - [anon_sym_starts_DASHwith2] = ACTIONS(2734), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2734), - [anon_sym_ends_DASHwith2] = ACTIONS(2734), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2734), - [anon_sym_EQ_EQ2] = ACTIONS(2734), - [anon_sym_BANG_EQ2] = ACTIONS(2734), - [anon_sym_LT2] = ACTIONS(2736), - [anon_sym_LT_EQ2] = ACTIONS(2734), - [anon_sym_GT_EQ2] = ACTIONS(2734), - [anon_sym_EQ_TILDE2] = ACTIONS(2734), - [anon_sym_BANG_TILDE2] = ACTIONS(2734), - [anon_sym_like2] = ACTIONS(2734), - [anon_sym_not_DASHlike2] = ACTIONS(2734), - [anon_sym_STAR_STAR2] = ACTIONS(2734), - [anon_sym_PLUS_PLUS2] = ACTIONS(2734), - [anon_sym_SLASH2] = ACTIONS(2736), - [anon_sym_mod2] = ACTIONS(2734), - [anon_sym_SLASH_SLASH2] = ACTIONS(2734), - [anon_sym_PLUS2] = ACTIONS(2736), - [anon_sym_bit_DASHshl2] = ACTIONS(2734), - [anon_sym_bit_DASHshr2] = ACTIONS(2734), - [anon_sym_bit_DASHand2] = ACTIONS(2734), - [anon_sym_bit_DASHxor2] = ACTIONS(2734), - [anon_sym_bit_DASHor2] = ACTIONS(2734), - [anon_sym_err_GT] = ACTIONS(2736), - [anon_sym_out_GT] = ACTIONS(2736), - [anon_sym_e_GT] = ACTIONS(2736), - [anon_sym_o_GT] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT] = ACTIONS(2736), - [anon_sym_err_GT_GT] = ACTIONS(2734), - [anon_sym_out_GT_GT] = ACTIONS(2734), - [anon_sym_e_GT_GT] = ACTIONS(2734), - [anon_sym_o_GT_GT] = ACTIONS(2734), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2734), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2734), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2734), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2734), + [anon_sym_in] = ACTIONS(2780), + [sym__newline] = ACTIONS(2780), + [anon_sym_SEMI] = ACTIONS(2780), + [anon_sym_PIPE] = ACTIONS(2780), + [anon_sym_err_GT_PIPE] = ACTIONS(2780), + [anon_sym_out_GT_PIPE] = ACTIONS(2780), + [anon_sym_e_GT_PIPE] = ACTIONS(2780), + [anon_sym_o_GT_PIPE] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2780), + [anon_sym_RPAREN] = ACTIONS(2780), + [anon_sym_GT2] = ACTIONS(2782), + [anon_sym_DASH2] = ACTIONS(2780), + [anon_sym_LBRACE] = ACTIONS(2780), + [anon_sym_STAR2] = ACTIONS(2782), + [anon_sym_and2] = ACTIONS(2780), + [anon_sym_xor2] = ACTIONS(2780), + [anon_sym_or2] = ACTIONS(2780), + [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(2780), + [anon_sym_BANG_EQ2] = ACTIONS(2780), + [anon_sym_LT2] = ACTIONS(2782), + [anon_sym_LT_EQ2] = ACTIONS(2780), + [anon_sym_GT_EQ2] = ACTIONS(2780), + [anon_sym_EQ_TILDE2] = ACTIONS(2780), + [anon_sym_BANG_TILDE2] = ACTIONS(2780), + [anon_sym_like2] = ACTIONS(2780), + [anon_sym_not_DASHlike2] = ACTIONS(2780), + [anon_sym_STAR_STAR2] = ACTIONS(2780), + [anon_sym_PLUS_PLUS2] = ACTIONS(2780), + [anon_sym_SLASH2] = ACTIONS(2782), + [anon_sym_mod2] = ACTIONS(2780), + [anon_sym_SLASH_SLASH2] = ACTIONS(2780), + [anon_sym_PLUS2] = ACTIONS(2782), + [anon_sym_bit_DASHshl2] = ACTIONS(2780), + [anon_sym_bit_DASHshr2] = ACTIONS(2780), + [anon_sym_bit_DASHand2] = ACTIONS(2780), + [anon_sym_bit_DASHxor2] = ACTIONS(2780), + [anon_sym_bit_DASHor2] = ACTIONS(2780), + [anon_sym_err_GT] = ACTIONS(2782), + [anon_sym_out_GT] = ACTIONS(2782), + [anon_sym_e_GT] = ACTIONS(2782), + [anon_sym_o_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT] = ACTIONS(2782), + [anon_sym_err_GT_GT] = ACTIONS(2780), + [anon_sym_out_GT_GT] = ACTIONS(2780), + [anon_sym_e_GT_GT] = ACTIONS(2780), + [anon_sym_o_GT_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2780), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1049)] = { - [aux_sym__repeat_newline] = STATE(527), + [aux_sym__repeat_newline] = STATE(1042), [sym_comment] = STATE(1049), - [anon_sym_in] = ACTIONS(2734), - [sym__newline] = ACTIONS(2734), - [anon_sym_SEMI] = ACTIONS(2734), - [anon_sym_PIPE] = ACTIONS(2734), - [anon_sym_err_GT_PIPE] = ACTIONS(2734), - [anon_sym_out_GT_PIPE] = ACTIONS(2734), - [anon_sym_e_GT_PIPE] = ACTIONS(2734), - [anon_sym_o_GT_PIPE] = ACTIONS(2734), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2734), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2734), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2734), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2734), - [anon_sym_RPAREN] = ACTIONS(2734), - [anon_sym_GT2] = ACTIONS(2736), - [anon_sym_DASH2] = ACTIONS(2734), - [anon_sym_LBRACE] = ACTIONS(2734), - [anon_sym_STAR2] = ACTIONS(2736), - [anon_sym_and2] = ACTIONS(2734), - [anon_sym_xor2] = ACTIONS(2734), - [anon_sym_or2] = ACTIONS(2734), - [anon_sym_not_DASHin2] = ACTIONS(2734), - [anon_sym_has2] = ACTIONS(2734), - [anon_sym_not_DASHhas2] = ACTIONS(2734), - [anon_sym_starts_DASHwith2] = ACTIONS(2734), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2734), - [anon_sym_ends_DASHwith2] = ACTIONS(2734), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2734), - [anon_sym_EQ_EQ2] = ACTIONS(2734), - [anon_sym_BANG_EQ2] = ACTIONS(2734), - [anon_sym_LT2] = ACTIONS(2736), - [anon_sym_LT_EQ2] = ACTIONS(2734), - [anon_sym_GT_EQ2] = ACTIONS(2734), - [anon_sym_EQ_TILDE2] = ACTIONS(2734), - [anon_sym_BANG_TILDE2] = ACTIONS(2734), - [anon_sym_like2] = ACTIONS(2734), - [anon_sym_not_DASHlike2] = ACTIONS(2734), - [anon_sym_STAR_STAR2] = ACTIONS(2734), - [anon_sym_PLUS_PLUS2] = ACTIONS(2734), - [anon_sym_SLASH2] = ACTIONS(2736), - [anon_sym_mod2] = ACTIONS(2734), - [anon_sym_SLASH_SLASH2] = ACTIONS(2734), - [anon_sym_PLUS2] = ACTIONS(2736), - [anon_sym_bit_DASHshl2] = ACTIONS(2734), - [anon_sym_bit_DASHshr2] = ACTIONS(2734), - [anon_sym_bit_DASHand2] = ACTIONS(2734), - [anon_sym_bit_DASHxor2] = ACTIONS(2734), - [anon_sym_bit_DASHor2] = ACTIONS(2734), - [anon_sym_err_GT] = ACTIONS(2736), - [anon_sym_out_GT] = ACTIONS(2736), - [anon_sym_e_GT] = ACTIONS(2736), - [anon_sym_o_GT] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT] = ACTIONS(2736), - [anon_sym_err_GT_GT] = ACTIONS(2734), - [anon_sym_out_GT_GT] = ACTIONS(2734), - [anon_sym_e_GT_GT] = ACTIONS(2734), - [anon_sym_o_GT_GT] = ACTIONS(2734), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2734), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2734), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2734), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2734), + [anon_sym_in] = ACTIONS(2346), + [sym__newline] = ACTIONS(2346), + [anon_sym_SEMI] = 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_RPAREN] = ACTIONS(2346), + [anon_sym_GT2] = ACTIONS(2348), + [anon_sym_DASH2] = ACTIONS(2346), + [anon_sym_LBRACE] = ACTIONS(2346), + [anon_sym_STAR2] = ACTIONS(2348), + [anon_sym_and2] = ACTIONS(2346), + [anon_sym_xor2] = ACTIONS(2346), + [anon_sym_or2] = ACTIONS(2346), + [anon_sym_not_DASHin2] = ACTIONS(2346), + [anon_sym_has2] = ACTIONS(2346), + [anon_sym_not_DASHhas2] = ACTIONS(2346), + [anon_sym_starts_DASHwith2] = ACTIONS(2346), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2346), + [anon_sym_ends_DASHwith2] = ACTIONS(2346), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2346), + [anon_sym_EQ_EQ2] = ACTIONS(2346), + [anon_sym_BANG_EQ2] = ACTIONS(2346), + [anon_sym_LT2] = ACTIONS(2348), + [anon_sym_LT_EQ2] = ACTIONS(2346), + [anon_sym_GT_EQ2] = ACTIONS(2346), + [anon_sym_EQ_TILDE2] = ACTIONS(2346), + [anon_sym_BANG_TILDE2] = ACTIONS(2346), + [anon_sym_like2] = ACTIONS(2346), + [anon_sym_not_DASHlike2] = ACTIONS(2346), + [anon_sym_STAR_STAR2] = ACTIONS(2346), + [anon_sym_PLUS_PLUS2] = ACTIONS(2346), + [anon_sym_SLASH2] = ACTIONS(2348), + [anon_sym_mod2] = ACTIONS(2346), + [anon_sym_SLASH_SLASH2] = ACTIONS(2346), + [anon_sym_PLUS2] = ACTIONS(2348), + [anon_sym_bit_DASHshl2] = ACTIONS(2346), + [anon_sym_bit_DASHshr2] = ACTIONS(2346), + [anon_sym_bit_DASHand2] = ACTIONS(2346), + [anon_sym_bit_DASHxor2] = ACTIONS(2346), + [anon_sym_bit_DASHor2] = ACTIONS(2346), + [anon_sym_err_GT] = ACTIONS(2348), + [anon_sym_out_GT] = ACTIONS(2348), + [anon_sym_e_GT] = ACTIONS(2348), + [anon_sym_o_GT] = ACTIONS(2348), + [anon_sym_err_PLUSout_GT] = ACTIONS(2348), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2348), + [anon_sym_o_PLUSe_GT] = ACTIONS(2348), + [anon_sym_e_PLUSo_GT] = ACTIONS(2348), + [anon_sym_err_GT_GT] = ACTIONS(2346), + [anon_sym_out_GT_GT] = ACTIONS(2346), + [anon_sym_e_GT_GT] = ACTIONS(2346), + [anon_sym_o_GT_GT] = ACTIONS(2346), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2346), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2346), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2346), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2346), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1050)] = { + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1050), - [aux_sym_cmd_identifier_token2] = ACTIONS(2682), - [anon_sym_in] = ACTIONS(866), - [sym__newline] = ACTIONS(886), - [anon_sym_SEMI] = ACTIONS(886), - [anon_sym_PIPE] = ACTIONS(886), - [anon_sym_err_GT_PIPE] = ACTIONS(886), - [anon_sym_out_GT_PIPE] = ACTIONS(886), - [anon_sym_e_GT_PIPE] = ACTIONS(886), - [anon_sym_o_GT_PIPE] = ACTIONS(886), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(886), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(886), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(886), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(886), - [anon_sym_GT2] = ACTIONS(866), - [anon_sym_DASH2] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(886), - [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(886), - [anon_sym_BANG_EQ2] = ACTIONS(886), - [anon_sym_LT2] = ACTIONS(866), - [anon_sym_LT_EQ2] = ACTIONS(886), - [anon_sym_GT_EQ2] = ACTIONS(886), - [anon_sym_EQ_TILDE2] = ACTIONS(886), - [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(886), - [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(886), - [anon_sym_out_GT_GT] = ACTIONS(886), - [anon_sym_e_GT_GT] = ACTIONS(886), - [anon_sym_o_GT_GT] = ACTIONS(886), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(886), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(886), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(886), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(886), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(2676), + [sym__newline] = ACTIONS(2676), + [anon_sym_SEMI] = ACTIONS(2676), + [anon_sym_PIPE] = ACTIONS(2676), + [anon_sym_err_GT_PIPE] = ACTIONS(2676), + [anon_sym_out_GT_PIPE] = ACTIONS(2676), + [anon_sym_e_GT_PIPE] = ACTIONS(2676), + [anon_sym_o_GT_PIPE] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2676), + [anon_sym_RPAREN] = ACTIONS(2676), + [anon_sym_GT2] = ACTIONS(2678), + [anon_sym_DASH2] = ACTIONS(2676), + [anon_sym_LBRACE] = ACTIONS(2676), + [anon_sym_STAR2] = ACTIONS(2678), + [anon_sym_and2] = ACTIONS(2676), + [anon_sym_xor2] = ACTIONS(2676), + [anon_sym_or2] = ACTIONS(2676), + [anon_sym_not_DASHin2] = ACTIONS(2676), + [anon_sym_has2] = ACTIONS(2676), + [anon_sym_not_DASHhas2] = ACTIONS(2676), + [anon_sym_starts_DASHwith2] = ACTIONS(2676), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2676), + [anon_sym_ends_DASHwith2] = ACTIONS(2676), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2676), + [anon_sym_EQ_EQ2] = ACTIONS(2676), + [anon_sym_BANG_EQ2] = ACTIONS(2676), + [anon_sym_LT2] = ACTIONS(2678), + [anon_sym_LT_EQ2] = ACTIONS(2676), + [anon_sym_GT_EQ2] = ACTIONS(2676), + [anon_sym_EQ_TILDE2] = ACTIONS(2676), + [anon_sym_BANG_TILDE2] = ACTIONS(2676), + [anon_sym_like2] = ACTIONS(2676), + [anon_sym_not_DASHlike2] = ACTIONS(2676), + [anon_sym_STAR_STAR2] = ACTIONS(2676), + [anon_sym_PLUS_PLUS2] = ACTIONS(2676), + [anon_sym_SLASH2] = ACTIONS(2678), + [anon_sym_mod2] = ACTIONS(2676), + [anon_sym_SLASH_SLASH2] = ACTIONS(2676), + [anon_sym_PLUS2] = ACTIONS(2678), + [anon_sym_bit_DASHshl2] = ACTIONS(2676), + [anon_sym_bit_DASHshr2] = ACTIONS(2676), + [anon_sym_bit_DASHand2] = ACTIONS(2676), + [anon_sym_bit_DASHxor2] = ACTIONS(2676), + [anon_sym_bit_DASHor2] = ACTIONS(2676), + [anon_sym_err_GT] = ACTIONS(2678), + [anon_sym_out_GT] = ACTIONS(2678), + [anon_sym_e_GT] = ACTIONS(2678), + [anon_sym_o_GT] = ACTIONS(2678), + [anon_sym_err_PLUSout_GT] = ACTIONS(2678), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2678), + [anon_sym_o_PLUSe_GT] = ACTIONS(2678), + [anon_sym_e_PLUSo_GT] = ACTIONS(2678), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1051)] = { - [aux_sym__repeat_newline] = STATE(527), + [aux_sym__repeat_newline] = STATE(1050), [sym_comment] = STATE(1051), - [anon_sym_in] = ACTIONS(2734), - [sym__newline] = ACTIONS(2734), - [anon_sym_SEMI] = ACTIONS(2734), - [anon_sym_PIPE] = ACTIONS(2734), - [anon_sym_err_GT_PIPE] = ACTIONS(2734), - [anon_sym_out_GT_PIPE] = ACTIONS(2734), - [anon_sym_e_GT_PIPE] = ACTIONS(2734), - [anon_sym_o_GT_PIPE] = ACTIONS(2734), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2734), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2734), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2734), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2734), - [anon_sym_RPAREN] = ACTIONS(2734), - [anon_sym_GT2] = ACTIONS(2736), - [anon_sym_DASH2] = ACTIONS(2734), - [anon_sym_LBRACE] = ACTIONS(2734), - [anon_sym_STAR2] = ACTIONS(2736), - [anon_sym_and2] = ACTIONS(2734), - [anon_sym_xor2] = ACTIONS(2734), - [anon_sym_or2] = ACTIONS(2734), - [anon_sym_not_DASHin2] = ACTIONS(2734), - [anon_sym_has2] = ACTIONS(2734), - [anon_sym_not_DASHhas2] = ACTIONS(2734), - [anon_sym_starts_DASHwith2] = ACTIONS(2734), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2734), - [anon_sym_ends_DASHwith2] = ACTIONS(2734), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2734), - [anon_sym_EQ_EQ2] = ACTIONS(2734), - [anon_sym_BANG_EQ2] = ACTIONS(2734), - [anon_sym_LT2] = ACTIONS(2736), - [anon_sym_LT_EQ2] = ACTIONS(2734), - [anon_sym_GT_EQ2] = ACTIONS(2734), - [anon_sym_EQ_TILDE2] = ACTIONS(2734), - [anon_sym_BANG_TILDE2] = ACTIONS(2734), - [anon_sym_like2] = ACTIONS(2734), - [anon_sym_not_DASHlike2] = ACTIONS(2734), - [anon_sym_STAR_STAR2] = ACTIONS(2734), - [anon_sym_PLUS_PLUS2] = ACTIONS(2734), - [anon_sym_SLASH2] = ACTIONS(2736), - [anon_sym_mod2] = ACTIONS(2734), - [anon_sym_SLASH_SLASH2] = ACTIONS(2734), - [anon_sym_PLUS2] = ACTIONS(2736), - [anon_sym_bit_DASHshl2] = ACTIONS(2734), - [anon_sym_bit_DASHshr2] = ACTIONS(2734), - [anon_sym_bit_DASHand2] = ACTIONS(2734), - [anon_sym_bit_DASHxor2] = ACTIONS(2734), - [anon_sym_bit_DASHor2] = ACTIONS(2734), - [anon_sym_err_GT] = ACTIONS(2736), - [anon_sym_out_GT] = ACTIONS(2736), - [anon_sym_e_GT] = ACTIONS(2736), - [anon_sym_o_GT] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT] = ACTIONS(2736), - [anon_sym_err_GT_GT] = ACTIONS(2734), - [anon_sym_out_GT_GT] = ACTIONS(2734), - [anon_sym_e_GT_GT] = ACTIONS(2734), - [anon_sym_o_GT_GT] = ACTIONS(2734), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2734), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2734), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2734), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2734), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1052)] = { - [aux_sym__repeat_newline] = STATE(527), - [sym_comment] = STATE(1052), - [anon_sym_in] = ACTIONS(2734), - [sym__newline] = ACTIONS(2734), - [anon_sym_SEMI] = ACTIONS(2734), - [anon_sym_PIPE] = ACTIONS(2734), - [anon_sym_err_GT_PIPE] = ACTIONS(2734), - [anon_sym_out_GT_PIPE] = ACTIONS(2734), - [anon_sym_e_GT_PIPE] = ACTIONS(2734), - [anon_sym_o_GT_PIPE] = ACTIONS(2734), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2734), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2734), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2734), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2734), - [anon_sym_RPAREN] = ACTIONS(2734), - [anon_sym_GT2] = ACTIONS(2736), - [anon_sym_DASH2] = ACTIONS(2734), - [anon_sym_LBRACE] = ACTIONS(2734), - [anon_sym_STAR2] = ACTIONS(2736), - [anon_sym_and2] = ACTIONS(2734), - [anon_sym_xor2] = ACTIONS(2734), - [anon_sym_or2] = ACTIONS(2734), - [anon_sym_not_DASHin2] = ACTIONS(2734), - [anon_sym_has2] = ACTIONS(2734), - [anon_sym_not_DASHhas2] = ACTIONS(2734), - [anon_sym_starts_DASHwith2] = ACTIONS(2734), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2734), - [anon_sym_ends_DASHwith2] = ACTIONS(2734), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2734), - [anon_sym_EQ_EQ2] = ACTIONS(2734), - [anon_sym_BANG_EQ2] = ACTIONS(2734), - [anon_sym_LT2] = ACTIONS(2736), - [anon_sym_LT_EQ2] = ACTIONS(2734), - [anon_sym_GT_EQ2] = ACTIONS(2734), - [anon_sym_EQ_TILDE2] = ACTIONS(2734), - [anon_sym_BANG_TILDE2] = ACTIONS(2734), - [anon_sym_like2] = ACTIONS(2734), - [anon_sym_not_DASHlike2] = ACTIONS(2734), - [anon_sym_STAR_STAR2] = ACTIONS(2734), - [anon_sym_PLUS_PLUS2] = ACTIONS(2734), - [anon_sym_SLASH2] = ACTIONS(2736), - [anon_sym_mod2] = ACTIONS(2734), - [anon_sym_SLASH_SLASH2] = ACTIONS(2734), - [anon_sym_PLUS2] = ACTIONS(2736), - [anon_sym_bit_DASHshl2] = ACTIONS(2734), - [anon_sym_bit_DASHshr2] = ACTIONS(2734), - [anon_sym_bit_DASHand2] = ACTIONS(2734), - [anon_sym_bit_DASHxor2] = ACTIONS(2734), - [anon_sym_bit_DASHor2] = ACTIONS(2734), - [anon_sym_err_GT] = ACTIONS(2736), - [anon_sym_out_GT] = ACTIONS(2736), - [anon_sym_e_GT] = ACTIONS(2736), - [anon_sym_o_GT] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT] = ACTIONS(2736), - [anon_sym_err_GT_GT] = ACTIONS(2734), - [anon_sym_out_GT_GT] = ACTIONS(2734), - [anon_sym_e_GT_GT] = ACTIONS(2734), - [anon_sym_o_GT_GT] = ACTIONS(2734), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2734), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2734), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2734), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2734), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1053)] = { - [sym_comment] = STATE(1053), - [ts_builtin_sym_end] = ACTIONS(1956), - [anon_sym_in] = ACTIONS(1956), - [sym__newline] = ACTIONS(1956), - [anon_sym_SEMI] = ACTIONS(1956), - [anon_sym_PIPE] = ACTIONS(1956), - [anon_sym_err_GT_PIPE] = ACTIONS(1956), - [anon_sym_out_GT_PIPE] = ACTIONS(1956), - [anon_sym_e_GT_PIPE] = ACTIONS(1956), - [anon_sym_o_GT_PIPE] = ACTIONS(1956), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1956), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1956), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1956), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1956), - [anon_sym_GT2] = ACTIONS(1958), - [anon_sym_DASH2] = ACTIONS(1956), - [anon_sym_STAR2] = ACTIONS(1958), - [anon_sym_and2] = ACTIONS(1956), - [anon_sym_xor2] = ACTIONS(1956), - [anon_sym_or2] = ACTIONS(1956), - [anon_sym_not_DASHin2] = ACTIONS(1956), - [anon_sym_has2] = ACTIONS(1956), - [anon_sym_not_DASHhas2] = ACTIONS(1956), - [anon_sym_starts_DASHwith2] = ACTIONS(1956), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1956), - [anon_sym_ends_DASHwith2] = ACTIONS(1956), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1956), - [anon_sym_EQ_EQ2] = ACTIONS(1956), - [anon_sym_BANG_EQ2] = ACTIONS(1956), - [anon_sym_LT2] = ACTIONS(1958), - [anon_sym_LT_EQ2] = ACTIONS(1956), - [anon_sym_GT_EQ2] = ACTIONS(1956), - [anon_sym_EQ_TILDE2] = ACTIONS(1956), - [anon_sym_BANG_TILDE2] = ACTIONS(1956), - [anon_sym_like2] = ACTIONS(1956), - [anon_sym_not_DASHlike2] = ACTIONS(1956), - [anon_sym_LPAREN2] = ACTIONS(1960), - [anon_sym_STAR_STAR2] = ACTIONS(1956), - [anon_sym_PLUS_PLUS2] = ACTIONS(1956), - [anon_sym_SLASH2] = ACTIONS(1958), - [anon_sym_mod2] = ACTIONS(1956), - [anon_sym_SLASH_SLASH2] = ACTIONS(1956), - [anon_sym_PLUS2] = ACTIONS(1958), - [anon_sym_bit_DASHshl2] = ACTIONS(1956), - [anon_sym_bit_DASHshr2] = ACTIONS(1956), - [anon_sym_bit_DASHand2] = ACTIONS(1956), - [anon_sym_bit_DASHxor2] = ACTIONS(1956), - [anon_sym_bit_DASHor2] = ACTIONS(1956), - [anon_sym_err_GT] = ACTIONS(1958), - [anon_sym_out_GT] = ACTIONS(1958), - [anon_sym_e_GT] = ACTIONS(1958), - [anon_sym_o_GT] = ACTIONS(1958), - [anon_sym_err_PLUSout_GT] = ACTIONS(1958), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1958), - [anon_sym_o_PLUSe_GT] = ACTIONS(1958), - [anon_sym_e_PLUSo_GT] = ACTIONS(1958), - [anon_sym_err_GT_GT] = ACTIONS(1956), - [anon_sym_out_GT_GT] = ACTIONS(1956), - [anon_sym_e_GT_GT] = ACTIONS(1956), - [anon_sym_o_GT_GT] = ACTIONS(1956), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1956), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1956), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1956), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1956), - [sym__unquoted_pattern] = ACTIONS(1635), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1054)] = { - [aux_sym__repeat_newline] = STATE(993), - [sym_comment] = STATE(1054), - [anon_sym_in] = ACTIONS(2302), - [sym__newline] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_PIPE] = ACTIONS(2302), - [anon_sym_err_GT_PIPE] = ACTIONS(2302), - [anon_sym_out_GT_PIPE] = ACTIONS(2302), - [anon_sym_e_GT_PIPE] = ACTIONS(2302), - [anon_sym_o_GT_PIPE] = ACTIONS(2302), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2302), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2302), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2302), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2302), - [anon_sym_RPAREN] = ACTIONS(2302), - [anon_sym_GT2] = ACTIONS(2304), - [anon_sym_DASH2] = ACTIONS(2302), - [anon_sym_LBRACE] = ACTIONS(2302), - [anon_sym_STAR2] = ACTIONS(2304), - [anon_sym_and2] = ACTIONS(2302), - [anon_sym_xor2] = ACTIONS(2302), - [anon_sym_or2] = ACTIONS(2302), - [anon_sym_not_DASHin2] = ACTIONS(2302), - [anon_sym_has2] = ACTIONS(2302), - [anon_sym_not_DASHhas2] = ACTIONS(2302), - [anon_sym_starts_DASHwith2] = ACTIONS(2302), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2302), - [anon_sym_ends_DASHwith2] = ACTIONS(2302), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2302), - [anon_sym_EQ_EQ2] = ACTIONS(2302), - [anon_sym_BANG_EQ2] = ACTIONS(2302), - [anon_sym_LT2] = ACTIONS(2304), - [anon_sym_LT_EQ2] = ACTIONS(2302), - [anon_sym_GT_EQ2] = ACTIONS(2302), - [anon_sym_EQ_TILDE2] = ACTIONS(2302), - [anon_sym_BANG_TILDE2] = ACTIONS(2302), - [anon_sym_like2] = ACTIONS(2302), - [anon_sym_not_DASHlike2] = ACTIONS(2302), - [anon_sym_STAR_STAR2] = ACTIONS(2302), - [anon_sym_PLUS_PLUS2] = ACTIONS(2302), - [anon_sym_SLASH2] = ACTIONS(2304), - [anon_sym_mod2] = ACTIONS(2302), - [anon_sym_SLASH_SLASH2] = ACTIONS(2302), - [anon_sym_PLUS2] = ACTIONS(2304), - [anon_sym_bit_DASHshl2] = ACTIONS(2302), - [anon_sym_bit_DASHshr2] = ACTIONS(2302), - [anon_sym_bit_DASHand2] = ACTIONS(2302), - [anon_sym_bit_DASHxor2] = ACTIONS(2302), - [anon_sym_bit_DASHor2] = ACTIONS(2302), - [anon_sym_err_GT] = ACTIONS(2304), - [anon_sym_out_GT] = ACTIONS(2304), - [anon_sym_e_GT] = ACTIONS(2304), - [anon_sym_o_GT] = ACTIONS(2304), - [anon_sym_err_PLUSout_GT] = ACTIONS(2304), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2304), - [anon_sym_o_PLUSe_GT] = ACTIONS(2304), - [anon_sym_e_PLUSo_GT] = ACTIONS(2304), - [anon_sym_err_GT_GT] = ACTIONS(2302), - [anon_sym_out_GT_GT] = ACTIONS(2302), - [anon_sym_e_GT_GT] = ACTIONS(2302), - [anon_sym_o_GT_GT] = ACTIONS(2302), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2302), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2302), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2302), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2302), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1055)] = { - [sym_comment] = STATE(1055), - [ts_builtin_sym_end] = ACTIONS(1022), - [anon_sym_in] = ACTIONS(1022), - [sym__newline] = ACTIONS(1022), - [anon_sym_SEMI] = ACTIONS(1022), - [anon_sym_PIPE] = ACTIONS(1022), - [anon_sym_err_GT_PIPE] = ACTIONS(1022), - [anon_sym_out_GT_PIPE] = ACTIONS(1022), - [anon_sym_e_GT_PIPE] = ACTIONS(1022), - [anon_sym_o_GT_PIPE] = ACTIONS(1022), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1022), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1022), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1022), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1022), - [anon_sym_GT2] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(1022), - [anon_sym_STAR2] = ACTIONS(1020), - [anon_sym_and2] = ACTIONS(1022), - [anon_sym_xor2] = ACTIONS(1022), - [anon_sym_or2] = ACTIONS(1022), - [anon_sym_not_DASHin2] = ACTIONS(1022), - [anon_sym_has2] = ACTIONS(1022), - [anon_sym_not_DASHhas2] = ACTIONS(1022), - [anon_sym_starts_DASHwith2] = ACTIONS(1022), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1022), - [anon_sym_ends_DASHwith2] = ACTIONS(1022), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1022), - [anon_sym_EQ_EQ2] = ACTIONS(1022), - [anon_sym_BANG_EQ2] = ACTIONS(1022), - [anon_sym_LT2] = ACTIONS(1020), - [anon_sym_LT_EQ2] = ACTIONS(1022), - [anon_sym_GT_EQ2] = ACTIONS(1022), - [anon_sym_EQ_TILDE2] = ACTIONS(1022), - [anon_sym_BANG_TILDE2] = ACTIONS(1022), - [anon_sym_like2] = ACTIONS(1022), - [anon_sym_not_DASHlike2] = ACTIONS(1022), - [anon_sym_LPAREN2] = ACTIONS(2656), - [anon_sym_STAR_STAR2] = ACTIONS(1022), - [anon_sym_PLUS_PLUS2] = ACTIONS(1022), - [anon_sym_SLASH2] = ACTIONS(1020), - [anon_sym_mod2] = ACTIONS(1022), - [anon_sym_SLASH_SLASH2] = ACTIONS(1022), - [anon_sym_PLUS2] = ACTIONS(1020), - [anon_sym_bit_DASHshl2] = ACTIONS(1022), - [anon_sym_bit_DASHshr2] = ACTIONS(1022), - [anon_sym_bit_DASHand2] = ACTIONS(1022), - [anon_sym_bit_DASHxor2] = ACTIONS(1022), - [anon_sym_bit_DASHor2] = ACTIONS(1022), - [anon_sym_err_GT] = ACTIONS(1020), - [anon_sym_out_GT] = ACTIONS(1020), - [anon_sym_e_GT] = ACTIONS(1020), - [anon_sym_o_GT] = ACTIONS(1020), - [anon_sym_err_PLUSout_GT] = ACTIONS(1020), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1020), - [anon_sym_o_PLUSe_GT] = ACTIONS(1020), - [anon_sym_e_PLUSo_GT] = ACTIONS(1020), - [anon_sym_err_GT_GT] = ACTIONS(1022), - [anon_sym_out_GT_GT] = ACTIONS(1022), - [anon_sym_e_GT_GT] = ACTIONS(1022), - [anon_sym_o_GT_GT] = ACTIONS(1022), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1022), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1022), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1022), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1022), - [sym__unquoted_pattern] = ACTIONS(2658), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1056)] = { - [sym_comment] = STATE(1056), - [ts_builtin_sym_end] = ACTIONS(1030), - [anon_sym_in] = ACTIONS(1030), - [sym__newline] = ACTIONS(1030), - [anon_sym_SEMI] = ACTIONS(1030), - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_err_GT_PIPE] = ACTIONS(1030), - [anon_sym_out_GT_PIPE] = ACTIONS(1030), - [anon_sym_e_GT_PIPE] = ACTIONS(1030), - [anon_sym_o_GT_PIPE] = ACTIONS(1030), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1030), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1030), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1030), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1030), - [anon_sym_GT2] = ACTIONS(994), - [anon_sym_DASH2] = ACTIONS(1030), - [anon_sym_STAR2] = ACTIONS(994), - [anon_sym_and2] = ACTIONS(1030), - [anon_sym_xor2] = ACTIONS(1030), - [anon_sym_or2] = ACTIONS(1030), - [anon_sym_not_DASHin2] = ACTIONS(1030), - [anon_sym_has2] = ACTIONS(1030), - [anon_sym_not_DASHhas2] = ACTIONS(1030), - [anon_sym_starts_DASHwith2] = ACTIONS(1030), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1030), - [anon_sym_ends_DASHwith2] = ACTIONS(1030), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1030), - [anon_sym_EQ_EQ2] = ACTIONS(1030), - [anon_sym_BANG_EQ2] = ACTIONS(1030), - [anon_sym_LT2] = ACTIONS(994), - [anon_sym_LT_EQ2] = ACTIONS(1030), - [anon_sym_GT_EQ2] = ACTIONS(1030), - [anon_sym_EQ_TILDE2] = ACTIONS(1030), - [anon_sym_BANG_TILDE2] = ACTIONS(1030), - [anon_sym_like2] = ACTIONS(1030), - [anon_sym_not_DASHlike2] = ACTIONS(1030), - [anon_sym_LPAREN2] = ACTIONS(2656), - [anon_sym_STAR_STAR2] = ACTIONS(1030), - [anon_sym_PLUS_PLUS2] = ACTIONS(1030), - [anon_sym_SLASH2] = ACTIONS(994), - [anon_sym_mod2] = ACTIONS(1030), - [anon_sym_SLASH_SLASH2] = ACTIONS(1030), - [anon_sym_PLUS2] = ACTIONS(994), - [anon_sym_bit_DASHshl2] = ACTIONS(1030), - [anon_sym_bit_DASHshr2] = ACTIONS(1030), - [anon_sym_bit_DASHand2] = ACTIONS(1030), - [anon_sym_bit_DASHxor2] = ACTIONS(1030), - [anon_sym_bit_DASHor2] = ACTIONS(1030), - [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(1030), - [anon_sym_out_GT_GT] = ACTIONS(1030), - [anon_sym_e_GT_GT] = ACTIONS(1030), - [anon_sym_o_GT_GT] = ACTIONS(1030), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1030), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1030), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1030), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1030), - [sym__unquoted_pattern] = ACTIONS(2658), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1057)] = { - [aux_sym__repeat_newline] = STATE(995), - [sym_comment] = STATE(1057), - [anon_sym_in] = ACTIONS(2302), - [sym__newline] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_PIPE] = ACTIONS(2302), - [anon_sym_err_GT_PIPE] = ACTIONS(2302), - [anon_sym_out_GT_PIPE] = ACTIONS(2302), - [anon_sym_e_GT_PIPE] = ACTIONS(2302), - [anon_sym_o_GT_PIPE] = ACTIONS(2302), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2302), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2302), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2302), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2302), - [anon_sym_RPAREN] = ACTIONS(2302), - [anon_sym_GT2] = ACTIONS(2304), - [anon_sym_DASH2] = ACTIONS(2302), - [anon_sym_LBRACE] = ACTIONS(2302), - [anon_sym_STAR2] = ACTIONS(2304), - [anon_sym_and2] = ACTIONS(2302), - [anon_sym_xor2] = ACTIONS(2302), - [anon_sym_or2] = ACTIONS(2302), - [anon_sym_not_DASHin2] = ACTIONS(2302), - [anon_sym_has2] = ACTIONS(2302), - [anon_sym_not_DASHhas2] = ACTIONS(2302), - [anon_sym_starts_DASHwith2] = ACTIONS(2302), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2302), - [anon_sym_ends_DASHwith2] = ACTIONS(2302), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2302), - [anon_sym_EQ_EQ2] = ACTIONS(2302), - [anon_sym_BANG_EQ2] = ACTIONS(2302), - [anon_sym_LT2] = ACTIONS(2304), - [anon_sym_LT_EQ2] = ACTIONS(2302), - [anon_sym_GT_EQ2] = ACTIONS(2302), - [anon_sym_EQ_TILDE2] = ACTIONS(2302), - [anon_sym_BANG_TILDE2] = ACTIONS(2302), - [anon_sym_like2] = ACTIONS(2302), - [anon_sym_not_DASHlike2] = ACTIONS(2302), - [anon_sym_STAR_STAR2] = ACTIONS(2302), - [anon_sym_PLUS_PLUS2] = ACTIONS(2302), - [anon_sym_SLASH2] = ACTIONS(2304), - [anon_sym_mod2] = ACTIONS(2302), - [anon_sym_SLASH_SLASH2] = ACTIONS(2302), - [anon_sym_PLUS2] = ACTIONS(2304), - [anon_sym_bit_DASHshl2] = ACTIONS(2302), - [anon_sym_bit_DASHshr2] = ACTIONS(2302), - [anon_sym_bit_DASHand2] = ACTIONS(2302), - [anon_sym_bit_DASHxor2] = ACTIONS(2302), - [anon_sym_bit_DASHor2] = ACTIONS(2302), - [anon_sym_err_GT] = ACTIONS(2304), - [anon_sym_out_GT] = ACTIONS(2304), - [anon_sym_e_GT] = ACTIONS(2304), - [anon_sym_o_GT] = ACTIONS(2304), - [anon_sym_err_PLUSout_GT] = ACTIONS(2304), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2304), - [anon_sym_o_PLUSe_GT] = ACTIONS(2304), - [anon_sym_e_PLUSo_GT] = ACTIONS(2304), - [anon_sym_err_GT_GT] = ACTIONS(2302), - [anon_sym_out_GT_GT] = ACTIONS(2302), - [anon_sym_e_GT_GT] = ACTIONS(2302), - [anon_sym_o_GT_GT] = ACTIONS(2302), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2302), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2302), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2302), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2302), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1058)] = { - [sym_comment] = STATE(1058), - [ts_builtin_sym_end] = ACTIONS(2597), - [anon_sym_in] = ACTIONS(2597), - [sym__newline] = ACTIONS(2597), - [anon_sym_SEMI] = ACTIONS(2597), - [anon_sym_PIPE] = ACTIONS(2597), - [anon_sym_err_GT_PIPE] = ACTIONS(2597), - [anon_sym_out_GT_PIPE] = ACTIONS(2597), - [anon_sym_e_GT_PIPE] = ACTIONS(2597), - [anon_sym_o_GT_PIPE] = ACTIONS(2597), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2597), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2597), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2597), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2597), - [anon_sym_GT2] = ACTIONS(2599), - [anon_sym_DASH2] = ACTIONS(2597), - [anon_sym_STAR2] = ACTIONS(2599), - [anon_sym_and2] = ACTIONS(2597), - [anon_sym_xor2] = ACTIONS(2597), - [anon_sym_or2] = ACTIONS(2597), - [anon_sym_not_DASHin2] = ACTIONS(2597), - [anon_sym_has2] = ACTIONS(2597), - [anon_sym_not_DASHhas2] = ACTIONS(2597), - [anon_sym_starts_DASHwith2] = ACTIONS(2597), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2597), - [anon_sym_ends_DASHwith2] = ACTIONS(2597), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2597), - [anon_sym_EQ_EQ2] = ACTIONS(2597), - [anon_sym_BANG_EQ2] = ACTIONS(2597), - [anon_sym_LT2] = ACTIONS(2599), - [anon_sym_LT_EQ2] = ACTIONS(2597), - [anon_sym_GT_EQ2] = ACTIONS(2597), - [anon_sym_EQ_TILDE2] = ACTIONS(2597), - [anon_sym_BANG_TILDE2] = ACTIONS(2597), - [anon_sym_like2] = ACTIONS(2597), - [anon_sym_not_DASHlike2] = ACTIONS(2597), - [anon_sym_LPAREN2] = ACTIONS(1977), - [anon_sym_STAR_STAR2] = ACTIONS(2597), - [anon_sym_PLUS_PLUS2] = ACTIONS(2597), - [anon_sym_SLASH2] = ACTIONS(2599), - [anon_sym_mod2] = ACTIONS(2597), - [anon_sym_SLASH_SLASH2] = ACTIONS(2597), - [anon_sym_PLUS2] = ACTIONS(2599), - [anon_sym_bit_DASHshl2] = ACTIONS(2597), - [anon_sym_bit_DASHshr2] = ACTIONS(2597), - [anon_sym_bit_DASHand2] = ACTIONS(2597), - [anon_sym_bit_DASHxor2] = ACTIONS(2597), - [anon_sym_bit_DASHor2] = ACTIONS(2597), - [anon_sym_err_GT] = ACTIONS(2599), - [anon_sym_out_GT] = ACTIONS(2599), - [anon_sym_e_GT] = ACTIONS(2599), - [anon_sym_o_GT] = ACTIONS(2599), - [anon_sym_err_PLUSout_GT] = ACTIONS(2599), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2599), - [anon_sym_o_PLUSe_GT] = ACTIONS(2599), - [anon_sym_e_PLUSo_GT] = ACTIONS(2599), - [anon_sym_err_GT_GT] = ACTIONS(2597), - [anon_sym_out_GT_GT] = ACTIONS(2597), - [anon_sym_e_GT_GT] = ACTIONS(2597), - [anon_sym_o_GT_GT] = ACTIONS(2597), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2597), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2597), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2597), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2597), - [sym__unquoted_pattern] = ACTIONS(1983), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1059)] = { - [aux_sym__repeat_newline] = STATE(997), - [sym_comment] = STATE(1059), - [anon_sym_in] = ACTIONS(2302), - [sym__newline] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_PIPE] = ACTIONS(2302), - [anon_sym_err_GT_PIPE] = ACTIONS(2302), - [anon_sym_out_GT_PIPE] = ACTIONS(2302), - [anon_sym_e_GT_PIPE] = ACTIONS(2302), - [anon_sym_o_GT_PIPE] = ACTIONS(2302), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2302), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2302), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2302), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2302), - [anon_sym_RPAREN] = ACTIONS(2302), - [anon_sym_GT2] = ACTIONS(2304), - [anon_sym_DASH2] = ACTIONS(2302), - [anon_sym_LBRACE] = ACTIONS(2302), - [anon_sym_STAR2] = ACTIONS(2304), - [anon_sym_and2] = ACTIONS(2302), - [anon_sym_xor2] = ACTIONS(2302), - [anon_sym_or2] = ACTIONS(2302), - [anon_sym_not_DASHin2] = ACTIONS(2302), - [anon_sym_has2] = ACTIONS(2302), - [anon_sym_not_DASHhas2] = ACTIONS(2302), - [anon_sym_starts_DASHwith2] = ACTIONS(2302), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2302), - [anon_sym_ends_DASHwith2] = ACTIONS(2302), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2302), - [anon_sym_EQ_EQ2] = ACTIONS(2302), - [anon_sym_BANG_EQ2] = ACTIONS(2302), - [anon_sym_LT2] = ACTIONS(2304), - [anon_sym_LT_EQ2] = ACTIONS(2302), - [anon_sym_GT_EQ2] = ACTIONS(2302), - [anon_sym_EQ_TILDE2] = ACTIONS(2302), - [anon_sym_BANG_TILDE2] = ACTIONS(2302), - [anon_sym_like2] = ACTIONS(2302), - [anon_sym_not_DASHlike2] = ACTIONS(2302), - [anon_sym_STAR_STAR2] = ACTIONS(2302), - [anon_sym_PLUS_PLUS2] = ACTIONS(2302), - [anon_sym_SLASH2] = ACTIONS(2304), - [anon_sym_mod2] = ACTIONS(2302), - [anon_sym_SLASH_SLASH2] = ACTIONS(2302), - [anon_sym_PLUS2] = ACTIONS(2304), - [anon_sym_bit_DASHshl2] = ACTIONS(2302), - [anon_sym_bit_DASHshr2] = ACTIONS(2302), - [anon_sym_bit_DASHand2] = ACTIONS(2302), - [anon_sym_bit_DASHxor2] = ACTIONS(2302), - [anon_sym_bit_DASHor2] = ACTIONS(2302), - [anon_sym_err_GT] = ACTIONS(2304), - [anon_sym_out_GT] = ACTIONS(2304), - [anon_sym_e_GT] = ACTIONS(2304), - [anon_sym_o_GT] = ACTIONS(2304), - [anon_sym_err_PLUSout_GT] = ACTIONS(2304), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2304), - [anon_sym_o_PLUSe_GT] = ACTIONS(2304), - [anon_sym_e_PLUSo_GT] = ACTIONS(2304), - [anon_sym_err_GT_GT] = ACTIONS(2302), - [anon_sym_out_GT_GT] = ACTIONS(2302), - [anon_sym_e_GT_GT] = ACTIONS(2302), - [anon_sym_o_GT_GT] = ACTIONS(2302), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2302), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2302), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2302), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2302), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1060)] = { - [aux_sym__repeat_newline] = STATE(1094), - [sym_comment] = STATE(1060), - [anon_sym_in] = ACTIONS(2442), - [sym__newline] = ACTIONS(2442), - [anon_sym_SEMI] = ACTIONS(2442), - [anon_sym_PIPE] = ACTIONS(2442), - [anon_sym_err_GT_PIPE] = ACTIONS(2442), - [anon_sym_out_GT_PIPE] = ACTIONS(2442), - [anon_sym_e_GT_PIPE] = ACTIONS(2442), - [anon_sym_o_GT_PIPE] = ACTIONS(2442), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2442), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2442), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2442), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2442), - [anon_sym_RPAREN] = ACTIONS(2442), - [anon_sym_GT2] = ACTIONS(2444), - [anon_sym_DASH2] = ACTIONS(2442), - [anon_sym_LBRACE] = ACTIONS(2442), - [anon_sym_STAR2] = ACTIONS(2444), - [anon_sym_and2] = ACTIONS(2442), - [anon_sym_xor2] = ACTIONS(2442), - [anon_sym_or2] = ACTIONS(2442), - [anon_sym_not_DASHin2] = ACTIONS(2442), - [anon_sym_has2] = ACTIONS(2442), - [anon_sym_not_DASHhas2] = ACTIONS(2442), - [anon_sym_starts_DASHwith2] = ACTIONS(2442), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2442), - [anon_sym_ends_DASHwith2] = ACTIONS(2442), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2442), - [anon_sym_EQ_EQ2] = ACTIONS(2442), - [anon_sym_BANG_EQ2] = ACTIONS(2442), - [anon_sym_LT2] = ACTIONS(2444), - [anon_sym_LT_EQ2] = ACTIONS(2442), - [anon_sym_GT_EQ2] = ACTIONS(2442), - [anon_sym_EQ_TILDE2] = ACTIONS(2442), - [anon_sym_BANG_TILDE2] = ACTIONS(2442), - [anon_sym_like2] = ACTIONS(2442), - [anon_sym_not_DASHlike2] = ACTIONS(2442), - [anon_sym_STAR_STAR2] = ACTIONS(2442), - [anon_sym_PLUS_PLUS2] = ACTIONS(2442), - [anon_sym_SLASH2] = ACTIONS(2444), - [anon_sym_mod2] = ACTIONS(2442), - [anon_sym_SLASH_SLASH2] = ACTIONS(2442), - [anon_sym_PLUS2] = ACTIONS(2444), - [anon_sym_bit_DASHshl2] = ACTIONS(2442), - [anon_sym_bit_DASHshr2] = ACTIONS(2442), - [anon_sym_bit_DASHand2] = ACTIONS(2442), - [anon_sym_bit_DASHxor2] = ACTIONS(2442), - [anon_sym_bit_DASHor2] = ACTIONS(2442), - [anon_sym_err_GT] = ACTIONS(2444), - [anon_sym_out_GT] = ACTIONS(2444), - [anon_sym_e_GT] = ACTIONS(2444), - [anon_sym_o_GT] = ACTIONS(2444), - [anon_sym_err_PLUSout_GT] = ACTIONS(2444), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2444), - [anon_sym_o_PLUSe_GT] = ACTIONS(2444), - [anon_sym_e_PLUSo_GT] = ACTIONS(2444), - [anon_sym_err_GT_GT] = ACTIONS(2442), - [anon_sym_out_GT_GT] = ACTIONS(2442), - [anon_sym_e_GT_GT] = ACTIONS(2442), - [anon_sym_o_GT_GT] = ACTIONS(2442), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2442), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2442), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2442), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2442), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1061)] = { - [sym_comment] = STATE(1061), - [anon_sym_in] = ACTIONS(886), - [sym__newline] = ACTIONS(886), - [anon_sym_SEMI] = ACTIONS(886), - [anon_sym_PIPE] = ACTIONS(886), - [anon_sym_err_GT_PIPE] = ACTIONS(886), - [anon_sym_out_GT_PIPE] = ACTIONS(886), - [anon_sym_e_GT_PIPE] = ACTIONS(886), - [anon_sym_o_GT_PIPE] = ACTIONS(886), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(886), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(886), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(886), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(886), - [anon_sym_GT2] = ACTIONS(866), - [anon_sym_DASH2] = ACTIONS(886), - [anon_sym_RBRACE] = ACTIONS(886), - [anon_sym_STAR2] = ACTIONS(866), - [anon_sym_and2] = ACTIONS(886), - [anon_sym_xor2] = ACTIONS(886), - [anon_sym_or2] = ACTIONS(886), - [anon_sym_not_DASHin2] = ACTIONS(886), - [anon_sym_has2] = ACTIONS(886), - [anon_sym_not_DASHhas2] = ACTIONS(886), - [anon_sym_starts_DASHwith2] = ACTIONS(886), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(886), - [anon_sym_ends_DASHwith2] = ACTIONS(886), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(886), - [anon_sym_EQ_EQ2] = ACTIONS(886), - [anon_sym_BANG_EQ2] = ACTIONS(886), - [anon_sym_LT2] = ACTIONS(866), - [anon_sym_LT_EQ2] = ACTIONS(886), - [anon_sym_GT_EQ2] = ACTIONS(886), - [anon_sym_EQ_TILDE2] = ACTIONS(886), - [anon_sym_BANG_TILDE2] = ACTIONS(886), - [anon_sym_like2] = ACTIONS(886), - [anon_sym_not_DASHlike2] = ACTIONS(886), - [anon_sym_STAR_STAR2] = ACTIONS(886), - [anon_sym_PLUS_PLUS2] = ACTIONS(886), - [anon_sym_SLASH2] = ACTIONS(866), - [anon_sym_mod2] = ACTIONS(886), - [anon_sym_SLASH_SLASH2] = ACTIONS(886), - [anon_sym_PLUS2] = ACTIONS(866), - [anon_sym_bit_DASHshl2] = ACTIONS(886), - [anon_sym_bit_DASHshr2] = ACTIONS(886), - [anon_sym_bit_DASHand2] = ACTIONS(886), - [anon_sym_bit_DASHxor2] = ACTIONS(886), - [anon_sym_bit_DASHor2] = ACTIONS(886), - [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(886), - [anon_sym_out_GT_GT] = ACTIONS(886), - [anon_sym_e_GT_GT] = ACTIONS(886), - [anon_sym_o_GT_GT] = ACTIONS(886), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(886), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(886), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(886), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(886), - [sym__unquoted_pattern] = ACTIONS(1734), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1062)] = { - [sym_comment] = STATE(1062), - [ts_builtin_sym_end] = ACTIONS(1973), - [anon_sym_in] = ACTIONS(1973), - [sym__newline] = ACTIONS(1973), - [anon_sym_SEMI] = ACTIONS(1973), - [anon_sym_PIPE] = ACTIONS(1973), - [anon_sym_err_GT_PIPE] = ACTIONS(1973), - [anon_sym_out_GT_PIPE] = ACTIONS(1973), - [anon_sym_e_GT_PIPE] = ACTIONS(1973), - [anon_sym_o_GT_PIPE] = ACTIONS(1973), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1973), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1973), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1973), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1973), - [anon_sym_GT2] = ACTIONS(1975), - [anon_sym_DASH2] = ACTIONS(1973), - [anon_sym_STAR2] = ACTIONS(1975), - [anon_sym_and2] = ACTIONS(1973), - [anon_sym_xor2] = ACTIONS(1973), - [anon_sym_or2] = ACTIONS(1973), - [anon_sym_not_DASHin2] = ACTIONS(1973), - [anon_sym_has2] = ACTIONS(1973), - [anon_sym_not_DASHhas2] = ACTIONS(1973), - [anon_sym_starts_DASHwith2] = ACTIONS(1973), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1973), - [anon_sym_ends_DASHwith2] = ACTIONS(1973), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1973), - [anon_sym_EQ_EQ2] = ACTIONS(1973), - [anon_sym_BANG_EQ2] = ACTIONS(1973), - [anon_sym_LT2] = ACTIONS(1975), - [anon_sym_LT_EQ2] = ACTIONS(1973), - [anon_sym_GT_EQ2] = ACTIONS(1973), - [anon_sym_EQ_TILDE2] = ACTIONS(1973), - [anon_sym_BANG_TILDE2] = ACTIONS(1973), - [anon_sym_like2] = ACTIONS(1973), - [anon_sym_not_DASHlike2] = ACTIONS(1973), - [anon_sym_LPAREN2] = ACTIONS(1977), - [anon_sym_STAR_STAR2] = ACTIONS(1973), - [anon_sym_PLUS_PLUS2] = ACTIONS(1973), - [anon_sym_SLASH2] = ACTIONS(1975), - [anon_sym_mod2] = ACTIONS(1973), - [anon_sym_SLASH_SLASH2] = ACTIONS(1973), - [anon_sym_PLUS2] = ACTIONS(1975), - [anon_sym_bit_DASHshl2] = ACTIONS(1973), - [anon_sym_bit_DASHshr2] = ACTIONS(1973), - [anon_sym_bit_DASHand2] = ACTIONS(1973), - [anon_sym_bit_DASHxor2] = ACTIONS(1973), - [anon_sym_bit_DASHor2] = ACTIONS(1973), - [anon_sym_err_GT] = ACTIONS(1975), - [anon_sym_out_GT] = ACTIONS(1975), - [anon_sym_e_GT] = ACTIONS(1975), - [anon_sym_o_GT] = ACTIONS(1975), - [anon_sym_err_PLUSout_GT] = ACTIONS(1975), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1975), - [anon_sym_o_PLUSe_GT] = ACTIONS(1975), - [anon_sym_e_PLUSo_GT] = ACTIONS(1975), - [anon_sym_err_GT_GT] = ACTIONS(1973), - [anon_sym_out_GT_GT] = ACTIONS(1973), - [anon_sym_e_GT_GT] = ACTIONS(1973), - [anon_sym_o_GT_GT] = ACTIONS(1973), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1973), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1973), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1973), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1973), - [sym__unquoted_pattern] = ACTIONS(1983), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1063)] = { - [aux_sym__repeat_newline] = STATE(1095), - [sym_comment] = STATE(1063), - [anon_sym_in] = ACTIONS(2442), - [sym__newline] = ACTIONS(2442), - [anon_sym_SEMI] = ACTIONS(2442), - [anon_sym_PIPE] = ACTIONS(2442), - [anon_sym_err_GT_PIPE] = ACTIONS(2442), - [anon_sym_out_GT_PIPE] = ACTIONS(2442), - [anon_sym_e_GT_PIPE] = ACTIONS(2442), - [anon_sym_o_GT_PIPE] = ACTIONS(2442), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2442), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2442), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2442), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2442), - [anon_sym_RPAREN] = ACTIONS(2442), - [anon_sym_GT2] = ACTIONS(2444), - [anon_sym_DASH2] = ACTIONS(2442), - [anon_sym_LBRACE] = ACTIONS(2442), - [anon_sym_STAR2] = ACTIONS(2444), - [anon_sym_and2] = ACTIONS(2442), - [anon_sym_xor2] = ACTIONS(2442), - [anon_sym_or2] = ACTIONS(2442), - [anon_sym_not_DASHin2] = ACTIONS(2442), - [anon_sym_has2] = ACTIONS(2442), - [anon_sym_not_DASHhas2] = ACTIONS(2442), - [anon_sym_starts_DASHwith2] = ACTIONS(2442), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2442), - [anon_sym_ends_DASHwith2] = ACTIONS(2442), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2442), - [anon_sym_EQ_EQ2] = ACTIONS(2442), - [anon_sym_BANG_EQ2] = ACTIONS(2442), - [anon_sym_LT2] = ACTIONS(2444), - [anon_sym_LT_EQ2] = ACTIONS(2442), - [anon_sym_GT_EQ2] = ACTIONS(2442), - [anon_sym_EQ_TILDE2] = ACTIONS(2442), - [anon_sym_BANG_TILDE2] = ACTIONS(2442), - [anon_sym_like2] = ACTIONS(2442), - [anon_sym_not_DASHlike2] = ACTIONS(2442), - [anon_sym_STAR_STAR2] = ACTIONS(2442), - [anon_sym_PLUS_PLUS2] = ACTIONS(2442), - [anon_sym_SLASH2] = ACTIONS(2444), - [anon_sym_mod2] = ACTIONS(2442), - [anon_sym_SLASH_SLASH2] = ACTIONS(2442), - [anon_sym_PLUS2] = ACTIONS(2444), - [anon_sym_bit_DASHshl2] = ACTIONS(2442), - [anon_sym_bit_DASHshr2] = ACTIONS(2442), - [anon_sym_bit_DASHand2] = ACTIONS(2442), - [anon_sym_bit_DASHxor2] = ACTIONS(2442), - [anon_sym_bit_DASHor2] = ACTIONS(2442), - [anon_sym_err_GT] = ACTIONS(2444), - [anon_sym_out_GT] = ACTIONS(2444), - [anon_sym_e_GT] = ACTIONS(2444), - [anon_sym_o_GT] = ACTIONS(2444), - [anon_sym_err_PLUSout_GT] = ACTIONS(2444), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2444), - [anon_sym_o_PLUSe_GT] = ACTIONS(2444), - [anon_sym_e_PLUSo_GT] = ACTIONS(2444), - [anon_sym_err_GT_GT] = ACTIONS(2442), - [anon_sym_out_GT_GT] = ACTIONS(2442), - [anon_sym_e_GT_GT] = ACTIONS(2442), - [anon_sym_o_GT_GT] = ACTIONS(2442), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2442), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2442), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2442), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2442), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1064)] = { - [aux_sym__repeat_newline] = STATE(527), - [sym_comment] = STATE(1064), - [anon_sym_in] = ACTIONS(2742), - [sym__newline] = ACTIONS(2742), - [anon_sym_SEMI] = 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_RPAREN] = ACTIONS(2742), - [anon_sym_GT2] = ACTIONS(2744), - [anon_sym_DASH2] = ACTIONS(2742), - [anon_sym_LBRACE] = ACTIONS(2742), - [anon_sym_STAR2] = ACTIONS(2744), - [anon_sym_and2] = ACTIONS(2742), - [anon_sym_xor2] = ACTIONS(2742), - [anon_sym_or2] = ACTIONS(2742), - [anon_sym_not_DASHin2] = ACTIONS(2742), - [anon_sym_has2] = ACTIONS(2742), - [anon_sym_not_DASHhas2] = ACTIONS(2742), - [anon_sym_starts_DASHwith2] = ACTIONS(2742), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2742), - [anon_sym_ends_DASHwith2] = ACTIONS(2742), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2742), - [anon_sym_EQ_EQ2] = ACTIONS(2742), - [anon_sym_BANG_EQ2] = ACTIONS(2742), - [anon_sym_LT2] = ACTIONS(2744), - [anon_sym_LT_EQ2] = ACTIONS(2742), - [anon_sym_GT_EQ2] = ACTIONS(2742), - [anon_sym_EQ_TILDE2] = ACTIONS(2742), - [anon_sym_BANG_TILDE2] = ACTIONS(2742), - [anon_sym_like2] = ACTIONS(2742), - [anon_sym_not_DASHlike2] = ACTIONS(2742), - [anon_sym_STAR_STAR2] = ACTIONS(2742), - [anon_sym_PLUS_PLUS2] = ACTIONS(2742), - [anon_sym_SLASH2] = ACTIONS(2744), - [anon_sym_mod2] = ACTIONS(2742), - [anon_sym_SLASH_SLASH2] = ACTIONS(2742), - [anon_sym_PLUS2] = ACTIONS(2744), - [anon_sym_bit_DASHshl2] = ACTIONS(2742), - [anon_sym_bit_DASHshr2] = ACTIONS(2742), - [anon_sym_bit_DASHand2] = ACTIONS(2742), - [anon_sym_bit_DASHxor2] = ACTIONS(2742), - [anon_sym_bit_DASHor2] = ACTIONS(2742), - [anon_sym_err_GT] = ACTIONS(2744), - [anon_sym_out_GT] = ACTIONS(2744), - [anon_sym_e_GT] = ACTIONS(2744), - [anon_sym_o_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT] = ACTIONS(2744), - [anon_sym_err_GT_GT] = ACTIONS(2742), - [anon_sym_out_GT_GT] = ACTIONS(2742), - [anon_sym_e_GT_GT] = ACTIONS(2742), - [anon_sym_o_GT_GT] = ACTIONS(2742), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2742), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2742), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2742), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2742), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1065)] = { - [aux_sym__repeat_newline] = STATE(1096), - [sym_comment] = STATE(1065), - [anon_sym_in] = ACTIONS(2442), - [sym__newline] = ACTIONS(2442), - [anon_sym_SEMI] = ACTIONS(2442), - [anon_sym_PIPE] = ACTIONS(2442), - [anon_sym_err_GT_PIPE] = ACTIONS(2442), - [anon_sym_out_GT_PIPE] = ACTIONS(2442), - [anon_sym_e_GT_PIPE] = ACTIONS(2442), - [anon_sym_o_GT_PIPE] = ACTIONS(2442), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2442), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2442), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2442), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2442), - [anon_sym_RPAREN] = ACTIONS(2442), - [anon_sym_GT2] = ACTIONS(2444), - [anon_sym_DASH2] = ACTIONS(2442), - [anon_sym_LBRACE] = ACTIONS(2442), - [anon_sym_STAR2] = ACTIONS(2444), - [anon_sym_and2] = ACTIONS(2442), - [anon_sym_xor2] = ACTIONS(2442), - [anon_sym_or2] = ACTIONS(2442), - [anon_sym_not_DASHin2] = ACTIONS(2442), - [anon_sym_has2] = ACTIONS(2442), - [anon_sym_not_DASHhas2] = ACTIONS(2442), - [anon_sym_starts_DASHwith2] = ACTIONS(2442), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2442), - [anon_sym_ends_DASHwith2] = ACTIONS(2442), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2442), - [anon_sym_EQ_EQ2] = ACTIONS(2442), - [anon_sym_BANG_EQ2] = ACTIONS(2442), - [anon_sym_LT2] = ACTIONS(2444), - [anon_sym_LT_EQ2] = ACTIONS(2442), - [anon_sym_GT_EQ2] = ACTIONS(2442), - [anon_sym_EQ_TILDE2] = ACTIONS(2442), - [anon_sym_BANG_TILDE2] = ACTIONS(2442), - [anon_sym_like2] = ACTIONS(2442), - [anon_sym_not_DASHlike2] = ACTIONS(2442), - [anon_sym_STAR_STAR2] = ACTIONS(2442), - [anon_sym_PLUS_PLUS2] = ACTIONS(2442), - [anon_sym_SLASH2] = ACTIONS(2444), - [anon_sym_mod2] = ACTIONS(2442), - [anon_sym_SLASH_SLASH2] = ACTIONS(2442), - [anon_sym_PLUS2] = ACTIONS(2444), - [anon_sym_bit_DASHshl2] = ACTIONS(2442), - [anon_sym_bit_DASHshr2] = ACTIONS(2442), - [anon_sym_bit_DASHand2] = ACTIONS(2442), - [anon_sym_bit_DASHxor2] = ACTIONS(2442), - [anon_sym_bit_DASHor2] = ACTIONS(2442), - [anon_sym_err_GT] = ACTIONS(2444), - [anon_sym_out_GT] = ACTIONS(2444), - [anon_sym_e_GT] = ACTIONS(2444), - [anon_sym_o_GT] = ACTIONS(2444), - [anon_sym_err_PLUSout_GT] = ACTIONS(2444), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2444), - [anon_sym_o_PLUSe_GT] = ACTIONS(2444), - [anon_sym_e_PLUSo_GT] = ACTIONS(2444), - [anon_sym_err_GT_GT] = ACTIONS(2442), - [anon_sym_out_GT_GT] = ACTIONS(2442), - [anon_sym_e_GT_GT] = ACTIONS(2442), - [anon_sym_o_GT_GT] = ACTIONS(2442), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2442), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2442), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2442), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2442), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1066)] = { - [aux_sym__repeat_newline] = STATE(527), - [sym_comment] = STATE(1066), - [anon_sym_in] = ACTIONS(2742), - [sym__newline] = ACTIONS(2742), - [anon_sym_SEMI] = 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_RPAREN] = ACTIONS(2742), - [anon_sym_GT2] = ACTIONS(2744), - [anon_sym_DASH2] = ACTIONS(2742), - [anon_sym_LBRACE] = ACTIONS(2742), - [anon_sym_STAR2] = ACTIONS(2744), - [anon_sym_and2] = ACTIONS(2742), - [anon_sym_xor2] = ACTIONS(2742), - [anon_sym_or2] = ACTIONS(2742), - [anon_sym_not_DASHin2] = ACTIONS(2742), - [anon_sym_has2] = ACTIONS(2742), - [anon_sym_not_DASHhas2] = ACTIONS(2742), - [anon_sym_starts_DASHwith2] = ACTIONS(2742), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2742), - [anon_sym_ends_DASHwith2] = ACTIONS(2742), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2742), - [anon_sym_EQ_EQ2] = ACTIONS(2742), - [anon_sym_BANG_EQ2] = ACTIONS(2742), - [anon_sym_LT2] = ACTIONS(2744), - [anon_sym_LT_EQ2] = ACTIONS(2742), - [anon_sym_GT_EQ2] = ACTIONS(2742), - [anon_sym_EQ_TILDE2] = ACTIONS(2742), - [anon_sym_BANG_TILDE2] = ACTIONS(2742), - [anon_sym_like2] = ACTIONS(2742), - [anon_sym_not_DASHlike2] = ACTIONS(2742), - [anon_sym_STAR_STAR2] = ACTIONS(2742), - [anon_sym_PLUS_PLUS2] = ACTIONS(2742), - [anon_sym_SLASH2] = ACTIONS(2744), - [anon_sym_mod2] = ACTIONS(2742), - [anon_sym_SLASH_SLASH2] = ACTIONS(2742), - [anon_sym_PLUS2] = ACTIONS(2744), - [anon_sym_bit_DASHshl2] = ACTIONS(2742), - [anon_sym_bit_DASHshr2] = ACTIONS(2742), - [anon_sym_bit_DASHand2] = ACTIONS(2742), - [anon_sym_bit_DASHxor2] = ACTIONS(2742), - [anon_sym_bit_DASHor2] = ACTIONS(2742), - [anon_sym_err_GT] = ACTIONS(2744), - [anon_sym_out_GT] = ACTIONS(2744), - [anon_sym_e_GT] = ACTIONS(2744), - [anon_sym_o_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT] = ACTIONS(2744), - [anon_sym_err_GT_GT] = ACTIONS(2742), - [anon_sym_out_GT_GT] = ACTIONS(2742), - [anon_sym_e_GT_GT] = ACTIONS(2742), - [anon_sym_o_GT_GT] = ACTIONS(2742), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2742), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2742), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2742), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2742), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1067)] = { - [aux_sym__repeat_newline] = STATE(1097), - [sym_comment] = STATE(1067), - [anon_sym_in] = ACTIONS(2442), - [sym__newline] = ACTIONS(2442), - [anon_sym_SEMI] = ACTIONS(2442), - [anon_sym_PIPE] = ACTIONS(2442), - [anon_sym_err_GT_PIPE] = ACTIONS(2442), - [anon_sym_out_GT_PIPE] = ACTIONS(2442), - [anon_sym_e_GT_PIPE] = ACTIONS(2442), - [anon_sym_o_GT_PIPE] = ACTIONS(2442), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2442), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2442), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2442), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2442), - [anon_sym_RPAREN] = ACTIONS(2442), - [anon_sym_GT2] = ACTIONS(2444), - [anon_sym_DASH2] = ACTIONS(2442), - [anon_sym_LBRACE] = ACTIONS(2442), - [anon_sym_STAR2] = ACTIONS(2444), - [anon_sym_and2] = ACTIONS(2442), - [anon_sym_xor2] = ACTIONS(2442), - [anon_sym_or2] = ACTIONS(2442), - [anon_sym_not_DASHin2] = ACTIONS(2442), - [anon_sym_has2] = ACTIONS(2442), - [anon_sym_not_DASHhas2] = ACTIONS(2442), - [anon_sym_starts_DASHwith2] = ACTIONS(2442), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2442), - [anon_sym_ends_DASHwith2] = ACTIONS(2442), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2442), - [anon_sym_EQ_EQ2] = ACTIONS(2442), - [anon_sym_BANG_EQ2] = ACTIONS(2442), - [anon_sym_LT2] = ACTIONS(2444), - [anon_sym_LT_EQ2] = ACTIONS(2442), - [anon_sym_GT_EQ2] = ACTIONS(2442), - [anon_sym_EQ_TILDE2] = ACTIONS(2442), - [anon_sym_BANG_TILDE2] = ACTIONS(2442), - [anon_sym_like2] = ACTIONS(2442), - [anon_sym_not_DASHlike2] = ACTIONS(2442), - [anon_sym_STAR_STAR2] = ACTIONS(2442), - [anon_sym_PLUS_PLUS2] = ACTIONS(2442), - [anon_sym_SLASH2] = ACTIONS(2444), - [anon_sym_mod2] = ACTIONS(2442), - [anon_sym_SLASH_SLASH2] = ACTIONS(2442), - [anon_sym_PLUS2] = ACTIONS(2444), - [anon_sym_bit_DASHshl2] = ACTIONS(2442), - [anon_sym_bit_DASHshr2] = ACTIONS(2442), - [anon_sym_bit_DASHand2] = ACTIONS(2442), - [anon_sym_bit_DASHxor2] = ACTIONS(2442), - [anon_sym_bit_DASHor2] = ACTIONS(2442), - [anon_sym_err_GT] = ACTIONS(2444), - [anon_sym_out_GT] = ACTIONS(2444), - [anon_sym_e_GT] = ACTIONS(2444), - [anon_sym_o_GT] = ACTIONS(2444), - [anon_sym_err_PLUSout_GT] = ACTIONS(2444), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2444), - [anon_sym_o_PLUSe_GT] = ACTIONS(2444), - [anon_sym_e_PLUSo_GT] = ACTIONS(2444), - [anon_sym_err_GT_GT] = ACTIONS(2442), - [anon_sym_out_GT_GT] = ACTIONS(2442), - [anon_sym_e_GT_GT] = ACTIONS(2442), - [anon_sym_o_GT_GT] = ACTIONS(2442), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2442), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2442), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2442), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2442), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1068)] = { - [aux_sym__repeat_newline] = STATE(527), - [sym_comment] = STATE(1068), - [anon_sym_in] = ACTIONS(2742), - [sym__newline] = ACTIONS(2742), - [anon_sym_SEMI] = 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_RPAREN] = ACTIONS(2742), - [anon_sym_GT2] = ACTIONS(2744), - [anon_sym_DASH2] = ACTIONS(2742), - [anon_sym_LBRACE] = ACTIONS(2742), - [anon_sym_STAR2] = ACTIONS(2744), - [anon_sym_and2] = ACTIONS(2742), - [anon_sym_xor2] = ACTIONS(2742), - [anon_sym_or2] = ACTIONS(2742), - [anon_sym_not_DASHin2] = ACTIONS(2742), - [anon_sym_has2] = ACTIONS(2742), - [anon_sym_not_DASHhas2] = ACTIONS(2742), - [anon_sym_starts_DASHwith2] = ACTIONS(2742), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2742), - [anon_sym_ends_DASHwith2] = ACTIONS(2742), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2742), - [anon_sym_EQ_EQ2] = ACTIONS(2742), - [anon_sym_BANG_EQ2] = ACTIONS(2742), - [anon_sym_LT2] = ACTIONS(2744), - [anon_sym_LT_EQ2] = ACTIONS(2742), - [anon_sym_GT_EQ2] = ACTIONS(2742), - [anon_sym_EQ_TILDE2] = ACTIONS(2742), - [anon_sym_BANG_TILDE2] = ACTIONS(2742), - [anon_sym_like2] = ACTIONS(2742), - [anon_sym_not_DASHlike2] = ACTIONS(2742), - [anon_sym_STAR_STAR2] = ACTIONS(2742), - [anon_sym_PLUS_PLUS2] = ACTIONS(2742), - [anon_sym_SLASH2] = ACTIONS(2744), - [anon_sym_mod2] = ACTIONS(2742), - [anon_sym_SLASH_SLASH2] = ACTIONS(2742), - [anon_sym_PLUS2] = ACTIONS(2744), - [anon_sym_bit_DASHshl2] = ACTIONS(2742), - [anon_sym_bit_DASHshr2] = ACTIONS(2742), - [anon_sym_bit_DASHand2] = ACTIONS(2742), - [anon_sym_bit_DASHxor2] = ACTIONS(2742), - [anon_sym_bit_DASHor2] = ACTIONS(2742), - [anon_sym_err_GT] = ACTIONS(2744), - [anon_sym_out_GT] = ACTIONS(2744), - [anon_sym_e_GT] = ACTIONS(2744), - [anon_sym_o_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT] = ACTIONS(2744), - [anon_sym_err_GT_GT] = ACTIONS(2742), - [anon_sym_out_GT_GT] = ACTIONS(2742), - [anon_sym_e_GT_GT] = ACTIONS(2742), - [anon_sym_o_GT_GT] = ACTIONS(2742), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2742), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2742), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2742), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2742), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1069)] = { - [aux_sym__repeat_newline] = STATE(1098), - [sym_comment] = STATE(1069), - [anon_sym_in] = ACTIONS(2442), - [sym__newline] = ACTIONS(2442), - [anon_sym_SEMI] = ACTIONS(2442), - [anon_sym_PIPE] = ACTIONS(2442), - [anon_sym_err_GT_PIPE] = ACTIONS(2442), - [anon_sym_out_GT_PIPE] = ACTIONS(2442), - [anon_sym_e_GT_PIPE] = ACTIONS(2442), - [anon_sym_o_GT_PIPE] = ACTIONS(2442), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2442), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2442), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2442), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2442), - [anon_sym_RPAREN] = ACTIONS(2442), - [anon_sym_GT2] = ACTIONS(2444), - [anon_sym_DASH2] = ACTIONS(2442), - [anon_sym_LBRACE] = ACTIONS(2442), - [anon_sym_STAR2] = ACTIONS(2444), - [anon_sym_and2] = ACTIONS(2442), - [anon_sym_xor2] = ACTIONS(2442), - [anon_sym_or2] = ACTIONS(2442), - [anon_sym_not_DASHin2] = ACTIONS(2442), - [anon_sym_has2] = ACTIONS(2442), - [anon_sym_not_DASHhas2] = ACTIONS(2442), - [anon_sym_starts_DASHwith2] = ACTIONS(2442), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2442), - [anon_sym_ends_DASHwith2] = ACTIONS(2442), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2442), - [anon_sym_EQ_EQ2] = ACTIONS(2442), - [anon_sym_BANG_EQ2] = ACTIONS(2442), - [anon_sym_LT2] = ACTIONS(2444), - [anon_sym_LT_EQ2] = ACTIONS(2442), - [anon_sym_GT_EQ2] = ACTIONS(2442), - [anon_sym_EQ_TILDE2] = ACTIONS(2442), - [anon_sym_BANG_TILDE2] = ACTIONS(2442), - [anon_sym_like2] = ACTIONS(2442), - [anon_sym_not_DASHlike2] = ACTIONS(2442), - [anon_sym_STAR_STAR2] = ACTIONS(2442), - [anon_sym_PLUS_PLUS2] = ACTIONS(2442), - [anon_sym_SLASH2] = ACTIONS(2444), - [anon_sym_mod2] = ACTIONS(2442), - [anon_sym_SLASH_SLASH2] = ACTIONS(2442), - [anon_sym_PLUS2] = ACTIONS(2444), - [anon_sym_bit_DASHshl2] = ACTIONS(2442), - [anon_sym_bit_DASHshr2] = ACTIONS(2442), - [anon_sym_bit_DASHand2] = ACTIONS(2442), - [anon_sym_bit_DASHxor2] = ACTIONS(2442), - [anon_sym_bit_DASHor2] = ACTIONS(2442), - [anon_sym_err_GT] = ACTIONS(2444), - [anon_sym_out_GT] = ACTIONS(2444), - [anon_sym_e_GT] = ACTIONS(2444), - [anon_sym_o_GT] = ACTIONS(2444), - [anon_sym_err_PLUSout_GT] = ACTIONS(2444), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2444), - [anon_sym_o_PLUSe_GT] = ACTIONS(2444), - [anon_sym_e_PLUSo_GT] = ACTIONS(2444), - [anon_sym_err_GT_GT] = ACTIONS(2442), - [anon_sym_out_GT_GT] = ACTIONS(2442), - [anon_sym_e_GT_GT] = ACTIONS(2442), - [anon_sym_o_GT_GT] = ACTIONS(2442), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2442), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2442), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2442), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2442), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1070)] = { - [aux_sym__repeat_newline] = STATE(527), - [sym_comment] = STATE(1070), - [anon_sym_in] = ACTIONS(2742), - [sym__newline] = ACTIONS(2742), - [anon_sym_SEMI] = 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_RPAREN] = ACTIONS(2742), - [anon_sym_GT2] = ACTIONS(2744), - [anon_sym_DASH2] = ACTIONS(2742), - [anon_sym_LBRACE] = ACTIONS(2742), - [anon_sym_STAR2] = ACTIONS(2744), - [anon_sym_and2] = ACTIONS(2742), - [anon_sym_xor2] = ACTIONS(2742), - [anon_sym_or2] = ACTIONS(2742), - [anon_sym_not_DASHin2] = ACTIONS(2742), - [anon_sym_has2] = ACTIONS(2742), - [anon_sym_not_DASHhas2] = ACTIONS(2742), - [anon_sym_starts_DASHwith2] = ACTIONS(2742), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2742), - [anon_sym_ends_DASHwith2] = ACTIONS(2742), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2742), - [anon_sym_EQ_EQ2] = ACTIONS(2742), - [anon_sym_BANG_EQ2] = ACTIONS(2742), - [anon_sym_LT2] = ACTIONS(2744), - [anon_sym_LT_EQ2] = ACTIONS(2742), - [anon_sym_GT_EQ2] = ACTIONS(2742), - [anon_sym_EQ_TILDE2] = ACTIONS(2742), - [anon_sym_BANG_TILDE2] = ACTIONS(2742), - [anon_sym_like2] = ACTIONS(2742), - [anon_sym_not_DASHlike2] = ACTIONS(2742), - [anon_sym_STAR_STAR2] = ACTIONS(2742), - [anon_sym_PLUS_PLUS2] = ACTIONS(2742), - [anon_sym_SLASH2] = ACTIONS(2744), - [anon_sym_mod2] = ACTIONS(2742), - [anon_sym_SLASH_SLASH2] = ACTIONS(2742), - [anon_sym_PLUS2] = ACTIONS(2744), - [anon_sym_bit_DASHshl2] = ACTIONS(2742), - [anon_sym_bit_DASHshr2] = ACTIONS(2742), - [anon_sym_bit_DASHand2] = ACTIONS(2742), - [anon_sym_bit_DASHxor2] = ACTIONS(2742), - [anon_sym_bit_DASHor2] = ACTIONS(2742), - [anon_sym_err_GT] = ACTIONS(2744), - [anon_sym_out_GT] = ACTIONS(2744), - [anon_sym_e_GT] = ACTIONS(2744), - [anon_sym_o_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT] = ACTIONS(2744), - [anon_sym_err_GT_GT] = ACTIONS(2742), - [anon_sym_out_GT_GT] = ACTIONS(2742), - [anon_sym_e_GT_GT] = ACTIONS(2742), - [anon_sym_o_GT_GT] = ACTIONS(2742), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2742), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2742), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2742), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2742), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1071)] = { - [aux_sym__repeat_newline] = STATE(999), - [sym_comment] = STATE(1071), - [anon_sym_in] = ACTIONS(2302), - [sym__newline] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_PIPE] = ACTIONS(2302), - [anon_sym_err_GT_PIPE] = ACTIONS(2302), - [anon_sym_out_GT_PIPE] = ACTIONS(2302), - [anon_sym_e_GT_PIPE] = ACTIONS(2302), - [anon_sym_o_GT_PIPE] = ACTIONS(2302), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2302), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2302), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2302), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2302), - [anon_sym_RPAREN] = ACTIONS(2302), - [anon_sym_GT2] = ACTIONS(2304), - [anon_sym_DASH2] = ACTIONS(2302), - [anon_sym_LBRACE] = ACTIONS(2302), - [anon_sym_STAR2] = ACTIONS(2304), - [anon_sym_and2] = ACTIONS(2302), - [anon_sym_xor2] = ACTIONS(2302), - [anon_sym_or2] = ACTIONS(2302), - [anon_sym_not_DASHin2] = ACTIONS(2302), - [anon_sym_has2] = ACTIONS(2302), - [anon_sym_not_DASHhas2] = ACTIONS(2302), - [anon_sym_starts_DASHwith2] = ACTIONS(2302), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2302), - [anon_sym_ends_DASHwith2] = ACTIONS(2302), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2302), - [anon_sym_EQ_EQ2] = ACTIONS(2302), - [anon_sym_BANG_EQ2] = ACTIONS(2302), - [anon_sym_LT2] = ACTIONS(2304), - [anon_sym_LT_EQ2] = ACTIONS(2302), - [anon_sym_GT_EQ2] = ACTIONS(2302), - [anon_sym_EQ_TILDE2] = ACTIONS(2302), - [anon_sym_BANG_TILDE2] = ACTIONS(2302), - [anon_sym_like2] = ACTIONS(2302), - [anon_sym_not_DASHlike2] = ACTIONS(2302), - [anon_sym_STAR_STAR2] = ACTIONS(2302), - [anon_sym_PLUS_PLUS2] = ACTIONS(2302), - [anon_sym_SLASH2] = ACTIONS(2304), - [anon_sym_mod2] = ACTIONS(2302), - [anon_sym_SLASH_SLASH2] = ACTIONS(2302), - [anon_sym_PLUS2] = ACTIONS(2304), - [anon_sym_bit_DASHshl2] = ACTIONS(2302), - [anon_sym_bit_DASHshr2] = ACTIONS(2302), - [anon_sym_bit_DASHand2] = ACTIONS(2302), - [anon_sym_bit_DASHxor2] = ACTIONS(2302), - [anon_sym_bit_DASHor2] = ACTIONS(2302), - [anon_sym_err_GT] = ACTIONS(2304), - [anon_sym_out_GT] = ACTIONS(2304), - [anon_sym_e_GT] = ACTIONS(2304), - [anon_sym_o_GT] = ACTIONS(2304), - [anon_sym_err_PLUSout_GT] = ACTIONS(2304), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2304), - [anon_sym_o_PLUSe_GT] = ACTIONS(2304), - [anon_sym_e_PLUSo_GT] = ACTIONS(2304), - [anon_sym_err_GT_GT] = ACTIONS(2302), - [anon_sym_out_GT_GT] = ACTIONS(2302), - [anon_sym_e_GT_GT] = ACTIONS(2302), - [anon_sym_o_GT_GT] = ACTIONS(2302), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2302), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2302), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2302), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2302), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1072)] = { - [aux_sym__repeat_newline] = STATE(1099), - [sym_comment] = STATE(1072), - [anon_sym_in] = ACTIONS(2442), - [sym__newline] = ACTIONS(2442), - [anon_sym_SEMI] = ACTIONS(2442), - [anon_sym_PIPE] = ACTIONS(2442), - [anon_sym_err_GT_PIPE] = ACTIONS(2442), - [anon_sym_out_GT_PIPE] = ACTIONS(2442), - [anon_sym_e_GT_PIPE] = ACTIONS(2442), - [anon_sym_o_GT_PIPE] = ACTIONS(2442), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2442), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2442), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2442), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2442), - [anon_sym_RPAREN] = ACTIONS(2442), - [anon_sym_GT2] = ACTIONS(2444), - [anon_sym_DASH2] = ACTIONS(2442), - [anon_sym_LBRACE] = ACTIONS(2442), - [anon_sym_STAR2] = ACTIONS(2444), - [anon_sym_and2] = ACTIONS(2442), - [anon_sym_xor2] = ACTIONS(2442), - [anon_sym_or2] = ACTIONS(2442), - [anon_sym_not_DASHin2] = ACTIONS(2442), - [anon_sym_has2] = ACTIONS(2442), - [anon_sym_not_DASHhas2] = ACTIONS(2442), - [anon_sym_starts_DASHwith2] = ACTIONS(2442), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2442), - [anon_sym_ends_DASHwith2] = ACTIONS(2442), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2442), - [anon_sym_EQ_EQ2] = ACTIONS(2442), - [anon_sym_BANG_EQ2] = ACTIONS(2442), - [anon_sym_LT2] = ACTIONS(2444), - [anon_sym_LT_EQ2] = ACTIONS(2442), - [anon_sym_GT_EQ2] = ACTIONS(2442), - [anon_sym_EQ_TILDE2] = ACTIONS(2442), - [anon_sym_BANG_TILDE2] = ACTIONS(2442), - [anon_sym_like2] = ACTIONS(2442), - [anon_sym_not_DASHlike2] = ACTIONS(2442), - [anon_sym_STAR_STAR2] = ACTIONS(2442), - [anon_sym_PLUS_PLUS2] = ACTIONS(2442), - [anon_sym_SLASH2] = ACTIONS(2444), - [anon_sym_mod2] = ACTIONS(2442), - [anon_sym_SLASH_SLASH2] = ACTIONS(2442), - [anon_sym_PLUS2] = ACTIONS(2444), - [anon_sym_bit_DASHshl2] = ACTIONS(2442), - [anon_sym_bit_DASHshr2] = ACTIONS(2442), - [anon_sym_bit_DASHand2] = ACTIONS(2442), - [anon_sym_bit_DASHxor2] = ACTIONS(2442), - [anon_sym_bit_DASHor2] = ACTIONS(2442), - [anon_sym_err_GT] = ACTIONS(2444), - [anon_sym_out_GT] = ACTIONS(2444), - [anon_sym_e_GT] = ACTIONS(2444), - [anon_sym_o_GT] = ACTIONS(2444), - [anon_sym_err_PLUSout_GT] = ACTIONS(2444), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2444), - [anon_sym_o_PLUSe_GT] = ACTIONS(2444), - [anon_sym_e_PLUSo_GT] = ACTIONS(2444), - [anon_sym_err_GT_GT] = ACTIONS(2442), - [anon_sym_out_GT_GT] = ACTIONS(2442), - [anon_sym_e_GT_GT] = ACTIONS(2442), - [anon_sym_o_GT_GT] = ACTIONS(2442), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2442), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2442), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2442), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2442), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1073)] = { - [aux_sym__repeat_newline] = STATE(527), - [sym_comment] = STATE(1073), - [anon_sym_in] = ACTIONS(2742), - [sym__newline] = ACTIONS(2742), - [anon_sym_SEMI] = 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_RPAREN] = ACTIONS(2742), - [anon_sym_GT2] = ACTIONS(2744), - [anon_sym_DASH2] = ACTIONS(2742), - [anon_sym_LBRACE] = ACTIONS(2742), - [anon_sym_STAR2] = ACTIONS(2744), - [anon_sym_and2] = ACTIONS(2742), - [anon_sym_xor2] = ACTIONS(2742), - [anon_sym_or2] = ACTIONS(2742), - [anon_sym_not_DASHin2] = ACTIONS(2742), - [anon_sym_has2] = ACTIONS(2742), - [anon_sym_not_DASHhas2] = ACTIONS(2742), - [anon_sym_starts_DASHwith2] = ACTIONS(2742), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2742), - [anon_sym_ends_DASHwith2] = ACTIONS(2742), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2742), - [anon_sym_EQ_EQ2] = ACTIONS(2742), - [anon_sym_BANG_EQ2] = ACTIONS(2742), - [anon_sym_LT2] = ACTIONS(2744), - [anon_sym_LT_EQ2] = ACTIONS(2742), - [anon_sym_GT_EQ2] = ACTIONS(2742), - [anon_sym_EQ_TILDE2] = ACTIONS(2742), - [anon_sym_BANG_TILDE2] = ACTIONS(2742), - [anon_sym_like2] = ACTIONS(2742), - [anon_sym_not_DASHlike2] = ACTIONS(2742), - [anon_sym_STAR_STAR2] = ACTIONS(2742), - [anon_sym_PLUS_PLUS2] = ACTIONS(2742), - [anon_sym_SLASH2] = ACTIONS(2744), - [anon_sym_mod2] = ACTIONS(2742), - [anon_sym_SLASH_SLASH2] = ACTIONS(2742), - [anon_sym_PLUS2] = ACTIONS(2744), - [anon_sym_bit_DASHshl2] = ACTIONS(2742), - [anon_sym_bit_DASHshr2] = ACTIONS(2742), - [anon_sym_bit_DASHand2] = ACTIONS(2742), - [anon_sym_bit_DASHxor2] = ACTIONS(2742), - [anon_sym_bit_DASHor2] = ACTIONS(2742), - [anon_sym_err_GT] = ACTIONS(2744), - [anon_sym_out_GT] = ACTIONS(2744), - [anon_sym_e_GT] = ACTIONS(2744), - [anon_sym_o_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT] = ACTIONS(2744), - [anon_sym_err_GT_GT] = ACTIONS(2742), - [anon_sym_out_GT_GT] = ACTIONS(2742), - [anon_sym_e_GT_GT] = ACTIONS(2742), - [anon_sym_o_GT_GT] = ACTIONS(2742), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2742), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2742), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2742), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2742), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1074)] = { - [sym_comment] = STATE(1074), - [ts_builtin_sym_end] = ACTIONS(2541), [anon_sym_in] = ACTIONS(2541), [sym__newline] = ACTIONS(2541), [anon_sym_SEMI] = ACTIONS(2541), @@ -127155,8 +126468,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2541), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2541), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2541), + [anon_sym_RPAREN] = ACTIONS(2541), [anon_sym_GT2] = ACTIONS(2543), [anon_sym_DASH2] = ACTIONS(2541), + [anon_sym_LBRACE] = ACTIONS(2541), [anon_sym_STAR2] = ACTIONS(2543), [anon_sym_and2] = ACTIONS(2541), [anon_sym_xor2] = ACTIONS(2541), @@ -127177,7 +126492,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2541), [anon_sym_like2] = ACTIONS(2541), [anon_sym_not_DASHlike2] = ACTIONS(2541), - [anon_sym_LPAREN2] = ACTIONS(2642), [anon_sym_STAR_STAR2] = ACTIONS(2541), [anon_sym_PLUS_PLUS2] = ACTIONS(2541), [anon_sym_SLASH2] = ACTIONS(2543), @@ -127205,4068 +126519,5427 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2541), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2541), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2541), - [sym__unquoted_pattern] = ACTIONS(1679), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1075)] = { - [aux_sym__repeat_newline] = STATE(1100), - [sym_comment] = STATE(1075), - [anon_sym_in] = ACTIONS(2442), - [sym__newline] = ACTIONS(2442), - [anon_sym_SEMI] = ACTIONS(2442), - [anon_sym_PIPE] = ACTIONS(2442), - [anon_sym_err_GT_PIPE] = ACTIONS(2442), - [anon_sym_out_GT_PIPE] = ACTIONS(2442), - [anon_sym_e_GT_PIPE] = ACTIONS(2442), - [anon_sym_o_GT_PIPE] = ACTIONS(2442), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2442), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2442), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2442), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2442), - [anon_sym_RPAREN] = ACTIONS(2442), - [anon_sym_GT2] = ACTIONS(2444), - [anon_sym_DASH2] = ACTIONS(2442), - [anon_sym_LBRACE] = ACTIONS(2442), - [anon_sym_STAR2] = ACTIONS(2444), - [anon_sym_and2] = ACTIONS(2442), - [anon_sym_xor2] = ACTIONS(2442), - [anon_sym_or2] = ACTIONS(2442), - [anon_sym_not_DASHin2] = ACTIONS(2442), - [anon_sym_has2] = ACTIONS(2442), - [anon_sym_not_DASHhas2] = ACTIONS(2442), - [anon_sym_starts_DASHwith2] = ACTIONS(2442), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2442), - [anon_sym_ends_DASHwith2] = ACTIONS(2442), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2442), - [anon_sym_EQ_EQ2] = ACTIONS(2442), - [anon_sym_BANG_EQ2] = ACTIONS(2442), - [anon_sym_LT2] = ACTIONS(2444), - [anon_sym_LT_EQ2] = ACTIONS(2442), - [anon_sym_GT_EQ2] = ACTIONS(2442), - [anon_sym_EQ_TILDE2] = ACTIONS(2442), - [anon_sym_BANG_TILDE2] = ACTIONS(2442), - [anon_sym_like2] = ACTIONS(2442), - [anon_sym_not_DASHlike2] = ACTIONS(2442), - [anon_sym_STAR_STAR2] = ACTIONS(2442), - [anon_sym_PLUS_PLUS2] = ACTIONS(2442), - [anon_sym_SLASH2] = ACTIONS(2444), - [anon_sym_mod2] = ACTIONS(2442), - [anon_sym_SLASH_SLASH2] = ACTIONS(2442), - [anon_sym_PLUS2] = ACTIONS(2444), - [anon_sym_bit_DASHshl2] = ACTIONS(2442), - [anon_sym_bit_DASHshr2] = ACTIONS(2442), - [anon_sym_bit_DASHand2] = ACTIONS(2442), - [anon_sym_bit_DASHxor2] = ACTIONS(2442), - [anon_sym_bit_DASHor2] = ACTIONS(2442), - [anon_sym_err_GT] = ACTIONS(2444), - [anon_sym_out_GT] = ACTIONS(2444), - [anon_sym_e_GT] = ACTIONS(2444), - [anon_sym_o_GT] = ACTIONS(2444), - [anon_sym_err_PLUSout_GT] = ACTIONS(2444), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2444), - [anon_sym_o_PLUSe_GT] = ACTIONS(2444), - [anon_sym_e_PLUSo_GT] = ACTIONS(2444), - [anon_sym_err_GT_GT] = ACTIONS(2442), - [anon_sym_out_GT_GT] = ACTIONS(2442), - [anon_sym_e_GT_GT] = ACTIONS(2442), - [anon_sym_o_GT_GT] = ACTIONS(2442), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2442), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2442), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2442), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2442), + [STATE(1052)] = { + [aux_sym__repeat_newline] = STATE(1043), + [sym_comment] = STATE(1052), + [anon_sym_in] = ACTIONS(2346), + [sym__newline] = ACTIONS(2346), + [anon_sym_SEMI] = 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_RPAREN] = ACTIONS(2346), + [anon_sym_GT2] = ACTIONS(2348), + [anon_sym_DASH2] = ACTIONS(2346), + [anon_sym_LBRACE] = ACTIONS(2346), + [anon_sym_STAR2] = ACTIONS(2348), + [anon_sym_and2] = ACTIONS(2346), + [anon_sym_xor2] = ACTIONS(2346), + [anon_sym_or2] = ACTIONS(2346), + [anon_sym_not_DASHin2] = ACTIONS(2346), + [anon_sym_has2] = ACTIONS(2346), + [anon_sym_not_DASHhas2] = ACTIONS(2346), + [anon_sym_starts_DASHwith2] = ACTIONS(2346), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2346), + [anon_sym_ends_DASHwith2] = ACTIONS(2346), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2346), + [anon_sym_EQ_EQ2] = ACTIONS(2346), + [anon_sym_BANG_EQ2] = ACTIONS(2346), + [anon_sym_LT2] = ACTIONS(2348), + [anon_sym_LT_EQ2] = ACTIONS(2346), + [anon_sym_GT_EQ2] = ACTIONS(2346), + [anon_sym_EQ_TILDE2] = ACTIONS(2346), + [anon_sym_BANG_TILDE2] = ACTIONS(2346), + [anon_sym_like2] = ACTIONS(2346), + [anon_sym_not_DASHlike2] = ACTIONS(2346), + [anon_sym_STAR_STAR2] = ACTIONS(2346), + [anon_sym_PLUS_PLUS2] = ACTIONS(2346), + [anon_sym_SLASH2] = ACTIONS(2348), + [anon_sym_mod2] = ACTIONS(2346), + [anon_sym_SLASH_SLASH2] = ACTIONS(2346), + [anon_sym_PLUS2] = ACTIONS(2348), + [anon_sym_bit_DASHshl2] = ACTIONS(2346), + [anon_sym_bit_DASHshr2] = ACTIONS(2346), + [anon_sym_bit_DASHand2] = ACTIONS(2346), + [anon_sym_bit_DASHxor2] = ACTIONS(2346), + [anon_sym_bit_DASHor2] = ACTIONS(2346), + [anon_sym_err_GT] = ACTIONS(2348), + [anon_sym_out_GT] = ACTIONS(2348), + [anon_sym_e_GT] = ACTIONS(2348), + [anon_sym_o_GT] = ACTIONS(2348), + [anon_sym_err_PLUSout_GT] = ACTIONS(2348), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2348), + [anon_sym_o_PLUSe_GT] = ACTIONS(2348), + [anon_sym_e_PLUSo_GT] = ACTIONS(2348), + [anon_sym_err_GT_GT] = ACTIONS(2346), + [anon_sym_out_GT_GT] = ACTIONS(2346), + [anon_sym_e_GT_GT] = ACTIONS(2346), + [anon_sym_o_GT_GT] = ACTIONS(2346), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2346), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2346), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2346), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2346), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1076)] = { - [aux_sym__repeat_newline] = STATE(527), - [sym_comment] = STATE(1076), - [anon_sym_in] = ACTIONS(2742), - [sym__newline] = ACTIONS(2742), - [anon_sym_SEMI] = 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_RPAREN] = ACTIONS(2742), - [anon_sym_GT2] = ACTIONS(2744), - [anon_sym_DASH2] = ACTIONS(2742), - [anon_sym_LBRACE] = ACTIONS(2742), - [anon_sym_STAR2] = ACTIONS(2744), - [anon_sym_and2] = ACTIONS(2742), - [anon_sym_xor2] = ACTIONS(2742), - [anon_sym_or2] = ACTIONS(2742), - [anon_sym_not_DASHin2] = ACTIONS(2742), - [anon_sym_has2] = ACTIONS(2742), - [anon_sym_not_DASHhas2] = ACTIONS(2742), - [anon_sym_starts_DASHwith2] = ACTIONS(2742), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2742), - [anon_sym_ends_DASHwith2] = ACTIONS(2742), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2742), - [anon_sym_EQ_EQ2] = ACTIONS(2742), - [anon_sym_BANG_EQ2] = ACTIONS(2742), - [anon_sym_LT2] = ACTIONS(2744), - [anon_sym_LT_EQ2] = ACTIONS(2742), - [anon_sym_GT_EQ2] = ACTIONS(2742), - [anon_sym_EQ_TILDE2] = ACTIONS(2742), - [anon_sym_BANG_TILDE2] = ACTIONS(2742), - [anon_sym_like2] = ACTIONS(2742), - [anon_sym_not_DASHlike2] = ACTIONS(2742), - [anon_sym_STAR_STAR2] = ACTIONS(2742), - [anon_sym_PLUS_PLUS2] = ACTIONS(2742), - [anon_sym_SLASH2] = ACTIONS(2744), - [anon_sym_mod2] = ACTIONS(2742), - [anon_sym_SLASH_SLASH2] = ACTIONS(2742), - [anon_sym_PLUS2] = ACTIONS(2744), - [anon_sym_bit_DASHshl2] = ACTIONS(2742), - [anon_sym_bit_DASHshr2] = ACTIONS(2742), - [anon_sym_bit_DASHand2] = ACTIONS(2742), - [anon_sym_bit_DASHxor2] = ACTIONS(2742), - [anon_sym_bit_DASHor2] = ACTIONS(2742), - [anon_sym_err_GT] = ACTIONS(2744), - [anon_sym_out_GT] = ACTIONS(2744), - [anon_sym_e_GT] = ACTIONS(2744), - [anon_sym_o_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT] = ACTIONS(2744), - [anon_sym_err_GT_GT] = ACTIONS(2742), - [anon_sym_out_GT_GT] = ACTIONS(2742), - [anon_sym_e_GT_GT] = ACTIONS(2742), - [anon_sym_o_GT_GT] = ACTIONS(2742), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2742), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2742), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2742), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2742), + [STATE(1053)] = { + [sym__expr_parenthesized_immediate] = STATE(4973), + [sym_comment] = STATE(1053), + [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(1818), + [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_POUND] = ACTIONS(3), }, - [STATE(1077)] = { - [aux_sym__repeat_newline] = STATE(1101), - [sym_comment] = STATE(1077), - [anon_sym_in] = ACTIONS(2442), - [sym__newline] = ACTIONS(2442), - [anon_sym_SEMI] = ACTIONS(2442), - [anon_sym_PIPE] = ACTIONS(2442), - [anon_sym_err_GT_PIPE] = ACTIONS(2442), - [anon_sym_out_GT_PIPE] = ACTIONS(2442), - [anon_sym_e_GT_PIPE] = ACTIONS(2442), - [anon_sym_o_GT_PIPE] = ACTIONS(2442), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2442), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2442), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2442), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2442), - [anon_sym_RPAREN] = ACTIONS(2442), - [anon_sym_GT2] = ACTIONS(2444), - [anon_sym_DASH2] = ACTIONS(2442), - [anon_sym_LBRACE] = ACTIONS(2442), - [anon_sym_STAR2] = ACTIONS(2444), - [anon_sym_and2] = ACTIONS(2442), - [anon_sym_xor2] = ACTIONS(2442), - [anon_sym_or2] = ACTIONS(2442), - [anon_sym_not_DASHin2] = ACTIONS(2442), - [anon_sym_has2] = ACTIONS(2442), - [anon_sym_not_DASHhas2] = ACTIONS(2442), - [anon_sym_starts_DASHwith2] = ACTIONS(2442), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2442), - [anon_sym_ends_DASHwith2] = ACTIONS(2442), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2442), - [anon_sym_EQ_EQ2] = ACTIONS(2442), - [anon_sym_BANG_EQ2] = ACTIONS(2442), - [anon_sym_LT2] = ACTIONS(2444), - [anon_sym_LT_EQ2] = ACTIONS(2442), - [anon_sym_GT_EQ2] = ACTIONS(2442), - [anon_sym_EQ_TILDE2] = ACTIONS(2442), - [anon_sym_BANG_TILDE2] = ACTIONS(2442), - [anon_sym_like2] = ACTIONS(2442), - [anon_sym_not_DASHlike2] = ACTIONS(2442), - [anon_sym_STAR_STAR2] = ACTIONS(2442), - [anon_sym_PLUS_PLUS2] = ACTIONS(2442), - [anon_sym_SLASH2] = ACTIONS(2444), - [anon_sym_mod2] = ACTIONS(2442), - [anon_sym_SLASH_SLASH2] = ACTIONS(2442), - [anon_sym_PLUS2] = ACTIONS(2444), - [anon_sym_bit_DASHshl2] = ACTIONS(2442), - [anon_sym_bit_DASHshr2] = ACTIONS(2442), - [anon_sym_bit_DASHand2] = ACTIONS(2442), - [anon_sym_bit_DASHxor2] = ACTIONS(2442), - [anon_sym_bit_DASHor2] = ACTIONS(2442), - [anon_sym_err_GT] = ACTIONS(2444), - [anon_sym_out_GT] = ACTIONS(2444), - [anon_sym_e_GT] = ACTIONS(2444), - [anon_sym_o_GT] = ACTIONS(2444), - [anon_sym_err_PLUSout_GT] = ACTIONS(2444), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2444), - [anon_sym_o_PLUSe_GT] = ACTIONS(2444), - [anon_sym_e_PLUSo_GT] = ACTIONS(2444), - [anon_sym_err_GT_GT] = ACTIONS(2442), - [anon_sym_out_GT_GT] = ACTIONS(2442), - [anon_sym_e_GT_GT] = ACTIONS(2442), - [anon_sym_o_GT_GT] = ACTIONS(2442), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2442), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2442), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2442), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2442), + [STATE(1054)] = { + [aux_sym__repeat_newline] = STATE(1044), + [sym_comment] = STATE(1054), + [anon_sym_in] = ACTIONS(2346), + [sym__newline] = ACTIONS(2346), + [anon_sym_SEMI] = 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_RPAREN] = ACTIONS(2346), + [anon_sym_GT2] = ACTIONS(2348), + [anon_sym_DASH2] = ACTIONS(2346), + [anon_sym_LBRACE] = ACTIONS(2346), + [anon_sym_STAR2] = ACTIONS(2348), + [anon_sym_and2] = ACTIONS(2346), + [anon_sym_xor2] = ACTIONS(2346), + [anon_sym_or2] = ACTIONS(2346), + [anon_sym_not_DASHin2] = ACTIONS(2346), + [anon_sym_has2] = ACTIONS(2346), + [anon_sym_not_DASHhas2] = ACTIONS(2346), + [anon_sym_starts_DASHwith2] = ACTIONS(2346), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2346), + [anon_sym_ends_DASHwith2] = ACTIONS(2346), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2346), + [anon_sym_EQ_EQ2] = ACTIONS(2346), + [anon_sym_BANG_EQ2] = ACTIONS(2346), + [anon_sym_LT2] = ACTIONS(2348), + [anon_sym_LT_EQ2] = ACTIONS(2346), + [anon_sym_GT_EQ2] = ACTIONS(2346), + [anon_sym_EQ_TILDE2] = ACTIONS(2346), + [anon_sym_BANG_TILDE2] = ACTIONS(2346), + [anon_sym_like2] = ACTIONS(2346), + [anon_sym_not_DASHlike2] = ACTIONS(2346), + [anon_sym_STAR_STAR2] = ACTIONS(2346), + [anon_sym_PLUS_PLUS2] = ACTIONS(2346), + [anon_sym_SLASH2] = ACTIONS(2348), + [anon_sym_mod2] = ACTIONS(2346), + [anon_sym_SLASH_SLASH2] = ACTIONS(2346), + [anon_sym_PLUS2] = ACTIONS(2348), + [anon_sym_bit_DASHshl2] = ACTIONS(2346), + [anon_sym_bit_DASHshr2] = ACTIONS(2346), + [anon_sym_bit_DASHand2] = ACTIONS(2346), + [anon_sym_bit_DASHxor2] = ACTIONS(2346), + [anon_sym_bit_DASHor2] = ACTIONS(2346), + [anon_sym_err_GT] = ACTIONS(2348), + [anon_sym_out_GT] = ACTIONS(2348), + [anon_sym_e_GT] = ACTIONS(2348), + [anon_sym_o_GT] = ACTIONS(2348), + [anon_sym_err_PLUSout_GT] = ACTIONS(2348), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2348), + [anon_sym_o_PLUSe_GT] = ACTIONS(2348), + [anon_sym_e_PLUSo_GT] = ACTIONS(2348), + [anon_sym_err_GT_GT] = ACTIONS(2346), + [anon_sym_out_GT_GT] = ACTIONS(2346), + [anon_sym_e_GT_GT] = ACTIONS(2346), + [anon_sym_o_GT_GT] = ACTIONS(2346), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2346), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2346), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2346), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2346), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1078)] = { - [aux_sym__repeat_newline] = STATE(527), - [sym_comment] = STATE(1078), - [anon_sym_in] = ACTIONS(2742), - [sym__newline] = ACTIONS(2742), - [anon_sym_SEMI] = 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_RPAREN] = ACTIONS(2742), - [anon_sym_GT2] = ACTIONS(2744), - [anon_sym_DASH2] = ACTIONS(2742), - [anon_sym_LBRACE] = ACTIONS(2742), - [anon_sym_STAR2] = ACTIONS(2744), - [anon_sym_and2] = ACTIONS(2742), - [anon_sym_xor2] = ACTIONS(2742), - [anon_sym_or2] = ACTIONS(2742), - [anon_sym_not_DASHin2] = ACTIONS(2742), - [anon_sym_has2] = ACTIONS(2742), - [anon_sym_not_DASHhas2] = ACTIONS(2742), - [anon_sym_starts_DASHwith2] = ACTIONS(2742), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2742), - [anon_sym_ends_DASHwith2] = ACTIONS(2742), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2742), - [anon_sym_EQ_EQ2] = ACTIONS(2742), - [anon_sym_BANG_EQ2] = ACTIONS(2742), - [anon_sym_LT2] = ACTIONS(2744), - [anon_sym_LT_EQ2] = ACTIONS(2742), - [anon_sym_GT_EQ2] = ACTIONS(2742), - [anon_sym_EQ_TILDE2] = ACTIONS(2742), - [anon_sym_BANG_TILDE2] = ACTIONS(2742), - [anon_sym_like2] = ACTIONS(2742), - [anon_sym_not_DASHlike2] = ACTIONS(2742), - [anon_sym_STAR_STAR2] = ACTIONS(2742), - [anon_sym_PLUS_PLUS2] = ACTIONS(2742), - [anon_sym_SLASH2] = ACTIONS(2744), - [anon_sym_mod2] = ACTIONS(2742), - [anon_sym_SLASH_SLASH2] = ACTIONS(2742), - [anon_sym_PLUS2] = ACTIONS(2744), - [anon_sym_bit_DASHshl2] = ACTIONS(2742), - [anon_sym_bit_DASHshr2] = ACTIONS(2742), - [anon_sym_bit_DASHand2] = ACTIONS(2742), - [anon_sym_bit_DASHxor2] = ACTIONS(2742), - [anon_sym_bit_DASHor2] = ACTIONS(2742), - [anon_sym_err_GT] = ACTIONS(2744), - [anon_sym_out_GT] = ACTIONS(2744), - [anon_sym_e_GT] = ACTIONS(2744), - [anon_sym_o_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT] = ACTIONS(2744), - [anon_sym_err_GT_GT] = ACTIONS(2742), - [anon_sym_out_GT_GT] = ACTIONS(2742), - [anon_sym_e_GT_GT] = ACTIONS(2742), - [anon_sym_o_GT_GT] = ACTIONS(2742), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2742), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2742), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2742), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2742), + [STATE(1055)] = { + [aux_sym__repeat_newline] = STATE(485), + [sym_comment] = STATE(1055), + [anon_sym_in] = ACTIONS(2676), + [sym__newline] = ACTIONS(2676), + [anon_sym_SEMI] = ACTIONS(2676), + [anon_sym_PIPE] = ACTIONS(2676), + [anon_sym_err_GT_PIPE] = ACTIONS(2676), + [anon_sym_out_GT_PIPE] = ACTIONS(2676), + [anon_sym_e_GT_PIPE] = ACTIONS(2676), + [anon_sym_o_GT_PIPE] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2676), + [anon_sym_RPAREN] = ACTIONS(2676), + [anon_sym_GT2] = ACTIONS(2678), + [anon_sym_DASH2] = ACTIONS(2676), + [anon_sym_LBRACE] = ACTIONS(2676), + [anon_sym_STAR2] = ACTIONS(2678), + [anon_sym_and2] = ACTIONS(2676), + [anon_sym_xor2] = ACTIONS(2676), + [anon_sym_or2] = ACTIONS(2676), + [anon_sym_not_DASHin2] = ACTIONS(2676), + [anon_sym_has2] = ACTIONS(2676), + [anon_sym_not_DASHhas2] = ACTIONS(2676), + [anon_sym_starts_DASHwith2] = ACTIONS(2676), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2676), + [anon_sym_ends_DASHwith2] = ACTIONS(2676), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2676), + [anon_sym_EQ_EQ2] = ACTIONS(2676), + [anon_sym_BANG_EQ2] = ACTIONS(2676), + [anon_sym_LT2] = ACTIONS(2678), + [anon_sym_LT_EQ2] = ACTIONS(2676), + [anon_sym_GT_EQ2] = ACTIONS(2676), + [anon_sym_EQ_TILDE2] = ACTIONS(2676), + [anon_sym_BANG_TILDE2] = ACTIONS(2676), + [anon_sym_like2] = ACTIONS(2676), + [anon_sym_not_DASHlike2] = ACTIONS(2676), + [anon_sym_STAR_STAR2] = ACTIONS(2676), + [anon_sym_PLUS_PLUS2] = ACTIONS(2676), + [anon_sym_SLASH2] = ACTIONS(2678), + [anon_sym_mod2] = ACTIONS(2676), + [anon_sym_SLASH_SLASH2] = ACTIONS(2676), + [anon_sym_PLUS2] = ACTIONS(2678), + [anon_sym_bit_DASHshl2] = ACTIONS(2676), + [anon_sym_bit_DASHshr2] = ACTIONS(2676), + [anon_sym_bit_DASHand2] = ACTIONS(2676), + [anon_sym_bit_DASHxor2] = ACTIONS(2676), + [anon_sym_bit_DASHor2] = ACTIONS(2676), + [anon_sym_err_GT] = ACTIONS(2678), + [anon_sym_out_GT] = ACTIONS(2678), + [anon_sym_e_GT] = ACTIONS(2678), + [anon_sym_o_GT] = ACTIONS(2678), + [anon_sym_err_PLUSout_GT] = ACTIONS(2678), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2678), + [anon_sym_o_PLUSe_GT] = ACTIONS(2678), + [anon_sym_e_PLUSo_GT] = ACTIONS(2678), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1079)] = { - [aux_sym__repeat_newline] = STATE(1102), - [sym_comment] = STATE(1079), - [anon_sym_in] = ACTIONS(2746), - [sym__newline] = ACTIONS(2746), - [anon_sym_SEMI] = ACTIONS(2746), - [anon_sym_PIPE] = ACTIONS(2746), - [anon_sym_err_GT_PIPE] = ACTIONS(2746), - [anon_sym_out_GT_PIPE] = ACTIONS(2746), - [anon_sym_e_GT_PIPE] = ACTIONS(2746), - [anon_sym_o_GT_PIPE] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2746), - [anon_sym_RPAREN] = ACTIONS(2746), - [anon_sym_GT2] = ACTIONS(2748), - [anon_sym_DASH2] = ACTIONS(2746), - [anon_sym_LBRACE] = ACTIONS(2746), - [anon_sym_STAR2] = ACTIONS(2748), - [anon_sym_and2] = ACTIONS(2746), - [anon_sym_xor2] = ACTIONS(2746), - [anon_sym_or2] = ACTIONS(2746), - [anon_sym_not_DASHin2] = ACTIONS(2746), - [anon_sym_has2] = ACTIONS(2746), - [anon_sym_not_DASHhas2] = ACTIONS(2746), - [anon_sym_starts_DASHwith2] = ACTIONS(2746), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2746), - [anon_sym_ends_DASHwith2] = ACTIONS(2746), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2746), - [anon_sym_EQ_EQ2] = ACTIONS(2746), - [anon_sym_BANG_EQ2] = ACTIONS(2746), - [anon_sym_LT2] = ACTIONS(2748), - [anon_sym_LT_EQ2] = ACTIONS(2746), - [anon_sym_GT_EQ2] = ACTIONS(2746), - [anon_sym_EQ_TILDE2] = ACTIONS(2746), - [anon_sym_BANG_TILDE2] = ACTIONS(2746), - [anon_sym_like2] = ACTIONS(2746), - [anon_sym_not_DASHlike2] = ACTIONS(2746), - [anon_sym_STAR_STAR2] = ACTIONS(2746), - [anon_sym_PLUS_PLUS2] = ACTIONS(2746), - [anon_sym_SLASH2] = ACTIONS(2748), - [anon_sym_mod2] = ACTIONS(2746), - [anon_sym_SLASH_SLASH2] = ACTIONS(2746), - [anon_sym_PLUS2] = ACTIONS(2748), - [anon_sym_bit_DASHshl2] = ACTIONS(2746), - [anon_sym_bit_DASHshr2] = ACTIONS(2746), - [anon_sym_bit_DASHand2] = ACTIONS(2746), - [anon_sym_bit_DASHxor2] = ACTIONS(2746), - [anon_sym_bit_DASHor2] = ACTIONS(2746), - [anon_sym_err_GT] = ACTIONS(2748), - [anon_sym_out_GT] = ACTIONS(2748), - [anon_sym_e_GT] = ACTIONS(2748), - [anon_sym_o_GT] = ACTIONS(2748), - [anon_sym_err_PLUSout_GT] = ACTIONS(2748), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2748), - [anon_sym_o_PLUSe_GT] = ACTIONS(2748), - [anon_sym_e_PLUSo_GT] = ACTIONS(2748), - [anon_sym_err_GT_GT] = ACTIONS(2746), - [anon_sym_out_GT_GT] = ACTIONS(2746), - [anon_sym_e_GT_GT] = ACTIONS(2746), - [anon_sym_o_GT_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2746), - [anon_sym_POUND] = ACTIONS(3), + [STATE(1056)] = { + [aux_sym__repeat_newline] = STATE(485), + [sym_comment] = STATE(1056), + [anon_sym_in] = ACTIONS(2780), + [sym__newline] = ACTIONS(2780), + [anon_sym_SEMI] = ACTIONS(2780), + [anon_sym_PIPE] = ACTIONS(2780), + [anon_sym_err_GT_PIPE] = ACTIONS(2780), + [anon_sym_out_GT_PIPE] = ACTIONS(2780), + [anon_sym_e_GT_PIPE] = ACTIONS(2780), + [anon_sym_o_GT_PIPE] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2780), + [anon_sym_RPAREN] = ACTIONS(2780), + [anon_sym_GT2] = ACTIONS(2782), + [anon_sym_DASH2] = ACTIONS(2780), + [anon_sym_LBRACE] = ACTIONS(2780), + [anon_sym_STAR2] = ACTIONS(2782), + [anon_sym_and2] = ACTIONS(2780), + [anon_sym_xor2] = ACTIONS(2780), + [anon_sym_or2] = ACTIONS(2780), + [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(2780), + [anon_sym_BANG_EQ2] = ACTIONS(2780), + [anon_sym_LT2] = ACTIONS(2782), + [anon_sym_LT_EQ2] = ACTIONS(2780), + [anon_sym_GT_EQ2] = ACTIONS(2780), + [anon_sym_EQ_TILDE2] = ACTIONS(2780), + [anon_sym_BANG_TILDE2] = ACTIONS(2780), + [anon_sym_like2] = ACTIONS(2780), + [anon_sym_not_DASHlike2] = ACTIONS(2780), + [anon_sym_STAR_STAR2] = ACTIONS(2780), + [anon_sym_PLUS_PLUS2] = ACTIONS(2780), + [anon_sym_SLASH2] = ACTIONS(2782), + [anon_sym_mod2] = ACTIONS(2780), + [anon_sym_SLASH_SLASH2] = ACTIONS(2780), + [anon_sym_PLUS2] = ACTIONS(2782), + [anon_sym_bit_DASHshl2] = ACTIONS(2780), + [anon_sym_bit_DASHshr2] = ACTIONS(2780), + [anon_sym_bit_DASHand2] = ACTIONS(2780), + [anon_sym_bit_DASHxor2] = ACTIONS(2780), + [anon_sym_bit_DASHor2] = ACTIONS(2780), + [anon_sym_err_GT] = ACTIONS(2782), + [anon_sym_out_GT] = ACTIONS(2782), + [anon_sym_e_GT] = ACTIONS(2782), + [anon_sym_o_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT] = ACTIONS(2782), + [anon_sym_err_GT_GT] = ACTIONS(2780), + [anon_sym_out_GT_GT] = ACTIONS(2780), + [anon_sym_e_GT_GT] = ACTIONS(2780), + [anon_sym_o_GT_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2780), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1057)] = { + [aux_sym__repeat_newline] = STATE(1045), + [sym_comment] = STATE(1057), + [anon_sym_in] = ACTIONS(2788), + [sym__newline] = ACTIONS(2788), + [anon_sym_SEMI] = ACTIONS(2788), + [anon_sym_PIPE] = ACTIONS(2788), + [anon_sym_err_GT_PIPE] = ACTIONS(2788), + [anon_sym_out_GT_PIPE] = ACTIONS(2788), + [anon_sym_e_GT_PIPE] = ACTIONS(2788), + [anon_sym_o_GT_PIPE] = ACTIONS(2788), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2788), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2788), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2788), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2788), + [anon_sym_RPAREN] = ACTIONS(2788), + [anon_sym_GT2] = ACTIONS(2790), + [anon_sym_DASH2] = ACTIONS(2788), + [anon_sym_LBRACE] = ACTIONS(2788), + [anon_sym_STAR2] = ACTIONS(2790), + [anon_sym_and2] = ACTIONS(2788), + [anon_sym_xor2] = ACTIONS(2788), + [anon_sym_or2] = ACTIONS(2788), + [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(2788), + [anon_sym_BANG_EQ2] = ACTIONS(2788), + [anon_sym_LT2] = ACTIONS(2790), + [anon_sym_LT_EQ2] = ACTIONS(2788), + [anon_sym_GT_EQ2] = ACTIONS(2788), + [anon_sym_EQ_TILDE2] = ACTIONS(2788), + [anon_sym_BANG_TILDE2] = ACTIONS(2788), + [anon_sym_like2] = ACTIONS(2788), + [anon_sym_not_DASHlike2] = ACTIONS(2788), + [anon_sym_STAR_STAR2] = ACTIONS(2788), + [anon_sym_PLUS_PLUS2] = ACTIONS(2788), + [anon_sym_SLASH2] = ACTIONS(2790), + [anon_sym_mod2] = ACTIONS(2788), + [anon_sym_SLASH_SLASH2] = ACTIONS(2788), + [anon_sym_PLUS2] = ACTIONS(2790), + [anon_sym_bit_DASHshl2] = ACTIONS(2788), + [anon_sym_bit_DASHshr2] = ACTIONS(2788), + [anon_sym_bit_DASHand2] = ACTIONS(2788), + [anon_sym_bit_DASHxor2] = ACTIONS(2788), + [anon_sym_bit_DASHor2] = ACTIONS(2788), + [anon_sym_err_GT] = ACTIONS(2790), + [anon_sym_out_GT] = ACTIONS(2790), + [anon_sym_e_GT] = ACTIONS(2790), + [anon_sym_o_GT] = ACTIONS(2790), + [anon_sym_err_PLUSout_GT] = ACTIONS(2790), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2790), + [anon_sym_o_PLUSe_GT] = ACTIONS(2790), + [anon_sym_e_PLUSo_GT] = ACTIONS(2790), + [anon_sym_err_GT_GT] = ACTIONS(2788), + [anon_sym_out_GT_GT] = ACTIONS(2788), + [anon_sym_e_GT_GT] = ACTIONS(2788), + [anon_sym_o_GT_GT] = ACTIONS(2788), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2788), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2788), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2788), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2788), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1058)] = { + [sym__expr_parenthesized_immediate] = STATE(4973), + [sym_comment] = STATE(1058), + [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(1818), + [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_POUND] = ACTIONS(3), + }, + [STATE(1059)] = { + [aux_sym__repeat_newline] = STATE(1358), + [sym__expression_parenthesized] = STATE(4644), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2190), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1886), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_comment] = STATE(1059), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(2792), + [aux_sym_cmd_identifier_token3] = ACTIONS(189), + [aux_sym_cmd_identifier_token4] = ACTIONS(189), + [aux_sym_cmd_identifier_token5] = ACTIONS(189), + [sym__newline] = ACTIONS(2602), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(998), + [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(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2008), + [aux_sym__val_number_decimal_token3] = ACTIONS(2010), + [aux_sym__val_number_decimal_token4] = ACTIONS(2010), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__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(1060)] = { + [aux_sym__repeat_newline] = STATE(1046), + [sym_comment] = STATE(1060), + [anon_sym_in] = ACTIONS(2346), + [sym__newline] = ACTIONS(2346), + [anon_sym_SEMI] = 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_RPAREN] = ACTIONS(2346), + [anon_sym_GT2] = ACTIONS(2348), + [anon_sym_DASH2] = ACTIONS(2346), + [anon_sym_LBRACE] = ACTIONS(2346), + [anon_sym_STAR2] = ACTIONS(2348), + [anon_sym_and2] = ACTIONS(2346), + [anon_sym_xor2] = ACTIONS(2346), + [anon_sym_or2] = ACTIONS(2346), + [anon_sym_not_DASHin2] = ACTIONS(2346), + [anon_sym_has2] = ACTIONS(2346), + [anon_sym_not_DASHhas2] = ACTIONS(2346), + [anon_sym_starts_DASHwith2] = ACTIONS(2346), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2346), + [anon_sym_ends_DASHwith2] = ACTIONS(2346), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2346), + [anon_sym_EQ_EQ2] = ACTIONS(2346), + [anon_sym_BANG_EQ2] = ACTIONS(2346), + [anon_sym_LT2] = ACTIONS(2348), + [anon_sym_LT_EQ2] = ACTIONS(2346), + [anon_sym_GT_EQ2] = ACTIONS(2346), + [anon_sym_EQ_TILDE2] = ACTIONS(2346), + [anon_sym_BANG_TILDE2] = ACTIONS(2346), + [anon_sym_like2] = ACTIONS(2346), + [anon_sym_not_DASHlike2] = ACTIONS(2346), + [anon_sym_STAR_STAR2] = ACTIONS(2346), + [anon_sym_PLUS_PLUS2] = ACTIONS(2346), + [anon_sym_SLASH2] = ACTIONS(2348), + [anon_sym_mod2] = ACTIONS(2346), + [anon_sym_SLASH_SLASH2] = ACTIONS(2346), + [anon_sym_PLUS2] = ACTIONS(2348), + [anon_sym_bit_DASHshl2] = ACTIONS(2346), + [anon_sym_bit_DASHshr2] = ACTIONS(2346), + [anon_sym_bit_DASHand2] = ACTIONS(2346), + [anon_sym_bit_DASHxor2] = ACTIONS(2346), + [anon_sym_bit_DASHor2] = ACTIONS(2346), + [anon_sym_err_GT] = ACTIONS(2348), + [anon_sym_out_GT] = ACTIONS(2348), + [anon_sym_e_GT] = ACTIONS(2348), + [anon_sym_o_GT] = ACTIONS(2348), + [anon_sym_err_PLUSout_GT] = ACTIONS(2348), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2348), + [anon_sym_o_PLUSe_GT] = ACTIONS(2348), + [anon_sym_e_PLUSo_GT] = ACTIONS(2348), + [anon_sym_err_GT_GT] = ACTIONS(2346), + [anon_sym_out_GT_GT] = ACTIONS(2346), + [anon_sym_e_GT_GT] = ACTIONS(2346), + [anon_sym_o_GT_GT] = ACTIONS(2346), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2346), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2346), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2346), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2346), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1061)] = { + [aux_sym__repeat_newline] = STATE(485), + [sym_comment] = STATE(1061), + [anon_sym_in] = ACTIONS(2794), + [sym__newline] = ACTIONS(2794), + [anon_sym_SEMI] = ACTIONS(2794), + [anon_sym_PIPE] = ACTIONS(2794), + [anon_sym_err_GT_PIPE] = ACTIONS(2794), + [anon_sym_out_GT_PIPE] = ACTIONS(2794), + [anon_sym_e_GT_PIPE] = ACTIONS(2794), + [anon_sym_o_GT_PIPE] = ACTIONS(2794), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2794), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2794), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2794), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2794), + [anon_sym_RPAREN] = ACTIONS(2794), + [anon_sym_GT2] = ACTIONS(2796), + [anon_sym_DASH2] = ACTIONS(2794), + [anon_sym_LBRACE] = ACTIONS(2794), + [anon_sym_STAR2] = ACTIONS(2796), + [anon_sym_and2] = ACTIONS(2794), + [anon_sym_xor2] = ACTIONS(2794), + [anon_sym_or2] = ACTIONS(2794), + [anon_sym_not_DASHin2] = ACTIONS(2794), + [anon_sym_has2] = ACTIONS(2794), + [anon_sym_not_DASHhas2] = ACTIONS(2794), + [anon_sym_starts_DASHwith2] = ACTIONS(2794), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2794), + [anon_sym_ends_DASHwith2] = ACTIONS(2794), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2794), + [anon_sym_EQ_EQ2] = ACTIONS(2794), + [anon_sym_BANG_EQ2] = ACTIONS(2794), + [anon_sym_LT2] = ACTIONS(2796), + [anon_sym_LT_EQ2] = ACTIONS(2794), + [anon_sym_GT_EQ2] = ACTIONS(2794), + [anon_sym_EQ_TILDE2] = ACTIONS(2794), + [anon_sym_BANG_TILDE2] = ACTIONS(2794), + [anon_sym_like2] = ACTIONS(2794), + [anon_sym_not_DASHlike2] = ACTIONS(2794), + [anon_sym_STAR_STAR2] = ACTIONS(2794), + [anon_sym_PLUS_PLUS2] = ACTIONS(2794), + [anon_sym_SLASH2] = ACTIONS(2796), + [anon_sym_mod2] = ACTIONS(2794), + [anon_sym_SLASH_SLASH2] = ACTIONS(2794), + [anon_sym_PLUS2] = ACTIONS(2796), + [anon_sym_bit_DASHshl2] = ACTIONS(2794), + [anon_sym_bit_DASHshr2] = ACTIONS(2794), + [anon_sym_bit_DASHand2] = ACTIONS(2794), + [anon_sym_bit_DASHxor2] = ACTIONS(2794), + [anon_sym_bit_DASHor2] = ACTIONS(2794), + [anon_sym_err_GT] = ACTIONS(2796), + [anon_sym_out_GT] = ACTIONS(2796), + [anon_sym_e_GT] = ACTIONS(2796), + [anon_sym_o_GT] = ACTIONS(2796), + [anon_sym_err_PLUSout_GT] = ACTIONS(2796), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2796), + [anon_sym_o_PLUSe_GT] = ACTIONS(2796), + [anon_sym_e_PLUSo_GT] = ACTIONS(2796), + [anon_sym_err_GT_GT] = ACTIONS(2794), + [anon_sym_out_GT_GT] = ACTIONS(2794), + [anon_sym_e_GT_GT] = ACTIONS(2794), + [anon_sym_o_GT_GT] = ACTIONS(2794), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2794), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2794), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2794), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2794), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1062)] = { + [aux_sym__repeat_newline] = STATE(485), + [sym_comment] = STATE(1062), + [anon_sym_in] = ACTIONS(2676), + [sym__newline] = ACTIONS(2676), + [anon_sym_SEMI] = ACTIONS(2676), + [anon_sym_PIPE] = ACTIONS(2676), + [anon_sym_err_GT_PIPE] = ACTIONS(2676), + [anon_sym_out_GT_PIPE] = ACTIONS(2676), + [anon_sym_e_GT_PIPE] = ACTIONS(2676), + [anon_sym_o_GT_PIPE] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2676), + [anon_sym_RPAREN] = ACTIONS(2676), + [anon_sym_GT2] = ACTIONS(2678), + [anon_sym_DASH2] = ACTIONS(2676), + [anon_sym_LBRACE] = ACTIONS(2676), + [anon_sym_STAR2] = ACTIONS(2678), + [anon_sym_and2] = ACTIONS(2676), + [anon_sym_xor2] = ACTIONS(2676), + [anon_sym_or2] = ACTIONS(2676), + [anon_sym_not_DASHin2] = ACTIONS(2676), + [anon_sym_has2] = ACTIONS(2676), + [anon_sym_not_DASHhas2] = ACTIONS(2676), + [anon_sym_starts_DASHwith2] = ACTIONS(2676), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2676), + [anon_sym_ends_DASHwith2] = ACTIONS(2676), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2676), + [anon_sym_EQ_EQ2] = ACTIONS(2676), + [anon_sym_BANG_EQ2] = ACTIONS(2676), + [anon_sym_LT2] = ACTIONS(2678), + [anon_sym_LT_EQ2] = ACTIONS(2676), + [anon_sym_GT_EQ2] = ACTIONS(2676), + [anon_sym_EQ_TILDE2] = ACTIONS(2676), + [anon_sym_BANG_TILDE2] = ACTIONS(2676), + [anon_sym_like2] = ACTIONS(2676), + [anon_sym_not_DASHlike2] = ACTIONS(2676), + [anon_sym_STAR_STAR2] = ACTIONS(2676), + [anon_sym_PLUS_PLUS2] = ACTIONS(2676), + [anon_sym_SLASH2] = ACTIONS(2678), + [anon_sym_mod2] = ACTIONS(2676), + [anon_sym_SLASH_SLASH2] = ACTIONS(2676), + [anon_sym_PLUS2] = ACTIONS(2678), + [anon_sym_bit_DASHshl2] = ACTIONS(2676), + [anon_sym_bit_DASHshr2] = ACTIONS(2676), + [anon_sym_bit_DASHand2] = ACTIONS(2676), + [anon_sym_bit_DASHxor2] = ACTIONS(2676), + [anon_sym_bit_DASHor2] = ACTIONS(2676), + [anon_sym_err_GT] = ACTIONS(2678), + [anon_sym_out_GT] = ACTIONS(2678), + [anon_sym_e_GT] = ACTIONS(2678), + [anon_sym_o_GT] = ACTIONS(2678), + [anon_sym_err_PLUSout_GT] = ACTIONS(2678), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2678), + [anon_sym_o_PLUSe_GT] = ACTIONS(2678), + [anon_sym_e_PLUSo_GT] = ACTIONS(2678), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1063)] = { + [aux_sym__repeat_newline] = STATE(977), + [sym_comment] = STATE(1063), + [anon_sym_in] = ACTIONS(2541), + [sym__newline] = ACTIONS(2541), + [anon_sym_SEMI] = ACTIONS(2541), + [anon_sym_PIPE] = ACTIONS(2541), + [anon_sym_err_GT_PIPE] = ACTIONS(2541), + [anon_sym_out_GT_PIPE] = ACTIONS(2541), + [anon_sym_e_GT_PIPE] = ACTIONS(2541), + [anon_sym_o_GT_PIPE] = ACTIONS(2541), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2541), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2541), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2541), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2541), + [anon_sym_RPAREN] = ACTIONS(2541), + [anon_sym_GT2] = ACTIONS(2543), + [anon_sym_DASH2] = ACTIONS(2541), + [anon_sym_LBRACE] = ACTIONS(2541), + [anon_sym_STAR2] = ACTIONS(2543), + [anon_sym_and2] = ACTIONS(2541), + [anon_sym_xor2] = ACTIONS(2541), + [anon_sym_or2] = ACTIONS(2541), + [anon_sym_not_DASHin2] = ACTIONS(2541), + [anon_sym_has2] = ACTIONS(2541), + [anon_sym_not_DASHhas2] = ACTIONS(2541), + [anon_sym_starts_DASHwith2] = ACTIONS(2541), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2541), + [anon_sym_ends_DASHwith2] = ACTIONS(2541), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2541), + [anon_sym_EQ_EQ2] = ACTIONS(2541), + [anon_sym_BANG_EQ2] = ACTIONS(2541), + [anon_sym_LT2] = ACTIONS(2543), + [anon_sym_LT_EQ2] = ACTIONS(2541), + [anon_sym_GT_EQ2] = ACTIONS(2541), + [anon_sym_EQ_TILDE2] = ACTIONS(2541), + [anon_sym_BANG_TILDE2] = ACTIONS(2541), + [anon_sym_like2] = ACTIONS(2541), + [anon_sym_not_DASHlike2] = ACTIONS(2541), + [anon_sym_STAR_STAR2] = ACTIONS(2541), + [anon_sym_PLUS_PLUS2] = ACTIONS(2541), + [anon_sym_SLASH2] = ACTIONS(2543), + [anon_sym_mod2] = ACTIONS(2541), + [anon_sym_SLASH_SLASH2] = ACTIONS(2541), + [anon_sym_PLUS2] = ACTIONS(2543), + [anon_sym_bit_DASHshl2] = ACTIONS(2541), + [anon_sym_bit_DASHshr2] = ACTIONS(2541), + [anon_sym_bit_DASHand2] = ACTIONS(2541), + [anon_sym_bit_DASHxor2] = ACTIONS(2541), + [anon_sym_bit_DASHor2] = ACTIONS(2541), + [anon_sym_err_GT] = ACTIONS(2543), + [anon_sym_out_GT] = ACTIONS(2543), + [anon_sym_e_GT] = ACTIONS(2543), + [anon_sym_o_GT] = ACTIONS(2543), + [anon_sym_err_PLUSout_GT] = ACTIONS(2543), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2543), + [anon_sym_o_PLUSe_GT] = ACTIONS(2543), + [anon_sym_e_PLUSo_GT] = ACTIONS(2543), + [anon_sym_err_GT_GT] = ACTIONS(2541), + [anon_sym_out_GT_GT] = ACTIONS(2541), + [anon_sym_e_GT_GT] = ACTIONS(2541), + [anon_sym_o_GT_GT] = ACTIONS(2541), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2541), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2541), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2541), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2541), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1064)] = { + [aux_sym__repeat_newline] = STATE(1047), + [sym_comment] = STATE(1064), + [anon_sym_in] = ACTIONS(2346), + [sym__newline] = ACTIONS(2346), + [anon_sym_SEMI] = 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_RPAREN] = ACTIONS(2346), + [anon_sym_GT2] = ACTIONS(2348), + [anon_sym_DASH2] = ACTIONS(2346), + [anon_sym_LBRACE] = ACTIONS(2346), + [anon_sym_STAR2] = ACTIONS(2348), + [anon_sym_and2] = ACTIONS(2346), + [anon_sym_xor2] = ACTIONS(2346), + [anon_sym_or2] = ACTIONS(2346), + [anon_sym_not_DASHin2] = ACTIONS(2346), + [anon_sym_has2] = ACTIONS(2346), + [anon_sym_not_DASHhas2] = ACTIONS(2346), + [anon_sym_starts_DASHwith2] = ACTIONS(2346), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2346), + [anon_sym_ends_DASHwith2] = ACTIONS(2346), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2346), + [anon_sym_EQ_EQ2] = ACTIONS(2346), + [anon_sym_BANG_EQ2] = ACTIONS(2346), + [anon_sym_LT2] = ACTIONS(2348), + [anon_sym_LT_EQ2] = ACTIONS(2346), + [anon_sym_GT_EQ2] = ACTIONS(2346), + [anon_sym_EQ_TILDE2] = ACTIONS(2346), + [anon_sym_BANG_TILDE2] = ACTIONS(2346), + [anon_sym_like2] = ACTIONS(2346), + [anon_sym_not_DASHlike2] = ACTIONS(2346), + [anon_sym_STAR_STAR2] = ACTIONS(2346), + [anon_sym_PLUS_PLUS2] = ACTIONS(2346), + [anon_sym_SLASH2] = ACTIONS(2348), + [anon_sym_mod2] = ACTIONS(2346), + [anon_sym_SLASH_SLASH2] = ACTIONS(2346), + [anon_sym_PLUS2] = ACTIONS(2348), + [anon_sym_bit_DASHshl2] = ACTIONS(2346), + [anon_sym_bit_DASHshr2] = ACTIONS(2346), + [anon_sym_bit_DASHand2] = ACTIONS(2346), + [anon_sym_bit_DASHxor2] = ACTIONS(2346), + [anon_sym_bit_DASHor2] = ACTIONS(2346), + [anon_sym_err_GT] = ACTIONS(2348), + [anon_sym_out_GT] = ACTIONS(2348), + [anon_sym_e_GT] = ACTIONS(2348), + [anon_sym_o_GT] = ACTIONS(2348), + [anon_sym_err_PLUSout_GT] = ACTIONS(2348), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2348), + [anon_sym_o_PLUSe_GT] = ACTIONS(2348), + [anon_sym_e_PLUSo_GT] = ACTIONS(2348), + [anon_sym_err_GT_GT] = ACTIONS(2346), + [anon_sym_out_GT_GT] = ACTIONS(2346), + [anon_sym_e_GT_GT] = ACTIONS(2346), + [anon_sym_o_GT_GT] = ACTIONS(2346), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2346), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2346), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2346), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2346), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1065)] = { + [aux_sym__repeat_newline] = STATE(485), + [sym_comment] = STATE(1065), + [anon_sym_in] = ACTIONS(2676), + [sym__newline] = ACTIONS(2676), + [anon_sym_SEMI] = ACTIONS(2676), + [anon_sym_PIPE] = ACTIONS(2676), + [anon_sym_err_GT_PIPE] = ACTIONS(2676), + [anon_sym_out_GT_PIPE] = ACTIONS(2676), + [anon_sym_e_GT_PIPE] = ACTIONS(2676), + [anon_sym_o_GT_PIPE] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2676), + [anon_sym_RPAREN] = ACTIONS(2676), + [anon_sym_GT2] = ACTIONS(2678), + [anon_sym_DASH2] = ACTIONS(2676), + [anon_sym_LBRACE] = ACTIONS(2676), + [anon_sym_STAR2] = ACTIONS(2678), + [anon_sym_and2] = ACTIONS(2676), + [anon_sym_xor2] = ACTIONS(2676), + [anon_sym_or2] = ACTIONS(2676), + [anon_sym_not_DASHin2] = ACTIONS(2676), + [anon_sym_has2] = ACTIONS(2676), + [anon_sym_not_DASHhas2] = ACTIONS(2676), + [anon_sym_starts_DASHwith2] = ACTIONS(2676), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2676), + [anon_sym_ends_DASHwith2] = ACTIONS(2676), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2676), + [anon_sym_EQ_EQ2] = ACTIONS(2676), + [anon_sym_BANG_EQ2] = ACTIONS(2676), + [anon_sym_LT2] = ACTIONS(2678), + [anon_sym_LT_EQ2] = ACTIONS(2676), + [anon_sym_GT_EQ2] = ACTIONS(2676), + [anon_sym_EQ_TILDE2] = ACTIONS(2676), + [anon_sym_BANG_TILDE2] = ACTIONS(2676), + [anon_sym_like2] = ACTIONS(2676), + [anon_sym_not_DASHlike2] = ACTIONS(2676), + [anon_sym_STAR_STAR2] = ACTIONS(2676), + [anon_sym_PLUS_PLUS2] = ACTIONS(2676), + [anon_sym_SLASH2] = ACTIONS(2678), + [anon_sym_mod2] = ACTIONS(2676), + [anon_sym_SLASH_SLASH2] = ACTIONS(2676), + [anon_sym_PLUS2] = ACTIONS(2678), + [anon_sym_bit_DASHshl2] = ACTIONS(2676), + [anon_sym_bit_DASHshr2] = ACTIONS(2676), + [anon_sym_bit_DASHand2] = ACTIONS(2676), + [anon_sym_bit_DASHxor2] = ACTIONS(2676), + [anon_sym_bit_DASHor2] = ACTIONS(2676), + [anon_sym_err_GT] = ACTIONS(2678), + [anon_sym_out_GT] = ACTIONS(2678), + [anon_sym_e_GT] = ACTIONS(2678), + [anon_sym_o_GT] = ACTIONS(2678), + [anon_sym_err_PLUSout_GT] = ACTIONS(2678), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2678), + [anon_sym_o_PLUSe_GT] = ACTIONS(2678), + [anon_sym_e_PLUSo_GT] = ACTIONS(2678), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1066)] = { + [sym_comment] = STATE(1066), + [aux_sym_cmd_identifier_token2] = ACTIONS(2594), + [anon_sym_in] = ACTIONS(847), + [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(847), + [anon_sym_DASH2] = ACTIONS(847), + [anon_sym_RBRACE] = ACTIONS(968), + [anon_sym_STAR2] = ACTIONS(847), + [anon_sym_and2] = ACTIONS(847), + [anon_sym_xor2] = ACTIONS(847), + [anon_sym_or2] = ACTIONS(847), + [anon_sym_not_DASHin2] = ACTIONS(847), + [anon_sym_has2] = ACTIONS(847), + [anon_sym_not_DASHhas2] = ACTIONS(847), + [anon_sym_starts_DASHwith2] = ACTIONS(847), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(847), + [anon_sym_ends_DASHwith2] = ACTIONS(847), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(847), + [anon_sym_EQ_EQ2] = ACTIONS(968), + [anon_sym_BANG_EQ2] = ACTIONS(968), + [anon_sym_LT2] = ACTIONS(847), + [anon_sym_LT_EQ2] = ACTIONS(968), + [anon_sym_GT_EQ2] = ACTIONS(968), + [anon_sym_EQ_TILDE2] = ACTIONS(968), + [anon_sym_BANG_TILDE2] = ACTIONS(847), + [anon_sym_like2] = ACTIONS(847), + [anon_sym_not_DASHlike2] = ACTIONS(847), + [anon_sym_STAR_STAR2] = ACTIONS(847), + [anon_sym_PLUS_PLUS2] = ACTIONS(847), + [anon_sym_SLASH2] = ACTIONS(847), + [anon_sym_mod2] = ACTIONS(847), + [anon_sym_SLASH_SLASH2] = ACTIONS(847), + [anon_sym_PLUS2] = ACTIONS(847), + [anon_sym_bit_DASHshl2] = ACTIONS(847), + [anon_sym_bit_DASHshr2] = ACTIONS(847), + [anon_sym_bit_DASHand2] = ACTIONS(847), + [anon_sym_bit_DASHxor2] = ACTIONS(847), + [anon_sym_bit_DASHor2] = ACTIONS(847), + [anon_sym_err_GT] = ACTIONS(847), + [anon_sym_out_GT] = ACTIONS(847), + [anon_sym_e_GT] = ACTIONS(847), + [anon_sym_o_GT] = ACTIONS(847), + [anon_sym_err_PLUSout_GT] = ACTIONS(847), + [anon_sym_out_PLUSerr_GT] = ACTIONS(847), + [anon_sym_o_PLUSe_GT] = ACTIONS(847), + [anon_sym_e_PLUSo_GT] = ACTIONS(847), + [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(1067)] = { + [aux_sym__repeat_newline] = STATE(1048), + [sym_comment] = STATE(1067), + [anon_sym_in] = ACTIONS(2346), + [sym__newline] = ACTIONS(2346), + [anon_sym_SEMI] = 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_RPAREN] = ACTIONS(2346), + [anon_sym_GT2] = ACTIONS(2348), + [anon_sym_DASH2] = ACTIONS(2346), + [anon_sym_LBRACE] = ACTIONS(2346), + [anon_sym_STAR2] = ACTIONS(2348), + [anon_sym_and2] = ACTIONS(2346), + [anon_sym_xor2] = ACTIONS(2346), + [anon_sym_or2] = ACTIONS(2346), + [anon_sym_not_DASHin2] = ACTIONS(2346), + [anon_sym_has2] = ACTIONS(2346), + [anon_sym_not_DASHhas2] = ACTIONS(2346), + [anon_sym_starts_DASHwith2] = ACTIONS(2346), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2346), + [anon_sym_ends_DASHwith2] = ACTIONS(2346), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2346), + [anon_sym_EQ_EQ2] = ACTIONS(2346), + [anon_sym_BANG_EQ2] = ACTIONS(2346), + [anon_sym_LT2] = ACTIONS(2348), + [anon_sym_LT_EQ2] = ACTIONS(2346), + [anon_sym_GT_EQ2] = ACTIONS(2346), + [anon_sym_EQ_TILDE2] = ACTIONS(2346), + [anon_sym_BANG_TILDE2] = ACTIONS(2346), + [anon_sym_like2] = ACTIONS(2346), + [anon_sym_not_DASHlike2] = ACTIONS(2346), + [anon_sym_STAR_STAR2] = ACTIONS(2346), + [anon_sym_PLUS_PLUS2] = ACTIONS(2346), + [anon_sym_SLASH2] = ACTIONS(2348), + [anon_sym_mod2] = ACTIONS(2346), + [anon_sym_SLASH_SLASH2] = ACTIONS(2346), + [anon_sym_PLUS2] = ACTIONS(2348), + [anon_sym_bit_DASHshl2] = ACTIONS(2346), + [anon_sym_bit_DASHshr2] = ACTIONS(2346), + [anon_sym_bit_DASHand2] = ACTIONS(2346), + [anon_sym_bit_DASHxor2] = ACTIONS(2346), + [anon_sym_bit_DASHor2] = ACTIONS(2346), + [anon_sym_err_GT] = ACTIONS(2348), + [anon_sym_out_GT] = ACTIONS(2348), + [anon_sym_e_GT] = ACTIONS(2348), + [anon_sym_o_GT] = ACTIONS(2348), + [anon_sym_err_PLUSout_GT] = ACTIONS(2348), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2348), + [anon_sym_o_PLUSe_GT] = ACTIONS(2348), + [anon_sym_e_PLUSo_GT] = ACTIONS(2348), + [anon_sym_err_GT_GT] = ACTIONS(2346), + [anon_sym_out_GT_GT] = ACTIONS(2346), + [anon_sym_e_GT_GT] = ACTIONS(2346), + [anon_sym_o_GT_GT] = ACTIONS(2346), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2346), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2346), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2346), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2346), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1068)] = { + [aux_sym__repeat_newline] = STATE(485), + [sym_comment] = STATE(1068), + [anon_sym_in] = ACTIONS(2676), + [sym__newline] = ACTIONS(2676), + [anon_sym_SEMI] = ACTIONS(2676), + [anon_sym_PIPE] = ACTIONS(2676), + [anon_sym_err_GT_PIPE] = ACTIONS(2676), + [anon_sym_out_GT_PIPE] = ACTIONS(2676), + [anon_sym_e_GT_PIPE] = ACTIONS(2676), + [anon_sym_o_GT_PIPE] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2676), + [anon_sym_RPAREN] = ACTIONS(2676), + [anon_sym_GT2] = ACTIONS(2678), + [anon_sym_DASH2] = ACTIONS(2676), + [anon_sym_LBRACE] = ACTIONS(2676), + [anon_sym_STAR2] = ACTIONS(2678), + [anon_sym_and2] = ACTIONS(2676), + [anon_sym_xor2] = ACTIONS(2676), + [anon_sym_or2] = ACTIONS(2676), + [anon_sym_not_DASHin2] = ACTIONS(2676), + [anon_sym_has2] = ACTIONS(2676), + [anon_sym_not_DASHhas2] = ACTIONS(2676), + [anon_sym_starts_DASHwith2] = ACTIONS(2676), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2676), + [anon_sym_ends_DASHwith2] = ACTIONS(2676), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2676), + [anon_sym_EQ_EQ2] = ACTIONS(2676), + [anon_sym_BANG_EQ2] = ACTIONS(2676), + [anon_sym_LT2] = ACTIONS(2678), + [anon_sym_LT_EQ2] = ACTIONS(2676), + [anon_sym_GT_EQ2] = ACTIONS(2676), + [anon_sym_EQ_TILDE2] = ACTIONS(2676), + [anon_sym_BANG_TILDE2] = ACTIONS(2676), + [anon_sym_like2] = ACTIONS(2676), + [anon_sym_not_DASHlike2] = ACTIONS(2676), + [anon_sym_STAR_STAR2] = ACTIONS(2676), + [anon_sym_PLUS_PLUS2] = ACTIONS(2676), + [anon_sym_SLASH2] = ACTIONS(2678), + [anon_sym_mod2] = ACTIONS(2676), + [anon_sym_SLASH_SLASH2] = ACTIONS(2676), + [anon_sym_PLUS2] = ACTIONS(2678), + [anon_sym_bit_DASHshl2] = ACTIONS(2676), + [anon_sym_bit_DASHshr2] = ACTIONS(2676), + [anon_sym_bit_DASHand2] = ACTIONS(2676), + [anon_sym_bit_DASHxor2] = ACTIONS(2676), + [anon_sym_bit_DASHor2] = ACTIONS(2676), + [anon_sym_err_GT] = ACTIONS(2678), + [anon_sym_out_GT] = ACTIONS(2678), + [anon_sym_e_GT] = ACTIONS(2678), + [anon_sym_o_GT] = ACTIONS(2678), + [anon_sym_err_PLUSout_GT] = ACTIONS(2678), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2678), + [anon_sym_o_PLUSe_GT] = ACTIONS(2678), + [anon_sym_e_PLUSo_GT] = ACTIONS(2678), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1069)] = { + [sym_expr_unary] = STATE(2835), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_parenthesized] = STATE(2542), + [sym_val_range] = STATE(2835), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(2835), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(2578), + [sym_val_variable] = STATE(2555), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(2367), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(2274), + [sym__str_double_quotes] = STATE(2274), + [sym__str_single_quotes] = STATE(2274), + [sym__str_back_ticks] = STATE(2274), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(2619), + [sym__unquoted_with_expr] = STATE(2842), + [sym__unquoted_anonymous_prefix] = STATE(4753), + [sym_comment] = STATE(1069), + [anon_sym_true] = ACTIONS(2680), + [anon_sym_false] = ACTIONS(2680), + [anon_sym_null] = ACTIONS(2682), + [aux_sym_cmd_identifier_token3] = ACTIONS(2684), + [aux_sym_cmd_identifier_token4] = ACTIONS(2684), + [aux_sym_cmd_identifier_token5] = ACTIONS(2684), + [anon_sym_LBRACK] = ACTIONS(2686), + [anon_sym_LPAREN] = ACTIONS(2688), + [anon_sym_DOLLAR] = ACTIONS(2690), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(2692), + [anon_sym_DOT_DOT] = ACTIONS(2694), + [aux_sym_expr_unary_token1] = ACTIONS(2696), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2698), + [anon_sym_DOT_DOT_LT] = ACTIONS(2698), + [aux_sym__val_number_decimal_token1] = ACTIONS(2700), + [aux_sym__val_number_decimal_token2] = ACTIONS(2702), + [aux_sym__val_number_decimal_token3] = ACTIONS(2704), + [aux_sym__val_number_decimal_token4] = ACTIONS(2704), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2706), + [anon_sym_DQUOTE] = ACTIONS(1772), + [anon_sym_SQUOTE] = ACTIONS(1774), + [anon_sym_BQUOTE] = ACTIONS(1776), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1943), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1778), + }, + [STATE(1070)] = { + [aux_sym__repeat_newline] = STATE(1056), + [sym_comment] = STATE(1070), + [anon_sym_in] = ACTIONS(2346), + [sym__newline] = ACTIONS(2346), + [anon_sym_SEMI] = 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_RPAREN] = ACTIONS(2346), + [anon_sym_GT2] = ACTIONS(2348), + [anon_sym_DASH2] = ACTIONS(2346), + [anon_sym_LBRACE] = ACTIONS(2346), + [anon_sym_STAR2] = ACTIONS(2348), + [anon_sym_and2] = ACTIONS(2346), + [anon_sym_xor2] = ACTIONS(2346), + [anon_sym_or2] = ACTIONS(2346), + [anon_sym_not_DASHin2] = ACTIONS(2346), + [anon_sym_has2] = ACTIONS(2346), + [anon_sym_not_DASHhas2] = ACTIONS(2346), + [anon_sym_starts_DASHwith2] = ACTIONS(2346), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2346), + [anon_sym_ends_DASHwith2] = ACTIONS(2346), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2346), + [anon_sym_EQ_EQ2] = ACTIONS(2346), + [anon_sym_BANG_EQ2] = ACTIONS(2346), + [anon_sym_LT2] = ACTIONS(2348), + [anon_sym_LT_EQ2] = ACTIONS(2346), + [anon_sym_GT_EQ2] = ACTIONS(2346), + [anon_sym_EQ_TILDE2] = ACTIONS(2346), + [anon_sym_BANG_TILDE2] = ACTIONS(2346), + [anon_sym_like2] = ACTIONS(2346), + [anon_sym_not_DASHlike2] = ACTIONS(2346), + [anon_sym_STAR_STAR2] = ACTIONS(2346), + [anon_sym_PLUS_PLUS2] = ACTIONS(2346), + [anon_sym_SLASH2] = ACTIONS(2348), + [anon_sym_mod2] = ACTIONS(2346), + [anon_sym_SLASH_SLASH2] = ACTIONS(2346), + [anon_sym_PLUS2] = ACTIONS(2348), + [anon_sym_bit_DASHshl2] = ACTIONS(2346), + [anon_sym_bit_DASHshr2] = ACTIONS(2346), + [anon_sym_bit_DASHand2] = ACTIONS(2346), + [anon_sym_bit_DASHxor2] = ACTIONS(2346), + [anon_sym_bit_DASHor2] = ACTIONS(2346), + [anon_sym_err_GT] = ACTIONS(2348), + [anon_sym_out_GT] = ACTIONS(2348), + [anon_sym_e_GT] = ACTIONS(2348), + [anon_sym_o_GT] = ACTIONS(2348), + [anon_sym_err_PLUSout_GT] = ACTIONS(2348), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2348), + [anon_sym_o_PLUSe_GT] = ACTIONS(2348), + [anon_sym_e_PLUSo_GT] = ACTIONS(2348), + [anon_sym_err_GT_GT] = ACTIONS(2346), + [anon_sym_out_GT_GT] = ACTIONS(2346), + [anon_sym_e_GT_GT] = ACTIONS(2346), + [anon_sym_o_GT_GT] = ACTIONS(2346), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2346), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2346), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2346), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2346), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1071)] = { + [aux_sym__repeat_newline] = STATE(485), + [sym_comment] = STATE(1071), + [anon_sym_in] = ACTIONS(2676), + [sym__newline] = ACTIONS(2676), + [anon_sym_SEMI] = ACTIONS(2676), + [anon_sym_PIPE] = ACTIONS(2676), + [anon_sym_err_GT_PIPE] = ACTIONS(2676), + [anon_sym_out_GT_PIPE] = ACTIONS(2676), + [anon_sym_e_GT_PIPE] = ACTIONS(2676), + [anon_sym_o_GT_PIPE] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2676), + [anon_sym_RPAREN] = ACTIONS(2676), + [anon_sym_GT2] = ACTIONS(2678), + [anon_sym_DASH2] = ACTIONS(2676), + [anon_sym_LBRACE] = ACTIONS(2676), + [anon_sym_STAR2] = ACTIONS(2678), + [anon_sym_and2] = ACTIONS(2676), + [anon_sym_xor2] = ACTIONS(2676), + [anon_sym_or2] = ACTIONS(2676), + [anon_sym_not_DASHin2] = ACTIONS(2676), + [anon_sym_has2] = ACTIONS(2676), + [anon_sym_not_DASHhas2] = ACTIONS(2676), + [anon_sym_starts_DASHwith2] = ACTIONS(2676), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2676), + [anon_sym_ends_DASHwith2] = ACTIONS(2676), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2676), + [anon_sym_EQ_EQ2] = ACTIONS(2676), + [anon_sym_BANG_EQ2] = ACTIONS(2676), + [anon_sym_LT2] = ACTIONS(2678), + [anon_sym_LT_EQ2] = ACTIONS(2676), + [anon_sym_GT_EQ2] = ACTIONS(2676), + [anon_sym_EQ_TILDE2] = ACTIONS(2676), + [anon_sym_BANG_TILDE2] = ACTIONS(2676), + [anon_sym_like2] = ACTIONS(2676), + [anon_sym_not_DASHlike2] = ACTIONS(2676), + [anon_sym_STAR_STAR2] = ACTIONS(2676), + [anon_sym_PLUS_PLUS2] = ACTIONS(2676), + [anon_sym_SLASH2] = ACTIONS(2678), + [anon_sym_mod2] = ACTIONS(2676), + [anon_sym_SLASH_SLASH2] = ACTIONS(2676), + [anon_sym_PLUS2] = ACTIONS(2678), + [anon_sym_bit_DASHshl2] = ACTIONS(2676), + [anon_sym_bit_DASHshr2] = ACTIONS(2676), + [anon_sym_bit_DASHand2] = ACTIONS(2676), + [anon_sym_bit_DASHxor2] = ACTIONS(2676), + [anon_sym_bit_DASHor2] = ACTIONS(2676), + [anon_sym_err_GT] = ACTIONS(2678), + [anon_sym_out_GT] = ACTIONS(2678), + [anon_sym_e_GT] = ACTIONS(2678), + [anon_sym_o_GT] = ACTIONS(2678), + [anon_sym_err_PLUSout_GT] = ACTIONS(2678), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2678), + [anon_sym_o_PLUSe_GT] = ACTIONS(2678), + [anon_sym_e_PLUSo_GT] = ACTIONS(2678), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1072)] = { + [aux_sym__repeat_newline] = STATE(1073), + [sym_comment] = STATE(1072), + [anon_sym_in] = ACTIONS(2346), + [sym__newline] = ACTIONS(2346), + [anon_sym_SEMI] = 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_RPAREN] = ACTIONS(2346), + [anon_sym_GT2] = ACTIONS(2348), + [anon_sym_DASH2] = ACTIONS(2346), + [anon_sym_LBRACE] = ACTIONS(2346), + [anon_sym_STAR2] = ACTIONS(2348), + [anon_sym_and2] = ACTIONS(2346), + [anon_sym_xor2] = ACTIONS(2346), + [anon_sym_or2] = ACTIONS(2346), + [anon_sym_not_DASHin2] = ACTIONS(2346), + [anon_sym_has2] = ACTIONS(2346), + [anon_sym_not_DASHhas2] = ACTIONS(2346), + [anon_sym_starts_DASHwith2] = ACTIONS(2346), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2346), + [anon_sym_ends_DASHwith2] = ACTIONS(2346), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2346), + [anon_sym_EQ_EQ2] = ACTIONS(2346), + [anon_sym_BANG_EQ2] = ACTIONS(2346), + [anon_sym_LT2] = ACTIONS(2348), + [anon_sym_LT_EQ2] = ACTIONS(2346), + [anon_sym_GT_EQ2] = ACTIONS(2346), + [anon_sym_EQ_TILDE2] = ACTIONS(2346), + [anon_sym_BANG_TILDE2] = ACTIONS(2346), + [anon_sym_like2] = ACTIONS(2346), + [anon_sym_not_DASHlike2] = ACTIONS(2346), + [anon_sym_STAR_STAR2] = ACTIONS(2346), + [anon_sym_PLUS_PLUS2] = ACTIONS(2346), + [anon_sym_SLASH2] = ACTIONS(2348), + [anon_sym_mod2] = ACTIONS(2346), + [anon_sym_SLASH_SLASH2] = ACTIONS(2346), + [anon_sym_PLUS2] = ACTIONS(2348), + [anon_sym_bit_DASHshl2] = ACTIONS(2346), + [anon_sym_bit_DASHshr2] = ACTIONS(2346), + [anon_sym_bit_DASHand2] = ACTIONS(2346), + [anon_sym_bit_DASHxor2] = ACTIONS(2346), + [anon_sym_bit_DASHor2] = ACTIONS(2346), + [anon_sym_err_GT] = ACTIONS(2348), + [anon_sym_out_GT] = ACTIONS(2348), + [anon_sym_e_GT] = ACTIONS(2348), + [anon_sym_o_GT] = ACTIONS(2348), + [anon_sym_err_PLUSout_GT] = ACTIONS(2348), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2348), + [anon_sym_o_PLUSe_GT] = ACTIONS(2348), + [anon_sym_e_PLUSo_GT] = ACTIONS(2348), + [anon_sym_err_GT_GT] = ACTIONS(2346), + [anon_sym_out_GT_GT] = ACTIONS(2346), + [anon_sym_e_GT_GT] = ACTIONS(2346), + [anon_sym_o_GT_GT] = ACTIONS(2346), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2346), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2346), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2346), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2346), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1073)] = { + [aux_sym__repeat_newline] = STATE(485), + [sym_comment] = STATE(1073), + [anon_sym_in] = ACTIONS(2780), + [sym__newline] = ACTIONS(2780), + [anon_sym_SEMI] = ACTIONS(2780), + [anon_sym_PIPE] = ACTIONS(2780), + [anon_sym_err_GT_PIPE] = ACTIONS(2780), + [anon_sym_out_GT_PIPE] = ACTIONS(2780), + [anon_sym_e_GT_PIPE] = ACTIONS(2780), + [anon_sym_o_GT_PIPE] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2780), + [anon_sym_RPAREN] = ACTIONS(2780), + [anon_sym_GT2] = ACTIONS(2782), + [anon_sym_DASH2] = ACTIONS(2780), + [anon_sym_LBRACE] = ACTIONS(2780), + [anon_sym_STAR2] = ACTIONS(2782), + [anon_sym_and2] = ACTIONS(2780), + [anon_sym_xor2] = ACTIONS(2780), + [anon_sym_or2] = ACTIONS(2780), + [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(2780), + [anon_sym_BANG_EQ2] = ACTIONS(2780), + [anon_sym_LT2] = ACTIONS(2782), + [anon_sym_LT_EQ2] = ACTIONS(2780), + [anon_sym_GT_EQ2] = ACTIONS(2780), + [anon_sym_EQ_TILDE2] = ACTIONS(2780), + [anon_sym_BANG_TILDE2] = ACTIONS(2780), + [anon_sym_like2] = ACTIONS(2780), + [anon_sym_not_DASHlike2] = ACTIONS(2780), + [anon_sym_STAR_STAR2] = ACTIONS(2780), + [anon_sym_PLUS_PLUS2] = ACTIONS(2780), + [anon_sym_SLASH2] = ACTIONS(2782), + [anon_sym_mod2] = ACTIONS(2780), + [anon_sym_SLASH_SLASH2] = ACTIONS(2780), + [anon_sym_PLUS2] = ACTIONS(2782), + [anon_sym_bit_DASHshl2] = ACTIONS(2780), + [anon_sym_bit_DASHshr2] = ACTIONS(2780), + [anon_sym_bit_DASHand2] = ACTIONS(2780), + [anon_sym_bit_DASHxor2] = ACTIONS(2780), + [anon_sym_bit_DASHor2] = ACTIONS(2780), + [anon_sym_err_GT] = ACTIONS(2782), + [anon_sym_out_GT] = ACTIONS(2782), + [anon_sym_e_GT] = ACTIONS(2782), + [anon_sym_o_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT] = ACTIONS(2782), + [anon_sym_err_GT_GT] = ACTIONS(2780), + [anon_sym_out_GT_GT] = ACTIONS(2780), + [anon_sym_e_GT_GT] = ACTIONS(2780), + [anon_sym_o_GT_GT] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2780), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1074)] = { + [aux_sym__repeat_newline] = STATE(485), + [sym_comment] = STATE(1074), + [anon_sym_in] = ACTIONS(2676), + [sym__newline] = ACTIONS(2676), + [anon_sym_SEMI] = ACTIONS(2676), + [anon_sym_PIPE] = ACTIONS(2676), + [anon_sym_err_GT_PIPE] = ACTIONS(2676), + [anon_sym_out_GT_PIPE] = ACTIONS(2676), + [anon_sym_e_GT_PIPE] = ACTIONS(2676), + [anon_sym_o_GT_PIPE] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2676), + [anon_sym_RPAREN] = ACTIONS(2676), + [anon_sym_GT2] = ACTIONS(2678), + [anon_sym_DASH2] = ACTIONS(2676), + [anon_sym_LBRACE] = ACTIONS(2676), + [anon_sym_STAR2] = ACTIONS(2678), + [anon_sym_and2] = ACTIONS(2676), + [anon_sym_xor2] = ACTIONS(2676), + [anon_sym_or2] = ACTIONS(2676), + [anon_sym_not_DASHin2] = ACTIONS(2676), + [anon_sym_has2] = ACTIONS(2676), + [anon_sym_not_DASHhas2] = ACTIONS(2676), + [anon_sym_starts_DASHwith2] = ACTIONS(2676), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2676), + [anon_sym_ends_DASHwith2] = ACTIONS(2676), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2676), + [anon_sym_EQ_EQ2] = ACTIONS(2676), + [anon_sym_BANG_EQ2] = ACTIONS(2676), + [anon_sym_LT2] = ACTIONS(2678), + [anon_sym_LT_EQ2] = ACTIONS(2676), + [anon_sym_GT_EQ2] = ACTIONS(2676), + [anon_sym_EQ_TILDE2] = ACTIONS(2676), + [anon_sym_BANG_TILDE2] = ACTIONS(2676), + [anon_sym_like2] = ACTIONS(2676), + [anon_sym_not_DASHlike2] = ACTIONS(2676), + [anon_sym_STAR_STAR2] = ACTIONS(2676), + [anon_sym_PLUS_PLUS2] = ACTIONS(2676), + [anon_sym_SLASH2] = ACTIONS(2678), + [anon_sym_mod2] = ACTIONS(2676), + [anon_sym_SLASH_SLASH2] = ACTIONS(2676), + [anon_sym_PLUS2] = ACTIONS(2678), + [anon_sym_bit_DASHshl2] = ACTIONS(2676), + [anon_sym_bit_DASHshr2] = ACTIONS(2676), + [anon_sym_bit_DASHand2] = ACTIONS(2676), + [anon_sym_bit_DASHxor2] = ACTIONS(2676), + [anon_sym_bit_DASHor2] = ACTIONS(2676), + [anon_sym_err_GT] = ACTIONS(2678), + [anon_sym_out_GT] = ACTIONS(2678), + [anon_sym_e_GT] = ACTIONS(2678), + [anon_sym_o_GT] = ACTIONS(2678), + [anon_sym_err_PLUSout_GT] = ACTIONS(2678), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2678), + [anon_sym_o_PLUSe_GT] = ACTIONS(2678), + [anon_sym_e_PLUSo_GT] = ACTIONS(2678), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1075)] = { + [sym__expr_parenthesized_immediate] = STATE(4973), + [sym_comment] = STATE(1075), + [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(1818), + [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_POUND] = ACTIONS(3), + }, + [STATE(1076)] = { + [aux_sym__repeat_newline] = STATE(1055), + [sym_comment] = STATE(1076), + [anon_sym_in] = ACTIONS(2541), + [sym__newline] = ACTIONS(2541), + [anon_sym_SEMI] = ACTIONS(2541), + [anon_sym_PIPE] = ACTIONS(2541), + [anon_sym_err_GT_PIPE] = ACTIONS(2541), + [anon_sym_out_GT_PIPE] = ACTIONS(2541), + [anon_sym_e_GT_PIPE] = ACTIONS(2541), + [anon_sym_o_GT_PIPE] = ACTIONS(2541), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2541), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2541), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2541), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2541), + [anon_sym_RPAREN] = ACTIONS(2541), + [anon_sym_GT2] = ACTIONS(2543), + [anon_sym_DASH2] = ACTIONS(2541), + [anon_sym_LBRACE] = ACTIONS(2541), + [anon_sym_STAR2] = ACTIONS(2543), + [anon_sym_and2] = ACTIONS(2541), + [anon_sym_xor2] = ACTIONS(2541), + [anon_sym_or2] = ACTIONS(2541), + [anon_sym_not_DASHin2] = ACTIONS(2541), + [anon_sym_has2] = ACTIONS(2541), + [anon_sym_not_DASHhas2] = ACTIONS(2541), + [anon_sym_starts_DASHwith2] = ACTIONS(2541), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2541), + [anon_sym_ends_DASHwith2] = ACTIONS(2541), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2541), + [anon_sym_EQ_EQ2] = ACTIONS(2541), + [anon_sym_BANG_EQ2] = ACTIONS(2541), + [anon_sym_LT2] = ACTIONS(2543), + [anon_sym_LT_EQ2] = ACTIONS(2541), + [anon_sym_GT_EQ2] = ACTIONS(2541), + [anon_sym_EQ_TILDE2] = ACTIONS(2541), + [anon_sym_BANG_TILDE2] = ACTIONS(2541), + [anon_sym_like2] = ACTIONS(2541), + [anon_sym_not_DASHlike2] = ACTIONS(2541), + [anon_sym_STAR_STAR2] = ACTIONS(2541), + [anon_sym_PLUS_PLUS2] = ACTIONS(2541), + [anon_sym_SLASH2] = ACTIONS(2543), + [anon_sym_mod2] = ACTIONS(2541), + [anon_sym_SLASH_SLASH2] = ACTIONS(2541), + [anon_sym_PLUS2] = ACTIONS(2543), + [anon_sym_bit_DASHshl2] = ACTIONS(2541), + [anon_sym_bit_DASHshr2] = ACTIONS(2541), + [anon_sym_bit_DASHand2] = ACTIONS(2541), + [anon_sym_bit_DASHxor2] = ACTIONS(2541), + [anon_sym_bit_DASHor2] = ACTIONS(2541), + [anon_sym_err_GT] = ACTIONS(2543), + [anon_sym_out_GT] = ACTIONS(2543), + [anon_sym_e_GT] = ACTIONS(2543), + [anon_sym_o_GT] = ACTIONS(2543), + [anon_sym_err_PLUSout_GT] = ACTIONS(2543), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2543), + [anon_sym_o_PLUSe_GT] = ACTIONS(2543), + [anon_sym_e_PLUSo_GT] = ACTIONS(2543), + [anon_sym_err_GT_GT] = ACTIONS(2541), + [anon_sym_out_GT_GT] = ACTIONS(2541), + [anon_sym_e_GT_GT] = ACTIONS(2541), + [anon_sym_o_GT_GT] = ACTIONS(2541), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2541), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2541), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2541), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2541), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1077)] = { + [aux_sym__repeat_newline] = STATE(1085), + [sym_comment] = STATE(1077), + [anon_sym_in] = ACTIONS(2381), + [sym__newline] = ACTIONS(2381), + [anon_sym_SEMI] = ACTIONS(2381), + [anon_sym_PIPE] = ACTIONS(2381), + [anon_sym_err_GT_PIPE] = ACTIONS(2381), + [anon_sym_out_GT_PIPE] = ACTIONS(2381), + [anon_sym_e_GT_PIPE] = ACTIONS(2381), + [anon_sym_o_GT_PIPE] = ACTIONS(2381), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2381), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2381), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2381), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2381), + [anon_sym_RPAREN] = ACTIONS(2381), + [anon_sym_GT2] = ACTIONS(2383), + [anon_sym_DASH2] = ACTIONS(2381), + [anon_sym_LBRACE] = ACTIONS(2381), + [anon_sym_STAR2] = ACTIONS(2383), + [anon_sym_and2] = ACTIONS(2381), + [anon_sym_xor2] = ACTIONS(2381), + [anon_sym_or2] = ACTIONS(2381), + [anon_sym_not_DASHin2] = ACTIONS(2381), + [anon_sym_has2] = ACTIONS(2381), + [anon_sym_not_DASHhas2] = ACTIONS(2381), + [anon_sym_starts_DASHwith2] = ACTIONS(2381), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2381), + [anon_sym_ends_DASHwith2] = ACTIONS(2381), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2381), + [anon_sym_EQ_EQ2] = ACTIONS(2381), + [anon_sym_BANG_EQ2] = ACTIONS(2381), + [anon_sym_LT2] = ACTIONS(2383), + [anon_sym_LT_EQ2] = ACTIONS(2381), + [anon_sym_GT_EQ2] = ACTIONS(2381), + [anon_sym_EQ_TILDE2] = ACTIONS(2381), + [anon_sym_BANG_TILDE2] = ACTIONS(2381), + [anon_sym_like2] = ACTIONS(2381), + [anon_sym_not_DASHlike2] = ACTIONS(2381), + [anon_sym_STAR_STAR2] = ACTIONS(2381), + [anon_sym_PLUS_PLUS2] = ACTIONS(2381), + [anon_sym_SLASH2] = ACTIONS(2383), + [anon_sym_mod2] = ACTIONS(2381), + [anon_sym_SLASH_SLASH2] = ACTIONS(2381), + [anon_sym_PLUS2] = ACTIONS(2383), + [anon_sym_bit_DASHshl2] = ACTIONS(2381), + [anon_sym_bit_DASHshr2] = ACTIONS(2381), + [anon_sym_bit_DASHand2] = ACTIONS(2381), + [anon_sym_bit_DASHxor2] = ACTIONS(2381), + [anon_sym_bit_DASHor2] = ACTIONS(2381), + [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(2381), + [anon_sym_out_GT_GT] = ACTIONS(2381), + [anon_sym_e_GT_GT] = ACTIONS(2381), + [anon_sym_o_GT_GT] = ACTIONS(2381), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2381), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2381), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2381), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2381), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1078)] = { + [sym__expr_parenthesized_immediate] = STATE(4973), + [sym_comment] = STATE(1078), + [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(1818), + [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_POUND] = ACTIONS(3), + }, + [STATE(1079)] = { + [aux_sym__repeat_newline] = STATE(1061), + [sym_comment] = STATE(1079), + [anon_sym_in] = ACTIONS(2798), + [sym__newline] = ACTIONS(2798), + [anon_sym_SEMI] = ACTIONS(2798), + [anon_sym_PIPE] = ACTIONS(2798), + [anon_sym_err_GT_PIPE] = ACTIONS(2798), + [anon_sym_out_GT_PIPE] = ACTIONS(2798), + [anon_sym_e_GT_PIPE] = ACTIONS(2798), + [anon_sym_o_GT_PIPE] = ACTIONS(2798), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2798), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2798), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2798), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2798), + [anon_sym_RPAREN] = ACTIONS(2798), + [anon_sym_GT2] = ACTIONS(2800), + [anon_sym_DASH2] = ACTIONS(2798), + [anon_sym_LBRACE] = ACTIONS(2798), + [anon_sym_STAR2] = ACTIONS(2800), + [anon_sym_and2] = ACTIONS(2798), + [anon_sym_xor2] = ACTIONS(2798), + [anon_sym_or2] = ACTIONS(2798), + [anon_sym_not_DASHin2] = ACTIONS(2798), + [anon_sym_has2] = ACTIONS(2798), + [anon_sym_not_DASHhas2] = ACTIONS(2798), + [anon_sym_starts_DASHwith2] = ACTIONS(2798), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2798), + [anon_sym_ends_DASHwith2] = ACTIONS(2798), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2798), + [anon_sym_EQ_EQ2] = ACTIONS(2798), + [anon_sym_BANG_EQ2] = ACTIONS(2798), + [anon_sym_LT2] = ACTIONS(2800), + [anon_sym_LT_EQ2] = ACTIONS(2798), + [anon_sym_GT_EQ2] = ACTIONS(2798), + [anon_sym_EQ_TILDE2] = ACTIONS(2798), + [anon_sym_BANG_TILDE2] = ACTIONS(2798), + [anon_sym_like2] = ACTIONS(2798), + [anon_sym_not_DASHlike2] = ACTIONS(2798), + [anon_sym_STAR_STAR2] = ACTIONS(2798), + [anon_sym_PLUS_PLUS2] = ACTIONS(2798), + [anon_sym_SLASH2] = ACTIONS(2800), + [anon_sym_mod2] = ACTIONS(2798), + [anon_sym_SLASH_SLASH2] = ACTIONS(2798), + [anon_sym_PLUS2] = ACTIONS(2800), + [anon_sym_bit_DASHshl2] = ACTIONS(2798), + [anon_sym_bit_DASHshr2] = ACTIONS(2798), + [anon_sym_bit_DASHand2] = ACTIONS(2798), + [anon_sym_bit_DASHxor2] = ACTIONS(2798), + [anon_sym_bit_DASHor2] = ACTIONS(2798), + [anon_sym_err_GT] = ACTIONS(2800), + [anon_sym_out_GT] = ACTIONS(2800), + [anon_sym_e_GT] = ACTIONS(2800), + [anon_sym_o_GT] = ACTIONS(2800), + [anon_sym_err_PLUSout_GT] = ACTIONS(2800), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2800), + [anon_sym_o_PLUSe_GT] = ACTIONS(2800), + [anon_sym_e_PLUSo_GT] = ACTIONS(2800), + [anon_sym_err_GT_GT] = ACTIONS(2798), + [anon_sym_out_GT_GT] = ACTIONS(2798), + [anon_sym_e_GT_GT] = ACTIONS(2798), + [anon_sym_o_GT_GT] = ACTIONS(2798), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2798), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2798), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2798), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2798), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1080)] = { - [aux_sym__repeat_newline] = STATE(1103), + [aux_sym__repeat_newline] = STATE(1087), [sym_comment] = STATE(1080), - [anon_sym_in] = ACTIONS(2442), - [sym__newline] = ACTIONS(2442), - [anon_sym_SEMI] = ACTIONS(2442), - [anon_sym_PIPE] = ACTIONS(2442), - [anon_sym_err_GT_PIPE] = ACTIONS(2442), - [anon_sym_out_GT_PIPE] = ACTIONS(2442), - [anon_sym_e_GT_PIPE] = ACTIONS(2442), - [anon_sym_o_GT_PIPE] = ACTIONS(2442), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2442), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2442), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2442), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2442), - [anon_sym_RPAREN] = ACTIONS(2442), - [anon_sym_GT2] = ACTIONS(2444), - [anon_sym_DASH2] = ACTIONS(2442), - [anon_sym_LBRACE] = ACTIONS(2442), - [anon_sym_STAR2] = ACTIONS(2444), - [anon_sym_and2] = ACTIONS(2442), - [anon_sym_xor2] = ACTIONS(2442), - [anon_sym_or2] = ACTIONS(2442), - [anon_sym_not_DASHin2] = ACTIONS(2442), - [anon_sym_has2] = ACTIONS(2442), - [anon_sym_not_DASHhas2] = ACTIONS(2442), - [anon_sym_starts_DASHwith2] = ACTIONS(2442), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2442), - [anon_sym_ends_DASHwith2] = ACTIONS(2442), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2442), - [anon_sym_EQ_EQ2] = ACTIONS(2442), - [anon_sym_BANG_EQ2] = ACTIONS(2442), - [anon_sym_LT2] = ACTIONS(2444), - [anon_sym_LT_EQ2] = ACTIONS(2442), - [anon_sym_GT_EQ2] = ACTIONS(2442), - [anon_sym_EQ_TILDE2] = ACTIONS(2442), - [anon_sym_BANG_TILDE2] = ACTIONS(2442), - [anon_sym_like2] = ACTIONS(2442), - [anon_sym_not_DASHlike2] = ACTIONS(2442), - [anon_sym_STAR_STAR2] = ACTIONS(2442), - [anon_sym_PLUS_PLUS2] = ACTIONS(2442), - [anon_sym_SLASH2] = ACTIONS(2444), - [anon_sym_mod2] = ACTIONS(2442), - [anon_sym_SLASH_SLASH2] = ACTIONS(2442), - [anon_sym_PLUS2] = ACTIONS(2444), - [anon_sym_bit_DASHshl2] = ACTIONS(2442), - [anon_sym_bit_DASHshr2] = ACTIONS(2442), - [anon_sym_bit_DASHand2] = ACTIONS(2442), - [anon_sym_bit_DASHxor2] = ACTIONS(2442), - [anon_sym_bit_DASHor2] = ACTIONS(2442), - [anon_sym_err_GT] = ACTIONS(2444), - [anon_sym_out_GT] = ACTIONS(2444), - [anon_sym_e_GT] = ACTIONS(2444), - [anon_sym_o_GT] = ACTIONS(2444), - [anon_sym_err_PLUSout_GT] = ACTIONS(2444), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2444), - [anon_sym_o_PLUSe_GT] = ACTIONS(2444), - [anon_sym_e_PLUSo_GT] = ACTIONS(2444), - [anon_sym_err_GT_GT] = ACTIONS(2442), - [anon_sym_out_GT_GT] = ACTIONS(2442), - [anon_sym_e_GT_GT] = ACTIONS(2442), - [anon_sym_o_GT_GT] = ACTIONS(2442), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2442), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2442), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2442), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2442), + [anon_sym_in] = ACTIONS(2381), + [sym__newline] = ACTIONS(2381), + [anon_sym_SEMI] = ACTIONS(2381), + [anon_sym_PIPE] = ACTIONS(2381), + [anon_sym_err_GT_PIPE] = ACTIONS(2381), + [anon_sym_out_GT_PIPE] = ACTIONS(2381), + [anon_sym_e_GT_PIPE] = ACTIONS(2381), + [anon_sym_o_GT_PIPE] = ACTIONS(2381), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2381), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2381), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2381), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2381), + [anon_sym_RPAREN] = ACTIONS(2381), + [anon_sym_GT2] = ACTIONS(2383), + [anon_sym_DASH2] = ACTIONS(2381), + [anon_sym_LBRACE] = ACTIONS(2381), + [anon_sym_STAR2] = ACTIONS(2383), + [anon_sym_and2] = ACTIONS(2381), + [anon_sym_xor2] = ACTIONS(2381), + [anon_sym_or2] = ACTIONS(2381), + [anon_sym_not_DASHin2] = ACTIONS(2381), + [anon_sym_has2] = ACTIONS(2381), + [anon_sym_not_DASHhas2] = ACTIONS(2381), + [anon_sym_starts_DASHwith2] = ACTIONS(2381), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2381), + [anon_sym_ends_DASHwith2] = ACTIONS(2381), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2381), + [anon_sym_EQ_EQ2] = ACTIONS(2381), + [anon_sym_BANG_EQ2] = ACTIONS(2381), + [anon_sym_LT2] = ACTIONS(2383), + [anon_sym_LT_EQ2] = ACTIONS(2381), + [anon_sym_GT_EQ2] = ACTIONS(2381), + [anon_sym_EQ_TILDE2] = ACTIONS(2381), + [anon_sym_BANG_TILDE2] = ACTIONS(2381), + [anon_sym_like2] = ACTIONS(2381), + [anon_sym_not_DASHlike2] = ACTIONS(2381), + [anon_sym_STAR_STAR2] = ACTIONS(2381), + [anon_sym_PLUS_PLUS2] = ACTIONS(2381), + [anon_sym_SLASH2] = ACTIONS(2383), + [anon_sym_mod2] = ACTIONS(2381), + [anon_sym_SLASH_SLASH2] = ACTIONS(2381), + [anon_sym_PLUS2] = ACTIONS(2383), + [anon_sym_bit_DASHshl2] = ACTIONS(2381), + [anon_sym_bit_DASHshr2] = ACTIONS(2381), + [anon_sym_bit_DASHand2] = ACTIONS(2381), + [anon_sym_bit_DASHxor2] = ACTIONS(2381), + [anon_sym_bit_DASHor2] = ACTIONS(2381), + [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(2381), + [anon_sym_out_GT_GT] = ACTIONS(2381), + [anon_sym_e_GT_GT] = ACTIONS(2381), + [anon_sym_o_GT_GT] = ACTIONS(2381), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2381), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2381), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2381), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2381), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1081)] = { - [aux_sym__repeat_newline] = STATE(527), + [sym_expr_unary] = STATE(2849), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_parenthesized] = STATE(2551), + [sym_val_range] = STATE(2849), + [sym__val_range] = STATE(4753), + [sym__value] = STATE(2849), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(2578), + [sym_val_variable] = STATE(2555), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(2367), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(2274), + [sym__str_double_quotes] = STATE(2274), + [sym__str_single_quotes] = STATE(2274), + [sym__str_back_ticks] = STATE(2274), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_unquoted] = STATE(2633), + [sym__unquoted_with_expr] = STATE(2870), + [sym__unquoted_anonymous_prefix] = STATE(4753), [sym_comment] = STATE(1081), - [anon_sym_in] = ACTIONS(2750), - [sym__newline] = ACTIONS(2750), - [anon_sym_SEMI] = ACTIONS(2750), - [anon_sym_PIPE] = ACTIONS(2750), - [anon_sym_err_GT_PIPE] = ACTIONS(2750), - [anon_sym_out_GT_PIPE] = ACTIONS(2750), - [anon_sym_e_GT_PIPE] = ACTIONS(2750), - [anon_sym_o_GT_PIPE] = ACTIONS(2750), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2750), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2750), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2750), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2750), - [anon_sym_RPAREN] = ACTIONS(2750), - [anon_sym_GT2] = ACTIONS(2752), - [anon_sym_DASH2] = ACTIONS(2750), - [anon_sym_LBRACE] = ACTIONS(2750), - [anon_sym_STAR2] = ACTIONS(2752), - [anon_sym_and2] = ACTIONS(2750), - [anon_sym_xor2] = ACTIONS(2750), - [anon_sym_or2] = ACTIONS(2750), - [anon_sym_not_DASHin2] = ACTIONS(2750), - [anon_sym_has2] = ACTIONS(2750), - [anon_sym_not_DASHhas2] = ACTIONS(2750), - [anon_sym_starts_DASHwith2] = ACTIONS(2750), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2750), - [anon_sym_ends_DASHwith2] = ACTIONS(2750), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2750), - [anon_sym_EQ_EQ2] = ACTIONS(2750), - [anon_sym_BANG_EQ2] = ACTIONS(2750), - [anon_sym_LT2] = ACTIONS(2752), - [anon_sym_LT_EQ2] = ACTIONS(2750), - [anon_sym_GT_EQ2] = ACTIONS(2750), - [anon_sym_EQ_TILDE2] = ACTIONS(2750), - [anon_sym_BANG_TILDE2] = ACTIONS(2750), - [anon_sym_like2] = ACTIONS(2750), - [anon_sym_not_DASHlike2] = ACTIONS(2750), - [anon_sym_STAR_STAR2] = ACTIONS(2750), - [anon_sym_PLUS_PLUS2] = ACTIONS(2750), - [anon_sym_SLASH2] = ACTIONS(2752), - [anon_sym_mod2] = ACTIONS(2750), - [anon_sym_SLASH_SLASH2] = ACTIONS(2750), - [anon_sym_PLUS2] = ACTIONS(2752), - [anon_sym_bit_DASHshl2] = ACTIONS(2750), - [anon_sym_bit_DASHshr2] = ACTIONS(2750), - [anon_sym_bit_DASHand2] = ACTIONS(2750), - [anon_sym_bit_DASHxor2] = ACTIONS(2750), - [anon_sym_bit_DASHor2] = ACTIONS(2750), - [anon_sym_err_GT] = ACTIONS(2752), - [anon_sym_out_GT] = ACTIONS(2752), - [anon_sym_e_GT] = ACTIONS(2752), - [anon_sym_o_GT] = ACTIONS(2752), - [anon_sym_err_PLUSout_GT] = ACTIONS(2752), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2752), - [anon_sym_o_PLUSe_GT] = ACTIONS(2752), - [anon_sym_e_PLUSo_GT] = ACTIONS(2752), - [anon_sym_err_GT_GT] = ACTIONS(2750), - [anon_sym_out_GT_GT] = ACTIONS(2750), - [anon_sym_e_GT_GT] = ACTIONS(2750), - [anon_sym_o_GT_GT] = ACTIONS(2750), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2750), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2750), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2750), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2750), + [anon_sym_true] = ACTIONS(2680), + [anon_sym_false] = ACTIONS(2680), + [anon_sym_null] = ACTIONS(2682), + [aux_sym_cmd_identifier_token3] = ACTIONS(2684), + [aux_sym_cmd_identifier_token4] = ACTIONS(2684), + [aux_sym_cmd_identifier_token5] = ACTIONS(2684), + [anon_sym_LBRACK] = ACTIONS(2686), + [anon_sym_LPAREN] = ACTIONS(2688), + [anon_sym_DOLLAR] = ACTIONS(2690), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(2692), + [anon_sym_DOT_DOT] = ACTIONS(2694), + [aux_sym_expr_unary_token1] = ACTIONS(2696), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2698), + [anon_sym_DOT_DOT_LT] = ACTIONS(2698), + [aux_sym__val_number_decimal_token1] = ACTIONS(2700), + [aux_sym__val_number_decimal_token2] = ACTIONS(2702), + [aux_sym__val_number_decimal_token3] = ACTIONS(2704), + [aux_sym__val_number_decimal_token4] = ACTIONS(2704), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2706), + [anon_sym_DQUOTE] = ACTIONS(1772), + [anon_sym_SQUOTE] = ACTIONS(1774), + [anon_sym_BQUOTE] = ACTIONS(1776), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1778), }, [STATE(1082)] = { - [aux_sym__repeat_newline] = STATE(527), + [aux_sym__repeat_newline] = STATE(1062), [sym_comment] = STATE(1082), - [anon_sym_in] = ACTIONS(2742), - [sym__newline] = ACTIONS(2742), - [anon_sym_SEMI] = 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_RPAREN] = ACTIONS(2742), - [anon_sym_GT2] = ACTIONS(2744), - [anon_sym_DASH2] = ACTIONS(2742), - [anon_sym_LBRACE] = ACTIONS(2742), - [anon_sym_STAR2] = ACTIONS(2744), - [anon_sym_and2] = ACTIONS(2742), - [anon_sym_xor2] = ACTIONS(2742), - [anon_sym_or2] = ACTIONS(2742), - [anon_sym_not_DASHin2] = ACTIONS(2742), - [anon_sym_has2] = ACTIONS(2742), - [anon_sym_not_DASHhas2] = ACTIONS(2742), - [anon_sym_starts_DASHwith2] = ACTIONS(2742), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2742), - [anon_sym_ends_DASHwith2] = ACTIONS(2742), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2742), - [anon_sym_EQ_EQ2] = ACTIONS(2742), - [anon_sym_BANG_EQ2] = ACTIONS(2742), - [anon_sym_LT2] = ACTIONS(2744), - [anon_sym_LT_EQ2] = ACTIONS(2742), - [anon_sym_GT_EQ2] = ACTIONS(2742), - [anon_sym_EQ_TILDE2] = ACTIONS(2742), - [anon_sym_BANG_TILDE2] = ACTIONS(2742), - [anon_sym_like2] = ACTIONS(2742), - [anon_sym_not_DASHlike2] = ACTIONS(2742), - [anon_sym_STAR_STAR2] = ACTIONS(2742), - [anon_sym_PLUS_PLUS2] = ACTIONS(2742), - [anon_sym_SLASH2] = ACTIONS(2744), - [anon_sym_mod2] = ACTIONS(2742), - [anon_sym_SLASH_SLASH2] = ACTIONS(2742), - [anon_sym_PLUS2] = ACTIONS(2744), - [anon_sym_bit_DASHshl2] = ACTIONS(2742), - [anon_sym_bit_DASHshr2] = ACTIONS(2742), - [anon_sym_bit_DASHand2] = ACTIONS(2742), - [anon_sym_bit_DASHxor2] = ACTIONS(2742), - [anon_sym_bit_DASHor2] = ACTIONS(2742), - [anon_sym_err_GT] = ACTIONS(2744), - [anon_sym_out_GT] = ACTIONS(2744), - [anon_sym_e_GT] = ACTIONS(2744), - [anon_sym_o_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT] = ACTIONS(2744), - [anon_sym_err_GT_GT] = ACTIONS(2742), - [anon_sym_out_GT_GT] = ACTIONS(2742), - [anon_sym_e_GT_GT] = ACTIONS(2742), - [anon_sym_o_GT_GT] = ACTIONS(2742), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2742), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2742), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2742), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2742), + [anon_sym_in] = ACTIONS(2541), + [sym__newline] = ACTIONS(2541), + [anon_sym_SEMI] = ACTIONS(2541), + [anon_sym_PIPE] = ACTIONS(2541), + [anon_sym_err_GT_PIPE] = ACTIONS(2541), + [anon_sym_out_GT_PIPE] = ACTIONS(2541), + [anon_sym_e_GT_PIPE] = ACTIONS(2541), + [anon_sym_o_GT_PIPE] = ACTIONS(2541), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2541), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2541), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2541), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2541), + [anon_sym_RPAREN] = ACTIONS(2541), + [anon_sym_GT2] = ACTIONS(2543), + [anon_sym_DASH2] = ACTIONS(2541), + [anon_sym_LBRACE] = ACTIONS(2541), + [anon_sym_STAR2] = ACTIONS(2543), + [anon_sym_and2] = ACTIONS(2541), + [anon_sym_xor2] = ACTIONS(2541), + [anon_sym_or2] = ACTIONS(2541), + [anon_sym_not_DASHin2] = ACTIONS(2541), + [anon_sym_has2] = ACTIONS(2541), + [anon_sym_not_DASHhas2] = ACTIONS(2541), + [anon_sym_starts_DASHwith2] = ACTIONS(2541), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2541), + [anon_sym_ends_DASHwith2] = ACTIONS(2541), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2541), + [anon_sym_EQ_EQ2] = ACTIONS(2541), + [anon_sym_BANG_EQ2] = ACTIONS(2541), + [anon_sym_LT2] = ACTIONS(2543), + [anon_sym_LT_EQ2] = ACTIONS(2541), + [anon_sym_GT_EQ2] = ACTIONS(2541), + [anon_sym_EQ_TILDE2] = ACTIONS(2541), + [anon_sym_BANG_TILDE2] = ACTIONS(2541), + [anon_sym_like2] = ACTIONS(2541), + [anon_sym_not_DASHlike2] = ACTIONS(2541), + [anon_sym_STAR_STAR2] = ACTIONS(2541), + [anon_sym_PLUS_PLUS2] = ACTIONS(2541), + [anon_sym_SLASH2] = ACTIONS(2543), + [anon_sym_mod2] = ACTIONS(2541), + [anon_sym_SLASH_SLASH2] = ACTIONS(2541), + [anon_sym_PLUS2] = ACTIONS(2543), + [anon_sym_bit_DASHshl2] = ACTIONS(2541), + [anon_sym_bit_DASHshr2] = ACTIONS(2541), + [anon_sym_bit_DASHand2] = ACTIONS(2541), + [anon_sym_bit_DASHxor2] = ACTIONS(2541), + [anon_sym_bit_DASHor2] = ACTIONS(2541), + [anon_sym_err_GT] = ACTIONS(2543), + [anon_sym_out_GT] = ACTIONS(2543), + [anon_sym_e_GT] = ACTIONS(2543), + [anon_sym_o_GT] = ACTIONS(2543), + [anon_sym_err_PLUSout_GT] = ACTIONS(2543), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2543), + [anon_sym_o_PLUSe_GT] = ACTIONS(2543), + [anon_sym_e_PLUSo_GT] = ACTIONS(2543), + [anon_sym_err_GT_GT] = ACTIONS(2541), + [anon_sym_out_GT_GT] = ACTIONS(2541), + [anon_sym_e_GT_GT] = ACTIONS(2541), + [anon_sym_o_GT_GT] = ACTIONS(2541), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2541), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2541), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2541), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2541), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1083)] = { + [aux_sym__repeat_newline] = STATE(1089), [sym_comment] = STATE(1083), - [ts_builtin_sym_end] = ACTIONS(2589), - [anon_sym_in] = ACTIONS(2589), - [sym__newline] = ACTIONS(2589), - [anon_sym_SEMI] = ACTIONS(2589), - [anon_sym_PIPE] = ACTIONS(2589), - [anon_sym_err_GT_PIPE] = ACTIONS(2589), - [anon_sym_out_GT_PIPE] = ACTIONS(2589), - [anon_sym_e_GT_PIPE] = ACTIONS(2589), - [anon_sym_o_GT_PIPE] = ACTIONS(2589), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2589), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2589), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2589), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2589), - [anon_sym_GT2] = ACTIONS(2591), - [anon_sym_DASH2] = ACTIONS(2589), - [anon_sym_STAR2] = ACTIONS(2591), - [anon_sym_and2] = ACTIONS(2589), - [anon_sym_xor2] = ACTIONS(2589), - [anon_sym_or2] = ACTIONS(2589), - [anon_sym_not_DASHin2] = ACTIONS(2589), - [anon_sym_has2] = ACTIONS(2589), - [anon_sym_not_DASHhas2] = ACTIONS(2589), - [anon_sym_starts_DASHwith2] = ACTIONS(2589), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2589), - [anon_sym_ends_DASHwith2] = ACTIONS(2589), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2589), - [anon_sym_EQ_EQ2] = ACTIONS(2589), - [anon_sym_BANG_EQ2] = ACTIONS(2589), - [anon_sym_LT2] = ACTIONS(2591), - [anon_sym_LT_EQ2] = ACTIONS(2589), - [anon_sym_GT_EQ2] = ACTIONS(2589), - [anon_sym_EQ_TILDE2] = ACTIONS(2589), - [anon_sym_BANG_TILDE2] = ACTIONS(2589), - [anon_sym_like2] = ACTIONS(2589), - [anon_sym_not_DASHlike2] = ACTIONS(2589), - [anon_sym_LPAREN2] = ACTIONS(2644), - [anon_sym_STAR_STAR2] = ACTIONS(2589), - [anon_sym_PLUS_PLUS2] = ACTIONS(2589), - [anon_sym_SLASH2] = ACTIONS(2591), - [anon_sym_mod2] = ACTIONS(2589), - [anon_sym_SLASH_SLASH2] = ACTIONS(2589), - [anon_sym_PLUS2] = ACTIONS(2591), - [anon_sym_bit_DASHshl2] = ACTIONS(2589), - [anon_sym_bit_DASHshr2] = ACTIONS(2589), - [anon_sym_bit_DASHand2] = ACTIONS(2589), - [anon_sym_bit_DASHxor2] = ACTIONS(2589), - [anon_sym_bit_DASHor2] = ACTIONS(2589), - [anon_sym_err_GT] = ACTIONS(2591), - [anon_sym_out_GT] = ACTIONS(2591), - [anon_sym_e_GT] = ACTIONS(2591), - [anon_sym_o_GT] = ACTIONS(2591), - [anon_sym_err_PLUSout_GT] = ACTIONS(2591), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2591), - [anon_sym_o_PLUSe_GT] = ACTIONS(2591), - [anon_sym_e_PLUSo_GT] = ACTIONS(2591), - [anon_sym_err_GT_GT] = ACTIONS(2589), - [anon_sym_out_GT_GT] = ACTIONS(2589), - [anon_sym_e_GT_GT] = ACTIONS(2589), - [anon_sym_o_GT_GT] = ACTIONS(2589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [sym__unquoted_pattern] = ACTIONS(2646), + [anon_sym_in] = ACTIONS(2381), + [sym__newline] = ACTIONS(2381), + [anon_sym_SEMI] = ACTIONS(2381), + [anon_sym_PIPE] = ACTIONS(2381), + [anon_sym_err_GT_PIPE] = ACTIONS(2381), + [anon_sym_out_GT_PIPE] = ACTIONS(2381), + [anon_sym_e_GT_PIPE] = ACTIONS(2381), + [anon_sym_o_GT_PIPE] = ACTIONS(2381), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2381), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2381), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2381), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2381), + [anon_sym_RPAREN] = ACTIONS(2381), + [anon_sym_GT2] = ACTIONS(2383), + [anon_sym_DASH2] = ACTIONS(2381), + [anon_sym_LBRACE] = ACTIONS(2381), + [anon_sym_STAR2] = ACTIONS(2383), + [anon_sym_and2] = ACTIONS(2381), + [anon_sym_xor2] = ACTIONS(2381), + [anon_sym_or2] = ACTIONS(2381), + [anon_sym_not_DASHin2] = ACTIONS(2381), + [anon_sym_has2] = ACTIONS(2381), + [anon_sym_not_DASHhas2] = ACTIONS(2381), + [anon_sym_starts_DASHwith2] = ACTIONS(2381), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2381), + [anon_sym_ends_DASHwith2] = ACTIONS(2381), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2381), + [anon_sym_EQ_EQ2] = ACTIONS(2381), + [anon_sym_BANG_EQ2] = ACTIONS(2381), + [anon_sym_LT2] = ACTIONS(2383), + [anon_sym_LT_EQ2] = ACTIONS(2381), + [anon_sym_GT_EQ2] = ACTIONS(2381), + [anon_sym_EQ_TILDE2] = ACTIONS(2381), + [anon_sym_BANG_TILDE2] = ACTIONS(2381), + [anon_sym_like2] = ACTIONS(2381), + [anon_sym_not_DASHlike2] = ACTIONS(2381), + [anon_sym_STAR_STAR2] = ACTIONS(2381), + [anon_sym_PLUS_PLUS2] = ACTIONS(2381), + [anon_sym_SLASH2] = ACTIONS(2383), + [anon_sym_mod2] = ACTIONS(2381), + [anon_sym_SLASH_SLASH2] = ACTIONS(2381), + [anon_sym_PLUS2] = ACTIONS(2383), + [anon_sym_bit_DASHshl2] = ACTIONS(2381), + [anon_sym_bit_DASHshr2] = ACTIONS(2381), + [anon_sym_bit_DASHand2] = ACTIONS(2381), + [anon_sym_bit_DASHxor2] = ACTIONS(2381), + [anon_sym_bit_DASHor2] = ACTIONS(2381), + [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(2381), + [anon_sym_out_GT_GT] = ACTIONS(2381), + [anon_sym_e_GT_GT] = ACTIONS(2381), + [anon_sym_o_GT_GT] = ACTIONS(2381), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2381), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2381), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2381), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2381), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1084)] = { - [aux_sym__repeat_newline] = STATE(1104), + [aux_sym__repeat_newline] = STATE(1122), [sym_comment] = STATE(1084), - [anon_sym_in] = ACTIONS(2442), - [sym__newline] = ACTIONS(2442), - [anon_sym_SEMI] = ACTIONS(2442), - [anon_sym_PIPE] = ACTIONS(2442), - [anon_sym_err_GT_PIPE] = ACTIONS(2442), - [anon_sym_out_GT_PIPE] = ACTIONS(2442), - [anon_sym_e_GT_PIPE] = ACTIONS(2442), - [anon_sym_o_GT_PIPE] = ACTIONS(2442), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2442), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2442), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2442), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2442), - [anon_sym_RPAREN] = ACTIONS(2442), - [anon_sym_GT2] = ACTIONS(2444), - [anon_sym_DASH2] = ACTIONS(2442), - [anon_sym_LBRACE] = ACTIONS(2442), - [anon_sym_STAR2] = ACTIONS(2444), - [anon_sym_and2] = ACTIONS(2442), - [anon_sym_xor2] = ACTIONS(2442), - [anon_sym_or2] = ACTIONS(2442), - [anon_sym_not_DASHin2] = ACTIONS(2442), - [anon_sym_has2] = ACTIONS(2442), - [anon_sym_not_DASHhas2] = ACTIONS(2442), - [anon_sym_starts_DASHwith2] = ACTIONS(2442), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2442), - [anon_sym_ends_DASHwith2] = ACTIONS(2442), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2442), - [anon_sym_EQ_EQ2] = ACTIONS(2442), - [anon_sym_BANG_EQ2] = ACTIONS(2442), - [anon_sym_LT2] = ACTIONS(2444), - [anon_sym_LT_EQ2] = ACTIONS(2442), - [anon_sym_GT_EQ2] = ACTIONS(2442), - [anon_sym_EQ_TILDE2] = ACTIONS(2442), - [anon_sym_BANG_TILDE2] = ACTIONS(2442), - [anon_sym_like2] = ACTIONS(2442), - [anon_sym_not_DASHlike2] = ACTIONS(2442), - [anon_sym_STAR_STAR2] = ACTIONS(2442), - [anon_sym_PLUS_PLUS2] = ACTIONS(2442), - [anon_sym_SLASH2] = ACTIONS(2444), - [anon_sym_mod2] = ACTIONS(2442), - [anon_sym_SLASH_SLASH2] = ACTIONS(2442), - [anon_sym_PLUS2] = ACTIONS(2444), - [anon_sym_bit_DASHshl2] = ACTIONS(2442), - [anon_sym_bit_DASHshr2] = ACTIONS(2442), - [anon_sym_bit_DASHand2] = ACTIONS(2442), - [anon_sym_bit_DASHxor2] = ACTIONS(2442), - [anon_sym_bit_DASHor2] = ACTIONS(2442), - [anon_sym_err_GT] = ACTIONS(2444), - [anon_sym_out_GT] = ACTIONS(2444), - [anon_sym_e_GT] = ACTIONS(2444), - [anon_sym_o_GT] = ACTIONS(2444), - [anon_sym_err_PLUSout_GT] = ACTIONS(2444), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2444), - [anon_sym_o_PLUSe_GT] = ACTIONS(2444), - [anon_sym_e_PLUSo_GT] = ACTIONS(2444), - [anon_sym_err_GT_GT] = ACTIONS(2442), - [anon_sym_out_GT_GT] = ACTIONS(2442), - [anon_sym_e_GT_GT] = ACTIONS(2442), - [anon_sym_o_GT_GT] = ACTIONS(2442), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2442), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2442), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2442), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2442), + [anon_sym_in] = ACTIONS(2350), + [sym__newline] = ACTIONS(2350), + [anon_sym_SEMI] = ACTIONS(2350), + [anon_sym_PIPE] = ACTIONS(2350), + [anon_sym_err_GT_PIPE] = ACTIONS(2350), + [anon_sym_out_GT_PIPE] = ACTIONS(2350), + [anon_sym_e_GT_PIPE] = ACTIONS(2350), + [anon_sym_o_GT_PIPE] = ACTIONS(2350), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2350), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2350), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2350), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2350), + [anon_sym_RPAREN] = ACTIONS(2350), + [anon_sym_GT2] = ACTIONS(2352), + [anon_sym_DASH2] = ACTIONS(2350), + [anon_sym_LBRACE] = ACTIONS(2350), + [anon_sym_STAR2] = ACTIONS(2352), + [anon_sym_and2] = ACTIONS(2350), + [anon_sym_xor2] = ACTIONS(2350), + [anon_sym_or2] = ACTIONS(2350), + [anon_sym_not_DASHin2] = ACTIONS(2350), + [anon_sym_has2] = ACTIONS(2350), + [anon_sym_not_DASHhas2] = ACTIONS(2350), + [anon_sym_starts_DASHwith2] = ACTIONS(2350), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2350), + [anon_sym_ends_DASHwith2] = ACTIONS(2350), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2350), + [anon_sym_EQ_EQ2] = ACTIONS(2350), + [anon_sym_BANG_EQ2] = ACTIONS(2350), + [anon_sym_LT2] = ACTIONS(2352), + [anon_sym_LT_EQ2] = ACTIONS(2350), + [anon_sym_GT_EQ2] = ACTIONS(2350), + [anon_sym_EQ_TILDE2] = ACTIONS(2350), + [anon_sym_BANG_TILDE2] = ACTIONS(2350), + [anon_sym_like2] = ACTIONS(2350), + [anon_sym_not_DASHlike2] = ACTIONS(2350), + [anon_sym_STAR_STAR2] = ACTIONS(2350), + [anon_sym_PLUS_PLUS2] = ACTIONS(2350), + [anon_sym_SLASH2] = ACTIONS(2352), + [anon_sym_mod2] = ACTIONS(2350), + [anon_sym_SLASH_SLASH2] = ACTIONS(2350), + [anon_sym_PLUS2] = ACTIONS(2352), + [anon_sym_bit_DASHshl2] = ACTIONS(2350), + [anon_sym_bit_DASHshr2] = ACTIONS(2350), + [anon_sym_bit_DASHand2] = ACTIONS(2350), + [anon_sym_bit_DASHxor2] = ACTIONS(2350), + [anon_sym_bit_DASHor2] = ACTIONS(2350), + [anon_sym_err_GT] = ACTIONS(2352), + [anon_sym_out_GT] = ACTIONS(2352), + [anon_sym_e_GT] = ACTIONS(2352), + [anon_sym_o_GT] = ACTIONS(2352), + [anon_sym_err_PLUSout_GT] = ACTIONS(2352), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2352), + [anon_sym_o_PLUSe_GT] = ACTIONS(2352), + [anon_sym_e_PLUSo_GT] = ACTIONS(2352), + [anon_sym_err_GT_GT] = ACTIONS(2350), + [anon_sym_out_GT_GT] = ACTIONS(2350), + [anon_sym_e_GT_GT] = ACTIONS(2350), + [anon_sym_o_GT_GT] = ACTIONS(2350), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2350), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2350), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2350), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2350), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1085)] = { - [aux_sym__repeat_newline] = STATE(527), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1085), - [anon_sym_in] = ACTIONS(2742), - [sym__newline] = ACTIONS(2742), - [anon_sym_SEMI] = 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_RPAREN] = ACTIONS(2742), - [anon_sym_GT2] = ACTIONS(2744), - [anon_sym_DASH2] = ACTIONS(2742), - [anon_sym_LBRACE] = ACTIONS(2742), - [anon_sym_STAR2] = ACTIONS(2744), - [anon_sym_and2] = ACTIONS(2742), - [anon_sym_xor2] = ACTIONS(2742), - [anon_sym_or2] = ACTIONS(2742), - [anon_sym_not_DASHin2] = ACTIONS(2742), - [anon_sym_has2] = ACTIONS(2742), - [anon_sym_not_DASHhas2] = ACTIONS(2742), - [anon_sym_starts_DASHwith2] = ACTIONS(2742), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2742), - [anon_sym_ends_DASHwith2] = ACTIONS(2742), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2742), - [anon_sym_EQ_EQ2] = ACTIONS(2742), - [anon_sym_BANG_EQ2] = ACTIONS(2742), - [anon_sym_LT2] = ACTIONS(2744), - [anon_sym_LT_EQ2] = ACTIONS(2742), - [anon_sym_GT_EQ2] = ACTIONS(2742), - [anon_sym_EQ_TILDE2] = ACTIONS(2742), - [anon_sym_BANG_TILDE2] = ACTIONS(2742), - [anon_sym_like2] = ACTIONS(2742), - [anon_sym_not_DASHlike2] = ACTIONS(2742), - [anon_sym_STAR_STAR2] = ACTIONS(2742), - [anon_sym_PLUS_PLUS2] = ACTIONS(2742), - [anon_sym_SLASH2] = ACTIONS(2744), - [anon_sym_mod2] = ACTIONS(2742), - [anon_sym_SLASH_SLASH2] = ACTIONS(2742), - [anon_sym_PLUS2] = ACTIONS(2744), - [anon_sym_bit_DASHshl2] = ACTIONS(2742), - [anon_sym_bit_DASHshr2] = ACTIONS(2742), - [anon_sym_bit_DASHand2] = ACTIONS(2742), - [anon_sym_bit_DASHxor2] = ACTIONS(2742), - [anon_sym_bit_DASHor2] = ACTIONS(2742), - [anon_sym_err_GT] = ACTIONS(2744), - [anon_sym_out_GT] = ACTIONS(2744), - [anon_sym_e_GT] = ACTIONS(2744), - [anon_sym_o_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT] = ACTIONS(2744), - [anon_sym_err_GT_GT] = ACTIONS(2742), - [anon_sym_out_GT_GT] = ACTIONS(2742), - [anon_sym_e_GT_GT] = ACTIONS(2742), - [anon_sym_o_GT_GT] = ACTIONS(2742), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2742), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2742), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2742), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2742), + [anon_sym_in] = ACTIONS(2802), + [sym__newline] = ACTIONS(2802), + [anon_sym_SEMI] = ACTIONS(2802), + [anon_sym_PIPE] = ACTIONS(2802), + [anon_sym_err_GT_PIPE] = ACTIONS(2802), + [anon_sym_out_GT_PIPE] = ACTIONS(2802), + [anon_sym_e_GT_PIPE] = ACTIONS(2802), + [anon_sym_o_GT_PIPE] = ACTIONS(2802), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2802), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2802), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2802), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2802), + [anon_sym_RPAREN] = ACTIONS(2802), + [anon_sym_GT2] = ACTIONS(2804), + [anon_sym_DASH2] = ACTIONS(2802), + [anon_sym_LBRACE] = ACTIONS(2802), + [anon_sym_STAR2] = ACTIONS(2804), + [anon_sym_and2] = ACTIONS(2802), + [anon_sym_xor2] = ACTIONS(2802), + [anon_sym_or2] = ACTIONS(2802), + [anon_sym_not_DASHin2] = ACTIONS(2802), + [anon_sym_has2] = ACTIONS(2802), + [anon_sym_not_DASHhas2] = ACTIONS(2802), + [anon_sym_starts_DASHwith2] = ACTIONS(2802), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2802), + [anon_sym_ends_DASHwith2] = ACTIONS(2802), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2802), + [anon_sym_EQ_EQ2] = ACTIONS(2802), + [anon_sym_BANG_EQ2] = ACTIONS(2802), + [anon_sym_LT2] = ACTIONS(2804), + [anon_sym_LT_EQ2] = ACTIONS(2802), + [anon_sym_GT_EQ2] = ACTIONS(2802), + [anon_sym_EQ_TILDE2] = ACTIONS(2802), + [anon_sym_BANG_TILDE2] = ACTIONS(2802), + [anon_sym_like2] = ACTIONS(2802), + [anon_sym_not_DASHlike2] = ACTIONS(2802), + [anon_sym_STAR_STAR2] = ACTIONS(2802), + [anon_sym_PLUS_PLUS2] = ACTIONS(2802), + [anon_sym_SLASH2] = ACTIONS(2804), + [anon_sym_mod2] = ACTIONS(2802), + [anon_sym_SLASH_SLASH2] = ACTIONS(2802), + [anon_sym_PLUS2] = ACTIONS(2804), + [anon_sym_bit_DASHshl2] = ACTIONS(2802), + [anon_sym_bit_DASHshr2] = ACTIONS(2802), + [anon_sym_bit_DASHand2] = ACTIONS(2802), + [anon_sym_bit_DASHxor2] = ACTIONS(2802), + [anon_sym_bit_DASHor2] = ACTIONS(2802), + [anon_sym_err_GT] = ACTIONS(2804), + [anon_sym_out_GT] = ACTIONS(2804), + [anon_sym_e_GT] = ACTIONS(2804), + [anon_sym_o_GT] = ACTIONS(2804), + [anon_sym_err_PLUSout_GT] = ACTIONS(2804), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2804), + [anon_sym_o_PLUSe_GT] = ACTIONS(2804), + [anon_sym_e_PLUSo_GT] = ACTIONS(2804), + [anon_sym_err_GT_GT] = ACTIONS(2802), + [anon_sym_out_GT_GT] = ACTIONS(2802), + [anon_sym_e_GT_GT] = ACTIONS(2802), + [anon_sym_o_GT_GT] = ACTIONS(2802), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2802), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2802), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2802), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2802), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1086)] = { - [aux_sym__repeat_newline] = STATE(1105), + [aux_sym__repeat_newline] = STATE(1123), [sym_comment] = STATE(1086), - [anon_sym_in] = ACTIONS(2442), - [sym__newline] = ACTIONS(2442), - [anon_sym_SEMI] = ACTIONS(2442), - [anon_sym_PIPE] = ACTIONS(2442), - [anon_sym_err_GT_PIPE] = ACTIONS(2442), - [anon_sym_out_GT_PIPE] = ACTIONS(2442), - [anon_sym_e_GT_PIPE] = ACTIONS(2442), - [anon_sym_o_GT_PIPE] = ACTIONS(2442), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2442), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2442), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2442), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2442), - [anon_sym_RPAREN] = ACTIONS(2442), - [anon_sym_GT2] = ACTIONS(2444), - [anon_sym_DASH2] = ACTIONS(2442), - [anon_sym_LBRACE] = ACTIONS(2442), - [anon_sym_STAR2] = ACTIONS(2444), - [anon_sym_and2] = ACTIONS(2442), - [anon_sym_xor2] = ACTIONS(2442), - [anon_sym_or2] = ACTIONS(2442), - [anon_sym_not_DASHin2] = ACTIONS(2442), - [anon_sym_has2] = ACTIONS(2442), - [anon_sym_not_DASHhas2] = ACTIONS(2442), - [anon_sym_starts_DASHwith2] = ACTIONS(2442), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2442), - [anon_sym_ends_DASHwith2] = ACTIONS(2442), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2442), - [anon_sym_EQ_EQ2] = ACTIONS(2442), - [anon_sym_BANG_EQ2] = ACTIONS(2442), - [anon_sym_LT2] = ACTIONS(2444), - [anon_sym_LT_EQ2] = ACTIONS(2442), - [anon_sym_GT_EQ2] = ACTIONS(2442), - [anon_sym_EQ_TILDE2] = ACTIONS(2442), - [anon_sym_BANG_TILDE2] = ACTIONS(2442), - [anon_sym_like2] = ACTIONS(2442), - [anon_sym_not_DASHlike2] = ACTIONS(2442), - [anon_sym_STAR_STAR2] = ACTIONS(2442), - [anon_sym_PLUS_PLUS2] = ACTIONS(2442), - [anon_sym_SLASH2] = ACTIONS(2444), - [anon_sym_mod2] = ACTIONS(2442), - [anon_sym_SLASH_SLASH2] = ACTIONS(2442), - [anon_sym_PLUS2] = ACTIONS(2444), - [anon_sym_bit_DASHshl2] = ACTIONS(2442), - [anon_sym_bit_DASHshr2] = ACTIONS(2442), - [anon_sym_bit_DASHand2] = ACTIONS(2442), - [anon_sym_bit_DASHxor2] = ACTIONS(2442), - [anon_sym_bit_DASHor2] = ACTIONS(2442), - [anon_sym_err_GT] = ACTIONS(2444), - [anon_sym_out_GT] = ACTIONS(2444), - [anon_sym_e_GT] = ACTIONS(2444), - [anon_sym_o_GT] = ACTIONS(2444), - [anon_sym_err_PLUSout_GT] = ACTIONS(2444), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2444), - [anon_sym_o_PLUSe_GT] = ACTIONS(2444), - [anon_sym_e_PLUSo_GT] = ACTIONS(2444), - [anon_sym_err_GT_GT] = ACTIONS(2442), - [anon_sym_out_GT_GT] = ACTIONS(2442), - [anon_sym_e_GT_GT] = ACTIONS(2442), - [anon_sym_o_GT_GT] = ACTIONS(2442), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2442), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2442), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2442), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2442), + [anon_sym_in] = ACTIONS(2350), + [sym__newline] = ACTIONS(2350), + [anon_sym_SEMI] = ACTIONS(2350), + [anon_sym_PIPE] = ACTIONS(2350), + [anon_sym_err_GT_PIPE] = ACTIONS(2350), + [anon_sym_out_GT_PIPE] = ACTIONS(2350), + [anon_sym_e_GT_PIPE] = ACTIONS(2350), + [anon_sym_o_GT_PIPE] = ACTIONS(2350), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2350), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2350), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2350), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2350), + [anon_sym_RPAREN] = ACTIONS(2350), + [anon_sym_GT2] = ACTIONS(2352), + [anon_sym_DASH2] = ACTIONS(2350), + [anon_sym_LBRACE] = ACTIONS(2350), + [anon_sym_STAR2] = ACTIONS(2352), + [anon_sym_and2] = ACTIONS(2350), + [anon_sym_xor2] = ACTIONS(2350), + [anon_sym_or2] = ACTIONS(2350), + [anon_sym_not_DASHin2] = ACTIONS(2350), + [anon_sym_has2] = ACTIONS(2350), + [anon_sym_not_DASHhas2] = ACTIONS(2350), + [anon_sym_starts_DASHwith2] = ACTIONS(2350), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2350), + [anon_sym_ends_DASHwith2] = ACTIONS(2350), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2350), + [anon_sym_EQ_EQ2] = ACTIONS(2350), + [anon_sym_BANG_EQ2] = ACTIONS(2350), + [anon_sym_LT2] = ACTIONS(2352), + [anon_sym_LT_EQ2] = ACTIONS(2350), + [anon_sym_GT_EQ2] = ACTIONS(2350), + [anon_sym_EQ_TILDE2] = ACTIONS(2350), + [anon_sym_BANG_TILDE2] = ACTIONS(2350), + [anon_sym_like2] = ACTIONS(2350), + [anon_sym_not_DASHlike2] = ACTIONS(2350), + [anon_sym_STAR_STAR2] = ACTIONS(2350), + [anon_sym_PLUS_PLUS2] = ACTIONS(2350), + [anon_sym_SLASH2] = ACTIONS(2352), + [anon_sym_mod2] = ACTIONS(2350), + [anon_sym_SLASH_SLASH2] = ACTIONS(2350), + [anon_sym_PLUS2] = ACTIONS(2352), + [anon_sym_bit_DASHshl2] = ACTIONS(2350), + [anon_sym_bit_DASHshr2] = ACTIONS(2350), + [anon_sym_bit_DASHand2] = ACTIONS(2350), + [anon_sym_bit_DASHxor2] = ACTIONS(2350), + [anon_sym_bit_DASHor2] = ACTIONS(2350), + [anon_sym_err_GT] = ACTIONS(2352), + [anon_sym_out_GT] = ACTIONS(2352), + [anon_sym_e_GT] = ACTIONS(2352), + [anon_sym_o_GT] = ACTIONS(2352), + [anon_sym_err_PLUSout_GT] = ACTIONS(2352), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2352), + [anon_sym_o_PLUSe_GT] = ACTIONS(2352), + [anon_sym_e_PLUSo_GT] = ACTIONS(2352), + [anon_sym_err_GT_GT] = ACTIONS(2350), + [anon_sym_out_GT_GT] = ACTIONS(2350), + [anon_sym_e_GT_GT] = ACTIONS(2350), + [anon_sym_o_GT_GT] = ACTIONS(2350), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2350), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2350), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2350), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2350), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1087)] = { - [aux_sym__repeat_newline] = STATE(527), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1087), - [anon_sym_in] = ACTIONS(2742), - [sym__newline] = ACTIONS(2742), - [anon_sym_SEMI] = 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_RPAREN] = ACTIONS(2742), - [anon_sym_GT2] = ACTIONS(2744), - [anon_sym_DASH2] = ACTIONS(2742), - [anon_sym_LBRACE] = ACTIONS(2742), - [anon_sym_STAR2] = ACTIONS(2744), - [anon_sym_and2] = ACTIONS(2742), - [anon_sym_xor2] = ACTIONS(2742), - [anon_sym_or2] = ACTIONS(2742), - [anon_sym_not_DASHin2] = ACTIONS(2742), - [anon_sym_has2] = ACTIONS(2742), - [anon_sym_not_DASHhas2] = ACTIONS(2742), - [anon_sym_starts_DASHwith2] = ACTIONS(2742), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2742), - [anon_sym_ends_DASHwith2] = ACTIONS(2742), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2742), - [anon_sym_EQ_EQ2] = ACTIONS(2742), - [anon_sym_BANG_EQ2] = ACTIONS(2742), - [anon_sym_LT2] = ACTIONS(2744), - [anon_sym_LT_EQ2] = ACTIONS(2742), - [anon_sym_GT_EQ2] = ACTIONS(2742), - [anon_sym_EQ_TILDE2] = ACTIONS(2742), - [anon_sym_BANG_TILDE2] = ACTIONS(2742), - [anon_sym_like2] = ACTIONS(2742), - [anon_sym_not_DASHlike2] = ACTIONS(2742), - [anon_sym_STAR_STAR2] = ACTIONS(2742), - [anon_sym_PLUS_PLUS2] = ACTIONS(2742), - [anon_sym_SLASH2] = ACTIONS(2744), - [anon_sym_mod2] = ACTIONS(2742), - [anon_sym_SLASH_SLASH2] = ACTIONS(2742), - [anon_sym_PLUS2] = ACTIONS(2744), - [anon_sym_bit_DASHshl2] = ACTIONS(2742), - [anon_sym_bit_DASHshr2] = ACTIONS(2742), - [anon_sym_bit_DASHand2] = ACTIONS(2742), - [anon_sym_bit_DASHxor2] = ACTIONS(2742), - [anon_sym_bit_DASHor2] = ACTIONS(2742), - [anon_sym_err_GT] = ACTIONS(2744), - [anon_sym_out_GT] = ACTIONS(2744), - [anon_sym_e_GT] = ACTIONS(2744), - [anon_sym_o_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT] = ACTIONS(2744), - [anon_sym_err_GT_GT] = ACTIONS(2742), - [anon_sym_out_GT_GT] = ACTIONS(2742), - [anon_sym_e_GT_GT] = ACTIONS(2742), - [anon_sym_o_GT_GT] = ACTIONS(2742), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2742), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2742), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2742), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2742), + [anon_sym_in] = ACTIONS(2802), + [sym__newline] = ACTIONS(2802), + [anon_sym_SEMI] = ACTIONS(2802), + [anon_sym_PIPE] = ACTIONS(2802), + [anon_sym_err_GT_PIPE] = ACTIONS(2802), + [anon_sym_out_GT_PIPE] = ACTIONS(2802), + [anon_sym_e_GT_PIPE] = ACTIONS(2802), + [anon_sym_o_GT_PIPE] = ACTIONS(2802), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2802), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2802), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2802), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2802), + [anon_sym_RPAREN] = ACTIONS(2802), + [anon_sym_GT2] = ACTIONS(2804), + [anon_sym_DASH2] = ACTIONS(2802), + [anon_sym_LBRACE] = ACTIONS(2802), + [anon_sym_STAR2] = ACTIONS(2804), + [anon_sym_and2] = ACTIONS(2802), + [anon_sym_xor2] = ACTIONS(2802), + [anon_sym_or2] = ACTIONS(2802), + [anon_sym_not_DASHin2] = ACTIONS(2802), + [anon_sym_has2] = ACTIONS(2802), + [anon_sym_not_DASHhas2] = ACTIONS(2802), + [anon_sym_starts_DASHwith2] = ACTIONS(2802), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2802), + [anon_sym_ends_DASHwith2] = ACTIONS(2802), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2802), + [anon_sym_EQ_EQ2] = ACTIONS(2802), + [anon_sym_BANG_EQ2] = ACTIONS(2802), + [anon_sym_LT2] = ACTIONS(2804), + [anon_sym_LT_EQ2] = ACTIONS(2802), + [anon_sym_GT_EQ2] = ACTIONS(2802), + [anon_sym_EQ_TILDE2] = ACTIONS(2802), + [anon_sym_BANG_TILDE2] = ACTIONS(2802), + [anon_sym_like2] = ACTIONS(2802), + [anon_sym_not_DASHlike2] = ACTIONS(2802), + [anon_sym_STAR_STAR2] = ACTIONS(2802), + [anon_sym_PLUS_PLUS2] = ACTIONS(2802), + [anon_sym_SLASH2] = ACTIONS(2804), + [anon_sym_mod2] = ACTIONS(2802), + [anon_sym_SLASH_SLASH2] = ACTIONS(2802), + [anon_sym_PLUS2] = ACTIONS(2804), + [anon_sym_bit_DASHshl2] = ACTIONS(2802), + [anon_sym_bit_DASHshr2] = ACTIONS(2802), + [anon_sym_bit_DASHand2] = ACTIONS(2802), + [anon_sym_bit_DASHxor2] = ACTIONS(2802), + [anon_sym_bit_DASHor2] = ACTIONS(2802), + [anon_sym_err_GT] = ACTIONS(2804), + [anon_sym_out_GT] = ACTIONS(2804), + [anon_sym_e_GT] = ACTIONS(2804), + [anon_sym_o_GT] = ACTIONS(2804), + [anon_sym_err_PLUSout_GT] = ACTIONS(2804), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2804), + [anon_sym_o_PLUSe_GT] = ACTIONS(2804), + [anon_sym_e_PLUSo_GT] = ACTIONS(2804), + [anon_sym_err_GT_GT] = ACTIONS(2802), + [anon_sym_out_GT_GT] = ACTIONS(2802), + [anon_sym_e_GT_GT] = ACTIONS(2802), + [anon_sym_o_GT_GT] = ACTIONS(2802), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2802), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2802), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2802), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2802), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1088)] = { - [aux_sym__repeat_newline] = STATE(1106), + [aux_sym__repeat_newline] = STATE(1124), [sym_comment] = STATE(1088), - [anon_sym_in] = ACTIONS(2442), - [sym__newline] = ACTIONS(2442), - [anon_sym_SEMI] = ACTIONS(2442), - [anon_sym_PIPE] = ACTIONS(2442), - [anon_sym_err_GT_PIPE] = ACTIONS(2442), - [anon_sym_out_GT_PIPE] = ACTIONS(2442), - [anon_sym_e_GT_PIPE] = ACTIONS(2442), - [anon_sym_o_GT_PIPE] = ACTIONS(2442), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2442), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2442), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2442), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2442), - [anon_sym_RPAREN] = ACTIONS(2442), - [anon_sym_GT2] = ACTIONS(2444), - [anon_sym_DASH2] = ACTIONS(2442), - [anon_sym_LBRACE] = ACTIONS(2442), - [anon_sym_STAR2] = ACTIONS(2444), - [anon_sym_and2] = ACTIONS(2442), - [anon_sym_xor2] = ACTIONS(2442), - [anon_sym_or2] = ACTIONS(2442), - [anon_sym_not_DASHin2] = ACTIONS(2442), - [anon_sym_has2] = ACTIONS(2442), - [anon_sym_not_DASHhas2] = ACTIONS(2442), - [anon_sym_starts_DASHwith2] = ACTIONS(2442), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2442), - [anon_sym_ends_DASHwith2] = ACTIONS(2442), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2442), - [anon_sym_EQ_EQ2] = ACTIONS(2442), - [anon_sym_BANG_EQ2] = ACTIONS(2442), - [anon_sym_LT2] = ACTIONS(2444), - [anon_sym_LT_EQ2] = ACTIONS(2442), - [anon_sym_GT_EQ2] = ACTIONS(2442), - [anon_sym_EQ_TILDE2] = ACTIONS(2442), - [anon_sym_BANG_TILDE2] = ACTIONS(2442), - [anon_sym_like2] = ACTIONS(2442), - [anon_sym_not_DASHlike2] = ACTIONS(2442), - [anon_sym_STAR_STAR2] = ACTIONS(2442), - [anon_sym_PLUS_PLUS2] = ACTIONS(2442), - [anon_sym_SLASH2] = ACTIONS(2444), - [anon_sym_mod2] = ACTIONS(2442), - [anon_sym_SLASH_SLASH2] = ACTIONS(2442), - [anon_sym_PLUS2] = ACTIONS(2444), - [anon_sym_bit_DASHshl2] = ACTIONS(2442), - [anon_sym_bit_DASHshr2] = ACTIONS(2442), - [anon_sym_bit_DASHand2] = ACTIONS(2442), - [anon_sym_bit_DASHxor2] = ACTIONS(2442), - [anon_sym_bit_DASHor2] = ACTIONS(2442), - [anon_sym_err_GT] = ACTIONS(2444), - [anon_sym_out_GT] = ACTIONS(2444), - [anon_sym_e_GT] = ACTIONS(2444), - [anon_sym_o_GT] = ACTIONS(2444), - [anon_sym_err_PLUSout_GT] = ACTIONS(2444), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2444), - [anon_sym_o_PLUSe_GT] = ACTIONS(2444), - [anon_sym_e_PLUSo_GT] = ACTIONS(2444), - [anon_sym_err_GT_GT] = ACTIONS(2442), - [anon_sym_out_GT_GT] = ACTIONS(2442), - [anon_sym_e_GT_GT] = ACTIONS(2442), - [anon_sym_o_GT_GT] = ACTIONS(2442), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2442), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2442), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2442), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2442), + [anon_sym_in] = ACTIONS(2350), + [sym__newline] = ACTIONS(2350), + [anon_sym_SEMI] = ACTIONS(2350), + [anon_sym_PIPE] = ACTIONS(2350), + [anon_sym_err_GT_PIPE] = ACTIONS(2350), + [anon_sym_out_GT_PIPE] = ACTIONS(2350), + [anon_sym_e_GT_PIPE] = ACTIONS(2350), + [anon_sym_o_GT_PIPE] = ACTIONS(2350), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2350), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2350), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2350), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2350), + [anon_sym_RPAREN] = ACTIONS(2350), + [anon_sym_GT2] = ACTIONS(2352), + [anon_sym_DASH2] = ACTIONS(2350), + [anon_sym_LBRACE] = ACTIONS(2350), + [anon_sym_STAR2] = ACTIONS(2352), + [anon_sym_and2] = ACTIONS(2350), + [anon_sym_xor2] = ACTIONS(2350), + [anon_sym_or2] = ACTIONS(2350), + [anon_sym_not_DASHin2] = ACTIONS(2350), + [anon_sym_has2] = ACTIONS(2350), + [anon_sym_not_DASHhas2] = ACTIONS(2350), + [anon_sym_starts_DASHwith2] = ACTIONS(2350), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2350), + [anon_sym_ends_DASHwith2] = ACTIONS(2350), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2350), + [anon_sym_EQ_EQ2] = ACTIONS(2350), + [anon_sym_BANG_EQ2] = ACTIONS(2350), + [anon_sym_LT2] = ACTIONS(2352), + [anon_sym_LT_EQ2] = ACTIONS(2350), + [anon_sym_GT_EQ2] = ACTIONS(2350), + [anon_sym_EQ_TILDE2] = ACTIONS(2350), + [anon_sym_BANG_TILDE2] = ACTIONS(2350), + [anon_sym_like2] = ACTIONS(2350), + [anon_sym_not_DASHlike2] = ACTIONS(2350), + [anon_sym_STAR_STAR2] = ACTIONS(2350), + [anon_sym_PLUS_PLUS2] = ACTIONS(2350), + [anon_sym_SLASH2] = ACTIONS(2352), + [anon_sym_mod2] = ACTIONS(2350), + [anon_sym_SLASH_SLASH2] = ACTIONS(2350), + [anon_sym_PLUS2] = ACTIONS(2352), + [anon_sym_bit_DASHshl2] = ACTIONS(2350), + [anon_sym_bit_DASHshr2] = ACTIONS(2350), + [anon_sym_bit_DASHand2] = ACTIONS(2350), + [anon_sym_bit_DASHxor2] = ACTIONS(2350), + [anon_sym_bit_DASHor2] = ACTIONS(2350), + [anon_sym_err_GT] = ACTIONS(2352), + [anon_sym_out_GT] = ACTIONS(2352), + [anon_sym_e_GT] = ACTIONS(2352), + [anon_sym_o_GT] = ACTIONS(2352), + [anon_sym_err_PLUSout_GT] = ACTIONS(2352), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2352), + [anon_sym_o_PLUSe_GT] = ACTIONS(2352), + [anon_sym_e_PLUSo_GT] = ACTIONS(2352), + [anon_sym_err_GT_GT] = ACTIONS(2350), + [anon_sym_out_GT_GT] = ACTIONS(2350), + [anon_sym_e_GT_GT] = ACTIONS(2350), + [anon_sym_o_GT_GT] = ACTIONS(2350), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2350), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2350), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2350), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2350), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1089)] = { - [aux_sym__repeat_newline] = STATE(527), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1089), - [anon_sym_in] = ACTIONS(2742), - [sym__newline] = ACTIONS(2742), - [anon_sym_SEMI] = 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_RPAREN] = ACTIONS(2742), - [anon_sym_GT2] = ACTIONS(2744), - [anon_sym_DASH2] = ACTIONS(2742), - [anon_sym_LBRACE] = ACTIONS(2742), - [anon_sym_STAR2] = ACTIONS(2744), - [anon_sym_and2] = ACTIONS(2742), - [anon_sym_xor2] = ACTIONS(2742), - [anon_sym_or2] = ACTIONS(2742), - [anon_sym_not_DASHin2] = ACTIONS(2742), - [anon_sym_has2] = ACTIONS(2742), - [anon_sym_not_DASHhas2] = ACTIONS(2742), - [anon_sym_starts_DASHwith2] = ACTIONS(2742), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2742), - [anon_sym_ends_DASHwith2] = ACTIONS(2742), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2742), - [anon_sym_EQ_EQ2] = ACTIONS(2742), - [anon_sym_BANG_EQ2] = ACTIONS(2742), - [anon_sym_LT2] = ACTIONS(2744), - [anon_sym_LT_EQ2] = ACTIONS(2742), - [anon_sym_GT_EQ2] = ACTIONS(2742), - [anon_sym_EQ_TILDE2] = ACTIONS(2742), - [anon_sym_BANG_TILDE2] = ACTIONS(2742), - [anon_sym_like2] = ACTIONS(2742), - [anon_sym_not_DASHlike2] = ACTIONS(2742), - [anon_sym_STAR_STAR2] = ACTIONS(2742), - [anon_sym_PLUS_PLUS2] = ACTIONS(2742), - [anon_sym_SLASH2] = ACTIONS(2744), - [anon_sym_mod2] = ACTIONS(2742), - [anon_sym_SLASH_SLASH2] = ACTIONS(2742), - [anon_sym_PLUS2] = ACTIONS(2744), - [anon_sym_bit_DASHshl2] = ACTIONS(2742), - [anon_sym_bit_DASHshr2] = ACTIONS(2742), - [anon_sym_bit_DASHand2] = ACTIONS(2742), - [anon_sym_bit_DASHxor2] = ACTIONS(2742), - [anon_sym_bit_DASHor2] = ACTIONS(2742), - [anon_sym_err_GT] = ACTIONS(2744), - [anon_sym_out_GT] = ACTIONS(2744), - [anon_sym_e_GT] = ACTIONS(2744), - [anon_sym_o_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT] = ACTIONS(2744), - [anon_sym_err_GT_GT] = ACTIONS(2742), - [anon_sym_out_GT_GT] = ACTIONS(2742), - [anon_sym_e_GT_GT] = ACTIONS(2742), - [anon_sym_o_GT_GT] = ACTIONS(2742), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2742), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2742), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2742), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2742), + [anon_sym_in] = ACTIONS(2802), + [sym__newline] = ACTIONS(2802), + [anon_sym_SEMI] = ACTIONS(2802), + [anon_sym_PIPE] = ACTIONS(2802), + [anon_sym_err_GT_PIPE] = ACTIONS(2802), + [anon_sym_out_GT_PIPE] = ACTIONS(2802), + [anon_sym_e_GT_PIPE] = ACTIONS(2802), + [anon_sym_o_GT_PIPE] = ACTIONS(2802), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2802), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2802), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2802), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2802), + [anon_sym_RPAREN] = ACTIONS(2802), + [anon_sym_GT2] = ACTIONS(2804), + [anon_sym_DASH2] = ACTIONS(2802), + [anon_sym_LBRACE] = ACTIONS(2802), + [anon_sym_STAR2] = ACTIONS(2804), + [anon_sym_and2] = ACTIONS(2802), + [anon_sym_xor2] = ACTIONS(2802), + [anon_sym_or2] = ACTIONS(2802), + [anon_sym_not_DASHin2] = ACTIONS(2802), + [anon_sym_has2] = ACTIONS(2802), + [anon_sym_not_DASHhas2] = ACTIONS(2802), + [anon_sym_starts_DASHwith2] = ACTIONS(2802), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2802), + [anon_sym_ends_DASHwith2] = ACTIONS(2802), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2802), + [anon_sym_EQ_EQ2] = ACTIONS(2802), + [anon_sym_BANG_EQ2] = ACTIONS(2802), + [anon_sym_LT2] = ACTIONS(2804), + [anon_sym_LT_EQ2] = ACTIONS(2802), + [anon_sym_GT_EQ2] = ACTIONS(2802), + [anon_sym_EQ_TILDE2] = ACTIONS(2802), + [anon_sym_BANG_TILDE2] = ACTIONS(2802), + [anon_sym_like2] = ACTIONS(2802), + [anon_sym_not_DASHlike2] = ACTIONS(2802), + [anon_sym_STAR_STAR2] = ACTIONS(2802), + [anon_sym_PLUS_PLUS2] = ACTIONS(2802), + [anon_sym_SLASH2] = ACTIONS(2804), + [anon_sym_mod2] = ACTIONS(2802), + [anon_sym_SLASH_SLASH2] = ACTIONS(2802), + [anon_sym_PLUS2] = ACTIONS(2804), + [anon_sym_bit_DASHshl2] = ACTIONS(2802), + [anon_sym_bit_DASHshr2] = ACTIONS(2802), + [anon_sym_bit_DASHand2] = ACTIONS(2802), + [anon_sym_bit_DASHxor2] = ACTIONS(2802), + [anon_sym_bit_DASHor2] = ACTIONS(2802), + [anon_sym_err_GT] = ACTIONS(2804), + [anon_sym_out_GT] = ACTIONS(2804), + [anon_sym_e_GT] = ACTIONS(2804), + [anon_sym_o_GT] = ACTIONS(2804), + [anon_sym_err_PLUSout_GT] = ACTIONS(2804), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2804), + [anon_sym_o_PLUSe_GT] = ACTIONS(2804), + [anon_sym_e_PLUSo_GT] = ACTIONS(2804), + [anon_sym_err_GT_GT] = ACTIONS(2802), + [anon_sym_out_GT_GT] = ACTIONS(2802), + [anon_sym_e_GT_GT] = ACTIONS(2802), + [anon_sym_o_GT_GT] = ACTIONS(2802), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2802), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2802), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2802), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2802), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1090)] = { - [aux_sym__repeat_newline] = STATE(1107), + [aux_sym__repeat_newline] = STATE(1125), [sym_comment] = STATE(1090), - [anon_sym_in] = ACTIONS(2442), - [sym__newline] = ACTIONS(2442), - [anon_sym_SEMI] = ACTIONS(2442), - [anon_sym_PIPE] = ACTIONS(2442), - [anon_sym_err_GT_PIPE] = ACTIONS(2442), - [anon_sym_out_GT_PIPE] = ACTIONS(2442), - [anon_sym_e_GT_PIPE] = ACTIONS(2442), - [anon_sym_o_GT_PIPE] = ACTIONS(2442), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2442), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2442), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2442), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2442), - [anon_sym_RPAREN] = ACTIONS(2442), - [anon_sym_GT2] = ACTIONS(2444), - [anon_sym_DASH2] = ACTIONS(2442), - [anon_sym_LBRACE] = ACTIONS(2442), - [anon_sym_STAR2] = ACTIONS(2444), - [anon_sym_and2] = ACTIONS(2442), - [anon_sym_xor2] = ACTIONS(2442), - [anon_sym_or2] = ACTIONS(2442), - [anon_sym_not_DASHin2] = ACTIONS(2442), - [anon_sym_has2] = ACTIONS(2442), - [anon_sym_not_DASHhas2] = ACTIONS(2442), - [anon_sym_starts_DASHwith2] = ACTIONS(2442), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2442), - [anon_sym_ends_DASHwith2] = ACTIONS(2442), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2442), - [anon_sym_EQ_EQ2] = ACTIONS(2442), - [anon_sym_BANG_EQ2] = ACTIONS(2442), - [anon_sym_LT2] = ACTIONS(2444), - [anon_sym_LT_EQ2] = ACTIONS(2442), - [anon_sym_GT_EQ2] = ACTIONS(2442), - [anon_sym_EQ_TILDE2] = ACTIONS(2442), - [anon_sym_BANG_TILDE2] = ACTIONS(2442), - [anon_sym_like2] = ACTIONS(2442), - [anon_sym_not_DASHlike2] = ACTIONS(2442), - [anon_sym_STAR_STAR2] = ACTIONS(2442), - [anon_sym_PLUS_PLUS2] = ACTIONS(2442), - [anon_sym_SLASH2] = ACTIONS(2444), - [anon_sym_mod2] = ACTIONS(2442), - [anon_sym_SLASH_SLASH2] = ACTIONS(2442), - [anon_sym_PLUS2] = ACTIONS(2444), - [anon_sym_bit_DASHshl2] = ACTIONS(2442), - [anon_sym_bit_DASHshr2] = ACTIONS(2442), - [anon_sym_bit_DASHand2] = ACTIONS(2442), - [anon_sym_bit_DASHxor2] = ACTIONS(2442), - [anon_sym_bit_DASHor2] = ACTIONS(2442), - [anon_sym_err_GT] = ACTIONS(2444), - [anon_sym_out_GT] = ACTIONS(2444), - [anon_sym_e_GT] = ACTIONS(2444), - [anon_sym_o_GT] = ACTIONS(2444), - [anon_sym_err_PLUSout_GT] = ACTIONS(2444), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2444), - [anon_sym_o_PLUSe_GT] = ACTIONS(2444), - [anon_sym_e_PLUSo_GT] = ACTIONS(2444), - [anon_sym_err_GT_GT] = ACTIONS(2442), - [anon_sym_out_GT_GT] = ACTIONS(2442), - [anon_sym_e_GT_GT] = ACTIONS(2442), - [anon_sym_o_GT_GT] = ACTIONS(2442), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2442), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2442), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2442), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2442), + [anon_sym_in] = ACTIONS(2350), + [sym__newline] = ACTIONS(2350), + [anon_sym_SEMI] = ACTIONS(2350), + [anon_sym_PIPE] = ACTIONS(2350), + [anon_sym_err_GT_PIPE] = ACTIONS(2350), + [anon_sym_out_GT_PIPE] = ACTIONS(2350), + [anon_sym_e_GT_PIPE] = ACTIONS(2350), + [anon_sym_o_GT_PIPE] = ACTIONS(2350), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2350), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2350), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2350), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2350), + [anon_sym_RPAREN] = ACTIONS(2350), + [anon_sym_GT2] = ACTIONS(2352), + [anon_sym_DASH2] = ACTIONS(2350), + [anon_sym_LBRACE] = ACTIONS(2350), + [anon_sym_STAR2] = ACTIONS(2352), + [anon_sym_and2] = ACTIONS(2350), + [anon_sym_xor2] = ACTIONS(2350), + [anon_sym_or2] = ACTIONS(2350), + [anon_sym_not_DASHin2] = ACTIONS(2350), + [anon_sym_has2] = ACTIONS(2350), + [anon_sym_not_DASHhas2] = ACTIONS(2350), + [anon_sym_starts_DASHwith2] = ACTIONS(2350), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2350), + [anon_sym_ends_DASHwith2] = ACTIONS(2350), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2350), + [anon_sym_EQ_EQ2] = ACTIONS(2350), + [anon_sym_BANG_EQ2] = ACTIONS(2350), + [anon_sym_LT2] = ACTIONS(2352), + [anon_sym_LT_EQ2] = ACTIONS(2350), + [anon_sym_GT_EQ2] = ACTIONS(2350), + [anon_sym_EQ_TILDE2] = ACTIONS(2350), + [anon_sym_BANG_TILDE2] = ACTIONS(2350), + [anon_sym_like2] = ACTIONS(2350), + [anon_sym_not_DASHlike2] = ACTIONS(2350), + [anon_sym_STAR_STAR2] = ACTIONS(2350), + [anon_sym_PLUS_PLUS2] = ACTIONS(2350), + [anon_sym_SLASH2] = ACTIONS(2352), + [anon_sym_mod2] = ACTIONS(2350), + [anon_sym_SLASH_SLASH2] = ACTIONS(2350), + [anon_sym_PLUS2] = ACTIONS(2352), + [anon_sym_bit_DASHshl2] = ACTIONS(2350), + [anon_sym_bit_DASHshr2] = ACTIONS(2350), + [anon_sym_bit_DASHand2] = ACTIONS(2350), + [anon_sym_bit_DASHxor2] = ACTIONS(2350), + [anon_sym_bit_DASHor2] = ACTIONS(2350), + [anon_sym_err_GT] = ACTIONS(2352), + [anon_sym_out_GT] = ACTIONS(2352), + [anon_sym_e_GT] = ACTIONS(2352), + [anon_sym_o_GT] = ACTIONS(2352), + [anon_sym_err_PLUSout_GT] = ACTIONS(2352), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2352), + [anon_sym_o_PLUSe_GT] = ACTIONS(2352), + [anon_sym_e_PLUSo_GT] = ACTIONS(2352), + [anon_sym_err_GT_GT] = ACTIONS(2350), + [anon_sym_out_GT_GT] = ACTIONS(2350), + [anon_sym_e_GT_GT] = ACTIONS(2350), + [anon_sym_o_GT_GT] = ACTIONS(2350), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2350), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2350), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2350), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2350), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1091)] = { - [aux_sym__repeat_newline] = STATE(527), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1091), - [anon_sym_in] = ACTIONS(2742), - [sym__newline] = ACTIONS(2742), - [anon_sym_SEMI] = 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_RPAREN] = ACTIONS(2742), - [anon_sym_GT2] = ACTIONS(2744), - [anon_sym_DASH2] = ACTIONS(2742), - [anon_sym_LBRACE] = ACTIONS(2742), - [anon_sym_STAR2] = ACTIONS(2744), - [anon_sym_and2] = ACTIONS(2742), - [anon_sym_xor2] = ACTIONS(2742), - [anon_sym_or2] = ACTIONS(2742), - [anon_sym_not_DASHin2] = ACTIONS(2742), - [anon_sym_has2] = ACTIONS(2742), - [anon_sym_not_DASHhas2] = ACTIONS(2742), - [anon_sym_starts_DASHwith2] = ACTIONS(2742), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2742), - [anon_sym_ends_DASHwith2] = ACTIONS(2742), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2742), - [anon_sym_EQ_EQ2] = ACTIONS(2742), - [anon_sym_BANG_EQ2] = ACTIONS(2742), - [anon_sym_LT2] = ACTIONS(2744), - [anon_sym_LT_EQ2] = ACTIONS(2742), - [anon_sym_GT_EQ2] = ACTIONS(2742), - [anon_sym_EQ_TILDE2] = ACTIONS(2742), - [anon_sym_BANG_TILDE2] = ACTIONS(2742), - [anon_sym_like2] = ACTIONS(2742), - [anon_sym_not_DASHlike2] = ACTIONS(2742), - [anon_sym_STAR_STAR2] = ACTIONS(2742), - [anon_sym_PLUS_PLUS2] = ACTIONS(2742), - [anon_sym_SLASH2] = ACTIONS(2744), - [anon_sym_mod2] = ACTIONS(2742), - [anon_sym_SLASH_SLASH2] = ACTIONS(2742), - [anon_sym_PLUS2] = ACTIONS(2744), - [anon_sym_bit_DASHshl2] = ACTIONS(2742), - [anon_sym_bit_DASHshr2] = ACTIONS(2742), - [anon_sym_bit_DASHand2] = ACTIONS(2742), - [anon_sym_bit_DASHxor2] = ACTIONS(2742), - [anon_sym_bit_DASHor2] = ACTIONS(2742), - [anon_sym_err_GT] = ACTIONS(2744), - [anon_sym_out_GT] = ACTIONS(2744), - [anon_sym_e_GT] = ACTIONS(2744), - [anon_sym_o_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT] = ACTIONS(2744), - [anon_sym_err_GT_GT] = ACTIONS(2742), - [anon_sym_out_GT_GT] = ACTIONS(2742), - [anon_sym_e_GT_GT] = ACTIONS(2742), - [anon_sym_o_GT_GT] = ACTIONS(2742), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2742), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2742), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2742), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2742), + [anon_sym_in] = ACTIONS(2802), + [sym__newline] = ACTIONS(2802), + [anon_sym_SEMI] = ACTIONS(2802), + [anon_sym_PIPE] = ACTIONS(2802), + [anon_sym_err_GT_PIPE] = ACTIONS(2802), + [anon_sym_out_GT_PIPE] = ACTIONS(2802), + [anon_sym_e_GT_PIPE] = ACTIONS(2802), + [anon_sym_o_GT_PIPE] = ACTIONS(2802), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2802), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2802), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2802), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2802), + [anon_sym_RPAREN] = ACTIONS(2802), + [anon_sym_GT2] = ACTIONS(2804), + [anon_sym_DASH2] = ACTIONS(2802), + [anon_sym_LBRACE] = ACTIONS(2802), + [anon_sym_STAR2] = ACTIONS(2804), + [anon_sym_and2] = ACTIONS(2802), + [anon_sym_xor2] = ACTIONS(2802), + [anon_sym_or2] = ACTIONS(2802), + [anon_sym_not_DASHin2] = ACTIONS(2802), + [anon_sym_has2] = ACTIONS(2802), + [anon_sym_not_DASHhas2] = ACTIONS(2802), + [anon_sym_starts_DASHwith2] = ACTIONS(2802), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2802), + [anon_sym_ends_DASHwith2] = ACTIONS(2802), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2802), + [anon_sym_EQ_EQ2] = ACTIONS(2802), + [anon_sym_BANG_EQ2] = ACTIONS(2802), + [anon_sym_LT2] = ACTIONS(2804), + [anon_sym_LT_EQ2] = ACTIONS(2802), + [anon_sym_GT_EQ2] = ACTIONS(2802), + [anon_sym_EQ_TILDE2] = ACTIONS(2802), + [anon_sym_BANG_TILDE2] = ACTIONS(2802), + [anon_sym_like2] = ACTIONS(2802), + [anon_sym_not_DASHlike2] = ACTIONS(2802), + [anon_sym_STAR_STAR2] = ACTIONS(2802), + [anon_sym_PLUS_PLUS2] = ACTIONS(2802), + [anon_sym_SLASH2] = ACTIONS(2804), + [anon_sym_mod2] = ACTIONS(2802), + [anon_sym_SLASH_SLASH2] = ACTIONS(2802), + [anon_sym_PLUS2] = ACTIONS(2804), + [anon_sym_bit_DASHshl2] = ACTIONS(2802), + [anon_sym_bit_DASHshr2] = ACTIONS(2802), + [anon_sym_bit_DASHand2] = ACTIONS(2802), + [anon_sym_bit_DASHxor2] = ACTIONS(2802), + [anon_sym_bit_DASHor2] = ACTIONS(2802), + [anon_sym_err_GT] = ACTIONS(2804), + [anon_sym_out_GT] = ACTIONS(2804), + [anon_sym_e_GT] = ACTIONS(2804), + [anon_sym_o_GT] = ACTIONS(2804), + [anon_sym_err_PLUSout_GT] = ACTIONS(2804), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2804), + [anon_sym_o_PLUSe_GT] = ACTIONS(2804), + [anon_sym_e_PLUSo_GT] = ACTIONS(2804), + [anon_sym_err_GT_GT] = ACTIONS(2802), + [anon_sym_out_GT_GT] = ACTIONS(2802), + [anon_sym_e_GT_GT] = ACTIONS(2802), + [anon_sym_o_GT_GT] = ACTIONS(2802), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2802), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2802), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2802), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2802), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1092)] = { - [aux_sym__repeat_newline] = STATE(1001), + [aux_sym__repeat_newline] = STATE(1126), [sym_comment] = STATE(1092), - [anon_sym_in] = ACTIONS(2302), - [sym__newline] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_PIPE] = ACTIONS(2302), - [anon_sym_err_GT_PIPE] = ACTIONS(2302), - [anon_sym_out_GT_PIPE] = ACTIONS(2302), - [anon_sym_e_GT_PIPE] = ACTIONS(2302), - [anon_sym_o_GT_PIPE] = ACTIONS(2302), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2302), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2302), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2302), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2302), - [anon_sym_RPAREN] = ACTIONS(2302), - [anon_sym_GT2] = ACTIONS(2304), - [anon_sym_DASH2] = ACTIONS(2302), - [anon_sym_LBRACE] = ACTIONS(2302), - [anon_sym_STAR2] = ACTIONS(2304), - [anon_sym_and2] = ACTIONS(2302), - [anon_sym_xor2] = ACTIONS(2302), - [anon_sym_or2] = ACTIONS(2302), - [anon_sym_not_DASHin2] = ACTIONS(2302), - [anon_sym_has2] = ACTIONS(2302), - [anon_sym_not_DASHhas2] = ACTIONS(2302), - [anon_sym_starts_DASHwith2] = ACTIONS(2302), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2302), - [anon_sym_ends_DASHwith2] = ACTIONS(2302), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2302), - [anon_sym_EQ_EQ2] = ACTIONS(2302), - [anon_sym_BANG_EQ2] = ACTIONS(2302), - [anon_sym_LT2] = ACTIONS(2304), - [anon_sym_LT_EQ2] = ACTIONS(2302), - [anon_sym_GT_EQ2] = ACTIONS(2302), - [anon_sym_EQ_TILDE2] = ACTIONS(2302), - [anon_sym_BANG_TILDE2] = ACTIONS(2302), - [anon_sym_like2] = ACTIONS(2302), - [anon_sym_not_DASHlike2] = ACTIONS(2302), - [anon_sym_STAR_STAR2] = ACTIONS(2302), - [anon_sym_PLUS_PLUS2] = ACTIONS(2302), - [anon_sym_SLASH2] = ACTIONS(2304), - [anon_sym_mod2] = ACTIONS(2302), - [anon_sym_SLASH_SLASH2] = ACTIONS(2302), - [anon_sym_PLUS2] = ACTIONS(2304), - [anon_sym_bit_DASHshl2] = ACTIONS(2302), - [anon_sym_bit_DASHshr2] = ACTIONS(2302), - [anon_sym_bit_DASHand2] = ACTIONS(2302), - [anon_sym_bit_DASHxor2] = ACTIONS(2302), - [anon_sym_bit_DASHor2] = ACTIONS(2302), - [anon_sym_err_GT] = ACTIONS(2304), - [anon_sym_out_GT] = ACTIONS(2304), - [anon_sym_e_GT] = ACTIONS(2304), - [anon_sym_o_GT] = ACTIONS(2304), - [anon_sym_err_PLUSout_GT] = ACTIONS(2304), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2304), - [anon_sym_o_PLUSe_GT] = ACTIONS(2304), - [anon_sym_e_PLUSo_GT] = ACTIONS(2304), - [anon_sym_err_GT_GT] = ACTIONS(2302), - [anon_sym_out_GT_GT] = ACTIONS(2302), - [anon_sym_e_GT_GT] = ACTIONS(2302), - [anon_sym_o_GT_GT] = ACTIONS(2302), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2302), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2302), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2302), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2302), + [anon_sym_in] = ACTIONS(2350), + [sym__newline] = ACTIONS(2350), + [anon_sym_SEMI] = ACTIONS(2350), + [anon_sym_PIPE] = ACTIONS(2350), + [anon_sym_err_GT_PIPE] = ACTIONS(2350), + [anon_sym_out_GT_PIPE] = ACTIONS(2350), + [anon_sym_e_GT_PIPE] = ACTIONS(2350), + [anon_sym_o_GT_PIPE] = ACTIONS(2350), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2350), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2350), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2350), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2350), + [anon_sym_RPAREN] = ACTIONS(2350), + [anon_sym_GT2] = ACTIONS(2352), + [anon_sym_DASH2] = ACTIONS(2350), + [anon_sym_LBRACE] = ACTIONS(2350), + [anon_sym_STAR2] = ACTIONS(2352), + [anon_sym_and2] = ACTIONS(2350), + [anon_sym_xor2] = ACTIONS(2350), + [anon_sym_or2] = ACTIONS(2350), + [anon_sym_not_DASHin2] = ACTIONS(2350), + [anon_sym_has2] = ACTIONS(2350), + [anon_sym_not_DASHhas2] = ACTIONS(2350), + [anon_sym_starts_DASHwith2] = ACTIONS(2350), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2350), + [anon_sym_ends_DASHwith2] = ACTIONS(2350), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2350), + [anon_sym_EQ_EQ2] = ACTIONS(2350), + [anon_sym_BANG_EQ2] = ACTIONS(2350), + [anon_sym_LT2] = ACTIONS(2352), + [anon_sym_LT_EQ2] = ACTIONS(2350), + [anon_sym_GT_EQ2] = ACTIONS(2350), + [anon_sym_EQ_TILDE2] = ACTIONS(2350), + [anon_sym_BANG_TILDE2] = ACTIONS(2350), + [anon_sym_like2] = ACTIONS(2350), + [anon_sym_not_DASHlike2] = ACTIONS(2350), + [anon_sym_STAR_STAR2] = ACTIONS(2350), + [anon_sym_PLUS_PLUS2] = ACTIONS(2350), + [anon_sym_SLASH2] = ACTIONS(2352), + [anon_sym_mod2] = ACTIONS(2350), + [anon_sym_SLASH_SLASH2] = ACTIONS(2350), + [anon_sym_PLUS2] = ACTIONS(2352), + [anon_sym_bit_DASHshl2] = ACTIONS(2350), + [anon_sym_bit_DASHshr2] = ACTIONS(2350), + [anon_sym_bit_DASHand2] = ACTIONS(2350), + [anon_sym_bit_DASHxor2] = ACTIONS(2350), + [anon_sym_bit_DASHor2] = ACTIONS(2350), + [anon_sym_err_GT] = ACTIONS(2352), + [anon_sym_out_GT] = ACTIONS(2352), + [anon_sym_e_GT] = ACTIONS(2352), + [anon_sym_o_GT] = ACTIONS(2352), + [anon_sym_err_PLUSout_GT] = ACTIONS(2352), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2352), + [anon_sym_o_PLUSe_GT] = ACTIONS(2352), + [anon_sym_e_PLUSo_GT] = ACTIONS(2352), + [anon_sym_err_GT_GT] = ACTIONS(2350), + [anon_sym_out_GT_GT] = ACTIONS(2350), + [anon_sym_e_GT_GT] = ACTIONS(2350), + [anon_sym_o_GT_GT] = ACTIONS(2350), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2350), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2350), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2350), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2350), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1093)] = { - [aux_sym__repeat_newline] = STATE(1004), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1093), - [anon_sym_in] = ACTIONS(2754), - [sym__newline] = ACTIONS(2754), - [anon_sym_SEMI] = ACTIONS(2754), - [anon_sym_PIPE] = ACTIONS(2754), - [anon_sym_err_GT_PIPE] = ACTIONS(2754), - [anon_sym_out_GT_PIPE] = ACTIONS(2754), - [anon_sym_e_GT_PIPE] = ACTIONS(2754), - [anon_sym_o_GT_PIPE] = ACTIONS(2754), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2754), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2754), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2754), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2754), - [anon_sym_RPAREN] = ACTIONS(2754), - [anon_sym_GT2] = ACTIONS(2756), - [anon_sym_DASH2] = ACTIONS(2754), - [anon_sym_LBRACE] = ACTIONS(2754), - [anon_sym_STAR2] = ACTIONS(2756), - [anon_sym_and2] = ACTIONS(2754), - [anon_sym_xor2] = ACTIONS(2754), - [anon_sym_or2] = ACTIONS(2754), - [anon_sym_not_DASHin2] = ACTIONS(2754), - [anon_sym_has2] = ACTIONS(2754), - [anon_sym_not_DASHhas2] = ACTIONS(2754), - [anon_sym_starts_DASHwith2] = ACTIONS(2754), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2754), - [anon_sym_ends_DASHwith2] = ACTIONS(2754), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2754), - [anon_sym_EQ_EQ2] = ACTIONS(2754), - [anon_sym_BANG_EQ2] = ACTIONS(2754), - [anon_sym_LT2] = ACTIONS(2756), - [anon_sym_LT_EQ2] = ACTIONS(2754), - [anon_sym_GT_EQ2] = ACTIONS(2754), - [anon_sym_EQ_TILDE2] = ACTIONS(2754), - [anon_sym_BANG_TILDE2] = ACTIONS(2754), - [anon_sym_like2] = ACTIONS(2754), - [anon_sym_not_DASHlike2] = ACTIONS(2754), - [anon_sym_STAR_STAR2] = ACTIONS(2754), - [anon_sym_PLUS_PLUS2] = ACTIONS(2754), - [anon_sym_SLASH2] = ACTIONS(2756), - [anon_sym_mod2] = ACTIONS(2754), - [anon_sym_SLASH_SLASH2] = ACTIONS(2754), - [anon_sym_PLUS2] = ACTIONS(2756), - [anon_sym_bit_DASHshl2] = ACTIONS(2754), - [anon_sym_bit_DASHshr2] = ACTIONS(2754), - [anon_sym_bit_DASHand2] = ACTIONS(2754), - [anon_sym_bit_DASHxor2] = ACTIONS(2754), - [anon_sym_bit_DASHor2] = ACTIONS(2754), - [anon_sym_err_GT] = ACTIONS(2756), - [anon_sym_out_GT] = ACTIONS(2756), - [anon_sym_e_GT] = ACTIONS(2756), - [anon_sym_o_GT] = ACTIONS(2756), - [anon_sym_err_PLUSout_GT] = ACTIONS(2756), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2756), - [anon_sym_o_PLUSe_GT] = ACTIONS(2756), - [anon_sym_e_PLUSo_GT] = ACTIONS(2756), - [anon_sym_err_GT_GT] = ACTIONS(2754), - [anon_sym_out_GT_GT] = ACTIONS(2754), - [anon_sym_e_GT_GT] = ACTIONS(2754), - [anon_sym_o_GT_GT] = ACTIONS(2754), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2754), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2754), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2754), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2754), + [anon_sym_in] = ACTIONS(2802), + [sym__newline] = ACTIONS(2802), + [anon_sym_SEMI] = ACTIONS(2802), + [anon_sym_PIPE] = ACTIONS(2802), + [anon_sym_err_GT_PIPE] = ACTIONS(2802), + [anon_sym_out_GT_PIPE] = ACTIONS(2802), + [anon_sym_e_GT_PIPE] = ACTIONS(2802), + [anon_sym_o_GT_PIPE] = ACTIONS(2802), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2802), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2802), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2802), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2802), + [anon_sym_RPAREN] = ACTIONS(2802), + [anon_sym_GT2] = ACTIONS(2804), + [anon_sym_DASH2] = ACTIONS(2802), + [anon_sym_LBRACE] = ACTIONS(2802), + [anon_sym_STAR2] = ACTIONS(2804), + [anon_sym_and2] = ACTIONS(2802), + [anon_sym_xor2] = ACTIONS(2802), + [anon_sym_or2] = ACTIONS(2802), + [anon_sym_not_DASHin2] = ACTIONS(2802), + [anon_sym_has2] = ACTIONS(2802), + [anon_sym_not_DASHhas2] = ACTIONS(2802), + [anon_sym_starts_DASHwith2] = ACTIONS(2802), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2802), + [anon_sym_ends_DASHwith2] = ACTIONS(2802), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2802), + [anon_sym_EQ_EQ2] = ACTIONS(2802), + [anon_sym_BANG_EQ2] = ACTIONS(2802), + [anon_sym_LT2] = ACTIONS(2804), + [anon_sym_LT_EQ2] = ACTIONS(2802), + [anon_sym_GT_EQ2] = ACTIONS(2802), + [anon_sym_EQ_TILDE2] = ACTIONS(2802), + [anon_sym_BANG_TILDE2] = ACTIONS(2802), + [anon_sym_like2] = ACTIONS(2802), + [anon_sym_not_DASHlike2] = ACTIONS(2802), + [anon_sym_STAR_STAR2] = ACTIONS(2802), + [anon_sym_PLUS_PLUS2] = ACTIONS(2802), + [anon_sym_SLASH2] = ACTIONS(2804), + [anon_sym_mod2] = ACTIONS(2802), + [anon_sym_SLASH_SLASH2] = ACTIONS(2802), + [anon_sym_PLUS2] = ACTIONS(2804), + [anon_sym_bit_DASHshl2] = ACTIONS(2802), + [anon_sym_bit_DASHshr2] = ACTIONS(2802), + [anon_sym_bit_DASHand2] = ACTIONS(2802), + [anon_sym_bit_DASHxor2] = ACTIONS(2802), + [anon_sym_bit_DASHor2] = ACTIONS(2802), + [anon_sym_err_GT] = ACTIONS(2804), + [anon_sym_out_GT] = ACTIONS(2804), + [anon_sym_e_GT] = ACTIONS(2804), + [anon_sym_o_GT] = ACTIONS(2804), + [anon_sym_err_PLUSout_GT] = ACTIONS(2804), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2804), + [anon_sym_o_PLUSe_GT] = ACTIONS(2804), + [anon_sym_e_PLUSo_GT] = ACTIONS(2804), + [anon_sym_err_GT_GT] = ACTIONS(2802), + [anon_sym_out_GT_GT] = ACTIONS(2802), + [anon_sym_e_GT_GT] = ACTIONS(2802), + [anon_sym_o_GT_GT] = ACTIONS(2802), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2802), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2802), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2802), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2802), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1094)] = { - [aux_sym__repeat_newline] = STATE(527), + [aux_sym__repeat_newline] = STATE(1091), [sym_comment] = STATE(1094), - [anon_sym_in] = ACTIONS(2758), - [sym__newline] = ACTIONS(2758), - [anon_sym_SEMI] = ACTIONS(2758), - [anon_sym_PIPE] = ACTIONS(2758), - [anon_sym_err_GT_PIPE] = ACTIONS(2758), - [anon_sym_out_GT_PIPE] = ACTIONS(2758), - [anon_sym_e_GT_PIPE] = ACTIONS(2758), - [anon_sym_o_GT_PIPE] = ACTIONS(2758), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2758), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2758), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2758), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2758), - [anon_sym_RPAREN] = ACTIONS(2758), - [anon_sym_GT2] = ACTIONS(2760), - [anon_sym_DASH2] = ACTIONS(2758), - [anon_sym_LBRACE] = ACTIONS(2758), - [anon_sym_STAR2] = ACTIONS(2760), - [anon_sym_and2] = ACTIONS(2758), - [anon_sym_xor2] = ACTIONS(2758), - [anon_sym_or2] = ACTIONS(2758), - [anon_sym_not_DASHin2] = ACTIONS(2758), - [anon_sym_has2] = ACTIONS(2758), - [anon_sym_not_DASHhas2] = ACTIONS(2758), - [anon_sym_starts_DASHwith2] = ACTIONS(2758), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2758), - [anon_sym_ends_DASHwith2] = ACTIONS(2758), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2758), - [anon_sym_EQ_EQ2] = ACTIONS(2758), - [anon_sym_BANG_EQ2] = ACTIONS(2758), - [anon_sym_LT2] = ACTIONS(2760), - [anon_sym_LT_EQ2] = ACTIONS(2758), - [anon_sym_GT_EQ2] = ACTIONS(2758), - [anon_sym_EQ_TILDE2] = ACTIONS(2758), - [anon_sym_BANG_TILDE2] = ACTIONS(2758), - [anon_sym_like2] = ACTIONS(2758), - [anon_sym_not_DASHlike2] = ACTIONS(2758), - [anon_sym_STAR_STAR2] = ACTIONS(2758), - [anon_sym_PLUS_PLUS2] = ACTIONS(2758), - [anon_sym_SLASH2] = ACTIONS(2760), - [anon_sym_mod2] = ACTIONS(2758), - [anon_sym_SLASH_SLASH2] = ACTIONS(2758), - [anon_sym_PLUS2] = ACTIONS(2760), - [anon_sym_bit_DASHshl2] = ACTIONS(2758), - [anon_sym_bit_DASHshr2] = ACTIONS(2758), - [anon_sym_bit_DASHand2] = ACTIONS(2758), - [anon_sym_bit_DASHxor2] = ACTIONS(2758), - [anon_sym_bit_DASHor2] = ACTIONS(2758), - [anon_sym_err_GT] = ACTIONS(2760), - [anon_sym_out_GT] = ACTIONS(2760), - [anon_sym_e_GT] = ACTIONS(2760), - [anon_sym_o_GT] = ACTIONS(2760), - [anon_sym_err_PLUSout_GT] = ACTIONS(2760), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2760), - [anon_sym_o_PLUSe_GT] = ACTIONS(2760), - [anon_sym_e_PLUSo_GT] = ACTIONS(2760), - [anon_sym_err_GT_GT] = ACTIONS(2758), - [anon_sym_out_GT_GT] = ACTIONS(2758), - [anon_sym_e_GT_GT] = ACTIONS(2758), - [anon_sym_o_GT_GT] = ACTIONS(2758), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2758), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2758), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2758), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2758), + [anon_sym_in] = ACTIONS(2381), + [sym__newline] = ACTIONS(2381), + [anon_sym_SEMI] = ACTIONS(2381), + [anon_sym_PIPE] = ACTIONS(2381), + [anon_sym_err_GT_PIPE] = ACTIONS(2381), + [anon_sym_out_GT_PIPE] = ACTIONS(2381), + [anon_sym_e_GT_PIPE] = ACTIONS(2381), + [anon_sym_o_GT_PIPE] = ACTIONS(2381), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2381), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2381), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2381), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2381), + [anon_sym_RPAREN] = ACTIONS(2381), + [anon_sym_GT2] = ACTIONS(2383), + [anon_sym_DASH2] = ACTIONS(2381), + [anon_sym_LBRACE] = ACTIONS(2381), + [anon_sym_STAR2] = ACTIONS(2383), + [anon_sym_and2] = ACTIONS(2381), + [anon_sym_xor2] = ACTIONS(2381), + [anon_sym_or2] = ACTIONS(2381), + [anon_sym_not_DASHin2] = ACTIONS(2381), + [anon_sym_has2] = ACTIONS(2381), + [anon_sym_not_DASHhas2] = ACTIONS(2381), + [anon_sym_starts_DASHwith2] = ACTIONS(2381), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2381), + [anon_sym_ends_DASHwith2] = ACTIONS(2381), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2381), + [anon_sym_EQ_EQ2] = ACTIONS(2381), + [anon_sym_BANG_EQ2] = ACTIONS(2381), + [anon_sym_LT2] = ACTIONS(2383), + [anon_sym_LT_EQ2] = ACTIONS(2381), + [anon_sym_GT_EQ2] = ACTIONS(2381), + [anon_sym_EQ_TILDE2] = ACTIONS(2381), + [anon_sym_BANG_TILDE2] = ACTIONS(2381), + [anon_sym_like2] = ACTIONS(2381), + [anon_sym_not_DASHlike2] = ACTIONS(2381), + [anon_sym_STAR_STAR2] = ACTIONS(2381), + [anon_sym_PLUS_PLUS2] = ACTIONS(2381), + [anon_sym_SLASH2] = ACTIONS(2383), + [anon_sym_mod2] = ACTIONS(2381), + [anon_sym_SLASH_SLASH2] = ACTIONS(2381), + [anon_sym_PLUS2] = ACTIONS(2383), + [anon_sym_bit_DASHshl2] = ACTIONS(2381), + [anon_sym_bit_DASHshr2] = ACTIONS(2381), + [anon_sym_bit_DASHand2] = ACTIONS(2381), + [anon_sym_bit_DASHxor2] = ACTIONS(2381), + [anon_sym_bit_DASHor2] = ACTIONS(2381), + [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(2381), + [anon_sym_out_GT_GT] = ACTIONS(2381), + [anon_sym_e_GT_GT] = ACTIONS(2381), + [anon_sym_o_GT_GT] = ACTIONS(2381), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2381), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2381), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2381), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2381), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1095)] = { - [aux_sym__repeat_newline] = STATE(527), + [aux_sym__repeat_newline] = STATE(1065), [sym_comment] = STATE(1095), - [anon_sym_in] = ACTIONS(2758), - [sym__newline] = ACTIONS(2758), - [anon_sym_SEMI] = ACTIONS(2758), - [anon_sym_PIPE] = ACTIONS(2758), - [anon_sym_err_GT_PIPE] = ACTIONS(2758), - [anon_sym_out_GT_PIPE] = ACTIONS(2758), - [anon_sym_e_GT_PIPE] = ACTIONS(2758), - [anon_sym_o_GT_PIPE] = ACTIONS(2758), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2758), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2758), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2758), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2758), - [anon_sym_RPAREN] = ACTIONS(2758), - [anon_sym_GT2] = ACTIONS(2760), - [anon_sym_DASH2] = ACTIONS(2758), - [anon_sym_LBRACE] = ACTIONS(2758), - [anon_sym_STAR2] = ACTIONS(2760), - [anon_sym_and2] = ACTIONS(2758), - [anon_sym_xor2] = ACTIONS(2758), - [anon_sym_or2] = ACTIONS(2758), - [anon_sym_not_DASHin2] = ACTIONS(2758), - [anon_sym_has2] = ACTIONS(2758), - [anon_sym_not_DASHhas2] = ACTIONS(2758), - [anon_sym_starts_DASHwith2] = ACTIONS(2758), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2758), - [anon_sym_ends_DASHwith2] = ACTIONS(2758), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2758), - [anon_sym_EQ_EQ2] = ACTIONS(2758), - [anon_sym_BANG_EQ2] = ACTIONS(2758), - [anon_sym_LT2] = ACTIONS(2760), - [anon_sym_LT_EQ2] = ACTIONS(2758), - [anon_sym_GT_EQ2] = ACTIONS(2758), - [anon_sym_EQ_TILDE2] = ACTIONS(2758), - [anon_sym_BANG_TILDE2] = ACTIONS(2758), - [anon_sym_like2] = ACTIONS(2758), - [anon_sym_not_DASHlike2] = ACTIONS(2758), - [anon_sym_STAR_STAR2] = ACTIONS(2758), - [anon_sym_PLUS_PLUS2] = ACTIONS(2758), - [anon_sym_SLASH2] = ACTIONS(2760), - [anon_sym_mod2] = ACTIONS(2758), - [anon_sym_SLASH_SLASH2] = ACTIONS(2758), - [anon_sym_PLUS2] = ACTIONS(2760), - [anon_sym_bit_DASHshl2] = ACTIONS(2758), - [anon_sym_bit_DASHshr2] = ACTIONS(2758), - [anon_sym_bit_DASHand2] = ACTIONS(2758), - [anon_sym_bit_DASHxor2] = ACTIONS(2758), - [anon_sym_bit_DASHor2] = ACTIONS(2758), - [anon_sym_err_GT] = ACTIONS(2760), - [anon_sym_out_GT] = ACTIONS(2760), - [anon_sym_e_GT] = ACTIONS(2760), - [anon_sym_o_GT] = ACTIONS(2760), - [anon_sym_err_PLUSout_GT] = ACTIONS(2760), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2760), - [anon_sym_o_PLUSe_GT] = ACTIONS(2760), - [anon_sym_e_PLUSo_GT] = ACTIONS(2760), - [anon_sym_err_GT_GT] = ACTIONS(2758), - [anon_sym_out_GT_GT] = ACTIONS(2758), - [anon_sym_e_GT_GT] = ACTIONS(2758), - [anon_sym_o_GT_GT] = ACTIONS(2758), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2758), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2758), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2758), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2758), + [anon_sym_in] = ACTIONS(2541), + [sym__newline] = ACTIONS(2541), + [anon_sym_SEMI] = ACTIONS(2541), + [anon_sym_PIPE] = ACTIONS(2541), + [anon_sym_err_GT_PIPE] = ACTIONS(2541), + [anon_sym_out_GT_PIPE] = ACTIONS(2541), + [anon_sym_e_GT_PIPE] = ACTIONS(2541), + [anon_sym_o_GT_PIPE] = ACTIONS(2541), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2541), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2541), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2541), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2541), + [anon_sym_RPAREN] = ACTIONS(2541), + [anon_sym_GT2] = ACTIONS(2543), + [anon_sym_DASH2] = ACTIONS(2541), + [anon_sym_LBRACE] = ACTIONS(2541), + [anon_sym_STAR2] = ACTIONS(2543), + [anon_sym_and2] = ACTIONS(2541), + [anon_sym_xor2] = ACTIONS(2541), + [anon_sym_or2] = ACTIONS(2541), + [anon_sym_not_DASHin2] = ACTIONS(2541), + [anon_sym_has2] = ACTIONS(2541), + [anon_sym_not_DASHhas2] = ACTIONS(2541), + [anon_sym_starts_DASHwith2] = ACTIONS(2541), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2541), + [anon_sym_ends_DASHwith2] = ACTIONS(2541), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2541), + [anon_sym_EQ_EQ2] = ACTIONS(2541), + [anon_sym_BANG_EQ2] = ACTIONS(2541), + [anon_sym_LT2] = ACTIONS(2543), + [anon_sym_LT_EQ2] = ACTIONS(2541), + [anon_sym_GT_EQ2] = ACTIONS(2541), + [anon_sym_EQ_TILDE2] = ACTIONS(2541), + [anon_sym_BANG_TILDE2] = ACTIONS(2541), + [anon_sym_like2] = ACTIONS(2541), + [anon_sym_not_DASHlike2] = ACTIONS(2541), + [anon_sym_STAR_STAR2] = ACTIONS(2541), + [anon_sym_PLUS_PLUS2] = ACTIONS(2541), + [anon_sym_SLASH2] = ACTIONS(2543), + [anon_sym_mod2] = ACTIONS(2541), + [anon_sym_SLASH_SLASH2] = ACTIONS(2541), + [anon_sym_PLUS2] = ACTIONS(2543), + [anon_sym_bit_DASHshl2] = ACTIONS(2541), + [anon_sym_bit_DASHshr2] = ACTIONS(2541), + [anon_sym_bit_DASHand2] = ACTIONS(2541), + [anon_sym_bit_DASHxor2] = ACTIONS(2541), + [anon_sym_bit_DASHor2] = ACTIONS(2541), + [anon_sym_err_GT] = ACTIONS(2543), + [anon_sym_out_GT] = ACTIONS(2543), + [anon_sym_e_GT] = ACTIONS(2543), + [anon_sym_o_GT] = ACTIONS(2543), + [anon_sym_err_PLUSout_GT] = ACTIONS(2543), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2543), + [anon_sym_o_PLUSe_GT] = ACTIONS(2543), + [anon_sym_e_PLUSo_GT] = ACTIONS(2543), + [anon_sym_err_GT_GT] = ACTIONS(2541), + [anon_sym_out_GT_GT] = ACTIONS(2541), + [anon_sym_e_GT_GT] = ACTIONS(2541), + [anon_sym_o_GT_GT] = ACTIONS(2541), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2541), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2541), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2541), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2541), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1096)] = { - [aux_sym__repeat_newline] = STATE(527), + [aux_sym__repeat_newline] = STATE(1093), [sym_comment] = STATE(1096), - [anon_sym_in] = ACTIONS(2758), - [sym__newline] = ACTIONS(2758), - [anon_sym_SEMI] = ACTIONS(2758), - [anon_sym_PIPE] = ACTIONS(2758), - [anon_sym_err_GT_PIPE] = ACTIONS(2758), - [anon_sym_out_GT_PIPE] = ACTIONS(2758), - [anon_sym_e_GT_PIPE] = ACTIONS(2758), - [anon_sym_o_GT_PIPE] = ACTIONS(2758), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2758), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2758), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2758), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2758), - [anon_sym_RPAREN] = ACTIONS(2758), - [anon_sym_GT2] = ACTIONS(2760), - [anon_sym_DASH2] = ACTIONS(2758), - [anon_sym_LBRACE] = ACTIONS(2758), - [anon_sym_STAR2] = ACTIONS(2760), - [anon_sym_and2] = ACTIONS(2758), - [anon_sym_xor2] = ACTIONS(2758), - [anon_sym_or2] = ACTIONS(2758), - [anon_sym_not_DASHin2] = ACTIONS(2758), - [anon_sym_has2] = ACTIONS(2758), - [anon_sym_not_DASHhas2] = ACTIONS(2758), - [anon_sym_starts_DASHwith2] = ACTIONS(2758), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2758), - [anon_sym_ends_DASHwith2] = ACTIONS(2758), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2758), - [anon_sym_EQ_EQ2] = ACTIONS(2758), - [anon_sym_BANG_EQ2] = ACTIONS(2758), - [anon_sym_LT2] = ACTIONS(2760), - [anon_sym_LT_EQ2] = ACTIONS(2758), - [anon_sym_GT_EQ2] = ACTIONS(2758), - [anon_sym_EQ_TILDE2] = ACTIONS(2758), - [anon_sym_BANG_TILDE2] = ACTIONS(2758), - [anon_sym_like2] = ACTIONS(2758), - [anon_sym_not_DASHlike2] = ACTIONS(2758), - [anon_sym_STAR_STAR2] = ACTIONS(2758), - [anon_sym_PLUS_PLUS2] = ACTIONS(2758), - [anon_sym_SLASH2] = ACTIONS(2760), - [anon_sym_mod2] = ACTIONS(2758), - [anon_sym_SLASH_SLASH2] = ACTIONS(2758), - [anon_sym_PLUS2] = ACTIONS(2760), - [anon_sym_bit_DASHshl2] = ACTIONS(2758), - [anon_sym_bit_DASHshr2] = ACTIONS(2758), - [anon_sym_bit_DASHand2] = ACTIONS(2758), - [anon_sym_bit_DASHxor2] = ACTIONS(2758), - [anon_sym_bit_DASHor2] = ACTIONS(2758), - [anon_sym_err_GT] = ACTIONS(2760), - [anon_sym_out_GT] = ACTIONS(2760), - [anon_sym_e_GT] = ACTIONS(2760), - [anon_sym_o_GT] = ACTIONS(2760), - [anon_sym_err_PLUSout_GT] = ACTIONS(2760), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2760), - [anon_sym_o_PLUSe_GT] = ACTIONS(2760), - [anon_sym_e_PLUSo_GT] = ACTIONS(2760), - [anon_sym_err_GT_GT] = ACTIONS(2758), - [anon_sym_out_GT_GT] = ACTIONS(2758), - [anon_sym_e_GT_GT] = ACTIONS(2758), - [anon_sym_o_GT_GT] = ACTIONS(2758), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2758), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2758), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2758), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2758), + [anon_sym_in] = ACTIONS(2381), + [sym__newline] = ACTIONS(2381), + [anon_sym_SEMI] = ACTIONS(2381), + [anon_sym_PIPE] = ACTIONS(2381), + [anon_sym_err_GT_PIPE] = ACTIONS(2381), + [anon_sym_out_GT_PIPE] = ACTIONS(2381), + [anon_sym_e_GT_PIPE] = ACTIONS(2381), + [anon_sym_o_GT_PIPE] = ACTIONS(2381), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2381), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2381), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2381), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2381), + [anon_sym_RPAREN] = ACTIONS(2381), + [anon_sym_GT2] = ACTIONS(2383), + [anon_sym_DASH2] = ACTIONS(2381), + [anon_sym_LBRACE] = ACTIONS(2381), + [anon_sym_STAR2] = ACTIONS(2383), + [anon_sym_and2] = ACTIONS(2381), + [anon_sym_xor2] = ACTIONS(2381), + [anon_sym_or2] = ACTIONS(2381), + [anon_sym_not_DASHin2] = ACTIONS(2381), + [anon_sym_has2] = ACTIONS(2381), + [anon_sym_not_DASHhas2] = ACTIONS(2381), + [anon_sym_starts_DASHwith2] = ACTIONS(2381), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2381), + [anon_sym_ends_DASHwith2] = ACTIONS(2381), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2381), + [anon_sym_EQ_EQ2] = ACTIONS(2381), + [anon_sym_BANG_EQ2] = ACTIONS(2381), + [anon_sym_LT2] = ACTIONS(2383), + [anon_sym_LT_EQ2] = ACTIONS(2381), + [anon_sym_GT_EQ2] = ACTIONS(2381), + [anon_sym_EQ_TILDE2] = ACTIONS(2381), + [anon_sym_BANG_TILDE2] = ACTIONS(2381), + [anon_sym_like2] = ACTIONS(2381), + [anon_sym_not_DASHlike2] = ACTIONS(2381), + [anon_sym_STAR_STAR2] = ACTIONS(2381), + [anon_sym_PLUS_PLUS2] = ACTIONS(2381), + [anon_sym_SLASH2] = ACTIONS(2383), + [anon_sym_mod2] = ACTIONS(2381), + [anon_sym_SLASH_SLASH2] = ACTIONS(2381), + [anon_sym_PLUS2] = ACTIONS(2383), + [anon_sym_bit_DASHshl2] = ACTIONS(2381), + [anon_sym_bit_DASHshr2] = ACTIONS(2381), + [anon_sym_bit_DASHand2] = ACTIONS(2381), + [anon_sym_bit_DASHxor2] = ACTIONS(2381), + [anon_sym_bit_DASHor2] = ACTIONS(2381), + [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(2381), + [anon_sym_out_GT_GT] = ACTIONS(2381), + [anon_sym_e_GT_GT] = ACTIONS(2381), + [anon_sym_o_GT_GT] = ACTIONS(2381), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2381), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2381), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2381), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2381), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1097)] = { - [aux_sym__repeat_newline] = STATE(527), + [aux_sym__repeat_newline] = STATE(1100), [sym_comment] = STATE(1097), - [anon_sym_in] = ACTIONS(2758), - [sym__newline] = ACTIONS(2758), - [anon_sym_SEMI] = ACTIONS(2758), - [anon_sym_PIPE] = ACTIONS(2758), - [anon_sym_err_GT_PIPE] = ACTIONS(2758), - [anon_sym_out_GT_PIPE] = ACTIONS(2758), - [anon_sym_e_GT_PIPE] = ACTIONS(2758), - [anon_sym_o_GT_PIPE] = ACTIONS(2758), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2758), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2758), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2758), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2758), - [anon_sym_RPAREN] = ACTIONS(2758), - [anon_sym_GT2] = ACTIONS(2760), - [anon_sym_DASH2] = ACTIONS(2758), - [anon_sym_LBRACE] = ACTIONS(2758), - [anon_sym_STAR2] = ACTIONS(2760), - [anon_sym_and2] = ACTIONS(2758), - [anon_sym_xor2] = ACTIONS(2758), - [anon_sym_or2] = ACTIONS(2758), - [anon_sym_not_DASHin2] = ACTIONS(2758), - [anon_sym_has2] = ACTIONS(2758), - [anon_sym_not_DASHhas2] = ACTIONS(2758), - [anon_sym_starts_DASHwith2] = ACTIONS(2758), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2758), - [anon_sym_ends_DASHwith2] = ACTIONS(2758), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2758), - [anon_sym_EQ_EQ2] = ACTIONS(2758), - [anon_sym_BANG_EQ2] = ACTIONS(2758), - [anon_sym_LT2] = ACTIONS(2760), - [anon_sym_LT_EQ2] = ACTIONS(2758), - [anon_sym_GT_EQ2] = ACTIONS(2758), - [anon_sym_EQ_TILDE2] = ACTIONS(2758), - [anon_sym_BANG_TILDE2] = ACTIONS(2758), - [anon_sym_like2] = ACTIONS(2758), - [anon_sym_not_DASHlike2] = ACTIONS(2758), - [anon_sym_STAR_STAR2] = ACTIONS(2758), - [anon_sym_PLUS_PLUS2] = ACTIONS(2758), - [anon_sym_SLASH2] = ACTIONS(2760), - [anon_sym_mod2] = ACTIONS(2758), - [anon_sym_SLASH_SLASH2] = ACTIONS(2758), - [anon_sym_PLUS2] = ACTIONS(2760), - [anon_sym_bit_DASHshl2] = ACTIONS(2758), - [anon_sym_bit_DASHshr2] = ACTIONS(2758), - [anon_sym_bit_DASHand2] = ACTIONS(2758), - [anon_sym_bit_DASHxor2] = ACTIONS(2758), - [anon_sym_bit_DASHor2] = ACTIONS(2758), - [anon_sym_err_GT] = ACTIONS(2760), - [anon_sym_out_GT] = ACTIONS(2760), - [anon_sym_e_GT] = ACTIONS(2760), - [anon_sym_o_GT] = ACTIONS(2760), - [anon_sym_err_PLUSout_GT] = ACTIONS(2760), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2760), - [anon_sym_o_PLUSe_GT] = ACTIONS(2760), - [anon_sym_e_PLUSo_GT] = ACTIONS(2760), - [anon_sym_err_GT_GT] = ACTIONS(2758), - [anon_sym_out_GT_GT] = ACTIONS(2758), - [anon_sym_e_GT_GT] = ACTIONS(2758), - [anon_sym_o_GT_GT] = ACTIONS(2758), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2758), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2758), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2758), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2758), + [anon_sym_in] = ACTIONS(2381), + [sym__newline] = ACTIONS(2381), + [anon_sym_SEMI] = ACTIONS(2381), + [anon_sym_PIPE] = ACTIONS(2381), + [anon_sym_err_GT_PIPE] = ACTIONS(2381), + [anon_sym_out_GT_PIPE] = ACTIONS(2381), + [anon_sym_e_GT_PIPE] = ACTIONS(2381), + [anon_sym_o_GT_PIPE] = ACTIONS(2381), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2381), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2381), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2381), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2381), + [anon_sym_RPAREN] = ACTIONS(2381), + [anon_sym_GT2] = ACTIONS(2383), + [anon_sym_DASH2] = ACTIONS(2381), + [anon_sym_LBRACE] = ACTIONS(2381), + [anon_sym_STAR2] = ACTIONS(2383), + [anon_sym_and2] = ACTIONS(2381), + [anon_sym_xor2] = ACTIONS(2381), + [anon_sym_or2] = ACTIONS(2381), + [anon_sym_not_DASHin2] = ACTIONS(2381), + [anon_sym_has2] = ACTIONS(2381), + [anon_sym_not_DASHhas2] = ACTIONS(2381), + [anon_sym_starts_DASHwith2] = ACTIONS(2381), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2381), + [anon_sym_ends_DASHwith2] = ACTIONS(2381), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2381), + [anon_sym_EQ_EQ2] = ACTIONS(2381), + [anon_sym_BANG_EQ2] = ACTIONS(2381), + [anon_sym_LT2] = ACTIONS(2383), + [anon_sym_LT_EQ2] = ACTIONS(2381), + [anon_sym_GT_EQ2] = ACTIONS(2381), + [anon_sym_EQ_TILDE2] = ACTIONS(2381), + [anon_sym_BANG_TILDE2] = ACTIONS(2381), + [anon_sym_like2] = ACTIONS(2381), + [anon_sym_not_DASHlike2] = ACTIONS(2381), + [anon_sym_STAR_STAR2] = ACTIONS(2381), + [anon_sym_PLUS_PLUS2] = ACTIONS(2381), + [anon_sym_SLASH2] = ACTIONS(2383), + [anon_sym_mod2] = ACTIONS(2381), + [anon_sym_SLASH_SLASH2] = ACTIONS(2381), + [anon_sym_PLUS2] = ACTIONS(2383), + [anon_sym_bit_DASHshl2] = ACTIONS(2381), + [anon_sym_bit_DASHshr2] = ACTIONS(2381), + [anon_sym_bit_DASHand2] = ACTIONS(2381), + [anon_sym_bit_DASHxor2] = ACTIONS(2381), + [anon_sym_bit_DASHor2] = ACTIONS(2381), + [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(2381), + [anon_sym_out_GT_GT] = ACTIONS(2381), + [anon_sym_e_GT_GT] = ACTIONS(2381), + [anon_sym_o_GT_GT] = ACTIONS(2381), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2381), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2381), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2381), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2381), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1098)] = { - [aux_sym__repeat_newline] = STATE(527), + [aux_sym__repeat_newline] = STATE(1068), [sym_comment] = STATE(1098), - [anon_sym_in] = ACTIONS(2758), - [sym__newline] = ACTIONS(2758), - [anon_sym_SEMI] = ACTIONS(2758), - [anon_sym_PIPE] = ACTIONS(2758), - [anon_sym_err_GT_PIPE] = ACTIONS(2758), - [anon_sym_out_GT_PIPE] = ACTIONS(2758), - [anon_sym_e_GT_PIPE] = ACTIONS(2758), - [anon_sym_o_GT_PIPE] = ACTIONS(2758), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2758), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2758), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2758), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2758), - [anon_sym_RPAREN] = ACTIONS(2758), - [anon_sym_GT2] = ACTIONS(2760), - [anon_sym_DASH2] = ACTIONS(2758), - [anon_sym_LBRACE] = ACTIONS(2758), - [anon_sym_STAR2] = ACTIONS(2760), - [anon_sym_and2] = ACTIONS(2758), - [anon_sym_xor2] = ACTIONS(2758), - [anon_sym_or2] = ACTIONS(2758), - [anon_sym_not_DASHin2] = ACTIONS(2758), - [anon_sym_has2] = ACTIONS(2758), - [anon_sym_not_DASHhas2] = ACTIONS(2758), - [anon_sym_starts_DASHwith2] = ACTIONS(2758), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2758), - [anon_sym_ends_DASHwith2] = ACTIONS(2758), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2758), - [anon_sym_EQ_EQ2] = ACTIONS(2758), - [anon_sym_BANG_EQ2] = ACTIONS(2758), - [anon_sym_LT2] = ACTIONS(2760), - [anon_sym_LT_EQ2] = ACTIONS(2758), - [anon_sym_GT_EQ2] = ACTIONS(2758), - [anon_sym_EQ_TILDE2] = ACTIONS(2758), - [anon_sym_BANG_TILDE2] = ACTIONS(2758), - [anon_sym_like2] = ACTIONS(2758), - [anon_sym_not_DASHlike2] = ACTIONS(2758), - [anon_sym_STAR_STAR2] = ACTIONS(2758), - [anon_sym_PLUS_PLUS2] = ACTIONS(2758), - [anon_sym_SLASH2] = ACTIONS(2760), - [anon_sym_mod2] = ACTIONS(2758), - [anon_sym_SLASH_SLASH2] = ACTIONS(2758), - [anon_sym_PLUS2] = ACTIONS(2760), - [anon_sym_bit_DASHshl2] = ACTIONS(2758), - [anon_sym_bit_DASHshr2] = ACTIONS(2758), - [anon_sym_bit_DASHand2] = ACTIONS(2758), - [anon_sym_bit_DASHxor2] = ACTIONS(2758), - [anon_sym_bit_DASHor2] = ACTIONS(2758), - [anon_sym_err_GT] = ACTIONS(2760), - [anon_sym_out_GT] = ACTIONS(2760), - [anon_sym_e_GT] = ACTIONS(2760), - [anon_sym_o_GT] = ACTIONS(2760), - [anon_sym_err_PLUSout_GT] = ACTIONS(2760), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2760), - [anon_sym_o_PLUSe_GT] = ACTIONS(2760), - [anon_sym_e_PLUSo_GT] = ACTIONS(2760), - [anon_sym_err_GT_GT] = ACTIONS(2758), - [anon_sym_out_GT_GT] = ACTIONS(2758), - [anon_sym_e_GT_GT] = ACTIONS(2758), - [anon_sym_o_GT_GT] = ACTIONS(2758), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2758), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2758), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2758), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2758), + [anon_sym_in] = ACTIONS(2541), + [sym__newline] = ACTIONS(2541), + [anon_sym_SEMI] = ACTIONS(2541), + [anon_sym_PIPE] = ACTIONS(2541), + [anon_sym_err_GT_PIPE] = ACTIONS(2541), + [anon_sym_out_GT_PIPE] = ACTIONS(2541), + [anon_sym_e_GT_PIPE] = ACTIONS(2541), + [anon_sym_o_GT_PIPE] = ACTIONS(2541), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2541), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2541), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2541), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2541), + [anon_sym_RPAREN] = ACTIONS(2541), + [anon_sym_GT2] = ACTIONS(2543), + [anon_sym_DASH2] = ACTIONS(2541), + [anon_sym_LBRACE] = ACTIONS(2541), + [anon_sym_STAR2] = ACTIONS(2543), + [anon_sym_and2] = ACTIONS(2541), + [anon_sym_xor2] = ACTIONS(2541), + [anon_sym_or2] = ACTIONS(2541), + [anon_sym_not_DASHin2] = ACTIONS(2541), + [anon_sym_has2] = ACTIONS(2541), + [anon_sym_not_DASHhas2] = ACTIONS(2541), + [anon_sym_starts_DASHwith2] = ACTIONS(2541), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2541), + [anon_sym_ends_DASHwith2] = ACTIONS(2541), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2541), + [anon_sym_EQ_EQ2] = ACTIONS(2541), + [anon_sym_BANG_EQ2] = ACTIONS(2541), + [anon_sym_LT2] = ACTIONS(2543), + [anon_sym_LT_EQ2] = ACTIONS(2541), + [anon_sym_GT_EQ2] = ACTIONS(2541), + [anon_sym_EQ_TILDE2] = ACTIONS(2541), + [anon_sym_BANG_TILDE2] = ACTIONS(2541), + [anon_sym_like2] = ACTIONS(2541), + [anon_sym_not_DASHlike2] = ACTIONS(2541), + [anon_sym_STAR_STAR2] = ACTIONS(2541), + [anon_sym_PLUS_PLUS2] = ACTIONS(2541), + [anon_sym_SLASH2] = ACTIONS(2543), + [anon_sym_mod2] = ACTIONS(2541), + [anon_sym_SLASH_SLASH2] = ACTIONS(2541), + [anon_sym_PLUS2] = ACTIONS(2543), + [anon_sym_bit_DASHshl2] = ACTIONS(2541), + [anon_sym_bit_DASHshr2] = ACTIONS(2541), + [anon_sym_bit_DASHand2] = ACTIONS(2541), + [anon_sym_bit_DASHxor2] = ACTIONS(2541), + [anon_sym_bit_DASHor2] = ACTIONS(2541), + [anon_sym_err_GT] = ACTIONS(2543), + [anon_sym_out_GT] = ACTIONS(2543), + [anon_sym_e_GT] = ACTIONS(2543), + [anon_sym_o_GT] = ACTIONS(2543), + [anon_sym_err_PLUSout_GT] = ACTIONS(2543), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2543), + [anon_sym_o_PLUSe_GT] = ACTIONS(2543), + [anon_sym_e_PLUSo_GT] = ACTIONS(2543), + [anon_sym_err_GT_GT] = ACTIONS(2541), + [anon_sym_out_GT_GT] = ACTIONS(2541), + [anon_sym_e_GT_GT] = ACTIONS(2541), + [anon_sym_o_GT_GT] = ACTIONS(2541), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2541), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2541), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2541), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2541), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1099)] = { - [aux_sym__repeat_newline] = STATE(527), + [aux_sym__repeat_newline] = STATE(1127), [sym_comment] = STATE(1099), - [anon_sym_in] = ACTIONS(2758), - [sym__newline] = ACTIONS(2758), - [anon_sym_SEMI] = ACTIONS(2758), - [anon_sym_PIPE] = ACTIONS(2758), - [anon_sym_err_GT_PIPE] = ACTIONS(2758), - [anon_sym_out_GT_PIPE] = ACTIONS(2758), - [anon_sym_e_GT_PIPE] = ACTIONS(2758), - [anon_sym_o_GT_PIPE] = ACTIONS(2758), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2758), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2758), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2758), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2758), - [anon_sym_RPAREN] = ACTIONS(2758), - [anon_sym_GT2] = ACTIONS(2760), - [anon_sym_DASH2] = ACTIONS(2758), - [anon_sym_LBRACE] = ACTIONS(2758), - [anon_sym_STAR2] = ACTIONS(2760), - [anon_sym_and2] = ACTIONS(2758), - [anon_sym_xor2] = ACTIONS(2758), - [anon_sym_or2] = ACTIONS(2758), - [anon_sym_not_DASHin2] = ACTIONS(2758), - [anon_sym_has2] = ACTIONS(2758), - [anon_sym_not_DASHhas2] = ACTIONS(2758), - [anon_sym_starts_DASHwith2] = ACTIONS(2758), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2758), - [anon_sym_ends_DASHwith2] = ACTIONS(2758), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2758), - [anon_sym_EQ_EQ2] = ACTIONS(2758), - [anon_sym_BANG_EQ2] = ACTIONS(2758), - [anon_sym_LT2] = ACTIONS(2760), - [anon_sym_LT_EQ2] = ACTIONS(2758), - [anon_sym_GT_EQ2] = ACTIONS(2758), - [anon_sym_EQ_TILDE2] = ACTIONS(2758), - [anon_sym_BANG_TILDE2] = ACTIONS(2758), - [anon_sym_like2] = ACTIONS(2758), - [anon_sym_not_DASHlike2] = ACTIONS(2758), - [anon_sym_STAR_STAR2] = ACTIONS(2758), - [anon_sym_PLUS_PLUS2] = ACTIONS(2758), - [anon_sym_SLASH2] = ACTIONS(2760), - [anon_sym_mod2] = ACTIONS(2758), - [anon_sym_SLASH_SLASH2] = ACTIONS(2758), - [anon_sym_PLUS2] = ACTIONS(2760), - [anon_sym_bit_DASHshl2] = ACTIONS(2758), - [anon_sym_bit_DASHshr2] = ACTIONS(2758), - [anon_sym_bit_DASHand2] = ACTIONS(2758), - [anon_sym_bit_DASHxor2] = ACTIONS(2758), - [anon_sym_bit_DASHor2] = ACTIONS(2758), - [anon_sym_err_GT] = ACTIONS(2760), - [anon_sym_out_GT] = ACTIONS(2760), - [anon_sym_e_GT] = ACTIONS(2760), - [anon_sym_o_GT] = ACTIONS(2760), - [anon_sym_err_PLUSout_GT] = ACTIONS(2760), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2760), - [anon_sym_o_PLUSe_GT] = ACTIONS(2760), - [anon_sym_e_PLUSo_GT] = ACTIONS(2760), - [anon_sym_err_GT_GT] = ACTIONS(2758), - [anon_sym_out_GT_GT] = ACTIONS(2758), - [anon_sym_e_GT_GT] = ACTIONS(2758), - [anon_sym_o_GT_GT] = ACTIONS(2758), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2758), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2758), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2758), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2758), + [anon_sym_in] = ACTIONS(2350), + [sym__newline] = ACTIONS(2350), + [anon_sym_SEMI] = ACTIONS(2350), + [anon_sym_PIPE] = ACTIONS(2350), + [anon_sym_err_GT_PIPE] = ACTIONS(2350), + [anon_sym_out_GT_PIPE] = ACTIONS(2350), + [anon_sym_e_GT_PIPE] = ACTIONS(2350), + [anon_sym_o_GT_PIPE] = ACTIONS(2350), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2350), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2350), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2350), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2350), + [anon_sym_RPAREN] = ACTIONS(2350), + [anon_sym_GT2] = ACTIONS(2352), + [anon_sym_DASH2] = ACTIONS(2350), + [anon_sym_LBRACE] = ACTIONS(2350), + [anon_sym_STAR2] = ACTIONS(2352), + [anon_sym_and2] = ACTIONS(2350), + [anon_sym_xor2] = ACTIONS(2350), + [anon_sym_or2] = ACTIONS(2350), + [anon_sym_not_DASHin2] = ACTIONS(2350), + [anon_sym_has2] = ACTIONS(2350), + [anon_sym_not_DASHhas2] = ACTIONS(2350), + [anon_sym_starts_DASHwith2] = ACTIONS(2350), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2350), + [anon_sym_ends_DASHwith2] = ACTIONS(2350), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2350), + [anon_sym_EQ_EQ2] = ACTIONS(2350), + [anon_sym_BANG_EQ2] = ACTIONS(2350), + [anon_sym_LT2] = ACTIONS(2352), + [anon_sym_LT_EQ2] = ACTIONS(2350), + [anon_sym_GT_EQ2] = ACTIONS(2350), + [anon_sym_EQ_TILDE2] = ACTIONS(2350), + [anon_sym_BANG_TILDE2] = ACTIONS(2350), + [anon_sym_like2] = ACTIONS(2350), + [anon_sym_not_DASHlike2] = ACTIONS(2350), + [anon_sym_STAR_STAR2] = ACTIONS(2350), + [anon_sym_PLUS_PLUS2] = ACTIONS(2350), + [anon_sym_SLASH2] = ACTIONS(2352), + [anon_sym_mod2] = ACTIONS(2350), + [anon_sym_SLASH_SLASH2] = ACTIONS(2350), + [anon_sym_PLUS2] = ACTIONS(2352), + [anon_sym_bit_DASHshl2] = ACTIONS(2350), + [anon_sym_bit_DASHshr2] = ACTIONS(2350), + [anon_sym_bit_DASHand2] = ACTIONS(2350), + [anon_sym_bit_DASHxor2] = ACTIONS(2350), + [anon_sym_bit_DASHor2] = ACTIONS(2350), + [anon_sym_err_GT] = ACTIONS(2352), + [anon_sym_out_GT] = ACTIONS(2352), + [anon_sym_e_GT] = ACTIONS(2352), + [anon_sym_o_GT] = ACTIONS(2352), + [anon_sym_err_PLUSout_GT] = ACTIONS(2352), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2352), + [anon_sym_o_PLUSe_GT] = ACTIONS(2352), + [anon_sym_e_PLUSo_GT] = ACTIONS(2352), + [anon_sym_err_GT_GT] = ACTIONS(2350), + [anon_sym_out_GT_GT] = ACTIONS(2350), + [anon_sym_e_GT_GT] = ACTIONS(2350), + [anon_sym_o_GT_GT] = ACTIONS(2350), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2350), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2350), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2350), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2350), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1100)] = { - [aux_sym__repeat_newline] = STATE(527), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1100), - [anon_sym_in] = ACTIONS(2758), - [sym__newline] = ACTIONS(2758), - [anon_sym_SEMI] = ACTIONS(2758), - [anon_sym_PIPE] = ACTIONS(2758), - [anon_sym_err_GT_PIPE] = ACTIONS(2758), - [anon_sym_out_GT_PIPE] = ACTIONS(2758), - [anon_sym_e_GT_PIPE] = ACTIONS(2758), - [anon_sym_o_GT_PIPE] = ACTIONS(2758), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2758), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2758), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2758), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2758), - [anon_sym_RPAREN] = ACTIONS(2758), - [anon_sym_GT2] = ACTIONS(2760), - [anon_sym_DASH2] = ACTIONS(2758), - [anon_sym_LBRACE] = ACTIONS(2758), - [anon_sym_STAR2] = ACTIONS(2760), - [anon_sym_and2] = ACTIONS(2758), - [anon_sym_xor2] = ACTIONS(2758), - [anon_sym_or2] = ACTIONS(2758), - [anon_sym_not_DASHin2] = ACTIONS(2758), - [anon_sym_has2] = ACTIONS(2758), - [anon_sym_not_DASHhas2] = ACTIONS(2758), - [anon_sym_starts_DASHwith2] = ACTIONS(2758), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2758), - [anon_sym_ends_DASHwith2] = ACTIONS(2758), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2758), - [anon_sym_EQ_EQ2] = ACTIONS(2758), - [anon_sym_BANG_EQ2] = ACTIONS(2758), - [anon_sym_LT2] = ACTIONS(2760), - [anon_sym_LT_EQ2] = ACTIONS(2758), - [anon_sym_GT_EQ2] = ACTIONS(2758), - [anon_sym_EQ_TILDE2] = ACTIONS(2758), - [anon_sym_BANG_TILDE2] = ACTIONS(2758), - [anon_sym_like2] = ACTIONS(2758), - [anon_sym_not_DASHlike2] = ACTIONS(2758), - [anon_sym_STAR_STAR2] = ACTIONS(2758), - [anon_sym_PLUS_PLUS2] = ACTIONS(2758), - [anon_sym_SLASH2] = ACTIONS(2760), - [anon_sym_mod2] = ACTIONS(2758), - [anon_sym_SLASH_SLASH2] = ACTIONS(2758), - [anon_sym_PLUS2] = ACTIONS(2760), - [anon_sym_bit_DASHshl2] = ACTIONS(2758), - [anon_sym_bit_DASHshr2] = ACTIONS(2758), - [anon_sym_bit_DASHand2] = ACTIONS(2758), - [anon_sym_bit_DASHxor2] = ACTIONS(2758), - [anon_sym_bit_DASHor2] = ACTIONS(2758), - [anon_sym_err_GT] = ACTIONS(2760), - [anon_sym_out_GT] = ACTIONS(2760), - [anon_sym_e_GT] = ACTIONS(2760), - [anon_sym_o_GT] = ACTIONS(2760), - [anon_sym_err_PLUSout_GT] = ACTIONS(2760), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2760), - [anon_sym_o_PLUSe_GT] = ACTIONS(2760), - [anon_sym_e_PLUSo_GT] = ACTIONS(2760), - [anon_sym_err_GT_GT] = ACTIONS(2758), - [anon_sym_out_GT_GT] = ACTIONS(2758), - [anon_sym_e_GT_GT] = ACTIONS(2758), - [anon_sym_o_GT_GT] = ACTIONS(2758), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2758), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2758), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2758), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2758), + [anon_sym_in] = ACTIONS(2802), + [sym__newline] = ACTIONS(2802), + [anon_sym_SEMI] = ACTIONS(2802), + [anon_sym_PIPE] = ACTIONS(2802), + [anon_sym_err_GT_PIPE] = ACTIONS(2802), + [anon_sym_out_GT_PIPE] = ACTIONS(2802), + [anon_sym_e_GT_PIPE] = ACTIONS(2802), + [anon_sym_o_GT_PIPE] = ACTIONS(2802), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2802), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2802), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2802), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2802), + [anon_sym_RPAREN] = ACTIONS(2802), + [anon_sym_GT2] = ACTIONS(2804), + [anon_sym_DASH2] = ACTIONS(2802), + [anon_sym_LBRACE] = ACTIONS(2802), + [anon_sym_STAR2] = ACTIONS(2804), + [anon_sym_and2] = ACTIONS(2802), + [anon_sym_xor2] = ACTIONS(2802), + [anon_sym_or2] = ACTIONS(2802), + [anon_sym_not_DASHin2] = ACTIONS(2802), + [anon_sym_has2] = ACTIONS(2802), + [anon_sym_not_DASHhas2] = ACTIONS(2802), + [anon_sym_starts_DASHwith2] = ACTIONS(2802), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2802), + [anon_sym_ends_DASHwith2] = ACTIONS(2802), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2802), + [anon_sym_EQ_EQ2] = ACTIONS(2802), + [anon_sym_BANG_EQ2] = ACTIONS(2802), + [anon_sym_LT2] = ACTIONS(2804), + [anon_sym_LT_EQ2] = ACTIONS(2802), + [anon_sym_GT_EQ2] = ACTIONS(2802), + [anon_sym_EQ_TILDE2] = ACTIONS(2802), + [anon_sym_BANG_TILDE2] = ACTIONS(2802), + [anon_sym_like2] = ACTIONS(2802), + [anon_sym_not_DASHlike2] = ACTIONS(2802), + [anon_sym_STAR_STAR2] = ACTIONS(2802), + [anon_sym_PLUS_PLUS2] = ACTIONS(2802), + [anon_sym_SLASH2] = ACTIONS(2804), + [anon_sym_mod2] = ACTIONS(2802), + [anon_sym_SLASH_SLASH2] = ACTIONS(2802), + [anon_sym_PLUS2] = ACTIONS(2804), + [anon_sym_bit_DASHshl2] = ACTIONS(2802), + [anon_sym_bit_DASHshr2] = ACTIONS(2802), + [anon_sym_bit_DASHand2] = ACTIONS(2802), + [anon_sym_bit_DASHxor2] = ACTIONS(2802), + [anon_sym_bit_DASHor2] = ACTIONS(2802), + [anon_sym_err_GT] = ACTIONS(2804), + [anon_sym_out_GT] = ACTIONS(2804), + [anon_sym_e_GT] = ACTIONS(2804), + [anon_sym_o_GT] = ACTIONS(2804), + [anon_sym_err_PLUSout_GT] = ACTIONS(2804), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2804), + [anon_sym_o_PLUSe_GT] = ACTIONS(2804), + [anon_sym_e_PLUSo_GT] = ACTIONS(2804), + [anon_sym_err_GT_GT] = ACTIONS(2802), + [anon_sym_out_GT_GT] = ACTIONS(2802), + [anon_sym_e_GT_GT] = ACTIONS(2802), + [anon_sym_o_GT_GT] = ACTIONS(2802), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2802), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2802), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2802), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2802), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1101)] = { - [aux_sym__repeat_newline] = STATE(527), + [aux_sym__repeat_newline] = STATE(1128), [sym_comment] = STATE(1101), - [anon_sym_in] = ACTIONS(2758), - [sym__newline] = ACTIONS(2758), - [anon_sym_SEMI] = ACTIONS(2758), - [anon_sym_PIPE] = ACTIONS(2758), - [anon_sym_err_GT_PIPE] = ACTIONS(2758), - [anon_sym_out_GT_PIPE] = ACTIONS(2758), - [anon_sym_e_GT_PIPE] = ACTIONS(2758), - [anon_sym_o_GT_PIPE] = ACTIONS(2758), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2758), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2758), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2758), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2758), - [anon_sym_RPAREN] = ACTIONS(2758), - [anon_sym_GT2] = ACTIONS(2760), - [anon_sym_DASH2] = ACTIONS(2758), - [anon_sym_LBRACE] = ACTIONS(2758), - [anon_sym_STAR2] = ACTIONS(2760), - [anon_sym_and2] = ACTIONS(2758), - [anon_sym_xor2] = ACTIONS(2758), - [anon_sym_or2] = ACTIONS(2758), - [anon_sym_not_DASHin2] = ACTIONS(2758), - [anon_sym_has2] = ACTIONS(2758), - [anon_sym_not_DASHhas2] = ACTIONS(2758), - [anon_sym_starts_DASHwith2] = ACTIONS(2758), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2758), - [anon_sym_ends_DASHwith2] = ACTIONS(2758), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2758), - [anon_sym_EQ_EQ2] = ACTIONS(2758), - [anon_sym_BANG_EQ2] = ACTIONS(2758), - [anon_sym_LT2] = ACTIONS(2760), - [anon_sym_LT_EQ2] = ACTIONS(2758), - [anon_sym_GT_EQ2] = ACTIONS(2758), - [anon_sym_EQ_TILDE2] = ACTIONS(2758), - [anon_sym_BANG_TILDE2] = ACTIONS(2758), - [anon_sym_like2] = ACTIONS(2758), - [anon_sym_not_DASHlike2] = ACTIONS(2758), - [anon_sym_STAR_STAR2] = ACTIONS(2758), - [anon_sym_PLUS_PLUS2] = ACTIONS(2758), - [anon_sym_SLASH2] = ACTIONS(2760), - [anon_sym_mod2] = ACTIONS(2758), - [anon_sym_SLASH_SLASH2] = ACTIONS(2758), - [anon_sym_PLUS2] = ACTIONS(2760), - [anon_sym_bit_DASHshl2] = ACTIONS(2758), - [anon_sym_bit_DASHshr2] = ACTIONS(2758), - [anon_sym_bit_DASHand2] = ACTIONS(2758), - [anon_sym_bit_DASHxor2] = ACTIONS(2758), - [anon_sym_bit_DASHor2] = ACTIONS(2758), - [anon_sym_err_GT] = ACTIONS(2760), - [anon_sym_out_GT] = ACTIONS(2760), - [anon_sym_e_GT] = ACTIONS(2760), - [anon_sym_o_GT] = ACTIONS(2760), - [anon_sym_err_PLUSout_GT] = ACTIONS(2760), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2760), - [anon_sym_o_PLUSe_GT] = ACTIONS(2760), - [anon_sym_e_PLUSo_GT] = ACTIONS(2760), - [anon_sym_err_GT_GT] = ACTIONS(2758), - [anon_sym_out_GT_GT] = ACTIONS(2758), - [anon_sym_e_GT_GT] = ACTIONS(2758), - [anon_sym_o_GT_GT] = ACTIONS(2758), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2758), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2758), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2758), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2758), + [anon_sym_in] = ACTIONS(2350), + [sym__newline] = ACTIONS(2350), + [anon_sym_SEMI] = ACTIONS(2350), + [anon_sym_PIPE] = ACTIONS(2350), + [anon_sym_err_GT_PIPE] = ACTIONS(2350), + [anon_sym_out_GT_PIPE] = ACTIONS(2350), + [anon_sym_e_GT_PIPE] = ACTIONS(2350), + [anon_sym_o_GT_PIPE] = ACTIONS(2350), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2350), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2350), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2350), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2350), + [anon_sym_RPAREN] = ACTIONS(2350), + [anon_sym_GT2] = ACTIONS(2352), + [anon_sym_DASH2] = ACTIONS(2350), + [anon_sym_LBRACE] = ACTIONS(2350), + [anon_sym_STAR2] = ACTIONS(2352), + [anon_sym_and2] = ACTIONS(2350), + [anon_sym_xor2] = ACTIONS(2350), + [anon_sym_or2] = ACTIONS(2350), + [anon_sym_not_DASHin2] = ACTIONS(2350), + [anon_sym_has2] = ACTIONS(2350), + [anon_sym_not_DASHhas2] = ACTIONS(2350), + [anon_sym_starts_DASHwith2] = ACTIONS(2350), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2350), + [anon_sym_ends_DASHwith2] = ACTIONS(2350), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2350), + [anon_sym_EQ_EQ2] = ACTIONS(2350), + [anon_sym_BANG_EQ2] = ACTIONS(2350), + [anon_sym_LT2] = ACTIONS(2352), + [anon_sym_LT_EQ2] = ACTIONS(2350), + [anon_sym_GT_EQ2] = ACTIONS(2350), + [anon_sym_EQ_TILDE2] = ACTIONS(2350), + [anon_sym_BANG_TILDE2] = ACTIONS(2350), + [anon_sym_like2] = ACTIONS(2350), + [anon_sym_not_DASHlike2] = ACTIONS(2350), + [anon_sym_STAR_STAR2] = ACTIONS(2350), + [anon_sym_PLUS_PLUS2] = ACTIONS(2350), + [anon_sym_SLASH2] = ACTIONS(2352), + [anon_sym_mod2] = ACTIONS(2350), + [anon_sym_SLASH_SLASH2] = ACTIONS(2350), + [anon_sym_PLUS2] = ACTIONS(2352), + [anon_sym_bit_DASHshl2] = ACTIONS(2350), + [anon_sym_bit_DASHshr2] = ACTIONS(2350), + [anon_sym_bit_DASHand2] = ACTIONS(2350), + [anon_sym_bit_DASHxor2] = ACTIONS(2350), + [anon_sym_bit_DASHor2] = ACTIONS(2350), + [anon_sym_err_GT] = ACTIONS(2352), + [anon_sym_out_GT] = ACTIONS(2352), + [anon_sym_e_GT] = ACTIONS(2352), + [anon_sym_o_GT] = ACTIONS(2352), + [anon_sym_err_PLUSout_GT] = ACTIONS(2352), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2352), + [anon_sym_o_PLUSe_GT] = ACTIONS(2352), + [anon_sym_e_PLUSo_GT] = ACTIONS(2352), + [anon_sym_err_GT_GT] = ACTIONS(2350), + [anon_sym_out_GT_GT] = ACTIONS(2350), + [anon_sym_e_GT_GT] = ACTIONS(2350), + [anon_sym_o_GT_GT] = ACTIONS(2350), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2350), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2350), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2350), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2350), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1102)] = { - [aux_sym__repeat_newline] = STATE(527), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1102), - [anon_sym_in] = ACTIONS(2762), - [sym__newline] = ACTIONS(2762), - [anon_sym_SEMI] = ACTIONS(2762), - [anon_sym_PIPE] = ACTIONS(2762), - [anon_sym_err_GT_PIPE] = ACTIONS(2762), - [anon_sym_out_GT_PIPE] = ACTIONS(2762), - [anon_sym_e_GT_PIPE] = ACTIONS(2762), - [anon_sym_o_GT_PIPE] = ACTIONS(2762), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2762), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2762), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2762), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2762), - [anon_sym_RPAREN] = ACTIONS(2762), - [anon_sym_GT2] = ACTIONS(2764), - [anon_sym_DASH2] = ACTIONS(2762), - [anon_sym_LBRACE] = ACTIONS(2762), - [anon_sym_STAR2] = ACTIONS(2764), - [anon_sym_and2] = ACTIONS(2762), - [anon_sym_xor2] = ACTIONS(2762), - [anon_sym_or2] = ACTIONS(2762), - [anon_sym_not_DASHin2] = ACTIONS(2762), - [anon_sym_has2] = ACTIONS(2762), - [anon_sym_not_DASHhas2] = ACTIONS(2762), - [anon_sym_starts_DASHwith2] = ACTIONS(2762), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2762), - [anon_sym_ends_DASHwith2] = ACTIONS(2762), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2762), - [anon_sym_EQ_EQ2] = ACTIONS(2762), - [anon_sym_BANG_EQ2] = ACTIONS(2762), - [anon_sym_LT2] = ACTIONS(2764), - [anon_sym_LT_EQ2] = ACTIONS(2762), - [anon_sym_GT_EQ2] = ACTIONS(2762), - [anon_sym_EQ_TILDE2] = ACTIONS(2762), - [anon_sym_BANG_TILDE2] = ACTIONS(2762), - [anon_sym_like2] = ACTIONS(2762), - [anon_sym_not_DASHlike2] = ACTIONS(2762), - [anon_sym_STAR_STAR2] = ACTIONS(2762), - [anon_sym_PLUS_PLUS2] = ACTIONS(2762), - [anon_sym_SLASH2] = ACTIONS(2764), - [anon_sym_mod2] = ACTIONS(2762), - [anon_sym_SLASH_SLASH2] = ACTIONS(2762), - [anon_sym_PLUS2] = ACTIONS(2764), - [anon_sym_bit_DASHshl2] = ACTIONS(2762), - [anon_sym_bit_DASHshr2] = ACTIONS(2762), - [anon_sym_bit_DASHand2] = ACTIONS(2762), - [anon_sym_bit_DASHxor2] = ACTIONS(2762), - [anon_sym_bit_DASHor2] = ACTIONS(2762), - [anon_sym_err_GT] = ACTIONS(2764), - [anon_sym_out_GT] = ACTIONS(2764), - [anon_sym_e_GT] = ACTIONS(2764), - [anon_sym_o_GT] = ACTIONS(2764), - [anon_sym_err_PLUSout_GT] = ACTIONS(2764), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2764), - [anon_sym_o_PLUSe_GT] = ACTIONS(2764), - [anon_sym_e_PLUSo_GT] = ACTIONS(2764), - [anon_sym_err_GT_GT] = ACTIONS(2762), - [anon_sym_out_GT_GT] = ACTIONS(2762), - [anon_sym_e_GT_GT] = ACTIONS(2762), - [anon_sym_o_GT_GT] = ACTIONS(2762), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2762), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2762), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2762), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2762), + [anon_sym_in] = ACTIONS(2802), + [sym__newline] = ACTIONS(2802), + [anon_sym_SEMI] = ACTIONS(2802), + [anon_sym_PIPE] = ACTIONS(2802), + [anon_sym_err_GT_PIPE] = ACTIONS(2802), + [anon_sym_out_GT_PIPE] = ACTIONS(2802), + [anon_sym_e_GT_PIPE] = ACTIONS(2802), + [anon_sym_o_GT_PIPE] = ACTIONS(2802), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2802), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2802), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2802), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2802), + [anon_sym_RPAREN] = ACTIONS(2802), + [anon_sym_GT2] = ACTIONS(2804), + [anon_sym_DASH2] = ACTIONS(2802), + [anon_sym_LBRACE] = ACTIONS(2802), + [anon_sym_STAR2] = ACTIONS(2804), + [anon_sym_and2] = ACTIONS(2802), + [anon_sym_xor2] = ACTIONS(2802), + [anon_sym_or2] = ACTIONS(2802), + [anon_sym_not_DASHin2] = ACTIONS(2802), + [anon_sym_has2] = ACTIONS(2802), + [anon_sym_not_DASHhas2] = ACTIONS(2802), + [anon_sym_starts_DASHwith2] = ACTIONS(2802), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2802), + [anon_sym_ends_DASHwith2] = ACTIONS(2802), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2802), + [anon_sym_EQ_EQ2] = ACTIONS(2802), + [anon_sym_BANG_EQ2] = ACTIONS(2802), + [anon_sym_LT2] = ACTIONS(2804), + [anon_sym_LT_EQ2] = ACTIONS(2802), + [anon_sym_GT_EQ2] = ACTIONS(2802), + [anon_sym_EQ_TILDE2] = ACTIONS(2802), + [anon_sym_BANG_TILDE2] = ACTIONS(2802), + [anon_sym_like2] = ACTIONS(2802), + [anon_sym_not_DASHlike2] = ACTIONS(2802), + [anon_sym_STAR_STAR2] = ACTIONS(2802), + [anon_sym_PLUS_PLUS2] = ACTIONS(2802), + [anon_sym_SLASH2] = ACTIONS(2804), + [anon_sym_mod2] = ACTIONS(2802), + [anon_sym_SLASH_SLASH2] = ACTIONS(2802), + [anon_sym_PLUS2] = ACTIONS(2804), + [anon_sym_bit_DASHshl2] = ACTIONS(2802), + [anon_sym_bit_DASHshr2] = ACTIONS(2802), + [anon_sym_bit_DASHand2] = ACTIONS(2802), + [anon_sym_bit_DASHxor2] = ACTIONS(2802), + [anon_sym_bit_DASHor2] = ACTIONS(2802), + [anon_sym_err_GT] = ACTIONS(2804), + [anon_sym_out_GT] = ACTIONS(2804), + [anon_sym_e_GT] = ACTIONS(2804), + [anon_sym_o_GT] = ACTIONS(2804), + [anon_sym_err_PLUSout_GT] = ACTIONS(2804), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2804), + [anon_sym_o_PLUSe_GT] = ACTIONS(2804), + [anon_sym_e_PLUSo_GT] = ACTIONS(2804), + [anon_sym_err_GT_GT] = ACTIONS(2802), + [anon_sym_out_GT_GT] = ACTIONS(2802), + [anon_sym_e_GT_GT] = ACTIONS(2802), + [anon_sym_o_GT_GT] = ACTIONS(2802), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2802), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2802), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2802), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2802), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1103)] = { - [aux_sym__repeat_newline] = STATE(527), + [aux_sym__repeat_newline] = STATE(1071), [sym_comment] = STATE(1103), - [anon_sym_in] = ACTIONS(2758), - [sym__newline] = ACTIONS(2758), - [anon_sym_SEMI] = ACTIONS(2758), - [anon_sym_PIPE] = ACTIONS(2758), - [anon_sym_err_GT_PIPE] = ACTIONS(2758), - [anon_sym_out_GT_PIPE] = ACTIONS(2758), - [anon_sym_e_GT_PIPE] = ACTIONS(2758), - [anon_sym_o_GT_PIPE] = ACTIONS(2758), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2758), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2758), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2758), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2758), - [anon_sym_RPAREN] = ACTIONS(2758), - [anon_sym_GT2] = ACTIONS(2760), - [anon_sym_DASH2] = ACTIONS(2758), - [anon_sym_LBRACE] = ACTIONS(2758), - [anon_sym_STAR2] = ACTIONS(2760), - [anon_sym_and2] = ACTIONS(2758), - [anon_sym_xor2] = ACTIONS(2758), - [anon_sym_or2] = ACTIONS(2758), - [anon_sym_not_DASHin2] = ACTIONS(2758), - [anon_sym_has2] = ACTIONS(2758), - [anon_sym_not_DASHhas2] = ACTIONS(2758), - [anon_sym_starts_DASHwith2] = ACTIONS(2758), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2758), - [anon_sym_ends_DASHwith2] = ACTIONS(2758), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2758), - [anon_sym_EQ_EQ2] = ACTIONS(2758), - [anon_sym_BANG_EQ2] = ACTIONS(2758), - [anon_sym_LT2] = ACTIONS(2760), - [anon_sym_LT_EQ2] = ACTIONS(2758), - [anon_sym_GT_EQ2] = ACTIONS(2758), - [anon_sym_EQ_TILDE2] = ACTIONS(2758), - [anon_sym_BANG_TILDE2] = ACTIONS(2758), - [anon_sym_like2] = ACTIONS(2758), - [anon_sym_not_DASHlike2] = ACTIONS(2758), - [anon_sym_STAR_STAR2] = ACTIONS(2758), - [anon_sym_PLUS_PLUS2] = ACTIONS(2758), - [anon_sym_SLASH2] = ACTIONS(2760), - [anon_sym_mod2] = ACTIONS(2758), - [anon_sym_SLASH_SLASH2] = ACTIONS(2758), - [anon_sym_PLUS2] = ACTIONS(2760), - [anon_sym_bit_DASHshl2] = ACTIONS(2758), - [anon_sym_bit_DASHshr2] = ACTIONS(2758), - [anon_sym_bit_DASHand2] = ACTIONS(2758), - [anon_sym_bit_DASHxor2] = ACTIONS(2758), - [anon_sym_bit_DASHor2] = ACTIONS(2758), - [anon_sym_err_GT] = ACTIONS(2760), - [anon_sym_out_GT] = ACTIONS(2760), - [anon_sym_e_GT] = ACTIONS(2760), - [anon_sym_o_GT] = ACTIONS(2760), - [anon_sym_err_PLUSout_GT] = ACTIONS(2760), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2760), - [anon_sym_o_PLUSe_GT] = ACTIONS(2760), - [anon_sym_e_PLUSo_GT] = ACTIONS(2760), - [anon_sym_err_GT_GT] = ACTIONS(2758), - [anon_sym_out_GT_GT] = ACTIONS(2758), - [anon_sym_e_GT_GT] = ACTIONS(2758), - [anon_sym_o_GT_GT] = ACTIONS(2758), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2758), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2758), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2758), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2758), + [anon_sym_in] = ACTIONS(2541), + [sym__newline] = ACTIONS(2541), + [anon_sym_SEMI] = ACTIONS(2541), + [anon_sym_PIPE] = ACTIONS(2541), + [anon_sym_err_GT_PIPE] = ACTIONS(2541), + [anon_sym_out_GT_PIPE] = ACTIONS(2541), + [anon_sym_e_GT_PIPE] = ACTIONS(2541), + [anon_sym_o_GT_PIPE] = ACTIONS(2541), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2541), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2541), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2541), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2541), + [anon_sym_RPAREN] = ACTIONS(2541), + [anon_sym_GT2] = ACTIONS(2543), + [anon_sym_DASH2] = ACTIONS(2541), + [anon_sym_LBRACE] = ACTIONS(2541), + [anon_sym_STAR2] = ACTIONS(2543), + [anon_sym_and2] = ACTIONS(2541), + [anon_sym_xor2] = ACTIONS(2541), + [anon_sym_or2] = ACTIONS(2541), + [anon_sym_not_DASHin2] = ACTIONS(2541), + [anon_sym_has2] = ACTIONS(2541), + [anon_sym_not_DASHhas2] = ACTIONS(2541), + [anon_sym_starts_DASHwith2] = ACTIONS(2541), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2541), + [anon_sym_ends_DASHwith2] = ACTIONS(2541), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2541), + [anon_sym_EQ_EQ2] = ACTIONS(2541), + [anon_sym_BANG_EQ2] = ACTIONS(2541), + [anon_sym_LT2] = ACTIONS(2543), + [anon_sym_LT_EQ2] = ACTIONS(2541), + [anon_sym_GT_EQ2] = ACTIONS(2541), + [anon_sym_EQ_TILDE2] = ACTIONS(2541), + [anon_sym_BANG_TILDE2] = ACTIONS(2541), + [anon_sym_like2] = ACTIONS(2541), + [anon_sym_not_DASHlike2] = ACTIONS(2541), + [anon_sym_STAR_STAR2] = ACTIONS(2541), + [anon_sym_PLUS_PLUS2] = ACTIONS(2541), + [anon_sym_SLASH2] = ACTIONS(2543), + [anon_sym_mod2] = ACTIONS(2541), + [anon_sym_SLASH_SLASH2] = ACTIONS(2541), + [anon_sym_PLUS2] = ACTIONS(2543), + [anon_sym_bit_DASHshl2] = ACTIONS(2541), + [anon_sym_bit_DASHshr2] = ACTIONS(2541), + [anon_sym_bit_DASHand2] = ACTIONS(2541), + [anon_sym_bit_DASHxor2] = ACTIONS(2541), + [anon_sym_bit_DASHor2] = ACTIONS(2541), + [anon_sym_err_GT] = ACTIONS(2543), + [anon_sym_out_GT] = ACTIONS(2543), + [anon_sym_e_GT] = ACTIONS(2543), + [anon_sym_o_GT] = ACTIONS(2543), + [anon_sym_err_PLUSout_GT] = ACTIONS(2543), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2543), + [anon_sym_o_PLUSe_GT] = ACTIONS(2543), + [anon_sym_e_PLUSo_GT] = ACTIONS(2543), + [anon_sym_err_GT_GT] = ACTIONS(2541), + [anon_sym_out_GT_GT] = ACTIONS(2541), + [anon_sym_e_GT_GT] = ACTIONS(2541), + [anon_sym_o_GT_GT] = ACTIONS(2541), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2541), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2541), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2541), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2541), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1104)] = { - [aux_sym__repeat_newline] = STATE(527), + [aux_sym__repeat_newline] = STATE(1129), [sym_comment] = STATE(1104), - [anon_sym_in] = ACTIONS(2758), - [sym__newline] = ACTIONS(2758), - [anon_sym_SEMI] = ACTIONS(2758), - [anon_sym_PIPE] = ACTIONS(2758), - [anon_sym_err_GT_PIPE] = ACTIONS(2758), - [anon_sym_out_GT_PIPE] = ACTIONS(2758), - [anon_sym_e_GT_PIPE] = ACTIONS(2758), - [anon_sym_o_GT_PIPE] = ACTIONS(2758), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2758), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2758), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2758), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2758), - [anon_sym_RPAREN] = ACTIONS(2758), - [anon_sym_GT2] = ACTIONS(2760), - [anon_sym_DASH2] = ACTIONS(2758), - [anon_sym_LBRACE] = ACTIONS(2758), - [anon_sym_STAR2] = ACTIONS(2760), - [anon_sym_and2] = ACTIONS(2758), - [anon_sym_xor2] = ACTIONS(2758), - [anon_sym_or2] = ACTIONS(2758), - [anon_sym_not_DASHin2] = ACTIONS(2758), - [anon_sym_has2] = ACTIONS(2758), - [anon_sym_not_DASHhas2] = ACTIONS(2758), - [anon_sym_starts_DASHwith2] = ACTIONS(2758), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2758), - [anon_sym_ends_DASHwith2] = ACTIONS(2758), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2758), - [anon_sym_EQ_EQ2] = ACTIONS(2758), - [anon_sym_BANG_EQ2] = ACTIONS(2758), - [anon_sym_LT2] = ACTIONS(2760), - [anon_sym_LT_EQ2] = ACTIONS(2758), - [anon_sym_GT_EQ2] = ACTIONS(2758), - [anon_sym_EQ_TILDE2] = ACTIONS(2758), - [anon_sym_BANG_TILDE2] = ACTIONS(2758), - [anon_sym_like2] = ACTIONS(2758), - [anon_sym_not_DASHlike2] = ACTIONS(2758), - [anon_sym_STAR_STAR2] = ACTIONS(2758), - [anon_sym_PLUS_PLUS2] = ACTIONS(2758), - [anon_sym_SLASH2] = ACTIONS(2760), - [anon_sym_mod2] = ACTIONS(2758), - [anon_sym_SLASH_SLASH2] = ACTIONS(2758), - [anon_sym_PLUS2] = ACTIONS(2760), - [anon_sym_bit_DASHshl2] = ACTIONS(2758), - [anon_sym_bit_DASHshr2] = ACTIONS(2758), - [anon_sym_bit_DASHand2] = ACTIONS(2758), - [anon_sym_bit_DASHxor2] = ACTIONS(2758), - [anon_sym_bit_DASHor2] = ACTIONS(2758), - [anon_sym_err_GT] = ACTIONS(2760), - [anon_sym_out_GT] = ACTIONS(2760), - [anon_sym_e_GT] = ACTIONS(2760), - [anon_sym_o_GT] = ACTIONS(2760), - [anon_sym_err_PLUSout_GT] = ACTIONS(2760), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2760), - [anon_sym_o_PLUSe_GT] = ACTIONS(2760), - [anon_sym_e_PLUSo_GT] = ACTIONS(2760), - [anon_sym_err_GT_GT] = ACTIONS(2758), - [anon_sym_out_GT_GT] = ACTIONS(2758), - [anon_sym_e_GT_GT] = ACTIONS(2758), - [anon_sym_o_GT_GT] = ACTIONS(2758), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2758), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2758), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2758), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2758), + [anon_sym_in] = ACTIONS(2350), + [sym__newline] = ACTIONS(2350), + [anon_sym_SEMI] = ACTIONS(2350), + [anon_sym_PIPE] = ACTIONS(2350), + [anon_sym_err_GT_PIPE] = ACTIONS(2350), + [anon_sym_out_GT_PIPE] = ACTIONS(2350), + [anon_sym_e_GT_PIPE] = ACTIONS(2350), + [anon_sym_o_GT_PIPE] = ACTIONS(2350), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2350), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2350), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2350), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2350), + [anon_sym_RPAREN] = ACTIONS(2350), + [anon_sym_GT2] = ACTIONS(2352), + [anon_sym_DASH2] = ACTIONS(2350), + [anon_sym_LBRACE] = ACTIONS(2350), + [anon_sym_STAR2] = ACTIONS(2352), + [anon_sym_and2] = ACTIONS(2350), + [anon_sym_xor2] = ACTIONS(2350), + [anon_sym_or2] = ACTIONS(2350), + [anon_sym_not_DASHin2] = ACTIONS(2350), + [anon_sym_has2] = ACTIONS(2350), + [anon_sym_not_DASHhas2] = ACTIONS(2350), + [anon_sym_starts_DASHwith2] = ACTIONS(2350), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2350), + [anon_sym_ends_DASHwith2] = ACTIONS(2350), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2350), + [anon_sym_EQ_EQ2] = ACTIONS(2350), + [anon_sym_BANG_EQ2] = ACTIONS(2350), + [anon_sym_LT2] = ACTIONS(2352), + [anon_sym_LT_EQ2] = ACTIONS(2350), + [anon_sym_GT_EQ2] = ACTIONS(2350), + [anon_sym_EQ_TILDE2] = ACTIONS(2350), + [anon_sym_BANG_TILDE2] = ACTIONS(2350), + [anon_sym_like2] = ACTIONS(2350), + [anon_sym_not_DASHlike2] = ACTIONS(2350), + [anon_sym_STAR_STAR2] = ACTIONS(2350), + [anon_sym_PLUS_PLUS2] = ACTIONS(2350), + [anon_sym_SLASH2] = ACTIONS(2352), + [anon_sym_mod2] = ACTIONS(2350), + [anon_sym_SLASH_SLASH2] = ACTIONS(2350), + [anon_sym_PLUS2] = ACTIONS(2352), + [anon_sym_bit_DASHshl2] = ACTIONS(2350), + [anon_sym_bit_DASHshr2] = ACTIONS(2350), + [anon_sym_bit_DASHand2] = ACTIONS(2350), + [anon_sym_bit_DASHxor2] = ACTIONS(2350), + [anon_sym_bit_DASHor2] = ACTIONS(2350), + [anon_sym_err_GT] = ACTIONS(2352), + [anon_sym_out_GT] = ACTIONS(2352), + [anon_sym_e_GT] = ACTIONS(2352), + [anon_sym_o_GT] = ACTIONS(2352), + [anon_sym_err_PLUSout_GT] = ACTIONS(2352), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2352), + [anon_sym_o_PLUSe_GT] = ACTIONS(2352), + [anon_sym_e_PLUSo_GT] = ACTIONS(2352), + [anon_sym_err_GT_GT] = ACTIONS(2350), + [anon_sym_out_GT_GT] = ACTIONS(2350), + [anon_sym_e_GT_GT] = ACTIONS(2350), + [anon_sym_o_GT_GT] = ACTIONS(2350), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2350), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2350), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2350), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2350), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1105)] = { - [aux_sym__repeat_newline] = STATE(527), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1105), - [anon_sym_in] = ACTIONS(2758), - [sym__newline] = ACTIONS(2758), - [anon_sym_SEMI] = ACTIONS(2758), - [anon_sym_PIPE] = ACTIONS(2758), - [anon_sym_err_GT_PIPE] = ACTIONS(2758), - [anon_sym_out_GT_PIPE] = ACTIONS(2758), - [anon_sym_e_GT_PIPE] = ACTIONS(2758), - [anon_sym_o_GT_PIPE] = ACTIONS(2758), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2758), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2758), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2758), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2758), - [anon_sym_RPAREN] = ACTIONS(2758), - [anon_sym_GT2] = ACTIONS(2760), - [anon_sym_DASH2] = ACTIONS(2758), - [anon_sym_LBRACE] = ACTIONS(2758), - [anon_sym_STAR2] = ACTIONS(2760), - [anon_sym_and2] = ACTIONS(2758), - [anon_sym_xor2] = ACTIONS(2758), - [anon_sym_or2] = ACTIONS(2758), - [anon_sym_not_DASHin2] = ACTIONS(2758), - [anon_sym_has2] = ACTIONS(2758), - [anon_sym_not_DASHhas2] = ACTIONS(2758), - [anon_sym_starts_DASHwith2] = ACTIONS(2758), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2758), - [anon_sym_ends_DASHwith2] = ACTIONS(2758), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2758), - [anon_sym_EQ_EQ2] = ACTIONS(2758), - [anon_sym_BANG_EQ2] = ACTIONS(2758), - [anon_sym_LT2] = ACTIONS(2760), - [anon_sym_LT_EQ2] = ACTIONS(2758), - [anon_sym_GT_EQ2] = ACTIONS(2758), - [anon_sym_EQ_TILDE2] = ACTIONS(2758), - [anon_sym_BANG_TILDE2] = ACTIONS(2758), - [anon_sym_like2] = ACTIONS(2758), - [anon_sym_not_DASHlike2] = ACTIONS(2758), - [anon_sym_STAR_STAR2] = ACTIONS(2758), - [anon_sym_PLUS_PLUS2] = ACTIONS(2758), - [anon_sym_SLASH2] = ACTIONS(2760), - [anon_sym_mod2] = ACTIONS(2758), - [anon_sym_SLASH_SLASH2] = ACTIONS(2758), - [anon_sym_PLUS2] = ACTIONS(2760), - [anon_sym_bit_DASHshl2] = ACTIONS(2758), - [anon_sym_bit_DASHshr2] = ACTIONS(2758), - [anon_sym_bit_DASHand2] = ACTIONS(2758), - [anon_sym_bit_DASHxor2] = ACTIONS(2758), - [anon_sym_bit_DASHor2] = ACTIONS(2758), - [anon_sym_err_GT] = ACTIONS(2760), - [anon_sym_out_GT] = ACTIONS(2760), - [anon_sym_e_GT] = ACTIONS(2760), - [anon_sym_o_GT] = ACTIONS(2760), - [anon_sym_err_PLUSout_GT] = ACTIONS(2760), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2760), - [anon_sym_o_PLUSe_GT] = ACTIONS(2760), - [anon_sym_e_PLUSo_GT] = ACTIONS(2760), - [anon_sym_err_GT_GT] = ACTIONS(2758), - [anon_sym_out_GT_GT] = ACTIONS(2758), - [anon_sym_e_GT_GT] = ACTIONS(2758), - [anon_sym_o_GT_GT] = ACTIONS(2758), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2758), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2758), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2758), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2758), + [anon_sym_in] = ACTIONS(2802), + [sym__newline] = ACTIONS(2802), + [anon_sym_SEMI] = ACTIONS(2802), + [anon_sym_PIPE] = ACTIONS(2802), + [anon_sym_err_GT_PIPE] = ACTIONS(2802), + [anon_sym_out_GT_PIPE] = ACTIONS(2802), + [anon_sym_e_GT_PIPE] = ACTIONS(2802), + [anon_sym_o_GT_PIPE] = ACTIONS(2802), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2802), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2802), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2802), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2802), + [anon_sym_RPAREN] = ACTIONS(2802), + [anon_sym_GT2] = ACTIONS(2804), + [anon_sym_DASH2] = ACTIONS(2802), + [anon_sym_LBRACE] = ACTIONS(2802), + [anon_sym_STAR2] = ACTIONS(2804), + [anon_sym_and2] = ACTIONS(2802), + [anon_sym_xor2] = ACTIONS(2802), + [anon_sym_or2] = ACTIONS(2802), + [anon_sym_not_DASHin2] = ACTIONS(2802), + [anon_sym_has2] = ACTIONS(2802), + [anon_sym_not_DASHhas2] = ACTIONS(2802), + [anon_sym_starts_DASHwith2] = ACTIONS(2802), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2802), + [anon_sym_ends_DASHwith2] = ACTIONS(2802), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2802), + [anon_sym_EQ_EQ2] = ACTIONS(2802), + [anon_sym_BANG_EQ2] = ACTIONS(2802), + [anon_sym_LT2] = ACTIONS(2804), + [anon_sym_LT_EQ2] = ACTIONS(2802), + [anon_sym_GT_EQ2] = ACTIONS(2802), + [anon_sym_EQ_TILDE2] = ACTIONS(2802), + [anon_sym_BANG_TILDE2] = ACTIONS(2802), + [anon_sym_like2] = ACTIONS(2802), + [anon_sym_not_DASHlike2] = ACTIONS(2802), + [anon_sym_STAR_STAR2] = ACTIONS(2802), + [anon_sym_PLUS_PLUS2] = ACTIONS(2802), + [anon_sym_SLASH2] = ACTIONS(2804), + [anon_sym_mod2] = ACTIONS(2802), + [anon_sym_SLASH_SLASH2] = ACTIONS(2802), + [anon_sym_PLUS2] = ACTIONS(2804), + [anon_sym_bit_DASHshl2] = ACTIONS(2802), + [anon_sym_bit_DASHshr2] = ACTIONS(2802), + [anon_sym_bit_DASHand2] = ACTIONS(2802), + [anon_sym_bit_DASHxor2] = ACTIONS(2802), + [anon_sym_bit_DASHor2] = ACTIONS(2802), + [anon_sym_err_GT] = ACTIONS(2804), + [anon_sym_out_GT] = ACTIONS(2804), + [anon_sym_e_GT] = ACTIONS(2804), + [anon_sym_o_GT] = ACTIONS(2804), + [anon_sym_err_PLUSout_GT] = ACTIONS(2804), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2804), + [anon_sym_o_PLUSe_GT] = ACTIONS(2804), + [anon_sym_e_PLUSo_GT] = ACTIONS(2804), + [anon_sym_err_GT_GT] = ACTIONS(2802), + [anon_sym_out_GT_GT] = ACTIONS(2802), + [anon_sym_e_GT_GT] = ACTIONS(2802), + [anon_sym_o_GT_GT] = ACTIONS(2802), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2802), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2802), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2802), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2802), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1106)] = { - [aux_sym__repeat_newline] = STATE(527), + [aux_sym__repeat_newline] = STATE(1130), [sym_comment] = STATE(1106), - [anon_sym_in] = ACTIONS(2758), - [sym__newline] = ACTIONS(2758), - [anon_sym_SEMI] = ACTIONS(2758), - [anon_sym_PIPE] = ACTIONS(2758), - [anon_sym_err_GT_PIPE] = ACTIONS(2758), - [anon_sym_out_GT_PIPE] = ACTIONS(2758), - [anon_sym_e_GT_PIPE] = ACTIONS(2758), - [anon_sym_o_GT_PIPE] = ACTIONS(2758), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2758), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2758), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2758), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2758), - [anon_sym_RPAREN] = ACTIONS(2758), - [anon_sym_GT2] = ACTIONS(2760), - [anon_sym_DASH2] = ACTIONS(2758), - [anon_sym_LBRACE] = ACTIONS(2758), - [anon_sym_STAR2] = ACTIONS(2760), - [anon_sym_and2] = ACTIONS(2758), - [anon_sym_xor2] = ACTIONS(2758), - [anon_sym_or2] = ACTIONS(2758), - [anon_sym_not_DASHin2] = ACTIONS(2758), - [anon_sym_has2] = ACTIONS(2758), - [anon_sym_not_DASHhas2] = ACTIONS(2758), - [anon_sym_starts_DASHwith2] = ACTIONS(2758), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2758), - [anon_sym_ends_DASHwith2] = ACTIONS(2758), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2758), - [anon_sym_EQ_EQ2] = ACTIONS(2758), - [anon_sym_BANG_EQ2] = ACTIONS(2758), - [anon_sym_LT2] = ACTIONS(2760), - [anon_sym_LT_EQ2] = ACTIONS(2758), - [anon_sym_GT_EQ2] = ACTIONS(2758), - [anon_sym_EQ_TILDE2] = ACTIONS(2758), - [anon_sym_BANG_TILDE2] = ACTIONS(2758), - [anon_sym_like2] = ACTIONS(2758), - [anon_sym_not_DASHlike2] = ACTIONS(2758), - [anon_sym_STAR_STAR2] = ACTIONS(2758), - [anon_sym_PLUS_PLUS2] = ACTIONS(2758), - [anon_sym_SLASH2] = ACTIONS(2760), - [anon_sym_mod2] = ACTIONS(2758), - [anon_sym_SLASH_SLASH2] = ACTIONS(2758), - [anon_sym_PLUS2] = ACTIONS(2760), - [anon_sym_bit_DASHshl2] = ACTIONS(2758), - [anon_sym_bit_DASHshr2] = ACTIONS(2758), - [anon_sym_bit_DASHand2] = ACTIONS(2758), - [anon_sym_bit_DASHxor2] = ACTIONS(2758), - [anon_sym_bit_DASHor2] = ACTIONS(2758), - [anon_sym_err_GT] = ACTIONS(2760), - [anon_sym_out_GT] = ACTIONS(2760), - [anon_sym_e_GT] = ACTIONS(2760), - [anon_sym_o_GT] = ACTIONS(2760), - [anon_sym_err_PLUSout_GT] = ACTIONS(2760), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2760), - [anon_sym_o_PLUSe_GT] = ACTIONS(2760), - [anon_sym_e_PLUSo_GT] = ACTIONS(2760), - [anon_sym_err_GT_GT] = ACTIONS(2758), - [anon_sym_out_GT_GT] = ACTIONS(2758), - [anon_sym_e_GT_GT] = ACTIONS(2758), - [anon_sym_o_GT_GT] = ACTIONS(2758), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2758), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2758), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2758), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2758), + [anon_sym_in] = ACTIONS(2806), + [sym__newline] = ACTIONS(2806), + [anon_sym_SEMI] = ACTIONS(2806), + [anon_sym_PIPE] = ACTIONS(2806), + [anon_sym_err_GT_PIPE] = ACTIONS(2806), + [anon_sym_out_GT_PIPE] = ACTIONS(2806), + [anon_sym_e_GT_PIPE] = ACTIONS(2806), + [anon_sym_o_GT_PIPE] = ACTIONS(2806), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2806), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2806), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2806), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2806), + [anon_sym_RPAREN] = ACTIONS(2806), + [anon_sym_GT2] = ACTIONS(2808), + [anon_sym_DASH2] = ACTIONS(2806), + [anon_sym_LBRACE] = ACTIONS(2806), + [anon_sym_STAR2] = ACTIONS(2808), + [anon_sym_and2] = ACTIONS(2806), + [anon_sym_xor2] = ACTIONS(2806), + [anon_sym_or2] = ACTIONS(2806), + [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(2806), + [anon_sym_BANG_EQ2] = ACTIONS(2806), + [anon_sym_LT2] = ACTIONS(2808), + [anon_sym_LT_EQ2] = ACTIONS(2806), + [anon_sym_GT_EQ2] = ACTIONS(2806), + [anon_sym_EQ_TILDE2] = ACTIONS(2806), + [anon_sym_BANG_TILDE2] = ACTIONS(2806), + [anon_sym_like2] = ACTIONS(2806), + [anon_sym_not_DASHlike2] = ACTIONS(2806), + [anon_sym_STAR_STAR2] = ACTIONS(2806), + [anon_sym_PLUS_PLUS2] = ACTIONS(2806), + [anon_sym_SLASH2] = ACTIONS(2808), + [anon_sym_mod2] = ACTIONS(2806), + [anon_sym_SLASH_SLASH2] = ACTIONS(2806), + [anon_sym_PLUS2] = ACTIONS(2808), + [anon_sym_bit_DASHshl2] = ACTIONS(2806), + [anon_sym_bit_DASHshr2] = ACTIONS(2806), + [anon_sym_bit_DASHand2] = ACTIONS(2806), + [anon_sym_bit_DASHxor2] = ACTIONS(2806), + [anon_sym_bit_DASHor2] = ACTIONS(2806), + [anon_sym_err_GT] = ACTIONS(2808), + [anon_sym_out_GT] = ACTIONS(2808), + [anon_sym_e_GT] = ACTIONS(2808), + [anon_sym_o_GT] = ACTIONS(2808), + [anon_sym_err_PLUSout_GT] = ACTIONS(2808), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2808), + [anon_sym_o_PLUSe_GT] = ACTIONS(2808), + [anon_sym_e_PLUSo_GT] = ACTIONS(2808), + [anon_sym_err_GT_GT] = ACTIONS(2806), + [anon_sym_out_GT_GT] = ACTIONS(2806), + [anon_sym_e_GT_GT] = ACTIONS(2806), + [anon_sym_o_GT_GT] = ACTIONS(2806), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2806), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2806), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2806), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2806), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1107)] = { - [aux_sym__repeat_newline] = STATE(527), + [aux_sym__repeat_newline] = STATE(1132), [sym_comment] = STATE(1107), - [anon_sym_in] = ACTIONS(2758), - [sym__newline] = ACTIONS(2758), - [anon_sym_SEMI] = ACTIONS(2758), - [anon_sym_PIPE] = ACTIONS(2758), - [anon_sym_err_GT_PIPE] = ACTIONS(2758), - [anon_sym_out_GT_PIPE] = ACTIONS(2758), - [anon_sym_e_GT_PIPE] = ACTIONS(2758), - [anon_sym_o_GT_PIPE] = ACTIONS(2758), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2758), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2758), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2758), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2758), - [anon_sym_RPAREN] = ACTIONS(2758), - [anon_sym_GT2] = ACTIONS(2760), - [anon_sym_DASH2] = ACTIONS(2758), - [anon_sym_LBRACE] = ACTIONS(2758), - [anon_sym_STAR2] = ACTIONS(2760), - [anon_sym_and2] = ACTIONS(2758), - [anon_sym_xor2] = ACTIONS(2758), - [anon_sym_or2] = ACTIONS(2758), - [anon_sym_not_DASHin2] = ACTIONS(2758), - [anon_sym_has2] = ACTIONS(2758), - [anon_sym_not_DASHhas2] = ACTIONS(2758), - [anon_sym_starts_DASHwith2] = ACTIONS(2758), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2758), - [anon_sym_ends_DASHwith2] = ACTIONS(2758), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2758), - [anon_sym_EQ_EQ2] = ACTIONS(2758), - [anon_sym_BANG_EQ2] = ACTIONS(2758), - [anon_sym_LT2] = ACTIONS(2760), - [anon_sym_LT_EQ2] = ACTIONS(2758), - [anon_sym_GT_EQ2] = ACTIONS(2758), - [anon_sym_EQ_TILDE2] = ACTIONS(2758), - [anon_sym_BANG_TILDE2] = ACTIONS(2758), - [anon_sym_like2] = ACTIONS(2758), - [anon_sym_not_DASHlike2] = ACTIONS(2758), - [anon_sym_STAR_STAR2] = ACTIONS(2758), - [anon_sym_PLUS_PLUS2] = ACTIONS(2758), - [anon_sym_SLASH2] = ACTIONS(2760), - [anon_sym_mod2] = ACTIONS(2758), - [anon_sym_SLASH_SLASH2] = ACTIONS(2758), - [anon_sym_PLUS2] = ACTIONS(2760), - [anon_sym_bit_DASHshl2] = ACTIONS(2758), - [anon_sym_bit_DASHshr2] = ACTIONS(2758), - [anon_sym_bit_DASHand2] = ACTIONS(2758), - [anon_sym_bit_DASHxor2] = ACTIONS(2758), - [anon_sym_bit_DASHor2] = ACTIONS(2758), - [anon_sym_err_GT] = ACTIONS(2760), - [anon_sym_out_GT] = ACTIONS(2760), - [anon_sym_e_GT] = ACTIONS(2760), - [anon_sym_o_GT] = ACTIONS(2760), - [anon_sym_err_PLUSout_GT] = ACTIONS(2760), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2760), - [anon_sym_o_PLUSe_GT] = ACTIONS(2760), - [anon_sym_e_PLUSo_GT] = ACTIONS(2760), - [anon_sym_err_GT_GT] = ACTIONS(2758), - [anon_sym_out_GT_GT] = ACTIONS(2758), - [anon_sym_e_GT_GT] = ACTIONS(2758), - [anon_sym_o_GT_GT] = ACTIONS(2758), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2758), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2758), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2758), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2758), + [anon_sym_in] = ACTIONS(2350), + [sym__newline] = ACTIONS(2350), + [anon_sym_SEMI] = ACTIONS(2350), + [anon_sym_PIPE] = ACTIONS(2350), + [anon_sym_err_GT_PIPE] = ACTIONS(2350), + [anon_sym_out_GT_PIPE] = ACTIONS(2350), + [anon_sym_e_GT_PIPE] = ACTIONS(2350), + [anon_sym_o_GT_PIPE] = ACTIONS(2350), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2350), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2350), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2350), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2350), + [anon_sym_RPAREN] = ACTIONS(2350), + [anon_sym_GT2] = ACTIONS(2352), + [anon_sym_DASH2] = ACTIONS(2350), + [anon_sym_LBRACE] = ACTIONS(2350), + [anon_sym_STAR2] = ACTIONS(2352), + [anon_sym_and2] = ACTIONS(2350), + [anon_sym_xor2] = ACTIONS(2350), + [anon_sym_or2] = ACTIONS(2350), + [anon_sym_not_DASHin2] = ACTIONS(2350), + [anon_sym_has2] = ACTIONS(2350), + [anon_sym_not_DASHhas2] = ACTIONS(2350), + [anon_sym_starts_DASHwith2] = ACTIONS(2350), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2350), + [anon_sym_ends_DASHwith2] = ACTIONS(2350), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2350), + [anon_sym_EQ_EQ2] = ACTIONS(2350), + [anon_sym_BANG_EQ2] = ACTIONS(2350), + [anon_sym_LT2] = ACTIONS(2352), + [anon_sym_LT_EQ2] = ACTIONS(2350), + [anon_sym_GT_EQ2] = ACTIONS(2350), + [anon_sym_EQ_TILDE2] = ACTIONS(2350), + [anon_sym_BANG_TILDE2] = ACTIONS(2350), + [anon_sym_like2] = ACTIONS(2350), + [anon_sym_not_DASHlike2] = ACTIONS(2350), + [anon_sym_STAR_STAR2] = ACTIONS(2350), + [anon_sym_PLUS_PLUS2] = ACTIONS(2350), + [anon_sym_SLASH2] = ACTIONS(2352), + [anon_sym_mod2] = ACTIONS(2350), + [anon_sym_SLASH_SLASH2] = ACTIONS(2350), + [anon_sym_PLUS2] = ACTIONS(2352), + [anon_sym_bit_DASHshl2] = ACTIONS(2350), + [anon_sym_bit_DASHshr2] = ACTIONS(2350), + [anon_sym_bit_DASHand2] = ACTIONS(2350), + [anon_sym_bit_DASHxor2] = ACTIONS(2350), + [anon_sym_bit_DASHor2] = ACTIONS(2350), + [anon_sym_err_GT] = ACTIONS(2352), + [anon_sym_out_GT] = ACTIONS(2352), + [anon_sym_e_GT] = ACTIONS(2352), + [anon_sym_o_GT] = ACTIONS(2352), + [anon_sym_err_PLUSout_GT] = ACTIONS(2352), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2352), + [anon_sym_o_PLUSe_GT] = ACTIONS(2352), + [anon_sym_e_PLUSo_GT] = ACTIONS(2352), + [anon_sym_err_GT_GT] = ACTIONS(2350), + [anon_sym_out_GT_GT] = ACTIONS(2350), + [anon_sym_e_GT_GT] = ACTIONS(2350), + [anon_sym_o_GT_GT] = ACTIONS(2350), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2350), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2350), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2350), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2350), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1108)] = { - [sym__expr_parenthesized_immediate] = STATE(4884), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1108), - [ts_builtin_sym_end] = ACTIONS(2098), - [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_GT2] = ACTIONS(2100), - [anon_sym_DASH2] = 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(1724), - [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_in] = ACTIONS(2810), + [sym__newline] = ACTIONS(2810), + [anon_sym_SEMI] = ACTIONS(2810), + [anon_sym_PIPE] = ACTIONS(2810), + [anon_sym_err_GT_PIPE] = ACTIONS(2810), + [anon_sym_out_GT_PIPE] = ACTIONS(2810), + [anon_sym_e_GT_PIPE] = ACTIONS(2810), + [anon_sym_o_GT_PIPE] = ACTIONS(2810), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2810), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2810), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2810), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2810), + [anon_sym_RPAREN] = ACTIONS(2810), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2810), + [anon_sym_LBRACE] = ACTIONS(2810), + [anon_sym_STAR2] = ACTIONS(2812), + [anon_sym_and2] = ACTIONS(2810), + [anon_sym_xor2] = ACTIONS(2810), + [anon_sym_or2] = ACTIONS(2810), + [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(2810), + [anon_sym_BANG_EQ2] = ACTIONS(2810), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2810), + [anon_sym_GT_EQ2] = ACTIONS(2810), + [anon_sym_EQ_TILDE2] = ACTIONS(2810), + [anon_sym_BANG_TILDE2] = ACTIONS(2810), + [anon_sym_like2] = ACTIONS(2810), + [anon_sym_not_DASHlike2] = ACTIONS(2810), + [anon_sym_STAR_STAR2] = ACTIONS(2810), + [anon_sym_PLUS_PLUS2] = ACTIONS(2810), + [anon_sym_SLASH2] = ACTIONS(2812), + [anon_sym_mod2] = ACTIONS(2810), + [anon_sym_SLASH_SLASH2] = ACTIONS(2810), + [anon_sym_PLUS2] = ACTIONS(2812), + [anon_sym_bit_DASHshl2] = ACTIONS(2810), + [anon_sym_bit_DASHshr2] = ACTIONS(2810), + [anon_sym_bit_DASHand2] = ACTIONS(2810), + [anon_sym_bit_DASHxor2] = ACTIONS(2810), + [anon_sym_bit_DASHor2] = ACTIONS(2810), + [anon_sym_err_GT] = ACTIONS(2812), + [anon_sym_out_GT] = ACTIONS(2812), + [anon_sym_e_GT] = ACTIONS(2812), + [anon_sym_o_GT] = ACTIONS(2812), + [anon_sym_err_PLUSout_GT] = ACTIONS(2812), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2812), + [anon_sym_o_PLUSe_GT] = ACTIONS(2812), + [anon_sym_e_PLUSo_GT] = ACTIONS(2812), + [anon_sym_err_GT_GT] = ACTIONS(2810), + [anon_sym_out_GT_GT] = ACTIONS(2810), + [anon_sym_e_GT_GT] = ACTIONS(2810), + [anon_sym_o_GT_GT] = ACTIONS(2810), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2810), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2810), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2810), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2810), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1109)] = { - [aux_sym__repeat_newline] = STATE(1005), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1109), - [anon_sym_in] = ACTIONS(2302), - [sym__newline] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_PIPE] = ACTIONS(2302), - [anon_sym_err_GT_PIPE] = ACTIONS(2302), - [anon_sym_out_GT_PIPE] = ACTIONS(2302), - [anon_sym_e_GT_PIPE] = ACTIONS(2302), - [anon_sym_o_GT_PIPE] = ACTIONS(2302), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2302), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2302), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2302), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2302), - [anon_sym_RPAREN] = ACTIONS(2302), - [anon_sym_GT2] = ACTIONS(2304), - [anon_sym_DASH2] = ACTIONS(2302), - [anon_sym_LBRACE] = ACTIONS(2302), - [anon_sym_STAR2] = ACTIONS(2304), - [anon_sym_and2] = ACTIONS(2302), - [anon_sym_xor2] = ACTIONS(2302), - [anon_sym_or2] = ACTIONS(2302), - [anon_sym_not_DASHin2] = ACTIONS(2302), - [anon_sym_has2] = ACTIONS(2302), - [anon_sym_not_DASHhas2] = ACTIONS(2302), - [anon_sym_starts_DASHwith2] = ACTIONS(2302), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2302), - [anon_sym_ends_DASHwith2] = ACTIONS(2302), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2302), - [anon_sym_EQ_EQ2] = ACTIONS(2302), - [anon_sym_BANG_EQ2] = ACTIONS(2302), - [anon_sym_LT2] = ACTIONS(2304), - [anon_sym_LT_EQ2] = ACTIONS(2302), - [anon_sym_GT_EQ2] = ACTIONS(2302), - [anon_sym_EQ_TILDE2] = ACTIONS(2302), - [anon_sym_BANG_TILDE2] = ACTIONS(2302), - [anon_sym_like2] = ACTIONS(2302), - [anon_sym_not_DASHlike2] = ACTIONS(2302), - [anon_sym_STAR_STAR2] = ACTIONS(2302), - [anon_sym_PLUS_PLUS2] = ACTIONS(2302), - [anon_sym_SLASH2] = ACTIONS(2304), - [anon_sym_mod2] = ACTIONS(2302), - [anon_sym_SLASH_SLASH2] = ACTIONS(2302), - [anon_sym_PLUS2] = ACTIONS(2304), - [anon_sym_bit_DASHshl2] = ACTIONS(2302), - [anon_sym_bit_DASHshr2] = ACTIONS(2302), - [anon_sym_bit_DASHand2] = ACTIONS(2302), - [anon_sym_bit_DASHxor2] = ACTIONS(2302), - [anon_sym_bit_DASHor2] = ACTIONS(2302), - [anon_sym_err_GT] = ACTIONS(2304), - [anon_sym_out_GT] = ACTIONS(2304), - [anon_sym_e_GT] = ACTIONS(2304), - [anon_sym_o_GT] = ACTIONS(2304), - [anon_sym_err_PLUSout_GT] = ACTIONS(2304), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2304), - [anon_sym_o_PLUSe_GT] = ACTIONS(2304), - [anon_sym_e_PLUSo_GT] = ACTIONS(2304), - [anon_sym_err_GT_GT] = ACTIONS(2302), - [anon_sym_out_GT_GT] = ACTIONS(2302), - [anon_sym_e_GT_GT] = ACTIONS(2302), - [anon_sym_o_GT_GT] = ACTIONS(2302), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2302), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2302), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2302), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2302), + [anon_sym_in] = ACTIONS(2802), + [sym__newline] = ACTIONS(2802), + [anon_sym_SEMI] = ACTIONS(2802), + [anon_sym_PIPE] = ACTIONS(2802), + [anon_sym_err_GT_PIPE] = ACTIONS(2802), + [anon_sym_out_GT_PIPE] = ACTIONS(2802), + [anon_sym_e_GT_PIPE] = ACTIONS(2802), + [anon_sym_o_GT_PIPE] = ACTIONS(2802), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2802), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2802), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2802), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2802), + [anon_sym_RPAREN] = ACTIONS(2802), + [anon_sym_GT2] = ACTIONS(2804), + [anon_sym_DASH2] = ACTIONS(2802), + [anon_sym_LBRACE] = ACTIONS(2802), + [anon_sym_STAR2] = ACTIONS(2804), + [anon_sym_and2] = ACTIONS(2802), + [anon_sym_xor2] = ACTIONS(2802), + [anon_sym_or2] = ACTIONS(2802), + [anon_sym_not_DASHin2] = ACTIONS(2802), + [anon_sym_has2] = ACTIONS(2802), + [anon_sym_not_DASHhas2] = ACTIONS(2802), + [anon_sym_starts_DASHwith2] = ACTIONS(2802), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2802), + [anon_sym_ends_DASHwith2] = ACTIONS(2802), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2802), + [anon_sym_EQ_EQ2] = ACTIONS(2802), + [anon_sym_BANG_EQ2] = ACTIONS(2802), + [anon_sym_LT2] = ACTIONS(2804), + [anon_sym_LT_EQ2] = ACTIONS(2802), + [anon_sym_GT_EQ2] = ACTIONS(2802), + [anon_sym_EQ_TILDE2] = ACTIONS(2802), + [anon_sym_BANG_TILDE2] = ACTIONS(2802), + [anon_sym_like2] = ACTIONS(2802), + [anon_sym_not_DASHlike2] = ACTIONS(2802), + [anon_sym_STAR_STAR2] = ACTIONS(2802), + [anon_sym_PLUS_PLUS2] = ACTIONS(2802), + [anon_sym_SLASH2] = ACTIONS(2804), + [anon_sym_mod2] = ACTIONS(2802), + [anon_sym_SLASH_SLASH2] = ACTIONS(2802), + [anon_sym_PLUS2] = ACTIONS(2804), + [anon_sym_bit_DASHshl2] = ACTIONS(2802), + [anon_sym_bit_DASHshr2] = ACTIONS(2802), + [anon_sym_bit_DASHand2] = ACTIONS(2802), + [anon_sym_bit_DASHxor2] = ACTIONS(2802), + [anon_sym_bit_DASHor2] = ACTIONS(2802), + [anon_sym_err_GT] = ACTIONS(2804), + [anon_sym_out_GT] = ACTIONS(2804), + [anon_sym_e_GT] = ACTIONS(2804), + [anon_sym_o_GT] = ACTIONS(2804), + [anon_sym_err_PLUSout_GT] = ACTIONS(2804), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2804), + [anon_sym_o_PLUSe_GT] = ACTIONS(2804), + [anon_sym_e_PLUSo_GT] = ACTIONS(2804), + [anon_sym_err_GT_GT] = ACTIONS(2802), + [anon_sym_out_GT_GT] = ACTIONS(2802), + [anon_sym_e_GT_GT] = ACTIONS(2802), + [anon_sym_o_GT_GT] = ACTIONS(2802), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2802), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2802), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2802), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2802), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1110)] = { - [sym__expr_parenthesized_immediate] = STATE(5171), + [aux_sym__repeat_newline] = STATE(1133), [sym_comment] = STATE(1110), - [ts_builtin_sym_end] = ACTIONS(2188), - [anon_sym_in] = ACTIONS(2188), - [sym__newline] = ACTIONS(2188), - [anon_sym_SEMI] = ACTIONS(2188), - [anon_sym_PIPE] = ACTIONS(2188), - [anon_sym_err_GT_PIPE] = ACTIONS(2188), - [anon_sym_out_GT_PIPE] = ACTIONS(2188), - [anon_sym_e_GT_PIPE] = ACTIONS(2188), - [anon_sym_o_GT_PIPE] = ACTIONS(2188), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2188), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2188), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2188), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2188), - [anon_sym_GT2] = ACTIONS(2190), - [anon_sym_DASH2] = ACTIONS(2188), - [anon_sym_STAR2] = ACTIONS(2190), - [anon_sym_and2] = ACTIONS(2188), - [anon_sym_xor2] = ACTIONS(2188), - [anon_sym_or2] = ACTIONS(2188), - [anon_sym_not_DASHin2] = ACTIONS(2188), - [anon_sym_has2] = ACTIONS(2188), - [anon_sym_not_DASHhas2] = ACTIONS(2188), - [anon_sym_starts_DASHwith2] = ACTIONS(2188), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2188), - [anon_sym_ends_DASHwith2] = ACTIONS(2188), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2188), - [anon_sym_EQ_EQ2] = ACTIONS(2188), - [anon_sym_BANG_EQ2] = ACTIONS(2188), - [anon_sym_LT2] = ACTIONS(2190), - [anon_sym_LT_EQ2] = ACTIONS(2188), - [anon_sym_GT_EQ2] = ACTIONS(2188), - [anon_sym_EQ_TILDE2] = ACTIONS(2188), - [anon_sym_BANG_TILDE2] = ACTIONS(2188), - [anon_sym_like2] = ACTIONS(2188), - [anon_sym_not_DASHlike2] = ACTIONS(2188), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_STAR_STAR2] = ACTIONS(2188), - [anon_sym_PLUS_PLUS2] = ACTIONS(2188), - [anon_sym_SLASH2] = ACTIONS(2190), - [anon_sym_mod2] = ACTIONS(2188), - [anon_sym_SLASH_SLASH2] = ACTIONS(2188), - [anon_sym_PLUS2] = ACTIONS(2190), - [anon_sym_bit_DASHshl2] = ACTIONS(2188), - [anon_sym_bit_DASHshr2] = ACTIONS(2188), - [anon_sym_bit_DASHand2] = ACTIONS(2188), - [anon_sym_bit_DASHxor2] = ACTIONS(2188), - [anon_sym_bit_DASHor2] = ACTIONS(2188), - [anon_sym_err_GT] = ACTIONS(2190), - [anon_sym_out_GT] = ACTIONS(2190), - [anon_sym_e_GT] = ACTIONS(2190), - [anon_sym_o_GT] = ACTIONS(2190), - [anon_sym_err_PLUSout_GT] = ACTIONS(2190), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2190), - [anon_sym_o_PLUSe_GT] = ACTIONS(2190), - [anon_sym_e_PLUSo_GT] = ACTIONS(2190), - [anon_sym_err_GT_GT] = ACTIONS(2188), - [anon_sym_out_GT_GT] = ACTIONS(2188), - [anon_sym_e_GT_GT] = ACTIONS(2188), - [anon_sym_o_GT_GT] = ACTIONS(2188), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2188), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2188), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2188), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2188), + [anon_sym_in] = ACTIONS(2350), + [sym__newline] = ACTIONS(2350), + [anon_sym_SEMI] = ACTIONS(2350), + [anon_sym_PIPE] = ACTIONS(2350), + [anon_sym_err_GT_PIPE] = ACTIONS(2350), + [anon_sym_out_GT_PIPE] = ACTIONS(2350), + [anon_sym_e_GT_PIPE] = ACTIONS(2350), + [anon_sym_o_GT_PIPE] = ACTIONS(2350), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2350), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2350), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2350), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2350), + [anon_sym_RPAREN] = ACTIONS(2350), + [anon_sym_GT2] = ACTIONS(2352), + [anon_sym_DASH2] = ACTIONS(2350), + [anon_sym_LBRACE] = ACTIONS(2350), + [anon_sym_STAR2] = ACTIONS(2352), + [anon_sym_and2] = ACTIONS(2350), + [anon_sym_xor2] = ACTIONS(2350), + [anon_sym_or2] = ACTIONS(2350), + [anon_sym_not_DASHin2] = ACTIONS(2350), + [anon_sym_has2] = ACTIONS(2350), + [anon_sym_not_DASHhas2] = ACTIONS(2350), + [anon_sym_starts_DASHwith2] = ACTIONS(2350), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2350), + [anon_sym_ends_DASHwith2] = ACTIONS(2350), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2350), + [anon_sym_EQ_EQ2] = ACTIONS(2350), + [anon_sym_BANG_EQ2] = ACTIONS(2350), + [anon_sym_LT2] = ACTIONS(2352), + [anon_sym_LT_EQ2] = ACTIONS(2350), + [anon_sym_GT_EQ2] = ACTIONS(2350), + [anon_sym_EQ_TILDE2] = ACTIONS(2350), + [anon_sym_BANG_TILDE2] = ACTIONS(2350), + [anon_sym_like2] = ACTIONS(2350), + [anon_sym_not_DASHlike2] = ACTIONS(2350), + [anon_sym_STAR_STAR2] = ACTIONS(2350), + [anon_sym_PLUS_PLUS2] = ACTIONS(2350), + [anon_sym_SLASH2] = ACTIONS(2352), + [anon_sym_mod2] = ACTIONS(2350), + [anon_sym_SLASH_SLASH2] = ACTIONS(2350), + [anon_sym_PLUS2] = ACTIONS(2352), + [anon_sym_bit_DASHshl2] = ACTIONS(2350), + [anon_sym_bit_DASHshr2] = ACTIONS(2350), + [anon_sym_bit_DASHand2] = ACTIONS(2350), + [anon_sym_bit_DASHxor2] = ACTIONS(2350), + [anon_sym_bit_DASHor2] = ACTIONS(2350), + [anon_sym_err_GT] = ACTIONS(2352), + [anon_sym_out_GT] = ACTIONS(2352), + [anon_sym_e_GT] = ACTIONS(2352), + [anon_sym_o_GT] = ACTIONS(2352), + [anon_sym_err_PLUSout_GT] = ACTIONS(2352), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2352), + [anon_sym_o_PLUSe_GT] = ACTIONS(2352), + [anon_sym_e_PLUSo_GT] = ACTIONS(2352), + [anon_sym_err_GT_GT] = ACTIONS(2350), + [anon_sym_out_GT_GT] = ACTIONS(2350), + [anon_sym_e_GT_GT] = ACTIONS(2350), + [anon_sym_o_GT_GT] = ACTIONS(2350), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2350), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2350), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2350), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2350), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1111)] = { - [aux_sym__repeat_newline] = STATE(1008), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1111), - [anon_sym_in] = ACTIONS(2302), - [sym__newline] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_PIPE] = ACTIONS(2302), - [anon_sym_err_GT_PIPE] = ACTIONS(2302), - [anon_sym_out_GT_PIPE] = ACTIONS(2302), - [anon_sym_e_GT_PIPE] = ACTIONS(2302), - [anon_sym_o_GT_PIPE] = ACTIONS(2302), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2302), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2302), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2302), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2302), - [anon_sym_RPAREN] = ACTIONS(2302), - [anon_sym_GT2] = ACTIONS(2304), - [anon_sym_DASH2] = ACTIONS(2302), - [anon_sym_LBRACE] = ACTIONS(2302), - [anon_sym_STAR2] = ACTIONS(2304), - [anon_sym_and2] = ACTIONS(2302), - [anon_sym_xor2] = ACTIONS(2302), - [anon_sym_or2] = ACTIONS(2302), - [anon_sym_not_DASHin2] = ACTIONS(2302), - [anon_sym_has2] = ACTIONS(2302), - [anon_sym_not_DASHhas2] = ACTIONS(2302), - [anon_sym_starts_DASHwith2] = ACTIONS(2302), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2302), - [anon_sym_ends_DASHwith2] = ACTIONS(2302), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2302), - [anon_sym_EQ_EQ2] = ACTIONS(2302), - [anon_sym_BANG_EQ2] = ACTIONS(2302), - [anon_sym_LT2] = ACTIONS(2304), - [anon_sym_LT_EQ2] = ACTIONS(2302), - [anon_sym_GT_EQ2] = ACTIONS(2302), - [anon_sym_EQ_TILDE2] = ACTIONS(2302), - [anon_sym_BANG_TILDE2] = ACTIONS(2302), - [anon_sym_like2] = ACTIONS(2302), - [anon_sym_not_DASHlike2] = ACTIONS(2302), - [anon_sym_STAR_STAR2] = ACTIONS(2302), - [anon_sym_PLUS_PLUS2] = ACTIONS(2302), - [anon_sym_SLASH2] = ACTIONS(2304), - [anon_sym_mod2] = ACTIONS(2302), - [anon_sym_SLASH_SLASH2] = ACTIONS(2302), - [anon_sym_PLUS2] = ACTIONS(2304), - [anon_sym_bit_DASHshl2] = ACTIONS(2302), - [anon_sym_bit_DASHshr2] = ACTIONS(2302), - [anon_sym_bit_DASHand2] = ACTIONS(2302), - [anon_sym_bit_DASHxor2] = ACTIONS(2302), - [anon_sym_bit_DASHor2] = ACTIONS(2302), - [anon_sym_err_GT] = ACTIONS(2304), - [anon_sym_out_GT] = ACTIONS(2304), - [anon_sym_e_GT] = ACTIONS(2304), - [anon_sym_o_GT] = ACTIONS(2304), - [anon_sym_err_PLUSout_GT] = ACTIONS(2304), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2304), - [anon_sym_o_PLUSe_GT] = ACTIONS(2304), - [anon_sym_e_PLUSo_GT] = ACTIONS(2304), - [anon_sym_err_GT_GT] = ACTIONS(2302), - [anon_sym_out_GT_GT] = ACTIONS(2302), - [anon_sym_e_GT_GT] = ACTIONS(2302), - [anon_sym_o_GT_GT] = ACTIONS(2302), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2302), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2302), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2302), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2302), + [anon_sym_in] = ACTIONS(2802), + [sym__newline] = ACTIONS(2802), + [anon_sym_SEMI] = ACTIONS(2802), + [anon_sym_PIPE] = ACTIONS(2802), + [anon_sym_err_GT_PIPE] = ACTIONS(2802), + [anon_sym_out_GT_PIPE] = ACTIONS(2802), + [anon_sym_e_GT_PIPE] = ACTIONS(2802), + [anon_sym_o_GT_PIPE] = ACTIONS(2802), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2802), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2802), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2802), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2802), + [anon_sym_RPAREN] = ACTIONS(2802), + [anon_sym_GT2] = ACTIONS(2804), + [anon_sym_DASH2] = ACTIONS(2802), + [anon_sym_LBRACE] = ACTIONS(2802), + [anon_sym_STAR2] = ACTIONS(2804), + [anon_sym_and2] = ACTIONS(2802), + [anon_sym_xor2] = ACTIONS(2802), + [anon_sym_or2] = ACTIONS(2802), + [anon_sym_not_DASHin2] = ACTIONS(2802), + [anon_sym_has2] = ACTIONS(2802), + [anon_sym_not_DASHhas2] = ACTIONS(2802), + [anon_sym_starts_DASHwith2] = ACTIONS(2802), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2802), + [anon_sym_ends_DASHwith2] = ACTIONS(2802), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2802), + [anon_sym_EQ_EQ2] = ACTIONS(2802), + [anon_sym_BANG_EQ2] = ACTIONS(2802), + [anon_sym_LT2] = ACTIONS(2804), + [anon_sym_LT_EQ2] = ACTIONS(2802), + [anon_sym_GT_EQ2] = ACTIONS(2802), + [anon_sym_EQ_TILDE2] = ACTIONS(2802), + [anon_sym_BANG_TILDE2] = ACTIONS(2802), + [anon_sym_like2] = ACTIONS(2802), + [anon_sym_not_DASHlike2] = ACTIONS(2802), + [anon_sym_STAR_STAR2] = ACTIONS(2802), + [anon_sym_PLUS_PLUS2] = ACTIONS(2802), + [anon_sym_SLASH2] = ACTIONS(2804), + [anon_sym_mod2] = ACTIONS(2802), + [anon_sym_SLASH_SLASH2] = ACTIONS(2802), + [anon_sym_PLUS2] = ACTIONS(2804), + [anon_sym_bit_DASHshl2] = ACTIONS(2802), + [anon_sym_bit_DASHshr2] = ACTIONS(2802), + [anon_sym_bit_DASHand2] = ACTIONS(2802), + [anon_sym_bit_DASHxor2] = ACTIONS(2802), + [anon_sym_bit_DASHor2] = ACTIONS(2802), + [anon_sym_err_GT] = ACTIONS(2804), + [anon_sym_out_GT] = ACTIONS(2804), + [anon_sym_e_GT] = ACTIONS(2804), + [anon_sym_o_GT] = ACTIONS(2804), + [anon_sym_err_PLUSout_GT] = ACTIONS(2804), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2804), + [anon_sym_o_PLUSe_GT] = ACTIONS(2804), + [anon_sym_e_PLUSo_GT] = ACTIONS(2804), + [anon_sym_err_GT_GT] = ACTIONS(2802), + [anon_sym_out_GT_GT] = ACTIONS(2802), + [anon_sym_e_GT_GT] = ACTIONS(2802), + [anon_sym_o_GT_GT] = ACTIONS(2802), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2802), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2802), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2802), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2802), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1112)] = { - [sym__expr_parenthesized_immediate] = STATE(5171), + [aux_sym__repeat_newline] = STATE(1134), [sym_comment] = STATE(1112), - [ts_builtin_sym_end] = ACTIONS(2178), - [anon_sym_in] = ACTIONS(2178), - [sym__newline] = ACTIONS(2178), - [anon_sym_SEMI] = ACTIONS(2178), - [anon_sym_PIPE] = ACTIONS(2178), - [anon_sym_err_GT_PIPE] = ACTIONS(2178), - [anon_sym_out_GT_PIPE] = ACTIONS(2178), - [anon_sym_e_GT_PIPE] = ACTIONS(2178), - [anon_sym_o_GT_PIPE] = ACTIONS(2178), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2178), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2178), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2178), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2178), - [anon_sym_GT2] = ACTIONS(2180), - [anon_sym_DASH2] = ACTIONS(2178), - [anon_sym_STAR2] = ACTIONS(2180), - [anon_sym_and2] = ACTIONS(2178), - [anon_sym_xor2] = ACTIONS(2178), - [anon_sym_or2] = ACTIONS(2178), - [anon_sym_not_DASHin2] = ACTIONS(2178), - [anon_sym_has2] = ACTIONS(2178), - [anon_sym_not_DASHhas2] = ACTIONS(2178), - [anon_sym_starts_DASHwith2] = ACTIONS(2178), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2178), - [anon_sym_ends_DASHwith2] = ACTIONS(2178), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2178), - [anon_sym_EQ_EQ2] = ACTIONS(2178), - [anon_sym_BANG_EQ2] = ACTIONS(2178), - [anon_sym_LT2] = ACTIONS(2180), - [anon_sym_LT_EQ2] = ACTIONS(2178), - [anon_sym_GT_EQ2] = ACTIONS(2178), - [anon_sym_EQ_TILDE2] = ACTIONS(2178), - [anon_sym_BANG_TILDE2] = ACTIONS(2178), - [anon_sym_like2] = ACTIONS(2178), - [anon_sym_not_DASHlike2] = ACTIONS(2178), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_STAR_STAR2] = ACTIONS(2178), - [anon_sym_PLUS_PLUS2] = ACTIONS(2178), - [anon_sym_SLASH2] = ACTIONS(2180), - [anon_sym_mod2] = ACTIONS(2178), - [anon_sym_SLASH_SLASH2] = ACTIONS(2178), - [anon_sym_PLUS2] = ACTIONS(2180), - [anon_sym_bit_DASHshl2] = ACTIONS(2178), - [anon_sym_bit_DASHshr2] = ACTIONS(2178), - [anon_sym_bit_DASHand2] = ACTIONS(2178), - [anon_sym_bit_DASHxor2] = ACTIONS(2178), - [anon_sym_bit_DASHor2] = ACTIONS(2178), - [anon_sym_err_GT] = ACTIONS(2180), - [anon_sym_out_GT] = ACTIONS(2180), - [anon_sym_e_GT] = ACTIONS(2180), - [anon_sym_o_GT] = ACTIONS(2180), - [anon_sym_err_PLUSout_GT] = ACTIONS(2180), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2180), - [anon_sym_o_PLUSe_GT] = ACTIONS(2180), - [anon_sym_e_PLUSo_GT] = ACTIONS(2180), - [anon_sym_err_GT_GT] = ACTIONS(2178), - [anon_sym_out_GT_GT] = ACTIONS(2178), - [anon_sym_e_GT_GT] = ACTIONS(2178), - [anon_sym_o_GT_GT] = ACTIONS(2178), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2178), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2178), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2178), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2178), + [anon_sym_in] = ACTIONS(2350), + [sym__newline] = ACTIONS(2350), + [anon_sym_SEMI] = ACTIONS(2350), + [anon_sym_PIPE] = ACTIONS(2350), + [anon_sym_err_GT_PIPE] = ACTIONS(2350), + [anon_sym_out_GT_PIPE] = ACTIONS(2350), + [anon_sym_e_GT_PIPE] = ACTIONS(2350), + [anon_sym_o_GT_PIPE] = ACTIONS(2350), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2350), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2350), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2350), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2350), + [anon_sym_RPAREN] = ACTIONS(2350), + [anon_sym_GT2] = ACTIONS(2352), + [anon_sym_DASH2] = ACTIONS(2350), + [anon_sym_LBRACE] = ACTIONS(2350), + [anon_sym_STAR2] = ACTIONS(2352), + [anon_sym_and2] = ACTIONS(2350), + [anon_sym_xor2] = ACTIONS(2350), + [anon_sym_or2] = ACTIONS(2350), + [anon_sym_not_DASHin2] = ACTIONS(2350), + [anon_sym_has2] = ACTIONS(2350), + [anon_sym_not_DASHhas2] = ACTIONS(2350), + [anon_sym_starts_DASHwith2] = ACTIONS(2350), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2350), + [anon_sym_ends_DASHwith2] = ACTIONS(2350), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2350), + [anon_sym_EQ_EQ2] = ACTIONS(2350), + [anon_sym_BANG_EQ2] = ACTIONS(2350), + [anon_sym_LT2] = ACTIONS(2352), + [anon_sym_LT_EQ2] = ACTIONS(2350), + [anon_sym_GT_EQ2] = ACTIONS(2350), + [anon_sym_EQ_TILDE2] = ACTIONS(2350), + [anon_sym_BANG_TILDE2] = ACTIONS(2350), + [anon_sym_like2] = ACTIONS(2350), + [anon_sym_not_DASHlike2] = ACTIONS(2350), + [anon_sym_STAR_STAR2] = ACTIONS(2350), + [anon_sym_PLUS_PLUS2] = ACTIONS(2350), + [anon_sym_SLASH2] = ACTIONS(2352), + [anon_sym_mod2] = ACTIONS(2350), + [anon_sym_SLASH_SLASH2] = ACTIONS(2350), + [anon_sym_PLUS2] = ACTIONS(2352), + [anon_sym_bit_DASHshl2] = ACTIONS(2350), + [anon_sym_bit_DASHshr2] = ACTIONS(2350), + [anon_sym_bit_DASHand2] = ACTIONS(2350), + [anon_sym_bit_DASHxor2] = ACTIONS(2350), + [anon_sym_bit_DASHor2] = ACTIONS(2350), + [anon_sym_err_GT] = ACTIONS(2352), + [anon_sym_out_GT] = ACTIONS(2352), + [anon_sym_e_GT] = ACTIONS(2352), + [anon_sym_o_GT] = ACTIONS(2352), + [anon_sym_err_PLUSout_GT] = ACTIONS(2352), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2352), + [anon_sym_o_PLUSe_GT] = ACTIONS(2352), + [anon_sym_e_PLUSo_GT] = ACTIONS(2352), + [anon_sym_err_GT_GT] = ACTIONS(2350), + [anon_sym_out_GT_GT] = ACTIONS(2350), + [anon_sym_e_GT_GT] = ACTIONS(2350), + [anon_sym_o_GT_GT] = ACTIONS(2350), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2350), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2350), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2350), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2350), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1113)] = { - [aux_sym__repeat_newline] = STATE(1010), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1113), - [anon_sym_in] = ACTIONS(2302), - [sym__newline] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_PIPE] = ACTIONS(2302), - [anon_sym_err_GT_PIPE] = ACTIONS(2302), - [anon_sym_out_GT_PIPE] = ACTIONS(2302), - [anon_sym_e_GT_PIPE] = ACTIONS(2302), - [anon_sym_o_GT_PIPE] = ACTIONS(2302), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2302), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2302), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2302), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2302), - [anon_sym_RPAREN] = ACTIONS(2302), - [anon_sym_GT2] = ACTIONS(2304), - [anon_sym_DASH2] = ACTIONS(2302), - [anon_sym_LBRACE] = ACTIONS(2302), - [anon_sym_STAR2] = ACTIONS(2304), - [anon_sym_and2] = ACTIONS(2302), - [anon_sym_xor2] = ACTIONS(2302), - [anon_sym_or2] = ACTIONS(2302), - [anon_sym_not_DASHin2] = ACTIONS(2302), - [anon_sym_has2] = ACTIONS(2302), - [anon_sym_not_DASHhas2] = ACTIONS(2302), - [anon_sym_starts_DASHwith2] = ACTIONS(2302), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2302), - [anon_sym_ends_DASHwith2] = ACTIONS(2302), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2302), - [anon_sym_EQ_EQ2] = ACTIONS(2302), - [anon_sym_BANG_EQ2] = ACTIONS(2302), - [anon_sym_LT2] = ACTIONS(2304), - [anon_sym_LT_EQ2] = ACTIONS(2302), - [anon_sym_GT_EQ2] = ACTIONS(2302), - [anon_sym_EQ_TILDE2] = ACTIONS(2302), - [anon_sym_BANG_TILDE2] = ACTIONS(2302), - [anon_sym_like2] = ACTIONS(2302), - [anon_sym_not_DASHlike2] = ACTIONS(2302), - [anon_sym_STAR_STAR2] = ACTIONS(2302), - [anon_sym_PLUS_PLUS2] = ACTIONS(2302), - [anon_sym_SLASH2] = ACTIONS(2304), - [anon_sym_mod2] = ACTIONS(2302), - [anon_sym_SLASH_SLASH2] = ACTIONS(2302), - [anon_sym_PLUS2] = ACTIONS(2304), - [anon_sym_bit_DASHshl2] = ACTIONS(2302), - [anon_sym_bit_DASHshr2] = ACTIONS(2302), - [anon_sym_bit_DASHand2] = ACTIONS(2302), - [anon_sym_bit_DASHxor2] = ACTIONS(2302), - [anon_sym_bit_DASHor2] = ACTIONS(2302), - [anon_sym_err_GT] = ACTIONS(2304), - [anon_sym_out_GT] = ACTIONS(2304), - [anon_sym_e_GT] = ACTIONS(2304), - [anon_sym_o_GT] = ACTIONS(2304), - [anon_sym_err_PLUSout_GT] = ACTIONS(2304), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2304), - [anon_sym_o_PLUSe_GT] = ACTIONS(2304), - [anon_sym_e_PLUSo_GT] = ACTIONS(2304), - [anon_sym_err_GT_GT] = ACTIONS(2302), - [anon_sym_out_GT_GT] = ACTIONS(2302), - [anon_sym_e_GT_GT] = ACTIONS(2302), - [anon_sym_o_GT_GT] = ACTIONS(2302), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2302), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2302), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2302), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2302), + [anon_sym_in] = ACTIONS(2802), + [sym__newline] = ACTIONS(2802), + [anon_sym_SEMI] = ACTIONS(2802), + [anon_sym_PIPE] = ACTIONS(2802), + [anon_sym_err_GT_PIPE] = ACTIONS(2802), + [anon_sym_out_GT_PIPE] = ACTIONS(2802), + [anon_sym_e_GT_PIPE] = ACTIONS(2802), + [anon_sym_o_GT_PIPE] = ACTIONS(2802), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2802), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2802), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2802), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2802), + [anon_sym_RPAREN] = ACTIONS(2802), + [anon_sym_GT2] = ACTIONS(2804), + [anon_sym_DASH2] = ACTIONS(2802), + [anon_sym_LBRACE] = ACTIONS(2802), + [anon_sym_STAR2] = ACTIONS(2804), + [anon_sym_and2] = ACTIONS(2802), + [anon_sym_xor2] = ACTIONS(2802), + [anon_sym_or2] = ACTIONS(2802), + [anon_sym_not_DASHin2] = ACTIONS(2802), + [anon_sym_has2] = ACTIONS(2802), + [anon_sym_not_DASHhas2] = ACTIONS(2802), + [anon_sym_starts_DASHwith2] = ACTIONS(2802), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2802), + [anon_sym_ends_DASHwith2] = ACTIONS(2802), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2802), + [anon_sym_EQ_EQ2] = ACTIONS(2802), + [anon_sym_BANG_EQ2] = ACTIONS(2802), + [anon_sym_LT2] = ACTIONS(2804), + [anon_sym_LT_EQ2] = ACTIONS(2802), + [anon_sym_GT_EQ2] = ACTIONS(2802), + [anon_sym_EQ_TILDE2] = ACTIONS(2802), + [anon_sym_BANG_TILDE2] = ACTIONS(2802), + [anon_sym_like2] = ACTIONS(2802), + [anon_sym_not_DASHlike2] = ACTIONS(2802), + [anon_sym_STAR_STAR2] = ACTIONS(2802), + [anon_sym_PLUS_PLUS2] = ACTIONS(2802), + [anon_sym_SLASH2] = ACTIONS(2804), + [anon_sym_mod2] = ACTIONS(2802), + [anon_sym_SLASH_SLASH2] = ACTIONS(2802), + [anon_sym_PLUS2] = ACTIONS(2804), + [anon_sym_bit_DASHshl2] = ACTIONS(2802), + [anon_sym_bit_DASHshr2] = ACTIONS(2802), + [anon_sym_bit_DASHand2] = ACTIONS(2802), + [anon_sym_bit_DASHxor2] = ACTIONS(2802), + [anon_sym_bit_DASHor2] = ACTIONS(2802), + [anon_sym_err_GT] = ACTIONS(2804), + [anon_sym_out_GT] = ACTIONS(2804), + [anon_sym_e_GT] = ACTIONS(2804), + [anon_sym_o_GT] = ACTIONS(2804), + [anon_sym_err_PLUSout_GT] = ACTIONS(2804), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2804), + [anon_sym_o_PLUSe_GT] = ACTIONS(2804), + [anon_sym_e_PLUSo_GT] = ACTIONS(2804), + [anon_sym_err_GT_GT] = ACTIONS(2802), + [anon_sym_out_GT_GT] = ACTIONS(2802), + [anon_sym_e_GT_GT] = ACTIONS(2802), + [anon_sym_o_GT_GT] = ACTIONS(2802), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2802), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2802), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2802), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2802), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1114)] = { + [aux_sym__repeat_newline] = STATE(1074), [sym_comment] = STATE(1114), - [anon_sym_export] = ACTIONS(2766), - [anon_sym_alias] = ACTIONS(2768), - [anon_sym_let] = ACTIONS(2768), - [anon_sym_mut] = ACTIONS(2768), - [anon_sym_const] = ACTIONS(2768), - [aux_sym_cmd_identifier_token1] = ACTIONS(2766), - [anon_sym_def] = ACTIONS(2768), - [anon_sym_use] = ACTIONS(2768), - [anon_sym_export_DASHenv] = ACTIONS(2768), - [anon_sym_extern] = ACTIONS(2768), - [anon_sym_module] = ACTIONS(2768), - [anon_sym_for] = ACTIONS(2768), - [anon_sym_loop] = ACTIONS(2768), - [anon_sym_while] = ACTIONS(2768), - [anon_sym_if] = ACTIONS(2768), - [anon_sym_else] = ACTIONS(2768), - [anon_sym_try] = ACTIONS(2768), - [anon_sym_catch] = ACTIONS(2768), - [anon_sym_match] = ACTIONS(2768), - [anon_sym_in] = ACTIONS(2766), - [anon_sym_true] = ACTIONS(2768), - [anon_sym_false] = ACTIONS(2768), - [anon_sym_null] = ACTIONS(2768), - [aux_sym_cmd_identifier_token3] = ACTIONS(2768), - [aux_sym_cmd_identifier_token4] = ACTIONS(2768), - [aux_sym_cmd_identifier_token5] = ACTIONS(2768), - [sym__newline] = ACTIONS(2768), - [anon_sym_PIPE] = ACTIONS(2768), - [anon_sym_err_GT_PIPE] = ACTIONS(2768), - [anon_sym_out_GT_PIPE] = ACTIONS(2768), - [anon_sym_e_GT_PIPE] = ACTIONS(2768), - [anon_sym_o_GT_PIPE] = ACTIONS(2768), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2768), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2768), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2768), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2768), - [anon_sym_LBRACK] = ACTIONS(2768), - [anon_sym_LPAREN] = ACTIONS(2768), - [anon_sym_DOLLAR] = ACTIONS(2766), - [anon_sym_DASH2] = ACTIONS(2766), - [anon_sym_LBRACE] = ACTIONS(2768), - [anon_sym_DOT_DOT] = ACTIONS(2766), - [anon_sym_where] = ACTIONS(2768), - [aux_sym_expr_unary_token1] = ACTIONS(2768), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2768), - [anon_sym_DOT_DOT_LT] = ACTIONS(2768), - [aux_sym__val_number_decimal_token1] = ACTIONS(2766), - [aux_sym__val_number_decimal_token2] = ACTIONS(2768), - [aux_sym__val_number_decimal_token3] = ACTIONS(2768), - [aux_sym__val_number_decimal_token4] = ACTIONS(2768), - [aux_sym__val_number_token1] = ACTIONS(2768), - [aux_sym__val_number_token2] = ACTIONS(2768), - [aux_sym__val_number_token3] = ACTIONS(2768), - [anon_sym_0b] = ACTIONS(2766), - [anon_sym_0o] = ACTIONS(2766), - [anon_sym_0x] = ACTIONS(2766), - [sym_val_date] = ACTIONS(2768), - [anon_sym_DQUOTE] = ACTIONS(2768), - [anon_sym_SQUOTE] = ACTIONS(2768), - [anon_sym_BQUOTE] = ACTIONS(2768), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2768), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2768), - [anon_sym_CARET] = ACTIONS(2768), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2768), + [anon_sym_in] = ACTIONS(2541), + [sym__newline] = ACTIONS(2541), + [anon_sym_SEMI] = ACTIONS(2541), + [anon_sym_PIPE] = ACTIONS(2541), + [anon_sym_err_GT_PIPE] = ACTIONS(2541), + [anon_sym_out_GT_PIPE] = ACTIONS(2541), + [anon_sym_e_GT_PIPE] = ACTIONS(2541), + [anon_sym_o_GT_PIPE] = ACTIONS(2541), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2541), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2541), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2541), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2541), + [anon_sym_RPAREN] = ACTIONS(2541), + [anon_sym_GT2] = ACTIONS(2543), + [anon_sym_DASH2] = ACTIONS(2541), + [anon_sym_LBRACE] = ACTIONS(2541), + [anon_sym_STAR2] = ACTIONS(2543), + [anon_sym_and2] = ACTIONS(2541), + [anon_sym_xor2] = ACTIONS(2541), + [anon_sym_or2] = ACTIONS(2541), + [anon_sym_not_DASHin2] = ACTIONS(2541), + [anon_sym_has2] = ACTIONS(2541), + [anon_sym_not_DASHhas2] = ACTIONS(2541), + [anon_sym_starts_DASHwith2] = ACTIONS(2541), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2541), + [anon_sym_ends_DASHwith2] = ACTIONS(2541), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2541), + [anon_sym_EQ_EQ2] = ACTIONS(2541), + [anon_sym_BANG_EQ2] = ACTIONS(2541), + [anon_sym_LT2] = ACTIONS(2543), + [anon_sym_LT_EQ2] = ACTIONS(2541), + [anon_sym_GT_EQ2] = ACTIONS(2541), + [anon_sym_EQ_TILDE2] = ACTIONS(2541), + [anon_sym_BANG_TILDE2] = ACTIONS(2541), + [anon_sym_like2] = ACTIONS(2541), + [anon_sym_not_DASHlike2] = ACTIONS(2541), + [anon_sym_STAR_STAR2] = ACTIONS(2541), + [anon_sym_PLUS_PLUS2] = ACTIONS(2541), + [anon_sym_SLASH2] = ACTIONS(2543), + [anon_sym_mod2] = ACTIONS(2541), + [anon_sym_SLASH_SLASH2] = ACTIONS(2541), + [anon_sym_PLUS2] = ACTIONS(2543), + [anon_sym_bit_DASHshl2] = ACTIONS(2541), + [anon_sym_bit_DASHshr2] = ACTIONS(2541), + [anon_sym_bit_DASHand2] = ACTIONS(2541), + [anon_sym_bit_DASHxor2] = ACTIONS(2541), + [anon_sym_bit_DASHor2] = ACTIONS(2541), + [anon_sym_err_GT] = ACTIONS(2543), + [anon_sym_out_GT] = ACTIONS(2543), + [anon_sym_e_GT] = ACTIONS(2543), + [anon_sym_o_GT] = ACTIONS(2543), + [anon_sym_err_PLUSout_GT] = ACTIONS(2543), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2543), + [anon_sym_o_PLUSe_GT] = ACTIONS(2543), + [anon_sym_e_PLUSo_GT] = ACTIONS(2543), + [anon_sym_err_GT_GT] = ACTIONS(2541), + [anon_sym_out_GT_GT] = ACTIONS(2541), + [anon_sym_e_GT_GT] = ACTIONS(2541), + [anon_sym_o_GT_GT] = ACTIONS(2541), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2541), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2541), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2541), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2541), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1115)] = { - [sym_expr_unary] = STATE(2974), - [sym__expr_unary_minus] = STATE(1290), - [sym_expr_parenthesized] = STATE(2639), - [sym_val_range] = STATE(2974), - [sym__val_range] = STATE(4744), - [sym__value] = STATE(2974), - [sym_val_nothing] = STATE(1295), - [sym_val_bool] = STATE(2665), - [sym_val_variable] = STATE(2605), - [sym_val_cellpath] = STATE(1295), - [sym_val_number] = STATE(1295), - [sym__val_number_decimal] = STATE(2375), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1295), - [sym_val_filesize] = STATE(1295), - [sym_val_binary] = STATE(1295), - [sym_val_string] = STATE(1295), - [sym__raw_str] = STATE(502), - [sym__str_double_quotes] = STATE(502), - [sym__str_single_quotes] = STATE(502), - [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1295), - [sym__inter_single_quotes] = STATE(1306), - [sym__inter_double_quotes] = STATE(1317), - [sym_val_list] = STATE(1295), - [sym_val_record] = STATE(1295), - [sym_val_table] = STATE(1295), - [sym_val_closure] = STATE(1295), - [sym_unquoted] = STATE(2705), - [sym__unquoted_with_expr] = STATE(2979), - [sym__unquoted_anonymous_prefix] = STATE(4744), + [aux_sym__repeat_newline] = STATE(1135), [sym_comment] = STATE(1115), - [anon_sym_true] = ACTIONS(2770), - [anon_sym_false] = ACTIONS(2770), - [anon_sym_null] = ACTIONS(2772), - [aux_sym_cmd_identifier_token3] = ACTIONS(2774), - [aux_sym_cmd_identifier_token4] = ACTIONS(2774), - [aux_sym_cmd_identifier_token5] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2776), - [anon_sym_LPAREN] = ACTIONS(2778), - [anon_sym_DOLLAR] = ACTIONS(2780), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(2782), - [anon_sym_DOT_DOT] = ACTIONS(2784), - [aux_sym_expr_unary_token1] = ACTIONS(2786), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2788), - [anon_sym_DOT_DOT_LT] = ACTIONS(2788), - [aux_sym__val_number_decimal_token1] = ACTIONS(2790), - [aux_sym__val_number_decimal_token2] = ACTIONS(2792), - [aux_sym__val_number_decimal_token3] = ACTIONS(2794), - [aux_sym__val_number_decimal_token4] = ACTIONS(2794), - [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(2796), - [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(2226), + [anon_sym_in] = ACTIONS(2350), + [sym__newline] = ACTIONS(2350), + [anon_sym_SEMI] = ACTIONS(2350), + [anon_sym_PIPE] = ACTIONS(2350), + [anon_sym_err_GT_PIPE] = ACTIONS(2350), + [anon_sym_out_GT_PIPE] = ACTIONS(2350), + [anon_sym_e_GT_PIPE] = ACTIONS(2350), + [anon_sym_o_GT_PIPE] = ACTIONS(2350), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2350), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2350), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2350), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2350), + [anon_sym_RPAREN] = ACTIONS(2350), + [anon_sym_GT2] = ACTIONS(2352), + [anon_sym_DASH2] = ACTIONS(2350), + [anon_sym_LBRACE] = ACTIONS(2350), + [anon_sym_STAR2] = ACTIONS(2352), + [anon_sym_and2] = ACTIONS(2350), + [anon_sym_xor2] = ACTIONS(2350), + [anon_sym_or2] = ACTIONS(2350), + [anon_sym_not_DASHin2] = ACTIONS(2350), + [anon_sym_has2] = ACTIONS(2350), + [anon_sym_not_DASHhas2] = ACTIONS(2350), + [anon_sym_starts_DASHwith2] = ACTIONS(2350), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2350), + [anon_sym_ends_DASHwith2] = ACTIONS(2350), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2350), + [anon_sym_EQ_EQ2] = ACTIONS(2350), + [anon_sym_BANG_EQ2] = ACTIONS(2350), + [anon_sym_LT2] = ACTIONS(2352), + [anon_sym_LT_EQ2] = ACTIONS(2350), + [anon_sym_GT_EQ2] = ACTIONS(2350), + [anon_sym_EQ_TILDE2] = ACTIONS(2350), + [anon_sym_BANG_TILDE2] = ACTIONS(2350), + [anon_sym_like2] = ACTIONS(2350), + [anon_sym_not_DASHlike2] = ACTIONS(2350), + [anon_sym_STAR_STAR2] = ACTIONS(2350), + [anon_sym_PLUS_PLUS2] = ACTIONS(2350), + [anon_sym_SLASH2] = ACTIONS(2352), + [anon_sym_mod2] = ACTIONS(2350), + [anon_sym_SLASH_SLASH2] = ACTIONS(2350), + [anon_sym_PLUS2] = ACTIONS(2352), + [anon_sym_bit_DASHshl2] = ACTIONS(2350), + [anon_sym_bit_DASHshr2] = ACTIONS(2350), + [anon_sym_bit_DASHand2] = ACTIONS(2350), + [anon_sym_bit_DASHxor2] = ACTIONS(2350), + [anon_sym_bit_DASHor2] = ACTIONS(2350), + [anon_sym_err_GT] = ACTIONS(2352), + [anon_sym_out_GT] = ACTIONS(2352), + [anon_sym_e_GT] = ACTIONS(2352), + [anon_sym_o_GT] = ACTIONS(2352), + [anon_sym_err_PLUSout_GT] = ACTIONS(2352), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2352), + [anon_sym_o_PLUSe_GT] = ACTIONS(2352), + [anon_sym_e_PLUSo_GT] = ACTIONS(2352), + [anon_sym_err_GT_GT] = ACTIONS(2350), + [anon_sym_out_GT_GT] = ACTIONS(2350), + [anon_sym_e_GT_GT] = ACTIONS(2350), + [anon_sym_o_GT_GT] = ACTIONS(2350), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2350), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2350), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2350), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2350), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), }, [STATE(1116)] = { - [sym_expr_unary] = STATE(2980), - [sym__expr_unary_minus] = STATE(1290), - [sym_expr_parenthesized] = STATE(2588), - [sym_val_range] = STATE(2980), - [sym__val_range] = STATE(4744), - [sym__value] = STATE(2980), - [sym_val_nothing] = STATE(1295), - [sym_val_bool] = STATE(2665), - [sym_val_variable] = STATE(2605), - [sym_val_cellpath] = STATE(1295), - [sym_val_number] = STATE(1295), - [sym__val_number_decimal] = STATE(2375), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1295), - [sym_val_filesize] = STATE(1295), - [sym_val_binary] = STATE(1295), - [sym_val_string] = STATE(1295), - [sym__raw_str] = STATE(502), - [sym__str_double_quotes] = STATE(502), - [sym__str_single_quotes] = STATE(502), - [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1295), - [sym__inter_single_quotes] = STATE(1306), - [sym__inter_double_quotes] = STATE(1317), - [sym_val_list] = STATE(1295), - [sym_val_record] = STATE(1295), - [sym_val_table] = STATE(1295), - [sym_val_closure] = STATE(1295), - [sym_unquoted] = STATE(2686), - [sym__unquoted_with_expr] = STATE(2988), - [sym__unquoted_anonymous_prefix] = STATE(4744), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1116), - [anon_sym_true] = ACTIONS(2770), - [anon_sym_false] = ACTIONS(2770), - [anon_sym_null] = ACTIONS(2772), - [aux_sym_cmd_identifier_token3] = ACTIONS(2774), - [aux_sym_cmd_identifier_token4] = ACTIONS(2774), - [aux_sym_cmd_identifier_token5] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2776), - [anon_sym_LPAREN] = ACTIONS(2778), - [anon_sym_DOLLAR] = ACTIONS(2780), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(2782), - [anon_sym_DOT_DOT] = ACTIONS(2784), - [aux_sym_expr_unary_token1] = ACTIONS(2786), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2788), - [anon_sym_DOT_DOT_LT] = ACTIONS(2788), - [aux_sym__val_number_decimal_token1] = ACTIONS(2790), - [aux_sym__val_number_decimal_token2] = ACTIONS(2792), - [aux_sym__val_number_decimal_token3] = ACTIONS(2794), - [aux_sym__val_number_decimal_token4] = ACTIONS(2794), - [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(2796), - [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(2226), + [anon_sym_in] = ACTIONS(2802), + [sym__newline] = ACTIONS(2802), + [anon_sym_SEMI] = ACTIONS(2802), + [anon_sym_PIPE] = ACTIONS(2802), + [anon_sym_err_GT_PIPE] = ACTIONS(2802), + [anon_sym_out_GT_PIPE] = ACTIONS(2802), + [anon_sym_e_GT_PIPE] = ACTIONS(2802), + [anon_sym_o_GT_PIPE] = ACTIONS(2802), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2802), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2802), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2802), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2802), + [anon_sym_RPAREN] = ACTIONS(2802), + [anon_sym_GT2] = ACTIONS(2804), + [anon_sym_DASH2] = ACTIONS(2802), + [anon_sym_LBRACE] = ACTIONS(2802), + [anon_sym_STAR2] = ACTIONS(2804), + [anon_sym_and2] = ACTIONS(2802), + [anon_sym_xor2] = ACTIONS(2802), + [anon_sym_or2] = ACTIONS(2802), + [anon_sym_not_DASHin2] = ACTIONS(2802), + [anon_sym_has2] = ACTIONS(2802), + [anon_sym_not_DASHhas2] = ACTIONS(2802), + [anon_sym_starts_DASHwith2] = ACTIONS(2802), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2802), + [anon_sym_ends_DASHwith2] = ACTIONS(2802), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2802), + [anon_sym_EQ_EQ2] = ACTIONS(2802), + [anon_sym_BANG_EQ2] = ACTIONS(2802), + [anon_sym_LT2] = ACTIONS(2804), + [anon_sym_LT_EQ2] = ACTIONS(2802), + [anon_sym_GT_EQ2] = ACTIONS(2802), + [anon_sym_EQ_TILDE2] = ACTIONS(2802), + [anon_sym_BANG_TILDE2] = ACTIONS(2802), + [anon_sym_like2] = ACTIONS(2802), + [anon_sym_not_DASHlike2] = ACTIONS(2802), + [anon_sym_STAR_STAR2] = ACTIONS(2802), + [anon_sym_PLUS_PLUS2] = ACTIONS(2802), + [anon_sym_SLASH2] = ACTIONS(2804), + [anon_sym_mod2] = ACTIONS(2802), + [anon_sym_SLASH_SLASH2] = ACTIONS(2802), + [anon_sym_PLUS2] = ACTIONS(2804), + [anon_sym_bit_DASHshl2] = ACTIONS(2802), + [anon_sym_bit_DASHshr2] = ACTIONS(2802), + [anon_sym_bit_DASHand2] = ACTIONS(2802), + [anon_sym_bit_DASHxor2] = ACTIONS(2802), + [anon_sym_bit_DASHor2] = ACTIONS(2802), + [anon_sym_err_GT] = ACTIONS(2804), + [anon_sym_out_GT] = ACTIONS(2804), + [anon_sym_e_GT] = ACTIONS(2804), + [anon_sym_o_GT] = ACTIONS(2804), + [anon_sym_err_PLUSout_GT] = ACTIONS(2804), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2804), + [anon_sym_o_PLUSe_GT] = ACTIONS(2804), + [anon_sym_e_PLUSo_GT] = ACTIONS(2804), + [anon_sym_err_GT_GT] = ACTIONS(2802), + [anon_sym_out_GT_GT] = ACTIONS(2802), + [anon_sym_e_GT_GT] = ACTIONS(2802), + [anon_sym_o_GT_GT] = ACTIONS(2802), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2802), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2802), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2802), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2802), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), }, [STATE(1117)] = { - [sym_expr_unary] = STATE(2955), - [sym__expr_unary_minus] = STATE(1290), - [sym_expr_parenthesized] = STATE(2581), - [sym_val_range] = STATE(2955), - [sym__val_range] = STATE(4744), - [sym__value] = STATE(2955), - [sym_val_nothing] = STATE(1295), - [sym_val_bool] = STATE(2665), - [sym_val_variable] = STATE(2605), - [sym_val_cellpath] = STATE(1295), - [sym_val_number] = STATE(1295), - [sym__val_number_decimal] = STATE(2375), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1295), - [sym_val_filesize] = STATE(1295), - [sym_val_binary] = STATE(1295), - [sym_val_string] = STATE(1295), - [sym__raw_str] = STATE(502), - [sym__str_double_quotes] = STATE(502), - [sym__str_single_quotes] = STATE(502), - [sym__str_back_ticks] = STATE(502), - [sym_val_interpolated] = STATE(1295), - [sym__inter_single_quotes] = STATE(1306), - [sym__inter_double_quotes] = STATE(1317), - [sym_val_list] = STATE(1295), - [sym_val_record] = STATE(1295), - [sym_val_table] = STATE(1295), - [sym_val_closure] = STATE(1295), - [sym_unquoted] = STATE(2649), - [sym__unquoted_with_expr] = STATE(2907), - [sym__unquoted_anonymous_prefix] = STATE(4744), + [aux_sym__repeat_newline] = STATE(986), [sym_comment] = STATE(1117), - [anon_sym_true] = ACTIONS(2770), - [anon_sym_false] = ACTIONS(2770), - [anon_sym_null] = ACTIONS(2772), - [aux_sym_cmd_identifier_token3] = ACTIONS(2774), - [aux_sym_cmd_identifier_token4] = ACTIONS(2774), - [aux_sym_cmd_identifier_token5] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2776), - [anon_sym_LPAREN] = ACTIONS(2778), - [anon_sym_DOLLAR] = ACTIONS(2780), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(2782), - [anon_sym_DOT_DOT] = ACTIONS(2784), - [aux_sym_expr_unary_token1] = ACTIONS(2786), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2788), - [anon_sym_DOT_DOT_LT] = ACTIONS(2788), - [aux_sym__val_number_decimal_token1] = ACTIONS(2790), - [aux_sym__val_number_decimal_token2] = ACTIONS(2792), - [aux_sym__val_number_decimal_token3] = ACTIONS(2794), - [aux_sym__val_number_decimal_token4] = ACTIONS(2794), - [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(2796), - [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(2226), + [anon_sym_in] = ACTIONS(2350), + [sym__newline] = ACTIONS(2350), + [anon_sym_SEMI] = ACTIONS(2350), + [anon_sym_PIPE] = ACTIONS(2350), + [anon_sym_err_GT_PIPE] = ACTIONS(2350), + [anon_sym_out_GT_PIPE] = ACTIONS(2350), + [anon_sym_e_GT_PIPE] = ACTIONS(2350), + [anon_sym_o_GT_PIPE] = ACTIONS(2350), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2350), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2350), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2350), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2350), + [anon_sym_RPAREN] = ACTIONS(2350), + [anon_sym_GT2] = ACTIONS(2352), + [anon_sym_DASH2] = ACTIONS(2350), + [anon_sym_LBRACE] = ACTIONS(2350), + [anon_sym_STAR2] = ACTIONS(2352), + [anon_sym_and2] = ACTIONS(2350), + [anon_sym_xor2] = ACTIONS(2350), + [anon_sym_or2] = ACTIONS(2350), + [anon_sym_not_DASHin2] = ACTIONS(2350), + [anon_sym_has2] = ACTIONS(2350), + [anon_sym_not_DASHhas2] = ACTIONS(2350), + [anon_sym_starts_DASHwith2] = ACTIONS(2350), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2350), + [anon_sym_ends_DASHwith2] = ACTIONS(2350), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2350), + [anon_sym_EQ_EQ2] = ACTIONS(2350), + [anon_sym_BANG_EQ2] = ACTIONS(2350), + [anon_sym_LT2] = ACTIONS(2352), + [anon_sym_LT_EQ2] = ACTIONS(2350), + [anon_sym_GT_EQ2] = ACTIONS(2350), + [anon_sym_EQ_TILDE2] = ACTIONS(2350), + [anon_sym_BANG_TILDE2] = ACTIONS(2350), + [anon_sym_like2] = ACTIONS(2350), + [anon_sym_not_DASHlike2] = ACTIONS(2350), + [anon_sym_STAR_STAR2] = ACTIONS(2350), + [anon_sym_PLUS_PLUS2] = ACTIONS(2350), + [anon_sym_SLASH2] = ACTIONS(2352), + [anon_sym_mod2] = ACTIONS(2350), + [anon_sym_SLASH_SLASH2] = ACTIONS(2350), + [anon_sym_PLUS2] = ACTIONS(2352), + [anon_sym_bit_DASHshl2] = ACTIONS(2350), + [anon_sym_bit_DASHshr2] = ACTIONS(2350), + [anon_sym_bit_DASHand2] = ACTIONS(2350), + [anon_sym_bit_DASHxor2] = ACTIONS(2350), + [anon_sym_bit_DASHor2] = ACTIONS(2350), + [anon_sym_err_GT] = ACTIONS(2352), + [anon_sym_out_GT] = ACTIONS(2352), + [anon_sym_e_GT] = ACTIONS(2352), + [anon_sym_o_GT] = ACTIONS(2352), + [anon_sym_err_PLUSout_GT] = ACTIONS(2352), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2352), + [anon_sym_o_PLUSe_GT] = ACTIONS(2352), + [anon_sym_e_PLUSo_GT] = ACTIONS(2352), + [anon_sym_err_GT_GT] = ACTIONS(2350), + [anon_sym_out_GT_GT] = ACTIONS(2350), + [anon_sym_e_GT_GT] = ACTIONS(2350), + [anon_sym_o_GT_GT] = ACTIONS(2350), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2350), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2350), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2350), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2350), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), }, [STATE(1118)] = { - [aux_sym__repeat_newline] = STATE(1012), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1118), - [anon_sym_in] = ACTIONS(2302), - [sym__newline] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_PIPE] = ACTIONS(2302), - [anon_sym_err_GT_PIPE] = ACTIONS(2302), - [anon_sym_out_GT_PIPE] = ACTIONS(2302), - [anon_sym_e_GT_PIPE] = ACTIONS(2302), - [anon_sym_o_GT_PIPE] = ACTIONS(2302), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2302), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2302), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2302), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2302), - [anon_sym_RPAREN] = ACTIONS(2302), - [anon_sym_GT2] = ACTIONS(2304), - [anon_sym_DASH2] = ACTIONS(2302), - [anon_sym_LBRACE] = ACTIONS(2302), - [anon_sym_STAR2] = ACTIONS(2304), - [anon_sym_and2] = ACTIONS(2302), - [anon_sym_xor2] = ACTIONS(2302), - [anon_sym_or2] = ACTIONS(2302), - [anon_sym_not_DASHin2] = ACTIONS(2302), - [anon_sym_has2] = ACTIONS(2302), - [anon_sym_not_DASHhas2] = ACTIONS(2302), - [anon_sym_starts_DASHwith2] = ACTIONS(2302), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2302), - [anon_sym_ends_DASHwith2] = ACTIONS(2302), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2302), - [anon_sym_EQ_EQ2] = ACTIONS(2302), - [anon_sym_BANG_EQ2] = ACTIONS(2302), - [anon_sym_LT2] = ACTIONS(2304), - [anon_sym_LT_EQ2] = ACTIONS(2302), - [anon_sym_GT_EQ2] = ACTIONS(2302), - [anon_sym_EQ_TILDE2] = ACTIONS(2302), - [anon_sym_BANG_TILDE2] = ACTIONS(2302), - [anon_sym_like2] = ACTIONS(2302), - [anon_sym_not_DASHlike2] = ACTIONS(2302), - [anon_sym_STAR_STAR2] = ACTIONS(2302), - [anon_sym_PLUS_PLUS2] = ACTIONS(2302), - [anon_sym_SLASH2] = ACTIONS(2304), - [anon_sym_mod2] = ACTIONS(2302), - [anon_sym_SLASH_SLASH2] = ACTIONS(2302), - [anon_sym_PLUS2] = ACTIONS(2304), - [anon_sym_bit_DASHshl2] = ACTIONS(2302), - [anon_sym_bit_DASHshr2] = ACTIONS(2302), - [anon_sym_bit_DASHand2] = ACTIONS(2302), - [anon_sym_bit_DASHxor2] = ACTIONS(2302), - [anon_sym_bit_DASHor2] = ACTIONS(2302), - [anon_sym_err_GT] = ACTIONS(2304), - [anon_sym_out_GT] = ACTIONS(2304), - [anon_sym_e_GT] = ACTIONS(2304), - [anon_sym_o_GT] = ACTIONS(2304), - [anon_sym_err_PLUSout_GT] = ACTIONS(2304), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2304), - [anon_sym_o_PLUSe_GT] = ACTIONS(2304), - [anon_sym_e_PLUSo_GT] = ACTIONS(2304), - [anon_sym_err_GT_GT] = ACTIONS(2302), - [anon_sym_out_GT_GT] = ACTIONS(2302), - [anon_sym_e_GT_GT] = ACTIONS(2302), - [anon_sym_o_GT_GT] = ACTIONS(2302), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2302), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2302), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2302), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2302), + [anon_sym_in] = ACTIONS(2802), + [sym__newline] = ACTIONS(2802), + [anon_sym_SEMI] = ACTIONS(2802), + [anon_sym_PIPE] = ACTIONS(2802), + [anon_sym_err_GT_PIPE] = ACTIONS(2802), + [anon_sym_out_GT_PIPE] = ACTIONS(2802), + [anon_sym_e_GT_PIPE] = ACTIONS(2802), + [anon_sym_o_GT_PIPE] = ACTIONS(2802), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2802), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2802), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2802), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2802), + [anon_sym_RPAREN] = ACTIONS(2802), + [anon_sym_GT2] = ACTIONS(2804), + [anon_sym_DASH2] = ACTIONS(2802), + [anon_sym_LBRACE] = ACTIONS(2802), + [anon_sym_STAR2] = ACTIONS(2804), + [anon_sym_and2] = ACTIONS(2802), + [anon_sym_xor2] = ACTIONS(2802), + [anon_sym_or2] = ACTIONS(2802), + [anon_sym_not_DASHin2] = ACTIONS(2802), + [anon_sym_has2] = ACTIONS(2802), + [anon_sym_not_DASHhas2] = ACTIONS(2802), + [anon_sym_starts_DASHwith2] = ACTIONS(2802), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2802), + [anon_sym_ends_DASHwith2] = ACTIONS(2802), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2802), + [anon_sym_EQ_EQ2] = ACTIONS(2802), + [anon_sym_BANG_EQ2] = ACTIONS(2802), + [anon_sym_LT2] = ACTIONS(2804), + [anon_sym_LT_EQ2] = ACTIONS(2802), + [anon_sym_GT_EQ2] = ACTIONS(2802), + [anon_sym_EQ_TILDE2] = ACTIONS(2802), + [anon_sym_BANG_TILDE2] = ACTIONS(2802), + [anon_sym_like2] = ACTIONS(2802), + [anon_sym_not_DASHlike2] = ACTIONS(2802), + [anon_sym_STAR_STAR2] = ACTIONS(2802), + [anon_sym_PLUS_PLUS2] = ACTIONS(2802), + [anon_sym_SLASH2] = ACTIONS(2804), + [anon_sym_mod2] = ACTIONS(2802), + [anon_sym_SLASH_SLASH2] = ACTIONS(2802), + [anon_sym_PLUS2] = ACTIONS(2804), + [anon_sym_bit_DASHshl2] = ACTIONS(2802), + [anon_sym_bit_DASHshr2] = ACTIONS(2802), + [anon_sym_bit_DASHand2] = ACTIONS(2802), + [anon_sym_bit_DASHxor2] = ACTIONS(2802), + [anon_sym_bit_DASHor2] = ACTIONS(2802), + [anon_sym_err_GT] = ACTIONS(2804), + [anon_sym_out_GT] = ACTIONS(2804), + [anon_sym_e_GT] = ACTIONS(2804), + [anon_sym_o_GT] = ACTIONS(2804), + [anon_sym_err_PLUSout_GT] = ACTIONS(2804), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2804), + [anon_sym_o_PLUSe_GT] = ACTIONS(2804), + [anon_sym_e_PLUSo_GT] = ACTIONS(2804), + [anon_sym_err_GT_GT] = ACTIONS(2802), + [anon_sym_out_GT_GT] = ACTIONS(2802), + [anon_sym_e_GT_GT] = ACTIONS(2802), + [anon_sym_o_GT_GT] = ACTIONS(2802), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2802), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2802), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2802), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2802), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1119)] = { + [aux_sym__repeat_newline] = STATE(1358), + [sym__expression_parenthesized] = STATE(4510), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2190), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1886), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), [sym_comment] = STATE(1119), - [aux_sym_cmd_identifier_token2] = ACTIONS(2555), - [anon_sym_in] = ACTIONS(2527), - [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(2527), - [anon_sym_RBRACE] = ACTIONS(2525), - [anon_sym_STAR2] = ACTIONS(2527), - [anon_sym_and2] = ACTIONS(2527), - [anon_sym_xor2] = ACTIONS(2527), - [anon_sym_or2] = ACTIONS(2527), - [anon_sym_not_DASHin2] = ACTIONS(2527), - [anon_sym_has2] = ACTIONS(2527), - [anon_sym_not_DASHhas2] = ACTIONS(2527), - [anon_sym_starts_DASHwith2] = ACTIONS(2527), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2527), - [anon_sym_ends_DASHwith2] = ACTIONS(2527), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2527), - [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(2527), - [anon_sym_like2] = ACTIONS(2527), - [anon_sym_not_DASHlike2] = ACTIONS(2527), - [anon_sym_STAR_STAR2] = ACTIONS(2527), - [anon_sym_PLUS_PLUS2] = ACTIONS(2527), - [anon_sym_SLASH2] = ACTIONS(2527), - [anon_sym_mod2] = ACTIONS(2527), - [anon_sym_SLASH_SLASH2] = ACTIONS(2527), - [anon_sym_PLUS2] = ACTIONS(2527), - [anon_sym_bit_DASHshl2] = ACTIONS(2527), - [anon_sym_bit_DASHshr2] = ACTIONS(2527), - [anon_sym_bit_DASHand2] = ACTIONS(2527), - [anon_sym_bit_DASHxor2] = ACTIONS(2527), - [anon_sym_bit_DASHor2] = ACTIONS(2527), - [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(103), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(2792), + [aux_sym_cmd_identifier_token3] = ACTIONS(189), + [aux_sym_cmd_identifier_token4] = ACTIONS(189), + [aux_sym_cmd_identifier_token5] = ACTIONS(189), + [sym__newline] = ACTIONS(2602), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(998), + [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(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2008), + [aux_sym__val_number_decimal_token3] = ACTIONS(2010), + [aux_sym__val_number_decimal_token4] = ACTIONS(2010), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__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(1120)] = { + [sym__expr_parenthesized_immediate] = STATE(5483), [sym_comment] = STATE(1120), - [aux_sym_cmd_identifier_token2] = ACTIONS(2555), - [anon_sym_in] = ACTIONS(2650), - [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(2650), - [anon_sym_RBRACE] = ACTIONS(2648), - [anon_sym_STAR2] = ACTIONS(2650), - [anon_sym_and2] = ACTIONS(2650), - [anon_sym_xor2] = ACTIONS(2650), - [anon_sym_or2] = ACTIONS(2650), - [anon_sym_not_DASHin2] = ACTIONS(2650), - [anon_sym_has2] = ACTIONS(2650), - [anon_sym_not_DASHhas2] = ACTIONS(2650), - [anon_sym_starts_DASHwith2] = ACTIONS(2650), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2650), - [anon_sym_ends_DASHwith2] = ACTIONS(2650), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2650), - [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(2650), - [anon_sym_like2] = ACTIONS(2650), - [anon_sym_not_DASHlike2] = ACTIONS(2650), - [anon_sym_STAR_STAR2] = ACTIONS(2650), - [anon_sym_PLUS_PLUS2] = ACTIONS(2650), - [anon_sym_SLASH2] = ACTIONS(2650), - [anon_sym_mod2] = ACTIONS(2650), - [anon_sym_SLASH_SLASH2] = ACTIONS(2650), - [anon_sym_PLUS2] = ACTIONS(2650), - [anon_sym_bit_DASHshl2] = ACTIONS(2650), - [anon_sym_bit_DASHshr2] = ACTIONS(2650), - [anon_sym_bit_DASHand2] = ACTIONS(2650), - [anon_sym_bit_DASHxor2] = ACTIONS(2650), - [anon_sym_bit_DASHor2] = ACTIONS(2650), - [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(103), + [ts_builtin_sym_end] = ACTIONS(2140), + [anon_sym_in] = ACTIONS(2140), + [sym__newline] = ACTIONS(2140), + [anon_sym_SEMI] = ACTIONS(2140), + [anon_sym_PIPE] = ACTIONS(2140), + [anon_sym_err_GT_PIPE] = ACTIONS(2140), + [anon_sym_out_GT_PIPE] = ACTIONS(2140), + [anon_sym_e_GT_PIPE] = ACTIONS(2140), + [anon_sym_o_GT_PIPE] = ACTIONS(2140), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2140), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2140), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2140), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2140), + [anon_sym_GT2] = ACTIONS(2142), + [anon_sym_DASH2] = ACTIONS(2140), + [anon_sym_STAR2] = ACTIONS(2142), + [anon_sym_and2] = ACTIONS(2140), + [anon_sym_xor2] = ACTIONS(2140), + [anon_sym_or2] = ACTIONS(2140), + [anon_sym_not_DASHin2] = ACTIONS(2140), + [anon_sym_has2] = ACTIONS(2140), + [anon_sym_not_DASHhas2] = ACTIONS(2140), + [anon_sym_starts_DASHwith2] = ACTIONS(2140), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2140), + [anon_sym_ends_DASHwith2] = ACTIONS(2140), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2140), + [anon_sym_EQ_EQ2] = ACTIONS(2140), + [anon_sym_BANG_EQ2] = ACTIONS(2140), + [anon_sym_LT2] = ACTIONS(2142), + [anon_sym_LT_EQ2] = ACTIONS(2140), + [anon_sym_GT_EQ2] = ACTIONS(2140), + [anon_sym_EQ_TILDE2] = ACTIONS(2140), + [anon_sym_BANG_TILDE2] = ACTIONS(2140), + [anon_sym_like2] = ACTIONS(2140), + [anon_sym_not_DASHlike2] = ACTIONS(2140), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_STAR_STAR2] = ACTIONS(2140), + [anon_sym_PLUS_PLUS2] = ACTIONS(2140), + [anon_sym_SLASH2] = ACTIONS(2142), + [anon_sym_mod2] = ACTIONS(2140), + [anon_sym_SLASH_SLASH2] = ACTIONS(2140), + [anon_sym_PLUS2] = ACTIONS(2142), + [anon_sym_bit_DASHshl2] = ACTIONS(2140), + [anon_sym_bit_DASHshr2] = ACTIONS(2140), + [anon_sym_bit_DASHand2] = ACTIONS(2140), + [anon_sym_bit_DASHxor2] = ACTIONS(2140), + [anon_sym_bit_DASHor2] = ACTIONS(2140), + [anon_sym_err_GT] = ACTIONS(2142), + [anon_sym_out_GT] = ACTIONS(2142), + [anon_sym_e_GT] = ACTIONS(2142), + [anon_sym_o_GT] = ACTIONS(2142), + [anon_sym_err_PLUSout_GT] = ACTIONS(2142), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2142), + [anon_sym_o_PLUSe_GT] = ACTIONS(2142), + [anon_sym_e_PLUSo_GT] = ACTIONS(2142), + [anon_sym_err_GT_GT] = ACTIONS(2140), + [anon_sym_out_GT_GT] = ACTIONS(2140), + [anon_sym_e_GT_GT] = ACTIONS(2140), + [anon_sym_o_GT_GT] = ACTIONS(2140), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2140), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2140), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2140), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2140), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1121)] = { + [aux_sym__repeat_newline] = STATE(4461), + [sym__match_pattern_expression] = STATE(4356), + [sym__match_pattern_value] = STATE(4686), + [sym__match_pattern_list_body] = STATE(4700), + [sym__match_pattern_list] = STATE(4805), + [sym__match_pattern_rest] = STATE(5289), + [sym__match_pattern_record] = STATE(4754), + [sym_expr_parenthesized] = STATE(3964), + [sym_val_range] = STATE(4686), + [sym__val_range] = STATE(5330), + [sym_val_nothing] = STATE(4754), + [sym_val_bool] = STATE(4347), + [sym_val_variable] = STATE(3965), + [sym_val_number] = STATE(4754), + [sym__val_number_decimal] = STATE(3795), + [sym__val_number] = STATE(4628), + [sym_val_duration] = STATE(4754), + [sym_val_filesize] = STATE(4754), + [sym_val_binary] = STATE(4754), + [sym_val_string] = STATE(4754), + [sym__raw_str] = STATE(3725), + [sym__str_double_quotes] = STATE(3725), + [sym__str_single_quotes] = STATE(3725), + [sym__str_back_ticks] = STATE(3725), + [sym_val_list] = STATE(5121), + [sym__table_head] = STATE(3912), + [sym_val_table] = STATE(4754), + [sym__unquoted_in_list] = STATE(4356), + [sym__unquoted_anonymous_prefix] = STATE(5330), [sym_comment] = STATE(1121), - [aux_sym_cmd_identifier_token2] = ACTIONS(2555), - [anon_sym_in] = ACTIONS(866), - [sym__newline] = ACTIONS(886), - [anon_sym_SEMI] = ACTIONS(886), - [anon_sym_PIPE] = ACTIONS(886), - [anon_sym_err_GT_PIPE] = ACTIONS(886), - [anon_sym_out_GT_PIPE] = ACTIONS(886), - [anon_sym_e_GT_PIPE] = ACTIONS(886), - [anon_sym_o_GT_PIPE] = ACTIONS(886), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(886), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(886), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(886), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(886), - [anon_sym_GT2] = ACTIONS(866), - [anon_sym_DASH2] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(886), - [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(886), - [anon_sym_BANG_EQ2] = ACTIONS(886), - [anon_sym_LT2] = ACTIONS(866), - [anon_sym_LT_EQ2] = ACTIONS(886), - [anon_sym_GT_EQ2] = ACTIONS(886), - [anon_sym_EQ_TILDE2] = ACTIONS(886), - [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(886), - [anon_sym_out_GT_GT] = ACTIONS(886), - [anon_sym_e_GT_GT] = ACTIONS(886), - [anon_sym_o_GT_GT] = ACTIONS(886), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(886), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(886), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(886), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(886), - [anon_sym_POUND] = ACTIONS(103), + [aux_sym__types_body_repeat1] = STATE(1407), + [aux_sym_parameter_repeat2] = STATE(4311), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1431), + [anon_sym_true] = ACTIONS(1384), + [anon_sym_false] = ACTIONS(1384), + [anon_sym_null] = ACTIONS(1386), + [aux_sym_cmd_identifier_token3] = ACTIONS(1388), + [aux_sym_cmd_identifier_token4] = ACTIONS(1388), + [aux_sym_cmd_identifier_token5] = ACTIONS(1388), + [sym__newline] = ACTIONS(2714), + [anon_sym_LBRACK] = ACTIONS(2716), + [anon_sym_RBRACK] = ACTIONS(2814), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_COMMA] = ACTIONS(1398), + [anon_sym_DOLLAR] = ACTIONS(2720), + [anon_sym_LBRACE] = ACTIONS(2722), + [anon_sym_DOT_DOT] = ACTIONS(2816), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1406), + [anon_sym_DOT_DOT_LT] = ACTIONS(1406), + [aux_sym__val_number_decimal_token1] = ACTIONS(1408), + [aux_sym__val_number_decimal_token2] = ACTIONS(1410), + [aux_sym__val_number_decimal_token3] = ACTIONS(1412), + [aux_sym__val_number_decimal_token4] = ACTIONS(1412), + [aux_sym__val_number_token1] = ACTIONS(1414), + [aux_sym__val_number_token2] = ACTIONS(1414), + [aux_sym__val_number_token3] = ACTIONS(1414), + [anon_sym_0b] = ACTIONS(1416), + [anon_sym_0o] = ACTIONS(1418), + [anon_sym_0x] = ACTIONS(1418), + [sym_val_date] = ACTIONS(2724), + [anon_sym_DQUOTE] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_BQUOTE] = ACTIONS(1426), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1436), }, [STATE(1122)] = { - [aux_sym__repeat_newline] = STATE(1014), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1122), - [anon_sym_in] = ACTIONS(2302), - [sym__newline] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_PIPE] = ACTIONS(2302), - [anon_sym_err_GT_PIPE] = ACTIONS(2302), - [anon_sym_out_GT_PIPE] = ACTIONS(2302), - [anon_sym_e_GT_PIPE] = ACTIONS(2302), - [anon_sym_o_GT_PIPE] = ACTIONS(2302), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2302), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2302), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2302), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2302), - [anon_sym_RPAREN] = ACTIONS(2302), - [anon_sym_GT2] = ACTIONS(2304), - [anon_sym_DASH2] = ACTIONS(2302), - [anon_sym_LBRACE] = ACTIONS(2302), - [anon_sym_STAR2] = ACTIONS(2304), - [anon_sym_and2] = ACTIONS(2302), - [anon_sym_xor2] = ACTIONS(2302), - [anon_sym_or2] = ACTIONS(2302), - [anon_sym_not_DASHin2] = ACTIONS(2302), - [anon_sym_has2] = ACTIONS(2302), - [anon_sym_not_DASHhas2] = ACTIONS(2302), - [anon_sym_starts_DASHwith2] = ACTIONS(2302), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2302), - [anon_sym_ends_DASHwith2] = ACTIONS(2302), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2302), - [anon_sym_EQ_EQ2] = ACTIONS(2302), - [anon_sym_BANG_EQ2] = ACTIONS(2302), - [anon_sym_LT2] = ACTIONS(2304), - [anon_sym_LT_EQ2] = ACTIONS(2302), - [anon_sym_GT_EQ2] = ACTIONS(2302), - [anon_sym_EQ_TILDE2] = ACTIONS(2302), - [anon_sym_BANG_TILDE2] = ACTIONS(2302), - [anon_sym_like2] = ACTIONS(2302), - [anon_sym_not_DASHlike2] = ACTIONS(2302), - [anon_sym_STAR_STAR2] = ACTIONS(2302), - [anon_sym_PLUS_PLUS2] = ACTIONS(2302), - [anon_sym_SLASH2] = ACTIONS(2304), - [anon_sym_mod2] = ACTIONS(2302), - [anon_sym_SLASH_SLASH2] = ACTIONS(2302), - [anon_sym_PLUS2] = ACTIONS(2304), - [anon_sym_bit_DASHshl2] = ACTIONS(2302), - [anon_sym_bit_DASHshr2] = ACTIONS(2302), - [anon_sym_bit_DASHand2] = ACTIONS(2302), - [anon_sym_bit_DASHxor2] = ACTIONS(2302), - [anon_sym_bit_DASHor2] = ACTIONS(2302), - [anon_sym_err_GT] = ACTIONS(2304), - [anon_sym_out_GT] = ACTIONS(2304), - [anon_sym_e_GT] = ACTIONS(2304), - [anon_sym_o_GT] = ACTIONS(2304), - [anon_sym_err_PLUSout_GT] = ACTIONS(2304), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2304), - [anon_sym_o_PLUSe_GT] = ACTIONS(2304), - [anon_sym_e_PLUSo_GT] = ACTIONS(2304), - [anon_sym_err_GT_GT] = ACTIONS(2302), - [anon_sym_out_GT_GT] = ACTIONS(2302), - [anon_sym_e_GT_GT] = ACTIONS(2302), - [anon_sym_o_GT_GT] = ACTIONS(2302), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2302), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2302), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2302), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2302), + [anon_sym_in] = ACTIONS(2710), + [sym__newline] = ACTIONS(2710), + [anon_sym_SEMI] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(2710), + [anon_sym_err_GT_PIPE] = ACTIONS(2710), + [anon_sym_out_GT_PIPE] = ACTIONS(2710), + [anon_sym_e_GT_PIPE] = ACTIONS(2710), + [anon_sym_o_GT_PIPE] = ACTIONS(2710), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2710), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2710), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2710), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2710), + [anon_sym_RPAREN] = ACTIONS(2710), + [anon_sym_GT2] = ACTIONS(2712), + [anon_sym_DASH2] = ACTIONS(2710), + [anon_sym_LBRACE] = ACTIONS(2710), + [anon_sym_STAR2] = ACTIONS(2712), + [anon_sym_and2] = ACTIONS(2710), + [anon_sym_xor2] = ACTIONS(2710), + [anon_sym_or2] = ACTIONS(2710), + [anon_sym_not_DASHin2] = ACTIONS(2710), + [anon_sym_has2] = ACTIONS(2710), + [anon_sym_not_DASHhas2] = ACTIONS(2710), + [anon_sym_starts_DASHwith2] = ACTIONS(2710), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2710), + [anon_sym_ends_DASHwith2] = ACTIONS(2710), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2710), + [anon_sym_EQ_EQ2] = ACTIONS(2710), + [anon_sym_BANG_EQ2] = ACTIONS(2710), + [anon_sym_LT2] = ACTIONS(2712), + [anon_sym_LT_EQ2] = ACTIONS(2710), + [anon_sym_GT_EQ2] = ACTIONS(2710), + [anon_sym_EQ_TILDE2] = ACTIONS(2710), + [anon_sym_BANG_TILDE2] = ACTIONS(2710), + [anon_sym_like2] = ACTIONS(2710), + [anon_sym_not_DASHlike2] = ACTIONS(2710), + [anon_sym_STAR_STAR2] = ACTIONS(2710), + [anon_sym_PLUS_PLUS2] = ACTIONS(2710), + [anon_sym_SLASH2] = ACTIONS(2712), + [anon_sym_mod2] = ACTIONS(2710), + [anon_sym_SLASH_SLASH2] = ACTIONS(2710), + [anon_sym_PLUS2] = ACTIONS(2712), + [anon_sym_bit_DASHshl2] = ACTIONS(2710), + [anon_sym_bit_DASHshr2] = ACTIONS(2710), + [anon_sym_bit_DASHand2] = ACTIONS(2710), + [anon_sym_bit_DASHxor2] = ACTIONS(2710), + [anon_sym_bit_DASHor2] = ACTIONS(2710), + [anon_sym_err_GT] = ACTIONS(2712), + [anon_sym_out_GT] = ACTIONS(2712), + [anon_sym_e_GT] = ACTIONS(2712), + [anon_sym_o_GT] = ACTIONS(2712), + [anon_sym_err_PLUSout_GT] = ACTIONS(2712), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2712), + [anon_sym_o_PLUSe_GT] = ACTIONS(2712), + [anon_sym_e_PLUSo_GT] = ACTIONS(2712), + [anon_sym_err_GT_GT] = ACTIONS(2710), + [anon_sym_out_GT_GT] = ACTIONS(2710), + [anon_sym_e_GT_GT] = ACTIONS(2710), + [anon_sym_o_GT_GT] = ACTIONS(2710), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2710), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2710), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2710), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2710), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1123)] = { + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1123), - [anon_sym_export] = ACTIONS(2515), - [anon_sym_alias] = ACTIONS(2517), - [anon_sym_let] = ACTIONS(2517), - [anon_sym_mut] = ACTIONS(2517), - [anon_sym_const] = ACTIONS(2517), - [aux_sym_cmd_identifier_token1] = ACTIONS(2515), - [anon_sym_def] = ACTIONS(2517), - [anon_sym_use] = ACTIONS(2517), - [anon_sym_export_DASHenv] = ACTIONS(2517), - [anon_sym_extern] = ACTIONS(2517), - [anon_sym_module] = ACTIONS(2517), - [anon_sym_for] = ACTIONS(2517), - [anon_sym_loop] = ACTIONS(2517), - [anon_sym_while] = ACTIONS(2517), - [anon_sym_if] = ACTIONS(2517), - [anon_sym_else] = ACTIONS(2517), - [anon_sym_try] = ACTIONS(2517), - [anon_sym_catch] = ACTIONS(2517), - [anon_sym_match] = ACTIONS(2517), - [anon_sym_in] = ACTIONS(2515), - [anon_sym_true] = ACTIONS(2517), - [anon_sym_false] = ACTIONS(2517), - [anon_sym_null] = ACTIONS(2517), - [aux_sym_cmd_identifier_token3] = ACTIONS(2517), - [aux_sym_cmd_identifier_token4] = ACTIONS(2517), - [aux_sym_cmd_identifier_token5] = ACTIONS(2517), - [sym__newline] = 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_LBRACK] = ACTIONS(2517), - [anon_sym_LPAREN] = ACTIONS(2517), - [anon_sym_DOLLAR] = ACTIONS(2515), - [anon_sym_DASH2] = ACTIONS(2515), - [anon_sym_LBRACE] = ACTIONS(2517), - [anon_sym_DOT_DOT] = ACTIONS(2515), - [anon_sym_where] = ACTIONS(2517), - [aux_sym_expr_unary_token1] = ACTIONS(2517), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2517), - [anon_sym_DOT_DOT_LT] = ACTIONS(2517), - [aux_sym__val_number_decimal_token1] = ACTIONS(2515), - [aux_sym__val_number_decimal_token2] = ACTIONS(2517), - [aux_sym__val_number_decimal_token3] = ACTIONS(2517), - [aux_sym__val_number_decimal_token4] = ACTIONS(2517), - [aux_sym__val_number_token1] = ACTIONS(2517), - [aux_sym__val_number_token2] = ACTIONS(2517), - [aux_sym__val_number_token3] = ACTIONS(2517), - [anon_sym_0b] = ACTIONS(2515), - [anon_sym_0o] = ACTIONS(2515), - [anon_sym_0x] = ACTIONS(2515), - [sym_val_date] = ACTIONS(2517), - [anon_sym_DQUOTE] = ACTIONS(2517), - [anon_sym_SQUOTE] = ACTIONS(2517), - [anon_sym_BQUOTE] = ACTIONS(2517), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2517), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2517), - [anon_sym_CARET] = ACTIONS(2517), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2517), + [anon_sym_in] = ACTIONS(2710), + [sym__newline] = ACTIONS(2710), + [anon_sym_SEMI] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(2710), + [anon_sym_err_GT_PIPE] = ACTIONS(2710), + [anon_sym_out_GT_PIPE] = ACTIONS(2710), + [anon_sym_e_GT_PIPE] = ACTIONS(2710), + [anon_sym_o_GT_PIPE] = ACTIONS(2710), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2710), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2710), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2710), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2710), + [anon_sym_RPAREN] = ACTIONS(2710), + [anon_sym_GT2] = ACTIONS(2712), + [anon_sym_DASH2] = ACTIONS(2710), + [anon_sym_LBRACE] = ACTIONS(2710), + [anon_sym_STAR2] = ACTIONS(2712), + [anon_sym_and2] = ACTIONS(2710), + [anon_sym_xor2] = ACTIONS(2710), + [anon_sym_or2] = ACTIONS(2710), + [anon_sym_not_DASHin2] = ACTIONS(2710), + [anon_sym_has2] = ACTIONS(2710), + [anon_sym_not_DASHhas2] = ACTIONS(2710), + [anon_sym_starts_DASHwith2] = ACTIONS(2710), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2710), + [anon_sym_ends_DASHwith2] = ACTIONS(2710), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2710), + [anon_sym_EQ_EQ2] = ACTIONS(2710), + [anon_sym_BANG_EQ2] = ACTIONS(2710), + [anon_sym_LT2] = ACTIONS(2712), + [anon_sym_LT_EQ2] = ACTIONS(2710), + [anon_sym_GT_EQ2] = ACTIONS(2710), + [anon_sym_EQ_TILDE2] = ACTIONS(2710), + [anon_sym_BANG_TILDE2] = ACTIONS(2710), + [anon_sym_like2] = ACTIONS(2710), + [anon_sym_not_DASHlike2] = ACTIONS(2710), + [anon_sym_STAR_STAR2] = ACTIONS(2710), + [anon_sym_PLUS_PLUS2] = ACTIONS(2710), + [anon_sym_SLASH2] = ACTIONS(2712), + [anon_sym_mod2] = ACTIONS(2710), + [anon_sym_SLASH_SLASH2] = ACTIONS(2710), + [anon_sym_PLUS2] = ACTIONS(2712), + [anon_sym_bit_DASHshl2] = ACTIONS(2710), + [anon_sym_bit_DASHshr2] = ACTIONS(2710), + [anon_sym_bit_DASHand2] = ACTIONS(2710), + [anon_sym_bit_DASHxor2] = ACTIONS(2710), + [anon_sym_bit_DASHor2] = ACTIONS(2710), + [anon_sym_err_GT] = ACTIONS(2712), + [anon_sym_out_GT] = ACTIONS(2712), + [anon_sym_e_GT] = ACTIONS(2712), + [anon_sym_o_GT] = ACTIONS(2712), + [anon_sym_err_PLUSout_GT] = ACTIONS(2712), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2712), + [anon_sym_o_PLUSe_GT] = ACTIONS(2712), + [anon_sym_e_PLUSo_GT] = ACTIONS(2712), + [anon_sym_err_GT_GT] = ACTIONS(2710), + [anon_sym_out_GT_GT] = ACTIONS(2710), + [anon_sym_e_GT_GT] = ACTIONS(2710), + [anon_sym_o_GT_GT] = ACTIONS(2710), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2710), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2710), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2710), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2710), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1124)] = { + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1124), - [anon_sym_export] = ACTIONS(2798), - [anon_sym_alias] = ACTIONS(2800), - [anon_sym_let] = ACTIONS(2800), - [anon_sym_mut] = ACTIONS(2800), - [anon_sym_const] = ACTIONS(2800), - [aux_sym_cmd_identifier_token1] = ACTIONS(2798), - [anon_sym_def] = ACTIONS(2800), - [anon_sym_use] = ACTIONS(2800), - [anon_sym_export_DASHenv] = ACTIONS(2800), - [anon_sym_extern] = ACTIONS(2800), - [anon_sym_module] = ACTIONS(2800), - [anon_sym_for] = ACTIONS(2800), - [anon_sym_loop] = ACTIONS(2800), - [anon_sym_while] = ACTIONS(2800), - [anon_sym_if] = ACTIONS(2800), - [anon_sym_else] = ACTIONS(2800), - [anon_sym_try] = ACTIONS(2800), - [anon_sym_catch] = ACTIONS(2800), - [anon_sym_match] = ACTIONS(2800), - [anon_sym_in] = ACTIONS(2798), - [anon_sym_true] = ACTIONS(2800), - [anon_sym_false] = ACTIONS(2800), - [anon_sym_null] = ACTIONS(2800), - [aux_sym_cmd_identifier_token3] = ACTIONS(2800), - [aux_sym_cmd_identifier_token4] = ACTIONS(2800), - [aux_sym_cmd_identifier_token5] = ACTIONS(2800), - [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(2800), - [anon_sym_LPAREN] = ACTIONS(2800), - [anon_sym_DOLLAR] = ACTIONS(2798), - [anon_sym_DASH2] = ACTIONS(2798), - [anon_sym_LBRACE] = ACTIONS(2800), - [anon_sym_DOT_DOT] = ACTIONS(2798), - [anon_sym_where] = ACTIONS(2800), - [aux_sym_expr_unary_token1] = ACTIONS(2800), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2800), - [anon_sym_DOT_DOT_LT] = ACTIONS(2800), - [aux_sym__val_number_decimal_token1] = ACTIONS(2798), - [aux_sym__val_number_decimal_token2] = ACTIONS(2800), - [aux_sym__val_number_decimal_token3] = ACTIONS(2800), - [aux_sym__val_number_decimal_token4] = ACTIONS(2800), - [aux_sym__val_number_token1] = ACTIONS(2800), - [aux_sym__val_number_token2] = ACTIONS(2800), - [aux_sym__val_number_token3] = ACTIONS(2800), - [anon_sym_0b] = ACTIONS(2798), - [anon_sym_0o] = ACTIONS(2798), - [anon_sym_0x] = ACTIONS(2798), - [sym_val_date] = ACTIONS(2800), - [anon_sym_DQUOTE] = ACTIONS(2800), - [anon_sym_SQUOTE] = ACTIONS(2800), - [anon_sym_BQUOTE] = ACTIONS(2800), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2800), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2800), - [anon_sym_CARET] = ACTIONS(2800), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2800), + [anon_sym_in] = ACTIONS(2710), + [sym__newline] = ACTIONS(2710), + [anon_sym_SEMI] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(2710), + [anon_sym_err_GT_PIPE] = ACTIONS(2710), + [anon_sym_out_GT_PIPE] = ACTIONS(2710), + [anon_sym_e_GT_PIPE] = ACTIONS(2710), + [anon_sym_o_GT_PIPE] = ACTIONS(2710), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2710), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2710), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2710), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2710), + [anon_sym_RPAREN] = ACTIONS(2710), + [anon_sym_GT2] = ACTIONS(2712), + [anon_sym_DASH2] = ACTIONS(2710), + [anon_sym_LBRACE] = ACTIONS(2710), + [anon_sym_STAR2] = ACTIONS(2712), + [anon_sym_and2] = ACTIONS(2710), + [anon_sym_xor2] = ACTIONS(2710), + [anon_sym_or2] = ACTIONS(2710), + [anon_sym_not_DASHin2] = ACTIONS(2710), + [anon_sym_has2] = ACTIONS(2710), + [anon_sym_not_DASHhas2] = ACTIONS(2710), + [anon_sym_starts_DASHwith2] = ACTIONS(2710), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2710), + [anon_sym_ends_DASHwith2] = ACTIONS(2710), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2710), + [anon_sym_EQ_EQ2] = ACTIONS(2710), + [anon_sym_BANG_EQ2] = ACTIONS(2710), + [anon_sym_LT2] = ACTIONS(2712), + [anon_sym_LT_EQ2] = ACTIONS(2710), + [anon_sym_GT_EQ2] = ACTIONS(2710), + [anon_sym_EQ_TILDE2] = ACTIONS(2710), + [anon_sym_BANG_TILDE2] = ACTIONS(2710), + [anon_sym_like2] = ACTIONS(2710), + [anon_sym_not_DASHlike2] = ACTIONS(2710), + [anon_sym_STAR_STAR2] = ACTIONS(2710), + [anon_sym_PLUS_PLUS2] = ACTIONS(2710), + [anon_sym_SLASH2] = ACTIONS(2712), + [anon_sym_mod2] = ACTIONS(2710), + [anon_sym_SLASH_SLASH2] = ACTIONS(2710), + [anon_sym_PLUS2] = ACTIONS(2712), + [anon_sym_bit_DASHshl2] = ACTIONS(2710), + [anon_sym_bit_DASHshr2] = ACTIONS(2710), + [anon_sym_bit_DASHand2] = ACTIONS(2710), + [anon_sym_bit_DASHxor2] = ACTIONS(2710), + [anon_sym_bit_DASHor2] = ACTIONS(2710), + [anon_sym_err_GT] = ACTIONS(2712), + [anon_sym_out_GT] = ACTIONS(2712), + [anon_sym_e_GT] = ACTIONS(2712), + [anon_sym_o_GT] = ACTIONS(2712), + [anon_sym_err_PLUSout_GT] = ACTIONS(2712), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2712), + [anon_sym_o_PLUSe_GT] = ACTIONS(2712), + [anon_sym_e_PLUSo_GT] = ACTIONS(2712), + [anon_sym_err_GT_GT] = ACTIONS(2710), + [anon_sym_out_GT_GT] = ACTIONS(2710), + [anon_sym_e_GT_GT] = ACTIONS(2710), + [anon_sym_o_GT_GT] = ACTIONS(2710), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2710), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2710), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2710), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2710), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1125)] = { - [sym__expr_parenthesized_immediate] = STATE(4884), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1125), - [ts_builtin_sym_end] = ACTIONS(2098), - [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_GT2] = ACTIONS(2100), - [anon_sym_DASH2] = 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(1724), - [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_in] = ACTIONS(2710), + [sym__newline] = ACTIONS(2710), + [anon_sym_SEMI] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(2710), + [anon_sym_err_GT_PIPE] = ACTIONS(2710), + [anon_sym_out_GT_PIPE] = ACTIONS(2710), + [anon_sym_e_GT_PIPE] = ACTIONS(2710), + [anon_sym_o_GT_PIPE] = ACTIONS(2710), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2710), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2710), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2710), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2710), + [anon_sym_RPAREN] = ACTIONS(2710), + [anon_sym_GT2] = ACTIONS(2712), + [anon_sym_DASH2] = ACTIONS(2710), + [anon_sym_LBRACE] = ACTIONS(2710), + [anon_sym_STAR2] = ACTIONS(2712), + [anon_sym_and2] = ACTIONS(2710), + [anon_sym_xor2] = ACTIONS(2710), + [anon_sym_or2] = ACTIONS(2710), + [anon_sym_not_DASHin2] = ACTIONS(2710), + [anon_sym_has2] = ACTIONS(2710), + [anon_sym_not_DASHhas2] = ACTIONS(2710), + [anon_sym_starts_DASHwith2] = ACTIONS(2710), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2710), + [anon_sym_ends_DASHwith2] = ACTIONS(2710), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2710), + [anon_sym_EQ_EQ2] = ACTIONS(2710), + [anon_sym_BANG_EQ2] = ACTIONS(2710), + [anon_sym_LT2] = ACTIONS(2712), + [anon_sym_LT_EQ2] = ACTIONS(2710), + [anon_sym_GT_EQ2] = ACTIONS(2710), + [anon_sym_EQ_TILDE2] = ACTIONS(2710), + [anon_sym_BANG_TILDE2] = ACTIONS(2710), + [anon_sym_like2] = ACTIONS(2710), + [anon_sym_not_DASHlike2] = ACTIONS(2710), + [anon_sym_STAR_STAR2] = ACTIONS(2710), + [anon_sym_PLUS_PLUS2] = ACTIONS(2710), + [anon_sym_SLASH2] = ACTIONS(2712), + [anon_sym_mod2] = ACTIONS(2710), + [anon_sym_SLASH_SLASH2] = ACTIONS(2710), + [anon_sym_PLUS2] = ACTIONS(2712), + [anon_sym_bit_DASHshl2] = ACTIONS(2710), + [anon_sym_bit_DASHshr2] = ACTIONS(2710), + [anon_sym_bit_DASHand2] = ACTIONS(2710), + [anon_sym_bit_DASHxor2] = ACTIONS(2710), + [anon_sym_bit_DASHor2] = ACTIONS(2710), + [anon_sym_err_GT] = ACTIONS(2712), + [anon_sym_out_GT] = ACTIONS(2712), + [anon_sym_e_GT] = ACTIONS(2712), + [anon_sym_o_GT] = ACTIONS(2712), + [anon_sym_err_PLUSout_GT] = ACTIONS(2712), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2712), + [anon_sym_o_PLUSe_GT] = ACTIONS(2712), + [anon_sym_e_PLUSo_GT] = ACTIONS(2712), + [anon_sym_err_GT_GT] = ACTIONS(2710), + [anon_sym_out_GT_GT] = ACTIONS(2710), + [anon_sym_e_GT_GT] = ACTIONS(2710), + [anon_sym_o_GT_GT] = ACTIONS(2710), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2710), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2710), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2710), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2710), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1126)] = { - [sym__expr_parenthesized_immediate] = STATE(4884), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1126), - [ts_builtin_sym_end] = ACTIONS(2098), - [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_GT2] = ACTIONS(2100), - [anon_sym_DASH2] = 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(1724), - [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_in] = ACTIONS(2710), + [sym__newline] = ACTIONS(2710), + [anon_sym_SEMI] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(2710), + [anon_sym_err_GT_PIPE] = ACTIONS(2710), + [anon_sym_out_GT_PIPE] = ACTIONS(2710), + [anon_sym_e_GT_PIPE] = ACTIONS(2710), + [anon_sym_o_GT_PIPE] = ACTIONS(2710), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2710), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2710), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2710), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2710), + [anon_sym_RPAREN] = ACTIONS(2710), + [anon_sym_GT2] = ACTIONS(2712), + [anon_sym_DASH2] = ACTIONS(2710), + [anon_sym_LBRACE] = ACTIONS(2710), + [anon_sym_STAR2] = ACTIONS(2712), + [anon_sym_and2] = ACTIONS(2710), + [anon_sym_xor2] = ACTIONS(2710), + [anon_sym_or2] = ACTIONS(2710), + [anon_sym_not_DASHin2] = ACTIONS(2710), + [anon_sym_has2] = ACTIONS(2710), + [anon_sym_not_DASHhas2] = ACTIONS(2710), + [anon_sym_starts_DASHwith2] = ACTIONS(2710), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2710), + [anon_sym_ends_DASHwith2] = ACTIONS(2710), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2710), + [anon_sym_EQ_EQ2] = ACTIONS(2710), + [anon_sym_BANG_EQ2] = ACTIONS(2710), + [anon_sym_LT2] = ACTIONS(2712), + [anon_sym_LT_EQ2] = ACTIONS(2710), + [anon_sym_GT_EQ2] = ACTIONS(2710), + [anon_sym_EQ_TILDE2] = ACTIONS(2710), + [anon_sym_BANG_TILDE2] = ACTIONS(2710), + [anon_sym_like2] = ACTIONS(2710), + [anon_sym_not_DASHlike2] = ACTIONS(2710), + [anon_sym_STAR_STAR2] = ACTIONS(2710), + [anon_sym_PLUS_PLUS2] = ACTIONS(2710), + [anon_sym_SLASH2] = ACTIONS(2712), + [anon_sym_mod2] = ACTIONS(2710), + [anon_sym_SLASH_SLASH2] = ACTIONS(2710), + [anon_sym_PLUS2] = ACTIONS(2712), + [anon_sym_bit_DASHshl2] = ACTIONS(2710), + [anon_sym_bit_DASHshr2] = ACTIONS(2710), + [anon_sym_bit_DASHand2] = ACTIONS(2710), + [anon_sym_bit_DASHxor2] = ACTIONS(2710), + [anon_sym_bit_DASHor2] = ACTIONS(2710), + [anon_sym_err_GT] = ACTIONS(2712), + [anon_sym_out_GT] = ACTIONS(2712), + [anon_sym_e_GT] = ACTIONS(2712), + [anon_sym_o_GT] = ACTIONS(2712), + [anon_sym_err_PLUSout_GT] = ACTIONS(2712), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2712), + [anon_sym_o_PLUSe_GT] = ACTIONS(2712), + [anon_sym_e_PLUSo_GT] = ACTIONS(2712), + [anon_sym_err_GT_GT] = ACTIONS(2710), + [anon_sym_out_GT_GT] = ACTIONS(2710), + [anon_sym_e_GT_GT] = ACTIONS(2710), + [anon_sym_o_GT_GT] = ACTIONS(2710), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2710), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2710), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2710), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2710), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1127)] = { + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1127), - [ts_builtin_sym_end] = ACTIONS(1744), - [anon_sym_in] = ACTIONS(1744), - [sym__newline] = ACTIONS(1744), - [anon_sym_SEMI] = ACTIONS(1744), - [anon_sym_PIPE] = ACTIONS(1744), - [anon_sym_err_GT_PIPE] = ACTIONS(1744), - [anon_sym_out_GT_PIPE] = ACTIONS(1744), - [anon_sym_e_GT_PIPE] = ACTIONS(1744), - [anon_sym_o_GT_PIPE] = ACTIONS(1744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1744), - [anon_sym_GT2] = ACTIONS(1746), - [anon_sym_DASH2] = ACTIONS(1744), - [anon_sym_STAR2] = ACTIONS(1746), - [anon_sym_and2] = ACTIONS(1744), - [anon_sym_xor2] = ACTIONS(1744), - [anon_sym_or2] = ACTIONS(1744), - [anon_sym_not_DASHin2] = ACTIONS(1744), - [anon_sym_has2] = ACTIONS(1744), - [anon_sym_not_DASHhas2] = ACTIONS(1744), - [anon_sym_starts_DASHwith2] = ACTIONS(1744), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1744), - [anon_sym_ends_DASHwith2] = ACTIONS(1744), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1744), - [anon_sym_EQ_EQ2] = ACTIONS(1744), - [anon_sym_BANG_EQ2] = ACTIONS(1744), - [anon_sym_LT2] = ACTIONS(1746), - [anon_sym_LT_EQ2] = ACTIONS(1744), - [anon_sym_GT_EQ2] = ACTIONS(1744), - [anon_sym_EQ_TILDE2] = ACTIONS(1744), - [anon_sym_BANG_TILDE2] = ACTIONS(1744), - [anon_sym_like2] = ACTIONS(1744), - [anon_sym_not_DASHlike2] = ACTIONS(1744), - [anon_sym_STAR_STAR2] = ACTIONS(1744), - [anon_sym_PLUS_PLUS2] = ACTIONS(1744), - [anon_sym_SLASH2] = ACTIONS(1746), - [anon_sym_mod2] = ACTIONS(1744), - [anon_sym_SLASH_SLASH2] = ACTIONS(1744), - [anon_sym_PLUS2] = ACTIONS(1746), - [anon_sym_bit_DASHshl2] = ACTIONS(1744), - [anon_sym_bit_DASHshr2] = ACTIONS(1744), - [anon_sym_bit_DASHand2] = ACTIONS(1744), - [anon_sym_bit_DASHxor2] = ACTIONS(1744), - [anon_sym_bit_DASHor2] = ACTIONS(1744), - [anon_sym_DOT] = ACTIONS(2802), - [aux_sym__immediate_decimal_token5] = ACTIONS(1910), - [anon_sym_err_GT] = ACTIONS(1746), - [anon_sym_out_GT] = ACTIONS(1746), - [anon_sym_e_GT] = ACTIONS(1746), - [anon_sym_o_GT] = ACTIONS(1746), - [anon_sym_err_PLUSout_GT] = ACTIONS(1746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1746), - [anon_sym_o_PLUSe_GT] = ACTIONS(1746), - [anon_sym_e_PLUSo_GT] = ACTIONS(1746), - [anon_sym_err_GT_GT] = ACTIONS(1744), - [anon_sym_out_GT_GT] = ACTIONS(1744), - [anon_sym_e_GT_GT] = ACTIONS(1744), - [anon_sym_o_GT_GT] = ACTIONS(1744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1744), + [anon_sym_in] = ACTIONS(2710), + [sym__newline] = ACTIONS(2710), + [anon_sym_SEMI] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(2710), + [anon_sym_err_GT_PIPE] = ACTIONS(2710), + [anon_sym_out_GT_PIPE] = ACTIONS(2710), + [anon_sym_e_GT_PIPE] = ACTIONS(2710), + [anon_sym_o_GT_PIPE] = ACTIONS(2710), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2710), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2710), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2710), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2710), + [anon_sym_RPAREN] = ACTIONS(2710), + [anon_sym_GT2] = ACTIONS(2712), + [anon_sym_DASH2] = ACTIONS(2710), + [anon_sym_LBRACE] = ACTIONS(2710), + [anon_sym_STAR2] = ACTIONS(2712), + [anon_sym_and2] = ACTIONS(2710), + [anon_sym_xor2] = ACTIONS(2710), + [anon_sym_or2] = ACTIONS(2710), + [anon_sym_not_DASHin2] = ACTIONS(2710), + [anon_sym_has2] = ACTIONS(2710), + [anon_sym_not_DASHhas2] = ACTIONS(2710), + [anon_sym_starts_DASHwith2] = ACTIONS(2710), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2710), + [anon_sym_ends_DASHwith2] = ACTIONS(2710), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2710), + [anon_sym_EQ_EQ2] = ACTIONS(2710), + [anon_sym_BANG_EQ2] = ACTIONS(2710), + [anon_sym_LT2] = ACTIONS(2712), + [anon_sym_LT_EQ2] = ACTIONS(2710), + [anon_sym_GT_EQ2] = ACTIONS(2710), + [anon_sym_EQ_TILDE2] = ACTIONS(2710), + [anon_sym_BANG_TILDE2] = ACTIONS(2710), + [anon_sym_like2] = ACTIONS(2710), + [anon_sym_not_DASHlike2] = ACTIONS(2710), + [anon_sym_STAR_STAR2] = ACTIONS(2710), + [anon_sym_PLUS_PLUS2] = ACTIONS(2710), + [anon_sym_SLASH2] = ACTIONS(2712), + [anon_sym_mod2] = ACTIONS(2710), + [anon_sym_SLASH_SLASH2] = ACTIONS(2710), + [anon_sym_PLUS2] = ACTIONS(2712), + [anon_sym_bit_DASHshl2] = ACTIONS(2710), + [anon_sym_bit_DASHshr2] = ACTIONS(2710), + [anon_sym_bit_DASHand2] = ACTIONS(2710), + [anon_sym_bit_DASHxor2] = ACTIONS(2710), + [anon_sym_bit_DASHor2] = ACTIONS(2710), + [anon_sym_err_GT] = ACTIONS(2712), + [anon_sym_out_GT] = ACTIONS(2712), + [anon_sym_e_GT] = ACTIONS(2712), + [anon_sym_o_GT] = ACTIONS(2712), + [anon_sym_err_PLUSout_GT] = ACTIONS(2712), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2712), + [anon_sym_o_PLUSe_GT] = ACTIONS(2712), + [anon_sym_e_PLUSo_GT] = ACTIONS(2712), + [anon_sym_err_GT_GT] = ACTIONS(2710), + [anon_sym_out_GT_GT] = ACTIONS(2710), + [anon_sym_e_GT_GT] = ACTIONS(2710), + [anon_sym_o_GT_GT] = ACTIONS(2710), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2710), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2710), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2710), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2710), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1128)] = { - [sym__expr_parenthesized_immediate] = STATE(4884), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1128), - [ts_builtin_sym_end] = ACTIONS(2098), - [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_GT2] = ACTIONS(2100), - [anon_sym_DASH2] = 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(1724), - [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_in] = ACTIONS(2710), + [sym__newline] = ACTIONS(2710), + [anon_sym_SEMI] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(2710), + [anon_sym_err_GT_PIPE] = ACTIONS(2710), + [anon_sym_out_GT_PIPE] = ACTIONS(2710), + [anon_sym_e_GT_PIPE] = ACTIONS(2710), + [anon_sym_o_GT_PIPE] = ACTIONS(2710), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2710), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2710), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2710), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2710), + [anon_sym_RPAREN] = ACTIONS(2710), + [anon_sym_GT2] = ACTIONS(2712), + [anon_sym_DASH2] = ACTIONS(2710), + [anon_sym_LBRACE] = ACTIONS(2710), + [anon_sym_STAR2] = ACTIONS(2712), + [anon_sym_and2] = ACTIONS(2710), + [anon_sym_xor2] = ACTIONS(2710), + [anon_sym_or2] = ACTIONS(2710), + [anon_sym_not_DASHin2] = ACTIONS(2710), + [anon_sym_has2] = ACTIONS(2710), + [anon_sym_not_DASHhas2] = ACTIONS(2710), + [anon_sym_starts_DASHwith2] = ACTIONS(2710), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2710), + [anon_sym_ends_DASHwith2] = ACTIONS(2710), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2710), + [anon_sym_EQ_EQ2] = ACTIONS(2710), + [anon_sym_BANG_EQ2] = ACTIONS(2710), + [anon_sym_LT2] = ACTIONS(2712), + [anon_sym_LT_EQ2] = ACTIONS(2710), + [anon_sym_GT_EQ2] = ACTIONS(2710), + [anon_sym_EQ_TILDE2] = ACTIONS(2710), + [anon_sym_BANG_TILDE2] = ACTIONS(2710), + [anon_sym_like2] = ACTIONS(2710), + [anon_sym_not_DASHlike2] = ACTIONS(2710), + [anon_sym_STAR_STAR2] = ACTIONS(2710), + [anon_sym_PLUS_PLUS2] = ACTIONS(2710), + [anon_sym_SLASH2] = ACTIONS(2712), + [anon_sym_mod2] = ACTIONS(2710), + [anon_sym_SLASH_SLASH2] = ACTIONS(2710), + [anon_sym_PLUS2] = ACTIONS(2712), + [anon_sym_bit_DASHshl2] = ACTIONS(2710), + [anon_sym_bit_DASHshr2] = ACTIONS(2710), + [anon_sym_bit_DASHand2] = ACTIONS(2710), + [anon_sym_bit_DASHxor2] = ACTIONS(2710), + [anon_sym_bit_DASHor2] = ACTIONS(2710), + [anon_sym_err_GT] = ACTIONS(2712), + [anon_sym_out_GT] = ACTIONS(2712), + [anon_sym_e_GT] = ACTIONS(2712), + [anon_sym_o_GT] = ACTIONS(2712), + [anon_sym_err_PLUSout_GT] = ACTIONS(2712), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2712), + [anon_sym_o_PLUSe_GT] = ACTIONS(2712), + [anon_sym_e_PLUSo_GT] = ACTIONS(2712), + [anon_sym_err_GT_GT] = ACTIONS(2710), + [anon_sym_out_GT_GT] = ACTIONS(2710), + [anon_sym_e_GT_GT] = ACTIONS(2710), + [anon_sym_o_GT_GT] = ACTIONS(2710), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2710), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2710), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2710), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2710), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1129)] = { - [sym__expr_parenthesized_immediate] = STATE(4884), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1129), - [ts_builtin_sym_end] = ACTIONS(2098), - [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_GT2] = ACTIONS(2100), - [anon_sym_DASH2] = 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(1724), - [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_in] = ACTIONS(2710), + [sym__newline] = ACTIONS(2710), + [anon_sym_SEMI] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(2710), + [anon_sym_err_GT_PIPE] = ACTIONS(2710), + [anon_sym_out_GT_PIPE] = ACTIONS(2710), + [anon_sym_e_GT_PIPE] = ACTIONS(2710), + [anon_sym_o_GT_PIPE] = ACTIONS(2710), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2710), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2710), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2710), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2710), + [anon_sym_RPAREN] = ACTIONS(2710), + [anon_sym_GT2] = ACTIONS(2712), + [anon_sym_DASH2] = ACTIONS(2710), + [anon_sym_LBRACE] = ACTIONS(2710), + [anon_sym_STAR2] = ACTIONS(2712), + [anon_sym_and2] = ACTIONS(2710), + [anon_sym_xor2] = ACTIONS(2710), + [anon_sym_or2] = ACTIONS(2710), + [anon_sym_not_DASHin2] = ACTIONS(2710), + [anon_sym_has2] = ACTIONS(2710), + [anon_sym_not_DASHhas2] = ACTIONS(2710), + [anon_sym_starts_DASHwith2] = ACTIONS(2710), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2710), + [anon_sym_ends_DASHwith2] = ACTIONS(2710), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2710), + [anon_sym_EQ_EQ2] = ACTIONS(2710), + [anon_sym_BANG_EQ2] = ACTIONS(2710), + [anon_sym_LT2] = ACTIONS(2712), + [anon_sym_LT_EQ2] = ACTIONS(2710), + [anon_sym_GT_EQ2] = ACTIONS(2710), + [anon_sym_EQ_TILDE2] = ACTIONS(2710), + [anon_sym_BANG_TILDE2] = ACTIONS(2710), + [anon_sym_like2] = ACTIONS(2710), + [anon_sym_not_DASHlike2] = ACTIONS(2710), + [anon_sym_STAR_STAR2] = ACTIONS(2710), + [anon_sym_PLUS_PLUS2] = ACTIONS(2710), + [anon_sym_SLASH2] = ACTIONS(2712), + [anon_sym_mod2] = ACTIONS(2710), + [anon_sym_SLASH_SLASH2] = ACTIONS(2710), + [anon_sym_PLUS2] = ACTIONS(2712), + [anon_sym_bit_DASHshl2] = ACTIONS(2710), + [anon_sym_bit_DASHshr2] = ACTIONS(2710), + [anon_sym_bit_DASHand2] = ACTIONS(2710), + [anon_sym_bit_DASHxor2] = ACTIONS(2710), + [anon_sym_bit_DASHor2] = ACTIONS(2710), + [anon_sym_err_GT] = ACTIONS(2712), + [anon_sym_out_GT] = ACTIONS(2712), + [anon_sym_e_GT] = ACTIONS(2712), + [anon_sym_o_GT] = ACTIONS(2712), + [anon_sym_err_PLUSout_GT] = ACTIONS(2712), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2712), + [anon_sym_o_PLUSe_GT] = ACTIONS(2712), + [anon_sym_e_PLUSo_GT] = ACTIONS(2712), + [anon_sym_err_GT_GT] = ACTIONS(2710), + [anon_sym_out_GT_GT] = ACTIONS(2710), + [anon_sym_e_GT_GT] = ACTIONS(2710), + [anon_sym_o_GT_GT] = ACTIONS(2710), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2710), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2710), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2710), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2710), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1130)] = { - [sym__expression] = STATE(4818), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), - [sym__expr_binary_expression] = STATE(2253), - [sym_expr_parenthesized] = STATE(704), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1861), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1130), - [aux_sym_cmd_identifier_token2] = ACTIONS(2682), - [anon_sym_true] = ACTIONS(2557), - [anon_sym_false] = ACTIONS(2557), - [anon_sym_null] = ACTIONS(2559), - [aux_sym_cmd_identifier_token3] = ACTIONS(2561), - [aux_sym_cmd_identifier_token4] = ACTIONS(2561), - [aux_sym_cmd_identifier_token5] = ACTIONS(2561), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), - [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(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(2565), - [aux_sym__val_number_decimal_token4] = ACTIONS(2565), - [aux_sym__val_number_token1] = ACTIONS(2561), - [aux_sym__val_number_token2] = ACTIONS(2561), - [aux_sym__val_number_token3] = ACTIONS(2561), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2567), - [anon_sym_DQUOTE] = 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(2684), - [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_in] = ACTIONS(2818), + [sym__newline] = ACTIONS(2818), + [anon_sym_SEMI] = ACTIONS(2818), + [anon_sym_PIPE] = ACTIONS(2818), + [anon_sym_err_GT_PIPE] = ACTIONS(2818), + [anon_sym_out_GT_PIPE] = ACTIONS(2818), + [anon_sym_e_GT_PIPE] = ACTIONS(2818), + [anon_sym_o_GT_PIPE] = ACTIONS(2818), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2818), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2818), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2818), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2818), + [anon_sym_RPAREN] = ACTIONS(2818), + [anon_sym_GT2] = ACTIONS(2820), + [anon_sym_DASH2] = ACTIONS(2818), + [anon_sym_LBRACE] = ACTIONS(2818), + [anon_sym_STAR2] = ACTIONS(2820), + [anon_sym_and2] = ACTIONS(2818), + [anon_sym_xor2] = ACTIONS(2818), + [anon_sym_or2] = ACTIONS(2818), + [anon_sym_not_DASHin2] = ACTIONS(2818), + [anon_sym_has2] = ACTIONS(2818), + [anon_sym_not_DASHhas2] = ACTIONS(2818), + [anon_sym_starts_DASHwith2] = ACTIONS(2818), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2818), + [anon_sym_ends_DASHwith2] = ACTIONS(2818), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2818), + [anon_sym_EQ_EQ2] = ACTIONS(2818), + [anon_sym_BANG_EQ2] = ACTIONS(2818), + [anon_sym_LT2] = ACTIONS(2820), + [anon_sym_LT_EQ2] = ACTIONS(2818), + [anon_sym_GT_EQ2] = ACTIONS(2818), + [anon_sym_EQ_TILDE2] = ACTIONS(2818), + [anon_sym_BANG_TILDE2] = ACTIONS(2818), + [anon_sym_like2] = ACTIONS(2818), + [anon_sym_not_DASHlike2] = ACTIONS(2818), + [anon_sym_STAR_STAR2] = ACTIONS(2818), + [anon_sym_PLUS_PLUS2] = ACTIONS(2818), + [anon_sym_SLASH2] = ACTIONS(2820), + [anon_sym_mod2] = ACTIONS(2818), + [anon_sym_SLASH_SLASH2] = ACTIONS(2818), + [anon_sym_PLUS2] = ACTIONS(2820), + [anon_sym_bit_DASHshl2] = ACTIONS(2818), + [anon_sym_bit_DASHshr2] = ACTIONS(2818), + [anon_sym_bit_DASHand2] = ACTIONS(2818), + [anon_sym_bit_DASHxor2] = ACTIONS(2818), + [anon_sym_bit_DASHor2] = ACTIONS(2818), + [anon_sym_err_GT] = ACTIONS(2820), + [anon_sym_out_GT] = ACTIONS(2820), + [anon_sym_e_GT] = ACTIONS(2820), + [anon_sym_o_GT] = ACTIONS(2820), + [anon_sym_err_PLUSout_GT] = ACTIONS(2820), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2820), + [anon_sym_o_PLUSe_GT] = ACTIONS(2820), + [anon_sym_e_PLUSo_GT] = ACTIONS(2820), + [anon_sym_err_GT_GT] = ACTIONS(2818), + [anon_sym_out_GT_GT] = ACTIONS(2818), + [anon_sym_e_GT_GT] = ACTIONS(2818), + [anon_sym_o_GT_GT] = ACTIONS(2818), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2818), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2818), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2818), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2818), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1131)] = { - [sym_expr_unary] = STATE(2903), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_parenthesized] = STATE(2503), - [sym_val_range] = STATE(2903), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(2903), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(2613), - [sym_val_variable] = STATE(2549), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(2356), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(2266), - [sym__str_double_quotes] = STATE(2266), - [sym__str_single_quotes] = STATE(2266), - [sym__str_back_ticks] = STATE(2266), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(2591), - [sym__unquoted_with_expr] = STATE(2889), - [sym__unquoted_anonymous_prefix] = STATE(4619), + [aux_sym__repeat_newline] = STATE(4461), + [sym__match_pattern_expression] = STATE(4356), + [sym__match_pattern_value] = STATE(4686), + [sym__match_pattern_list_body] = STATE(4803), + [sym__match_pattern_list] = STATE(4805), + [sym__match_pattern_rest] = STATE(5278), + [sym__match_pattern_record] = STATE(4754), + [sym_expr_parenthesized] = STATE(3964), + [sym_val_range] = STATE(4686), + [sym__val_range] = STATE(5330), + [sym_val_nothing] = STATE(4754), + [sym_val_bool] = STATE(4347), + [sym_val_variable] = STATE(3965), + [sym_val_number] = STATE(4754), + [sym__val_number_decimal] = STATE(3795), + [sym__val_number] = STATE(4628), + [sym_val_duration] = STATE(4754), + [sym_val_filesize] = STATE(4754), + [sym_val_binary] = STATE(4754), + [sym_val_string] = STATE(4754), + [sym__raw_str] = STATE(3725), + [sym__str_double_quotes] = STATE(3725), + [sym__str_single_quotes] = STATE(3725), + [sym__str_back_ticks] = STATE(3725), + [sym_val_list] = STATE(5121), + [sym__table_head] = STATE(3916), + [sym_val_table] = STATE(4754), + [sym__unquoted_in_list] = STATE(4356), + [sym__unquoted_anonymous_prefix] = STATE(5330), [sym_comment] = STATE(1131), - [anon_sym_true] = ACTIONS(2686), - [anon_sym_false] = ACTIONS(2686), - [anon_sym_null] = ACTIONS(2688), - [aux_sym_cmd_identifier_token3] = ACTIONS(2690), - [aux_sym_cmd_identifier_token4] = ACTIONS(2690), - [aux_sym_cmd_identifier_token5] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(2692), - [anon_sym_LPAREN] = ACTIONS(2694), - [anon_sym_DOLLAR] = ACTIONS(2696), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(2698), - [anon_sym_DOT_DOT] = ACTIONS(2700), - [aux_sym_expr_unary_token1] = ACTIONS(2702), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2704), - [anon_sym_DOT_DOT_LT] = ACTIONS(2704), - [aux_sym__val_number_decimal_token1] = ACTIONS(2706), - [aux_sym__val_number_decimal_token2] = ACTIONS(2708), - [aux_sym__val_number_decimal_token3] = ACTIONS(2710), - [aux_sym__val_number_decimal_token4] = ACTIONS(2710), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2712), - [anon_sym_DQUOTE] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(1802), - [anon_sym_BQUOTE] = ACTIONS(1804), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1936), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1806), - }, - [STATE(1132)] = { - [sym_comment] = STATE(1132), - [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(1133)] = { - [sym_expr_unary] = STATE(2829), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_parenthesized] = STATE(2536), - [sym_val_range] = STATE(2829), - [sym__val_range] = STATE(4619), - [sym__value] = STATE(2829), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(2613), - [sym_val_variable] = STATE(2549), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(2356), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(2266), - [sym__str_double_quotes] = STATE(2266), - [sym__str_single_quotes] = STATE(2266), - [sym__str_back_ticks] = STATE(2266), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_unquoted] = STATE(2616), - [sym__unquoted_with_expr] = STATE(2857), - [sym__unquoted_anonymous_prefix] = STATE(4619), - [sym_comment] = STATE(1133), - [anon_sym_true] = ACTIONS(2686), - [anon_sym_false] = ACTIONS(2686), - [anon_sym_null] = ACTIONS(2688), - [aux_sym_cmd_identifier_token3] = ACTIONS(2690), - [aux_sym_cmd_identifier_token4] = ACTIONS(2690), - [aux_sym_cmd_identifier_token5] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(2692), - [anon_sym_LPAREN] = ACTIONS(2694), - [anon_sym_DOLLAR] = ACTIONS(2696), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(2698), - [anon_sym_DOT_DOT] = ACTIONS(2700), - [aux_sym_expr_unary_token1] = ACTIONS(2702), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2704), - [anon_sym_DOT_DOT_LT] = ACTIONS(2704), - [aux_sym__val_number_decimal_token1] = ACTIONS(2706), - [aux_sym__val_number_decimal_token2] = ACTIONS(2708), - [aux_sym__val_number_decimal_token3] = ACTIONS(2710), - [aux_sym__val_number_decimal_token4] = ACTIONS(2710), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2712), - [anon_sym_DQUOTE] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(1802), - [anon_sym_BQUOTE] = ACTIONS(1804), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1936), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1806), - }, - [STATE(1134)] = { - [aux_sym__repeat_newline] = STATE(4207), - [sym__match_pattern_expression] = STATE(4432), - [sym__match_pattern_value] = STATE(4736), - [sym__match_pattern_list_body] = STATE(4697), - [sym__match_pattern_list] = STATE(4737), - [sym__match_pattern_rest] = STATE(5356), - [sym__match_pattern_record] = STATE(4742), - [sym_expr_parenthesized] = STATE(4040), - [sym_val_range] = STATE(4736), - [sym__val_range] = STATE(5140), - [sym_val_nothing] = STATE(4742), - [sym_val_bool] = STATE(4490), - [sym_val_variable] = STATE(4041), - [sym_val_number] = STATE(4742), - [sym__val_number_decimal] = STATE(3727), - [sym__val_number] = STATE(4386), - [sym_val_duration] = STATE(4742), - [sym_val_filesize] = STATE(4742), - [sym_val_binary] = STATE(4742), - [sym_val_string] = STATE(4742), - [sym__raw_str] = STATE(3665), - [sym__str_double_quotes] = STATE(3665), - [sym__str_single_quotes] = STATE(3665), - [sym__str_back_ticks] = STATE(3665), - [sym_val_list] = STATE(5146), - [sym__table_head] = STATE(3824), - [sym_val_table] = STATE(4742), - [sym__unquoted_in_list] = STATE(4432), - [sym__unquoted_anonymous_prefix] = STATE(5140), - [sym_comment] = STATE(1134), - [aux_sym__types_body_repeat1] = STATE(1402), - [aux_sym_parameter_repeat2] = STATE(4158), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1433), + [aux_sym__types_body_repeat1] = STATE(1407), + [aux_sym_parameter_repeat2] = STATE(4311), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1431), [anon_sym_true] = ACTIONS(1384), [anon_sym_false] = ACTIONS(1384), [anon_sym_null] = ACTIONS(1386), [aux_sym_cmd_identifier_token3] = ACTIONS(1388), [aux_sym_cmd_identifier_token4] = ACTIONS(1388), [aux_sym_cmd_identifier_token5] = ACTIONS(1388), - [sym__newline] = ACTIONS(2668), - [anon_sym_LBRACK] = ACTIONS(2670), - [anon_sym_RBRACK] = ACTIONS(2728), + [sym__newline] = ACTIONS(2714), + [anon_sym_LBRACK] = ACTIONS(2716), + [anon_sym_RBRACK] = ACTIONS(2718), [anon_sym_LPAREN] = ACTIONS(1396), [anon_sym_COMMA] = ACTIONS(1398), - [anon_sym_DOLLAR] = ACTIONS(2674), - [anon_sym_LBRACE] = ACTIONS(2676), + [anon_sym_DOLLAR] = ACTIONS(2720), + [anon_sym_LBRACE] = ACTIONS(2722), [anon_sym_DOT_DOT] = ACTIONS(1404), [anon_sym_DOT_DOT_EQ] = ACTIONS(1406), [anon_sym_DOT_DOT_LT] = ACTIONS(1406), @@ -131280,7 +131953,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0b] = ACTIONS(1416), [anon_sym_0o] = ACTIONS(1418), [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(2680), + [sym_val_date] = ACTIONS(2724), [anon_sym_DQUOTE] = ACTIONS(1422), [anon_sym_SQUOTE] = ACTIONS(1424), [anon_sym_BQUOTE] = ACTIONS(1426), @@ -131288,195 +131961,399 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1436), }, + [STATE(1132)] = { + [aux_sym__repeat_newline] = STATE(485), + [sym_comment] = STATE(1132), + [anon_sym_in] = ACTIONS(2710), + [sym__newline] = ACTIONS(2710), + [anon_sym_SEMI] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(2710), + [anon_sym_err_GT_PIPE] = ACTIONS(2710), + [anon_sym_out_GT_PIPE] = ACTIONS(2710), + [anon_sym_e_GT_PIPE] = ACTIONS(2710), + [anon_sym_o_GT_PIPE] = ACTIONS(2710), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2710), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2710), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2710), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2710), + [anon_sym_RPAREN] = ACTIONS(2710), + [anon_sym_GT2] = ACTIONS(2712), + [anon_sym_DASH2] = ACTIONS(2710), + [anon_sym_LBRACE] = ACTIONS(2710), + [anon_sym_STAR2] = ACTIONS(2712), + [anon_sym_and2] = ACTIONS(2710), + [anon_sym_xor2] = ACTIONS(2710), + [anon_sym_or2] = ACTIONS(2710), + [anon_sym_not_DASHin2] = ACTIONS(2710), + [anon_sym_has2] = ACTIONS(2710), + [anon_sym_not_DASHhas2] = ACTIONS(2710), + [anon_sym_starts_DASHwith2] = ACTIONS(2710), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2710), + [anon_sym_ends_DASHwith2] = ACTIONS(2710), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2710), + [anon_sym_EQ_EQ2] = ACTIONS(2710), + [anon_sym_BANG_EQ2] = ACTIONS(2710), + [anon_sym_LT2] = ACTIONS(2712), + [anon_sym_LT_EQ2] = ACTIONS(2710), + [anon_sym_GT_EQ2] = ACTIONS(2710), + [anon_sym_EQ_TILDE2] = ACTIONS(2710), + [anon_sym_BANG_TILDE2] = ACTIONS(2710), + [anon_sym_like2] = ACTIONS(2710), + [anon_sym_not_DASHlike2] = ACTIONS(2710), + [anon_sym_STAR_STAR2] = ACTIONS(2710), + [anon_sym_PLUS_PLUS2] = ACTIONS(2710), + [anon_sym_SLASH2] = ACTIONS(2712), + [anon_sym_mod2] = ACTIONS(2710), + [anon_sym_SLASH_SLASH2] = ACTIONS(2710), + [anon_sym_PLUS2] = ACTIONS(2712), + [anon_sym_bit_DASHshl2] = ACTIONS(2710), + [anon_sym_bit_DASHshr2] = ACTIONS(2710), + [anon_sym_bit_DASHand2] = ACTIONS(2710), + [anon_sym_bit_DASHxor2] = ACTIONS(2710), + [anon_sym_bit_DASHor2] = ACTIONS(2710), + [anon_sym_err_GT] = ACTIONS(2712), + [anon_sym_out_GT] = ACTIONS(2712), + [anon_sym_e_GT] = ACTIONS(2712), + [anon_sym_o_GT] = ACTIONS(2712), + [anon_sym_err_PLUSout_GT] = ACTIONS(2712), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2712), + [anon_sym_o_PLUSe_GT] = ACTIONS(2712), + [anon_sym_e_PLUSo_GT] = ACTIONS(2712), + [anon_sym_err_GT_GT] = ACTIONS(2710), + [anon_sym_out_GT_GT] = ACTIONS(2710), + [anon_sym_e_GT_GT] = ACTIONS(2710), + [anon_sym_o_GT_GT] = ACTIONS(2710), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2710), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2710), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2710), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2710), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1133)] = { + [aux_sym__repeat_newline] = STATE(485), + [sym_comment] = STATE(1133), + [anon_sym_in] = ACTIONS(2710), + [sym__newline] = ACTIONS(2710), + [anon_sym_SEMI] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(2710), + [anon_sym_err_GT_PIPE] = ACTIONS(2710), + [anon_sym_out_GT_PIPE] = ACTIONS(2710), + [anon_sym_e_GT_PIPE] = ACTIONS(2710), + [anon_sym_o_GT_PIPE] = ACTIONS(2710), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2710), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2710), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2710), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2710), + [anon_sym_RPAREN] = ACTIONS(2710), + [anon_sym_GT2] = ACTIONS(2712), + [anon_sym_DASH2] = ACTIONS(2710), + [anon_sym_LBRACE] = ACTIONS(2710), + [anon_sym_STAR2] = ACTIONS(2712), + [anon_sym_and2] = ACTIONS(2710), + [anon_sym_xor2] = ACTIONS(2710), + [anon_sym_or2] = ACTIONS(2710), + [anon_sym_not_DASHin2] = ACTIONS(2710), + [anon_sym_has2] = ACTIONS(2710), + [anon_sym_not_DASHhas2] = ACTIONS(2710), + [anon_sym_starts_DASHwith2] = ACTIONS(2710), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2710), + [anon_sym_ends_DASHwith2] = ACTIONS(2710), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2710), + [anon_sym_EQ_EQ2] = ACTIONS(2710), + [anon_sym_BANG_EQ2] = ACTIONS(2710), + [anon_sym_LT2] = ACTIONS(2712), + [anon_sym_LT_EQ2] = ACTIONS(2710), + [anon_sym_GT_EQ2] = ACTIONS(2710), + [anon_sym_EQ_TILDE2] = ACTIONS(2710), + [anon_sym_BANG_TILDE2] = ACTIONS(2710), + [anon_sym_like2] = ACTIONS(2710), + [anon_sym_not_DASHlike2] = ACTIONS(2710), + [anon_sym_STAR_STAR2] = ACTIONS(2710), + [anon_sym_PLUS_PLUS2] = ACTIONS(2710), + [anon_sym_SLASH2] = ACTIONS(2712), + [anon_sym_mod2] = ACTIONS(2710), + [anon_sym_SLASH_SLASH2] = ACTIONS(2710), + [anon_sym_PLUS2] = ACTIONS(2712), + [anon_sym_bit_DASHshl2] = ACTIONS(2710), + [anon_sym_bit_DASHshr2] = ACTIONS(2710), + [anon_sym_bit_DASHand2] = ACTIONS(2710), + [anon_sym_bit_DASHxor2] = ACTIONS(2710), + [anon_sym_bit_DASHor2] = ACTIONS(2710), + [anon_sym_err_GT] = ACTIONS(2712), + [anon_sym_out_GT] = ACTIONS(2712), + [anon_sym_e_GT] = ACTIONS(2712), + [anon_sym_o_GT] = ACTIONS(2712), + [anon_sym_err_PLUSout_GT] = ACTIONS(2712), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2712), + [anon_sym_o_PLUSe_GT] = ACTIONS(2712), + [anon_sym_e_PLUSo_GT] = ACTIONS(2712), + [anon_sym_err_GT_GT] = ACTIONS(2710), + [anon_sym_out_GT_GT] = ACTIONS(2710), + [anon_sym_e_GT_GT] = ACTIONS(2710), + [anon_sym_o_GT_GT] = ACTIONS(2710), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2710), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2710), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2710), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2710), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1134)] = { + [aux_sym__repeat_newline] = STATE(485), + [sym_comment] = STATE(1134), + [anon_sym_in] = ACTIONS(2710), + [sym__newline] = ACTIONS(2710), + [anon_sym_SEMI] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(2710), + [anon_sym_err_GT_PIPE] = ACTIONS(2710), + [anon_sym_out_GT_PIPE] = ACTIONS(2710), + [anon_sym_e_GT_PIPE] = ACTIONS(2710), + [anon_sym_o_GT_PIPE] = ACTIONS(2710), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2710), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2710), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2710), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2710), + [anon_sym_RPAREN] = ACTIONS(2710), + [anon_sym_GT2] = ACTIONS(2712), + [anon_sym_DASH2] = ACTIONS(2710), + [anon_sym_LBRACE] = ACTIONS(2710), + [anon_sym_STAR2] = ACTIONS(2712), + [anon_sym_and2] = ACTIONS(2710), + [anon_sym_xor2] = ACTIONS(2710), + [anon_sym_or2] = ACTIONS(2710), + [anon_sym_not_DASHin2] = ACTIONS(2710), + [anon_sym_has2] = ACTIONS(2710), + [anon_sym_not_DASHhas2] = ACTIONS(2710), + [anon_sym_starts_DASHwith2] = ACTIONS(2710), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2710), + [anon_sym_ends_DASHwith2] = ACTIONS(2710), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2710), + [anon_sym_EQ_EQ2] = ACTIONS(2710), + [anon_sym_BANG_EQ2] = ACTIONS(2710), + [anon_sym_LT2] = ACTIONS(2712), + [anon_sym_LT_EQ2] = ACTIONS(2710), + [anon_sym_GT_EQ2] = ACTIONS(2710), + [anon_sym_EQ_TILDE2] = ACTIONS(2710), + [anon_sym_BANG_TILDE2] = ACTIONS(2710), + [anon_sym_like2] = ACTIONS(2710), + [anon_sym_not_DASHlike2] = ACTIONS(2710), + [anon_sym_STAR_STAR2] = ACTIONS(2710), + [anon_sym_PLUS_PLUS2] = ACTIONS(2710), + [anon_sym_SLASH2] = ACTIONS(2712), + [anon_sym_mod2] = ACTIONS(2710), + [anon_sym_SLASH_SLASH2] = ACTIONS(2710), + [anon_sym_PLUS2] = ACTIONS(2712), + [anon_sym_bit_DASHshl2] = ACTIONS(2710), + [anon_sym_bit_DASHshr2] = ACTIONS(2710), + [anon_sym_bit_DASHand2] = ACTIONS(2710), + [anon_sym_bit_DASHxor2] = ACTIONS(2710), + [anon_sym_bit_DASHor2] = ACTIONS(2710), + [anon_sym_err_GT] = ACTIONS(2712), + [anon_sym_out_GT] = ACTIONS(2712), + [anon_sym_e_GT] = ACTIONS(2712), + [anon_sym_o_GT] = ACTIONS(2712), + [anon_sym_err_PLUSout_GT] = ACTIONS(2712), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2712), + [anon_sym_o_PLUSe_GT] = ACTIONS(2712), + [anon_sym_e_PLUSo_GT] = ACTIONS(2712), + [anon_sym_err_GT_GT] = ACTIONS(2710), + [anon_sym_out_GT_GT] = ACTIONS(2710), + [anon_sym_e_GT_GT] = ACTIONS(2710), + [anon_sym_o_GT_GT] = ACTIONS(2710), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2710), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2710), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2710), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2710), + [anon_sym_POUND] = ACTIONS(3), + }, [STATE(1135)] = { - [sym__expr_parenthesized_immediate] = STATE(4884), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1135), - [ts_builtin_sym_end] = ACTIONS(2098), - [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_GT2] = ACTIONS(2100), - [anon_sym_DASH2] = 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(1724), - [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_in] = ACTIONS(2710), + [sym__newline] = ACTIONS(2710), + [anon_sym_SEMI] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(2710), + [anon_sym_err_GT_PIPE] = ACTIONS(2710), + [anon_sym_out_GT_PIPE] = ACTIONS(2710), + [anon_sym_e_GT_PIPE] = ACTIONS(2710), + [anon_sym_o_GT_PIPE] = ACTIONS(2710), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2710), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2710), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2710), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2710), + [anon_sym_RPAREN] = ACTIONS(2710), + [anon_sym_GT2] = ACTIONS(2712), + [anon_sym_DASH2] = ACTIONS(2710), + [anon_sym_LBRACE] = ACTIONS(2710), + [anon_sym_STAR2] = ACTIONS(2712), + [anon_sym_and2] = ACTIONS(2710), + [anon_sym_xor2] = ACTIONS(2710), + [anon_sym_or2] = ACTIONS(2710), + [anon_sym_not_DASHin2] = ACTIONS(2710), + [anon_sym_has2] = ACTIONS(2710), + [anon_sym_not_DASHhas2] = ACTIONS(2710), + [anon_sym_starts_DASHwith2] = ACTIONS(2710), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2710), + [anon_sym_ends_DASHwith2] = ACTIONS(2710), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2710), + [anon_sym_EQ_EQ2] = ACTIONS(2710), + [anon_sym_BANG_EQ2] = ACTIONS(2710), + [anon_sym_LT2] = ACTIONS(2712), + [anon_sym_LT_EQ2] = ACTIONS(2710), + [anon_sym_GT_EQ2] = ACTIONS(2710), + [anon_sym_EQ_TILDE2] = ACTIONS(2710), + [anon_sym_BANG_TILDE2] = ACTIONS(2710), + [anon_sym_like2] = ACTIONS(2710), + [anon_sym_not_DASHlike2] = ACTIONS(2710), + [anon_sym_STAR_STAR2] = ACTIONS(2710), + [anon_sym_PLUS_PLUS2] = ACTIONS(2710), + [anon_sym_SLASH2] = ACTIONS(2712), + [anon_sym_mod2] = ACTIONS(2710), + [anon_sym_SLASH_SLASH2] = ACTIONS(2710), + [anon_sym_PLUS2] = ACTIONS(2712), + [anon_sym_bit_DASHshl2] = ACTIONS(2710), + [anon_sym_bit_DASHshr2] = ACTIONS(2710), + [anon_sym_bit_DASHand2] = ACTIONS(2710), + [anon_sym_bit_DASHxor2] = ACTIONS(2710), + [anon_sym_bit_DASHor2] = ACTIONS(2710), + [anon_sym_err_GT] = ACTIONS(2712), + [anon_sym_out_GT] = ACTIONS(2712), + [anon_sym_e_GT] = ACTIONS(2712), + [anon_sym_o_GT] = ACTIONS(2712), + [anon_sym_err_PLUSout_GT] = ACTIONS(2712), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2712), + [anon_sym_o_PLUSe_GT] = ACTIONS(2712), + [anon_sym_e_PLUSo_GT] = ACTIONS(2712), + [anon_sym_err_GT_GT] = ACTIONS(2710), + [anon_sym_out_GT_GT] = ACTIONS(2710), + [anon_sym_e_GT_GT] = ACTIONS(2710), + [anon_sym_o_GT_GT] = ACTIONS(2710), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2710), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2710), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2710), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2710), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1136)] = { - [sym__expr_parenthesized_immediate] = STATE(4884), + [sym__expr_parenthesized_immediate] = STATE(5483), [sym_comment] = STATE(1136), - [ts_builtin_sym_end] = ACTIONS(2098), - [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_GT2] = ACTIONS(2100), - [anon_sym_DASH2] = 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(1724), - [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), + [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(1818), + [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_POUND] = ACTIONS(3), }, [STATE(1137)] = { - [aux_sym__repeat_newline] = STATE(1356), - [sym__expression_parenthesized] = STATE(4497), - [sym_expr_unary] = STATE(1176), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary_parenthesized] = STATE(1176), - [sym__expr_binary_expression_parenthesized] = STATE(2160), - [sym_expr_parenthesized] = STATE(777), - [sym_val_range] = STATE(1176), - [sym__value] = STATE(1176), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1861), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), + [aux_sym__repeat_newline] = STATE(1358), + [sym__expression_parenthesized] = STATE(4635), + [sym_expr_unary] = STATE(1254), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary_parenthesized] = STATE(1254), + [sym__expr_binary_expression_parenthesized] = STATE(2190), + [sym_expr_parenthesized] = STATE(739), + [sym_val_range] = STATE(1254), + [sym__value] = STATE(1254), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1886), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), [sym_comment] = STATE(1137), - [anon_sym_true] = ACTIONS(1938), - [anon_sym_false] = ACTIONS(1938), - [anon_sym_null] = ACTIONS(2714), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(2792), [aux_sym_cmd_identifier_token3] = ACTIONS(189), [aux_sym_cmd_identifier_token4] = ACTIONS(189), [aux_sym_cmd_identifier_token5] = ACTIONS(189), - [sym__newline] = ACTIONS(2563), + [sym__newline] = ACTIONS(2602), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [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(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1930), - [aux_sym__val_number_decimal_token3] = ACTIONS(1932), - [aux_sym__val_number_decimal_token4] = ACTIONS(1932), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2008), + [aux_sym__val_number_decimal_token3] = ACTIONS(2010), + [aux_sym__val_number_decimal_token4] = ACTIONS(2010), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -131493,266 +132370,200 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(1138)] = { - [aux_sym__repeat_newline] = STATE(527), + [sym__expr_parenthesized_immediate] = STATE(4973), [sym_comment] = STATE(1138), - [anon_sym_in] = ACTIONS(2742), - [sym__newline] = ACTIONS(2742), - [anon_sym_SEMI] = 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_RPAREN] = ACTIONS(2742), - [anon_sym_GT2] = ACTIONS(2744), - [anon_sym_DASH2] = ACTIONS(2742), - [anon_sym_LBRACE] = ACTIONS(2742), - [anon_sym_STAR2] = ACTIONS(2744), - [anon_sym_and2] = ACTIONS(2742), - [anon_sym_xor2] = ACTIONS(2742), - [anon_sym_or2] = ACTIONS(2742), - [anon_sym_not_DASHin2] = ACTIONS(2742), - [anon_sym_has2] = ACTIONS(2742), - [anon_sym_not_DASHhas2] = ACTIONS(2742), - [anon_sym_starts_DASHwith2] = ACTIONS(2742), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2742), - [anon_sym_ends_DASHwith2] = ACTIONS(2742), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2742), - [anon_sym_EQ_EQ2] = ACTIONS(2742), - [anon_sym_BANG_EQ2] = ACTIONS(2742), - [anon_sym_LT2] = ACTIONS(2744), - [anon_sym_LT_EQ2] = ACTIONS(2742), - [anon_sym_GT_EQ2] = ACTIONS(2742), - [anon_sym_EQ_TILDE2] = ACTIONS(2742), - [anon_sym_BANG_TILDE2] = ACTIONS(2742), - [anon_sym_like2] = ACTIONS(2742), - [anon_sym_not_DASHlike2] = ACTIONS(2742), - [anon_sym_STAR_STAR2] = ACTIONS(2742), - [anon_sym_PLUS_PLUS2] = ACTIONS(2742), - [anon_sym_SLASH2] = ACTIONS(2744), - [anon_sym_mod2] = ACTIONS(2742), - [anon_sym_SLASH_SLASH2] = ACTIONS(2742), - [anon_sym_PLUS2] = ACTIONS(2744), - [anon_sym_bit_DASHshl2] = ACTIONS(2742), - [anon_sym_bit_DASHshr2] = ACTIONS(2742), - [anon_sym_bit_DASHand2] = ACTIONS(2742), - [anon_sym_bit_DASHxor2] = ACTIONS(2742), - [anon_sym_bit_DASHor2] = ACTIONS(2742), - [anon_sym_err_GT] = ACTIONS(2744), - [anon_sym_out_GT] = ACTIONS(2744), - [anon_sym_e_GT] = ACTIONS(2744), - [anon_sym_o_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT] = ACTIONS(2744), - [anon_sym_err_GT_GT] = ACTIONS(2742), - [anon_sym_out_GT_GT] = ACTIONS(2742), - [anon_sym_e_GT_GT] = ACTIONS(2742), - [anon_sym_o_GT_GT] = ACTIONS(2742), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2742), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2742), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2742), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2742), + [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(1818), + [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_POUND] = ACTIONS(3), }, [STATE(1139)] = { - [aux_sym__repeat_newline] = STATE(1178), + [aux_sym__repeat_newline] = STATE(1105), [sym_comment] = STATE(1139), - [anon_sym_in] = ACTIONS(2720), - [sym__newline] = ACTIONS(2804), - [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(2807), - [anon_sym_DASH2] = ACTIONS(2809), - [anon_sym_STAR2] = ACTIONS(2811), - [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(2813), - [anon_sym_BANG_EQ2] = ACTIONS(2813), - [anon_sym_LT2] = ACTIONS(2807), - [anon_sym_LT_EQ2] = ACTIONS(2813), - [anon_sym_GT_EQ2] = ACTIONS(2813), - [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(2815), - [anon_sym_PLUS_PLUS2] = ACTIONS(2815), - [anon_sym_SLASH2] = ACTIONS(2811), - [anon_sym_mod2] = ACTIONS(2817), - [anon_sym_SLASH_SLASH2] = ACTIONS(2817), - [anon_sym_PLUS2] = ACTIONS(2819), - [anon_sym_bit_DASHshl2] = ACTIONS(2821), - [anon_sym_bit_DASHshr2] = ACTIONS(2821), - [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(2381), + [sym__newline] = ACTIONS(2381), + [anon_sym_SEMI] = ACTIONS(2381), + [anon_sym_PIPE] = ACTIONS(2381), + [anon_sym_err_GT_PIPE] = ACTIONS(2381), + [anon_sym_out_GT_PIPE] = ACTIONS(2381), + [anon_sym_e_GT_PIPE] = ACTIONS(2381), + [anon_sym_o_GT_PIPE] = ACTIONS(2381), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2381), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2381), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2381), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2381), + [anon_sym_RPAREN] = ACTIONS(2381), + [anon_sym_GT2] = ACTIONS(2383), + [anon_sym_DASH2] = ACTIONS(2381), + [anon_sym_LBRACE] = ACTIONS(2381), + [anon_sym_STAR2] = ACTIONS(2383), + [anon_sym_and2] = ACTIONS(2381), + [anon_sym_xor2] = ACTIONS(2381), + [anon_sym_or2] = ACTIONS(2381), + [anon_sym_not_DASHin2] = ACTIONS(2381), + [anon_sym_has2] = ACTIONS(2381), + [anon_sym_not_DASHhas2] = ACTIONS(2381), + [anon_sym_starts_DASHwith2] = ACTIONS(2381), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2381), + [anon_sym_ends_DASHwith2] = ACTIONS(2381), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2381), + [anon_sym_EQ_EQ2] = ACTIONS(2381), + [anon_sym_BANG_EQ2] = ACTIONS(2381), + [anon_sym_LT2] = ACTIONS(2383), + [anon_sym_LT_EQ2] = ACTIONS(2381), + [anon_sym_GT_EQ2] = ACTIONS(2381), + [anon_sym_EQ_TILDE2] = ACTIONS(2381), + [anon_sym_BANG_TILDE2] = ACTIONS(2381), + [anon_sym_like2] = ACTIONS(2381), + [anon_sym_not_DASHlike2] = ACTIONS(2381), + [anon_sym_STAR_STAR2] = ACTIONS(2381), + [anon_sym_PLUS_PLUS2] = ACTIONS(2381), + [anon_sym_SLASH2] = ACTIONS(2383), + [anon_sym_mod2] = ACTIONS(2381), + [anon_sym_SLASH_SLASH2] = ACTIONS(2381), + [anon_sym_PLUS2] = ACTIONS(2383), + [anon_sym_bit_DASHshl2] = ACTIONS(2381), + [anon_sym_bit_DASHshr2] = ACTIONS(2381), + [anon_sym_bit_DASHand2] = ACTIONS(2381), + [anon_sym_bit_DASHxor2] = ACTIONS(2381), + [anon_sym_bit_DASHor2] = ACTIONS(2381), + [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(2381), + [anon_sym_out_GT_GT] = ACTIONS(2381), + [anon_sym_e_GT_GT] = ACTIONS(2381), + [anon_sym_o_GT_GT] = ACTIONS(2381), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2381), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2381), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2381), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2381), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1140)] = { + [sym__expression] = STATE(5035), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), + [sym__expr_binary_expression] = STATE(2246), + [sym_expr_parenthesized] = STATE(724), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1886), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), [sym_comment] = STATE(1140), - [anon_sym_in] = ACTIONS(2551), - [sym__newline] = ACTIONS(2551), - [anon_sym_SEMI] = ACTIONS(2551), - [anon_sym_PIPE] = ACTIONS(2551), - [anon_sym_err_GT_PIPE] = ACTIONS(2551), - [anon_sym_out_GT_PIPE] = ACTIONS(2551), - [anon_sym_e_GT_PIPE] = ACTIONS(2551), - [anon_sym_o_GT_PIPE] = ACTIONS(2551), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2551), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2551), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2551), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2551), - [anon_sym_RPAREN] = ACTIONS(2551), - [anon_sym_GT2] = ACTIONS(2553), - [anon_sym_DASH2] = ACTIONS(2551), - [anon_sym_RBRACE] = ACTIONS(2551), - [anon_sym_STAR2] = ACTIONS(2823), - [anon_sym_and2] = ACTIONS(2551), - [anon_sym_xor2] = ACTIONS(2551), - [anon_sym_or2] = ACTIONS(2551), - [anon_sym_not_DASHin2] = ACTIONS(2551), - [anon_sym_has2] = ACTIONS(2551), - [anon_sym_not_DASHhas2] = ACTIONS(2551), - [anon_sym_starts_DASHwith2] = ACTIONS(2551), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2551), - [anon_sym_ends_DASHwith2] = ACTIONS(2551), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2551), - [anon_sym_EQ_EQ2] = ACTIONS(2551), - [anon_sym_BANG_EQ2] = ACTIONS(2551), - [anon_sym_LT2] = ACTIONS(2553), - [anon_sym_LT_EQ2] = ACTIONS(2551), - [anon_sym_GT_EQ2] = ACTIONS(2551), - [anon_sym_EQ_TILDE2] = ACTIONS(2551), - [anon_sym_BANG_TILDE2] = ACTIONS(2551), - [anon_sym_like2] = ACTIONS(2551), - [anon_sym_not_DASHlike2] = ACTIONS(2551), - [anon_sym_STAR_STAR2] = ACTIONS(2825), - [anon_sym_PLUS_PLUS2] = ACTIONS(2825), - [anon_sym_SLASH2] = ACTIONS(2823), - [anon_sym_mod2] = ACTIONS(2827), - [anon_sym_SLASH_SLASH2] = ACTIONS(2827), - [anon_sym_PLUS2] = ACTIONS(2553), - [anon_sym_bit_DASHshl2] = ACTIONS(2551), - [anon_sym_bit_DASHshr2] = ACTIONS(2551), - [anon_sym_bit_DASHand2] = ACTIONS(2551), - [anon_sym_bit_DASHxor2] = ACTIONS(2551), - [anon_sym_bit_DASHor2] = ACTIONS(2551), - [anon_sym_err_GT] = ACTIONS(2553), - [anon_sym_out_GT] = ACTIONS(2553), - [anon_sym_e_GT] = ACTIONS(2553), - [anon_sym_o_GT] = ACTIONS(2553), - [anon_sym_err_PLUSout_GT] = ACTIONS(2553), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2553), - [anon_sym_o_PLUSe_GT] = ACTIONS(2553), - [anon_sym_e_PLUSo_GT] = ACTIONS(2553), - [anon_sym_err_GT_GT] = ACTIONS(2551), - [anon_sym_out_GT_GT] = ACTIONS(2551), - [anon_sym_e_GT_GT] = ACTIONS(2551), - [anon_sym_o_GT_GT] = ACTIONS(2551), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2551), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2551), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2551), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2551), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1141)] = { - [sym__expression] = STATE(4818), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), - [sym__expr_binary_expression] = STATE(2253), - [sym_expr_parenthesized] = STATE(704), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1861), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_comment] = STATE(1141), - [aux_sym_cmd_identifier_token2] = ACTIONS(2555), - [anon_sym_true] = ACTIONS(2557), - [anon_sym_false] = ACTIONS(2557), - [anon_sym_null] = ACTIONS(2559), - [aux_sym_cmd_identifier_token3] = ACTIONS(2561), - [aux_sym_cmd_identifier_token4] = ACTIONS(2561), - [aux_sym_cmd_identifier_token5] = ACTIONS(2561), + [aux_sym_cmd_identifier_token2] = ACTIONS(2822), + [anon_sym_true] = ACTIONS(2596), + [anon_sym_false] = ACTIONS(2596), + [anon_sym_null] = ACTIONS(2598), + [aux_sym_cmd_identifier_token3] = ACTIONS(2600), + [aux_sym_cmd_identifier_token4] = ACTIONS(2600), + [aux_sym_cmd_identifier_token5] = ACTIONS(2600), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [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(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(2565), - [aux_sym__val_number_decimal_token4] = ACTIONS(2565), - [aux_sym__val_number_token1] = ACTIONS(2561), - [aux_sym__val_number_token2] = ACTIONS(2561), - [aux_sym__val_number_token3] = ACTIONS(2561), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2006), + [aux_sym__val_number_decimal_token3] = ACTIONS(2604), + [aux_sym__val_number_decimal_token4] = ACTIONS(2604), + [aux_sym__val_number_token1] = ACTIONS(2600), + [aux_sym__val_number_token2] = ACTIONS(2600), + [aux_sym__val_number_token3] = ACTIONS(2600), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2567), + [sym_val_date] = ACTIONS(2606), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -131761,65 +132572,1271 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(103), [sym_raw_string_begin] = ACTIONS(211), }, + [STATE(1141)] = { + [aux_sym__repeat_newline] = STATE(485), + [sym_comment] = STATE(1141), + [anon_sym_in] = ACTIONS(2824), + [sym__newline] = ACTIONS(2794), + [anon_sym_SEMI] = ACTIONS(2794), + [anon_sym_PIPE] = ACTIONS(2794), + [anon_sym_err_GT_PIPE] = ACTIONS(2794), + [anon_sym_out_GT_PIPE] = ACTIONS(2794), + [anon_sym_e_GT_PIPE] = ACTIONS(2794), + [anon_sym_o_GT_PIPE] = ACTIONS(2794), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2794), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2794), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2794), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2794), + [anon_sym_RPAREN] = ACTIONS(2794), + [anon_sym_GT2] = ACTIONS(2826), + [anon_sym_DASH2] = ACTIONS(2828), + [anon_sym_STAR2] = ACTIONS(2830), + [anon_sym_and2] = ACTIONS(2794), + [anon_sym_xor2] = ACTIONS(2794), + [anon_sym_or2] = ACTIONS(2794), + [anon_sym_not_DASHin2] = ACTIONS(2824), + [anon_sym_has2] = ACTIONS(2824), + [anon_sym_not_DASHhas2] = ACTIONS(2824), + [anon_sym_starts_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2824), + [anon_sym_ends_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2824), + [anon_sym_EQ_EQ2] = ACTIONS(2832), + [anon_sym_BANG_EQ2] = ACTIONS(2832), + [anon_sym_LT2] = ACTIONS(2826), + [anon_sym_LT_EQ2] = ACTIONS(2832), + [anon_sym_GT_EQ2] = ACTIONS(2832), + [anon_sym_EQ_TILDE2] = ACTIONS(2834), + [anon_sym_BANG_TILDE2] = ACTIONS(2834), + [anon_sym_like2] = ACTIONS(2834), + [anon_sym_not_DASHlike2] = ACTIONS(2834), + [anon_sym_STAR_STAR2] = ACTIONS(2836), + [anon_sym_PLUS_PLUS2] = ACTIONS(2836), + [anon_sym_SLASH2] = ACTIONS(2830), + [anon_sym_mod2] = ACTIONS(2838), + [anon_sym_SLASH_SLASH2] = ACTIONS(2838), + [anon_sym_PLUS2] = ACTIONS(2840), + [anon_sym_bit_DASHshl2] = ACTIONS(2842), + [anon_sym_bit_DASHshr2] = ACTIONS(2842), + [anon_sym_bit_DASHand2] = ACTIONS(2844), + [anon_sym_bit_DASHxor2] = ACTIONS(2846), + [anon_sym_bit_DASHor2] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2796), + [anon_sym_out_GT] = ACTIONS(2796), + [anon_sym_e_GT] = ACTIONS(2796), + [anon_sym_o_GT] = ACTIONS(2796), + [anon_sym_err_PLUSout_GT] = ACTIONS(2796), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2796), + [anon_sym_o_PLUSe_GT] = ACTIONS(2796), + [anon_sym_e_PLUSo_GT] = ACTIONS(2796), + [anon_sym_err_GT_GT] = ACTIONS(2794), + [anon_sym_out_GT_GT] = ACTIONS(2794), + [anon_sym_e_GT_GT] = ACTIONS(2794), + [anon_sym_o_GT_GT] = ACTIONS(2794), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2794), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2794), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2794), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2794), + [anon_sym_POUND] = ACTIONS(3), + }, [STATE(1142)] = { - [sym__expression] = STATE(4841), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), - [sym__expr_binary_expression] = STATE(2253), - [sym_expr_parenthesized] = STATE(704), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1861), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1142), - [aux_sym_cmd_identifier_token2] = ACTIONS(2555), - [anon_sym_true] = ACTIONS(2557), - [anon_sym_false] = ACTIONS(2557), - [anon_sym_null] = ACTIONS(2559), - [aux_sym_cmd_identifier_token3] = ACTIONS(2561), - [aux_sym_cmd_identifier_token4] = ACTIONS(2561), - [aux_sym_cmd_identifier_token5] = ACTIONS(2561), + [anon_sym_in] = ACTIONS(2824), + [sym__newline] = ACTIONS(2794), + [anon_sym_SEMI] = ACTIONS(2794), + [anon_sym_PIPE] = ACTIONS(2794), + [anon_sym_err_GT_PIPE] = ACTIONS(2794), + [anon_sym_out_GT_PIPE] = ACTIONS(2794), + [anon_sym_e_GT_PIPE] = ACTIONS(2794), + [anon_sym_o_GT_PIPE] = ACTIONS(2794), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2794), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2794), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2794), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2794), + [anon_sym_RPAREN] = ACTIONS(2794), + [anon_sym_GT2] = ACTIONS(2826), + [anon_sym_DASH2] = ACTIONS(2828), + [anon_sym_STAR2] = ACTIONS(2830), + [anon_sym_and2] = ACTIONS(2794), + [anon_sym_xor2] = ACTIONS(2794), + [anon_sym_or2] = ACTIONS(2794), + [anon_sym_not_DASHin2] = ACTIONS(2824), + [anon_sym_has2] = ACTIONS(2824), + [anon_sym_not_DASHhas2] = ACTIONS(2824), + [anon_sym_starts_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2824), + [anon_sym_ends_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2824), + [anon_sym_EQ_EQ2] = ACTIONS(2832), + [anon_sym_BANG_EQ2] = ACTIONS(2832), + [anon_sym_LT2] = ACTIONS(2826), + [anon_sym_LT_EQ2] = ACTIONS(2832), + [anon_sym_GT_EQ2] = ACTIONS(2832), + [anon_sym_EQ_TILDE2] = ACTIONS(2834), + [anon_sym_BANG_TILDE2] = ACTIONS(2834), + [anon_sym_like2] = ACTIONS(2834), + [anon_sym_not_DASHlike2] = ACTIONS(2834), + [anon_sym_STAR_STAR2] = ACTIONS(2836), + [anon_sym_PLUS_PLUS2] = ACTIONS(2836), + [anon_sym_SLASH2] = ACTIONS(2830), + [anon_sym_mod2] = ACTIONS(2838), + [anon_sym_SLASH_SLASH2] = ACTIONS(2838), + [anon_sym_PLUS2] = ACTIONS(2840), + [anon_sym_bit_DASHshl2] = ACTIONS(2842), + [anon_sym_bit_DASHshr2] = ACTIONS(2842), + [anon_sym_bit_DASHand2] = ACTIONS(2844), + [anon_sym_bit_DASHxor2] = ACTIONS(2846), + [anon_sym_bit_DASHor2] = ACTIONS(2794), + [anon_sym_err_GT] = ACTIONS(2796), + [anon_sym_out_GT] = ACTIONS(2796), + [anon_sym_e_GT] = ACTIONS(2796), + [anon_sym_o_GT] = ACTIONS(2796), + [anon_sym_err_PLUSout_GT] = ACTIONS(2796), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2796), + [anon_sym_o_PLUSe_GT] = ACTIONS(2796), + [anon_sym_e_PLUSo_GT] = ACTIONS(2796), + [anon_sym_err_GT_GT] = ACTIONS(2794), + [anon_sym_out_GT_GT] = ACTIONS(2794), + [anon_sym_e_GT_GT] = ACTIONS(2794), + [anon_sym_o_GT_GT] = ACTIONS(2794), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2794), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2794), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2794), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2794), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1143)] = { + [aux_sym__repeat_newline] = STATE(485), + [sym_comment] = STATE(1143), + [anon_sym_in] = ACTIONS(2824), + [sym__newline] = ACTIONS(2784), + [anon_sym_SEMI] = ACTIONS(2784), + [anon_sym_PIPE] = ACTIONS(2784), + [anon_sym_err_GT_PIPE] = ACTIONS(2784), + [anon_sym_out_GT_PIPE] = ACTIONS(2784), + [anon_sym_e_GT_PIPE] = ACTIONS(2784), + [anon_sym_o_GT_PIPE] = ACTIONS(2784), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2784), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2784), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2784), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2784), + [anon_sym_RPAREN] = ACTIONS(2784), + [anon_sym_GT2] = ACTIONS(2826), + [anon_sym_DASH2] = ACTIONS(2828), + [anon_sym_STAR2] = ACTIONS(2830), + [anon_sym_and2] = ACTIONS(2784), + [anon_sym_xor2] = ACTIONS(2784), + [anon_sym_or2] = ACTIONS(2784), + [anon_sym_not_DASHin2] = ACTIONS(2824), + [anon_sym_has2] = ACTIONS(2824), + [anon_sym_not_DASHhas2] = ACTIONS(2824), + [anon_sym_starts_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2824), + [anon_sym_ends_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2824), + [anon_sym_EQ_EQ2] = ACTIONS(2832), + [anon_sym_BANG_EQ2] = ACTIONS(2832), + [anon_sym_LT2] = ACTIONS(2826), + [anon_sym_LT_EQ2] = ACTIONS(2832), + [anon_sym_GT_EQ2] = ACTIONS(2832), + [anon_sym_EQ_TILDE2] = ACTIONS(2834), + [anon_sym_BANG_TILDE2] = ACTIONS(2834), + [anon_sym_like2] = ACTIONS(2834), + [anon_sym_not_DASHlike2] = ACTIONS(2834), + [anon_sym_STAR_STAR2] = ACTIONS(2836), + [anon_sym_PLUS_PLUS2] = ACTIONS(2836), + [anon_sym_SLASH2] = ACTIONS(2830), + [anon_sym_mod2] = ACTIONS(2838), + [anon_sym_SLASH_SLASH2] = ACTIONS(2838), + [anon_sym_PLUS2] = ACTIONS(2840), + [anon_sym_bit_DASHshl2] = ACTIONS(2842), + [anon_sym_bit_DASHshr2] = ACTIONS(2842), + [anon_sym_bit_DASHand2] = ACTIONS(2844), + [anon_sym_bit_DASHxor2] = ACTIONS(2846), + [anon_sym_bit_DASHor2] = ACTIONS(2784), + [anon_sym_err_GT] = ACTIONS(2786), + [anon_sym_out_GT] = ACTIONS(2786), + [anon_sym_e_GT] = ACTIONS(2786), + [anon_sym_o_GT] = ACTIONS(2786), + [anon_sym_err_PLUSout_GT] = ACTIONS(2786), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2786), + [anon_sym_o_PLUSe_GT] = ACTIONS(2786), + [anon_sym_e_PLUSo_GT] = ACTIONS(2786), + [anon_sym_err_GT_GT] = ACTIONS(2784), + [anon_sym_out_GT_GT] = ACTIONS(2784), + [anon_sym_e_GT_GT] = ACTIONS(2784), + [anon_sym_o_GT_GT] = ACTIONS(2784), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2784), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2784), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2784), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2784), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1144)] = { + [aux_sym__repeat_newline] = STATE(1147), + [sym_comment] = STATE(1144), + [anon_sym_in] = ACTIONS(2798), + [sym__newline] = ACTIONS(2850), + [anon_sym_SEMI] = ACTIONS(2798), + [anon_sym_PIPE] = ACTIONS(2798), + [anon_sym_err_GT_PIPE] = ACTIONS(2798), + [anon_sym_out_GT_PIPE] = ACTIONS(2798), + [anon_sym_e_GT_PIPE] = ACTIONS(2798), + [anon_sym_o_GT_PIPE] = ACTIONS(2798), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2798), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2798), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2798), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2798), + [anon_sym_RPAREN] = ACTIONS(2798), + [anon_sym_GT2] = ACTIONS(2853), + [anon_sym_DASH2] = ACTIONS(2855), + [anon_sym_STAR2] = ACTIONS(2857), + [anon_sym_and2] = ACTIONS(2798), + [anon_sym_xor2] = ACTIONS(2798), + [anon_sym_or2] = ACTIONS(2798), + [anon_sym_not_DASHin2] = ACTIONS(2798), + [anon_sym_has2] = ACTIONS(2798), + [anon_sym_not_DASHhas2] = ACTIONS(2798), + [anon_sym_starts_DASHwith2] = ACTIONS(2798), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2798), + [anon_sym_ends_DASHwith2] = ACTIONS(2798), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2798), + [anon_sym_EQ_EQ2] = ACTIONS(2859), + [anon_sym_BANG_EQ2] = ACTIONS(2859), + [anon_sym_LT2] = ACTIONS(2853), + [anon_sym_LT_EQ2] = ACTIONS(2859), + [anon_sym_GT_EQ2] = ACTIONS(2859), + [anon_sym_EQ_TILDE2] = ACTIONS(2798), + [anon_sym_BANG_TILDE2] = ACTIONS(2798), + [anon_sym_like2] = ACTIONS(2798), + [anon_sym_not_DASHlike2] = ACTIONS(2798), + [anon_sym_STAR_STAR2] = ACTIONS(2861), + [anon_sym_PLUS_PLUS2] = ACTIONS(2861), + [anon_sym_SLASH2] = ACTIONS(2857), + [anon_sym_mod2] = ACTIONS(2863), + [anon_sym_SLASH_SLASH2] = ACTIONS(2863), + [anon_sym_PLUS2] = ACTIONS(2865), + [anon_sym_bit_DASHshl2] = ACTIONS(2867), + [anon_sym_bit_DASHshr2] = ACTIONS(2867), + [anon_sym_bit_DASHand2] = ACTIONS(2798), + [anon_sym_bit_DASHxor2] = ACTIONS(2798), + [anon_sym_bit_DASHor2] = ACTIONS(2798), + [anon_sym_err_GT] = ACTIONS(2800), + [anon_sym_out_GT] = ACTIONS(2800), + [anon_sym_e_GT] = ACTIONS(2800), + [anon_sym_o_GT] = ACTIONS(2800), + [anon_sym_err_PLUSout_GT] = ACTIONS(2800), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2800), + [anon_sym_o_PLUSe_GT] = ACTIONS(2800), + [anon_sym_e_PLUSo_GT] = ACTIONS(2800), + [anon_sym_err_GT_GT] = ACTIONS(2798), + [anon_sym_out_GT_GT] = ACTIONS(2798), + [anon_sym_e_GT_GT] = ACTIONS(2798), + [anon_sym_o_GT_GT] = ACTIONS(2798), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2798), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2798), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2798), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2798), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1145)] = { + [aux_sym__repeat_newline] = STATE(1245), + [sym_comment] = STATE(1145), + [anon_sym_in] = ACTIONS(2806), + [sym__newline] = ACTIONS(2869), + [anon_sym_SEMI] = ACTIONS(2806), + [anon_sym_PIPE] = ACTIONS(2806), + [anon_sym_err_GT_PIPE] = ACTIONS(2806), + [anon_sym_out_GT_PIPE] = ACTIONS(2806), + [anon_sym_e_GT_PIPE] = ACTIONS(2806), + [anon_sym_o_GT_PIPE] = ACTIONS(2806), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2806), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2806), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2806), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2806), + [anon_sym_RPAREN] = ACTIONS(2806), + [anon_sym_GT2] = ACTIONS(2853), + [anon_sym_DASH2] = ACTIONS(2855), + [anon_sym_STAR2] = ACTIONS(2857), + [anon_sym_and2] = ACTIONS(2806), + [anon_sym_xor2] = ACTIONS(2806), + [anon_sym_or2] = ACTIONS(2806), + [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(2859), + [anon_sym_BANG_EQ2] = ACTIONS(2859), + [anon_sym_LT2] = ACTIONS(2853), + [anon_sym_LT_EQ2] = ACTIONS(2859), + [anon_sym_GT_EQ2] = ACTIONS(2859), + [anon_sym_EQ_TILDE2] = ACTIONS(2806), + [anon_sym_BANG_TILDE2] = ACTIONS(2806), + [anon_sym_like2] = ACTIONS(2806), + [anon_sym_not_DASHlike2] = ACTIONS(2806), + [anon_sym_STAR_STAR2] = ACTIONS(2861), + [anon_sym_PLUS_PLUS2] = ACTIONS(2861), + [anon_sym_SLASH2] = ACTIONS(2857), + [anon_sym_mod2] = ACTIONS(2863), + [anon_sym_SLASH_SLASH2] = ACTIONS(2863), + [anon_sym_PLUS2] = ACTIONS(2865), + [anon_sym_bit_DASHshl2] = ACTIONS(2867), + [anon_sym_bit_DASHshr2] = ACTIONS(2867), + [anon_sym_bit_DASHand2] = ACTIONS(2806), + [anon_sym_bit_DASHxor2] = ACTIONS(2806), + [anon_sym_bit_DASHor2] = ACTIONS(2806), + [anon_sym_err_GT] = ACTIONS(2808), + [anon_sym_out_GT] = ACTIONS(2808), + [anon_sym_e_GT] = ACTIONS(2808), + [anon_sym_o_GT] = ACTIONS(2808), + [anon_sym_err_PLUSout_GT] = ACTIONS(2808), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2808), + [anon_sym_o_PLUSe_GT] = ACTIONS(2808), + [anon_sym_e_PLUSo_GT] = ACTIONS(2808), + [anon_sym_err_GT_GT] = ACTIONS(2806), + [anon_sym_out_GT_GT] = ACTIONS(2806), + [anon_sym_e_GT_GT] = ACTIONS(2806), + [anon_sym_o_GT_GT] = ACTIONS(2806), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2806), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2806), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2806), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2806), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1146)] = { + [aux_sym__repeat_newline] = STATE(1175), + [sym_comment] = STATE(1146), + [anon_sym_in] = ACTIONS(2872), + [sym__newline] = ACTIONS(2874), + [anon_sym_SEMI] = ACTIONS(2788), + [anon_sym_PIPE] = ACTIONS(2788), + [anon_sym_err_GT_PIPE] = ACTIONS(2788), + [anon_sym_out_GT_PIPE] = ACTIONS(2788), + [anon_sym_e_GT_PIPE] = ACTIONS(2788), + [anon_sym_o_GT_PIPE] = ACTIONS(2788), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2788), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2788), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2788), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2788), + [anon_sym_RPAREN] = ACTIONS(2788), + [anon_sym_GT2] = ACTIONS(2853), + [anon_sym_DASH2] = ACTIONS(2855), + [anon_sym_STAR2] = ACTIONS(2857), + [anon_sym_and2] = ACTIONS(2877), + [anon_sym_xor2] = ACTIONS(2788), + [anon_sym_or2] = ACTIONS(2788), + [anon_sym_not_DASHin2] = ACTIONS(2872), + [anon_sym_has2] = ACTIONS(2872), + [anon_sym_not_DASHhas2] = ACTIONS(2872), + [anon_sym_starts_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2872), + [anon_sym_ends_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2872), + [anon_sym_EQ_EQ2] = ACTIONS(2859), + [anon_sym_BANG_EQ2] = ACTIONS(2859), + [anon_sym_LT2] = ACTIONS(2853), + [anon_sym_LT_EQ2] = ACTIONS(2859), + [anon_sym_GT_EQ2] = ACTIONS(2859), + [anon_sym_EQ_TILDE2] = ACTIONS(2879), + [anon_sym_BANG_TILDE2] = ACTIONS(2879), + [anon_sym_like2] = ACTIONS(2879), + [anon_sym_not_DASHlike2] = ACTIONS(2879), + [anon_sym_STAR_STAR2] = ACTIONS(2861), + [anon_sym_PLUS_PLUS2] = ACTIONS(2861), + [anon_sym_SLASH2] = ACTIONS(2857), + [anon_sym_mod2] = ACTIONS(2863), + [anon_sym_SLASH_SLASH2] = ACTIONS(2863), + [anon_sym_PLUS2] = ACTIONS(2865), + [anon_sym_bit_DASHshl2] = ACTIONS(2867), + [anon_sym_bit_DASHshr2] = ACTIONS(2867), + [anon_sym_bit_DASHand2] = ACTIONS(2881), + [anon_sym_bit_DASHxor2] = ACTIONS(2883), + [anon_sym_bit_DASHor2] = ACTIONS(2885), + [anon_sym_err_GT] = ACTIONS(2790), + [anon_sym_out_GT] = ACTIONS(2790), + [anon_sym_e_GT] = ACTIONS(2790), + [anon_sym_o_GT] = ACTIONS(2790), + [anon_sym_err_PLUSout_GT] = ACTIONS(2790), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2790), + [anon_sym_o_PLUSe_GT] = ACTIONS(2790), + [anon_sym_e_PLUSo_GT] = ACTIONS(2790), + [anon_sym_err_GT_GT] = ACTIONS(2788), + [anon_sym_out_GT_GT] = ACTIONS(2788), + [anon_sym_e_GT_GT] = ACTIONS(2788), + [anon_sym_o_GT_GT] = ACTIONS(2788), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2788), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2788), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2788), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2788), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1147)] = { + [aux_sym__repeat_newline] = STATE(485), + [sym_comment] = STATE(1147), + [anon_sym_in] = ACTIONS(2794), + [sym__newline] = ACTIONS(2794), + [anon_sym_SEMI] = ACTIONS(2794), + [anon_sym_PIPE] = ACTIONS(2794), + [anon_sym_err_GT_PIPE] = ACTIONS(2794), + [anon_sym_out_GT_PIPE] = ACTIONS(2794), + [anon_sym_e_GT_PIPE] = ACTIONS(2794), + [anon_sym_o_GT_PIPE] = ACTIONS(2794), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2794), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2794), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2794), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2794), + [anon_sym_RPAREN] = ACTIONS(2794), + [anon_sym_GT2] = ACTIONS(2826), + [anon_sym_DASH2] = ACTIONS(2828), + [anon_sym_STAR2] = ACTIONS(2830), + [anon_sym_and2] = ACTIONS(2794), + [anon_sym_xor2] = ACTIONS(2794), + [anon_sym_or2] = ACTIONS(2794), + [anon_sym_not_DASHin2] = ACTIONS(2794), + [anon_sym_has2] = ACTIONS(2794), + [anon_sym_not_DASHhas2] = ACTIONS(2794), + [anon_sym_starts_DASHwith2] = ACTIONS(2794), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2794), + [anon_sym_ends_DASHwith2] = ACTIONS(2794), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2794), + [anon_sym_EQ_EQ2] = ACTIONS(2832), + [anon_sym_BANG_EQ2] = ACTIONS(2832), + [anon_sym_LT2] = ACTIONS(2826), + [anon_sym_LT_EQ2] = ACTIONS(2832), + [anon_sym_GT_EQ2] = ACTIONS(2832), + [anon_sym_EQ_TILDE2] = ACTIONS(2794), + [anon_sym_BANG_TILDE2] = ACTIONS(2794), + [anon_sym_like2] = ACTIONS(2794), + [anon_sym_not_DASHlike2] = ACTIONS(2794), + [anon_sym_STAR_STAR2] = ACTIONS(2836), + [anon_sym_PLUS_PLUS2] = ACTIONS(2836), + [anon_sym_SLASH2] = ACTIONS(2830), + [anon_sym_mod2] = ACTIONS(2838), + [anon_sym_SLASH_SLASH2] = ACTIONS(2838), + [anon_sym_PLUS2] = ACTIONS(2840), + [anon_sym_bit_DASHshl2] = ACTIONS(2842), + [anon_sym_bit_DASHshr2] = ACTIONS(2842), + [anon_sym_bit_DASHand2] = ACTIONS(2794), + [anon_sym_bit_DASHxor2] = ACTIONS(2794), + [anon_sym_bit_DASHor2] = ACTIONS(2794), + [anon_sym_err_GT] = ACTIONS(2796), + [anon_sym_out_GT] = ACTIONS(2796), + [anon_sym_e_GT] = ACTIONS(2796), + [anon_sym_o_GT] = ACTIONS(2796), + [anon_sym_err_PLUSout_GT] = ACTIONS(2796), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2796), + [anon_sym_o_PLUSe_GT] = ACTIONS(2796), + [anon_sym_e_PLUSo_GT] = ACTIONS(2796), + [anon_sym_err_GT_GT] = ACTIONS(2794), + [anon_sym_out_GT_GT] = ACTIONS(2794), + [anon_sym_e_GT_GT] = ACTIONS(2794), + [anon_sym_o_GT_GT] = ACTIONS(2794), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2794), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2794), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2794), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2794), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1148)] = { + [aux_sym__repeat_newline] = STATE(1161), + [sym_comment] = STATE(1148), + [anon_sym_in] = ACTIONS(2776), + [sym__newline] = ACTIONS(2887), + [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(2853), + [anon_sym_DASH2] = ACTIONS(2855), + [anon_sym_STAR2] = ACTIONS(2857), + [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(2859), + [anon_sym_BANG_EQ2] = ACTIONS(2859), + [anon_sym_LT2] = ACTIONS(2853), + [anon_sym_LT_EQ2] = ACTIONS(2859), + [anon_sym_GT_EQ2] = ACTIONS(2859), + [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(2861), + [anon_sym_PLUS_PLUS2] = ACTIONS(2861), + [anon_sym_SLASH2] = ACTIONS(2857), + [anon_sym_mod2] = ACTIONS(2863), + [anon_sym_SLASH_SLASH2] = ACTIONS(2863), + [anon_sym_PLUS2] = ACTIONS(2865), + [anon_sym_bit_DASHshl2] = ACTIONS(2867), + [anon_sym_bit_DASHshr2] = ACTIONS(2867), + [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(1149)] = { + [sym_comment] = STATE(1149), + [ts_builtin_sym_end] = ACTIONS(2156), + [anon_sym_in] = ACTIONS(2156), + [sym__newline] = ACTIONS(2156), + [anon_sym_SEMI] = ACTIONS(2156), + [anon_sym_PIPE] = ACTIONS(2156), + [anon_sym_err_GT_PIPE] = ACTIONS(2156), + [anon_sym_out_GT_PIPE] = ACTIONS(2156), + [anon_sym_e_GT_PIPE] = ACTIONS(2156), + [anon_sym_o_GT_PIPE] = ACTIONS(2156), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2156), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2156), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2156), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2156), + [anon_sym_GT2] = ACTIONS(2158), + [anon_sym_DASH2] = ACTIONS(2156), + [anon_sym_STAR2] = ACTIONS(2158), + [anon_sym_and2] = ACTIONS(2156), + [anon_sym_xor2] = ACTIONS(2156), + [anon_sym_or2] = ACTIONS(2156), + [anon_sym_not_DASHin2] = ACTIONS(2156), + [anon_sym_has2] = ACTIONS(2156), + [anon_sym_not_DASHhas2] = ACTIONS(2156), + [anon_sym_starts_DASHwith2] = ACTIONS(2156), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2156), + [anon_sym_ends_DASHwith2] = ACTIONS(2156), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2156), + [anon_sym_EQ_EQ2] = ACTIONS(2156), + [anon_sym_BANG_EQ2] = ACTIONS(2156), + [anon_sym_LT2] = ACTIONS(2158), + [anon_sym_LT_EQ2] = ACTIONS(2156), + [anon_sym_GT_EQ2] = ACTIONS(2156), + [anon_sym_EQ_TILDE2] = ACTIONS(2156), + [anon_sym_BANG_TILDE2] = ACTIONS(2156), + [anon_sym_like2] = ACTIONS(2156), + [anon_sym_not_DASHlike2] = ACTIONS(2156), + [anon_sym_LPAREN2] = ACTIONS(2156), + [anon_sym_STAR_STAR2] = ACTIONS(2156), + [anon_sym_PLUS_PLUS2] = ACTIONS(2156), + [anon_sym_SLASH2] = ACTIONS(2158), + [anon_sym_mod2] = ACTIONS(2156), + [anon_sym_SLASH_SLASH2] = ACTIONS(2156), + [anon_sym_PLUS2] = ACTIONS(2158), + [anon_sym_bit_DASHshl2] = ACTIONS(2156), + [anon_sym_bit_DASHshr2] = ACTIONS(2156), + [anon_sym_bit_DASHand2] = ACTIONS(2156), + [anon_sym_bit_DASHxor2] = ACTIONS(2156), + [anon_sym_bit_DASHor2] = ACTIONS(2156), + [anon_sym_err_GT] = ACTIONS(2158), + [anon_sym_out_GT] = ACTIONS(2158), + [anon_sym_e_GT] = ACTIONS(2158), + [anon_sym_o_GT] = ACTIONS(2158), + [anon_sym_err_PLUSout_GT] = ACTIONS(2158), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2158), + [anon_sym_o_PLUSe_GT] = ACTIONS(2158), + [anon_sym_e_PLUSo_GT] = ACTIONS(2158), + [anon_sym_err_GT_GT] = ACTIONS(2156), + [anon_sym_out_GT_GT] = ACTIONS(2156), + [anon_sym_e_GT_GT] = ACTIONS(2156), + [anon_sym_o_GT_GT] = ACTIONS(2156), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2156), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2156), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2156), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2156), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1150)] = { + [sym_comment] = STATE(1150), + [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(847), + [anon_sym_DASH2] = ACTIONS(968), + [anon_sym_STAR2] = ACTIONS(847), + [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(847), + [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(847), + [anon_sym_mod2] = ACTIONS(968), + [anon_sym_SLASH_SLASH2] = ACTIONS(968), + [anon_sym_PLUS2] = ACTIONS(847), + [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(847), + [anon_sym_out_GT] = ACTIONS(847), + [anon_sym_e_GT] = ACTIONS(847), + [anon_sym_o_GT] = ACTIONS(847), + [anon_sym_err_PLUSout_GT] = ACTIONS(847), + [anon_sym_out_PLUSerr_GT] = ACTIONS(847), + [anon_sym_o_PLUSe_GT] = ACTIONS(847), + [anon_sym_e_PLUSo_GT] = ACTIONS(847), + [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(1840), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1151)] = { + [aux_sym__repeat_newline] = STATE(1157), + [sym_comment] = STATE(1151), + [anon_sym_in] = ACTIONS(2788), + [sym__newline] = ACTIONS(2874), + [anon_sym_SEMI] = ACTIONS(2788), + [anon_sym_PIPE] = ACTIONS(2788), + [anon_sym_err_GT_PIPE] = ACTIONS(2788), + [anon_sym_out_GT_PIPE] = ACTIONS(2788), + [anon_sym_e_GT_PIPE] = ACTIONS(2788), + [anon_sym_o_GT_PIPE] = ACTIONS(2788), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2788), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2788), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2788), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2788), + [anon_sym_RPAREN] = ACTIONS(2788), + [anon_sym_GT2] = ACTIONS(2790), + [anon_sym_DASH2] = ACTIONS(2855), + [anon_sym_STAR2] = ACTIONS(2857), + [anon_sym_and2] = ACTIONS(2788), + [anon_sym_xor2] = ACTIONS(2788), + [anon_sym_or2] = ACTIONS(2788), + [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(2788), + [anon_sym_BANG_EQ2] = ACTIONS(2788), + [anon_sym_LT2] = ACTIONS(2790), + [anon_sym_LT_EQ2] = ACTIONS(2788), + [anon_sym_GT_EQ2] = ACTIONS(2788), + [anon_sym_EQ_TILDE2] = ACTIONS(2788), + [anon_sym_BANG_TILDE2] = ACTIONS(2788), + [anon_sym_like2] = ACTIONS(2788), + [anon_sym_not_DASHlike2] = ACTIONS(2788), + [anon_sym_STAR_STAR2] = ACTIONS(2861), + [anon_sym_PLUS_PLUS2] = ACTIONS(2861), + [anon_sym_SLASH2] = ACTIONS(2857), + [anon_sym_mod2] = ACTIONS(2863), + [anon_sym_SLASH_SLASH2] = ACTIONS(2863), + [anon_sym_PLUS2] = ACTIONS(2865), + [anon_sym_bit_DASHshl2] = ACTIONS(2867), + [anon_sym_bit_DASHshr2] = ACTIONS(2867), + [anon_sym_bit_DASHand2] = ACTIONS(2788), + [anon_sym_bit_DASHxor2] = ACTIONS(2788), + [anon_sym_bit_DASHor2] = ACTIONS(2788), + [anon_sym_err_GT] = ACTIONS(2790), + [anon_sym_out_GT] = ACTIONS(2790), + [anon_sym_e_GT] = ACTIONS(2790), + [anon_sym_o_GT] = ACTIONS(2790), + [anon_sym_err_PLUSout_GT] = ACTIONS(2790), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2790), + [anon_sym_o_PLUSe_GT] = ACTIONS(2790), + [anon_sym_e_PLUSo_GT] = ACTIONS(2790), + [anon_sym_err_GT_GT] = ACTIONS(2788), + [anon_sym_out_GT_GT] = ACTIONS(2788), + [anon_sym_e_GT_GT] = ACTIONS(2788), + [anon_sym_o_GT_GT] = ACTIONS(2788), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2788), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2788), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2788), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2788), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1152)] = { + [aux_sym__repeat_newline] = STATE(1166), + [sym_comment] = STATE(1152), + [anon_sym_in] = ACTIONS(2776), + [sym__newline] = ACTIONS(2887), + [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(2855), + [anon_sym_STAR2] = ACTIONS(2857), + [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(2861), + [anon_sym_PLUS_PLUS2] = ACTIONS(2861), + [anon_sym_SLASH2] = ACTIONS(2857), + [anon_sym_mod2] = ACTIONS(2863), + [anon_sym_SLASH_SLASH2] = ACTIONS(2863), + [anon_sym_PLUS2] = ACTIONS(2865), + [anon_sym_bit_DASHshl2] = ACTIONS(2867), + [anon_sym_bit_DASHshr2] = ACTIONS(2867), + [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(1153)] = { + [aux_sym__repeat_newline] = STATE(1207), + [sym_comment] = STATE(1153), + [anon_sym_in] = ACTIONS(2872), + [sym__newline] = ACTIONS(2850), + [anon_sym_SEMI] = ACTIONS(2798), + [anon_sym_PIPE] = ACTIONS(2798), + [anon_sym_err_GT_PIPE] = ACTIONS(2798), + [anon_sym_out_GT_PIPE] = ACTIONS(2798), + [anon_sym_e_GT_PIPE] = ACTIONS(2798), + [anon_sym_o_GT_PIPE] = ACTIONS(2798), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2798), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2798), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2798), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2798), + [anon_sym_RPAREN] = ACTIONS(2798), + [anon_sym_GT2] = ACTIONS(2853), + [anon_sym_DASH2] = ACTIONS(2855), + [anon_sym_STAR2] = ACTIONS(2857), + [anon_sym_and2] = ACTIONS(2877), + [anon_sym_xor2] = ACTIONS(2798), + [anon_sym_or2] = ACTIONS(2798), + [anon_sym_not_DASHin2] = ACTIONS(2872), + [anon_sym_has2] = ACTIONS(2872), + [anon_sym_not_DASHhas2] = ACTIONS(2872), + [anon_sym_starts_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2872), + [anon_sym_ends_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2872), + [anon_sym_EQ_EQ2] = ACTIONS(2859), + [anon_sym_BANG_EQ2] = ACTIONS(2859), + [anon_sym_LT2] = ACTIONS(2853), + [anon_sym_LT_EQ2] = ACTIONS(2859), + [anon_sym_GT_EQ2] = ACTIONS(2859), + [anon_sym_EQ_TILDE2] = ACTIONS(2879), + [anon_sym_BANG_TILDE2] = ACTIONS(2879), + [anon_sym_like2] = ACTIONS(2879), + [anon_sym_not_DASHlike2] = ACTIONS(2879), + [anon_sym_STAR_STAR2] = ACTIONS(2861), + [anon_sym_PLUS_PLUS2] = ACTIONS(2861), + [anon_sym_SLASH2] = ACTIONS(2857), + [anon_sym_mod2] = ACTIONS(2863), + [anon_sym_SLASH_SLASH2] = ACTIONS(2863), + [anon_sym_PLUS2] = ACTIONS(2865), + [anon_sym_bit_DASHshl2] = ACTIONS(2867), + [anon_sym_bit_DASHshr2] = ACTIONS(2867), + [anon_sym_bit_DASHand2] = ACTIONS(2881), + [anon_sym_bit_DASHxor2] = ACTIONS(2883), + [anon_sym_bit_DASHor2] = ACTIONS(2885), + [anon_sym_err_GT] = ACTIONS(2800), + [anon_sym_out_GT] = ACTIONS(2800), + [anon_sym_e_GT] = ACTIONS(2800), + [anon_sym_o_GT] = ACTIONS(2800), + [anon_sym_err_PLUSout_GT] = ACTIONS(2800), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2800), + [anon_sym_o_PLUSe_GT] = ACTIONS(2800), + [anon_sym_e_PLUSo_GT] = ACTIONS(2800), + [anon_sym_err_GT_GT] = ACTIONS(2798), + [anon_sym_out_GT_GT] = ACTIONS(2798), + [anon_sym_e_GT_GT] = ACTIONS(2798), + [anon_sym_o_GT_GT] = ACTIONS(2798), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2798), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2798), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2798), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2798), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1154)] = { + [sym_comment] = STATE(1154), + [ts_builtin_sym_end] = ACTIONS(2413), + [anon_sym_finally] = ACTIONS(2413), + [anon_sym_in] = ACTIONS(2413), + [sym__newline] = ACTIONS(2413), + [anon_sym_SEMI] = ACTIONS(2413), + [anon_sym_PIPE] = ACTIONS(2413), + [anon_sym_err_GT_PIPE] = ACTIONS(2413), + [anon_sym_out_GT_PIPE] = ACTIONS(2413), + [anon_sym_e_GT_PIPE] = ACTIONS(2413), + [anon_sym_o_GT_PIPE] = ACTIONS(2413), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2413), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2413), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2413), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2413), + [anon_sym_GT2] = ACTIONS(2415), + [anon_sym_DASH2] = ACTIONS(2413), + [anon_sym_STAR2] = ACTIONS(2415), + [anon_sym_and2] = ACTIONS(2413), + [anon_sym_xor2] = ACTIONS(2413), + [anon_sym_or2] = ACTIONS(2413), + [anon_sym_not_DASHin2] = ACTIONS(2413), + [anon_sym_has2] = ACTIONS(2413), + [anon_sym_not_DASHhas2] = ACTIONS(2413), + [anon_sym_starts_DASHwith2] = ACTIONS(2413), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2413), + [anon_sym_ends_DASHwith2] = ACTIONS(2413), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2413), + [anon_sym_EQ_EQ2] = ACTIONS(2413), + [anon_sym_BANG_EQ2] = ACTIONS(2413), + [anon_sym_LT2] = ACTIONS(2415), + [anon_sym_LT_EQ2] = ACTIONS(2413), + [anon_sym_GT_EQ2] = ACTIONS(2413), + [anon_sym_EQ_TILDE2] = ACTIONS(2413), + [anon_sym_BANG_TILDE2] = ACTIONS(2413), + [anon_sym_like2] = ACTIONS(2413), + [anon_sym_not_DASHlike2] = ACTIONS(2413), + [anon_sym_STAR_STAR2] = ACTIONS(2413), + [anon_sym_PLUS_PLUS2] = ACTIONS(2413), + [anon_sym_SLASH2] = ACTIONS(2415), + [anon_sym_mod2] = ACTIONS(2413), + [anon_sym_SLASH_SLASH2] = ACTIONS(2413), + [anon_sym_PLUS2] = ACTIONS(2415), + [anon_sym_bit_DASHshl2] = ACTIONS(2413), + [anon_sym_bit_DASHshr2] = ACTIONS(2413), + [anon_sym_bit_DASHand2] = ACTIONS(2413), + [anon_sym_bit_DASHxor2] = ACTIONS(2413), + [anon_sym_bit_DASHor2] = ACTIONS(2413), + [anon_sym_err_GT] = ACTIONS(2415), + [anon_sym_out_GT] = ACTIONS(2415), + [anon_sym_e_GT] = ACTIONS(2415), + [anon_sym_o_GT] = ACTIONS(2415), + [anon_sym_err_PLUSout_GT] = ACTIONS(2415), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2415), + [anon_sym_o_PLUSe_GT] = ACTIONS(2415), + [anon_sym_e_PLUSo_GT] = ACTIONS(2415), + [anon_sym_err_GT_GT] = ACTIONS(2413), + [anon_sym_out_GT_GT] = ACTIONS(2413), + [anon_sym_e_GT_GT] = ACTIONS(2413), + [anon_sym_o_GT_GT] = ACTIONS(2413), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2413), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2413), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2413), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2413), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1155)] = { + [sym_comment] = STATE(1155), + [ts_builtin_sym_end] = ACTIONS(2326), + [anon_sym_in] = ACTIONS(2326), + [sym__newline] = ACTIONS(2326), + [anon_sym_SEMI] = ACTIONS(2326), + [anon_sym_PIPE] = ACTIONS(2326), + [anon_sym_err_GT_PIPE] = ACTIONS(2326), + [anon_sym_out_GT_PIPE] = ACTIONS(2326), + [anon_sym_e_GT_PIPE] = ACTIONS(2326), + [anon_sym_o_GT_PIPE] = ACTIONS(2326), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2326), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2326), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2326), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2326), + [anon_sym_GT2] = ACTIONS(2328), + [anon_sym_DASH2] = ACTIONS(2326), + [anon_sym_STAR2] = ACTIONS(2328), + [anon_sym_and2] = ACTIONS(2326), + [anon_sym_xor2] = ACTIONS(2326), + [anon_sym_or2] = ACTIONS(2326), + [anon_sym_not_DASHin2] = ACTIONS(2326), + [anon_sym_has2] = ACTIONS(2326), + [anon_sym_not_DASHhas2] = ACTIONS(2326), + [anon_sym_starts_DASHwith2] = ACTIONS(2326), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2326), + [anon_sym_ends_DASHwith2] = ACTIONS(2326), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2326), + [anon_sym_EQ_EQ2] = ACTIONS(2326), + [anon_sym_BANG_EQ2] = ACTIONS(2326), + [anon_sym_LT2] = ACTIONS(2328), + [anon_sym_LT_EQ2] = ACTIONS(2326), + [anon_sym_GT_EQ2] = ACTIONS(2326), + [anon_sym_EQ_TILDE2] = ACTIONS(2326), + [anon_sym_BANG_TILDE2] = ACTIONS(2326), + [anon_sym_like2] = ACTIONS(2326), + [anon_sym_not_DASHlike2] = ACTIONS(2326), + [anon_sym_LPAREN2] = ACTIONS(2326), + [anon_sym_STAR_STAR2] = ACTIONS(2326), + [anon_sym_PLUS_PLUS2] = ACTIONS(2326), + [anon_sym_SLASH2] = ACTIONS(2328), + [anon_sym_mod2] = ACTIONS(2326), + [anon_sym_SLASH_SLASH2] = ACTIONS(2326), + [anon_sym_PLUS2] = ACTIONS(2328), + [anon_sym_bit_DASHshl2] = ACTIONS(2326), + [anon_sym_bit_DASHshr2] = ACTIONS(2326), + [anon_sym_bit_DASHand2] = ACTIONS(2326), + [anon_sym_bit_DASHxor2] = ACTIONS(2326), + [anon_sym_bit_DASHor2] = ACTIONS(2326), + [anon_sym_err_GT] = ACTIONS(2328), + [anon_sym_out_GT] = ACTIONS(2328), + [anon_sym_e_GT] = ACTIONS(2328), + [anon_sym_o_GT] = ACTIONS(2328), + [anon_sym_err_PLUSout_GT] = ACTIONS(2328), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2328), + [anon_sym_o_PLUSe_GT] = ACTIONS(2328), + [anon_sym_e_PLUSo_GT] = ACTIONS(2328), + [anon_sym_err_GT_GT] = ACTIONS(2326), + [anon_sym_out_GT_GT] = ACTIONS(2326), + [anon_sym_e_GT_GT] = ACTIONS(2326), + [anon_sym_o_GT_GT] = ACTIONS(2326), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2326), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2326), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2326), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2326), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1156)] = { + [aux_sym__repeat_newline] = STATE(1171), + [sym_comment] = STATE(1156), + [anon_sym_in] = ACTIONS(2776), + [sym__newline] = ACTIONS(2887), + [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(2857), + [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(2861), + [anon_sym_PLUS_PLUS2] = ACTIONS(2861), + [anon_sym_SLASH2] = ACTIONS(2857), + [anon_sym_mod2] = ACTIONS(2863), + [anon_sym_SLASH_SLASH2] = ACTIONS(2863), + [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(1157)] = { + [aux_sym__repeat_newline] = STATE(485), + [sym_comment] = STATE(1157), + [anon_sym_in] = ACTIONS(2784), + [sym__newline] = ACTIONS(2784), + [anon_sym_SEMI] = ACTIONS(2784), + [anon_sym_PIPE] = ACTIONS(2784), + [anon_sym_err_GT_PIPE] = ACTIONS(2784), + [anon_sym_out_GT_PIPE] = ACTIONS(2784), + [anon_sym_e_GT_PIPE] = ACTIONS(2784), + [anon_sym_o_GT_PIPE] = ACTIONS(2784), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2784), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2784), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2784), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2784), + [anon_sym_RPAREN] = ACTIONS(2784), + [anon_sym_GT2] = ACTIONS(2786), + [anon_sym_DASH2] = ACTIONS(2828), + [anon_sym_STAR2] = ACTIONS(2830), + [anon_sym_and2] = ACTIONS(2784), + [anon_sym_xor2] = ACTIONS(2784), + [anon_sym_or2] = ACTIONS(2784), + [anon_sym_not_DASHin2] = ACTIONS(2784), + [anon_sym_has2] = ACTIONS(2784), + [anon_sym_not_DASHhas2] = ACTIONS(2784), + [anon_sym_starts_DASHwith2] = ACTIONS(2784), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2784), + [anon_sym_ends_DASHwith2] = ACTIONS(2784), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2784), + [anon_sym_EQ_EQ2] = ACTIONS(2784), + [anon_sym_BANG_EQ2] = ACTIONS(2784), + [anon_sym_LT2] = ACTIONS(2786), + [anon_sym_LT_EQ2] = ACTIONS(2784), + [anon_sym_GT_EQ2] = ACTIONS(2784), + [anon_sym_EQ_TILDE2] = ACTIONS(2784), + [anon_sym_BANG_TILDE2] = ACTIONS(2784), + [anon_sym_like2] = ACTIONS(2784), + [anon_sym_not_DASHlike2] = ACTIONS(2784), + [anon_sym_STAR_STAR2] = ACTIONS(2836), + [anon_sym_PLUS_PLUS2] = ACTIONS(2836), + [anon_sym_SLASH2] = ACTIONS(2830), + [anon_sym_mod2] = ACTIONS(2838), + [anon_sym_SLASH_SLASH2] = ACTIONS(2838), + [anon_sym_PLUS2] = ACTIONS(2840), + [anon_sym_bit_DASHshl2] = ACTIONS(2842), + [anon_sym_bit_DASHshr2] = ACTIONS(2842), + [anon_sym_bit_DASHand2] = ACTIONS(2784), + [anon_sym_bit_DASHxor2] = ACTIONS(2784), + [anon_sym_bit_DASHor2] = ACTIONS(2784), + [anon_sym_err_GT] = ACTIONS(2786), + [anon_sym_out_GT] = ACTIONS(2786), + [anon_sym_e_GT] = ACTIONS(2786), + [anon_sym_o_GT] = ACTIONS(2786), + [anon_sym_err_PLUSout_GT] = ACTIONS(2786), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2786), + [anon_sym_o_PLUSe_GT] = ACTIONS(2786), + [anon_sym_e_PLUSo_GT] = ACTIONS(2786), + [anon_sym_err_GT_GT] = ACTIONS(2784), + [anon_sym_out_GT_GT] = ACTIONS(2784), + [anon_sym_e_GT_GT] = ACTIONS(2784), + [anon_sym_o_GT_GT] = ACTIONS(2784), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2784), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2784), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2784), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2784), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1158)] = { + [aux_sym__repeat_newline] = STATE(1219), + [sym_comment] = STATE(1158), + [anon_sym_in] = ACTIONS(2776), + [sym__newline] = ACTIONS(2887), + [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(2855), + [anon_sym_STAR2] = ACTIONS(2857), + [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(2861), + [anon_sym_PLUS_PLUS2] = ACTIONS(2861), + [anon_sym_SLASH2] = ACTIONS(2857), + [anon_sym_mod2] = ACTIONS(2863), + [anon_sym_SLASH_SLASH2] = ACTIONS(2863), + [anon_sym_PLUS2] = ACTIONS(2865), + [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(1159)] = { + [sym__expression] = STATE(4937), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), + [sym__expr_binary_expression] = STATE(2246), + [sym_expr_parenthesized] = STATE(724), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1886), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_comment] = STATE(1159), + [aux_sym_cmd_identifier_token2] = ACTIONS(2594), + [anon_sym_true] = ACTIONS(2596), + [anon_sym_false] = ACTIONS(2596), + [anon_sym_null] = ACTIONS(2598), + [aux_sym_cmd_identifier_token3] = ACTIONS(2600), + [aux_sym_cmd_identifier_token4] = ACTIONS(2600), + [aux_sym_cmd_identifier_token5] = ACTIONS(2600), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [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(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(2565), - [aux_sym__val_number_decimal_token4] = ACTIONS(2565), - [aux_sym__val_number_token1] = ACTIONS(2561), - [aux_sym__val_number_token2] = ACTIONS(2561), - [aux_sym__val_number_token3] = ACTIONS(2561), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2006), + [aux_sym__val_number_decimal_token3] = ACTIONS(2604), + [aux_sym__val_number_decimal_token4] = ACTIONS(2604), + [aux_sym__val_number_token1] = ACTIONS(2600), + [aux_sym__val_number_token2] = ACTIONS(2600), + [aux_sym__val_number_token3] = ACTIONS(2600), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2567), + [sym_val_date] = ACTIONS(2606), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -131828,3293 +133845,2220 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(103), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(1143)] = { - [sym_comment] = STATE(1143), - [ts_builtin_sym_end] = ACTIONS(2648), - [aux_sym_cmd_identifier_token2] = ACTIONS(2829), - [anon_sym_in] = ACTIONS(2650), - [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_GT2] = ACTIONS(2650), - [anon_sym_DASH2] = ACTIONS(2650), - [anon_sym_STAR2] = ACTIONS(2650), - [anon_sym_and2] = ACTIONS(2650), - [anon_sym_xor2] = ACTIONS(2650), - [anon_sym_or2] = ACTIONS(2650), - [anon_sym_not_DASHin2] = ACTIONS(2650), - [anon_sym_has2] = ACTIONS(2650), - [anon_sym_not_DASHhas2] = ACTIONS(2650), - [anon_sym_starts_DASHwith2] = ACTIONS(2650), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2650), - [anon_sym_ends_DASHwith2] = ACTIONS(2650), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2650), - [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(2650), - [anon_sym_like2] = ACTIONS(2650), - [anon_sym_not_DASHlike2] = ACTIONS(2650), - [anon_sym_STAR_STAR2] = ACTIONS(2650), - [anon_sym_PLUS_PLUS2] = ACTIONS(2650), - [anon_sym_SLASH2] = ACTIONS(2650), - [anon_sym_mod2] = ACTIONS(2650), - [anon_sym_SLASH_SLASH2] = ACTIONS(2650), - [anon_sym_PLUS2] = ACTIONS(2650), - [anon_sym_bit_DASHshl2] = ACTIONS(2650), - [anon_sym_bit_DASHshr2] = ACTIONS(2650), - [anon_sym_bit_DASHand2] = ACTIONS(2650), - [anon_sym_bit_DASHxor2] = ACTIONS(2650), - [anon_sym_bit_DASHor2] = ACTIONS(2650), - [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(103), - }, - [STATE(1144)] = { - [sym_comment] = STATE(1144), - [anon_sym_in] = ACTIONS(1713), - [sym__newline] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1713), - [anon_sym_err_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_GT_PIPE] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), - [anon_sym_GT2] = ACTIONS(1614), - [anon_sym_DASH2] = ACTIONS(1713), - [anon_sym_RBRACE] = ACTIONS(1713), - [anon_sym_STAR2] = ACTIONS(1614), - [anon_sym_and2] = ACTIONS(1713), - [anon_sym_xor2] = ACTIONS(1713), - [anon_sym_or2] = ACTIONS(1713), - [anon_sym_not_DASHin2] = ACTIONS(1713), - [anon_sym_has2] = ACTIONS(1713), - [anon_sym_not_DASHhas2] = ACTIONS(1713), - [anon_sym_starts_DASHwith2] = ACTIONS(1713), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1713), - [anon_sym_ends_DASHwith2] = ACTIONS(1713), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1713), - [anon_sym_EQ_EQ2] = ACTIONS(1713), - [anon_sym_BANG_EQ2] = ACTIONS(1713), - [anon_sym_LT2] = ACTIONS(1614), - [anon_sym_LT_EQ2] = ACTIONS(1713), - [anon_sym_GT_EQ2] = ACTIONS(1713), - [anon_sym_EQ_TILDE2] = ACTIONS(1713), - [anon_sym_BANG_TILDE2] = ACTIONS(1713), - [anon_sym_like2] = ACTIONS(1713), - [anon_sym_not_DASHlike2] = ACTIONS(1713), - [anon_sym_STAR_STAR2] = ACTIONS(1713), - [anon_sym_PLUS_PLUS2] = ACTIONS(1713), - [anon_sym_SLASH2] = ACTIONS(1614), - [anon_sym_mod2] = ACTIONS(1713), - [anon_sym_SLASH_SLASH2] = ACTIONS(1713), - [anon_sym_PLUS2] = ACTIONS(1614), - [anon_sym_bit_DASHshl2] = ACTIONS(1713), - [anon_sym_bit_DASHshr2] = ACTIONS(1713), - [anon_sym_bit_DASHand2] = ACTIONS(1713), - [anon_sym_bit_DASHxor2] = ACTIONS(1713), - [anon_sym_bit_DASHor2] = ACTIONS(1713), - [anon_sym_COLON2] = ACTIONS(1715), - [anon_sym_err_GT] = ACTIONS(1614), - [anon_sym_out_GT] = ACTIONS(1614), - [anon_sym_e_GT] = ACTIONS(1614), - [anon_sym_o_GT] = ACTIONS(1614), - [anon_sym_err_PLUSout_GT] = ACTIONS(1614), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1614), - [anon_sym_o_PLUSe_GT] = ACTIONS(1614), - [anon_sym_e_PLUSo_GT] = ACTIONS(1614), - [anon_sym_err_GT_GT] = ACTIONS(1713), - [anon_sym_out_GT_GT] = ACTIONS(1713), - [anon_sym_e_GT_GT] = ACTIONS(1713), - [anon_sym_o_GT_GT] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1145)] = { - [aux_sym__repeat_newline] = STATE(1201), - [sym_comment] = STATE(1145), - [anon_sym_in] = ACTIONS(2730), - [sym__newline] = ACTIONS(2831), - [anon_sym_SEMI] = ACTIONS(2730), - [anon_sym_PIPE] = ACTIONS(2730), - [anon_sym_err_GT_PIPE] = ACTIONS(2730), - [anon_sym_out_GT_PIPE] = ACTIONS(2730), - [anon_sym_e_GT_PIPE] = ACTIONS(2730), - [anon_sym_o_GT_PIPE] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2730), - [anon_sym_RPAREN] = ACTIONS(2730), - [anon_sym_GT2] = ACTIONS(2732), - [anon_sym_DASH2] = ACTIONS(2809), - [anon_sym_STAR2] = ACTIONS(2811), - [anon_sym_and2] = ACTIONS(2730), - [anon_sym_xor2] = ACTIONS(2730), - [anon_sym_or2] = ACTIONS(2730), - [anon_sym_not_DASHin2] = ACTIONS(2730), - [anon_sym_has2] = ACTIONS(2730), - [anon_sym_not_DASHhas2] = ACTIONS(2730), - [anon_sym_starts_DASHwith2] = ACTIONS(2730), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2730), - [anon_sym_ends_DASHwith2] = ACTIONS(2730), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2730), - [anon_sym_EQ_EQ2] = ACTIONS(2730), - [anon_sym_BANG_EQ2] = ACTIONS(2730), - [anon_sym_LT2] = ACTIONS(2732), - [anon_sym_LT_EQ2] = ACTIONS(2730), - [anon_sym_GT_EQ2] = ACTIONS(2730), - [anon_sym_EQ_TILDE2] = ACTIONS(2730), - [anon_sym_BANG_TILDE2] = ACTIONS(2730), - [anon_sym_like2] = ACTIONS(2730), - [anon_sym_not_DASHlike2] = ACTIONS(2730), - [anon_sym_STAR_STAR2] = ACTIONS(2815), - [anon_sym_PLUS_PLUS2] = ACTIONS(2815), - [anon_sym_SLASH2] = ACTIONS(2811), - [anon_sym_mod2] = ACTIONS(2817), - [anon_sym_SLASH_SLASH2] = ACTIONS(2817), - [anon_sym_PLUS2] = ACTIONS(2819), - [anon_sym_bit_DASHshl2] = ACTIONS(2821), - [anon_sym_bit_DASHshr2] = ACTIONS(2821), - [anon_sym_bit_DASHand2] = ACTIONS(2730), - [anon_sym_bit_DASHxor2] = ACTIONS(2730), - [anon_sym_bit_DASHor2] = ACTIONS(2730), - [anon_sym_err_GT] = ACTIONS(2732), - [anon_sym_out_GT] = ACTIONS(2732), - [anon_sym_e_GT] = ACTIONS(2732), - [anon_sym_o_GT] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT] = ACTIONS(2732), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1146)] = { - [sym_comment] = STATE(1146), - [anon_sym_in] = ACTIONS(2551), - [sym__newline] = ACTIONS(2551), - [anon_sym_SEMI] = ACTIONS(2551), - [anon_sym_PIPE] = ACTIONS(2551), - [anon_sym_err_GT_PIPE] = ACTIONS(2551), - [anon_sym_out_GT_PIPE] = ACTIONS(2551), - [anon_sym_e_GT_PIPE] = ACTIONS(2551), - [anon_sym_o_GT_PIPE] = ACTIONS(2551), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2551), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2551), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2551), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2551), - [anon_sym_RPAREN] = ACTIONS(2551), - [anon_sym_GT2] = ACTIONS(2553), - [anon_sym_DASH2] = ACTIONS(2551), - [anon_sym_RBRACE] = ACTIONS(2551), - [anon_sym_STAR2] = ACTIONS(2553), - [anon_sym_and2] = ACTIONS(2551), - [anon_sym_xor2] = ACTIONS(2551), - [anon_sym_or2] = ACTIONS(2551), - [anon_sym_not_DASHin2] = ACTIONS(2551), - [anon_sym_has2] = ACTIONS(2551), - [anon_sym_not_DASHhas2] = ACTIONS(2551), - [anon_sym_starts_DASHwith2] = ACTIONS(2551), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2551), - [anon_sym_ends_DASHwith2] = ACTIONS(2551), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2551), - [anon_sym_EQ_EQ2] = ACTIONS(2551), - [anon_sym_BANG_EQ2] = ACTIONS(2551), - [anon_sym_LT2] = ACTIONS(2553), - [anon_sym_LT_EQ2] = ACTIONS(2551), - [anon_sym_GT_EQ2] = ACTIONS(2551), - [anon_sym_EQ_TILDE2] = ACTIONS(2551), - [anon_sym_BANG_TILDE2] = ACTIONS(2551), - [anon_sym_like2] = ACTIONS(2551), - [anon_sym_not_DASHlike2] = ACTIONS(2551), - [anon_sym_STAR_STAR2] = ACTIONS(2825), - [anon_sym_PLUS_PLUS2] = ACTIONS(2825), - [anon_sym_SLASH2] = ACTIONS(2553), - [anon_sym_mod2] = ACTIONS(2551), - [anon_sym_SLASH_SLASH2] = ACTIONS(2551), - [anon_sym_PLUS2] = ACTIONS(2553), - [anon_sym_bit_DASHshl2] = ACTIONS(2551), - [anon_sym_bit_DASHshr2] = ACTIONS(2551), - [anon_sym_bit_DASHand2] = ACTIONS(2551), - [anon_sym_bit_DASHxor2] = ACTIONS(2551), - [anon_sym_bit_DASHor2] = ACTIONS(2551), - [anon_sym_err_GT] = ACTIONS(2553), - [anon_sym_out_GT] = ACTIONS(2553), - [anon_sym_e_GT] = ACTIONS(2553), - [anon_sym_o_GT] = ACTIONS(2553), - [anon_sym_err_PLUSout_GT] = ACTIONS(2553), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2553), - [anon_sym_o_PLUSe_GT] = ACTIONS(2553), - [anon_sym_e_PLUSo_GT] = ACTIONS(2553), - [anon_sym_err_GT_GT] = ACTIONS(2551), - [anon_sym_out_GT_GT] = ACTIONS(2551), - [anon_sym_e_GT_GT] = ACTIONS(2551), - [anon_sym_o_GT_GT] = ACTIONS(2551), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2551), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2551), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2551), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2551), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1147)] = { - [sym_comment] = STATE(1147), - [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_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_LBRACK2] = ACTIONS(2834), - [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(1148)] = { - [aux_sym__repeat_newline] = STATE(1203), - [sym_comment] = STATE(1148), - [anon_sym_in] = ACTIONS(2730), - [sym__newline] = ACTIONS(2831), - [anon_sym_SEMI] = ACTIONS(2730), - [anon_sym_PIPE] = ACTIONS(2730), - [anon_sym_err_GT_PIPE] = ACTIONS(2730), - [anon_sym_out_GT_PIPE] = ACTIONS(2730), - [anon_sym_e_GT_PIPE] = ACTIONS(2730), - [anon_sym_o_GT_PIPE] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2730), - [anon_sym_RPAREN] = ACTIONS(2730), - [anon_sym_GT2] = ACTIONS(2732), - [anon_sym_DASH2] = ACTIONS(2730), - [anon_sym_STAR2] = ACTIONS(2811), - [anon_sym_and2] = ACTIONS(2730), - [anon_sym_xor2] = ACTIONS(2730), - [anon_sym_or2] = ACTIONS(2730), - [anon_sym_not_DASHin2] = ACTIONS(2730), - [anon_sym_has2] = ACTIONS(2730), - [anon_sym_not_DASHhas2] = ACTIONS(2730), - [anon_sym_starts_DASHwith2] = ACTIONS(2730), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2730), - [anon_sym_ends_DASHwith2] = ACTIONS(2730), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2730), - [anon_sym_EQ_EQ2] = ACTIONS(2730), - [anon_sym_BANG_EQ2] = ACTIONS(2730), - [anon_sym_LT2] = ACTIONS(2732), - [anon_sym_LT_EQ2] = ACTIONS(2730), - [anon_sym_GT_EQ2] = ACTIONS(2730), - [anon_sym_EQ_TILDE2] = ACTIONS(2730), - [anon_sym_BANG_TILDE2] = ACTIONS(2730), - [anon_sym_like2] = ACTIONS(2730), - [anon_sym_not_DASHlike2] = ACTIONS(2730), - [anon_sym_STAR_STAR2] = ACTIONS(2815), - [anon_sym_PLUS_PLUS2] = ACTIONS(2815), - [anon_sym_SLASH2] = ACTIONS(2811), - [anon_sym_mod2] = ACTIONS(2817), - [anon_sym_SLASH_SLASH2] = ACTIONS(2817), - [anon_sym_PLUS2] = ACTIONS(2732), - [anon_sym_bit_DASHshl2] = ACTIONS(2730), - [anon_sym_bit_DASHshr2] = ACTIONS(2730), - [anon_sym_bit_DASHand2] = ACTIONS(2730), - [anon_sym_bit_DASHxor2] = ACTIONS(2730), - [anon_sym_bit_DASHor2] = ACTIONS(2730), - [anon_sym_err_GT] = ACTIONS(2732), - [anon_sym_out_GT] = ACTIONS(2732), - [anon_sym_e_GT] = ACTIONS(2732), - [anon_sym_o_GT] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT] = ACTIONS(2732), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1149)] = { - [sym_comment] = STATE(1149), - [anon_sym_in] = ACTIONS(2836), - [sym__newline] = ACTIONS(2551), - [anon_sym_SEMI] = ACTIONS(2551), - [anon_sym_PIPE] = ACTIONS(2551), - [anon_sym_err_GT_PIPE] = ACTIONS(2551), - [anon_sym_out_GT_PIPE] = ACTIONS(2551), - [anon_sym_e_GT_PIPE] = ACTIONS(2551), - [anon_sym_o_GT_PIPE] = ACTIONS(2551), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2551), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2551), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2551), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2551), - [anon_sym_RPAREN] = ACTIONS(2551), - [anon_sym_GT2] = ACTIONS(2838), - [anon_sym_DASH2] = ACTIONS(2840), - [anon_sym_RBRACE] = ACTIONS(2551), - [anon_sym_STAR2] = ACTIONS(2823), - [anon_sym_and2] = ACTIONS(2551), - [anon_sym_xor2] = ACTIONS(2551), - [anon_sym_or2] = ACTIONS(2551), - [anon_sym_not_DASHin2] = ACTIONS(2836), - [anon_sym_has2] = ACTIONS(2836), - [anon_sym_not_DASHhas2] = ACTIONS(2836), - [anon_sym_starts_DASHwith2] = ACTIONS(2836), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2836), - [anon_sym_ends_DASHwith2] = ACTIONS(2836), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2836), - [anon_sym_EQ_EQ2] = ACTIONS(2842), - [anon_sym_BANG_EQ2] = ACTIONS(2842), - [anon_sym_LT2] = ACTIONS(2838), - [anon_sym_LT_EQ2] = ACTIONS(2842), - [anon_sym_GT_EQ2] = ACTIONS(2842), - [anon_sym_EQ_TILDE2] = ACTIONS(2844), - [anon_sym_BANG_TILDE2] = ACTIONS(2844), - [anon_sym_like2] = ACTIONS(2844), - [anon_sym_not_DASHlike2] = ACTIONS(2844), - [anon_sym_STAR_STAR2] = ACTIONS(2825), - [anon_sym_PLUS_PLUS2] = ACTIONS(2825), - [anon_sym_SLASH2] = ACTIONS(2823), - [anon_sym_mod2] = ACTIONS(2827), - [anon_sym_SLASH_SLASH2] = ACTIONS(2827), - [anon_sym_PLUS2] = ACTIONS(2846), - [anon_sym_bit_DASHshl2] = ACTIONS(2848), - [anon_sym_bit_DASHshr2] = ACTIONS(2848), - [anon_sym_bit_DASHand2] = ACTIONS(2850), - [anon_sym_bit_DASHxor2] = ACTIONS(2852), - [anon_sym_bit_DASHor2] = ACTIONS(2854), - [anon_sym_err_GT] = ACTIONS(2553), - [anon_sym_out_GT] = ACTIONS(2553), - [anon_sym_e_GT] = ACTIONS(2553), - [anon_sym_o_GT] = ACTIONS(2553), - [anon_sym_err_PLUSout_GT] = ACTIONS(2553), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2553), - [anon_sym_o_PLUSe_GT] = ACTIONS(2553), - [anon_sym_e_PLUSo_GT] = ACTIONS(2553), - [anon_sym_err_GT_GT] = ACTIONS(2551), - [anon_sym_out_GT_GT] = ACTIONS(2551), - [anon_sym_e_GT_GT] = ACTIONS(2551), - [anon_sym_o_GT_GT] = ACTIONS(2551), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2551), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2551), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2551), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2551), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1150)] = { - [sym_comment] = STATE(1150), - [anon_sym_in] = ACTIONS(2836), - [sym__newline] = ACTIONS(2551), - [anon_sym_SEMI] = ACTIONS(2551), - [anon_sym_PIPE] = ACTIONS(2551), - [anon_sym_err_GT_PIPE] = ACTIONS(2551), - [anon_sym_out_GT_PIPE] = ACTIONS(2551), - [anon_sym_e_GT_PIPE] = ACTIONS(2551), - [anon_sym_o_GT_PIPE] = ACTIONS(2551), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2551), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2551), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2551), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2551), - [anon_sym_RPAREN] = ACTIONS(2551), - [anon_sym_GT2] = ACTIONS(2838), - [anon_sym_DASH2] = ACTIONS(2840), - [anon_sym_RBRACE] = ACTIONS(2551), - [anon_sym_STAR2] = ACTIONS(2823), - [anon_sym_and2] = ACTIONS(2856), - [anon_sym_xor2] = ACTIONS(2551), - [anon_sym_or2] = ACTIONS(2551), - [anon_sym_not_DASHin2] = ACTIONS(2836), - [anon_sym_has2] = ACTIONS(2836), - [anon_sym_not_DASHhas2] = ACTIONS(2836), - [anon_sym_starts_DASHwith2] = ACTIONS(2836), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2836), - [anon_sym_ends_DASHwith2] = ACTIONS(2836), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2836), - [anon_sym_EQ_EQ2] = ACTIONS(2842), - [anon_sym_BANG_EQ2] = ACTIONS(2842), - [anon_sym_LT2] = ACTIONS(2838), - [anon_sym_LT_EQ2] = ACTIONS(2842), - [anon_sym_GT_EQ2] = ACTIONS(2842), - [anon_sym_EQ_TILDE2] = ACTIONS(2844), - [anon_sym_BANG_TILDE2] = ACTIONS(2844), - [anon_sym_like2] = ACTIONS(2844), - [anon_sym_not_DASHlike2] = ACTIONS(2844), - [anon_sym_STAR_STAR2] = ACTIONS(2825), - [anon_sym_PLUS_PLUS2] = ACTIONS(2825), - [anon_sym_SLASH2] = ACTIONS(2823), - [anon_sym_mod2] = ACTIONS(2827), - [anon_sym_SLASH_SLASH2] = ACTIONS(2827), - [anon_sym_PLUS2] = ACTIONS(2846), - [anon_sym_bit_DASHshl2] = ACTIONS(2848), - [anon_sym_bit_DASHshr2] = ACTIONS(2848), - [anon_sym_bit_DASHand2] = ACTIONS(2850), - [anon_sym_bit_DASHxor2] = ACTIONS(2852), - [anon_sym_bit_DASHor2] = ACTIONS(2854), - [anon_sym_err_GT] = ACTIONS(2553), - [anon_sym_out_GT] = ACTIONS(2553), - [anon_sym_e_GT] = ACTIONS(2553), - [anon_sym_o_GT] = ACTIONS(2553), - [anon_sym_err_PLUSout_GT] = ACTIONS(2553), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2553), - [anon_sym_o_PLUSe_GT] = ACTIONS(2553), - [anon_sym_e_PLUSo_GT] = ACTIONS(2553), - [anon_sym_err_GT_GT] = ACTIONS(2551), - [anon_sym_out_GT_GT] = ACTIONS(2551), - [anon_sym_e_GT_GT] = ACTIONS(2551), - [anon_sym_o_GT_GT] = ACTIONS(2551), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2551), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2551), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2551), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2551), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1151)] = { - [aux_sym__repeat_newline] = STATE(1206), - [sym_comment] = STATE(1151), - [anon_sym_in] = ACTIONS(2730), - [sym__newline] = ACTIONS(2831), - [anon_sym_SEMI] = ACTIONS(2730), - [anon_sym_PIPE] = ACTIONS(2730), - [anon_sym_err_GT_PIPE] = ACTIONS(2730), - [anon_sym_out_GT_PIPE] = ACTIONS(2730), - [anon_sym_e_GT_PIPE] = ACTIONS(2730), - [anon_sym_o_GT_PIPE] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2730), - [anon_sym_RPAREN] = ACTIONS(2730), - [anon_sym_GT2] = ACTIONS(2732), - [anon_sym_DASH2] = ACTIONS(2730), - [anon_sym_STAR2] = ACTIONS(2732), - [anon_sym_and2] = ACTIONS(2730), - [anon_sym_xor2] = ACTIONS(2730), - [anon_sym_or2] = ACTIONS(2730), - [anon_sym_not_DASHin2] = ACTIONS(2730), - [anon_sym_has2] = ACTIONS(2730), - [anon_sym_not_DASHhas2] = ACTIONS(2730), - [anon_sym_starts_DASHwith2] = ACTIONS(2730), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2730), - [anon_sym_ends_DASHwith2] = ACTIONS(2730), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2730), - [anon_sym_EQ_EQ2] = ACTIONS(2730), - [anon_sym_BANG_EQ2] = ACTIONS(2730), - [anon_sym_LT2] = ACTIONS(2732), - [anon_sym_LT_EQ2] = ACTIONS(2730), - [anon_sym_GT_EQ2] = ACTIONS(2730), - [anon_sym_EQ_TILDE2] = ACTIONS(2730), - [anon_sym_BANG_TILDE2] = ACTIONS(2730), - [anon_sym_like2] = ACTIONS(2730), - [anon_sym_not_DASHlike2] = ACTIONS(2730), - [anon_sym_STAR_STAR2] = ACTIONS(2815), - [anon_sym_PLUS_PLUS2] = ACTIONS(2815), - [anon_sym_SLASH2] = ACTIONS(2732), - [anon_sym_mod2] = ACTIONS(2730), - [anon_sym_SLASH_SLASH2] = ACTIONS(2730), - [anon_sym_PLUS2] = ACTIONS(2732), - [anon_sym_bit_DASHshl2] = ACTIONS(2730), - [anon_sym_bit_DASHshr2] = ACTIONS(2730), - [anon_sym_bit_DASHand2] = ACTIONS(2730), - [anon_sym_bit_DASHxor2] = ACTIONS(2730), - [anon_sym_bit_DASHor2] = ACTIONS(2730), - [anon_sym_err_GT] = ACTIONS(2732), - [anon_sym_out_GT] = ACTIONS(2732), - [anon_sym_e_GT] = ACTIONS(2732), - [anon_sym_o_GT] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT] = ACTIONS(2732), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1152)] = { - [sym_comment] = STATE(1152), - [anon_sym_in] = ACTIONS(2836), - [sym__newline] = ACTIONS(2551), - [anon_sym_SEMI] = ACTIONS(2551), - [anon_sym_PIPE] = ACTIONS(2551), - [anon_sym_err_GT_PIPE] = ACTIONS(2551), - [anon_sym_out_GT_PIPE] = ACTIONS(2551), - [anon_sym_e_GT_PIPE] = ACTIONS(2551), - [anon_sym_o_GT_PIPE] = ACTIONS(2551), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2551), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2551), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2551), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2551), - [anon_sym_RPAREN] = ACTIONS(2551), - [anon_sym_GT2] = ACTIONS(2838), - [anon_sym_DASH2] = ACTIONS(2840), - [anon_sym_RBRACE] = ACTIONS(2551), - [anon_sym_STAR2] = ACTIONS(2823), - [anon_sym_and2] = ACTIONS(2856), - [anon_sym_xor2] = ACTIONS(2858), - [anon_sym_or2] = ACTIONS(2551), - [anon_sym_not_DASHin2] = ACTIONS(2836), - [anon_sym_has2] = ACTIONS(2836), - [anon_sym_not_DASHhas2] = ACTIONS(2836), - [anon_sym_starts_DASHwith2] = ACTIONS(2836), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2836), - [anon_sym_ends_DASHwith2] = ACTIONS(2836), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2836), - [anon_sym_EQ_EQ2] = ACTIONS(2842), - [anon_sym_BANG_EQ2] = ACTIONS(2842), - [anon_sym_LT2] = ACTIONS(2838), - [anon_sym_LT_EQ2] = ACTIONS(2842), - [anon_sym_GT_EQ2] = ACTIONS(2842), - [anon_sym_EQ_TILDE2] = ACTIONS(2844), - [anon_sym_BANG_TILDE2] = ACTIONS(2844), - [anon_sym_like2] = ACTIONS(2844), - [anon_sym_not_DASHlike2] = ACTIONS(2844), - [anon_sym_STAR_STAR2] = ACTIONS(2825), - [anon_sym_PLUS_PLUS2] = ACTIONS(2825), - [anon_sym_SLASH2] = ACTIONS(2823), - [anon_sym_mod2] = ACTIONS(2827), - [anon_sym_SLASH_SLASH2] = ACTIONS(2827), - [anon_sym_PLUS2] = ACTIONS(2846), - [anon_sym_bit_DASHshl2] = ACTIONS(2848), - [anon_sym_bit_DASHshr2] = ACTIONS(2848), - [anon_sym_bit_DASHand2] = ACTIONS(2850), - [anon_sym_bit_DASHxor2] = ACTIONS(2852), - [anon_sym_bit_DASHor2] = ACTIONS(2854), - [anon_sym_err_GT] = ACTIONS(2553), - [anon_sym_out_GT] = ACTIONS(2553), - [anon_sym_e_GT] = ACTIONS(2553), - [anon_sym_o_GT] = ACTIONS(2553), - [anon_sym_err_PLUSout_GT] = ACTIONS(2553), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2553), - [anon_sym_o_PLUSe_GT] = ACTIONS(2553), - [anon_sym_e_PLUSo_GT] = ACTIONS(2553), - [anon_sym_err_GT_GT] = ACTIONS(2551), - [anon_sym_out_GT_GT] = ACTIONS(2551), - [anon_sym_e_GT_GT] = ACTIONS(2551), - [anon_sym_o_GT_GT] = ACTIONS(2551), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2551), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2551), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2551), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2551), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1153)] = { - [sym_comment] = STATE(1153), - [anon_sym_in] = ACTIONS(2836), - [sym__newline] = ACTIONS(2551), - [anon_sym_SEMI] = ACTIONS(2551), - [anon_sym_PIPE] = ACTIONS(2551), - [anon_sym_err_GT_PIPE] = ACTIONS(2551), - [anon_sym_out_GT_PIPE] = ACTIONS(2551), - [anon_sym_e_GT_PIPE] = ACTIONS(2551), - [anon_sym_o_GT_PIPE] = ACTIONS(2551), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2551), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2551), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2551), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2551), - [anon_sym_RPAREN] = ACTIONS(2551), - [anon_sym_GT2] = ACTIONS(2838), - [anon_sym_DASH2] = ACTIONS(2840), - [anon_sym_RBRACE] = ACTIONS(2551), - [anon_sym_STAR2] = ACTIONS(2823), - [anon_sym_and2] = ACTIONS(2551), - [anon_sym_xor2] = ACTIONS(2551), - [anon_sym_or2] = ACTIONS(2551), - [anon_sym_not_DASHin2] = ACTIONS(2836), - [anon_sym_has2] = ACTIONS(2836), - [anon_sym_not_DASHhas2] = ACTIONS(2836), - [anon_sym_starts_DASHwith2] = ACTIONS(2836), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2836), - [anon_sym_ends_DASHwith2] = ACTIONS(2836), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2836), - [anon_sym_EQ_EQ2] = ACTIONS(2842), - [anon_sym_BANG_EQ2] = ACTIONS(2842), - [anon_sym_LT2] = ACTIONS(2838), - [anon_sym_LT_EQ2] = ACTIONS(2842), - [anon_sym_GT_EQ2] = ACTIONS(2842), - [anon_sym_EQ_TILDE2] = ACTIONS(2551), - [anon_sym_BANG_TILDE2] = ACTIONS(2551), - [anon_sym_like2] = ACTIONS(2551), - [anon_sym_not_DASHlike2] = ACTIONS(2551), - [anon_sym_STAR_STAR2] = ACTIONS(2825), - [anon_sym_PLUS_PLUS2] = ACTIONS(2825), - [anon_sym_SLASH2] = ACTIONS(2823), - [anon_sym_mod2] = ACTIONS(2827), - [anon_sym_SLASH_SLASH2] = ACTIONS(2827), - [anon_sym_PLUS2] = ACTIONS(2846), - [anon_sym_bit_DASHshl2] = ACTIONS(2848), - [anon_sym_bit_DASHshr2] = ACTIONS(2848), - [anon_sym_bit_DASHand2] = ACTIONS(2551), - [anon_sym_bit_DASHxor2] = ACTIONS(2551), - [anon_sym_bit_DASHor2] = ACTIONS(2551), - [anon_sym_err_GT] = ACTIONS(2553), - [anon_sym_out_GT] = ACTIONS(2553), - [anon_sym_e_GT] = ACTIONS(2553), - [anon_sym_o_GT] = ACTIONS(2553), - [anon_sym_err_PLUSout_GT] = ACTIONS(2553), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2553), - [anon_sym_o_PLUSe_GT] = ACTIONS(2553), - [anon_sym_e_PLUSo_GT] = ACTIONS(2553), - [anon_sym_err_GT_GT] = ACTIONS(2551), - [anon_sym_out_GT_GT] = ACTIONS(2551), - [anon_sym_e_GT_GT] = ACTIONS(2551), - [anon_sym_o_GT_GT] = ACTIONS(2551), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2551), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2551), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2551), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2551), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1154)] = { - [sym_comment] = STATE(1154), - [anon_sym_in] = ACTIONS(2551), - [sym__newline] = ACTIONS(2551), - [anon_sym_SEMI] = ACTIONS(2551), - [anon_sym_PIPE] = ACTIONS(2551), - [anon_sym_err_GT_PIPE] = ACTIONS(2551), - [anon_sym_out_GT_PIPE] = ACTIONS(2551), - [anon_sym_e_GT_PIPE] = ACTIONS(2551), - [anon_sym_o_GT_PIPE] = ACTIONS(2551), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2551), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2551), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2551), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2551), - [anon_sym_RPAREN] = ACTIONS(2551), - [anon_sym_GT2] = ACTIONS(2553), - [anon_sym_DASH2] = ACTIONS(2840), - [anon_sym_RBRACE] = ACTIONS(2551), - [anon_sym_STAR2] = ACTIONS(2823), - [anon_sym_and2] = ACTIONS(2551), - [anon_sym_xor2] = ACTIONS(2551), - [anon_sym_or2] = ACTIONS(2551), - [anon_sym_not_DASHin2] = ACTIONS(2551), - [anon_sym_has2] = ACTIONS(2551), - [anon_sym_not_DASHhas2] = ACTIONS(2551), - [anon_sym_starts_DASHwith2] = ACTIONS(2551), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2551), - [anon_sym_ends_DASHwith2] = ACTIONS(2551), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2551), - [anon_sym_EQ_EQ2] = ACTIONS(2551), - [anon_sym_BANG_EQ2] = ACTIONS(2551), - [anon_sym_LT2] = ACTIONS(2553), - [anon_sym_LT_EQ2] = ACTIONS(2551), - [anon_sym_GT_EQ2] = ACTIONS(2551), - [anon_sym_EQ_TILDE2] = ACTIONS(2551), - [anon_sym_BANG_TILDE2] = ACTIONS(2551), - [anon_sym_like2] = ACTIONS(2551), - [anon_sym_not_DASHlike2] = ACTIONS(2551), - [anon_sym_STAR_STAR2] = ACTIONS(2825), - [anon_sym_PLUS_PLUS2] = ACTIONS(2825), - [anon_sym_SLASH2] = ACTIONS(2823), - [anon_sym_mod2] = ACTIONS(2827), - [anon_sym_SLASH_SLASH2] = ACTIONS(2827), - [anon_sym_PLUS2] = ACTIONS(2846), - [anon_sym_bit_DASHshl2] = ACTIONS(2551), - [anon_sym_bit_DASHshr2] = ACTIONS(2551), - [anon_sym_bit_DASHand2] = ACTIONS(2551), - [anon_sym_bit_DASHxor2] = ACTIONS(2551), - [anon_sym_bit_DASHor2] = ACTIONS(2551), - [anon_sym_err_GT] = ACTIONS(2553), - [anon_sym_out_GT] = ACTIONS(2553), - [anon_sym_e_GT] = ACTIONS(2553), - [anon_sym_o_GT] = ACTIONS(2553), - [anon_sym_err_PLUSout_GT] = ACTIONS(2553), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2553), - [anon_sym_o_PLUSe_GT] = ACTIONS(2553), - [anon_sym_e_PLUSo_GT] = ACTIONS(2553), - [anon_sym_err_GT_GT] = ACTIONS(2551), - [anon_sym_out_GT_GT] = ACTIONS(2551), - [anon_sym_e_GT_GT] = ACTIONS(2551), - [anon_sym_o_GT_GT] = ACTIONS(2551), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2551), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2551), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2551), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2551), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1155)] = { - [sym_comment] = STATE(1155), - [anon_sym_in] = ACTIONS(2836), - [sym__newline] = ACTIONS(2551), - [anon_sym_SEMI] = ACTIONS(2551), - [anon_sym_PIPE] = ACTIONS(2551), - [anon_sym_err_GT_PIPE] = ACTIONS(2551), - [anon_sym_out_GT_PIPE] = ACTIONS(2551), - [anon_sym_e_GT_PIPE] = ACTIONS(2551), - [anon_sym_o_GT_PIPE] = ACTIONS(2551), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2551), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2551), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2551), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2551), - [anon_sym_RPAREN] = ACTIONS(2551), - [anon_sym_GT2] = ACTIONS(2838), - [anon_sym_DASH2] = ACTIONS(2840), - [anon_sym_RBRACE] = ACTIONS(2551), - [anon_sym_STAR2] = ACTIONS(2823), - [anon_sym_and2] = ACTIONS(2551), - [anon_sym_xor2] = ACTIONS(2551), - [anon_sym_or2] = ACTIONS(2551), - [anon_sym_not_DASHin2] = ACTIONS(2836), - [anon_sym_has2] = ACTIONS(2836), - [anon_sym_not_DASHhas2] = ACTIONS(2836), - [anon_sym_starts_DASHwith2] = ACTIONS(2836), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2836), - [anon_sym_ends_DASHwith2] = ACTIONS(2836), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2836), - [anon_sym_EQ_EQ2] = ACTIONS(2842), - [anon_sym_BANG_EQ2] = ACTIONS(2842), - [anon_sym_LT2] = ACTIONS(2838), - [anon_sym_LT_EQ2] = ACTIONS(2842), - [anon_sym_GT_EQ2] = ACTIONS(2842), - [anon_sym_EQ_TILDE2] = ACTIONS(2844), - [anon_sym_BANG_TILDE2] = ACTIONS(2844), - [anon_sym_like2] = ACTIONS(2844), - [anon_sym_not_DASHlike2] = ACTIONS(2844), - [anon_sym_STAR_STAR2] = ACTIONS(2825), - [anon_sym_PLUS_PLUS2] = ACTIONS(2825), - [anon_sym_SLASH2] = ACTIONS(2823), - [anon_sym_mod2] = ACTIONS(2827), - [anon_sym_SLASH_SLASH2] = ACTIONS(2827), - [anon_sym_PLUS2] = ACTIONS(2846), - [anon_sym_bit_DASHshl2] = ACTIONS(2848), - [anon_sym_bit_DASHshr2] = ACTIONS(2848), - [anon_sym_bit_DASHand2] = ACTIONS(2551), - [anon_sym_bit_DASHxor2] = ACTIONS(2551), - [anon_sym_bit_DASHor2] = ACTIONS(2551), - [anon_sym_err_GT] = ACTIONS(2553), - [anon_sym_out_GT] = ACTIONS(2553), - [anon_sym_e_GT] = ACTIONS(2553), - [anon_sym_o_GT] = ACTIONS(2553), - [anon_sym_err_PLUSout_GT] = ACTIONS(2553), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2553), - [anon_sym_o_PLUSe_GT] = ACTIONS(2553), - [anon_sym_e_PLUSo_GT] = ACTIONS(2553), - [anon_sym_err_GT_GT] = ACTIONS(2551), - [anon_sym_out_GT_GT] = ACTIONS(2551), - [anon_sym_e_GT_GT] = ACTIONS(2551), - [anon_sym_o_GT_GT] = ACTIONS(2551), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2551), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2551), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2551), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2551), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1156)] = { - [sym_comment] = STATE(1156), - [anon_sym_in] = ACTIONS(2836), - [sym__newline] = ACTIONS(2551), - [anon_sym_SEMI] = ACTIONS(2551), - [anon_sym_PIPE] = ACTIONS(2551), - [anon_sym_err_GT_PIPE] = ACTIONS(2551), - [anon_sym_out_GT_PIPE] = ACTIONS(2551), - [anon_sym_e_GT_PIPE] = ACTIONS(2551), - [anon_sym_o_GT_PIPE] = ACTIONS(2551), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2551), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2551), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2551), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2551), - [anon_sym_RPAREN] = ACTIONS(2551), - [anon_sym_GT2] = ACTIONS(2838), - [anon_sym_DASH2] = ACTIONS(2840), - [anon_sym_RBRACE] = ACTIONS(2551), - [anon_sym_STAR2] = ACTIONS(2823), - [anon_sym_and2] = ACTIONS(2551), - [anon_sym_xor2] = ACTIONS(2551), - [anon_sym_or2] = ACTIONS(2551), - [anon_sym_not_DASHin2] = ACTIONS(2836), - [anon_sym_has2] = ACTIONS(2836), - [anon_sym_not_DASHhas2] = ACTIONS(2836), - [anon_sym_starts_DASHwith2] = ACTIONS(2836), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2836), - [anon_sym_ends_DASHwith2] = ACTIONS(2836), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2836), - [anon_sym_EQ_EQ2] = ACTIONS(2842), - [anon_sym_BANG_EQ2] = ACTIONS(2842), - [anon_sym_LT2] = ACTIONS(2838), - [anon_sym_LT_EQ2] = ACTIONS(2842), - [anon_sym_GT_EQ2] = ACTIONS(2842), - [anon_sym_EQ_TILDE2] = ACTIONS(2844), - [anon_sym_BANG_TILDE2] = ACTIONS(2844), - [anon_sym_like2] = ACTIONS(2844), - [anon_sym_not_DASHlike2] = ACTIONS(2844), - [anon_sym_STAR_STAR2] = ACTIONS(2825), - [anon_sym_PLUS_PLUS2] = ACTIONS(2825), - [anon_sym_SLASH2] = ACTIONS(2823), - [anon_sym_mod2] = ACTIONS(2827), - [anon_sym_SLASH_SLASH2] = ACTIONS(2827), - [anon_sym_PLUS2] = ACTIONS(2846), - [anon_sym_bit_DASHshl2] = ACTIONS(2848), - [anon_sym_bit_DASHshr2] = ACTIONS(2848), - [anon_sym_bit_DASHand2] = ACTIONS(2850), - [anon_sym_bit_DASHxor2] = ACTIONS(2551), - [anon_sym_bit_DASHor2] = ACTIONS(2551), - [anon_sym_err_GT] = ACTIONS(2553), - [anon_sym_out_GT] = ACTIONS(2553), - [anon_sym_e_GT] = ACTIONS(2553), - [anon_sym_o_GT] = ACTIONS(2553), - [anon_sym_err_PLUSout_GT] = ACTIONS(2553), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2553), - [anon_sym_o_PLUSe_GT] = ACTIONS(2553), - [anon_sym_e_PLUSo_GT] = ACTIONS(2553), - [anon_sym_err_GT_GT] = ACTIONS(2551), - [anon_sym_out_GT_GT] = ACTIONS(2551), - [anon_sym_e_GT_GT] = ACTIONS(2551), - [anon_sym_o_GT_GT] = ACTIONS(2551), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2551), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2551), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2551), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2551), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1157)] = { - [sym_comment] = STATE(1157), - [anon_sym_in] = ACTIONS(2836), - [sym__newline] = ACTIONS(2551), - [anon_sym_SEMI] = ACTIONS(2551), - [anon_sym_PIPE] = ACTIONS(2551), - [anon_sym_err_GT_PIPE] = ACTIONS(2551), - [anon_sym_out_GT_PIPE] = ACTIONS(2551), - [anon_sym_e_GT_PIPE] = ACTIONS(2551), - [anon_sym_o_GT_PIPE] = ACTIONS(2551), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2551), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2551), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2551), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2551), - [anon_sym_RPAREN] = ACTIONS(2551), - [anon_sym_GT2] = ACTIONS(2838), - [anon_sym_DASH2] = ACTIONS(2840), - [anon_sym_RBRACE] = ACTIONS(2551), - [anon_sym_STAR2] = ACTIONS(2823), - [anon_sym_and2] = ACTIONS(2551), - [anon_sym_xor2] = ACTIONS(2551), - [anon_sym_or2] = ACTIONS(2551), - [anon_sym_not_DASHin2] = ACTIONS(2836), - [anon_sym_has2] = ACTIONS(2836), - [anon_sym_not_DASHhas2] = ACTIONS(2836), - [anon_sym_starts_DASHwith2] = ACTIONS(2836), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2836), - [anon_sym_ends_DASHwith2] = ACTIONS(2836), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2836), - [anon_sym_EQ_EQ2] = ACTIONS(2842), - [anon_sym_BANG_EQ2] = ACTIONS(2842), - [anon_sym_LT2] = ACTIONS(2838), - [anon_sym_LT_EQ2] = ACTIONS(2842), - [anon_sym_GT_EQ2] = ACTIONS(2842), - [anon_sym_EQ_TILDE2] = ACTIONS(2844), - [anon_sym_BANG_TILDE2] = ACTIONS(2844), - [anon_sym_like2] = ACTIONS(2844), - [anon_sym_not_DASHlike2] = ACTIONS(2844), - [anon_sym_STAR_STAR2] = ACTIONS(2825), - [anon_sym_PLUS_PLUS2] = ACTIONS(2825), - [anon_sym_SLASH2] = ACTIONS(2823), - [anon_sym_mod2] = ACTIONS(2827), - [anon_sym_SLASH_SLASH2] = ACTIONS(2827), - [anon_sym_PLUS2] = ACTIONS(2846), - [anon_sym_bit_DASHshl2] = ACTIONS(2848), - [anon_sym_bit_DASHshr2] = ACTIONS(2848), - [anon_sym_bit_DASHand2] = ACTIONS(2850), - [anon_sym_bit_DASHxor2] = ACTIONS(2852), - [anon_sym_bit_DASHor2] = ACTIONS(2551), - [anon_sym_err_GT] = ACTIONS(2553), - [anon_sym_out_GT] = ACTIONS(2553), - [anon_sym_e_GT] = ACTIONS(2553), - [anon_sym_o_GT] = ACTIONS(2553), - [anon_sym_err_PLUSout_GT] = ACTIONS(2553), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2553), - [anon_sym_o_PLUSe_GT] = ACTIONS(2553), - [anon_sym_e_PLUSo_GT] = ACTIONS(2553), - [anon_sym_err_GT_GT] = ACTIONS(2551), - [anon_sym_out_GT_GT] = ACTIONS(2551), - [anon_sym_e_GT_GT] = ACTIONS(2551), - [anon_sym_o_GT_GT] = ACTIONS(2551), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2551), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2551), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2551), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2551), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1158)] = { - [sym_comment] = STATE(1158), - [anon_sym_in] = ACTIONS(2298), - [sym__newline] = ACTIONS(2298), - [anon_sym_SEMI] = ACTIONS(2298), - [anon_sym_PIPE] = ACTIONS(2298), - [anon_sym_err_GT_PIPE] = ACTIONS(2298), - [anon_sym_out_GT_PIPE] = ACTIONS(2298), - [anon_sym_e_GT_PIPE] = ACTIONS(2298), - [anon_sym_o_GT_PIPE] = ACTIONS(2298), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2298), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2298), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2298), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2298), - [anon_sym_RPAREN] = ACTIONS(2298), - [anon_sym_GT2] = ACTIONS(2300), - [anon_sym_DASH2] = ACTIONS(2298), - [anon_sym_LBRACE] = ACTIONS(2298), - [anon_sym_STAR2] = ACTIONS(2300), - [anon_sym_and2] = ACTIONS(2298), - [anon_sym_xor2] = ACTIONS(2298), - [anon_sym_or2] = ACTIONS(2298), - [anon_sym_not_DASHin2] = ACTIONS(2298), - [anon_sym_has2] = ACTIONS(2298), - [anon_sym_not_DASHhas2] = ACTIONS(2298), - [anon_sym_starts_DASHwith2] = ACTIONS(2298), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2298), - [anon_sym_ends_DASHwith2] = ACTIONS(2298), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2298), - [anon_sym_EQ_EQ2] = ACTIONS(2298), - [anon_sym_BANG_EQ2] = ACTIONS(2298), - [anon_sym_LT2] = ACTIONS(2300), - [anon_sym_LT_EQ2] = ACTIONS(2298), - [anon_sym_GT_EQ2] = ACTIONS(2298), - [anon_sym_EQ_TILDE2] = ACTIONS(2298), - [anon_sym_BANG_TILDE2] = ACTIONS(2298), - [anon_sym_like2] = ACTIONS(2298), - [anon_sym_not_DASHlike2] = ACTIONS(2298), - [anon_sym_STAR_STAR2] = ACTIONS(2298), - [anon_sym_PLUS_PLUS2] = ACTIONS(2298), - [anon_sym_SLASH2] = ACTIONS(2300), - [anon_sym_mod2] = ACTIONS(2298), - [anon_sym_SLASH_SLASH2] = ACTIONS(2298), - [anon_sym_PLUS2] = ACTIONS(2300), - [anon_sym_bit_DASHshl2] = ACTIONS(2298), - [anon_sym_bit_DASHshr2] = ACTIONS(2298), - [anon_sym_bit_DASHand2] = ACTIONS(2298), - [anon_sym_bit_DASHxor2] = ACTIONS(2298), - [anon_sym_bit_DASHor2] = ACTIONS(2298), - [anon_sym_err_GT] = ACTIONS(2300), - [anon_sym_out_GT] = ACTIONS(2300), - [anon_sym_e_GT] = ACTIONS(2300), - [anon_sym_o_GT] = ACTIONS(2300), - [anon_sym_err_PLUSout_GT] = ACTIONS(2300), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2300), - [anon_sym_o_PLUSe_GT] = ACTIONS(2300), - [anon_sym_e_PLUSo_GT] = ACTIONS(2300), - [anon_sym_err_GT_GT] = ACTIONS(2298), - [anon_sym_out_GT_GT] = ACTIONS(2298), - [anon_sym_e_GT_GT] = ACTIONS(2298), - [anon_sym_o_GT_GT] = ACTIONS(2298), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2298), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2298), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2298), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2298), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1159)] = { - [aux_sym__repeat_newline] = STATE(1169), - [sym_comment] = STATE(1159), - [anon_sym_in] = ACTIONS(2754), - [sym__newline] = ACTIONS(2860), - [anon_sym_SEMI] = ACTIONS(2754), - [anon_sym_PIPE] = ACTIONS(2754), - [anon_sym_err_GT_PIPE] = ACTIONS(2754), - [anon_sym_out_GT_PIPE] = ACTIONS(2754), - [anon_sym_e_GT_PIPE] = ACTIONS(2754), - [anon_sym_o_GT_PIPE] = ACTIONS(2754), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2754), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2754), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2754), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2754), - [anon_sym_RPAREN] = ACTIONS(2754), - [anon_sym_GT2] = ACTIONS(2807), - [anon_sym_DASH2] = ACTIONS(2809), - [anon_sym_STAR2] = ACTIONS(2811), - [anon_sym_and2] = ACTIONS(2754), - [anon_sym_xor2] = ACTIONS(2754), - [anon_sym_or2] = ACTIONS(2754), - [anon_sym_not_DASHin2] = ACTIONS(2754), - [anon_sym_has2] = ACTIONS(2754), - [anon_sym_not_DASHhas2] = ACTIONS(2754), - [anon_sym_starts_DASHwith2] = ACTIONS(2754), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2754), - [anon_sym_ends_DASHwith2] = ACTIONS(2754), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2754), - [anon_sym_EQ_EQ2] = ACTIONS(2813), - [anon_sym_BANG_EQ2] = ACTIONS(2813), - [anon_sym_LT2] = ACTIONS(2807), - [anon_sym_LT_EQ2] = ACTIONS(2813), - [anon_sym_GT_EQ2] = ACTIONS(2813), - [anon_sym_EQ_TILDE2] = ACTIONS(2754), - [anon_sym_BANG_TILDE2] = ACTIONS(2754), - [anon_sym_like2] = ACTIONS(2754), - [anon_sym_not_DASHlike2] = ACTIONS(2754), - [anon_sym_STAR_STAR2] = ACTIONS(2815), - [anon_sym_PLUS_PLUS2] = ACTIONS(2815), - [anon_sym_SLASH2] = ACTIONS(2811), - [anon_sym_mod2] = ACTIONS(2817), - [anon_sym_SLASH_SLASH2] = ACTIONS(2817), - [anon_sym_PLUS2] = ACTIONS(2819), - [anon_sym_bit_DASHshl2] = ACTIONS(2821), - [anon_sym_bit_DASHshr2] = ACTIONS(2821), - [anon_sym_bit_DASHand2] = ACTIONS(2754), - [anon_sym_bit_DASHxor2] = ACTIONS(2754), - [anon_sym_bit_DASHor2] = ACTIONS(2754), - [anon_sym_err_GT] = ACTIONS(2756), - [anon_sym_out_GT] = ACTIONS(2756), - [anon_sym_e_GT] = ACTIONS(2756), - [anon_sym_o_GT] = ACTIONS(2756), - [anon_sym_err_PLUSout_GT] = ACTIONS(2756), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2756), - [anon_sym_o_PLUSe_GT] = ACTIONS(2756), - [anon_sym_e_PLUSo_GT] = ACTIONS(2756), - [anon_sym_err_GT_GT] = ACTIONS(2754), - [anon_sym_out_GT_GT] = ACTIONS(2754), - [anon_sym_e_GT_GT] = ACTIONS(2754), - [anon_sym_o_GT_GT] = ACTIONS(2754), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2754), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2754), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2754), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2754), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(1160)] = { - [sym__ctrl_match_body] = STATE(5375), - [sym_match_arm] = STATE(4682), - [sym_default_arm] = STATE(4682), - [sym_match_pattern] = STATE(5194), - [sym__match_pattern] = STATE(4028), - [sym__match_pattern_expression] = STATE(4471), - [sym__match_pattern_value] = STATE(4475), - [sym__match_pattern_list] = STATE(4483), - [sym__match_pattern_record] = STATE(4489), - [sym_expr_parenthesized] = STATE(3865), - [sym_val_range] = STATE(4475), - [sym__val_range] = STATE(5176), - [sym_val_nothing] = STATE(4489), - [sym_val_bool] = STATE(4169), - [sym_val_variable] = STATE(3808), - [sym_val_number] = STATE(4489), - [sym__val_number_decimal] = STATE(3636), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(4489), - [sym_val_filesize] = STATE(4489), - [sym_val_binary] = STATE(4489), - [sym_val_string] = STATE(4489), - [sym__raw_str] = STATE(2266), - [sym__str_double_quotes] = STATE(2266), - [sym__str_single_quotes] = STATE(2266), - [sym__str_back_ticks] = STATE(2266), - [sym_val_table] = STATE(4489), - [sym_unquoted] = STATE(4503), - [sym__unquoted_anonymous_prefix] = STATE(5176), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1160), - [aux_sym__types_body_repeat1] = STATE(1355), - [aux_sym__ctrl_match_body_repeat1] = STATE(1368), - [anon_sym_true] = ACTIONS(2863), - [anon_sym_false] = ACTIONS(2863), - [anon_sym_null] = ACTIONS(2865), - [aux_sym_cmd_identifier_token3] = ACTIONS(2867), - [aux_sym_cmd_identifier_token4] = ACTIONS(2867), - [aux_sym_cmd_identifier_token5] = ACTIONS(2867), - [sym__newline] = ACTIONS(2869), - [anon_sym_LBRACK] = ACTIONS(2871), - [anon_sym_LPAREN] = ACTIONS(2694), - [anon_sym_DOLLAR] = ACTIONS(2873), - [anon_sym_LBRACE] = ACTIONS(2875), - [anon_sym_RBRACE] = ACTIONS(2877), - [anon_sym__] = ACTIONS(2879), - [anon_sym_DOT_DOT] = ACTIONS(2881), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2883), - [anon_sym_DOT_DOT_LT] = ACTIONS(2883), - [aux_sym__val_number_decimal_token1] = ACTIONS(2885), - [aux_sym__val_number_decimal_token2] = ACTIONS(2887), - [aux_sym__val_number_decimal_token3] = ACTIONS(2889), - [aux_sym__val_number_decimal_token4] = ACTIONS(2889), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2891), - [anon_sym_DQUOTE] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(1802), - [anon_sym_BQUOTE] = ACTIONS(1804), - [aux_sym_unquoted_token1] = ACTIONS(1936), + [anon_sym_in] = ACTIONS(2784), + [sym__newline] = ACTIONS(2784), + [anon_sym_SEMI] = ACTIONS(2784), + [anon_sym_PIPE] = ACTIONS(2784), + [anon_sym_err_GT_PIPE] = ACTIONS(2784), + [anon_sym_out_GT_PIPE] = ACTIONS(2784), + [anon_sym_e_GT_PIPE] = ACTIONS(2784), + [anon_sym_o_GT_PIPE] = ACTIONS(2784), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2784), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2784), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2784), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2784), + [anon_sym_RPAREN] = ACTIONS(2784), + [anon_sym_GT2] = ACTIONS(2786), + [anon_sym_DASH2] = ACTIONS(2784), + [anon_sym_STAR2] = ACTIONS(2830), + [anon_sym_and2] = ACTIONS(2784), + [anon_sym_xor2] = ACTIONS(2784), + [anon_sym_or2] = ACTIONS(2784), + [anon_sym_not_DASHin2] = ACTIONS(2784), + [anon_sym_has2] = ACTIONS(2784), + [anon_sym_not_DASHhas2] = ACTIONS(2784), + [anon_sym_starts_DASHwith2] = ACTIONS(2784), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2784), + [anon_sym_ends_DASHwith2] = ACTIONS(2784), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2784), + [anon_sym_EQ_EQ2] = ACTIONS(2784), + [anon_sym_BANG_EQ2] = ACTIONS(2784), + [anon_sym_LT2] = ACTIONS(2786), + [anon_sym_LT_EQ2] = ACTIONS(2784), + [anon_sym_GT_EQ2] = ACTIONS(2784), + [anon_sym_EQ_TILDE2] = ACTIONS(2784), + [anon_sym_BANG_TILDE2] = ACTIONS(2784), + [anon_sym_like2] = ACTIONS(2784), + [anon_sym_not_DASHlike2] = ACTIONS(2784), + [anon_sym_STAR_STAR2] = ACTIONS(2836), + [anon_sym_PLUS_PLUS2] = ACTIONS(2836), + [anon_sym_SLASH2] = ACTIONS(2830), + [anon_sym_mod2] = ACTIONS(2838), + [anon_sym_SLASH_SLASH2] = ACTIONS(2838), + [anon_sym_PLUS2] = ACTIONS(2786), + [anon_sym_bit_DASHshl2] = ACTIONS(2784), + [anon_sym_bit_DASHshr2] = ACTIONS(2784), + [anon_sym_bit_DASHand2] = ACTIONS(2784), + [anon_sym_bit_DASHxor2] = ACTIONS(2784), + [anon_sym_bit_DASHor2] = ACTIONS(2784), + [anon_sym_err_GT] = ACTIONS(2786), + [anon_sym_out_GT] = ACTIONS(2786), + [anon_sym_e_GT] = ACTIONS(2786), + [anon_sym_o_GT] = ACTIONS(2786), + [anon_sym_err_PLUSout_GT] = ACTIONS(2786), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2786), + [anon_sym_o_PLUSe_GT] = ACTIONS(2786), + [anon_sym_e_PLUSo_GT] = ACTIONS(2786), + [anon_sym_err_GT_GT] = ACTIONS(2784), + [anon_sym_out_GT_GT] = ACTIONS(2784), + [anon_sym_e_GT_GT] = ACTIONS(2784), + [anon_sym_o_GT_GT] = ACTIONS(2784), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2784), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2784), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2784), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2784), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1806), }, [STATE(1161)] = { - [sym__ctrl_match_body] = STATE(5138), - [sym_match_arm] = STATE(4682), - [sym_default_arm] = STATE(4682), - [sym_match_pattern] = STATE(5194), - [sym__match_pattern] = STATE(4028), - [sym__match_pattern_expression] = STATE(4471), - [sym__match_pattern_value] = STATE(4475), - [sym__match_pattern_list] = STATE(4483), - [sym__match_pattern_record] = STATE(4489), - [sym_expr_parenthesized] = STATE(3865), - [sym_val_range] = STATE(4475), - [sym__val_range] = STATE(5176), - [sym_val_nothing] = STATE(4489), - [sym_val_bool] = STATE(4169), - [sym_val_variable] = STATE(3808), - [sym_val_number] = STATE(4489), - [sym__val_number_decimal] = STATE(3636), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(4489), - [sym_val_filesize] = STATE(4489), - [sym_val_binary] = STATE(4489), - [sym_val_string] = STATE(4489), - [sym__raw_str] = STATE(2266), - [sym__str_double_quotes] = STATE(2266), - [sym__str_single_quotes] = STATE(2266), - [sym__str_back_ticks] = STATE(2266), - [sym_val_table] = STATE(4489), - [sym_unquoted] = STATE(4503), - [sym__unquoted_anonymous_prefix] = STATE(5176), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1161), - [aux_sym__types_body_repeat1] = STATE(1355), - [aux_sym__ctrl_match_body_repeat1] = STATE(1368), - [anon_sym_true] = ACTIONS(2863), - [anon_sym_false] = ACTIONS(2863), - [anon_sym_null] = ACTIONS(2865), - [aux_sym_cmd_identifier_token3] = ACTIONS(2867), - [aux_sym_cmd_identifier_token4] = ACTIONS(2867), - [aux_sym_cmd_identifier_token5] = ACTIONS(2867), - [sym__newline] = ACTIONS(2869), - [anon_sym_LBRACK] = ACTIONS(2871), - [anon_sym_LPAREN] = ACTIONS(2694), - [anon_sym_DOLLAR] = ACTIONS(2873), - [anon_sym_LBRACE] = ACTIONS(2875), - [anon_sym_RBRACE] = ACTIONS(2893), - [anon_sym__] = ACTIONS(2879), - [anon_sym_DOT_DOT] = ACTIONS(2881), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2883), - [anon_sym_DOT_DOT_LT] = ACTIONS(2883), - [aux_sym__val_number_decimal_token1] = ACTIONS(2885), - [aux_sym__val_number_decimal_token2] = ACTIONS(2887), - [aux_sym__val_number_decimal_token3] = ACTIONS(2889), - [aux_sym__val_number_decimal_token4] = ACTIONS(2889), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2891), - [anon_sym_DQUOTE] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(1802), - [anon_sym_BQUOTE] = ACTIONS(1804), - [aux_sym_unquoted_token1] = ACTIONS(1936), + [anon_sym_in] = ACTIONS(2810), + [sym__newline] = ACTIONS(2810), + [anon_sym_SEMI] = ACTIONS(2810), + [anon_sym_PIPE] = ACTIONS(2810), + [anon_sym_err_GT_PIPE] = ACTIONS(2810), + [anon_sym_out_GT_PIPE] = ACTIONS(2810), + [anon_sym_e_GT_PIPE] = ACTIONS(2810), + [anon_sym_o_GT_PIPE] = ACTIONS(2810), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2810), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2810), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2810), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2810), + [anon_sym_RPAREN] = ACTIONS(2810), + [anon_sym_GT2] = ACTIONS(2826), + [anon_sym_DASH2] = ACTIONS(2828), + [anon_sym_STAR2] = ACTIONS(2830), + [anon_sym_and2] = ACTIONS(2810), + [anon_sym_xor2] = ACTIONS(2810), + [anon_sym_or2] = ACTIONS(2810), + [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(2832), + [anon_sym_BANG_EQ2] = ACTIONS(2832), + [anon_sym_LT2] = ACTIONS(2826), + [anon_sym_LT_EQ2] = ACTIONS(2832), + [anon_sym_GT_EQ2] = ACTIONS(2832), + [anon_sym_EQ_TILDE2] = ACTIONS(2810), + [anon_sym_BANG_TILDE2] = ACTIONS(2810), + [anon_sym_like2] = ACTIONS(2810), + [anon_sym_not_DASHlike2] = ACTIONS(2810), + [anon_sym_STAR_STAR2] = ACTIONS(2836), + [anon_sym_PLUS_PLUS2] = ACTIONS(2836), + [anon_sym_SLASH2] = ACTIONS(2830), + [anon_sym_mod2] = ACTIONS(2838), + [anon_sym_SLASH_SLASH2] = ACTIONS(2838), + [anon_sym_PLUS2] = ACTIONS(2840), + [anon_sym_bit_DASHshl2] = ACTIONS(2842), + [anon_sym_bit_DASHshr2] = ACTIONS(2842), + [anon_sym_bit_DASHand2] = ACTIONS(2810), + [anon_sym_bit_DASHxor2] = ACTIONS(2810), + [anon_sym_bit_DASHor2] = ACTIONS(2810), + [anon_sym_err_GT] = ACTIONS(2812), + [anon_sym_out_GT] = ACTIONS(2812), + [anon_sym_e_GT] = ACTIONS(2812), + [anon_sym_o_GT] = ACTIONS(2812), + [anon_sym_err_PLUSout_GT] = ACTIONS(2812), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2812), + [anon_sym_o_PLUSe_GT] = ACTIONS(2812), + [anon_sym_e_PLUSo_GT] = ACTIONS(2812), + [anon_sym_err_GT_GT] = ACTIONS(2810), + [anon_sym_out_GT_GT] = ACTIONS(2810), + [anon_sym_e_GT_GT] = ACTIONS(2810), + [anon_sym_o_GT_GT] = ACTIONS(2810), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2810), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2810), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2810), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2810), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1806), }, [STATE(1162)] = { - [aux_sym__repeat_newline] = STATE(1208), + [aux_sym__repeat_newline] = STATE(1223), [sym_comment] = STATE(1162), - [anon_sym_in] = ACTIONS(2895), - [sym__newline] = ACTIONS(2831), - [anon_sym_SEMI] = ACTIONS(2730), - [anon_sym_PIPE] = ACTIONS(2730), - [anon_sym_err_GT_PIPE] = ACTIONS(2730), - [anon_sym_out_GT_PIPE] = ACTIONS(2730), - [anon_sym_e_GT_PIPE] = ACTIONS(2730), - [anon_sym_o_GT_PIPE] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2730), - [anon_sym_RPAREN] = ACTIONS(2730), - [anon_sym_GT2] = ACTIONS(2807), - [anon_sym_DASH2] = ACTIONS(2809), - [anon_sym_STAR2] = ACTIONS(2811), - [anon_sym_and2] = ACTIONS(2730), - [anon_sym_xor2] = ACTIONS(2730), - [anon_sym_or2] = ACTIONS(2730), - [anon_sym_not_DASHin2] = ACTIONS(2895), - [anon_sym_has2] = ACTIONS(2895), - [anon_sym_not_DASHhas2] = ACTIONS(2895), - [anon_sym_starts_DASHwith2] = ACTIONS(2895), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2895), - [anon_sym_ends_DASHwith2] = ACTIONS(2895), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2895), - [anon_sym_EQ_EQ2] = ACTIONS(2813), - [anon_sym_BANG_EQ2] = ACTIONS(2813), - [anon_sym_LT2] = ACTIONS(2807), - [anon_sym_LT_EQ2] = ACTIONS(2813), - [anon_sym_GT_EQ2] = ACTIONS(2813), - [anon_sym_EQ_TILDE2] = ACTIONS(2897), - [anon_sym_BANG_TILDE2] = ACTIONS(2897), - [anon_sym_like2] = ACTIONS(2897), - [anon_sym_not_DASHlike2] = ACTIONS(2897), - [anon_sym_STAR_STAR2] = ACTIONS(2815), - [anon_sym_PLUS_PLUS2] = ACTIONS(2815), - [anon_sym_SLASH2] = ACTIONS(2811), - [anon_sym_mod2] = ACTIONS(2817), - [anon_sym_SLASH_SLASH2] = ACTIONS(2817), - [anon_sym_PLUS2] = ACTIONS(2819), - [anon_sym_bit_DASHshl2] = ACTIONS(2821), - [anon_sym_bit_DASHshr2] = ACTIONS(2821), - [anon_sym_bit_DASHand2] = ACTIONS(2899), - [anon_sym_bit_DASHxor2] = ACTIONS(2901), - [anon_sym_bit_DASHor2] = ACTIONS(2903), - [anon_sym_err_GT] = ACTIONS(2732), - [anon_sym_out_GT] = ACTIONS(2732), - [anon_sym_e_GT] = ACTIONS(2732), - [anon_sym_o_GT] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT] = ACTIONS(2732), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), + [anon_sym_in] = ACTIONS(2798), + [sym__newline] = ACTIONS(2850), + [anon_sym_SEMI] = ACTIONS(2798), + [anon_sym_PIPE] = ACTIONS(2798), + [anon_sym_err_GT_PIPE] = ACTIONS(2798), + [anon_sym_out_GT_PIPE] = ACTIONS(2798), + [anon_sym_e_GT_PIPE] = ACTIONS(2798), + [anon_sym_o_GT_PIPE] = ACTIONS(2798), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2798), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2798), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2798), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2798), + [anon_sym_RPAREN] = ACTIONS(2798), + [anon_sym_GT2] = ACTIONS(2800), + [anon_sym_DASH2] = ACTIONS(2798), + [anon_sym_STAR2] = ACTIONS(2857), + [anon_sym_and2] = ACTIONS(2798), + [anon_sym_xor2] = ACTIONS(2798), + [anon_sym_or2] = ACTIONS(2798), + [anon_sym_not_DASHin2] = ACTIONS(2798), + [anon_sym_has2] = ACTIONS(2798), + [anon_sym_not_DASHhas2] = ACTIONS(2798), + [anon_sym_starts_DASHwith2] = ACTIONS(2798), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2798), + [anon_sym_ends_DASHwith2] = ACTIONS(2798), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2798), + [anon_sym_EQ_EQ2] = ACTIONS(2798), + [anon_sym_BANG_EQ2] = ACTIONS(2798), + [anon_sym_LT2] = ACTIONS(2800), + [anon_sym_LT_EQ2] = ACTIONS(2798), + [anon_sym_GT_EQ2] = ACTIONS(2798), + [anon_sym_EQ_TILDE2] = ACTIONS(2798), + [anon_sym_BANG_TILDE2] = ACTIONS(2798), + [anon_sym_like2] = ACTIONS(2798), + [anon_sym_not_DASHlike2] = ACTIONS(2798), + [anon_sym_STAR_STAR2] = ACTIONS(2861), + [anon_sym_PLUS_PLUS2] = ACTIONS(2861), + [anon_sym_SLASH2] = ACTIONS(2857), + [anon_sym_mod2] = ACTIONS(2863), + [anon_sym_SLASH_SLASH2] = ACTIONS(2863), + [anon_sym_PLUS2] = ACTIONS(2800), + [anon_sym_bit_DASHshl2] = ACTIONS(2798), + [anon_sym_bit_DASHshr2] = ACTIONS(2798), + [anon_sym_bit_DASHand2] = ACTIONS(2798), + [anon_sym_bit_DASHxor2] = ACTIONS(2798), + [anon_sym_bit_DASHor2] = ACTIONS(2798), + [anon_sym_err_GT] = ACTIONS(2800), + [anon_sym_out_GT] = ACTIONS(2800), + [anon_sym_e_GT] = ACTIONS(2800), + [anon_sym_o_GT] = ACTIONS(2800), + [anon_sym_err_PLUSout_GT] = ACTIONS(2800), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2800), + [anon_sym_o_PLUSe_GT] = ACTIONS(2800), + [anon_sym_e_PLUSo_GT] = ACTIONS(2800), + [anon_sym_err_GT_GT] = ACTIONS(2798), + [anon_sym_out_GT_GT] = ACTIONS(2798), + [anon_sym_e_GT_GT] = ACTIONS(2798), + [anon_sym_o_GT_GT] = ACTIONS(2798), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2798), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2798), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2798), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2798), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1163)] = { - [aux_sym__repeat_newline] = STATE(1210), + [aux_sym__repeat_newline] = STATE(1247), [sym_comment] = STATE(1163), - [anon_sym_in] = ACTIONS(2895), - [sym__newline] = ACTIONS(2831), - [anon_sym_SEMI] = ACTIONS(2730), - [anon_sym_PIPE] = ACTIONS(2730), - [anon_sym_err_GT_PIPE] = ACTIONS(2730), - [anon_sym_out_GT_PIPE] = ACTIONS(2730), - [anon_sym_e_GT_PIPE] = ACTIONS(2730), - [anon_sym_o_GT_PIPE] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2730), - [anon_sym_RPAREN] = ACTIONS(2730), - [anon_sym_GT2] = ACTIONS(2807), - [anon_sym_DASH2] = ACTIONS(2809), - [anon_sym_STAR2] = ACTIONS(2811), - [anon_sym_and2] = ACTIONS(2905), - [anon_sym_xor2] = ACTIONS(2730), - [anon_sym_or2] = ACTIONS(2730), - [anon_sym_not_DASHin2] = ACTIONS(2895), - [anon_sym_has2] = ACTIONS(2895), - [anon_sym_not_DASHhas2] = ACTIONS(2895), - [anon_sym_starts_DASHwith2] = ACTIONS(2895), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2895), - [anon_sym_ends_DASHwith2] = ACTIONS(2895), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2895), - [anon_sym_EQ_EQ2] = ACTIONS(2813), - [anon_sym_BANG_EQ2] = ACTIONS(2813), - [anon_sym_LT2] = ACTIONS(2807), - [anon_sym_LT_EQ2] = ACTIONS(2813), - [anon_sym_GT_EQ2] = ACTIONS(2813), - [anon_sym_EQ_TILDE2] = ACTIONS(2897), - [anon_sym_BANG_TILDE2] = ACTIONS(2897), - [anon_sym_like2] = ACTIONS(2897), - [anon_sym_not_DASHlike2] = ACTIONS(2897), - [anon_sym_STAR_STAR2] = ACTIONS(2815), - [anon_sym_PLUS_PLUS2] = ACTIONS(2815), - [anon_sym_SLASH2] = ACTIONS(2811), - [anon_sym_mod2] = ACTIONS(2817), - [anon_sym_SLASH_SLASH2] = ACTIONS(2817), - [anon_sym_PLUS2] = ACTIONS(2819), - [anon_sym_bit_DASHshl2] = ACTIONS(2821), - [anon_sym_bit_DASHshr2] = ACTIONS(2821), - [anon_sym_bit_DASHand2] = ACTIONS(2899), - [anon_sym_bit_DASHxor2] = ACTIONS(2901), - [anon_sym_bit_DASHor2] = ACTIONS(2903), - [anon_sym_err_GT] = ACTIONS(2732), - [anon_sym_out_GT] = ACTIONS(2732), - [anon_sym_e_GT] = ACTIONS(2732), - [anon_sym_o_GT] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT] = ACTIONS(2732), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), + [anon_sym_in] = ACTIONS(2806), + [sym__newline] = ACTIONS(2869), + [anon_sym_SEMI] = ACTIONS(2806), + [anon_sym_PIPE] = ACTIONS(2806), + [anon_sym_err_GT_PIPE] = ACTIONS(2806), + [anon_sym_out_GT_PIPE] = ACTIONS(2806), + [anon_sym_e_GT_PIPE] = ACTIONS(2806), + [anon_sym_o_GT_PIPE] = ACTIONS(2806), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2806), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2806), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2806), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2806), + [anon_sym_RPAREN] = ACTIONS(2806), + [anon_sym_GT2] = ACTIONS(2808), + [anon_sym_DASH2] = ACTIONS(2855), + [anon_sym_STAR2] = ACTIONS(2857), + [anon_sym_and2] = ACTIONS(2806), + [anon_sym_xor2] = ACTIONS(2806), + [anon_sym_or2] = ACTIONS(2806), + [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(2806), + [anon_sym_BANG_EQ2] = ACTIONS(2806), + [anon_sym_LT2] = ACTIONS(2808), + [anon_sym_LT_EQ2] = ACTIONS(2806), + [anon_sym_GT_EQ2] = ACTIONS(2806), + [anon_sym_EQ_TILDE2] = ACTIONS(2806), + [anon_sym_BANG_TILDE2] = ACTIONS(2806), + [anon_sym_like2] = ACTIONS(2806), + [anon_sym_not_DASHlike2] = ACTIONS(2806), + [anon_sym_STAR_STAR2] = ACTIONS(2861), + [anon_sym_PLUS_PLUS2] = ACTIONS(2861), + [anon_sym_SLASH2] = ACTIONS(2857), + [anon_sym_mod2] = ACTIONS(2863), + [anon_sym_SLASH_SLASH2] = ACTIONS(2863), + [anon_sym_PLUS2] = ACTIONS(2865), + [anon_sym_bit_DASHshl2] = ACTIONS(2867), + [anon_sym_bit_DASHshr2] = ACTIONS(2867), + [anon_sym_bit_DASHand2] = ACTIONS(2806), + [anon_sym_bit_DASHxor2] = ACTIONS(2806), + [anon_sym_bit_DASHor2] = ACTIONS(2806), + [anon_sym_err_GT] = ACTIONS(2808), + [anon_sym_out_GT] = ACTIONS(2808), + [anon_sym_e_GT] = ACTIONS(2808), + [anon_sym_o_GT] = ACTIONS(2808), + [anon_sym_err_PLUSout_GT] = ACTIONS(2808), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2808), + [anon_sym_o_PLUSe_GT] = ACTIONS(2808), + [anon_sym_e_PLUSo_GT] = ACTIONS(2808), + [anon_sym_err_GT_GT] = ACTIONS(2806), + [anon_sym_out_GT_GT] = ACTIONS(2806), + [anon_sym_e_GT_GT] = ACTIONS(2806), + [anon_sym_o_GT_GT] = ACTIONS(2806), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2806), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2806), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2806), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2806), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1164)] = { - [aux_sym__repeat_newline] = STATE(1212), + [sym__expression] = STATE(4947), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), + [sym__expr_binary_expression] = STATE(2246), + [sym_expr_parenthesized] = STATE(724), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1886), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), [sym_comment] = STATE(1164), - [anon_sym_in] = ACTIONS(2895), - [sym__newline] = ACTIONS(2907), - [anon_sym_SEMI] = ACTIONS(2730), - [anon_sym_PIPE] = ACTIONS(2730), - [anon_sym_err_GT_PIPE] = ACTIONS(2730), - [anon_sym_out_GT_PIPE] = ACTIONS(2730), - [anon_sym_e_GT_PIPE] = ACTIONS(2730), - [anon_sym_o_GT_PIPE] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2730), - [anon_sym_RPAREN] = ACTIONS(2730), - [anon_sym_GT2] = ACTIONS(2807), - [anon_sym_DASH2] = ACTIONS(2809), - [anon_sym_STAR2] = ACTIONS(2811), - [anon_sym_and2] = ACTIONS(2905), - [anon_sym_xor2] = ACTIONS(2909), - [anon_sym_or2] = ACTIONS(2730), - [anon_sym_not_DASHin2] = ACTIONS(2895), - [anon_sym_has2] = ACTIONS(2895), - [anon_sym_not_DASHhas2] = ACTIONS(2895), - [anon_sym_starts_DASHwith2] = ACTIONS(2895), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2895), - [anon_sym_ends_DASHwith2] = ACTIONS(2895), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2895), - [anon_sym_EQ_EQ2] = ACTIONS(2813), - [anon_sym_BANG_EQ2] = ACTIONS(2813), - [anon_sym_LT2] = ACTIONS(2807), - [anon_sym_LT_EQ2] = ACTIONS(2813), - [anon_sym_GT_EQ2] = ACTIONS(2813), - [anon_sym_EQ_TILDE2] = ACTIONS(2897), - [anon_sym_BANG_TILDE2] = ACTIONS(2897), - [anon_sym_like2] = ACTIONS(2897), - [anon_sym_not_DASHlike2] = ACTIONS(2897), - [anon_sym_STAR_STAR2] = ACTIONS(2815), - [anon_sym_PLUS_PLUS2] = ACTIONS(2815), - [anon_sym_SLASH2] = ACTIONS(2811), - [anon_sym_mod2] = ACTIONS(2817), - [anon_sym_SLASH_SLASH2] = ACTIONS(2817), - [anon_sym_PLUS2] = ACTIONS(2819), - [anon_sym_bit_DASHshl2] = ACTIONS(2821), - [anon_sym_bit_DASHshr2] = ACTIONS(2821), - [anon_sym_bit_DASHand2] = ACTIONS(2899), - [anon_sym_bit_DASHxor2] = ACTIONS(2901), - [anon_sym_bit_DASHor2] = ACTIONS(2903), - [anon_sym_err_GT] = ACTIONS(2732), - [anon_sym_out_GT] = ACTIONS(2732), - [anon_sym_e_GT] = ACTIONS(2732), - [anon_sym_o_GT] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT] = ACTIONS(2732), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token2] = ACTIONS(2594), + [anon_sym_true] = ACTIONS(2596), + [anon_sym_false] = ACTIONS(2596), + [anon_sym_null] = ACTIONS(2598), + [aux_sym_cmd_identifier_token3] = ACTIONS(2600), + [aux_sym_cmd_identifier_token4] = ACTIONS(2600), + [aux_sym_cmd_identifier_token5] = ACTIONS(2600), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(998), + [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(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2006), + [aux_sym__val_number_decimal_token3] = ACTIONS(2604), + [aux_sym__val_number_decimal_token4] = ACTIONS(2604), + [aux_sym__val_number_token1] = ACTIONS(2600), + [aux_sym__val_number_token2] = ACTIONS(2600), + [aux_sym__val_number_token3] = ACTIONS(2600), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2606), + [anon_sym_DQUOTE] = 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(1165)] = { - [aux_sym__repeat_newline] = STATE(1175), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1165), - [anon_sym_in] = ACTIONS(2754), - [sym__newline] = ACTIONS(2860), - [anon_sym_SEMI] = ACTIONS(2754), - [anon_sym_PIPE] = ACTIONS(2754), - [anon_sym_err_GT_PIPE] = ACTIONS(2754), - [anon_sym_out_GT_PIPE] = ACTIONS(2754), - [anon_sym_e_GT_PIPE] = ACTIONS(2754), - [anon_sym_o_GT_PIPE] = ACTIONS(2754), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2754), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2754), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2754), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2754), - [anon_sym_RPAREN] = ACTIONS(2754), - [anon_sym_GT2] = ACTIONS(2756), - [anon_sym_DASH2] = ACTIONS(2809), - [anon_sym_STAR2] = ACTIONS(2811), - [anon_sym_and2] = ACTIONS(2754), - [anon_sym_xor2] = ACTIONS(2754), - [anon_sym_or2] = ACTIONS(2754), - [anon_sym_not_DASHin2] = ACTIONS(2754), - [anon_sym_has2] = ACTIONS(2754), - [anon_sym_not_DASHhas2] = ACTIONS(2754), - [anon_sym_starts_DASHwith2] = ACTIONS(2754), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2754), - [anon_sym_ends_DASHwith2] = ACTIONS(2754), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2754), - [anon_sym_EQ_EQ2] = ACTIONS(2754), - [anon_sym_BANG_EQ2] = ACTIONS(2754), - [anon_sym_LT2] = ACTIONS(2756), - [anon_sym_LT_EQ2] = ACTIONS(2754), - [anon_sym_GT_EQ2] = ACTIONS(2754), - [anon_sym_EQ_TILDE2] = ACTIONS(2754), - [anon_sym_BANG_TILDE2] = ACTIONS(2754), - [anon_sym_like2] = ACTIONS(2754), - [anon_sym_not_DASHlike2] = ACTIONS(2754), - [anon_sym_STAR_STAR2] = ACTIONS(2815), - [anon_sym_PLUS_PLUS2] = ACTIONS(2815), - [anon_sym_SLASH2] = ACTIONS(2811), - [anon_sym_mod2] = ACTIONS(2817), - [anon_sym_SLASH_SLASH2] = ACTIONS(2817), - [anon_sym_PLUS2] = ACTIONS(2819), - [anon_sym_bit_DASHshl2] = ACTIONS(2821), - [anon_sym_bit_DASHshr2] = ACTIONS(2821), - [anon_sym_bit_DASHand2] = ACTIONS(2754), - [anon_sym_bit_DASHxor2] = ACTIONS(2754), - [anon_sym_bit_DASHor2] = ACTIONS(2754), - [anon_sym_err_GT] = ACTIONS(2756), - [anon_sym_out_GT] = ACTIONS(2756), - [anon_sym_e_GT] = ACTIONS(2756), - [anon_sym_o_GT] = ACTIONS(2756), - [anon_sym_err_PLUSout_GT] = ACTIONS(2756), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2756), - [anon_sym_o_PLUSe_GT] = ACTIONS(2756), - [anon_sym_e_PLUSo_GT] = ACTIONS(2756), - [anon_sym_err_GT_GT] = ACTIONS(2754), - [anon_sym_out_GT_GT] = ACTIONS(2754), - [anon_sym_e_GT_GT] = ACTIONS(2754), - [anon_sym_o_GT_GT] = ACTIONS(2754), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2754), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2754), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2754), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2754), + [anon_sym_in] = ACTIONS(2784), + [sym__newline] = ACTIONS(2784), + [anon_sym_SEMI] = ACTIONS(2784), + [anon_sym_PIPE] = ACTIONS(2784), + [anon_sym_err_GT_PIPE] = ACTIONS(2784), + [anon_sym_out_GT_PIPE] = ACTIONS(2784), + [anon_sym_e_GT_PIPE] = ACTIONS(2784), + [anon_sym_o_GT_PIPE] = ACTIONS(2784), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2784), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2784), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2784), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2784), + [anon_sym_RPAREN] = ACTIONS(2784), + [anon_sym_GT2] = ACTIONS(2786), + [anon_sym_DASH2] = ACTIONS(2784), + [anon_sym_STAR2] = ACTIONS(2786), + [anon_sym_and2] = ACTIONS(2784), + [anon_sym_xor2] = ACTIONS(2784), + [anon_sym_or2] = ACTIONS(2784), + [anon_sym_not_DASHin2] = ACTIONS(2784), + [anon_sym_has2] = ACTIONS(2784), + [anon_sym_not_DASHhas2] = ACTIONS(2784), + [anon_sym_starts_DASHwith2] = ACTIONS(2784), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2784), + [anon_sym_ends_DASHwith2] = ACTIONS(2784), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2784), + [anon_sym_EQ_EQ2] = ACTIONS(2784), + [anon_sym_BANG_EQ2] = ACTIONS(2784), + [anon_sym_LT2] = ACTIONS(2786), + [anon_sym_LT_EQ2] = ACTIONS(2784), + [anon_sym_GT_EQ2] = ACTIONS(2784), + [anon_sym_EQ_TILDE2] = ACTIONS(2784), + [anon_sym_BANG_TILDE2] = ACTIONS(2784), + [anon_sym_like2] = ACTIONS(2784), + [anon_sym_not_DASHlike2] = ACTIONS(2784), + [anon_sym_STAR_STAR2] = ACTIONS(2836), + [anon_sym_PLUS_PLUS2] = ACTIONS(2836), + [anon_sym_SLASH2] = ACTIONS(2786), + [anon_sym_mod2] = ACTIONS(2784), + [anon_sym_SLASH_SLASH2] = ACTIONS(2784), + [anon_sym_PLUS2] = ACTIONS(2786), + [anon_sym_bit_DASHshl2] = ACTIONS(2784), + [anon_sym_bit_DASHshr2] = ACTIONS(2784), + [anon_sym_bit_DASHand2] = ACTIONS(2784), + [anon_sym_bit_DASHxor2] = ACTIONS(2784), + [anon_sym_bit_DASHor2] = ACTIONS(2784), + [anon_sym_err_GT] = ACTIONS(2786), + [anon_sym_out_GT] = ACTIONS(2786), + [anon_sym_e_GT] = ACTIONS(2786), + [anon_sym_o_GT] = ACTIONS(2786), + [anon_sym_err_PLUSout_GT] = ACTIONS(2786), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2786), + [anon_sym_o_PLUSe_GT] = ACTIONS(2786), + [anon_sym_e_PLUSo_GT] = ACTIONS(2786), + [anon_sym_err_GT_GT] = ACTIONS(2784), + [anon_sym_out_GT_GT] = ACTIONS(2784), + [anon_sym_e_GT_GT] = ACTIONS(2784), + [anon_sym_o_GT_GT] = ACTIONS(2784), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2784), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2784), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2784), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2784), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1166)] = { - [aux_sym__repeat_newline] = STATE(1214), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1166), - [anon_sym_in] = ACTIONS(2895), - [sym__newline] = ACTIONS(2831), - [anon_sym_SEMI] = ACTIONS(2730), - [anon_sym_PIPE] = ACTIONS(2730), - [anon_sym_err_GT_PIPE] = ACTIONS(2730), - [anon_sym_out_GT_PIPE] = ACTIONS(2730), - [anon_sym_e_GT_PIPE] = ACTIONS(2730), - [anon_sym_o_GT_PIPE] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2730), - [anon_sym_RPAREN] = ACTIONS(2730), - [anon_sym_GT2] = ACTIONS(2807), - [anon_sym_DASH2] = ACTIONS(2809), - [anon_sym_STAR2] = ACTIONS(2811), - [anon_sym_and2] = ACTIONS(2730), - [anon_sym_xor2] = ACTIONS(2730), - [anon_sym_or2] = ACTIONS(2730), - [anon_sym_not_DASHin2] = ACTIONS(2895), - [anon_sym_has2] = ACTIONS(2895), - [anon_sym_not_DASHhas2] = ACTIONS(2895), - [anon_sym_starts_DASHwith2] = ACTIONS(2895), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2895), - [anon_sym_ends_DASHwith2] = ACTIONS(2895), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2895), - [anon_sym_EQ_EQ2] = ACTIONS(2813), - [anon_sym_BANG_EQ2] = ACTIONS(2813), - [anon_sym_LT2] = ACTIONS(2807), - [anon_sym_LT_EQ2] = ACTIONS(2813), - [anon_sym_GT_EQ2] = ACTIONS(2813), - [anon_sym_EQ_TILDE2] = ACTIONS(2730), - [anon_sym_BANG_TILDE2] = ACTIONS(2730), - [anon_sym_like2] = ACTIONS(2730), - [anon_sym_not_DASHlike2] = ACTIONS(2730), - [anon_sym_STAR_STAR2] = ACTIONS(2815), - [anon_sym_PLUS_PLUS2] = ACTIONS(2815), - [anon_sym_SLASH2] = ACTIONS(2811), - [anon_sym_mod2] = ACTIONS(2817), - [anon_sym_SLASH_SLASH2] = ACTIONS(2817), - [anon_sym_PLUS2] = ACTIONS(2819), - [anon_sym_bit_DASHshl2] = ACTIONS(2821), - [anon_sym_bit_DASHshr2] = ACTIONS(2821), - [anon_sym_bit_DASHand2] = ACTIONS(2730), - [anon_sym_bit_DASHxor2] = ACTIONS(2730), - [anon_sym_bit_DASHor2] = ACTIONS(2730), - [anon_sym_err_GT] = ACTIONS(2732), - [anon_sym_out_GT] = ACTIONS(2732), - [anon_sym_e_GT] = ACTIONS(2732), - [anon_sym_o_GT] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT] = ACTIONS(2732), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), + [anon_sym_in] = ACTIONS(2810), + [sym__newline] = ACTIONS(2810), + [anon_sym_SEMI] = ACTIONS(2810), + [anon_sym_PIPE] = ACTIONS(2810), + [anon_sym_err_GT_PIPE] = ACTIONS(2810), + [anon_sym_out_GT_PIPE] = ACTIONS(2810), + [anon_sym_e_GT_PIPE] = ACTIONS(2810), + [anon_sym_o_GT_PIPE] = ACTIONS(2810), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2810), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2810), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2810), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2810), + [anon_sym_RPAREN] = ACTIONS(2810), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2828), + [anon_sym_STAR2] = ACTIONS(2830), + [anon_sym_and2] = ACTIONS(2810), + [anon_sym_xor2] = ACTIONS(2810), + [anon_sym_or2] = ACTIONS(2810), + [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(2810), + [anon_sym_BANG_EQ2] = ACTIONS(2810), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2810), + [anon_sym_GT_EQ2] = ACTIONS(2810), + [anon_sym_EQ_TILDE2] = ACTIONS(2810), + [anon_sym_BANG_TILDE2] = ACTIONS(2810), + [anon_sym_like2] = ACTIONS(2810), + [anon_sym_not_DASHlike2] = ACTIONS(2810), + [anon_sym_STAR_STAR2] = ACTIONS(2836), + [anon_sym_PLUS_PLUS2] = ACTIONS(2836), + [anon_sym_SLASH2] = ACTIONS(2830), + [anon_sym_mod2] = ACTIONS(2838), + [anon_sym_SLASH_SLASH2] = ACTIONS(2838), + [anon_sym_PLUS2] = ACTIONS(2840), + [anon_sym_bit_DASHshl2] = ACTIONS(2842), + [anon_sym_bit_DASHshr2] = ACTIONS(2842), + [anon_sym_bit_DASHand2] = ACTIONS(2810), + [anon_sym_bit_DASHxor2] = ACTIONS(2810), + [anon_sym_bit_DASHor2] = ACTIONS(2810), + [anon_sym_err_GT] = ACTIONS(2812), + [anon_sym_out_GT] = ACTIONS(2812), + [anon_sym_e_GT] = ACTIONS(2812), + [anon_sym_o_GT] = ACTIONS(2812), + [anon_sym_err_PLUSout_GT] = ACTIONS(2812), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2812), + [anon_sym_o_PLUSe_GT] = ACTIONS(2812), + [anon_sym_e_PLUSo_GT] = ACTIONS(2812), + [anon_sym_err_GT_GT] = ACTIONS(2810), + [anon_sym_out_GT_GT] = ACTIONS(2810), + [anon_sym_e_GT_GT] = ACTIONS(2810), + [anon_sym_o_GT_GT] = ACTIONS(2810), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2810), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2810), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2810), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2810), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1167)] = { [sym_comment] = STATE(1167), - [ts_builtin_sym_end] = ACTIONS(886), - [aux_sym_cmd_identifier_token2] = ACTIONS(2829), - [anon_sym_in] = ACTIONS(866), - [sym__newline] = ACTIONS(886), - [anon_sym_SEMI] = ACTIONS(886), - [anon_sym_PIPE] = ACTIONS(886), - [anon_sym_err_GT_PIPE] = ACTIONS(886), - [anon_sym_out_GT_PIPE] = ACTIONS(886), - [anon_sym_e_GT_PIPE] = ACTIONS(886), - [anon_sym_o_GT_PIPE] = ACTIONS(886), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(886), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(886), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(886), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(886), - [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(886), - [anon_sym_BANG_EQ2] = ACTIONS(886), - [anon_sym_LT2] = ACTIONS(866), - [anon_sym_LT_EQ2] = ACTIONS(886), - [anon_sym_GT_EQ2] = ACTIONS(886), - [anon_sym_EQ_TILDE2] = ACTIONS(886), - [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(886), - [anon_sym_out_GT_GT] = ACTIONS(886), - [anon_sym_e_GT_GT] = ACTIONS(886), - [anon_sym_o_GT_GT] = ACTIONS(886), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(886), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(886), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(886), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(886), - [anon_sym_POUND] = ACTIONS(103), + [ts_builtin_sym_end] = ACTIONS(2417), + [anon_sym_finally] = 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_GT2] = ACTIONS(2419), + [anon_sym_DASH2] = 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(1168)] = { - [aux_sym__repeat_newline] = STATE(1220), + [aux_sym__repeat_newline] = STATE(1249), [sym_comment] = STATE(1168), - [anon_sym_in] = ACTIONS(2730), - [sym__newline] = ACTIONS(2831), - [anon_sym_SEMI] = ACTIONS(2730), - [anon_sym_PIPE] = ACTIONS(2730), - [anon_sym_err_GT_PIPE] = ACTIONS(2730), - [anon_sym_out_GT_PIPE] = ACTIONS(2730), - [anon_sym_e_GT_PIPE] = ACTIONS(2730), - [anon_sym_o_GT_PIPE] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2730), - [anon_sym_RPAREN] = ACTIONS(2730), - [anon_sym_GT2] = ACTIONS(2732), - [anon_sym_DASH2] = ACTIONS(2809), - [anon_sym_STAR2] = ACTIONS(2811), - [anon_sym_and2] = ACTIONS(2730), - [anon_sym_xor2] = ACTIONS(2730), - [anon_sym_or2] = ACTIONS(2730), - [anon_sym_not_DASHin2] = ACTIONS(2730), - [anon_sym_has2] = ACTIONS(2730), - [anon_sym_not_DASHhas2] = ACTIONS(2730), - [anon_sym_starts_DASHwith2] = ACTIONS(2730), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2730), - [anon_sym_ends_DASHwith2] = ACTIONS(2730), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2730), - [anon_sym_EQ_EQ2] = ACTIONS(2730), - [anon_sym_BANG_EQ2] = ACTIONS(2730), - [anon_sym_LT2] = ACTIONS(2732), - [anon_sym_LT_EQ2] = ACTIONS(2730), - [anon_sym_GT_EQ2] = ACTIONS(2730), - [anon_sym_EQ_TILDE2] = ACTIONS(2730), - [anon_sym_BANG_TILDE2] = ACTIONS(2730), - [anon_sym_like2] = ACTIONS(2730), - [anon_sym_not_DASHlike2] = ACTIONS(2730), - [anon_sym_STAR_STAR2] = ACTIONS(2815), - [anon_sym_PLUS_PLUS2] = ACTIONS(2815), - [anon_sym_SLASH2] = ACTIONS(2811), - [anon_sym_mod2] = ACTIONS(2817), - [anon_sym_SLASH_SLASH2] = ACTIONS(2817), - [anon_sym_PLUS2] = ACTIONS(2819), - [anon_sym_bit_DASHshl2] = ACTIONS(2730), - [anon_sym_bit_DASHshr2] = ACTIONS(2730), - [anon_sym_bit_DASHand2] = ACTIONS(2730), - [anon_sym_bit_DASHxor2] = ACTIONS(2730), - [anon_sym_bit_DASHor2] = ACTIONS(2730), - [anon_sym_err_GT] = ACTIONS(2732), - [anon_sym_out_GT] = ACTIONS(2732), - [anon_sym_e_GT] = ACTIONS(2732), - [anon_sym_o_GT] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT] = ACTIONS(2732), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), + [anon_sym_in] = ACTIONS(2806), + [sym__newline] = ACTIONS(2869), + [anon_sym_SEMI] = ACTIONS(2806), + [anon_sym_PIPE] = ACTIONS(2806), + [anon_sym_err_GT_PIPE] = ACTIONS(2806), + [anon_sym_out_GT_PIPE] = ACTIONS(2806), + [anon_sym_e_GT_PIPE] = ACTIONS(2806), + [anon_sym_o_GT_PIPE] = ACTIONS(2806), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2806), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2806), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2806), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2806), + [anon_sym_RPAREN] = ACTIONS(2806), + [anon_sym_GT2] = ACTIONS(2808), + [anon_sym_DASH2] = ACTIONS(2806), + [anon_sym_STAR2] = ACTIONS(2857), + [anon_sym_and2] = ACTIONS(2806), + [anon_sym_xor2] = ACTIONS(2806), + [anon_sym_or2] = ACTIONS(2806), + [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(2806), + [anon_sym_BANG_EQ2] = ACTIONS(2806), + [anon_sym_LT2] = ACTIONS(2808), + [anon_sym_LT_EQ2] = ACTIONS(2806), + [anon_sym_GT_EQ2] = ACTIONS(2806), + [anon_sym_EQ_TILDE2] = ACTIONS(2806), + [anon_sym_BANG_TILDE2] = ACTIONS(2806), + [anon_sym_like2] = ACTIONS(2806), + [anon_sym_not_DASHlike2] = ACTIONS(2806), + [anon_sym_STAR_STAR2] = ACTIONS(2861), + [anon_sym_PLUS_PLUS2] = ACTIONS(2861), + [anon_sym_SLASH2] = ACTIONS(2857), + [anon_sym_mod2] = ACTIONS(2863), + [anon_sym_SLASH_SLASH2] = ACTIONS(2863), + [anon_sym_PLUS2] = ACTIONS(2808), + [anon_sym_bit_DASHshl2] = ACTIONS(2806), + [anon_sym_bit_DASHshr2] = ACTIONS(2806), + [anon_sym_bit_DASHand2] = ACTIONS(2806), + [anon_sym_bit_DASHxor2] = ACTIONS(2806), + [anon_sym_bit_DASHor2] = ACTIONS(2806), + [anon_sym_err_GT] = ACTIONS(2808), + [anon_sym_out_GT] = ACTIONS(2808), + [anon_sym_e_GT] = ACTIONS(2808), + [anon_sym_o_GT] = ACTIONS(2808), + [anon_sym_err_PLUSout_GT] = ACTIONS(2808), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2808), + [anon_sym_o_PLUSe_GT] = ACTIONS(2808), + [anon_sym_e_PLUSo_GT] = ACTIONS(2808), + [anon_sym_err_GT_GT] = ACTIONS(2806), + [anon_sym_out_GT_GT] = ACTIONS(2806), + [anon_sym_e_GT_GT] = ACTIONS(2806), + [anon_sym_o_GT_GT] = ACTIONS(2806), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2806), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2806), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2806), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2806), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1169)] = { - [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1169), - [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(2911), - [anon_sym_DASH2] = ACTIONS(2913), - [anon_sym_STAR2] = ACTIONS(2915), - [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(2917), - [anon_sym_BANG_EQ2] = ACTIONS(2917), - [anon_sym_LT2] = ACTIONS(2911), - [anon_sym_LT_EQ2] = ACTIONS(2917), - [anon_sym_GT_EQ2] = ACTIONS(2917), - [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(2919), - [anon_sym_PLUS_PLUS2] = ACTIONS(2919), - [anon_sym_SLASH2] = ACTIONS(2915), - [anon_sym_mod2] = ACTIONS(2921), - [anon_sym_SLASH_SLASH2] = ACTIONS(2921), - [anon_sym_PLUS2] = ACTIONS(2923), - [anon_sym_bit_DASHshl2] = ACTIONS(2925), - [anon_sym_bit_DASHshr2] = ACTIONS(2925), - [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(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(2890), + [anon_sym_DASH2] = ACTIONS(2892), + [anon_sym_RBRACE] = ACTIONS(2648), + [anon_sym_STAR2] = ACTIONS(2894), + [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(2896), + [anon_sym_BANG_EQ2] = ACTIONS(2896), + [anon_sym_LT2] = ACTIONS(2890), + [anon_sym_LT_EQ2] = ACTIONS(2896), + [anon_sym_GT_EQ2] = ACTIONS(2896), + [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(2898), + [anon_sym_PLUS_PLUS2] = ACTIONS(2898), + [anon_sym_SLASH2] = ACTIONS(2894), + [anon_sym_mod2] = ACTIONS(2900), + [anon_sym_SLASH_SLASH2] = ACTIONS(2900), + [anon_sym_PLUS2] = ACTIONS(2902), + [anon_sym_bit_DASHshl2] = ACTIONS(2904), + [anon_sym_bit_DASHshr2] = ACTIONS(2904), + [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(1170)] = { - [aux_sym__repeat_newline] = STATE(1222), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1170), - [anon_sym_in] = ACTIONS(2895), - [sym__newline] = ACTIONS(2831), - [anon_sym_SEMI] = ACTIONS(2730), - [anon_sym_PIPE] = ACTIONS(2730), - [anon_sym_err_GT_PIPE] = ACTIONS(2730), - [anon_sym_out_GT_PIPE] = ACTIONS(2730), - [anon_sym_e_GT_PIPE] = ACTIONS(2730), - [anon_sym_o_GT_PIPE] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2730), - [anon_sym_RPAREN] = ACTIONS(2730), - [anon_sym_GT2] = ACTIONS(2807), - [anon_sym_DASH2] = ACTIONS(2809), - [anon_sym_STAR2] = ACTIONS(2811), - [anon_sym_and2] = ACTIONS(2730), - [anon_sym_xor2] = ACTIONS(2730), - [anon_sym_or2] = ACTIONS(2730), - [anon_sym_not_DASHin2] = ACTIONS(2895), - [anon_sym_has2] = ACTIONS(2895), - [anon_sym_not_DASHhas2] = ACTIONS(2895), - [anon_sym_starts_DASHwith2] = ACTIONS(2895), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2895), - [anon_sym_ends_DASHwith2] = ACTIONS(2895), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2895), - [anon_sym_EQ_EQ2] = ACTIONS(2813), - [anon_sym_BANG_EQ2] = ACTIONS(2813), - [anon_sym_LT2] = ACTIONS(2807), - [anon_sym_LT_EQ2] = ACTIONS(2813), - [anon_sym_GT_EQ2] = ACTIONS(2813), - [anon_sym_EQ_TILDE2] = ACTIONS(2897), - [anon_sym_BANG_TILDE2] = ACTIONS(2897), - [anon_sym_like2] = ACTIONS(2897), - [anon_sym_not_DASHlike2] = ACTIONS(2897), - [anon_sym_STAR_STAR2] = ACTIONS(2815), - [anon_sym_PLUS_PLUS2] = ACTIONS(2815), - [anon_sym_SLASH2] = ACTIONS(2811), - [anon_sym_mod2] = ACTIONS(2817), - [anon_sym_SLASH_SLASH2] = ACTIONS(2817), - [anon_sym_PLUS2] = ACTIONS(2819), - [anon_sym_bit_DASHshl2] = ACTIONS(2821), - [anon_sym_bit_DASHshr2] = ACTIONS(2821), - [anon_sym_bit_DASHand2] = ACTIONS(2730), - [anon_sym_bit_DASHxor2] = ACTIONS(2730), - [anon_sym_bit_DASHor2] = ACTIONS(2730), - [anon_sym_err_GT] = ACTIONS(2732), - [anon_sym_out_GT] = ACTIONS(2732), - [anon_sym_e_GT] = ACTIONS(2732), - [anon_sym_o_GT] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT] = ACTIONS(2732), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), + [anon_sym_in] = ACTIONS(2824), + [sym__newline] = ACTIONS(2784), + [anon_sym_SEMI] = ACTIONS(2784), + [anon_sym_PIPE] = ACTIONS(2784), + [anon_sym_err_GT_PIPE] = ACTIONS(2784), + [anon_sym_out_GT_PIPE] = ACTIONS(2784), + [anon_sym_e_GT_PIPE] = ACTIONS(2784), + [anon_sym_o_GT_PIPE] = ACTIONS(2784), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2784), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2784), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2784), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2784), + [anon_sym_RPAREN] = ACTIONS(2784), + [anon_sym_GT2] = ACTIONS(2826), + [anon_sym_DASH2] = ACTIONS(2828), + [anon_sym_STAR2] = ACTIONS(2830), + [anon_sym_and2] = ACTIONS(2784), + [anon_sym_xor2] = ACTIONS(2784), + [anon_sym_or2] = ACTIONS(2784), + [anon_sym_not_DASHin2] = ACTIONS(2824), + [anon_sym_has2] = ACTIONS(2824), + [anon_sym_not_DASHhas2] = ACTIONS(2824), + [anon_sym_starts_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2824), + [anon_sym_ends_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2824), + [anon_sym_EQ_EQ2] = ACTIONS(2832), + [anon_sym_BANG_EQ2] = ACTIONS(2832), + [anon_sym_LT2] = ACTIONS(2826), + [anon_sym_LT_EQ2] = ACTIONS(2832), + [anon_sym_GT_EQ2] = ACTIONS(2832), + [anon_sym_EQ_TILDE2] = ACTIONS(2834), + [anon_sym_BANG_TILDE2] = ACTIONS(2834), + [anon_sym_like2] = ACTIONS(2834), + [anon_sym_not_DASHlike2] = ACTIONS(2834), + [anon_sym_STAR_STAR2] = ACTIONS(2836), + [anon_sym_PLUS_PLUS2] = ACTIONS(2836), + [anon_sym_SLASH2] = ACTIONS(2830), + [anon_sym_mod2] = ACTIONS(2838), + [anon_sym_SLASH_SLASH2] = ACTIONS(2838), + [anon_sym_PLUS2] = ACTIONS(2840), + [anon_sym_bit_DASHshl2] = ACTIONS(2842), + [anon_sym_bit_DASHshr2] = ACTIONS(2842), + [anon_sym_bit_DASHand2] = ACTIONS(2844), + [anon_sym_bit_DASHxor2] = ACTIONS(2846), + [anon_sym_bit_DASHor2] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2786), + [anon_sym_out_GT] = ACTIONS(2786), + [anon_sym_e_GT] = ACTIONS(2786), + [anon_sym_o_GT] = ACTIONS(2786), + [anon_sym_err_PLUSout_GT] = ACTIONS(2786), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2786), + [anon_sym_o_PLUSe_GT] = ACTIONS(2786), + [anon_sym_e_PLUSo_GT] = ACTIONS(2786), + [anon_sym_err_GT_GT] = ACTIONS(2784), + [anon_sym_out_GT_GT] = ACTIONS(2784), + [anon_sym_e_GT_GT] = ACTIONS(2784), + [anon_sym_o_GT_GT] = ACTIONS(2784), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2784), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2784), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2784), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2784), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1171)] = { - [aux_sym__repeat_newline] = STATE(1179), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1171), - [anon_sym_in] = ACTIONS(2720), - [sym__newline] = ACTIONS(2804), - [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(2809), - [anon_sym_STAR2] = ACTIONS(2811), - [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(2815), - [anon_sym_PLUS_PLUS2] = ACTIONS(2815), - [anon_sym_SLASH2] = ACTIONS(2811), - [anon_sym_mod2] = ACTIONS(2817), - [anon_sym_SLASH_SLASH2] = ACTIONS(2817), - [anon_sym_PLUS2] = ACTIONS(2819), - [anon_sym_bit_DASHshl2] = ACTIONS(2821), - [anon_sym_bit_DASHshr2] = ACTIONS(2821), - [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(2810), + [sym__newline] = ACTIONS(2810), + [anon_sym_SEMI] = ACTIONS(2810), + [anon_sym_PIPE] = ACTIONS(2810), + [anon_sym_err_GT_PIPE] = ACTIONS(2810), + [anon_sym_out_GT_PIPE] = ACTIONS(2810), + [anon_sym_e_GT_PIPE] = ACTIONS(2810), + [anon_sym_o_GT_PIPE] = ACTIONS(2810), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2810), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2810), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2810), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2810), + [anon_sym_RPAREN] = ACTIONS(2810), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2810), + [anon_sym_STAR2] = ACTIONS(2830), + [anon_sym_and2] = ACTIONS(2810), + [anon_sym_xor2] = ACTIONS(2810), + [anon_sym_or2] = ACTIONS(2810), + [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(2810), + [anon_sym_BANG_EQ2] = ACTIONS(2810), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2810), + [anon_sym_GT_EQ2] = ACTIONS(2810), + [anon_sym_EQ_TILDE2] = ACTIONS(2810), + [anon_sym_BANG_TILDE2] = ACTIONS(2810), + [anon_sym_like2] = ACTIONS(2810), + [anon_sym_not_DASHlike2] = ACTIONS(2810), + [anon_sym_STAR_STAR2] = ACTIONS(2836), + [anon_sym_PLUS_PLUS2] = ACTIONS(2836), + [anon_sym_SLASH2] = ACTIONS(2830), + [anon_sym_mod2] = ACTIONS(2838), + [anon_sym_SLASH_SLASH2] = ACTIONS(2838), + [anon_sym_PLUS2] = ACTIONS(2812), + [anon_sym_bit_DASHshl2] = ACTIONS(2810), + [anon_sym_bit_DASHshr2] = ACTIONS(2810), + [anon_sym_bit_DASHand2] = ACTIONS(2810), + [anon_sym_bit_DASHxor2] = ACTIONS(2810), + [anon_sym_bit_DASHor2] = ACTIONS(2810), + [anon_sym_err_GT] = ACTIONS(2812), + [anon_sym_out_GT] = ACTIONS(2812), + [anon_sym_e_GT] = ACTIONS(2812), + [anon_sym_o_GT] = ACTIONS(2812), + [anon_sym_err_PLUSout_GT] = ACTIONS(2812), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2812), + [anon_sym_o_PLUSe_GT] = ACTIONS(2812), + [anon_sym_e_PLUSo_GT] = ACTIONS(2812), + [anon_sym_err_GT_GT] = ACTIONS(2810), + [anon_sym_out_GT_GT] = ACTIONS(2810), + [anon_sym_e_GT_GT] = ACTIONS(2810), + [anon_sym_o_GT_GT] = ACTIONS(2810), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2810), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2810), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2810), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2810), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1172)] = { - [aux_sym__repeat_newline] = STATE(1224), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1172), - [anon_sym_in] = ACTIONS(2895), - [sym__newline] = ACTIONS(2831), - [anon_sym_SEMI] = ACTIONS(2730), - [anon_sym_PIPE] = ACTIONS(2730), - [anon_sym_err_GT_PIPE] = ACTIONS(2730), - [anon_sym_out_GT_PIPE] = ACTIONS(2730), - [anon_sym_e_GT_PIPE] = ACTIONS(2730), - [anon_sym_o_GT_PIPE] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2730), - [anon_sym_RPAREN] = ACTIONS(2730), - [anon_sym_GT2] = ACTIONS(2807), - [anon_sym_DASH2] = ACTIONS(2809), - [anon_sym_STAR2] = ACTIONS(2811), - [anon_sym_and2] = ACTIONS(2730), - [anon_sym_xor2] = ACTIONS(2730), - [anon_sym_or2] = ACTIONS(2730), - [anon_sym_not_DASHin2] = ACTIONS(2895), - [anon_sym_has2] = ACTIONS(2895), - [anon_sym_not_DASHhas2] = ACTIONS(2895), - [anon_sym_starts_DASHwith2] = ACTIONS(2895), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2895), - [anon_sym_ends_DASHwith2] = ACTIONS(2895), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2895), - [anon_sym_EQ_EQ2] = ACTIONS(2813), - [anon_sym_BANG_EQ2] = ACTIONS(2813), - [anon_sym_LT2] = ACTIONS(2807), - [anon_sym_LT_EQ2] = ACTIONS(2813), - [anon_sym_GT_EQ2] = ACTIONS(2813), - [anon_sym_EQ_TILDE2] = ACTIONS(2897), - [anon_sym_BANG_TILDE2] = ACTIONS(2897), - [anon_sym_like2] = ACTIONS(2897), - [anon_sym_not_DASHlike2] = ACTIONS(2897), - [anon_sym_STAR_STAR2] = ACTIONS(2815), - [anon_sym_PLUS_PLUS2] = ACTIONS(2815), - [anon_sym_SLASH2] = ACTIONS(2811), - [anon_sym_mod2] = ACTIONS(2817), - [anon_sym_SLASH_SLASH2] = ACTIONS(2817), - [anon_sym_PLUS2] = ACTIONS(2819), - [anon_sym_bit_DASHshl2] = ACTIONS(2821), - [anon_sym_bit_DASHshr2] = ACTIONS(2821), - [anon_sym_bit_DASHand2] = ACTIONS(2899), - [anon_sym_bit_DASHxor2] = ACTIONS(2730), - [anon_sym_bit_DASHor2] = ACTIONS(2730), - [anon_sym_err_GT] = ACTIONS(2732), - [anon_sym_out_GT] = ACTIONS(2732), - [anon_sym_e_GT] = ACTIONS(2732), - [anon_sym_o_GT] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT] = ACTIONS(2732), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), + [anon_sym_in] = ACTIONS(2794), + [sym__newline] = ACTIONS(2794), + [anon_sym_SEMI] = ACTIONS(2794), + [anon_sym_PIPE] = ACTIONS(2794), + [anon_sym_err_GT_PIPE] = ACTIONS(2794), + [anon_sym_out_GT_PIPE] = ACTIONS(2794), + [anon_sym_e_GT_PIPE] = ACTIONS(2794), + [anon_sym_o_GT_PIPE] = ACTIONS(2794), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2794), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2794), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2794), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2794), + [anon_sym_RPAREN] = ACTIONS(2794), + [anon_sym_GT2] = ACTIONS(2796), + [anon_sym_DASH2] = ACTIONS(2828), + [anon_sym_STAR2] = ACTIONS(2830), + [anon_sym_and2] = ACTIONS(2794), + [anon_sym_xor2] = ACTIONS(2794), + [anon_sym_or2] = ACTIONS(2794), + [anon_sym_not_DASHin2] = ACTIONS(2794), + [anon_sym_has2] = ACTIONS(2794), + [anon_sym_not_DASHhas2] = ACTIONS(2794), + [anon_sym_starts_DASHwith2] = ACTIONS(2794), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2794), + [anon_sym_ends_DASHwith2] = ACTIONS(2794), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2794), + [anon_sym_EQ_EQ2] = ACTIONS(2794), + [anon_sym_BANG_EQ2] = ACTIONS(2794), + [anon_sym_LT2] = ACTIONS(2796), + [anon_sym_LT_EQ2] = ACTIONS(2794), + [anon_sym_GT_EQ2] = ACTIONS(2794), + [anon_sym_EQ_TILDE2] = ACTIONS(2794), + [anon_sym_BANG_TILDE2] = ACTIONS(2794), + [anon_sym_like2] = ACTIONS(2794), + [anon_sym_not_DASHlike2] = ACTIONS(2794), + [anon_sym_STAR_STAR2] = ACTIONS(2836), + [anon_sym_PLUS_PLUS2] = ACTIONS(2836), + [anon_sym_SLASH2] = ACTIONS(2830), + [anon_sym_mod2] = ACTIONS(2838), + [anon_sym_SLASH_SLASH2] = ACTIONS(2838), + [anon_sym_PLUS2] = ACTIONS(2840), + [anon_sym_bit_DASHshl2] = ACTIONS(2842), + [anon_sym_bit_DASHshr2] = ACTIONS(2842), + [anon_sym_bit_DASHand2] = ACTIONS(2794), + [anon_sym_bit_DASHxor2] = ACTIONS(2794), + [anon_sym_bit_DASHor2] = ACTIONS(2794), + [anon_sym_err_GT] = ACTIONS(2796), + [anon_sym_out_GT] = ACTIONS(2796), + [anon_sym_e_GT] = ACTIONS(2796), + [anon_sym_o_GT] = ACTIONS(2796), + [anon_sym_err_PLUSout_GT] = ACTIONS(2796), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2796), + [anon_sym_o_PLUSe_GT] = ACTIONS(2796), + [anon_sym_e_PLUSo_GT] = ACTIONS(2796), + [anon_sym_err_GT_GT] = ACTIONS(2794), + [anon_sym_out_GT_GT] = ACTIONS(2794), + [anon_sym_e_GT_GT] = ACTIONS(2794), + [anon_sym_o_GT_GT] = ACTIONS(2794), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2794), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2794), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2794), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2794), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1173)] = { - [aux_sym__repeat_newline] = STATE(1184), + [aux_sym__repeat_newline] = STATE(1251), [sym_comment] = STATE(1173), - [anon_sym_in] = ACTIONS(2754), - [sym__newline] = ACTIONS(2860), - [anon_sym_SEMI] = ACTIONS(2754), - [anon_sym_PIPE] = ACTIONS(2754), - [anon_sym_err_GT_PIPE] = ACTIONS(2754), - [anon_sym_out_GT_PIPE] = ACTIONS(2754), - [anon_sym_e_GT_PIPE] = ACTIONS(2754), - [anon_sym_o_GT_PIPE] = ACTIONS(2754), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2754), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2754), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2754), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2754), - [anon_sym_RPAREN] = ACTIONS(2754), - [anon_sym_GT2] = ACTIONS(2756), - [anon_sym_DASH2] = ACTIONS(2754), - [anon_sym_STAR2] = ACTIONS(2811), - [anon_sym_and2] = ACTIONS(2754), - [anon_sym_xor2] = ACTIONS(2754), - [anon_sym_or2] = ACTIONS(2754), - [anon_sym_not_DASHin2] = ACTIONS(2754), - [anon_sym_has2] = ACTIONS(2754), - [anon_sym_not_DASHhas2] = ACTIONS(2754), - [anon_sym_starts_DASHwith2] = ACTIONS(2754), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2754), - [anon_sym_ends_DASHwith2] = ACTIONS(2754), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2754), - [anon_sym_EQ_EQ2] = ACTIONS(2754), - [anon_sym_BANG_EQ2] = ACTIONS(2754), - [anon_sym_LT2] = ACTIONS(2756), - [anon_sym_LT_EQ2] = ACTIONS(2754), - [anon_sym_GT_EQ2] = ACTIONS(2754), - [anon_sym_EQ_TILDE2] = ACTIONS(2754), - [anon_sym_BANG_TILDE2] = ACTIONS(2754), - [anon_sym_like2] = ACTIONS(2754), - [anon_sym_not_DASHlike2] = ACTIONS(2754), - [anon_sym_STAR_STAR2] = ACTIONS(2815), - [anon_sym_PLUS_PLUS2] = ACTIONS(2815), - [anon_sym_SLASH2] = ACTIONS(2811), - [anon_sym_mod2] = ACTIONS(2817), - [anon_sym_SLASH_SLASH2] = ACTIONS(2817), - [anon_sym_PLUS2] = ACTIONS(2756), - [anon_sym_bit_DASHshl2] = ACTIONS(2754), - [anon_sym_bit_DASHshr2] = ACTIONS(2754), - [anon_sym_bit_DASHand2] = ACTIONS(2754), - [anon_sym_bit_DASHxor2] = ACTIONS(2754), - [anon_sym_bit_DASHor2] = ACTIONS(2754), - [anon_sym_err_GT] = ACTIONS(2756), - [anon_sym_out_GT] = ACTIONS(2756), - [anon_sym_e_GT] = ACTIONS(2756), - [anon_sym_o_GT] = ACTIONS(2756), - [anon_sym_err_PLUSout_GT] = ACTIONS(2756), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2756), - [anon_sym_o_PLUSe_GT] = ACTIONS(2756), - [anon_sym_e_PLUSo_GT] = ACTIONS(2756), - [anon_sym_err_GT_GT] = ACTIONS(2754), - [anon_sym_out_GT_GT] = ACTIONS(2754), - [anon_sym_e_GT_GT] = ACTIONS(2754), - [anon_sym_o_GT_GT] = ACTIONS(2754), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2754), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2754), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2754), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2754), + [anon_sym_in] = ACTIONS(2806), + [sym__newline] = ACTIONS(2869), + [anon_sym_SEMI] = ACTIONS(2806), + [anon_sym_PIPE] = ACTIONS(2806), + [anon_sym_err_GT_PIPE] = ACTIONS(2806), + [anon_sym_out_GT_PIPE] = ACTIONS(2806), + [anon_sym_e_GT_PIPE] = ACTIONS(2806), + [anon_sym_o_GT_PIPE] = ACTIONS(2806), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2806), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2806), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2806), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2806), + [anon_sym_RPAREN] = ACTIONS(2806), + [anon_sym_GT2] = ACTIONS(2808), + [anon_sym_DASH2] = ACTIONS(2806), + [anon_sym_STAR2] = ACTIONS(2808), + [anon_sym_and2] = ACTIONS(2806), + [anon_sym_xor2] = ACTIONS(2806), + [anon_sym_or2] = ACTIONS(2806), + [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(2806), + [anon_sym_BANG_EQ2] = ACTIONS(2806), + [anon_sym_LT2] = ACTIONS(2808), + [anon_sym_LT_EQ2] = ACTIONS(2806), + [anon_sym_GT_EQ2] = ACTIONS(2806), + [anon_sym_EQ_TILDE2] = ACTIONS(2806), + [anon_sym_BANG_TILDE2] = ACTIONS(2806), + [anon_sym_like2] = ACTIONS(2806), + [anon_sym_not_DASHlike2] = ACTIONS(2806), + [anon_sym_STAR_STAR2] = ACTIONS(2861), + [anon_sym_PLUS_PLUS2] = ACTIONS(2861), + [anon_sym_SLASH2] = ACTIONS(2808), + [anon_sym_mod2] = ACTIONS(2806), + [anon_sym_SLASH_SLASH2] = ACTIONS(2806), + [anon_sym_PLUS2] = ACTIONS(2808), + [anon_sym_bit_DASHshl2] = ACTIONS(2806), + [anon_sym_bit_DASHshr2] = ACTIONS(2806), + [anon_sym_bit_DASHand2] = ACTIONS(2806), + [anon_sym_bit_DASHxor2] = ACTIONS(2806), + [anon_sym_bit_DASHor2] = ACTIONS(2806), + [anon_sym_err_GT] = ACTIONS(2808), + [anon_sym_out_GT] = ACTIONS(2808), + [anon_sym_e_GT] = ACTIONS(2808), + [anon_sym_o_GT] = ACTIONS(2808), + [anon_sym_err_PLUSout_GT] = ACTIONS(2808), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2808), + [anon_sym_o_PLUSe_GT] = ACTIONS(2808), + [anon_sym_e_PLUSo_GT] = ACTIONS(2808), + [anon_sym_err_GT_GT] = ACTIONS(2806), + [anon_sym_out_GT_GT] = ACTIONS(2806), + [anon_sym_e_GT_GT] = ACTIONS(2806), + [anon_sym_o_GT_GT] = ACTIONS(2806), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2806), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2806), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2806), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2806), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1174)] = { - [aux_sym__repeat_newline] = STATE(1228), + [aux_sym__repeat_newline] = STATE(1176), [sym_comment] = STATE(1174), - [anon_sym_in] = ACTIONS(2895), - [sym__newline] = ACTIONS(2831), - [anon_sym_SEMI] = ACTIONS(2730), - [anon_sym_PIPE] = ACTIONS(2730), - [anon_sym_err_GT_PIPE] = ACTIONS(2730), - [anon_sym_out_GT_PIPE] = ACTIONS(2730), - [anon_sym_e_GT_PIPE] = ACTIONS(2730), - [anon_sym_o_GT_PIPE] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2730), - [anon_sym_RPAREN] = ACTIONS(2730), - [anon_sym_GT2] = ACTIONS(2807), - [anon_sym_DASH2] = ACTIONS(2809), - [anon_sym_STAR2] = ACTIONS(2811), - [anon_sym_and2] = ACTIONS(2730), - [anon_sym_xor2] = ACTIONS(2730), - [anon_sym_or2] = ACTIONS(2730), - [anon_sym_not_DASHin2] = ACTIONS(2895), - [anon_sym_has2] = ACTIONS(2895), - [anon_sym_not_DASHhas2] = ACTIONS(2895), - [anon_sym_starts_DASHwith2] = ACTIONS(2895), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2895), - [anon_sym_ends_DASHwith2] = ACTIONS(2895), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2895), - [anon_sym_EQ_EQ2] = ACTIONS(2813), - [anon_sym_BANG_EQ2] = ACTIONS(2813), - [anon_sym_LT2] = ACTIONS(2807), - [anon_sym_LT_EQ2] = ACTIONS(2813), - [anon_sym_GT_EQ2] = ACTIONS(2813), - [anon_sym_EQ_TILDE2] = ACTIONS(2897), - [anon_sym_BANG_TILDE2] = ACTIONS(2897), - [anon_sym_like2] = ACTIONS(2897), - [anon_sym_not_DASHlike2] = ACTIONS(2897), - [anon_sym_STAR_STAR2] = ACTIONS(2815), - [anon_sym_PLUS_PLUS2] = ACTIONS(2815), - [anon_sym_SLASH2] = ACTIONS(2811), - [anon_sym_mod2] = ACTIONS(2817), - [anon_sym_SLASH_SLASH2] = ACTIONS(2817), - [anon_sym_PLUS2] = ACTIONS(2819), - [anon_sym_bit_DASHshl2] = ACTIONS(2821), - [anon_sym_bit_DASHshr2] = ACTIONS(2821), - [anon_sym_bit_DASHand2] = ACTIONS(2899), - [anon_sym_bit_DASHxor2] = ACTIONS(2901), - [anon_sym_bit_DASHor2] = ACTIONS(2730), - [anon_sym_err_GT] = ACTIONS(2732), - [anon_sym_out_GT] = ACTIONS(2732), - [anon_sym_e_GT] = ACTIONS(2732), - [anon_sym_o_GT] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT] = ACTIONS(2732), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), + [anon_sym_in] = ACTIONS(2776), + [sym__newline] = ACTIONS(2887), + [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(2861), + [anon_sym_PLUS_PLUS2] = ACTIONS(2861), + [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(1175)] = { - [aux_sym__repeat_newline] = STATE(527), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1175), - [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(2913), - [anon_sym_STAR2] = ACTIONS(2915), - [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(2919), - [anon_sym_PLUS_PLUS2] = ACTIONS(2919), - [anon_sym_SLASH2] = ACTIONS(2915), - [anon_sym_mod2] = ACTIONS(2921), - [anon_sym_SLASH_SLASH2] = ACTIONS(2921), - [anon_sym_PLUS2] = ACTIONS(2923), - [anon_sym_bit_DASHshl2] = ACTIONS(2925), - [anon_sym_bit_DASHshr2] = ACTIONS(2925), - [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(2824), + [sym__newline] = ACTIONS(2784), + [anon_sym_SEMI] = ACTIONS(2784), + [anon_sym_PIPE] = ACTIONS(2784), + [anon_sym_err_GT_PIPE] = ACTIONS(2784), + [anon_sym_out_GT_PIPE] = ACTIONS(2784), + [anon_sym_e_GT_PIPE] = ACTIONS(2784), + [anon_sym_o_GT_PIPE] = ACTIONS(2784), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2784), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2784), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2784), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2784), + [anon_sym_RPAREN] = ACTIONS(2784), + [anon_sym_GT2] = ACTIONS(2826), + [anon_sym_DASH2] = ACTIONS(2828), + [anon_sym_STAR2] = ACTIONS(2830), + [anon_sym_and2] = ACTIONS(2906), + [anon_sym_xor2] = ACTIONS(2784), + [anon_sym_or2] = ACTIONS(2784), + [anon_sym_not_DASHin2] = ACTIONS(2824), + [anon_sym_has2] = ACTIONS(2824), + [anon_sym_not_DASHhas2] = ACTIONS(2824), + [anon_sym_starts_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2824), + [anon_sym_ends_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2824), + [anon_sym_EQ_EQ2] = ACTIONS(2832), + [anon_sym_BANG_EQ2] = ACTIONS(2832), + [anon_sym_LT2] = ACTIONS(2826), + [anon_sym_LT_EQ2] = ACTIONS(2832), + [anon_sym_GT_EQ2] = ACTIONS(2832), + [anon_sym_EQ_TILDE2] = ACTIONS(2834), + [anon_sym_BANG_TILDE2] = ACTIONS(2834), + [anon_sym_like2] = ACTIONS(2834), + [anon_sym_not_DASHlike2] = ACTIONS(2834), + [anon_sym_STAR_STAR2] = ACTIONS(2836), + [anon_sym_PLUS_PLUS2] = ACTIONS(2836), + [anon_sym_SLASH2] = ACTIONS(2830), + [anon_sym_mod2] = ACTIONS(2838), + [anon_sym_SLASH_SLASH2] = ACTIONS(2838), + [anon_sym_PLUS2] = ACTIONS(2840), + [anon_sym_bit_DASHshl2] = ACTIONS(2842), + [anon_sym_bit_DASHshr2] = ACTIONS(2842), + [anon_sym_bit_DASHand2] = ACTIONS(2844), + [anon_sym_bit_DASHxor2] = ACTIONS(2846), + [anon_sym_bit_DASHor2] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2786), + [anon_sym_out_GT] = ACTIONS(2786), + [anon_sym_e_GT] = ACTIONS(2786), + [anon_sym_o_GT] = ACTIONS(2786), + [anon_sym_err_PLUSout_GT] = ACTIONS(2786), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2786), + [anon_sym_o_PLUSe_GT] = ACTIONS(2786), + [anon_sym_e_PLUSo_GT] = ACTIONS(2786), + [anon_sym_err_GT_GT] = ACTIONS(2784), + [anon_sym_out_GT_GT] = ACTIONS(2784), + [anon_sym_e_GT_GT] = ACTIONS(2784), + [anon_sym_o_GT_GT] = ACTIONS(2784), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2784), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2784), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2784), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2784), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1176)] = { + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1176), - [anon_sym_in] = ACTIONS(2298), - [sym__newline] = ACTIONS(2306), - [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(2300), - [anon_sym_DASH2] = ACTIONS(2298), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2300), - [anon_sym_and2] = ACTIONS(2298), - [anon_sym_xor2] = ACTIONS(2298), - [anon_sym_or2] = ACTIONS(2298), - [anon_sym_not_DASHin2] = ACTIONS(2298), - [anon_sym_has2] = ACTIONS(2298), - [anon_sym_not_DASHhas2] = ACTIONS(2298), - [anon_sym_starts_DASHwith2] = ACTIONS(2298), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2298), - [anon_sym_ends_DASHwith2] = ACTIONS(2298), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2298), - [anon_sym_EQ_EQ2] = ACTIONS(2298), - [anon_sym_BANG_EQ2] = ACTIONS(2298), - [anon_sym_LT2] = ACTIONS(2300), - [anon_sym_LT_EQ2] = ACTIONS(2298), - [anon_sym_GT_EQ2] = ACTIONS(2298), - [anon_sym_EQ_TILDE2] = ACTIONS(2298), - [anon_sym_BANG_TILDE2] = ACTIONS(2298), - [anon_sym_like2] = ACTIONS(2298), - [anon_sym_not_DASHlike2] = ACTIONS(2298), - [anon_sym_STAR_STAR2] = ACTIONS(2298), - [anon_sym_PLUS_PLUS2] = ACTIONS(2298), - [anon_sym_SLASH2] = ACTIONS(2300), - [anon_sym_mod2] = ACTIONS(2298), - [anon_sym_SLASH_SLASH2] = ACTIONS(2298), - [anon_sym_PLUS2] = ACTIONS(2300), - [anon_sym_bit_DASHshl2] = ACTIONS(2298), - [anon_sym_bit_DASHshr2] = ACTIONS(2298), - [anon_sym_bit_DASHand2] = ACTIONS(2298), - [anon_sym_bit_DASHxor2] = ACTIONS(2298), - [anon_sym_bit_DASHor2] = ACTIONS(2298), - [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(2810), + [sym__newline] = ACTIONS(2810), + [anon_sym_SEMI] = ACTIONS(2810), + [anon_sym_PIPE] = ACTIONS(2810), + [anon_sym_err_GT_PIPE] = ACTIONS(2810), + [anon_sym_out_GT_PIPE] = ACTIONS(2810), + [anon_sym_e_GT_PIPE] = ACTIONS(2810), + [anon_sym_o_GT_PIPE] = ACTIONS(2810), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2810), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2810), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2810), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2810), + [anon_sym_RPAREN] = ACTIONS(2810), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2810), + [anon_sym_STAR2] = ACTIONS(2812), + [anon_sym_and2] = ACTIONS(2810), + [anon_sym_xor2] = ACTIONS(2810), + [anon_sym_or2] = ACTIONS(2810), + [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(2810), + [anon_sym_BANG_EQ2] = ACTIONS(2810), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2810), + [anon_sym_GT_EQ2] = ACTIONS(2810), + [anon_sym_EQ_TILDE2] = ACTIONS(2810), + [anon_sym_BANG_TILDE2] = ACTIONS(2810), + [anon_sym_like2] = ACTIONS(2810), + [anon_sym_not_DASHlike2] = ACTIONS(2810), + [anon_sym_STAR_STAR2] = ACTIONS(2836), + [anon_sym_PLUS_PLUS2] = ACTIONS(2836), + [anon_sym_SLASH2] = ACTIONS(2812), + [anon_sym_mod2] = ACTIONS(2810), + [anon_sym_SLASH_SLASH2] = ACTIONS(2810), + [anon_sym_PLUS2] = ACTIONS(2812), + [anon_sym_bit_DASHshl2] = ACTIONS(2810), + [anon_sym_bit_DASHshr2] = ACTIONS(2810), + [anon_sym_bit_DASHand2] = ACTIONS(2810), + [anon_sym_bit_DASHxor2] = ACTIONS(2810), + [anon_sym_bit_DASHor2] = ACTIONS(2810), + [anon_sym_err_GT] = ACTIONS(2812), + [anon_sym_out_GT] = ACTIONS(2812), + [anon_sym_e_GT] = ACTIONS(2812), + [anon_sym_o_GT] = ACTIONS(2812), + [anon_sym_err_PLUSout_GT] = ACTIONS(2812), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2812), + [anon_sym_o_PLUSe_GT] = ACTIONS(2812), + [anon_sym_e_PLUSo_GT] = ACTIONS(2812), + [anon_sym_err_GT_GT] = ACTIONS(2810), + [anon_sym_out_GT_GT] = ACTIONS(2810), + [anon_sym_e_GT_GT] = ACTIONS(2810), + [anon_sym_o_GT_GT] = ACTIONS(2810), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2810), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2810), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2810), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2810), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1177)] = { - [aux_sym__repeat_newline] = STATE(1215), + [aux_sym__repeat_newline] = STATE(1224), [sym_comment] = STATE(1177), - [anon_sym_in] = ACTIONS(2754), - [sym__newline] = ACTIONS(2860), - [anon_sym_SEMI] = ACTIONS(2754), - [anon_sym_PIPE] = ACTIONS(2754), - [anon_sym_err_GT_PIPE] = ACTIONS(2754), - [anon_sym_out_GT_PIPE] = ACTIONS(2754), - [anon_sym_e_GT_PIPE] = ACTIONS(2754), - [anon_sym_o_GT_PIPE] = ACTIONS(2754), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2754), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2754), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2754), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2754), - [anon_sym_RPAREN] = ACTIONS(2754), - [anon_sym_GT2] = ACTIONS(2756), - [anon_sym_DASH2] = ACTIONS(2754), - [anon_sym_STAR2] = ACTIONS(2756), - [anon_sym_and2] = ACTIONS(2754), - [anon_sym_xor2] = ACTIONS(2754), - [anon_sym_or2] = ACTIONS(2754), - [anon_sym_not_DASHin2] = ACTIONS(2754), - [anon_sym_has2] = ACTIONS(2754), - [anon_sym_not_DASHhas2] = ACTIONS(2754), - [anon_sym_starts_DASHwith2] = ACTIONS(2754), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2754), - [anon_sym_ends_DASHwith2] = ACTIONS(2754), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2754), - [anon_sym_EQ_EQ2] = ACTIONS(2754), - [anon_sym_BANG_EQ2] = ACTIONS(2754), - [anon_sym_LT2] = ACTIONS(2756), - [anon_sym_LT_EQ2] = ACTIONS(2754), - [anon_sym_GT_EQ2] = ACTIONS(2754), - [anon_sym_EQ_TILDE2] = ACTIONS(2754), - [anon_sym_BANG_TILDE2] = ACTIONS(2754), - [anon_sym_like2] = ACTIONS(2754), - [anon_sym_not_DASHlike2] = ACTIONS(2754), - [anon_sym_STAR_STAR2] = ACTIONS(2815), - [anon_sym_PLUS_PLUS2] = ACTIONS(2815), - [anon_sym_SLASH2] = ACTIONS(2756), - [anon_sym_mod2] = ACTIONS(2754), - [anon_sym_SLASH_SLASH2] = ACTIONS(2754), - [anon_sym_PLUS2] = ACTIONS(2756), - [anon_sym_bit_DASHshl2] = ACTIONS(2754), - [anon_sym_bit_DASHshr2] = ACTIONS(2754), - [anon_sym_bit_DASHand2] = ACTIONS(2754), - [anon_sym_bit_DASHxor2] = ACTIONS(2754), - [anon_sym_bit_DASHor2] = ACTIONS(2754), - [anon_sym_err_GT] = ACTIONS(2756), - [anon_sym_out_GT] = ACTIONS(2756), - [anon_sym_e_GT] = ACTIONS(2756), - [anon_sym_o_GT] = ACTIONS(2756), - [anon_sym_err_PLUSout_GT] = ACTIONS(2756), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2756), - [anon_sym_o_PLUSe_GT] = ACTIONS(2756), - [anon_sym_e_PLUSo_GT] = ACTIONS(2756), - [anon_sym_err_GT_GT] = ACTIONS(2754), - [anon_sym_out_GT_GT] = ACTIONS(2754), - [anon_sym_e_GT_GT] = ACTIONS(2754), - [anon_sym_o_GT_GT] = ACTIONS(2754), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2754), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2754), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2754), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2754), + [anon_sym_in] = ACTIONS(2872), + [sym__newline] = ACTIONS(2887), + [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(2853), + [anon_sym_DASH2] = ACTIONS(2855), + [anon_sym_STAR2] = ACTIONS(2857), + [anon_sym_and2] = ACTIONS(2776), + [anon_sym_xor2] = ACTIONS(2776), + [anon_sym_or2] = ACTIONS(2776), + [anon_sym_not_DASHin2] = ACTIONS(2872), + [anon_sym_has2] = ACTIONS(2872), + [anon_sym_not_DASHhas2] = ACTIONS(2872), + [anon_sym_starts_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2872), + [anon_sym_ends_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2872), + [anon_sym_EQ_EQ2] = ACTIONS(2859), + [anon_sym_BANG_EQ2] = ACTIONS(2859), + [anon_sym_LT2] = ACTIONS(2853), + [anon_sym_LT_EQ2] = ACTIONS(2859), + [anon_sym_GT_EQ2] = ACTIONS(2859), + [anon_sym_EQ_TILDE2] = ACTIONS(2879), + [anon_sym_BANG_TILDE2] = ACTIONS(2879), + [anon_sym_like2] = ACTIONS(2879), + [anon_sym_not_DASHlike2] = ACTIONS(2879), + [anon_sym_STAR_STAR2] = ACTIONS(2861), + [anon_sym_PLUS_PLUS2] = ACTIONS(2861), + [anon_sym_SLASH2] = ACTIONS(2857), + [anon_sym_mod2] = ACTIONS(2863), + [anon_sym_SLASH_SLASH2] = ACTIONS(2863), + [anon_sym_PLUS2] = ACTIONS(2865), + [anon_sym_bit_DASHshl2] = ACTIONS(2867), + [anon_sym_bit_DASHshr2] = ACTIONS(2867), + [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(1178)] = { - [aux_sym__repeat_newline] = STATE(527), + [aux_sym__repeat_newline] = STATE(1253), [sym_comment] = STATE(1178), - [anon_sym_in] = ACTIONS(2738), - [sym__newline] = ACTIONS(2738), - [anon_sym_SEMI] = ACTIONS(2738), - [anon_sym_PIPE] = ACTIONS(2738), - [anon_sym_err_GT_PIPE] = ACTIONS(2738), - [anon_sym_out_GT_PIPE] = ACTIONS(2738), - [anon_sym_e_GT_PIPE] = ACTIONS(2738), - [anon_sym_o_GT_PIPE] = ACTIONS(2738), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2738), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2738), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2738), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2738), - [anon_sym_RPAREN] = ACTIONS(2738), - [anon_sym_GT2] = ACTIONS(2911), - [anon_sym_DASH2] = ACTIONS(2913), - [anon_sym_STAR2] = ACTIONS(2915), - [anon_sym_and2] = ACTIONS(2738), - [anon_sym_xor2] = ACTIONS(2738), - [anon_sym_or2] = ACTIONS(2738), - [anon_sym_not_DASHin2] = ACTIONS(2738), - [anon_sym_has2] = ACTIONS(2738), - [anon_sym_not_DASHhas2] = ACTIONS(2738), - [anon_sym_starts_DASHwith2] = ACTIONS(2738), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2738), - [anon_sym_ends_DASHwith2] = ACTIONS(2738), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2738), - [anon_sym_EQ_EQ2] = ACTIONS(2917), - [anon_sym_BANG_EQ2] = ACTIONS(2917), - [anon_sym_LT2] = ACTIONS(2911), - [anon_sym_LT_EQ2] = ACTIONS(2917), - [anon_sym_GT_EQ2] = ACTIONS(2917), - [anon_sym_EQ_TILDE2] = ACTIONS(2738), - [anon_sym_BANG_TILDE2] = ACTIONS(2738), - [anon_sym_like2] = ACTIONS(2738), - [anon_sym_not_DASHlike2] = ACTIONS(2738), - [anon_sym_STAR_STAR2] = ACTIONS(2919), - [anon_sym_PLUS_PLUS2] = ACTIONS(2919), - [anon_sym_SLASH2] = ACTIONS(2915), - [anon_sym_mod2] = ACTIONS(2921), - [anon_sym_SLASH_SLASH2] = ACTIONS(2921), - [anon_sym_PLUS2] = ACTIONS(2923), - [anon_sym_bit_DASHshl2] = ACTIONS(2925), - [anon_sym_bit_DASHshr2] = ACTIONS(2925), - [anon_sym_bit_DASHand2] = ACTIONS(2738), - [anon_sym_bit_DASHxor2] = ACTIONS(2738), - [anon_sym_bit_DASHor2] = ACTIONS(2738), - [anon_sym_err_GT] = ACTIONS(2740), - [anon_sym_out_GT] = ACTIONS(2740), - [anon_sym_e_GT] = ACTIONS(2740), - [anon_sym_o_GT] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT] = ACTIONS(2740), - [anon_sym_err_GT_GT] = ACTIONS(2738), - [anon_sym_out_GT_GT] = ACTIONS(2738), - [anon_sym_e_GT_GT] = ACTIONS(2738), - [anon_sym_o_GT_GT] = ACTIONS(2738), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2738), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2738), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2738), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2738), + [anon_sym_in] = ACTIONS(2872), + [sym__newline] = ACTIONS(2869), + [anon_sym_SEMI] = ACTIONS(2806), + [anon_sym_PIPE] = ACTIONS(2806), + [anon_sym_err_GT_PIPE] = ACTIONS(2806), + [anon_sym_out_GT_PIPE] = ACTIONS(2806), + [anon_sym_e_GT_PIPE] = ACTIONS(2806), + [anon_sym_o_GT_PIPE] = ACTIONS(2806), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2806), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2806), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2806), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2806), + [anon_sym_RPAREN] = ACTIONS(2806), + [anon_sym_GT2] = ACTIONS(2853), + [anon_sym_DASH2] = ACTIONS(2855), + [anon_sym_STAR2] = ACTIONS(2857), + [anon_sym_and2] = ACTIONS(2806), + [anon_sym_xor2] = ACTIONS(2806), + [anon_sym_or2] = ACTIONS(2806), + [anon_sym_not_DASHin2] = ACTIONS(2872), + [anon_sym_has2] = ACTIONS(2872), + [anon_sym_not_DASHhas2] = ACTIONS(2872), + [anon_sym_starts_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2872), + [anon_sym_ends_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2872), + [anon_sym_EQ_EQ2] = ACTIONS(2859), + [anon_sym_BANG_EQ2] = ACTIONS(2859), + [anon_sym_LT2] = ACTIONS(2853), + [anon_sym_LT_EQ2] = ACTIONS(2859), + [anon_sym_GT_EQ2] = ACTIONS(2859), + [anon_sym_EQ_TILDE2] = ACTIONS(2879), + [anon_sym_BANG_TILDE2] = ACTIONS(2879), + [anon_sym_like2] = ACTIONS(2879), + [anon_sym_not_DASHlike2] = ACTIONS(2879), + [anon_sym_STAR_STAR2] = ACTIONS(2861), + [anon_sym_PLUS_PLUS2] = ACTIONS(2861), + [anon_sym_SLASH2] = ACTIONS(2857), + [anon_sym_mod2] = ACTIONS(2863), + [anon_sym_SLASH_SLASH2] = ACTIONS(2863), + [anon_sym_PLUS2] = ACTIONS(2865), + [anon_sym_bit_DASHshl2] = ACTIONS(2867), + [anon_sym_bit_DASHshr2] = ACTIONS(2867), + [anon_sym_bit_DASHand2] = ACTIONS(2881), + [anon_sym_bit_DASHxor2] = ACTIONS(2883), + [anon_sym_bit_DASHor2] = ACTIONS(2885), + [anon_sym_err_GT] = ACTIONS(2808), + [anon_sym_out_GT] = ACTIONS(2808), + [anon_sym_e_GT] = ACTIONS(2808), + [anon_sym_o_GT] = ACTIONS(2808), + [anon_sym_err_PLUSout_GT] = ACTIONS(2808), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2808), + [anon_sym_o_PLUSe_GT] = ACTIONS(2808), + [anon_sym_e_PLUSo_GT] = ACTIONS(2808), + [anon_sym_err_GT_GT] = ACTIONS(2806), + [anon_sym_out_GT_GT] = ACTIONS(2806), + [anon_sym_e_GT_GT] = ACTIONS(2806), + [anon_sym_o_GT_GT] = ACTIONS(2806), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2806), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2806), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2806), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2806), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1179)] = { - [aux_sym__repeat_newline] = STATE(527), + [aux_sym__repeat_newline] = STATE(1256), [sym_comment] = STATE(1179), - [anon_sym_in] = ACTIONS(2738), - [sym__newline] = ACTIONS(2738), - [anon_sym_SEMI] = ACTIONS(2738), - [anon_sym_PIPE] = ACTIONS(2738), - [anon_sym_err_GT_PIPE] = ACTIONS(2738), - [anon_sym_out_GT_PIPE] = ACTIONS(2738), - [anon_sym_e_GT_PIPE] = ACTIONS(2738), - [anon_sym_o_GT_PIPE] = ACTIONS(2738), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2738), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2738), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2738), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2738), - [anon_sym_RPAREN] = ACTIONS(2738), - [anon_sym_GT2] = ACTIONS(2740), - [anon_sym_DASH2] = ACTIONS(2913), - [anon_sym_STAR2] = ACTIONS(2915), - [anon_sym_and2] = ACTIONS(2738), - [anon_sym_xor2] = ACTIONS(2738), - [anon_sym_or2] = ACTIONS(2738), - [anon_sym_not_DASHin2] = ACTIONS(2738), - [anon_sym_has2] = ACTIONS(2738), - [anon_sym_not_DASHhas2] = ACTIONS(2738), - [anon_sym_starts_DASHwith2] = ACTIONS(2738), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2738), - [anon_sym_ends_DASHwith2] = ACTIONS(2738), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2738), - [anon_sym_EQ_EQ2] = ACTIONS(2738), - [anon_sym_BANG_EQ2] = ACTIONS(2738), - [anon_sym_LT2] = ACTIONS(2740), - [anon_sym_LT_EQ2] = ACTIONS(2738), - [anon_sym_GT_EQ2] = ACTIONS(2738), - [anon_sym_EQ_TILDE2] = ACTIONS(2738), - [anon_sym_BANG_TILDE2] = ACTIONS(2738), - [anon_sym_like2] = ACTIONS(2738), - [anon_sym_not_DASHlike2] = ACTIONS(2738), - [anon_sym_STAR_STAR2] = ACTIONS(2919), - [anon_sym_PLUS_PLUS2] = ACTIONS(2919), - [anon_sym_SLASH2] = ACTIONS(2915), - [anon_sym_mod2] = ACTIONS(2921), - [anon_sym_SLASH_SLASH2] = ACTIONS(2921), - [anon_sym_PLUS2] = ACTIONS(2923), - [anon_sym_bit_DASHshl2] = ACTIONS(2925), - [anon_sym_bit_DASHshr2] = ACTIONS(2925), - [anon_sym_bit_DASHand2] = ACTIONS(2738), - [anon_sym_bit_DASHxor2] = ACTIONS(2738), - [anon_sym_bit_DASHor2] = ACTIONS(2738), - [anon_sym_err_GT] = ACTIONS(2740), - [anon_sym_out_GT] = ACTIONS(2740), - [anon_sym_e_GT] = ACTIONS(2740), - [anon_sym_o_GT] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT] = ACTIONS(2740), - [anon_sym_err_GT_GT] = ACTIONS(2738), - [anon_sym_out_GT_GT] = ACTIONS(2738), - [anon_sym_e_GT_GT] = ACTIONS(2738), - [anon_sym_o_GT_GT] = ACTIONS(2738), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2738), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2738), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2738), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2738), + [anon_sym_in] = ACTIONS(2798), + [sym__newline] = ACTIONS(2850), + [anon_sym_SEMI] = ACTIONS(2798), + [anon_sym_PIPE] = ACTIONS(2798), + [anon_sym_err_GT_PIPE] = ACTIONS(2798), + [anon_sym_out_GT_PIPE] = ACTIONS(2798), + [anon_sym_e_GT_PIPE] = ACTIONS(2798), + [anon_sym_o_GT_PIPE] = ACTIONS(2798), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2798), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2798), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2798), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2798), + [anon_sym_RPAREN] = ACTIONS(2798), + [anon_sym_GT2] = ACTIONS(2800), + [anon_sym_DASH2] = ACTIONS(2855), + [anon_sym_STAR2] = ACTIONS(2857), + [anon_sym_and2] = ACTIONS(2798), + [anon_sym_xor2] = ACTIONS(2798), + [anon_sym_or2] = ACTIONS(2798), + [anon_sym_not_DASHin2] = ACTIONS(2798), + [anon_sym_has2] = ACTIONS(2798), + [anon_sym_not_DASHhas2] = ACTIONS(2798), + [anon_sym_starts_DASHwith2] = ACTIONS(2798), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2798), + [anon_sym_ends_DASHwith2] = ACTIONS(2798), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2798), + [anon_sym_EQ_EQ2] = ACTIONS(2798), + [anon_sym_BANG_EQ2] = ACTIONS(2798), + [anon_sym_LT2] = ACTIONS(2800), + [anon_sym_LT_EQ2] = ACTIONS(2798), + [anon_sym_GT_EQ2] = ACTIONS(2798), + [anon_sym_EQ_TILDE2] = ACTIONS(2798), + [anon_sym_BANG_TILDE2] = ACTIONS(2798), + [anon_sym_like2] = ACTIONS(2798), + [anon_sym_not_DASHlike2] = ACTIONS(2798), + [anon_sym_STAR_STAR2] = ACTIONS(2861), + [anon_sym_PLUS_PLUS2] = ACTIONS(2861), + [anon_sym_SLASH2] = ACTIONS(2857), + [anon_sym_mod2] = ACTIONS(2863), + [anon_sym_SLASH_SLASH2] = ACTIONS(2863), + [anon_sym_PLUS2] = ACTIONS(2865), + [anon_sym_bit_DASHshl2] = ACTIONS(2798), + [anon_sym_bit_DASHshr2] = ACTIONS(2798), + [anon_sym_bit_DASHand2] = ACTIONS(2798), + [anon_sym_bit_DASHxor2] = ACTIONS(2798), + [anon_sym_bit_DASHor2] = ACTIONS(2798), + [anon_sym_err_GT] = ACTIONS(2800), + [anon_sym_out_GT] = ACTIONS(2800), + [anon_sym_e_GT] = ACTIONS(2800), + [anon_sym_o_GT] = ACTIONS(2800), + [anon_sym_err_PLUSout_GT] = ACTIONS(2800), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2800), + [anon_sym_o_PLUSe_GT] = ACTIONS(2800), + [anon_sym_e_PLUSo_GT] = ACTIONS(2800), + [anon_sym_err_GT_GT] = ACTIONS(2798), + [anon_sym_out_GT_GT] = ACTIONS(2798), + [anon_sym_e_GT_GT] = ACTIONS(2798), + [anon_sym_o_GT_GT] = ACTIONS(2798), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2798), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2798), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2798), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2798), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1180)] = { - [aux_sym__repeat_newline] = STATE(1181), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1180), - [anon_sym_in] = ACTIONS(2720), - [sym__newline] = ACTIONS(2804), - [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(2811), - [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(2815), - [anon_sym_PLUS_PLUS2] = ACTIONS(2815), - [anon_sym_SLASH2] = ACTIONS(2811), - [anon_sym_mod2] = ACTIONS(2817), - [anon_sym_SLASH_SLASH2] = ACTIONS(2817), - [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(2824), + [sym__newline] = ACTIONS(2784), + [anon_sym_SEMI] = ACTIONS(2784), + [anon_sym_PIPE] = ACTIONS(2784), + [anon_sym_err_GT_PIPE] = ACTIONS(2784), + [anon_sym_out_GT_PIPE] = ACTIONS(2784), + [anon_sym_e_GT_PIPE] = ACTIONS(2784), + [anon_sym_o_GT_PIPE] = ACTIONS(2784), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2784), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2784), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2784), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2784), + [anon_sym_RPAREN] = ACTIONS(2784), + [anon_sym_GT2] = ACTIONS(2826), + [anon_sym_DASH2] = ACTIONS(2828), + [anon_sym_STAR2] = ACTIONS(2830), + [anon_sym_and2] = ACTIONS(2906), + [anon_sym_xor2] = ACTIONS(2908), + [anon_sym_or2] = ACTIONS(2784), + [anon_sym_not_DASHin2] = ACTIONS(2824), + [anon_sym_has2] = ACTIONS(2824), + [anon_sym_not_DASHhas2] = ACTIONS(2824), + [anon_sym_starts_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2824), + [anon_sym_ends_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2824), + [anon_sym_EQ_EQ2] = ACTIONS(2832), + [anon_sym_BANG_EQ2] = ACTIONS(2832), + [anon_sym_LT2] = ACTIONS(2826), + [anon_sym_LT_EQ2] = ACTIONS(2832), + [anon_sym_GT_EQ2] = ACTIONS(2832), + [anon_sym_EQ_TILDE2] = ACTIONS(2834), + [anon_sym_BANG_TILDE2] = ACTIONS(2834), + [anon_sym_like2] = ACTIONS(2834), + [anon_sym_not_DASHlike2] = ACTIONS(2834), + [anon_sym_STAR_STAR2] = ACTIONS(2836), + [anon_sym_PLUS_PLUS2] = ACTIONS(2836), + [anon_sym_SLASH2] = ACTIONS(2830), + [anon_sym_mod2] = ACTIONS(2838), + [anon_sym_SLASH_SLASH2] = ACTIONS(2838), + [anon_sym_PLUS2] = ACTIONS(2840), + [anon_sym_bit_DASHshl2] = ACTIONS(2842), + [anon_sym_bit_DASHshr2] = ACTIONS(2842), + [anon_sym_bit_DASHand2] = ACTIONS(2844), + [anon_sym_bit_DASHxor2] = ACTIONS(2846), + [anon_sym_bit_DASHor2] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2786), + [anon_sym_out_GT] = ACTIONS(2786), + [anon_sym_e_GT] = ACTIONS(2786), + [anon_sym_o_GT] = ACTIONS(2786), + [anon_sym_err_PLUSout_GT] = ACTIONS(2786), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2786), + [anon_sym_o_PLUSe_GT] = ACTIONS(2786), + [anon_sym_e_PLUSo_GT] = ACTIONS(2786), + [anon_sym_err_GT_GT] = ACTIONS(2784), + [anon_sym_out_GT_GT] = ACTIONS(2784), + [anon_sym_e_GT_GT] = ACTIONS(2784), + [anon_sym_o_GT_GT] = ACTIONS(2784), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2784), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2784), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2784), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2784), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1181)] = { - [aux_sym__repeat_newline] = STATE(527), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1181), - [anon_sym_in] = ACTIONS(2738), - [sym__newline] = ACTIONS(2738), - [anon_sym_SEMI] = ACTIONS(2738), - [anon_sym_PIPE] = ACTIONS(2738), - [anon_sym_err_GT_PIPE] = ACTIONS(2738), - [anon_sym_out_GT_PIPE] = ACTIONS(2738), - [anon_sym_e_GT_PIPE] = ACTIONS(2738), - [anon_sym_o_GT_PIPE] = ACTIONS(2738), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2738), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2738), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2738), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2738), - [anon_sym_RPAREN] = ACTIONS(2738), - [anon_sym_GT2] = ACTIONS(2740), - [anon_sym_DASH2] = ACTIONS(2738), - [anon_sym_STAR2] = ACTIONS(2915), - [anon_sym_and2] = ACTIONS(2738), - [anon_sym_xor2] = ACTIONS(2738), - [anon_sym_or2] = ACTIONS(2738), - [anon_sym_not_DASHin2] = ACTIONS(2738), - [anon_sym_has2] = ACTIONS(2738), - [anon_sym_not_DASHhas2] = ACTIONS(2738), - [anon_sym_starts_DASHwith2] = ACTIONS(2738), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2738), - [anon_sym_ends_DASHwith2] = ACTIONS(2738), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2738), - [anon_sym_EQ_EQ2] = ACTIONS(2738), - [anon_sym_BANG_EQ2] = ACTIONS(2738), - [anon_sym_LT2] = ACTIONS(2740), - [anon_sym_LT_EQ2] = ACTIONS(2738), - [anon_sym_GT_EQ2] = ACTIONS(2738), - [anon_sym_EQ_TILDE2] = ACTIONS(2738), - [anon_sym_BANG_TILDE2] = ACTIONS(2738), - [anon_sym_like2] = ACTIONS(2738), - [anon_sym_not_DASHlike2] = ACTIONS(2738), - [anon_sym_STAR_STAR2] = ACTIONS(2919), - [anon_sym_PLUS_PLUS2] = ACTIONS(2919), - [anon_sym_SLASH2] = ACTIONS(2915), - [anon_sym_mod2] = ACTIONS(2921), - [anon_sym_SLASH_SLASH2] = ACTIONS(2921), - [anon_sym_PLUS2] = ACTIONS(2740), - [anon_sym_bit_DASHshl2] = ACTIONS(2738), - [anon_sym_bit_DASHshr2] = ACTIONS(2738), - [anon_sym_bit_DASHand2] = ACTIONS(2738), - [anon_sym_bit_DASHxor2] = ACTIONS(2738), - [anon_sym_bit_DASHor2] = ACTIONS(2738), - [anon_sym_err_GT] = ACTIONS(2740), - [anon_sym_out_GT] = ACTIONS(2740), - [anon_sym_e_GT] = ACTIONS(2740), - [anon_sym_o_GT] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT] = ACTIONS(2740), - [anon_sym_err_GT_GT] = ACTIONS(2738), - [anon_sym_out_GT_GT] = ACTIONS(2738), - [anon_sym_e_GT_GT] = ACTIONS(2738), - [anon_sym_o_GT_GT] = ACTIONS(2738), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2738), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2738), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2738), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2738), + [anon_sym_in] = ACTIONS(2824), + [sym__newline] = ACTIONS(2810), + [anon_sym_SEMI] = ACTIONS(2810), + [anon_sym_PIPE] = ACTIONS(2810), + [anon_sym_err_GT_PIPE] = ACTIONS(2810), + [anon_sym_out_GT_PIPE] = ACTIONS(2810), + [anon_sym_e_GT_PIPE] = ACTIONS(2810), + [anon_sym_o_GT_PIPE] = ACTIONS(2810), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2810), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2810), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2810), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2810), + [anon_sym_RPAREN] = ACTIONS(2810), + [anon_sym_GT2] = ACTIONS(2826), + [anon_sym_DASH2] = ACTIONS(2828), + [anon_sym_STAR2] = ACTIONS(2830), + [anon_sym_and2] = ACTIONS(2810), + [anon_sym_xor2] = ACTIONS(2810), + [anon_sym_or2] = ACTIONS(2810), + [anon_sym_not_DASHin2] = ACTIONS(2824), + [anon_sym_has2] = ACTIONS(2824), + [anon_sym_not_DASHhas2] = ACTIONS(2824), + [anon_sym_starts_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2824), + [anon_sym_ends_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2824), + [anon_sym_EQ_EQ2] = ACTIONS(2832), + [anon_sym_BANG_EQ2] = ACTIONS(2832), + [anon_sym_LT2] = ACTIONS(2826), + [anon_sym_LT_EQ2] = ACTIONS(2832), + [anon_sym_GT_EQ2] = ACTIONS(2832), + [anon_sym_EQ_TILDE2] = ACTIONS(2834), + [anon_sym_BANG_TILDE2] = ACTIONS(2834), + [anon_sym_like2] = ACTIONS(2834), + [anon_sym_not_DASHlike2] = ACTIONS(2834), + [anon_sym_STAR_STAR2] = ACTIONS(2836), + [anon_sym_PLUS_PLUS2] = ACTIONS(2836), + [anon_sym_SLASH2] = ACTIONS(2830), + [anon_sym_mod2] = ACTIONS(2838), + [anon_sym_SLASH_SLASH2] = ACTIONS(2838), + [anon_sym_PLUS2] = ACTIONS(2840), + [anon_sym_bit_DASHshl2] = ACTIONS(2842), + [anon_sym_bit_DASHshr2] = ACTIONS(2842), + [anon_sym_bit_DASHand2] = ACTIONS(2844), + [anon_sym_bit_DASHxor2] = ACTIONS(2846), + [anon_sym_bit_DASHor2] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2812), + [anon_sym_out_GT] = ACTIONS(2812), + [anon_sym_e_GT] = ACTIONS(2812), + [anon_sym_o_GT] = ACTIONS(2812), + [anon_sym_err_PLUSout_GT] = ACTIONS(2812), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2812), + [anon_sym_o_PLUSe_GT] = ACTIONS(2812), + [anon_sym_e_PLUSo_GT] = ACTIONS(2812), + [anon_sym_err_GT_GT] = ACTIONS(2810), + [anon_sym_out_GT_GT] = ACTIONS(2810), + [anon_sym_e_GT_GT] = ACTIONS(2810), + [anon_sym_o_GT_GT] = ACTIONS(2810), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2810), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2810), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2810), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2810), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1182)] = { - [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1182), - [anon_sym_in] = ACTIONS(2738), - [sym__newline] = ACTIONS(2738), - [anon_sym_SEMI] = ACTIONS(2738), - [anon_sym_PIPE] = ACTIONS(2738), - [anon_sym_err_GT_PIPE] = ACTIONS(2738), - [anon_sym_out_GT_PIPE] = ACTIONS(2738), - [anon_sym_e_GT_PIPE] = ACTIONS(2738), - [anon_sym_o_GT_PIPE] = ACTIONS(2738), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2738), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2738), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2738), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2738), - [anon_sym_RPAREN] = ACTIONS(2738), - [anon_sym_GT2] = ACTIONS(2740), - [anon_sym_DASH2] = ACTIONS(2738), - [anon_sym_STAR2] = ACTIONS(2740), - [anon_sym_and2] = ACTIONS(2738), - [anon_sym_xor2] = ACTIONS(2738), - [anon_sym_or2] = ACTIONS(2738), - [anon_sym_not_DASHin2] = ACTIONS(2738), - [anon_sym_has2] = ACTIONS(2738), - [anon_sym_not_DASHhas2] = ACTIONS(2738), - [anon_sym_starts_DASHwith2] = ACTIONS(2738), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2738), - [anon_sym_ends_DASHwith2] = ACTIONS(2738), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2738), - [anon_sym_EQ_EQ2] = ACTIONS(2738), - [anon_sym_BANG_EQ2] = ACTIONS(2738), - [anon_sym_LT2] = ACTIONS(2740), - [anon_sym_LT_EQ2] = ACTIONS(2738), - [anon_sym_GT_EQ2] = ACTIONS(2738), - [anon_sym_EQ_TILDE2] = ACTIONS(2738), - [anon_sym_BANG_TILDE2] = ACTIONS(2738), - [anon_sym_like2] = ACTIONS(2738), - [anon_sym_not_DASHlike2] = ACTIONS(2738), - [anon_sym_STAR_STAR2] = ACTIONS(2919), - [anon_sym_PLUS_PLUS2] = ACTIONS(2919), - [anon_sym_SLASH2] = ACTIONS(2740), - [anon_sym_mod2] = ACTIONS(2738), - [anon_sym_SLASH_SLASH2] = ACTIONS(2738), - [anon_sym_PLUS2] = ACTIONS(2740), - [anon_sym_bit_DASHshl2] = ACTIONS(2738), - [anon_sym_bit_DASHshr2] = ACTIONS(2738), - [anon_sym_bit_DASHand2] = ACTIONS(2738), - [anon_sym_bit_DASHxor2] = ACTIONS(2738), - [anon_sym_bit_DASHor2] = ACTIONS(2738), - [anon_sym_err_GT] = ACTIONS(2740), - [anon_sym_out_GT] = ACTIONS(2740), - [anon_sym_e_GT] = ACTIONS(2740), - [anon_sym_o_GT] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT] = ACTIONS(2740), - [anon_sym_err_GT_GT] = ACTIONS(2738), - [anon_sym_out_GT_GT] = ACTIONS(2738), - [anon_sym_e_GT_GT] = ACTIONS(2738), - [anon_sym_o_GT_GT] = ACTIONS(2738), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2738), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2738), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2738), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2738), + [ts_builtin_sym_end] = ACTIONS(2421), + [anon_sym_finally] = ACTIONS(2421), + [anon_sym_in] = ACTIONS(2421), + [sym__newline] = ACTIONS(2421), + [anon_sym_SEMI] = ACTIONS(2421), + [anon_sym_PIPE] = ACTIONS(2421), + [anon_sym_err_GT_PIPE] = ACTIONS(2421), + [anon_sym_out_GT_PIPE] = ACTIONS(2421), + [anon_sym_e_GT_PIPE] = ACTIONS(2421), + [anon_sym_o_GT_PIPE] = ACTIONS(2421), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2421), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2421), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2421), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2421), + [anon_sym_GT2] = ACTIONS(2423), + [anon_sym_DASH2] = ACTIONS(2421), + [anon_sym_STAR2] = ACTIONS(2423), + [anon_sym_and2] = ACTIONS(2421), + [anon_sym_xor2] = ACTIONS(2421), + [anon_sym_or2] = ACTIONS(2421), + [anon_sym_not_DASHin2] = ACTIONS(2421), + [anon_sym_has2] = ACTIONS(2421), + [anon_sym_not_DASHhas2] = ACTIONS(2421), + [anon_sym_starts_DASHwith2] = ACTIONS(2421), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2421), + [anon_sym_ends_DASHwith2] = ACTIONS(2421), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2421), + [anon_sym_EQ_EQ2] = ACTIONS(2421), + [anon_sym_BANG_EQ2] = ACTIONS(2421), + [anon_sym_LT2] = ACTIONS(2423), + [anon_sym_LT_EQ2] = ACTIONS(2421), + [anon_sym_GT_EQ2] = ACTIONS(2421), + [anon_sym_EQ_TILDE2] = ACTIONS(2421), + [anon_sym_BANG_TILDE2] = ACTIONS(2421), + [anon_sym_like2] = ACTIONS(2421), + [anon_sym_not_DASHlike2] = ACTIONS(2421), + [anon_sym_STAR_STAR2] = ACTIONS(2421), + [anon_sym_PLUS_PLUS2] = ACTIONS(2421), + [anon_sym_SLASH2] = ACTIONS(2423), + [anon_sym_mod2] = ACTIONS(2421), + [anon_sym_SLASH_SLASH2] = ACTIONS(2421), + [anon_sym_PLUS2] = ACTIONS(2423), + [anon_sym_bit_DASHshl2] = ACTIONS(2421), + [anon_sym_bit_DASHshr2] = ACTIONS(2421), + [anon_sym_bit_DASHand2] = ACTIONS(2421), + [anon_sym_bit_DASHxor2] = ACTIONS(2421), + [anon_sym_bit_DASHor2] = ACTIONS(2421), + [anon_sym_err_GT] = ACTIONS(2423), + [anon_sym_out_GT] = ACTIONS(2423), + [anon_sym_e_GT] = ACTIONS(2423), + [anon_sym_o_GT] = ACTIONS(2423), + [anon_sym_err_PLUSout_GT] = ACTIONS(2423), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2423), + [anon_sym_o_PLUSe_GT] = ACTIONS(2423), + [anon_sym_e_PLUSo_GT] = ACTIONS(2423), + [anon_sym_err_GT_GT] = ACTIONS(2421), + [anon_sym_out_GT_GT] = ACTIONS(2421), + [anon_sym_e_GT_GT] = ACTIONS(2421), + [anon_sym_o_GT_GT] = ACTIONS(2421), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2421), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2421), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2421), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2421), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1183)] = { - [aux_sym__repeat_newline] = STATE(527), + [aux_sym__repeat_newline] = STATE(1255), [sym_comment] = STATE(1183), - [anon_sym_in] = ACTIONS(2927), - [sym__newline] = ACTIONS(2738), - [anon_sym_SEMI] = ACTIONS(2738), - [anon_sym_PIPE] = ACTIONS(2738), - [anon_sym_err_GT_PIPE] = ACTIONS(2738), - [anon_sym_out_GT_PIPE] = ACTIONS(2738), - [anon_sym_e_GT_PIPE] = ACTIONS(2738), - [anon_sym_o_GT_PIPE] = ACTIONS(2738), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2738), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2738), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2738), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2738), - [anon_sym_RPAREN] = ACTIONS(2738), - [anon_sym_GT2] = ACTIONS(2911), - [anon_sym_DASH2] = ACTIONS(2913), - [anon_sym_STAR2] = ACTIONS(2915), - [anon_sym_and2] = ACTIONS(2738), - [anon_sym_xor2] = ACTIONS(2738), - [anon_sym_or2] = ACTIONS(2738), - [anon_sym_not_DASHin2] = ACTIONS(2927), - [anon_sym_has2] = ACTIONS(2927), - [anon_sym_not_DASHhas2] = ACTIONS(2927), - [anon_sym_starts_DASHwith2] = ACTIONS(2927), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2927), - [anon_sym_ends_DASHwith2] = ACTIONS(2927), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2927), - [anon_sym_EQ_EQ2] = ACTIONS(2917), - [anon_sym_BANG_EQ2] = ACTIONS(2917), - [anon_sym_LT2] = ACTIONS(2911), - [anon_sym_LT_EQ2] = ACTIONS(2917), - [anon_sym_GT_EQ2] = ACTIONS(2917), - [anon_sym_EQ_TILDE2] = ACTIONS(2929), - [anon_sym_BANG_TILDE2] = ACTIONS(2929), - [anon_sym_like2] = ACTIONS(2929), - [anon_sym_not_DASHlike2] = ACTIONS(2929), - [anon_sym_STAR_STAR2] = ACTIONS(2919), - [anon_sym_PLUS_PLUS2] = ACTIONS(2919), - [anon_sym_SLASH2] = ACTIONS(2915), - [anon_sym_mod2] = ACTIONS(2921), - [anon_sym_SLASH_SLASH2] = ACTIONS(2921), - [anon_sym_PLUS2] = ACTIONS(2923), - [anon_sym_bit_DASHshl2] = ACTIONS(2925), - [anon_sym_bit_DASHshr2] = ACTIONS(2925), - [anon_sym_bit_DASHand2] = ACTIONS(2931), - [anon_sym_bit_DASHxor2] = ACTIONS(2933), - [anon_sym_bit_DASHor2] = ACTIONS(2935), - [anon_sym_err_GT] = ACTIONS(2740), - [anon_sym_out_GT] = ACTIONS(2740), - [anon_sym_e_GT] = ACTIONS(2740), - [anon_sym_o_GT] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT] = ACTIONS(2740), - [anon_sym_err_GT_GT] = ACTIONS(2738), - [anon_sym_out_GT_GT] = ACTIONS(2738), - [anon_sym_e_GT_GT] = ACTIONS(2738), - [anon_sym_o_GT_GT] = ACTIONS(2738), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2738), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2738), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2738), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2738), + [anon_sym_in] = ACTIONS(2872), + [sym__newline] = ACTIONS(2869), + [anon_sym_SEMI] = ACTIONS(2806), + [anon_sym_PIPE] = ACTIONS(2806), + [anon_sym_err_GT_PIPE] = ACTIONS(2806), + [anon_sym_out_GT_PIPE] = ACTIONS(2806), + [anon_sym_e_GT_PIPE] = ACTIONS(2806), + [anon_sym_o_GT_PIPE] = ACTIONS(2806), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2806), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2806), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2806), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2806), + [anon_sym_RPAREN] = ACTIONS(2806), + [anon_sym_GT2] = ACTIONS(2853), + [anon_sym_DASH2] = ACTIONS(2855), + [anon_sym_STAR2] = ACTIONS(2857), + [anon_sym_and2] = ACTIONS(2877), + [anon_sym_xor2] = ACTIONS(2806), + [anon_sym_or2] = ACTIONS(2806), + [anon_sym_not_DASHin2] = ACTIONS(2872), + [anon_sym_has2] = ACTIONS(2872), + [anon_sym_not_DASHhas2] = ACTIONS(2872), + [anon_sym_starts_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2872), + [anon_sym_ends_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2872), + [anon_sym_EQ_EQ2] = ACTIONS(2859), + [anon_sym_BANG_EQ2] = ACTIONS(2859), + [anon_sym_LT2] = ACTIONS(2853), + [anon_sym_LT_EQ2] = ACTIONS(2859), + [anon_sym_GT_EQ2] = ACTIONS(2859), + [anon_sym_EQ_TILDE2] = ACTIONS(2879), + [anon_sym_BANG_TILDE2] = ACTIONS(2879), + [anon_sym_like2] = ACTIONS(2879), + [anon_sym_not_DASHlike2] = ACTIONS(2879), + [anon_sym_STAR_STAR2] = ACTIONS(2861), + [anon_sym_PLUS_PLUS2] = ACTIONS(2861), + [anon_sym_SLASH2] = ACTIONS(2857), + [anon_sym_mod2] = ACTIONS(2863), + [anon_sym_SLASH_SLASH2] = ACTIONS(2863), + [anon_sym_PLUS2] = ACTIONS(2865), + [anon_sym_bit_DASHshl2] = ACTIONS(2867), + [anon_sym_bit_DASHshr2] = ACTIONS(2867), + [anon_sym_bit_DASHand2] = ACTIONS(2881), + [anon_sym_bit_DASHxor2] = ACTIONS(2883), + [anon_sym_bit_DASHor2] = ACTIONS(2885), + [anon_sym_err_GT] = ACTIONS(2808), + [anon_sym_out_GT] = ACTIONS(2808), + [anon_sym_e_GT] = ACTIONS(2808), + [anon_sym_o_GT] = ACTIONS(2808), + [anon_sym_err_PLUSout_GT] = ACTIONS(2808), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2808), + [anon_sym_o_PLUSe_GT] = ACTIONS(2808), + [anon_sym_e_PLUSo_GT] = ACTIONS(2808), + [anon_sym_err_GT_GT] = ACTIONS(2806), + [anon_sym_out_GT_GT] = ACTIONS(2806), + [anon_sym_e_GT_GT] = ACTIONS(2806), + [anon_sym_o_GT_GT] = ACTIONS(2806), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2806), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2806), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2806), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2806), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1184)] = { - [aux_sym__repeat_newline] = STATE(527), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1184), - [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_STAR2] = ACTIONS(2915), - [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(2919), - [anon_sym_PLUS_PLUS2] = ACTIONS(2919), - [anon_sym_SLASH2] = ACTIONS(2915), - [anon_sym_mod2] = ACTIONS(2921), - [anon_sym_SLASH_SLASH2] = ACTIONS(2921), - [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(2824), + [sym__newline] = ACTIONS(2784), + [anon_sym_SEMI] = ACTIONS(2784), + [anon_sym_PIPE] = ACTIONS(2784), + [anon_sym_err_GT_PIPE] = ACTIONS(2784), + [anon_sym_out_GT_PIPE] = ACTIONS(2784), + [anon_sym_e_GT_PIPE] = ACTIONS(2784), + [anon_sym_o_GT_PIPE] = ACTIONS(2784), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2784), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2784), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2784), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2784), + [anon_sym_RPAREN] = ACTIONS(2784), + [anon_sym_GT2] = ACTIONS(2826), + [anon_sym_DASH2] = ACTIONS(2828), + [anon_sym_STAR2] = ACTIONS(2830), + [anon_sym_and2] = ACTIONS(2784), + [anon_sym_xor2] = ACTIONS(2784), + [anon_sym_or2] = ACTIONS(2784), + [anon_sym_not_DASHin2] = ACTIONS(2824), + [anon_sym_has2] = ACTIONS(2824), + [anon_sym_not_DASHhas2] = ACTIONS(2824), + [anon_sym_starts_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2824), + [anon_sym_ends_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2824), + [anon_sym_EQ_EQ2] = ACTIONS(2832), + [anon_sym_BANG_EQ2] = ACTIONS(2832), + [anon_sym_LT2] = ACTIONS(2826), + [anon_sym_LT_EQ2] = ACTIONS(2832), + [anon_sym_GT_EQ2] = ACTIONS(2832), + [anon_sym_EQ_TILDE2] = ACTIONS(2784), + [anon_sym_BANG_TILDE2] = ACTIONS(2784), + [anon_sym_like2] = ACTIONS(2784), + [anon_sym_not_DASHlike2] = ACTIONS(2784), + [anon_sym_STAR_STAR2] = ACTIONS(2836), + [anon_sym_PLUS_PLUS2] = ACTIONS(2836), + [anon_sym_SLASH2] = ACTIONS(2830), + [anon_sym_mod2] = ACTIONS(2838), + [anon_sym_SLASH_SLASH2] = ACTIONS(2838), + [anon_sym_PLUS2] = ACTIONS(2840), + [anon_sym_bit_DASHshl2] = ACTIONS(2842), + [anon_sym_bit_DASHshr2] = ACTIONS(2842), + [anon_sym_bit_DASHand2] = ACTIONS(2784), + [anon_sym_bit_DASHxor2] = ACTIONS(2784), + [anon_sym_bit_DASHor2] = ACTIONS(2784), + [anon_sym_err_GT] = ACTIONS(2786), + [anon_sym_out_GT] = ACTIONS(2786), + [anon_sym_e_GT] = ACTIONS(2786), + [anon_sym_o_GT] = ACTIONS(2786), + [anon_sym_err_PLUSout_GT] = ACTIONS(2786), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2786), + [anon_sym_o_PLUSe_GT] = ACTIONS(2786), + [anon_sym_e_PLUSo_GT] = ACTIONS(2786), + [anon_sym_err_GT_GT] = ACTIONS(2784), + [anon_sym_out_GT_GT] = ACTIONS(2784), + [anon_sym_e_GT_GT] = ACTIONS(2784), + [anon_sym_o_GT_GT] = ACTIONS(2784), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2784), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2784), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2784), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2784), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1185)] = { - [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1185), - [anon_sym_in] = ACTIONS(2927), - [sym__newline] = ACTIONS(2738), - [anon_sym_SEMI] = ACTIONS(2738), - [anon_sym_PIPE] = ACTIONS(2738), - [anon_sym_err_GT_PIPE] = ACTIONS(2738), - [anon_sym_out_GT_PIPE] = ACTIONS(2738), - [anon_sym_e_GT_PIPE] = ACTIONS(2738), - [anon_sym_o_GT_PIPE] = ACTIONS(2738), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2738), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2738), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2738), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2738), - [anon_sym_RPAREN] = ACTIONS(2738), - [anon_sym_GT2] = ACTIONS(2911), - [anon_sym_DASH2] = ACTIONS(2913), - [anon_sym_STAR2] = ACTIONS(2915), - [anon_sym_and2] = ACTIONS(2937), - [anon_sym_xor2] = ACTIONS(2738), - [anon_sym_or2] = ACTIONS(2738), - [anon_sym_not_DASHin2] = ACTIONS(2927), - [anon_sym_has2] = ACTIONS(2927), - [anon_sym_not_DASHhas2] = ACTIONS(2927), - [anon_sym_starts_DASHwith2] = ACTIONS(2927), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2927), - [anon_sym_ends_DASHwith2] = ACTIONS(2927), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2927), - [anon_sym_EQ_EQ2] = ACTIONS(2917), - [anon_sym_BANG_EQ2] = ACTIONS(2917), - [anon_sym_LT2] = ACTIONS(2911), - [anon_sym_LT_EQ2] = ACTIONS(2917), - [anon_sym_GT_EQ2] = ACTIONS(2917), - [anon_sym_EQ_TILDE2] = ACTIONS(2929), - [anon_sym_BANG_TILDE2] = ACTIONS(2929), - [anon_sym_like2] = ACTIONS(2929), - [anon_sym_not_DASHlike2] = ACTIONS(2929), - [anon_sym_STAR_STAR2] = ACTIONS(2919), - [anon_sym_PLUS_PLUS2] = ACTIONS(2919), - [anon_sym_SLASH2] = ACTIONS(2915), - [anon_sym_mod2] = ACTIONS(2921), - [anon_sym_SLASH_SLASH2] = ACTIONS(2921), - [anon_sym_PLUS2] = ACTIONS(2923), - [anon_sym_bit_DASHshl2] = ACTIONS(2925), - [anon_sym_bit_DASHshr2] = ACTIONS(2925), - [anon_sym_bit_DASHand2] = ACTIONS(2931), - [anon_sym_bit_DASHxor2] = ACTIONS(2933), - [anon_sym_bit_DASHor2] = ACTIONS(2935), - [anon_sym_err_GT] = ACTIONS(2740), - [anon_sym_out_GT] = ACTIONS(2740), - [anon_sym_e_GT] = ACTIONS(2740), - [anon_sym_o_GT] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT] = ACTIONS(2740), - [anon_sym_err_GT_GT] = ACTIONS(2738), - [anon_sym_out_GT_GT] = ACTIONS(2738), - [anon_sym_e_GT_GT] = ACTIONS(2738), - [anon_sym_o_GT_GT] = ACTIONS(2738), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2738), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2738), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2738), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2738), + [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(2892), + [anon_sym_RBRACE] = ACTIONS(2648), + [anon_sym_STAR2] = ACTIONS(2894), + [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(2898), + [anon_sym_PLUS_PLUS2] = ACTIONS(2898), + [anon_sym_SLASH2] = ACTIONS(2894), + [anon_sym_mod2] = ACTIONS(2900), + [anon_sym_SLASH_SLASH2] = ACTIONS(2900), + [anon_sym_PLUS2] = ACTIONS(2902), + [anon_sym_bit_DASHshl2] = ACTIONS(2904), + [anon_sym_bit_DASHshr2] = ACTIONS(2904), + [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(1186)] = { - [aux_sym__repeat_newline] = STATE(527), + [aux_sym__repeat_newline] = STATE(1181), [sym_comment] = STATE(1186), - [anon_sym_in] = ACTIONS(2927), - [sym__newline] = ACTIONS(2738), - [anon_sym_SEMI] = ACTIONS(2738), - [anon_sym_PIPE] = ACTIONS(2738), - [anon_sym_err_GT_PIPE] = ACTIONS(2738), - [anon_sym_out_GT_PIPE] = ACTIONS(2738), - [anon_sym_e_GT_PIPE] = ACTIONS(2738), - [anon_sym_o_GT_PIPE] = ACTIONS(2738), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2738), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2738), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2738), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2738), - [anon_sym_RPAREN] = ACTIONS(2738), - [anon_sym_GT2] = ACTIONS(2911), - [anon_sym_DASH2] = ACTIONS(2913), - [anon_sym_STAR2] = ACTIONS(2915), - [anon_sym_and2] = ACTIONS(2937), - [anon_sym_xor2] = ACTIONS(2939), - [anon_sym_or2] = ACTIONS(2738), - [anon_sym_not_DASHin2] = ACTIONS(2927), - [anon_sym_has2] = ACTIONS(2927), - [anon_sym_not_DASHhas2] = ACTIONS(2927), - [anon_sym_starts_DASHwith2] = ACTIONS(2927), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2927), - [anon_sym_ends_DASHwith2] = ACTIONS(2927), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2927), - [anon_sym_EQ_EQ2] = ACTIONS(2917), - [anon_sym_BANG_EQ2] = ACTIONS(2917), - [anon_sym_LT2] = ACTIONS(2911), - [anon_sym_LT_EQ2] = ACTIONS(2917), - [anon_sym_GT_EQ2] = ACTIONS(2917), - [anon_sym_EQ_TILDE2] = ACTIONS(2929), - [anon_sym_BANG_TILDE2] = ACTIONS(2929), - [anon_sym_like2] = ACTIONS(2929), - [anon_sym_not_DASHlike2] = ACTIONS(2929), - [anon_sym_STAR_STAR2] = ACTIONS(2919), - [anon_sym_PLUS_PLUS2] = ACTIONS(2919), - [anon_sym_SLASH2] = ACTIONS(2915), - [anon_sym_mod2] = ACTIONS(2921), - [anon_sym_SLASH_SLASH2] = ACTIONS(2921), - [anon_sym_PLUS2] = ACTIONS(2923), - [anon_sym_bit_DASHshl2] = ACTIONS(2925), - [anon_sym_bit_DASHshr2] = ACTIONS(2925), - [anon_sym_bit_DASHand2] = ACTIONS(2931), - [anon_sym_bit_DASHxor2] = ACTIONS(2933), - [anon_sym_bit_DASHor2] = ACTIONS(2935), - [anon_sym_err_GT] = ACTIONS(2740), - [anon_sym_out_GT] = ACTIONS(2740), - [anon_sym_e_GT] = ACTIONS(2740), - [anon_sym_o_GT] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT] = ACTIONS(2740), - [anon_sym_err_GT_GT] = ACTIONS(2738), - [anon_sym_out_GT_GT] = ACTIONS(2738), - [anon_sym_e_GT_GT] = ACTIONS(2738), - [anon_sym_o_GT_GT] = ACTIONS(2738), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2738), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2738), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2738), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2738), + [anon_sym_in] = ACTIONS(2872), + [sym__newline] = ACTIONS(2887), + [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(2853), + [anon_sym_DASH2] = ACTIONS(2855), + [anon_sym_STAR2] = ACTIONS(2857), + [anon_sym_and2] = ACTIONS(2776), + [anon_sym_xor2] = ACTIONS(2776), + [anon_sym_or2] = ACTIONS(2776), + [anon_sym_not_DASHin2] = ACTIONS(2872), + [anon_sym_has2] = ACTIONS(2872), + [anon_sym_not_DASHhas2] = ACTIONS(2872), + [anon_sym_starts_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2872), + [anon_sym_ends_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2872), + [anon_sym_EQ_EQ2] = ACTIONS(2859), + [anon_sym_BANG_EQ2] = ACTIONS(2859), + [anon_sym_LT2] = ACTIONS(2853), + [anon_sym_LT_EQ2] = ACTIONS(2859), + [anon_sym_GT_EQ2] = ACTIONS(2859), + [anon_sym_EQ_TILDE2] = ACTIONS(2879), + [anon_sym_BANG_TILDE2] = ACTIONS(2879), + [anon_sym_like2] = ACTIONS(2879), + [anon_sym_not_DASHlike2] = ACTIONS(2879), + [anon_sym_STAR_STAR2] = ACTIONS(2861), + [anon_sym_PLUS_PLUS2] = ACTIONS(2861), + [anon_sym_SLASH2] = ACTIONS(2857), + [anon_sym_mod2] = ACTIONS(2863), + [anon_sym_SLASH_SLASH2] = ACTIONS(2863), + [anon_sym_PLUS2] = ACTIONS(2865), + [anon_sym_bit_DASHshl2] = ACTIONS(2867), + [anon_sym_bit_DASHshr2] = ACTIONS(2867), + [anon_sym_bit_DASHand2] = ACTIONS(2881), + [anon_sym_bit_DASHxor2] = ACTIONS(2883), + [anon_sym_bit_DASHor2] = ACTIONS(2885), + [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(1187)] = { - [aux_sym__repeat_newline] = STATE(527), + [aux_sym__repeat_newline] = STATE(1172), [sym_comment] = STATE(1187), - [anon_sym_in] = ACTIONS(2927), - [sym__newline] = ACTIONS(2738), - [anon_sym_SEMI] = ACTIONS(2738), - [anon_sym_PIPE] = ACTIONS(2738), - [anon_sym_err_GT_PIPE] = ACTIONS(2738), - [anon_sym_out_GT_PIPE] = ACTIONS(2738), - [anon_sym_e_GT_PIPE] = ACTIONS(2738), - [anon_sym_o_GT_PIPE] = ACTIONS(2738), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2738), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2738), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2738), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2738), - [anon_sym_RPAREN] = ACTIONS(2738), - [anon_sym_GT2] = ACTIONS(2911), - [anon_sym_DASH2] = ACTIONS(2913), - [anon_sym_STAR2] = ACTIONS(2915), - [anon_sym_and2] = ACTIONS(2738), - [anon_sym_xor2] = ACTIONS(2738), - [anon_sym_or2] = ACTIONS(2738), - [anon_sym_not_DASHin2] = ACTIONS(2927), - [anon_sym_has2] = ACTIONS(2927), - [anon_sym_not_DASHhas2] = ACTIONS(2927), - [anon_sym_starts_DASHwith2] = ACTIONS(2927), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2927), - [anon_sym_ends_DASHwith2] = ACTIONS(2927), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2927), - [anon_sym_EQ_EQ2] = ACTIONS(2917), - [anon_sym_BANG_EQ2] = ACTIONS(2917), - [anon_sym_LT2] = ACTIONS(2911), - [anon_sym_LT_EQ2] = ACTIONS(2917), - [anon_sym_GT_EQ2] = ACTIONS(2917), - [anon_sym_EQ_TILDE2] = ACTIONS(2738), - [anon_sym_BANG_TILDE2] = ACTIONS(2738), - [anon_sym_like2] = ACTIONS(2738), - [anon_sym_not_DASHlike2] = ACTIONS(2738), - [anon_sym_STAR_STAR2] = ACTIONS(2919), - [anon_sym_PLUS_PLUS2] = ACTIONS(2919), - [anon_sym_SLASH2] = ACTIONS(2915), - [anon_sym_mod2] = ACTIONS(2921), - [anon_sym_SLASH_SLASH2] = ACTIONS(2921), - [anon_sym_PLUS2] = ACTIONS(2923), - [anon_sym_bit_DASHshl2] = ACTIONS(2925), - [anon_sym_bit_DASHshr2] = ACTIONS(2925), - [anon_sym_bit_DASHand2] = ACTIONS(2738), - [anon_sym_bit_DASHxor2] = ACTIONS(2738), - [anon_sym_bit_DASHor2] = ACTIONS(2738), - [anon_sym_err_GT] = ACTIONS(2740), - [anon_sym_out_GT] = ACTIONS(2740), - [anon_sym_e_GT] = ACTIONS(2740), - [anon_sym_o_GT] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT] = ACTIONS(2740), - [anon_sym_err_GT_GT] = ACTIONS(2738), - [anon_sym_out_GT_GT] = ACTIONS(2738), - [anon_sym_e_GT_GT] = ACTIONS(2738), - [anon_sym_o_GT_GT] = ACTIONS(2738), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2738), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2738), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2738), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2738), + [anon_sym_in] = ACTIONS(2798), + [sym__newline] = ACTIONS(2850), + [anon_sym_SEMI] = ACTIONS(2798), + [anon_sym_PIPE] = ACTIONS(2798), + [anon_sym_err_GT_PIPE] = ACTIONS(2798), + [anon_sym_out_GT_PIPE] = ACTIONS(2798), + [anon_sym_e_GT_PIPE] = ACTIONS(2798), + [anon_sym_o_GT_PIPE] = ACTIONS(2798), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2798), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2798), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2798), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2798), + [anon_sym_RPAREN] = ACTIONS(2798), + [anon_sym_GT2] = ACTIONS(2800), + [anon_sym_DASH2] = ACTIONS(2855), + [anon_sym_STAR2] = ACTIONS(2857), + [anon_sym_and2] = ACTIONS(2798), + [anon_sym_xor2] = ACTIONS(2798), + [anon_sym_or2] = ACTIONS(2798), + [anon_sym_not_DASHin2] = ACTIONS(2798), + [anon_sym_has2] = ACTIONS(2798), + [anon_sym_not_DASHhas2] = ACTIONS(2798), + [anon_sym_starts_DASHwith2] = ACTIONS(2798), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2798), + [anon_sym_ends_DASHwith2] = ACTIONS(2798), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2798), + [anon_sym_EQ_EQ2] = ACTIONS(2798), + [anon_sym_BANG_EQ2] = ACTIONS(2798), + [anon_sym_LT2] = ACTIONS(2800), + [anon_sym_LT_EQ2] = ACTIONS(2798), + [anon_sym_GT_EQ2] = ACTIONS(2798), + [anon_sym_EQ_TILDE2] = ACTIONS(2798), + [anon_sym_BANG_TILDE2] = ACTIONS(2798), + [anon_sym_like2] = ACTIONS(2798), + [anon_sym_not_DASHlike2] = ACTIONS(2798), + [anon_sym_STAR_STAR2] = ACTIONS(2861), + [anon_sym_PLUS_PLUS2] = ACTIONS(2861), + [anon_sym_SLASH2] = ACTIONS(2857), + [anon_sym_mod2] = ACTIONS(2863), + [anon_sym_SLASH_SLASH2] = ACTIONS(2863), + [anon_sym_PLUS2] = ACTIONS(2865), + [anon_sym_bit_DASHshl2] = ACTIONS(2867), + [anon_sym_bit_DASHshr2] = ACTIONS(2867), + [anon_sym_bit_DASHand2] = ACTIONS(2798), + [anon_sym_bit_DASHxor2] = ACTIONS(2798), + [anon_sym_bit_DASHor2] = ACTIONS(2798), + [anon_sym_err_GT] = ACTIONS(2800), + [anon_sym_out_GT] = ACTIONS(2800), + [anon_sym_e_GT] = ACTIONS(2800), + [anon_sym_o_GT] = ACTIONS(2800), + [anon_sym_err_PLUSout_GT] = ACTIONS(2800), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2800), + [anon_sym_o_PLUSe_GT] = ACTIONS(2800), + [anon_sym_e_PLUSo_GT] = ACTIONS(2800), + [anon_sym_err_GT_GT] = ACTIONS(2798), + [anon_sym_out_GT_GT] = ACTIONS(2798), + [anon_sym_e_GT_GT] = ACTIONS(2798), + [anon_sym_o_GT_GT] = ACTIONS(2798), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2798), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2798), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2798), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2798), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1188)] = { - [aux_sym__repeat_newline] = STATE(527), + [aux_sym__repeat_newline] = STATE(1160), [sym_comment] = STATE(1188), - [anon_sym_in] = ACTIONS(2738), - [sym__newline] = ACTIONS(2738), - [anon_sym_SEMI] = ACTIONS(2738), - [anon_sym_PIPE] = ACTIONS(2738), - [anon_sym_err_GT_PIPE] = ACTIONS(2738), - [anon_sym_out_GT_PIPE] = ACTIONS(2738), - [anon_sym_e_GT_PIPE] = ACTIONS(2738), - [anon_sym_o_GT_PIPE] = ACTIONS(2738), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2738), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2738), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2738), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2738), - [anon_sym_RPAREN] = ACTIONS(2738), - [anon_sym_GT2] = ACTIONS(2740), - [anon_sym_DASH2] = ACTIONS(2913), - [anon_sym_STAR2] = ACTIONS(2915), - [anon_sym_and2] = ACTIONS(2738), - [anon_sym_xor2] = ACTIONS(2738), - [anon_sym_or2] = ACTIONS(2738), - [anon_sym_not_DASHin2] = ACTIONS(2738), - [anon_sym_has2] = ACTIONS(2738), - [anon_sym_not_DASHhas2] = ACTIONS(2738), - [anon_sym_starts_DASHwith2] = ACTIONS(2738), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2738), - [anon_sym_ends_DASHwith2] = ACTIONS(2738), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2738), - [anon_sym_EQ_EQ2] = ACTIONS(2738), - [anon_sym_BANG_EQ2] = ACTIONS(2738), - [anon_sym_LT2] = ACTIONS(2740), - [anon_sym_LT_EQ2] = ACTIONS(2738), - [anon_sym_GT_EQ2] = ACTIONS(2738), - [anon_sym_EQ_TILDE2] = ACTIONS(2738), - [anon_sym_BANG_TILDE2] = ACTIONS(2738), - [anon_sym_like2] = ACTIONS(2738), - [anon_sym_not_DASHlike2] = ACTIONS(2738), - [anon_sym_STAR_STAR2] = ACTIONS(2919), - [anon_sym_PLUS_PLUS2] = ACTIONS(2919), - [anon_sym_SLASH2] = ACTIONS(2915), - [anon_sym_mod2] = ACTIONS(2921), - [anon_sym_SLASH_SLASH2] = ACTIONS(2921), - [anon_sym_PLUS2] = ACTIONS(2923), - [anon_sym_bit_DASHshl2] = ACTIONS(2738), - [anon_sym_bit_DASHshr2] = ACTIONS(2738), - [anon_sym_bit_DASHand2] = ACTIONS(2738), - [anon_sym_bit_DASHxor2] = ACTIONS(2738), - [anon_sym_bit_DASHor2] = ACTIONS(2738), - [anon_sym_err_GT] = ACTIONS(2740), - [anon_sym_out_GT] = ACTIONS(2740), - [anon_sym_e_GT] = ACTIONS(2740), - [anon_sym_o_GT] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT] = ACTIONS(2740), - [anon_sym_err_GT_GT] = ACTIONS(2738), - [anon_sym_out_GT_GT] = ACTIONS(2738), - [anon_sym_e_GT_GT] = ACTIONS(2738), - [anon_sym_o_GT_GT] = ACTIONS(2738), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2738), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2738), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2738), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2738), + [anon_sym_in] = ACTIONS(2788), + [sym__newline] = ACTIONS(2874), + [anon_sym_SEMI] = ACTIONS(2788), + [anon_sym_PIPE] = ACTIONS(2788), + [anon_sym_err_GT_PIPE] = ACTIONS(2788), + [anon_sym_out_GT_PIPE] = ACTIONS(2788), + [anon_sym_e_GT_PIPE] = ACTIONS(2788), + [anon_sym_o_GT_PIPE] = ACTIONS(2788), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2788), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2788), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2788), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2788), + [anon_sym_RPAREN] = ACTIONS(2788), + [anon_sym_GT2] = ACTIONS(2790), + [anon_sym_DASH2] = ACTIONS(2788), + [anon_sym_STAR2] = ACTIONS(2857), + [anon_sym_and2] = ACTIONS(2788), + [anon_sym_xor2] = ACTIONS(2788), + [anon_sym_or2] = ACTIONS(2788), + [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(2788), + [anon_sym_BANG_EQ2] = ACTIONS(2788), + [anon_sym_LT2] = ACTIONS(2790), + [anon_sym_LT_EQ2] = ACTIONS(2788), + [anon_sym_GT_EQ2] = ACTIONS(2788), + [anon_sym_EQ_TILDE2] = ACTIONS(2788), + [anon_sym_BANG_TILDE2] = ACTIONS(2788), + [anon_sym_like2] = ACTIONS(2788), + [anon_sym_not_DASHlike2] = ACTIONS(2788), + [anon_sym_STAR_STAR2] = ACTIONS(2861), + [anon_sym_PLUS_PLUS2] = ACTIONS(2861), + [anon_sym_SLASH2] = ACTIONS(2857), + [anon_sym_mod2] = ACTIONS(2863), + [anon_sym_SLASH_SLASH2] = ACTIONS(2863), + [anon_sym_PLUS2] = ACTIONS(2790), + [anon_sym_bit_DASHshl2] = ACTIONS(2788), + [anon_sym_bit_DASHshr2] = ACTIONS(2788), + [anon_sym_bit_DASHand2] = ACTIONS(2788), + [anon_sym_bit_DASHxor2] = ACTIONS(2788), + [anon_sym_bit_DASHor2] = ACTIONS(2788), + [anon_sym_err_GT] = ACTIONS(2790), + [anon_sym_out_GT] = ACTIONS(2790), + [anon_sym_e_GT] = ACTIONS(2790), + [anon_sym_o_GT] = ACTIONS(2790), + [anon_sym_err_PLUSout_GT] = ACTIONS(2790), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2790), + [anon_sym_o_PLUSe_GT] = ACTIONS(2790), + [anon_sym_e_PLUSo_GT] = ACTIONS(2790), + [anon_sym_err_GT_GT] = ACTIONS(2788), + [anon_sym_out_GT_GT] = ACTIONS(2788), + [anon_sym_e_GT_GT] = ACTIONS(2788), + [anon_sym_o_GT_GT] = ACTIONS(2788), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2788), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2788), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2788), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2788), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1189)] = { - [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1189), - [anon_sym_in] = ACTIONS(2927), - [sym__newline] = ACTIONS(2738), - [anon_sym_SEMI] = ACTIONS(2738), - [anon_sym_PIPE] = ACTIONS(2738), - [anon_sym_err_GT_PIPE] = ACTIONS(2738), - [anon_sym_out_GT_PIPE] = ACTIONS(2738), - [anon_sym_e_GT_PIPE] = ACTIONS(2738), - [anon_sym_o_GT_PIPE] = ACTIONS(2738), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2738), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2738), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2738), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2738), - [anon_sym_RPAREN] = ACTIONS(2738), - [anon_sym_GT2] = ACTIONS(2911), - [anon_sym_DASH2] = ACTIONS(2913), - [anon_sym_STAR2] = ACTIONS(2915), - [anon_sym_and2] = ACTIONS(2738), - [anon_sym_xor2] = ACTIONS(2738), - [anon_sym_or2] = ACTIONS(2738), - [anon_sym_not_DASHin2] = ACTIONS(2927), - [anon_sym_has2] = ACTIONS(2927), - [anon_sym_not_DASHhas2] = ACTIONS(2927), - [anon_sym_starts_DASHwith2] = ACTIONS(2927), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2927), - [anon_sym_ends_DASHwith2] = ACTIONS(2927), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2927), - [anon_sym_EQ_EQ2] = ACTIONS(2917), - [anon_sym_BANG_EQ2] = ACTIONS(2917), - [anon_sym_LT2] = ACTIONS(2911), - [anon_sym_LT_EQ2] = ACTIONS(2917), - [anon_sym_GT_EQ2] = ACTIONS(2917), - [anon_sym_EQ_TILDE2] = ACTIONS(2929), - [anon_sym_BANG_TILDE2] = ACTIONS(2929), - [anon_sym_like2] = ACTIONS(2929), - [anon_sym_not_DASHlike2] = ACTIONS(2929), - [anon_sym_STAR_STAR2] = ACTIONS(2919), - [anon_sym_PLUS_PLUS2] = ACTIONS(2919), - [anon_sym_SLASH2] = ACTIONS(2915), - [anon_sym_mod2] = ACTIONS(2921), - [anon_sym_SLASH_SLASH2] = ACTIONS(2921), - [anon_sym_PLUS2] = ACTIONS(2923), - [anon_sym_bit_DASHshl2] = ACTIONS(2925), - [anon_sym_bit_DASHshr2] = ACTIONS(2925), - [anon_sym_bit_DASHand2] = ACTIONS(2738), - [anon_sym_bit_DASHxor2] = ACTIONS(2738), - [anon_sym_bit_DASHor2] = ACTIONS(2738), - [anon_sym_err_GT] = ACTIONS(2740), - [anon_sym_out_GT] = ACTIONS(2740), - [anon_sym_e_GT] = ACTIONS(2740), - [anon_sym_o_GT] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT] = ACTIONS(2740), - [anon_sym_err_GT_GT] = ACTIONS(2738), - [anon_sym_out_GT_GT] = ACTIONS(2738), - [anon_sym_e_GT_GT] = ACTIONS(2738), - [anon_sym_o_GT_GT] = ACTIONS(2738), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2738), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2738), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2738), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2738), + [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_RBRACE] = ACTIONS(2648), + [anon_sym_STAR2] = ACTIONS(2894), + [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(2898), + [anon_sym_PLUS_PLUS2] = ACTIONS(2898), + [anon_sym_SLASH2] = ACTIONS(2894), + [anon_sym_mod2] = ACTIONS(2900), + [anon_sym_SLASH_SLASH2] = ACTIONS(2900), + [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(1190)] = { - [aux_sym__repeat_newline] = STATE(527), + [aux_sym__repeat_newline] = STATE(1199), [sym_comment] = STATE(1190), - [anon_sym_in] = ACTIONS(2927), - [sym__newline] = ACTIONS(2738), - [anon_sym_SEMI] = ACTIONS(2738), - [anon_sym_PIPE] = ACTIONS(2738), - [anon_sym_err_GT_PIPE] = ACTIONS(2738), - [anon_sym_out_GT_PIPE] = ACTIONS(2738), - [anon_sym_e_GT_PIPE] = ACTIONS(2738), - [anon_sym_o_GT_PIPE] = ACTIONS(2738), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2738), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2738), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2738), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2738), - [anon_sym_RPAREN] = ACTIONS(2738), - [anon_sym_GT2] = ACTIONS(2911), - [anon_sym_DASH2] = ACTIONS(2913), - [anon_sym_STAR2] = ACTIONS(2915), - [anon_sym_and2] = ACTIONS(2738), - [anon_sym_xor2] = ACTIONS(2738), - [anon_sym_or2] = ACTIONS(2738), - [anon_sym_not_DASHin2] = ACTIONS(2927), - [anon_sym_has2] = ACTIONS(2927), - [anon_sym_not_DASHhas2] = ACTIONS(2927), - [anon_sym_starts_DASHwith2] = ACTIONS(2927), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2927), - [anon_sym_ends_DASHwith2] = ACTIONS(2927), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2927), - [anon_sym_EQ_EQ2] = ACTIONS(2917), - [anon_sym_BANG_EQ2] = ACTIONS(2917), - [anon_sym_LT2] = ACTIONS(2911), - [anon_sym_LT_EQ2] = ACTIONS(2917), - [anon_sym_GT_EQ2] = ACTIONS(2917), - [anon_sym_EQ_TILDE2] = ACTIONS(2929), - [anon_sym_BANG_TILDE2] = ACTIONS(2929), - [anon_sym_like2] = ACTIONS(2929), - [anon_sym_not_DASHlike2] = ACTIONS(2929), - [anon_sym_STAR_STAR2] = ACTIONS(2919), - [anon_sym_PLUS_PLUS2] = ACTIONS(2919), - [anon_sym_SLASH2] = ACTIONS(2915), - [anon_sym_mod2] = ACTIONS(2921), - [anon_sym_SLASH_SLASH2] = ACTIONS(2921), - [anon_sym_PLUS2] = ACTIONS(2923), - [anon_sym_bit_DASHshl2] = ACTIONS(2925), - [anon_sym_bit_DASHshr2] = ACTIONS(2925), - [anon_sym_bit_DASHand2] = ACTIONS(2931), - [anon_sym_bit_DASHxor2] = ACTIONS(2738), - [anon_sym_bit_DASHor2] = ACTIONS(2738), - [anon_sym_err_GT] = ACTIONS(2740), - [anon_sym_out_GT] = ACTIONS(2740), - [anon_sym_e_GT] = ACTIONS(2740), - [anon_sym_o_GT] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT] = ACTIONS(2740), - [anon_sym_err_GT_GT] = ACTIONS(2738), - [anon_sym_out_GT_GT] = ACTIONS(2738), - [anon_sym_e_GT_GT] = ACTIONS(2738), - [anon_sym_o_GT_GT] = ACTIONS(2738), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2738), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2738), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2738), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2738), + [anon_sym_in] = ACTIONS(2872), + [sym__newline] = ACTIONS(2887), + [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(2853), + [anon_sym_DASH2] = ACTIONS(2855), + [anon_sym_STAR2] = ACTIONS(2857), + [anon_sym_and2] = ACTIONS(2877), + [anon_sym_xor2] = ACTIONS(2776), + [anon_sym_or2] = ACTIONS(2776), + [anon_sym_not_DASHin2] = ACTIONS(2872), + [anon_sym_has2] = ACTIONS(2872), + [anon_sym_not_DASHhas2] = ACTIONS(2872), + [anon_sym_starts_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2872), + [anon_sym_ends_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2872), + [anon_sym_EQ_EQ2] = ACTIONS(2859), + [anon_sym_BANG_EQ2] = ACTIONS(2859), + [anon_sym_LT2] = ACTIONS(2853), + [anon_sym_LT_EQ2] = ACTIONS(2859), + [anon_sym_GT_EQ2] = ACTIONS(2859), + [anon_sym_EQ_TILDE2] = ACTIONS(2879), + [anon_sym_BANG_TILDE2] = ACTIONS(2879), + [anon_sym_like2] = ACTIONS(2879), + [anon_sym_not_DASHlike2] = ACTIONS(2879), + [anon_sym_STAR_STAR2] = ACTIONS(2861), + [anon_sym_PLUS_PLUS2] = ACTIONS(2861), + [anon_sym_SLASH2] = ACTIONS(2857), + [anon_sym_mod2] = ACTIONS(2863), + [anon_sym_SLASH_SLASH2] = ACTIONS(2863), + [anon_sym_PLUS2] = ACTIONS(2865), + [anon_sym_bit_DASHshl2] = ACTIONS(2867), + [anon_sym_bit_DASHshr2] = ACTIONS(2867), + [anon_sym_bit_DASHand2] = ACTIONS(2881), + [anon_sym_bit_DASHxor2] = ACTIONS(2883), + [anon_sym_bit_DASHor2] = ACTIONS(2885), + [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(1191)] = { + [aux_sym__repeat_newline] = STATE(1263), [sym_comment] = STATE(1191), - [aux_sym_cmd_identifier_token2] = ACTIONS(2682), - [anon_sym_in] = ACTIONS(2527), - [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(2527), - [anon_sym_RBRACE] = ACTIONS(2525), - [anon_sym_STAR2] = ACTIONS(2527), - [anon_sym_and2] = ACTIONS(2527), - [anon_sym_xor2] = ACTIONS(2527), - [anon_sym_or2] = ACTIONS(2527), - [anon_sym_not_DASHin2] = ACTIONS(2527), - [anon_sym_has2] = ACTIONS(2527), - [anon_sym_not_DASHhas2] = ACTIONS(2527), - [anon_sym_starts_DASHwith2] = ACTIONS(2527), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2527), - [anon_sym_ends_DASHwith2] = ACTIONS(2527), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2527), - [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(2527), - [anon_sym_like2] = ACTIONS(2527), - [anon_sym_not_DASHlike2] = ACTIONS(2527), - [anon_sym_STAR_STAR2] = ACTIONS(2527), - [anon_sym_PLUS_PLUS2] = ACTIONS(2527), - [anon_sym_SLASH2] = ACTIONS(2527), - [anon_sym_mod2] = ACTIONS(2527), - [anon_sym_SLASH_SLASH2] = ACTIONS(2527), - [anon_sym_PLUS2] = ACTIONS(2527), - [anon_sym_bit_DASHshl2] = ACTIONS(2527), - [anon_sym_bit_DASHshr2] = ACTIONS(2527), - [anon_sym_bit_DASHand2] = ACTIONS(2527), - [anon_sym_bit_DASHxor2] = ACTIONS(2527), - [anon_sym_bit_DASHor2] = ACTIONS(2527), - [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(103), + [anon_sym_in] = ACTIONS(2872), + [sym__newline] = ACTIONS(2850), + [anon_sym_SEMI] = ACTIONS(2798), + [anon_sym_PIPE] = ACTIONS(2798), + [anon_sym_err_GT_PIPE] = ACTIONS(2798), + [anon_sym_out_GT_PIPE] = ACTIONS(2798), + [anon_sym_e_GT_PIPE] = ACTIONS(2798), + [anon_sym_o_GT_PIPE] = ACTIONS(2798), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2798), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2798), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2798), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2798), + [anon_sym_RPAREN] = ACTIONS(2798), + [anon_sym_GT2] = ACTIONS(2853), + [anon_sym_DASH2] = ACTIONS(2855), + [anon_sym_STAR2] = ACTIONS(2857), + [anon_sym_and2] = ACTIONS(2798), + [anon_sym_xor2] = ACTIONS(2798), + [anon_sym_or2] = ACTIONS(2798), + [anon_sym_not_DASHin2] = ACTIONS(2872), + [anon_sym_has2] = ACTIONS(2872), + [anon_sym_not_DASHhas2] = ACTIONS(2872), + [anon_sym_starts_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2872), + [anon_sym_ends_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2872), + [anon_sym_EQ_EQ2] = ACTIONS(2859), + [anon_sym_BANG_EQ2] = ACTIONS(2859), + [anon_sym_LT2] = ACTIONS(2853), + [anon_sym_LT_EQ2] = ACTIONS(2859), + [anon_sym_GT_EQ2] = ACTIONS(2859), + [anon_sym_EQ_TILDE2] = ACTIONS(2879), + [anon_sym_BANG_TILDE2] = ACTIONS(2879), + [anon_sym_like2] = ACTIONS(2879), + [anon_sym_not_DASHlike2] = ACTIONS(2879), + [anon_sym_STAR_STAR2] = ACTIONS(2861), + [anon_sym_PLUS_PLUS2] = ACTIONS(2861), + [anon_sym_SLASH2] = ACTIONS(2857), + [anon_sym_mod2] = ACTIONS(2863), + [anon_sym_SLASH_SLASH2] = ACTIONS(2863), + [anon_sym_PLUS2] = ACTIONS(2865), + [anon_sym_bit_DASHshl2] = ACTIONS(2867), + [anon_sym_bit_DASHshr2] = ACTIONS(2867), + [anon_sym_bit_DASHand2] = ACTIONS(2798), + [anon_sym_bit_DASHxor2] = ACTIONS(2798), + [anon_sym_bit_DASHor2] = ACTIONS(2798), + [anon_sym_err_GT] = ACTIONS(2800), + [anon_sym_out_GT] = ACTIONS(2800), + [anon_sym_e_GT] = ACTIONS(2800), + [anon_sym_o_GT] = ACTIONS(2800), + [anon_sym_err_PLUSout_GT] = ACTIONS(2800), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2800), + [anon_sym_o_PLUSe_GT] = ACTIONS(2800), + [anon_sym_e_PLUSo_GT] = ACTIONS(2800), + [anon_sym_err_GT_GT] = ACTIONS(2798), + [anon_sym_out_GT_GT] = ACTIONS(2798), + [anon_sym_e_GT_GT] = ACTIONS(2798), + [anon_sym_o_GT_GT] = ACTIONS(2798), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2798), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2798), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2798), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2798), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1192)] = { + [aux_sym__repeat_newline] = STATE(1229), [sym_comment] = STATE(1192), - [aux_sym_cmd_identifier_token2] = ACTIONS(2682), - [anon_sym_in] = ACTIONS(2650), + [anon_sym_in] = ACTIONS(2872), + [sym__newline] = ACTIONS(2887), + [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(2853), + [anon_sym_DASH2] = ACTIONS(2855), + [anon_sym_STAR2] = ACTIONS(2857), + [anon_sym_and2] = ACTIONS(2776), + [anon_sym_xor2] = ACTIONS(2776), + [anon_sym_or2] = ACTIONS(2776), + [anon_sym_not_DASHin2] = ACTIONS(2872), + [anon_sym_has2] = ACTIONS(2872), + [anon_sym_not_DASHhas2] = ACTIONS(2872), + [anon_sym_starts_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2872), + [anon_sym_ends_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2872), + [anon_sym_EQ_EQ2] = ACTIONS(2859), + [anon_sym_BANG_EQ2] = ACTIONS(2859), + [anon_sym_LT2] = ACTIONS(2853), + [anon_sym_LT_EQ2] = ACTIONS(2859), + [anon_sym_GT_EQ2] = ACTIONS(2859), + [anon_sym_EQ_TILDE2] = ACTIONS(2879), + [anon_sym_BANG_TILDE2] = ACTIONS(2879), + [anon_sym_like2] = ACTIONS(2879), + [anon_sym_not_DASHlike2] = ACTIONS(2879), + [anon_sym_STAR_STAR2] = ACTIONS(2861), + [anon_sym_PLUS_PLUS2] = ACTIONS(2861), + [anon_sym_SLASH2] = ACTIONS(2857), + [anon_sym_mod2] = ACTIONS(2863), + [anon_sym_SLASH_SLASH2] = ACTIONS(2863), + [anon_sym_PLUS2] = ACTIONS(2865), + [anon_sym_bit_DASHshl2] = ACTIONS(2867), + [anon_sym_bit_DASHshr2] = ACTIONS(2867), + [anon_sym_bit_DASHand2] = ACTIONS(2881), + [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(1193)] = { + [sym_comment] = STATE(1193), + [anon_sym_in] = ACTIONS(2648), [sym__newline] = ACTIONS(2648), [anon_sym_SEMI] = ACTIONS(2648), [anon_sym_PIPE] = ACTIONS(2648), @@ -135126,40 +136070,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(2650), + [anon_sym_DASH2] = ACTIONS(2648), [anon_sym_RBRACE] = ACTIONS(2648), [anon_sym_STAR2] = ACTIONS(2650), - [anon_sym_and2] = ACTIONS(2650), - [anon_sym_xor2] = ACTIONS(2650), - [anon_sym_or2] = ACTIONS(2650), - [anon_sym_not_DASHin2] = ACTIONS(2650), - [anon_sym_has2] = ACTIONS(2650), - [anon_sym_not_DASHhas2] = ACTIONS(2650), - [anon_sym_starts_DASHwith2] = ACTIONS(2650), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2650), - [anon_sym_ends_DASHwith2] = ACTIONS(2650), - [anon_sym_not_DASHends_DASHwith2] = 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(2650), - [anon_sym_like2] = ACTIONS(2650), - [anon_sym_not_DASHlike2] = ACTIONS(2650), - [anon_sym_STAR_STAR2] = ACTIONS(2650), - [anon_sym_PLUS_PLUS2] = ACTIONS(2650), + [anon_sym_BANG_TILDE2] = ACTIONS(2648), + [anon_sym_like2] = ACTIONS(2648), + [anon_sym_not_DASHlike2] = ACTIONS(2648), + [anon_sym_STAR_STAR2] = ACTIONS(2898), + [anon_sym_PLUS_PLUS2] = ACTIONS(2898), [anon_sym_SLASH2] = ACTIONS(2650), - [anon_sym_mod2] = ACTIONS(2650), - [anon_sym_SLASH_SLASH2] = ACTIONS(2650), + [anon_sym_mod2] = ACTIONS(2648), + [anon_sym_SLASH_SLASH2] = ACTIONS(2648), [anon_sym_PLUS2] = ACTIONS(2650), - [anon_sym_bit_DASHshl2] = ACTIONS(2650), - [anon_sym_bit_DASHshr2] = ACTIONS(2650), - [anon_sym_bit_DASHand2] = ACTIONS(2650), - [anon_sym_bit_DASHxor2] = ACTIONS(2650), - [anon_sym_bit_DASHor2] = 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), @@ -135176,5025 +136121,5159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(103), - }, - [STATE(1193)] = { - [aux_sym__repeat_newline] = STATE(527), - [sym_comment] = STATE(1193), - [anon_sym_in] = ACTIONS(2927), - [sym__newline] = ACTIONS(2738), - [anon_sym_SEMI] = ACTIONS(2738), - [anon_sym_PIPE] = ACTIONS(2738), - [anon_sym_err_GT_PIPE] = ACTIONS(2738), - [anon_sym_out_GT_PIPE] = ACTIONS(2738), - [anon_sym_e_GT_PIPE] = ACTIONS(2738), - [anon_sym_o_GT_PIPE] = ACTIONS(2738), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2738), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2738), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2738), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2738), - [anon_sym_RPAREN] = ACTIONS(2738), - [anon_sym_GT2] = ACTIONS(2911), - [anon_sym_DASH2] = ACTIONS(2913), - [anon_sym_STAR2] = ACTIONS(2915), - [anon_sym_and2] = ACTIONS(2738), - [anon_sym_xor2] = ACTIONS(2738), - [anon_sym_or2] = ACTIONS(2738), - [anon_sym_not_DASHin2] = ACTIONS(2927), - [anon_sym_has2] = ACTIONS(2927), - [anon_sym_not_DASHhas2] = ACTIONS(2927), - [anon_sym_starts_DASHwith2] = ACTIONS(2927), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2927), - [anon_sym_ends_DASHwith2] = ACTIONS(2927), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2927), - [anon_sym_EQ_EQ2] = ACTIONS(2917), - [anon_sym_BANG_EQ2] = ACTIONS(2917), - [anon_sym_LT2] = ACTIONS(2911), - [anon_sym_LT_EQ2] = ACTIONS(2917), - [anon_sym_GT_EQ2] = ACTIONS(2917), - [anon_sym_EQ_TILDE2] = ACTIONS(2929), - [anon_sym_BANG_TILDE2] = ACTIONS(2929), - [anon_sym_like2] = ACTIONS(2929), - [anon_sym_not_DASHlike2] = ACTIONS(2929), - [anon_sym_STAR_STAR2] = ACTIONS(2919), - [anon_sym_PLUS_PLUS2] = ACTIONS(2919), - [anon_sym_SLASH2] = ACTIONS(2915), - [anon_sym_mod2] = ACTIONS(2921), - [anon_sym_SLASH_SLASH2] = ACTIONS(2921), - [anon_sym_PLUS2] = ACTIONS(2923), - [anon_sym_bit_DASHshl2] = ACTIONS(2925), - [anon_sym_bit_DASHshr2] = ACTIONS(2925), - [anon_sym_bit_DASHand2] = ACTIONS(2931), - [anon_sym_bit_DASHxor2] = ACTIONS(2933), - [anon_sym_bit_DASHor2] = ACTIONS(2738), - [anon_sym_err_GT] = ACTIONS(2740), - [anon_sym_out_GT] = ACTIONS(2740), - [anon_sym_e_GT] = ACTIONS(2740), - [anon_sym_o_GT] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT] = ACTIONS(2740), - [anon_sym_err_GT_GT] = ACTIONS(2738), - [anon_sym_out_GT_GT] = ACTIONS(2738), - [anon_sym_e_GT_GT] = ACTIONS(2738), - [anon_sym_o_GT_GT] = ACTIONS(2738), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2738), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2738), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2738), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2738), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1194)] = { - [aux_sym__repeat_newline] = STATE(1231), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1194), - [anon_sym_in] = ACTIONS(2746), - [sym__newline] = ACTIONS(2941), - [anon_sym_SEMI] = ACTIONS(2746), - [anon_sym_PIPE] = ACTIONS(2746), - [anon_sym_err_GT_PIPE] = ACTIONS(2746), - [anon_sym_out_GT_PIPE] = ACTIONS(2746), - [anon_sym_e_GT_PIPE] = ACTIONS(2746), - [anon_sym_o_GT_PIPE] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2746), - [anon_sym_RPAREN] = ACTIONS(2746), - [anon_sym_GT2] = ACTIONS(2807), - [anon_sym_DASH2] = ACTIONS(2809), - [anon_sym_STAR2] = ACTIONS(2811), - [anon_sym_and2] = ACTIONS(2746), - [anon_sym_xor2] = ACTIONS(2746), - [anon_sym_or2] = ACTIONS(2746), - [anon_sym_not_DASHin2] = ACTIONS(2746), - [anon_sym_has2] = ACTIONS(2746), - [anon_sym_not_DASHhas2] = ACTIONS(2746), - [anon_sym_starts_DASHwith2] = ACTIONS(2746), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2746), - [anon_sym_ends_DASHwith2] = ACTIONS(2746), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2746), - [anon_sym_EQ_EQ2] = ACTIONS(2813), - [anon_sym_BANG_EQ2] = ACTIONS(2813), - [anon_sym_LT2] = ACTIONS(2807), - [anon_sym_LT_EQ2] = ACTIONS(2813), - [anon_sym_GT_EQ2] = ACTIONS(2813), - [anon_sym_EQ_TILDE2] = ACTIONS(2746), - [anon_sym_BANG_TILDE2] = ACTIONS(2746), - [anon_sym_like2] = ACTIONS(2746), - [anon_sym_not_DASHlike2] = ACTIONS(2746), - [anon_sym_STAR_STAR2] = ACTIONS(2815), - [anon_sym_PLUS_PLUS2] = ACTIONS(2815), - [anon_sym_SLASH2] = ACTIONS(2811), - [anon_sym_mod2] = ACTIONS(2817), - [anon_sym_SLASH_SLASH2] = ACTIONS(2817), - [anon_sym_PLUS2] = ACTIONS(2819), - [anon_sym_bit_DASHshl2] = ACTIONS(2821), - [anon_sym_bit_DASHshr2] = ACTIONS(2821), - [anon_sym_bit_DASHand2] = ACTIONS(2746), - [anon_sym_bit_DASHxor2] = ACTIONS(2746), - [anon_sym_bit_DASHor2] = ACTIONS(2746), - [anon_sym_err_GT] = ACTIONS(2748), - [anon_sym_out_GT] = ACTIONS(2748), - [anon_sym_e_GT] = ACTIONS(2748), - [anon_sym_o_GT] = ACTIONS(2748), - [anon_sym_err_PLUSout_GT] = ACTIONS(2748), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2748), - [anon_sym_o_PLUSe_GT] = ACTIONS(2748), - [anon_sym_e_PLUSo_GT] = ACTIONS(2748), - [anon_sym_err_GT_GT] = ACTIONS(2746), - [anon_sym_out_GT_GT] = ACTIONS(2746), - [anon_sym_e_GT_GT] = ACTIONS(2746), - [anon_sym_o_GT_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2746), + [anon_sym_in] = ACTIONS(2784), + [sym__newline] = ACTIONS(2784), + [anon_sym_SEMI] = ACTIONS(2784), + [anon_sym_PIPE] = ACTIONS(2784), + [anon_sym_err_GT_PIPE] = ACTIONS(2784), + [anon_sym_out_GT_PIPE] = ACTIONS(2784), + [anon_sym_e_GT_PIPE] = ACTIONS(2784), + [anon_sym_o_GT_PIPE] = ACTIONS(2784), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2784), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2784), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2784), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2784), + [anon_sym_RPAREN] = ACTIONS(2784), + [anon_sym_GT2] = ACTIONS(2786), + [anon_sym_DASH2] = ACTIONS(2828), + [anon_sym_STAR2] = ACTIONS(2830), + [anon_sym_and2] = ACTIONS(2784), + [anon_sym_xor2] = ACTIONS(2784), + [anon_sym_or2] = ACTIONS(2784), + [anon_sym_not_DASHin2] = ACTIONS(2784), + [anon_sym_has2] = ACTIONS(2784), + [anon_sym_not_DASHhas2] = ACTIONS(2784), + [anon_sym_starts_DASHwith2] = ACTIONS(2784), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2784), + [anon_sym_ends_DASHwith2] = ACTIONS(2784), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2784), + [anon_sym_EQ_EQ2] = ACTIONS(2784), + [anon_sym_BANG_EQ2] = ACTIONS(2784), + [anon_sym_LT2] = ACTIONS(2786), + [anon_sym_LT_EQ2] = ACTIONS(2784), + [anon_sym_GT_EQ2] = ACTIONS(2784), + [anon_sym_EQ_TILDE2] = ACTIONS(2784), + [anon_sym_BANG_TILDE2] = ACTIONS(2784), + [anon_sym_like2] = ACTIONS(2784), + [anon_sym_not_DASHlike2] = ACTIONS(2784), + [anon_sym_STAR_STAR2] = ACTIONS(2836), + [anon_sym_PLUS_PLUS2] = ACTIONS(2836), + [anon_sym_SLASH2] = ACTIONS(2830), + [anon_sym_mod2] = ACTIONS(2838), + [anon_sym_SLASH_SLASH2] = ACTIONS(2838), + [anon_sym_PLUS2] = ACTIONS(2840), + [anon_sym_bit_DASHshl2] = ACTIONS(2784), + [anon_sym_bit_DASHshr2] = ACTIONS(2784), + [anon_sym_bit_DASHand2] = ACTIONS(2784), + [anon_sym_bit_DASHxor2] = ACTIONS(2784), + [anon_sym_bit_DASHor2] = ACTIONS(2784), + [anon_sym_err_GT] = ACTIONS(2786), + [anon_sym_out_GT] = ACTIONS(2786), + [anon_sym_e_GT] = ACTIONS(2786), + [anon_sym_o_GT] = ACTIONS(2786), + [anon_sym_err_PLUSout_GT] = ACTIONS(2786), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2786), + [anon_sym_o_PLUSe_GT] = ACTIONS(2786), + [anon_sym_e_PLUSo_GT] = ACTIONS(2786), + [anon_sym_err_GT_GT] = ACTIONS(2784), + [anon_sym_out_GT_GT] = ACTIONS(2784), + [anon_sym_e_GT_GT] = ACTIONS(2784), + [anon_sym_o_GT_GT] = ACTIONS(2784), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2784), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2784), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2784), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2784), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1195)] = { - [aux_sym__repeat_newline] = STATE(1219), [sym_comment] = STATE(1195), - [anon_sym_in] = ACTIONS(2895), - [sym__newline] = ACTIONS(2860), - [anon_sym_SEMI] = ACTIONS(2754), - [anon_sym_PIPE] = ACTIONS(2754), - [anon_sym_err_GT_PIPE] = ACTIONS(2754), - [anon_sym_out_GT_PIPE] = ACTIONS(2754), - [anon_sym_e_GT_PIPE] = ACTIONS(2754), - [anon_sym_o_GT_PIPE] = ACTIONS(2754), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2754), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2754), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2754), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2754), - [anon_sym_RPAREN] = ACTIONS(2754), - [anon_sym_GT2] = ACTIONS(2807), - [anon_sym_DASH2] = ACTIONS(2809), - [anon_sym_STAR2] = ACTIONS(2811), - [anon_sym_and2] = ACTIONS(2754), - [anon_sym_xor2] = ACTIONS(2754), - [anon_sym_or2] = ACTIONS(2754), - [anon_sym_not_DASHin2] = ACTIONS(2895), - [anon_sym_has2] = ACTIONS(2895), - [anon_sym_not_DASHhas2] = ACTIONS(2895), - [anon_sym_starts_DASHwith2] = ACTIONS(2895), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2895), - [anon_sym_ends_DASHwith2] = ACTIONS(2895), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2895), - [anon_sym_EQ_EQ2] = ACTIONS(2813), - [anon_sym_BANG_EQ2] = ACTIONS(2813), - [anon_sym_LT2] = ACTIONS(2807), - [anon_sym_LT_EQ2] = ACTIONS(2813), - [anon_sym_GT_EQ2] = ACTIONS(2813), - [anon_sym_EQ_TILDE2] = ACTIONS(2897), - [anon_sym_BANG_TILDE2] = ACTIONS(2897), - [anon_sym_like2] = ACTIONS(2897), - [anon_sym_not_DASHlike2] = ACTIONS(2897), - [anon_sym_STAR_STAR2] = ACTIONS(2815), - [anon_sym_PLUS_PLUS2] = ACTIONS(2815), - [anon_sym_SLASH2] = ACTIONS(2811), - [anon_sym_mod2] = ACTIONS(2817), - [anon_sym_SLASH_SLASH2] = ACTIONS(2817), - [anon_sym_PLUS2] = ACTIONS(2819), - [anon_sym_bit_DASHshl2] = ACTIONS(2821), - [anon_sym_bit_DASHshr2] = ACTIONS(2821), - [anon_sym_bit_DASHand2] = ACTIONS(2899), - [anon_sym_bit_DASHxor2] = ACTIONS(2901), - [anon_sym_bit_DASHor2] = ACTIONS(2903), - [anon_sym_err_GT] = ACTIONS(2756), - [anon_sym_out_GT] = ACTIONS(2756), - [anon_sym_e_GT] = ACTIONS(2756), - [anon_sym_o_GT] = ACTIONS(2756), - [anon_sym_err_PLUSout_GT] = ACTIONS(2756), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2756), - [anon_sym_o_PLUSe_GT] = ACTIONS(2756), - [anon_sym_e_PLUSo_GT] = ACTIONS(2756), - [anon_sym_err_GT_GT] = ACTIONS(2754), - [anon_sym_out_GT_GT] = ACTIONS(2754), - [anon_sym_e_GT_GT] = ACTIONS(2754), - [anon_sym_o_GT_GT] = ACTIONS(2754), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2754), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2754), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2754), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2754), + [anon_sym_in] = ACTIONS(2910), + [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(2890), + [anon_sym_DASH2] = ACTIONS(2892), + [anon_sym_RBRACE] = ACTIONS(2648), + [anon_sym_STAR2] = ACTIONS(2894), + [anon_sym_and2] = ACTIONS(2648), + [anon_sym_xor2] = ACTIONS(2648), + [anon_sym_or2] = ACTIONS(2648), + [anon_sym_not_DASHin2] = ACTIONS(2910), + [anon_sym_has2] = ACTIONS(2910), + [anon_sym_not_DASHhas2] = ACTIONS(2910), + [anon_sym_starts_DASHwith2] = ACTIONS(2910), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2910), + [anon_sym_ends_DASHwith2] = ACTIONS(2910), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2910), + [anon_sym_EQ_EQ2] = ACTIONS(2896), + [anon_sym_BANG_EQ2] = ACTIONS(2896), + [anon_sym_LT2] = ACTIONS(2890), + [anon_sym_LT_EQ2] = ACTIONS(2896), + [anon_sym_GT_EQ2] = ACTIONS(2896), + [anon_sym_EQ_TILDE2] = ACTIONS(2912), + [anon_sym_BANG_TILDE2] = ACTIONS(2912), + [anon_sym_like2] = ACTIONS(2912), + [anon_sym_not_DASHlike2] = ACTIONS(2912), + [anon_sym_STAR_STAR2] = ACTIONS(2898), + [anon_sym_PLUS_PLUS2] = ACTIONS(2898), + [anon_sym_SLASH2] = ACTIONS(2894), + [anon_sym_mod2] = ACTIONS(2900), + [anon_sym_SLASH_SLASH2] = ACTIONS(2900), + [anon_sym_PLUS2] = ACTIONS(2902), + [anon_sym_bit_DASHshl2] = ACTIONS(2904), + [anon_sym_bit_DASHshr2] = ACTIONS(2904), + [anon_sym_bit_DASHand2] = ACTIONS(2914), + [anon_sym_bit_DASHxor2] = ACTIONS(2916), + [anon_sym_bit_DASHor2] = ACTIONS(2918), + [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(1196)] = { - [aux_sym__repeat_newline] = STATE(1230), [sym_comment] = STATE(1196), - [anon_sym_in] = ACTIONS(2895), - [sym__newline] = ACTIONS(2860), - [anon_sym_SEMI] = ACTIONS(2754), - [anon_sym_PIPE] = ACTIONS(2754), - [anon_sym_err_GT_PIPE] = ACTIONS(2754), - [anon_sym_out_GT_PIPE] = ACTIONS(2754), - [anon_sym_e_GT_PIPE] = ACTIONS(2754), - [anon_sym_o_GT_PIPE] = ACTIONS(2754), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2754), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2754), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2754), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2754), - [anon_sym_RPAREN] = ACTIONS(2754), - [anon_sym_GT2] = ACTIONS(2807), - [anon_sym_DASH2] = ACTIONS(2809), - [anon_sym_STAR2] = ACTIONS(2811), - [anon_sym_and2] = ACTIONS(2905), - [anon_sym_xor2] = ACTIONS(2754), - [anon_sym_or2] = ACTIONS(2754), - [anon_sym_not_DASHin2] = ACTIONS(2895), - [anon_sym_has2] = ACTIONS(2895), - [anon_sym_not_DASHhas2] = ACTIONS(2895), - [anon_sym_starts_DASHwith2] = ACTIONS(2895), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2895), - [anon_sym_ends_DASHwith2] = ACTIONS(2895), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2895), - [anon_sym_EQ_EQ2] = ACTIONS(2813), - [anon_sym_BANG_EQ2] = ACTIONS(2813), - [anon_sym_LT2] = ACTIONS(2807), - [anon_sym_LT_EQ2] = ACTIONS(2813), - [anon_sym_GT_EQ2] = ACTIONS(2813), - [anon_sym_EQ_TILDE2] = ACTIONS(2897), - [anon_sym_BANG_TILDE2] = ACTIONS(2897), - [anon_sym_like2] = ACTIONS(2897), - [anon_sym_not_DASHlike2] = ACTIONS(2897), - [anon_sym_STAR_STAR2] = ACTIONS(2815), - [anon_sym_PLUS_PLUS2] = ACTIONS(2815), - [anon_sym_SLASH2] = ACTIONS(2811), - [anon_sym_mod2] = ACTIONS(2817), - [anon_sym_SLASH_SLASH2] = ACTIONS(2817), - [anon_sym_PLUS2] = ACTIONS(2819), - [anon_sym_bit_DASHshl2] = ACTIONS(2821), - [anon_sym_bit_DASHshr2] = ACTIONS(2821), - [anon_sym_bit_DASHand2] = ACTIONS(2899), - [anon_sym_bit_DASHxor2] = ACTIONS(2901), - [anon_sym_bit_DASHor2] = ACTIONS(2903), - [anon_sym_err_GT] = ACTIONS(2756), - [anon_sym_out_GT] = ACTIONS(2756), - [anon_sym_e_GT] = ACTIONS(2756), - [anon_sym_o_GT] = ACTIONS(2756), - [anon_sym_err_PLUSout_GT] = ACTIONS(2756), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2756), - [anon_sym_o_PLUSe_GT] = ACTIONS(2756), - [anon_sym_e_PLUSo_GT] = ACTIONS(2756), - [anon_sym_err_GT_GT] = ACTIONS(2754), - [anon_sym_out_GT_GT] = ACTIONS(2754), - [anon_sym_e_GT_GT] = ACTIONS(2754), - [anon_sym_o_GT_GT] = ACTIONS(2754), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2754), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2754), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2754), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2754), + [anon_sym_in] = ACTIONS(2910), + [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(2890), + [anon_sym_DASH2] = ACTIONS(2892), + [anon_sym_RBRACE] = ACTIONS(2648), + [anon_sym_STAR2] = ACTIONS(2894), + [anon_sym_and2] = ACTIONS(2920), + [anon_sym_xor2] = ACTIONS(2648), + [anon_sym_or2] = ACTIONS(2648), + [anon_sym_not_DASHin2] = ACTIONS(2910), + [anon_sym_has2] = ACTIONS(2910), + [anon_sym_not_DASHhas2] = ACTIONS(2910), + [anon_sym_starts_DASHwith2] = ACTIONS(2910), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2910), + [anon_sym_ends_DASHwith2] = ACTIONS(2910), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2910), + [anon_sym_EQ_EQ2] = ACTIONS(2896), + [anon_sym_BANG_EQ2] = ACTIONS(2896), + [anon_sym_LT2] = ACTIONS(2890), + [anon_sym_LT_EQ2] = ACTIONS(2896), + [anon_sym_GT_EQ2] = ACTIONS(2896), + [anon_sym_EQ_TILDE2] = ACTIONS(2912), + [anon_sym_BANG_TILDE2] = ACTIONS(2912), + [anon_sym_like2] = ACTIONS(2912), + [anon_sym_not_DASHlike2] = ACTIONS(2912), + [anon_sym_STAR_STAR2] = ACTIONS(2898), + [anon_sym_PLUS_PLUS2] = ACTIONS(2898), + [anon_sym_SLASH2] = ACTIONS(2894), + [anon_sym_mod2] = ACTIONS(2900), + [anon_sym_SLASH_SLASH2] = ACTIONS(2900), + [anon_sym_PLUS2] = ACTIONS(2902), + [anon_sym_bit_DASHshl2] = ACTIONS(2904), + [anon_sym_bit_DASHshr2] = ACTIONS(2904), + [anon_sym_bit_DASHand2] = ACTIONS(2914), + [anon_sym_bit_DASHxor2] = ACTIONS(2916), + [anon_sym_bit_DASHor2] = ACTIONS(2918), + [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(1197)] = { - [aux_sym__repeat_newline] = STATE(1182), + [aux_sym__repeat_newline] = STATE(1274), [sym_comment] = STATE(1197), - [anon_sym_in] = ACTIONS(2720), - [sym__newline] = ACTIONS(2804), - [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(2815), - [anon_sym_PLUS_PLUS2] = ACTIONS(2815), - [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(2872), + [sym__newline] = ACTIONS(2850), + [anon_sym_SEMI] = ACTIONS(2798), + [anon_sym_PIPE] = ACTIONS(2798), + [anon_sym_err_GT_PIPE] = ACTIONS(2798), + [anon_sym_out_GT_PIPE] = ACTIONS(2798), + [anon_sym_e_GT_PIPE] = ACTIONS(2798), + [anon_sym_o_GT_PIPE] = ACTIONS(2798), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2798), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2798), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2798), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2798), + [anon_sym_RPAREN] = ACTIONS(2798), + [anon_sym_GT2] = ACTIONS(2853), + [anon_sym_DASH2] = ACTIONS(2855), + [anon_sym_STAR2] = ACTIONS(2857), + [anon_sym_and2] = ACTIONS(2798), + [anon_sym_xor2] = ACTIONS(2798), + [anon_sym_or2] = ACTIONS(2798), + [anon_sym_not_DASHin2] = ACTIONS(2872), + [anon_sym_has2] = ACTIONS(2872), + [anon_sym_not_DASHhas2] = ACTIONS(2872), + [anon_sym_starts_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2872), + [anon_sym_ends_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2872), + [anon_sym_EQ_EQ2] = ACTIONS(2859), + [anon_sym_BANG_EQ2] = ACTIONS(2859), + [anon_sym_LT2] = ACTIONS(2853), + [anon_sym_LT_EQ2] = ACTIONS(2859), + [anon_sym_GT_EQ2] = ACTIONS(2859), + [anon_sym_EQ_TILDE2] = ACTIONS(2879), + [anon_sym_BANG_TILDE2] = ACTIONS(2879), + [anon_sym_like2] = ACTIONS(2879), + [anon_sym_not_DASHlike2] = ACTIONS(2879), + [anon_sym_STAR_STAR2] = ACTIONS(2861), + [anon_sym_PLUS_PLUS2] = ACTIONS(2861), + [anon_sym_SLASH2] = ACTIONS(2857), + [anon_sym_mod2] = ACTIONS(2863), + [anon_sym_SLASH_SLASH2] = ACTIONS(2863), + [anon_sym_PLUS2] = ACTIONS(2865), + [anon_sym_bit_DASHshl2] = ACTIONS(2867), + [anon_sym_bit_DASHshr2] = ACTIONS(2867), + [anon_sym_bit_DASHand2] = ACTIONS(2881), + [anon_sym_bit_DASHxor2] = ACTIONS(2798), + [anon_sym_bit_DASHor2] = ACTIONS(2798), + [anon_sym_err_GT] = ACTIONS(2800), + [anon_sym_out_GT] = ACTIONS(2800), + [anon_sym_e_GT] = ACTIONS(2800), + [anon_sym_o_GT] = ACTIONS(2800), + [anon_sym_err_PLUSout_GT] = ACTIONS(2800), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2800), + [anon_sym_o_PLUSe_GT] = ACTIONS(2800), + [anon_sym_e_PLUSo_GT] = ACTIONS(2800), + [anon_sym_err_GT_GT] = ACTIONS(2798), + [anon_sym_out_GT_GT] = ACTIONS(2798), + [anon_sym_e_GT_GT] = ACTIONS(2798), + [anon_sym_o_GT_GT] = ACTIONS(2798), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2798), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2798), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2798), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2798), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1198)] = { - [aux_sym__repeat_newline] = STATE(527), + [aux_sym__repeat_newline] = STATE(1209), [sym_comment] = STATE(1198), - [anon_sym_in] = ACTIONS(2750), - [sym__newline] = ACTIONS(2750), - [anon_sym_SEMI] = ACTIONS(2750), - [anon_sym_PIPE] = ACTIONS(2750), - [anon_sym_err_GT_PIPE] = ACTIONS(2750), - [anon_sym_out_GT_PIPE] = ACTIONS(2750), - [anon_sym_e_GT_PIPE] = ACTIONS(2750), - [anon_sym_o_GT_PIPE] = ACTIONS(2750), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2750), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2750), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2750), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2750), - [anon_sym_RPAREN] = ACTIONS(2750), - [anon_sym_GT2] = ACTIONS(2911), - [anon_sym_DASH2] = ACTIONS(2913), - [anon_sym_STAR2] = ACTIONS(2915), - [anon_sym_and2] = ACTIONS(2750), - [anon_sym_xor2] = ACTIONS(2750), - [anon_sym_or2] = ACTIONS(2750), - [anon_sym_not_DASHin2] = ACTIONS(2750), - [anon_sym_has2] = ACTIONS(2750), - [anon_sym_not_DASHhas2] = ACTIONS(2750), - [anon_sym_starts_DASHwith2] = ACTIONS(2750), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2750), - [anon_sym_ends_DASHwith2] = ACTIONS(2750), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2750), - [anon_sym_EQ_EQ2] = ACTIONS(2917), - [anon_sym_BANG_EQ2] = ACTIONS(2917), - [anon_sym_LT2] = ACTIONS(2911), - [anon_sym_LT_EQ2] = ACTIONS(2917), - [anon_sym_GT_EQ2] = ACTIONS(2917), - [anon_sym_EQ_TILDE2] = ACTIONS(2750), - [anon_sym_BANG_TILDE2] = ACTIONS(2750), - [anon_sym_like2] = ACTIONS(2750), - [anon_sym_not_DASHlike2] = ACTIONS(2750), - [anon_sym_STAR_STAR2] = ACTIONS(2919), - [anon_sym_PLUS_PLUS2] = ACTIONS(2919), - [anon_sym_SLASH2] = ACTIONS(2915), - [anon_sym_mod2] = ACTIONS(2921), - [anon_sym_SLASH_SLASH2] = ACTIONS(2921), - [anon_sym_PLUS2] = ACTIONS(2923), - [anon_sym_bit_DASHshl2] = ACTIONS(2925), - [anon_sym_bit_DASHshr2] = ACTIONS(2925), - [anon_sym_bit_DASHand2] = ACTIONS(2750), - [anon_sym_bit_DASHxor2] = ACTIONS(2750), - [anon_sym_bit_DASHor2] = ACTIONS(2750), - [anon_sym_err_GT] = ACTIONS(2752), - [anon_sym_out_GT] = ACTIONS(2752), - [anon_sym_e_GT] = ACTIONS(2752), - [anon_sym_o_GT] = ACTIONS(2752), - [anon_sym_err_PLUSout_GT] = ACTIONS(2752), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2752), - [anon_sym_o_PLUSe_GT] = ACTIONS(2752), - [anon_sym_e_PLUSo_GT] = ACTIONS(2752), - [anon_sym_err_GT_GT] = ACTIONS(2750), - [anon_sym_out_GT_GT] = ACTIONS(2750), - [anon_sym_e_GT_GT] = ACTIONS(2750), - [anon_sym_o_GT_GT] = ACTIONS(2750), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2750), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2750), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2750), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2750), + [anon_sym_in] = ACTIONS(2872), + [sym__newline] = ACTIONS(2887), + [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(2853), + [anon_sym_DASH2] = ACTIONS(2855), + [anon_sym_STAR2] = ACTIONS(2857), + [anon_sym_and2] = ACTIONS(2776), + [anon_sym_xor2] = ACTIONS(2776), + [anon_sym_or2] = ACTIONS(2776), + [anon_sym_not_DASHin2] = ACTIONS(2872), + [anon_sym_has2] = ACTIONS(2872), + [anon_sym_not_DASHhas2] = ACTIONS(2872), + [anon_sym_starts_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2872), + [anon_sym_ends_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2872), + [anon_sym_EQ_EQ2] = ACTIONS(2859), + [anon_sym_BANG_EQ2] = ACTIONS(2859), + [anon_sym_LT2] = ACTIONS(2853), + [anon_sym_LT_EQ2] = ACTIONS(2859), + [anon_sym_GT_EQ2] = ACTIONS(2859), + [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(2861), + [anon_sym_PLUS_PLUS2] = ACTIONS(2861), + [anon_sym_SLASH2] = ACTIONS(2857), + [anon_sym_mod2] = ACTIONS(2863), + [anon_sym_SLASH_SLASH2] = ACTIONS(2863), + [anon_sym_PLUS2] = ACTIONS(2865), + [anon_sym_bit_DASHshl2] = ACTIONS(2867), + [anon_sym_bit_DASHshr2] = ACTIONS(2867), + [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(1199)] = { - [aux_sym__repeat_newline] = STATE(1232), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1199), - [anon_sym_in] = ACTIONS(2746), - [sym__newline] = ACTIONS(2941), - [anon_sym_SEMI] = ACTIONS(2746), - [anon_sym_PIPE] = ACTIONS(2746), - [anon_sym_err_GT_PIPE] = ACTIONS(2746), - [anon_sym_out_GT_PIPE] = ACTIONS(2746), - [anon_sym_e_GT_PIPE] = ACTIONS(2746), - [anon_sym_o_GT_PIPE] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2746), - [anon_sym_RPAREN] = ACTIONS(2746), - [anon_sym_GT2] = ACTIONS(2748), - [anon_sym_DASH2] = ACTIONS(2809), - [anon_sym_STAR2] = ACTIONS(2811), - [anon_sym_and2] = ACTIONS(2746), - [anon_sym_xor2] = ACTIONS(2746), - [anon_sym_or2] = ACTIONS(2746), - [anon_sym_not_DASHin2] = ACTIONS(2746), - [anon_sym_has2] = ACTIONS(2746), - [anon_sym_not_DASHhas2] = ACTIONS(2746), - [anon_sym_starts_DASHwith2] = ACTIONS(2746), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2746), - [anon_sym_ends_DASHwith2] = ACTIONS(2746), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2746), - [anon_sym_EQ_EQ2] = ACTIONS(2746), - [anon_sym_BANG_EQ2] = ACTIONS(2746), - [anon_sym_LT2] = ACTIONS(2748), - [anon_sym_LT_EQ2] = ACTIONS(2746), - [anon_sym_GT_EQ2] = ACTIONS(2746), - [anon_sym_EQ_TILDE2] = ACTIONS(2746), - [anon_sym_BANG_TILDE2] = ACTIONS(2746), - [anon_sym_like2] = ACTIONS(2746), - [anon_sym_not_DASHlike2] = ACTIONS(2746), - [anon_sym_STAR_STAR2] = ACTIONS(2815), - [anon_sym_PLUS_PLUS2] = ACTIONS(2815), - [anon_sym_SLASH2] = ACTIONS(2811), - [anon_sym_mod2] = ACTIONS(2817), - [anon_sym_SLASH_SLASH2] = ACTIONS(2817), - [anon_sym_PLUS2] = ACTIONS(2819), - [anon_sym_bit_DASHshl2] = ACTIONS(2821), - [anon_sym_bit_DASHshr2] = ACTIONS(2821), - [anon_sym_bit_DASHand2] = ACTIONS(2746), - [anon_sym_bit_DASHxor2] = ACTIONS(2746), - [anon_sym_bit_DASHor2] = ACTIONS(2746), - [anon_sym_err_GT] = ACTIONS(2748), - [anon_sym_out_GT] = ACTIONS(2748), - [anon_sym_e_GT] = ACTIONS(2748), - [anon_sym_o_GT] = ACTIONS(2748), - [anon_sym_err_PLUSout_GT] = ACTIONS(2748), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2748), - [anon_sym_o_PLUSe_GT] = ACTIONS(2748), - [anon_sym_e_PLUSo_GT] = ACTIONS(2748), - [anon_sym_err_GT_GT] = ACTIONS(2746), - [anon_sym_out_GT_GT] = ACTIONS(2746), - [anon_sym_e_GT_GT] = ACTIONS(2746), - [anon_sym_o_GT_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2746), + [anon_sym_in] = ACTIONS(2824), + [sym__newline] = ACTIONS(2810), + [anon_sym_SEMI] = ACTIONS(2810), + [anon_sym_PIPE] = ACTIONS(2810), + [anon_sym_err_GT_PIPE] = ACTIONS(2810), + [anon_sym_out_GT_PIPE] = ACTIONS(2810), + [anon_sym_e_GT_PIPE] = ACTIONS(2810), + [anon_sym_o_GT_PIPE] = ACTIONS(2810), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2810), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2810), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2810), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2810), + [anon_sym_RPAREN] = ACTIONS(2810), + [anon_sym_GT2] = ACTIONS(2826), + [anon_sym_DASH2] = ACTIONS(2828), + [anon_sym_STAR2] = ACTIONS(2830), + [anon_sym_and2] = ACTIONS(2906), + [anon_sym_xor2] = ACTIONS(2810), + [anon_sym_or2] = ACTIONS(2810), + [anon_sym_not_DASHin2] = ACTIONS(2824), + [anon_sym_has2] = ACTIONS(2824), + [anon_sym_not_DASHhas2] = ACTIONS(2824), + [anon_sym_starts_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2824), + [anon_sym_ends_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2824), + [anon_sym_EQ_EQ2] = ACTIONS(2832), + [anon_sym_BANG_EQ2] = ACTIONS(2832), + [anon_sym_LT2] = ACTIONS(2826), + [anon_sym_LT_EQ2] = ACTIONS(2832), + [anon_sym_GT_EQ2] = ACTIONS(2832), + [anon_sym_EQ_TILDE2] = ACTIONS(2834), + [anon_sym_BANG_TILDE2] = ACTIONS(2834), + [anon_sym_like2] = ACTIONS(2834), + [anon_sym_not_DASHlike2] = ACTIONS(2834), + [anon_sym_STAR_STAR2] = ACTIONS(2836), + [anon_sym_PLUS_PLUS2] = ACTIONS(2836), + [anon_sym_SLASH2] = ACTIONS(2830), + [anon_sym_mod2] = ACTIONS(2838), + [anon_sym_SLASH_SLASH2] = ACTIONS(2838), + [anon_sym_PLUS2] = ACTIONS(2840), + [anon_sym_bit_DASHshl2] = ACTIONS(2842), + [anon_sym_bit_DASHshr2] = ACTIONS(2842), + [anon_sym_bit_DASHand2] = ACTIONS(2844), + [anon_sym_bit_DASHxor2] = ACTIONS(2846), + [anon_sym_bit_DASHor2] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2812), + [anon_sym_out_GT] = ACTIONS(2812), + [anon_sym_e_GT] = ACTIONS(2812), + [anon_sym_o_GT] = ACTIONS(2812), + [anon_sym_err_PLUSout_GT] = ACTIONS(2812), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2812), + [anon_sym_o_PLUSe_GT] = ACTIONS(2812), + [anon_sym_e_PLUSo_GT] = ACTIONS(2812), + [anon_sym_err_GT_GT] = ACTIONS(2810), + [anon_sym_out_GT_GT] = ACTIONS(2810), + [anon_sym_e_GT_GT] = ACTIONS(2810), + [anon_sym_o_GT_GT] = ACTIONS(2810), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2810), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2810), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2810), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2810), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1200)] = { + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1200), - [ts_builtin_sym_end] = ACTIONS(886), - [anon_sym_in] = ACTIONS(886), - [sym__newline] = ACTIONS(886), - [anon_sym_SEMI] = ACTIONS(886), - [anon_sym_PIPE] = ACTIONS(886), - [anon_sym_err_GT_PIPE] = ACTIONS(886), - [anon_sym_out_GT_PIPE] = ACTIONS(886), - [anon_sym_e_GT_PIPE] = ACTIONS(886), - [anon_sym_o_GT_PIPE] = ACTIONS(886), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(886), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(886), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(886), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(886), - [anon_sym_GT2] = ACTIONS(866), - [anon_sym_DASH2] = ACTIONS(886), - [anon_sym_STAR2] = ACTIONS(866), - [anon_sym_and2] = ACTIONS(886), - [anon_sym_xor2] = ACTIONS(886), - [anon_sym_or2] = ACTIONS(886), - [anon_sym_not_DASHin2] = ACTIONS(886), - [anon_sym_has2] = ACTIONS(886), - [anon_sym_not_DASHhas2] = ACTIONS(886), - [anon_sym_starts_DASHwith2] = ACTIONS(886), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(886), - [anon_sym_ends_DASHwith2] = ACTIONS(886), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(886), - [anon_sym_EQ_EQ2] = ACTIONS(886), - [anon_sym_BANG_EQ2] = ACTIONS(886), - [anon_sym_LT2] = ACTIONS(866), - [anon_sym_LT_EQ2] = ACTIONS(886), - [anon_sym_GT_EQ2] = ACTIONS(886), - [anon_sym_EQ_TILDE2] = ACTIONS(886), - [anon_sym_BANG_TILDE2] = ACTIONS(886), - [anon_sym_like2] = ACTIONS(886), - [anon_sym_not_DASHlike2] = ACTIONS(886), - [anon_sym_STAR_STAR2] = ACTIONS(886), - [anon_sym_PLUS_PLUS2] = ACTIONS(886), - [anon_sym_SLASH2] = ACTIONS(866), - [anon_sym_mod2] = ACTIONS(886), - [anon_sym_SLASH_SLASH2] = ACTIONS(886), - [anon_sym_PLUS2] = ACTIONS(866), - [anon_sym_bit_DASHshl2] = ACTIONS(886), - [anon_sym_bit_DASHshr2] = ACTIONS(886), - [anon_sym_bit_DASHand2] = ACTIONS(886), - [anon_sym_bit_DASHxor2] = ACTIONS(886), - [anon_sym_bit_DASHor2] = ACTIONS(886), - [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(886), - [anon_sym_out_GT_GT] = ACTIONS(886), - [anon_sym_e_GT_GT] = ACTIONS(886), - [anon_sym_o_GT_GT] = ACTIONS(886), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(886), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(886), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(886), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(886), - [sym__unquoted_pattern] = ACTIONS(1820), + [anon_sym_in] = ACTIONS(2824), + [sym__newline] = ACTIONS(2784), + [anon_sym_SEMI] = ACTIONS(2784), + [anon_sym_PIPE] = ACTIONS(2784), + [anon_sym_err_GT_PIPE] = ACTIONS(2784), + [anon_sym_out_GT_PIPE] = ACTIONS(2784), + [anon_sym_e_GT_PIPE] = ACTIONS(2784), + [anon_sym_o_GT_PIPE] = ACTIONS(2784), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2784), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2784), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2784), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2784), + [anon_sym_RPAREN] = ACTIONS(2784), + [anon_sym_GT2] = ACTIONS(2826), + [anon_sym_DASH2] = ACTIONS(2828), + [anon_sym_STAR2] = ACTIONS(2830), + [anon_sym_and2] = ACTIONS(2784), + [anon_sym_xor2] = ACTIONS(2784), + [anon_sym_or2] = ACTIONS(2784), + [anon_sym_not_DASHin2] = ACTIONS(2824), + [anon_sym_has2] = ACTIONS(2824), + [anon_sym_not_DASHhas2] = ACTIONS(2824), + [anon_sym_starts_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2824), + [anon_sym_ends_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2824), + [anon_sym_EQ_EQ2] = ACTIONS(2832), + [anon_sym_BANG_EQ2] = ACTIONS(2832), + [anon_sym_LT2] = ACTIONS(2826), + [anon_sym_LT_EQ2] = ACTIONS(2832), + [anon_sym_GT_EQ2] = ACTIONS(2832), + [anon_sym_EQ_TILDE2] = ACTIONS(2834), + [anon_sym_BANG_TILDE2] = ACTIONS(2834), + [anon_sym_like2] = ACTIONS(2834), + [anon_sym_not_DASHlike2] = ACTIONS(2834), + [anon_sym_STAR_STAR2] = ACTIONS(2836), + [anon_sym_PLUS_PLUS2] = ACTIONS(2836), + [anon_sym_SLASH2] = ACTIONS(2830), + [anon_sym_mod2] = ACTIONS(2838), + [anon_sym_SLASH_SLASH2] = ACTIONS(2838), + [anon_sym_PLUS2] = ACTIONS(2840), + [anon_sym_bit_DASHshl2] = ACTIONS(2842), + [anon_sym_bit_DASHshr2] = ACTIONS(2842), + [anon_sym_bit_DASHand2] = ACTIONS(2784), + [anon_sym_bit_DASHxor2] = ACTIONS(2784), + [anon_sym_bit_DASHor2] = ACTIONS(2784), + [anon_sym_err_GT] = ACTIONS(2786), + [anon_sym_out_GT] = ACTIONS(2786), + [anon_sym_e_GT] = ACTIONS(2786), + [anon_sym_o_GT] = ACTIONS(2786), + [anon_sym_err_PLUSout_GT] = ACTIONS(2786), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2786), + [anon_sym_o_PLUSe_GT] = ACTIONS(2786), + [anon_sym_e_PLUSo_GT] = ACTIONS(2786), + [anon_sym_err_GT_GT] = ACTIONS(2784), + [anon_sym_out_GT_GT] = ACTIONS(2784), + [anon_sym_e_GT_GT] = ACTIONS(2784), + [anon_sym_o_GT_GT] = ACTIONS(2784), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2784), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2784), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2784), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2784), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1201)] = { - [aux_sym__repeat_newline] = STATE(527), + [aux_sym__repeat_newline] = STATE(1257), [sym_comment] = STATE(1201), - [anon_sym_in] = ACTIONS(2750), - [sym__newline] = ACTIONS(2750), - [anon_sym_SEMI] = ACTIONS(2750), - [anon_sym_PIPE] = ACTIONS(2750), - [anon_sym_err_GT_PIPE] = ACTIONS(2750), - [anon_sym_out_GT_PIPE] = ACTIONS(2750), - [anon_sym_e_GT_PIPE] = ACTIONS(2750), - [anon_sym_o_GT_PIPE] = ACTIONS(2750), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2750), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2750), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2750), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2750), - [anon_sym_RPAREN] = ACTIONS(2750), - [anon_sym_GT2] = ACTIONS(2752), - [anon_sym_DASH2] = ACTIONS(2913), - [anon_sym_STAR2] = ACTIONS(2915), - [anon_sym_and2] = ACTIONS(2750), - [anon_sym_xor2] = ACTIONS(2750), - [anon_sym_or2] = ACTIONS(2750), - [anon_sym_not_DASHin2] = ACTIONS(2750), - [anon_sym_has2] = ACTIONS(2750), - [anon_sym_not_DASHhas2] = ACTIONS(2750), - [anon_sym_starts_DASHwith2] = ACTIONS(2750), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2750), - [anon_sym_ends_DASHwith2] = ACTIONS(2750), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2750), - [anon_sym_EQ_EQ2] = ACTIONS(2750), - [anon_sym_BANG_EQ2] = ACTIONS(2750), - [anon_sym_LT2] = ACTIONS(2752), - [anon_sym_LT_EQ2] = ACTIONS(2750), - [anon_sym_GT_EQ2] = ACTIONS(2750), - [anon_sym_EQ_TILDE2] = ACTIONS(2750), - [anon_sym_BANG_TILDE2] = ACTIONS(2750), - [anon_sym_like2] = ACTIONS(2750), - [anon_sym_not_DASHlike2] = ACTIONS(2750), - [anon_sym_STAR_STAR2] = ACTIONS(2919), - [anon_sym_PLUS_PLUS2] = ACTIONS(2919), - [anon_sym_SLASH2] = ACTIONS(2915), - [anon_sym_mod2] = ACTIONS(2921), - [anon_sym_SLASH_SLASH2] = ACTIONS(2921), - [anon_sym_PLUS2] = ACTIONS(2923), - [anon_sym_bit_DASHshl2] = ACTIONS(2925), - [anon_sym_bit_DASHshr2] = ACTIONS(2925), - [anon_sym_bit_DASHand2] = ACTIONS(2750), - [anon_sym_bit_DASHxor2] = ACTIONS(2750), - [anon_sym_bit_DASHor2] = ACTIONS(2750), - [anon_sym_err_GT] = ACTIONS(2752), - [anon_sym_out_GT] = ACTIONS(2752), - [anon_sym_e_GT] = ACTIONS(2752), - [anon_sym_o_GT] = ACTIONS(2752), - [anon_sym_err_PLUSout_GT] = ACTIONS(2752), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2752), - [anon_sym_o_PLUSe_GT] = ACTIONS(2752), - [anon_sym_e_PLUSo_GT] = ACTIONS(2752), - [anon_sym_err_GT_GT] = ACTIONS(2750), - [anon_sym_out_GT_GT] = ACTIONS(2750), - [anon_sym_e_GT_GT] = ACTIONS(2750), - [anon_sym_o_GT_GT] = ACTIONS(2750), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2750), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2750), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2750), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2750), + [anon_sym_in] = ACTIONS(2872), + [sym__newline] = ACTIONS(2922), + [anon_sym_SEMI] = ACTIONS(2806), + [anon_sym_PIPE] = ACTIONS(2806), + [anon_sym_err_GT_PIPE] = ACTIONS(2806), + [anon_sym_out_GT_PIPE] = ACTIONS(2806), + [anon_sym_e_GT_PIPE] = ACTIONS(2806), + [anon_sym_o_GT_PIPE] = ACTIONS(2806), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2806), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2806), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2806), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2806), + [anon_sym_RPAREN] = ACTIONS(2806), + [anon_sym_GT2] = ACTIONS(2853), + [anon_sym_DASH2] = ACTIONS(2855), + [anon_sym_STAR2] = ACTIONS(2857), + [anon_sym_and2] = ACTIONS(2877), + [anon_sym_xor2] = ACTIONS(2924), + [anon_sym_or2] = ACTIONS(2806), + [anon_sym_not_DASHin2] = ACTIONS(2872), + [anon_sym_has2] = ACTIONS(2872), + [anon_sym_not_DASHhas2] = ACTIONS(2872), + [anon_sym_starts_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2872), + [anon_sym_ends_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2872), + [anon_sym_EQ_EQ2] = ACTIONS(2859), + [anon_sym_BANG_EQ2] = ACTIONS(2859), + [anon_sym_LT2] = ACTIONS(2853), + [anon_sym_LT_EQ2] = ACTIONS(2859), + [anon_sym_GT_EQ2] = ACTIONS(2859), + [anon_sym_EQ_TILDE2] = ACTIONS(2879), + [anon_sym_BANG_TILDE2] = ACTIONS(2879), + [anon_sym_like2] = ACTIONS(2879), + [anon_sym_not_DASHlike2] = ACTIONS(2879), + [anon_sym_STAR_STAR2] = ACTIONS(2861), + [anon_sym_PLUS_PLUS2] = ACTIONS(2861), + [anon_sym_SLASH2] = ACTIONS(2857), + [anon_sym_mod2] = ACTIONS(2863), + [anon_sym_SLASH_SLASH2] = ACTIONS(2863), + [anon_sym_PLUS2] = ACTIONS(2865), + [anon_sym_bit_DASHshl2] = ACTIONS(2867), + [anon_sym_bit_DASHshr2] = ACTIONS(2867), + [anon_sym_bit_DASHand2] = ACTIONS(2881), + [anon_sym_bit_DASHxor2] = ACTIONS(2883), + [anon_sym_bit_DASHor2] = ACTIONS(2885), + [anon_sym_err_GT] = ACTIONS(2808), + [anon_sym_out_GT] = ACTIONS(2808), + [anon_sym_e_GT] = ACTIONS(2808), + [anon_sym_o_GT] = ACTIONS(2808), + [anon_sym_err_PLUSout_GT] = ACTIONS(2808), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2808), + [anon_sym_o_PLUSe_GT] = ACTIONS(2808), + [anon_sym_e_PLUSo_GT] = ACTIONS(2808), + [anon_sym_err_GT_GT] = ACTIONS(2806), + [anon_sym_out_GT_GT] = ACTIONS(2806), + [anon_sym_e_GT_GT] = ACTIONS(2806), + [anon_sym_o_GT_GT] = ACTIONS(2806), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2806), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2806), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2806), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2806), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1202)] = { - [aux_sym__repeat_newline] = STATE(1234), [sym_comment] = STATE(1202), - [anon_sym_in] = ACTIONS(2746), - [sym__newline] = ACTIONS(2941), - [anon_sym_SEMI] = ACTIONS(2746), - [anon_sym_PIPE] = ACTIONS(2746), - [anon_sym_err_GT_PIPE] = ACTIONS(2746), - [anon_sym_out_GT_PIPE] = ACTIONS(2746), - [anon_sym_e_GT_PIPE] = ACTIONS(2746), - [anon_sym_o_GT_PIPE] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2746), - [anon_sym_RPAREN] = ACTIONS(2746), - [anon_sym_GT2] = ACTIONS(2748), - [anon_sym_DASH2] = ACTIONS(2746), - [anon_sym_STAR2] = ACTIONS(2811), - [anon_sym_and2] = ACTIONS(2746), - [anon_sym_xor2] = ACTIONS(2746), - [anon_sym_or2] = ACTIONS(2746), - [anon_sym_not_DASHin2] = ACTIONS(2746), - [anon_sym_has2] = ACTIONS(2746), - [anon_sym_not_DASHhas2] = ACTIONS(2746), - [anon_sym_starts_DASHwith2] = ACTIONS(2746), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2746), - [anon_sym_ends_DASHwith2] = ACTIONS(2746), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2746), - [anon_sym_EQ_EQ2] = ACTIONS(2746), - [anon_sym_BANG_EQ2] = ACTIONS(2746), - [anon_sym_LT2] = ACTIONS(2748), - [anon_sym_LT_EQ2] = ACTIONS(2746), - [anon_sym_GT_EQ2] = ACTIONS(2746), - [anon_sym_EQ_TILDE2] = ACTIONS(2746), - [anon_sym_BANG_TILDE2] = ACTIONS(2746), - [anon_sym_like2] = ACTIONS(2746), - [anon_sym_not_DASHlike2] = ACTIONS(2746), - [anon_sym_STAR_STAR2] = ACTIONS(2815), - [anon_sym_PLUS_PLUS2] = ACTIONS(2815), - [anon_sym_SLASH2] = ACTIONS(2811), - [anon_sym_mod2] = ACTIONS(2817), - [anon_sym_SLASH_SLASH2] = ACTIONS(2817), - [anon_sym_PLUS2] = ACTIONS(2748), - [anon_sym_bit_DASHshl2] = ACTIONS(2746), - [anon_sym_bit_DASHshr2] = ACTIONS(2746), - [anon_sym_bit_DASHand2] = ACTIONS(2746), - [anon_sym_bit_DASHxor2] = ACTIONS(2746), - [anon_sym_bit_DASHor2] = ACTIONS(2746), - [anon_sym_err_GT] = ACTIONS(2748), - [anon_sym_out_GT] = ACTIONS(2748), - [anon_sym_e_GT] = ACTIONS(2748), - [anon_sym_o_GT] = ACTIONS(2748), - [anon_sym_err_PLUSout_GT] = ACTIONS(2748), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2748), - [anon_sym_o_PLUSe_GT] = ACTIONS(2748), - [anon_sym_e_PLUSo_GT] = ACTIONS(2748), - [anon_sym_err_GT_GT] = ACTIONS(2746), - [anon_sym_out_GT_GT] = ACTIONS(2746), - [anon_sym_e_GT_GT] = ACTIONS(2746), - [anon_sym_o_GT_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2746), + [anon_sym_in] = ACTIONS(2910), + [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(2890), + [anon_sym_DASH2] = ACTIONS(2892), + [anon_sym_RBRACE] = ACTIONS(2648), + [anon_sym_STAR2] = ACTIONS(2894), + [anon_sym_and2] = ACTIONS(2920), + [anon_sym_xor2] = ACTIONS(2926), + [anon_sym_or2] = ACTIONS(2648), + [anon_sym_not_DASHin2] = ACTIONS(2910), + [anon_sym_has2] = ACTIONS(2910), + [anon_sym_not_DASHhas2] = ACTIONS(2910), + [anon_sym_starts_DASHwith2] = ACTIONS(2910), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2910), + [anon_sym_ends_DASHwith2] = ACTIONS(2910), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2910), + [anon_sym_EQ_EQ2] = ACTIONS(2896), + [anon_sym_BANG_EQ2] = ACTIONS(2896), + [anon_sym_LT2] = ACTIONS(2890), + [anon_sym_LT_EQ2] = ACTIONS(2896), + [anon_sym_GT_EQ2] = ACTIONS(2896), + [anon_sym_EQ_TILDE2] = ACTIONS(2912), + [anon_sym_BANG_TILDE2] = ACTIONS(2912), + [anon_sym_like2] = ACTIONS(2912), + [anon_sym_not_DASHlike2] = ACTIONS(2912), + [anon_sym_STAR_STAR2] = ACTIONS(2898), + [anon_sym_PLUS_PLUS2] = ACTIONS(2898), + [anon_sym_SLASH2] = ACTIONS(2894), + [anon_sym_mod2] = ACTIONS(2900), + [anon_sym_SLASH_SLASH2] = ACTIONS(2900), + [anon_sym_PLUS2] = ACTIONS(2902), + [anon_sym_bit_DASHshl2] = ACTIONS(2904), + [anon_sym_bit_DASHshr2] = ACTIONS(2904), + [anon_sym_bit_DASHand2] = ACTIONS(2914), + [anon_sym_bit_DASHxor2] = ACTIONS(2916), + [anon_sym_bit_DASHor2] = ACTIONS(2918), + [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(1203)] = { - [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1203), - [anon_sym_in] = ACTIONS(2750), - [sym__newline] = ACTIONS(2750), - [anon_sym_SEMI] = ACTIONS(2750), - [anon_sym_PIPE] = ACTIONS(2750), - [anon_sym_err_GT_PIPE] = ACTIONS(2750), - [anon_sym_out_GT_PIPE] = ACTIONS(2750), - [anon_sym_e_GT_PIPE] = ACTIONS(2750), - [anon_sym_o_GT_PIPE] = ACTIONS(2750), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2750), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2750), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2750), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2750), - [anon_sym_RPAREN] = ACTIONS(2750), - [anon_sym_GT2] = ACTIONS(2752), - [anon_sym_DASH2] = ACTIONS(2750), - [anon_sym_STAR2] = ACTIONS(2915), - [anon_sym_and2] = ACTIONS(2750), - [anon_sym_xor2] = ACTIONS(2750), - [anon_sym_or2] = ACTIONS(2750), - [anon_sym_not_DASHin2] = ACTIONS(2750), - [anon_sym_has2] = ACTIONS(2750), - [anon_sym_not_DASHhas2] = ACTIONS(2750), - [anon_sym_starts_DASHwith2] = ACTIONS(2750), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2750), - [anon_sym_ends_DASHwith2] = ACTIONS(2750), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2750), - [anon_sym_EQ_EQ2] = ACTIONS(2750), - [anon_sym_BANG_EQ2] = ACTIONS(2750), - [anon_sym_LT2] = ACTIONS(2752), - [anon_sym_LT_EQ2] = ACTIONS(2750), - [anon_sym_GT_EQ2] = ACTIONS(2750), - [anon_sym_EQ_TILDE2] = ACTIONS(2750), - [anon_sym_BANG_TILDE2] = ACTIONS(2750), - [anon_sym_like2] = ACTIONS(2750), - [anon_sym_not_DASHlike2] = ACTIONS(2750), - [anon_sym_STAR_STAR2] = ACTIONS(2919), - [anon_sym_PLUS_PLUS2] = ACTIONS(2919), - [anon_sym_SLASH2] = ACTIONS(2915), - [anon_sym_mod2] = ACTIONS(2921), - [anon_sym_SLASH_SLASH2] = ACTIONS(2921), - [anon_sym_PLUS2] = ACTIONS(2752), - [anon_sym_bit_DASHshl2] = ACTIONS(2750), - [anon_sym_bit_DASHshr2] = ACTIONS(2750), - [anon_sym_bit_DASHand2] = ACTIONS(2750), - [anon_sym_bit_DASHxor2] = ACTIONS(2750), - [anon_sym_bit_DASHor2] = ACTIONS(2750), - [anon_sym_err_GT] = ACTIONS(2752), - [anon_sym_out_GT] = ACTIONS(2752), - [anon_sym_e_GT] = ACTIONS(2752), - [anon_sym_o_GT] = ACTIONS(2752), - [anon_sym_err_PLUSout_GT] = ACTIONS(2752), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2752), - [anon_sym_o_PLUSe_GT] = ACTIONS(2752), - [anon_sym_e_PLUSo_GT] = ACTIONS(2752), - [anon_sym_err_GT_GT] = ACTIONS(2750), - [anon_sym_out_GT_GT] = ACTIONS(2750), - [anon_sym_e_GT_GT] = ACTIONS(2750), - [anon_sym_o_GT_GT] = ACTIONS(2750), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2750), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2750), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2750), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2750), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(2360), + [aux_sym_cmd_identifier_token2] = ACTIONS(2822), + [anon_sym_in] = ACTIONS(2362), + [sym__newline] = ACTIONS(2360), + [anon_sym_SEMI] = ACTIONS(2360), + [anon_sym_PIPE] = ACTIONS(2360), + [anon_sym_err_GT_PIPE] = ACTIONS(2360), + [anon_sym_out_GT_PIPE] = ACTIONS(2360), + [anon_sym_e_GT_PIPE] = ACTIONS(2360), + [anon_sym_o_GT_PIPE] = ACTIONS(2360), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2360), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2360), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2360), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2360), + [anon_sym_GT2] = ACTIONS(2362), + [anon_sym_DASH2] = ACTIONS(2362), + [anon_sym_STAR2] = ACTIONS(2362), + [anon_sym_and2] = ACTIONS(2362), + [anon_sym_xor2] = ACTIONS(2362), + [anon_sym_or2] = ACTIONS(2362), + [anon_sym_not_DASHin2] = ACTIONS(2362), + [anon_sym_has2] = ACTIONS(2362), + [anon_sym_not_DASHhas2] = ACTIONS(2362), + [anon_sym_starts_DASHwith2] = ACTIONS(2362), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2362), + [anon_sym_ends_DASHwith2] = ACTIONS(2362), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2362), + [anon_sym_EQ_EQ2] = ACTIONS(2360), + [anon_sym_BANG_EQ2] = ACTIONS(2360), + [anon_sym_LT2] = ACTIONS(2362), + [anon_sym_LT_EQ2] = ACTIONS(2360), + [anon_sym_GT_EQ2] = ACTIONS(2360), + [anon_sym_EQ_TILDE2] = ACTIONS(2360), + [anon_sym_BANG_TILDE2] = ACTIONS(2362), + [anon_sym_like2] = ACTIONS(2362), + [anon_sym_not_DASHlike2] = ACTIONS(2362), + [anon_sym_STAR_STAR2] = ACTIONS(2362), + [anon_sym_PLUS_PLUS2] = ACTIONS(2362), + [anon_sym_SLASH2] = ACTIONS(2362), + [anon_sym_mod2] = ACTIONS(2362), + [anon_sym_SLASH_SLASH2] = ACTIONS(2362), + [anon_sym_PLUS2] = ACTIONS(2362), + [anon_sym_bit_DASHshl2] = ACTIONS(2362), + [anon_sym_bit_DASHshr2] = ACTIONS(2362), + [anon_sym_bit_DASHand2] = ACTIONS(2362), + [anon_sym_bit_DASHxor2] = ACTIONS(2362), + [anon_sym_bit_DASHor2] = ACTIONS(2362), + [anon_sym_err_GT] = ACTIONS(2362), + [anon_sym_out_GT] = ACTIONS(2362), + [anon_sym_e_GT] = ACTIONS(2362), + [anon_sym_o_GT] = ACTIONS(2362), + [anon_sym_err_PLUSout_GT] = ACTIONS(2362), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2362), + [anon_sym_o_PLUSe_GT] = ACTIONS(2362), + [anon_sym_e_PLUSo_GT] = ACTIONS(2362), + [anon_sym_err_GT_GT] = ACTIONS(2360), + [anon_sym_out_GT_GT] = ACTIONS(2360), + [anon_sym_e_GT_GT] = ACTIONS(2360), + [anon_sym_o_GT_GT] = ACTIONS(2360), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2360), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2360), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2360), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2360), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(1204)] = { - [aux_sym__repeat_newline] = STATE(1235), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1204), - [anon_sym_in] = ACTIONS(2746), - [sym__newline] = ACTIONS(2941), - [anon_sym_SEMI] = ACTIONS(2746), - [anon_sym_PIPE] = ACTIONS(2746), - [anon_sym_err_GT_PIPE] = ACTIONS(2746), - [anon_sym_out_GT_PIPE] = ACTIONS(2746), - [anon_sym_e_GT_PIPE] = ACTIONS(2746), - [anon_sym_o_GT_PIPE] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2746), - [anon_sym_RPAREN] = ACTIONS(2746), - [anon_sym_GT2] = ACTIONS(2748), - [anon_sym_DASH2] = ACTIONS(2746), - [anon_sym_STAR2] = ACTIONS(2748), - [anon_sym_and2] = ACTIONS(2746), - [anon_sym_xor2] = ACTIONS(2746), - [anon_sym_or2] = ACTIONS(2746), - [anon_sym_not_DASHin2] = ACTIONS(2746), - [anon_sym_has2] = ACTIONS(2746), - [anon_sym_not_DASHhas2] = ACTIONS(2746), - [anon_sym_starts_DASHwith2] = ACTIONS(2746), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2746), - [anon_sym_ends_DASHwith2] = ACTIONS(2746), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2746), - [anon_sym_EQ_EQ2] = ACTIONS(2746), - [anon_sym_BANG_EQ2] = ACTIONS(2746), - [anon_sym_LT2] = ACTIONS(2748), - [anon_sym_LT_EQ2] = ACTIONS(2746), - [anon_sym_GT_EQ2] = ACTIONS(2746), - [anon_sym_EQ_TILDE2] = ACTIONS(2746), - [anon_sym_BANG_TILDE2] = ACTIONS(2746), - [anon_sym_like2] = ACTIONS(2746), - [anon_sym_not_DASHlike2] = ACTIONS(2746), - [anon_sym_STAR_STAR2] = ACTIONS(2815), - [anon_sym_PLUS_PLUS2] = ACTIONS(2815), - [anon_sym_SLASH2] = ACTIONS(2748), - [anon_sym_mod2] = ACTIONS(2746), - [anon_sym_SLASH_SLASH2] = ACTIONS(2746), - [anon_sym_PLUS2] = ACTIONS(2748), - [anon_sym_bit_DASHshl2] = ACTIONS(2746), - [anon_sym_bit_DASHshr2] = ACTIONS(2746), - [anon_sym_bit_DASHand2] = ACTIONS(2746), - [anon_sym_bit_DASHxor2] = ACTIONS(2746), - [anon_sym_bit_DASHor2] = ACTIONS(2746), - [anon_sym_err_GT] = ACTIONS(2748), - [anon_sym_out_GT] = ACTIONS(2748), - [anon_sym_e_GT] = ACTIONS(2748), - [anon_sym_o_GT] = ACTIONS(2748), - [anon_sym_err_PLUSout_GT] = ACTIONS(2748), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2748), - [anon_sym_o_PLUSe_GT] = ACTIONS(2748), - [anon_sym_e_PLUSo_GT] = ACTIONS(2748), - [anon_sym_err_GT_GT] = ACTIONS(2746), - [anon_sym_out_GT_GT] = ACTIONS(2746), - [anon_sym_e_GT_GT] = ACTIONS(2746), - [anon_sym_o_GT_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2746), + [anon_sym_in] = ACTIONS(2824), + [sym__newline] = ACTIONS(2810), + [anon_sym_SEMI] = ACTIONS(2810), + [anon_sym_PIPE] = ACTIONS(2810), + [anon_sym_err_GT_PIPE] = ACTIONS(2810), + [anon_sym_out_GT_PIPE] = ACTIONS(2810), + [anon_sym_e_GT_PIPE] = ACTIONS(2810), + [anon_sym_o_GT_PIPE] = ACTIONS(2810), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2810), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2810), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2810), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2810), + [anon_sym_RPAREN] = ACTIONS(2810), + [anon_sym_GT2] = ACTIONS(2826), + [anon_sym_DASH2] = ACTIONS(2828), + [anon_sym_STAR2] = ACTIONS(2830), + [anon_sym_and2] = ACTIONS(2906), + [anon_sym_xor2] = ACTIONS(2908), + [anon_sym_or2] = ACTIONS(2810), + [anon_sym_not_DASHin2] = ACTIONS(2824), + [anon_sym_has2] = ACTIONS(2824), + [anon_sym_not_DASHhas2] = ACTIONS(2824), + [anon_sym_starts_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2824), + [anon_sym_ends_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2824), + [anon_sym_EQ_EQ2] = ACTIONS(2832), + [anon_sym_BANG_EQ2] = ACTIONS(2832), + [anon_sym_LT2] = ACTIONS(2826), + [anon_sym_LT_EQ2] = ACTIONS(2832), + [anon_sym_GT_EQ2] = ACTIONS(2832), + [anon_sym_EQ_TILDE2] = ACTIONS(2834), + [anon_sym_BANG_TILDE2] = ACTIONS(2834), + [anon_sym_like2] = ACTIONS(2834), + [anon_sym_not_DASHlike2] = ACTIONS(2834), + [anon_sym_STAR_STAR2] = ACTIONS(2836), + [anon_sym_PLUS_PLUS2] = ACTIONS(2836), + [anon_sym_SLASH2] = ACTIONS(2830), + [anon_sym_mod2] = ACTIONS(2838), + [anon_sym_SLASH_SLASH2] = ACTIONS(2838), + [anon_sym_PLUS2] = ACTIONS(2840), + [anon_sym_bit_DASHshl2] = ACTIONS(2842), + [anon_sym_bit_DASHshr2] = ACTIONS(2842), + [anon_sym_bit_DASHand2] = ACTIONS(2844), + [anon_sym_bit_DASHxor2] = ACTIONS(2846), + [anon_sym_bit_DASHor2] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2812), + [anon_sym_out_GT] = ACTIONS(2812), + [anon_sym_e_GT] = ACTIONS(2812), + [anon_sym_o_GT] = ACTIONS(2812), + [anon_sym_err_PLUSout_GT] = ACTIONS(2812), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2812), + [anon_sym_o_PLUSe_GT] = ACTIONS(2812), + [anon_sym_e_PLUSo_GT] = ACTIONS(2812), + [anon_sym_err_GT_GT] = ACTIONS(2810), + [anon_sym_out_GT_GT] = ACTIONS(2810), + [anon_sym_e_GT_GT] = ACTIONS(2810), + [anon_sym_o_GT_GT] = ACTIONS(2810), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2810), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2810), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2810), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2810), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1205)] = { - [aux_sym__repeat_newline] = STATE(1237), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1205), - [anon_sym_in] = ACTIONS(2895), - [sym__newline] = ACTIONS(2907), - [anon_sym_SEMI] = ACTIONS(2754), - [anon_sym_PIPE] = ACTIONS(2754), - [anon_sym_err_GT_PIPE] = ACTIONS(2754), - [anon_sym_out_GT_PIPE] = ACTIONS(2754), - [anon_sym_e_GT_PIPE] = ACTIONS(2754), - [anon_sym_o_GT_PIPE] = ACTIONS(2754), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2754), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2754), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2754), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2754), - [anon_sym_RPAREN] = ACTIONS(2754), - [anon_sym_GT2] = ACTIONS(2807), - [anon_sym_DASH2] = ACTIONS(2809), - [anon_sym_STAR2] = ACTIONS(2811), - [anon_sym_and2] = ACTIONS(2905), - [anon_sym_xor2] = ACTIONS(2909), - [anon_sym_or2] = ACTIONS(2754), - [anon_sym_not_DASHin2] = ACTIONS(2895), - [anon_sym_has2] = ACTIONS(2895), - [anon_sym_not_DASHhas2] = ACTIONS(2895), - [anon_sym_starts_DASHwith2] = ACTIONS(2895), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2895), - [anon_sym_ends_DASHwith2] = ACTIONS(2895), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2895), - [anon_sym_EQ_EQ2] = ACTIONS(2813), - [anon_sym_BANG_EQ2] = ACTIONS(2813), - [anon_sym_LT2] = ACTIONS(2807), - [anon_sym_LT_EQ2] = ACTIONS(2813), - [anon_sym_GT_EQ2] = ACTIONS(2813), - [anon_sym_EQ_TILDE2] = ACTIONS(2897), - [anon_sym_BANG_TILDE2] = ACTIONS(2897), - [anon_sym_like2] = ACTIONS(2897), - [anon_sym_not_DASHlike2] = ACTIONS(2897), - [anon_sym_STAR_STAR2] = ACTIONS(2815), - [anon_sym_PLUS_PLUS2] = ACTIONS(2815), - [anon_sym_SLASH2] = ACTIONS(2811), - [anon_sym_mod2] = ACTIONS(2817), - [anon_sym_SLASH_SLASH2] = ACTIONS(2817), - [anon_sym_PLUS2] = ACTIONS(2819), - [anon_sym_bit_DASHshl2] = ACTIONS(2821), - [anon_sym_bit_DASHshr2] = ACTIONS(2821), - [anon_sym_bit_DASHand2] = ACTIONS(2899), - [anon_sym_bit_DASHxor2] = ACTIONS(2901), - [anon_sym_bit_DASHor2] = ACTIONS(2903), - [anon_sym_err_GT] = ACTIONS(2756), - [anon_sym_out_GT] = ACTIONS(2756), - [anon_sym_e_GT] = ACTIONS(2756), - [anon_sym_o_GT] = ACTIONS(2756), - [anon_sym_err_PLUSout_GT] = ACTIONS(2756), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2756), - [anon_sym_o_PLUSe_GT] = ACTIONS(2756), - [anon_sym_e_PLUSo_GT] = ACTIONS(2756), - [anon_sym_err_GT_GT] = ACTIONS(2754), - [anon_sym_out_GT_GT] = ACTIONS(2754), - [anon_sym_e_GT_GT] = ACTIONS(2754), - [anon_sym_o_GT_GT] = ACTIONS(2754), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2754), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2754), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2754), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2754), + [anon_sym_in] = ACTIONS(2824), + [sym__newline] = ACTIONS(2818), + [anon_sym_SEMI] = ACTIONS(2818), + [anon_sym_PIPE] = ACTIONS(2818), + [anon_sym_err_GT_PIPE] = ACTIONS(2818), + [anon_sym_out_GT_PIPE] = ACTIONS(2818), + [anon_sym_e_GT_PIPE] = ACTIONS(2818), + [anon_sym_o_GT_PIPE] = ACTIONS(2818), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2818), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2818), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2818), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2818), + [anon_sym_RPAREN] = ACTIONS(2818), + [anon_sym_GT2] = ACTIONS(2826), + [anon_sym_DASH2] = ACTIONS(2828), + [anon_sym_STAR2] = ACTIONS(2830), + [anon_sym_and2] = ACTIONS(2818), + [anon_sym_xor2] = ACTIONS(2818), + [anon_sym_or2] = ACTIONS(2818), + [anon_sym_not_DASHin2] = ACTIONS(2824), + [anon_sym_has2] = ACTIONS(2824), + [anon_sym_not_DASHhas2] = ACTIONS(2824), + [anon_sym_starts_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2824), + [anon_sym_ends_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2824), + [anon_sym_EQ_EQ2] = ACTIONS(2832), + [anon_sym_BANG_EQ2] = ACTIONS(2832), + [anon_sym_LT2] = ACTIONS(2826), + [anon_sym_LT_EQ2] = ACTIONS(2832), + [anon_sym_GT_EQ2] = ACTIONS(2832), + [anon_sym_EQ_TILDE2] = ACTIONS(2834), + [anon_sym_BANG_TILDE2] = ACTIONS(2834), + [anon_sym_like2] = ACTIONS(2834), + [anon_sym_not_DASHlike2] = ACTIONS(2834), + [anon_sym_STAR_STAR2] = ACTIONS(2836), + [anon_sym_PLUS_PLUS2] = ACTIONS(2836), + [anon_sym_SLASH2] = ACTIONS(2830), + [anon_sym_mod2] = ACTIONS(2838), + [anon_sym_SLASH_SLASH2] = ACTIONS(2838), + [anon_sym_PLUS2] = ACTIONS(2840), + [anon_sym_bit_DASHshl2] = ACTIONS(2842), + [anon_sym_bit_DASHshr2] = ACTIONS(2842), + [anon_sym_bit_DASHand2] = ACTIONS(2844), + [anon_sym_bit_DASHxor2] = ACTIONS(2846), + [anon_sym_bit_DASHor2] = ACTIONS(2818), + [anon_sym_err_GT] = ACTIONS(2820), + [anon_sym_out_GT] = ACTIONS(2820), + [anon_sym_e_GT] = ACTIONS(2820), + [anon_sym_o_GT] = ACTIONS(2820), + [anon_sym_err_PLUSout_GT] = ACTIONS(2820), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2820), + [anon_sym_o_PLUSe_GT] = ACTIONS(2820), + [anon_sym_e_PLUSo_GT] = ACTIONS(2820), + [anon_sym_err_GT_GT] = ACTIONS(2818), + [anon_sym_out_GT_GT] = ACTIONS(2818), + [anon_sym_e_GT_GT] = ACTIONS(2818), + [anon_sym_o_GT_GT] = ACTIONS(2818), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2818), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2818), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2818), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2818), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1206)] = { - [aux_sym__repeat_newline] = STATE(527), + [aux_sym__repeat_newline] = STATE(1259), [sym_comment] = STATE(1206), - [anon_sym_in] = ACTIONS(2750), - [sym__newline] = ACTIONS(2750), - [anon_sym_SEMI] = ACTIONS(2750), - [anon_sym_PIPE] = ACTIONS(2750), - [anon_sym_err_GT_PIPE] = ACTIONS(2750), - [anon_sym_out_GT_PIPE] = ACTIONS(2750), - [anon_sym_e_GT_PIPE] = ACTIONS(2750), - [anon_sym_o_GT_PIPE] = ACTIONS(2750), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2750), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2750), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2750), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2750), - [anon_sym_RPAREN] = ACTIONS(2750), - [anon_sym_GT2] = ACTIONS(2752), - [anon_sym_DASH2] = ACTIONS(2750), - [anon_sym_STAR2] = ACTIONS(2752), - [anon_sym_and2] = ACTIONS(2750), - [anon_sym_xor2] = ACTIONS(2750), - [anon_sym_or2] = ACTIONS(2750), - [anon_sym_not_DASHin2] = ACTIONS(2750), - [anon_sym_has2] = ACTIONS(2750), - [anon_sym_not_DASHhas2] = ACTIONS(2750), - [anon_sym_starts_DASHwith2] = ACTIONS(2750), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2750), - [anon_sym_ends_DASHwith2] = ACTIONS(2750), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2750), - [anon_sym_EQ_EQ2] = ACTIONS(2750), - [anon_sym_BANG_EQ2] = ACTIONS(2750), - [anon_sym_LT2] = ACTIONS(2752), - [anon_sym_LT_EQ2] = ACTIONS(2750), - [anon_sym_GT_EQ2] = ACTIONS(2750), - [anon_sym_EQ_TILDE2] = ACTIONS(2750), - [anon_sym_BANG_TILDE2] = ACTIONS(2750), - [anon_sym_like2] = ACTIONS(2750), - [anon_sym_not_DASHlike2] = ACTIONS(2750), - [anon_sym_STAR_STAR2] = ACTIONS(2919), - [anon_sym_PLUS_PLUS2] = ACTIONS(2919), - [anon_sym_SLASH2] = ACTIONS(2752), - [anon_sym_mod2] = ACTIONS(2750), - [anon_sym_SLASH_SLASH2] = ACTIONS(2750), - [anon_sym_PLUS2] = ACTIONS(2752), - [anon_sym_bit_DASHshl2] = ACTIONS(2750), - [anon_sym_bit_DASHshr2] = ACTIONS(2750), - [anon_sym_bit_DASHand2] = ACTIONS(2750), - [anon_sym_bit_DASHxor2] = ACTIONS(2750), - [anon_sym_bit_DASHor2] = ACTIONS(2750), - [anon_sym_err_GT] = ACTIONS(2752), - [anon_sym_out_GT] = ACTIONS(2752), - [anon_sym_e_GT] = ACTIONS(2752), - [anon_sym_o_GT] = ACTIONS(2752), - [anon_sym_err_PLUSout_GT] = ACTIONS(2752), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2752), - [anon_sym_o_PLUSe_GT] = ACTIONS(2752), - [anon_sym_e_PLUSo_GT] = ACTIONS(2752), - [anon_sym_err_GT_GT] = ACTIONS(2750), - [anon_sym_out_GT_GT] = ACTIONS(2750), - [anon_sym_e_GT_GT] = ACTIONS(2750), - [anon_sym_o_GT_GT] = ACTIONS(2750), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2750), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2750), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2750), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2750), + [anon_sym_in] = ACTIONS(2872), + [sym__newline] = ACTIONS(2869), + [anon_sym_SEMI] = ACTIONS(2806), + [anon_sym_PIPE] = ACTIONS(2806), + [anon_sym_err_GT_PIPE] = ACTIONS(2806), + [anon_sym_out_GT_PIPE] = ACTIONS(2806), + [anon_sym_e_GT_PIPE] = ACTIONS(2806), + [anon_sym_o_GT_PIPE] = ACTIONS(2806), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2806), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2806), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2806), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2806), + [anon_sym_RPAREN] = ACTIONS(2806), + [anon_sym_GT2] = ACTIONS(2853), + [anon_sym_DASH2] = ACTIONS(2855), + [anon_sym_STAR2] = ACTIONS(2857), + [anon_sym_and2] = ACTIONS(2806), + [anon_sym_xor2] = ACTIONS(2806), + [anon_sym_or2] = ACTIONS(2806), + [anon_sym_not_DASHin2] = ACTIONS(2872), + [anon_sym_has2] = ACTIONS(2872), + [anon_sym_not_DASHhas2] = ACTIONS(2872), + [anon_sym_starts_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2872), + [anon_sym_ends_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2872), + [anon_sym_EQ_EQ2] = ACTIONS(2859), + [anon_sym_BANG_EQ2] = ACTIONS(2859), + [anon_sym_LT2] = ACTIONS(2853), + [anon_sym_LT_EQ2] = ACTIONS(2859), + [anon_sym_GT_EQ2] = ACTIONS(2859), + [anon_sym_EQ_TILDE2] = ACTIONS(2806), + [anon_sym_BANG_TILDE2] = ACTIONS(2806), + [anon_sym_like2] = ACTIONS(2806), + [anon_sym_not_DASHlike2] = ACTIONS(2806), + [anon_sym_STAR_STAR2] = ACTIONS(2861), + [anon_sym_PLUS_PLUS2] = ACTIONS(2861), + [anon_sym_SLASH2] = ACTIONS(2857), + [anon_sym_mod2] = ACTIONS(2863), + [anon_sym_SLASH_SLASH2] = ACTIONS(2863), + [anon_sym_PLUS2] = ACTIONS(2865), + [anon_sym_bit_DASHshl2] = ACTIONS(2867), + [anon_sym_bit_DASHshr2] = ACTIONS(2867), + [anon_sym_bit_DASHand2] = ACTIONS(2806), + [anon_sym_bit_DASHxor2] = ACTIONS(2806), + [anon_sym_bit_DASHor2] = ACTIONS(2806), + [anon_sym_err_GT] = ACTIONS(2808), + [anon_sym_out_GT] = ACTIONS(2808), + [anon_sym_e_GT] = ACTIONS(2808), + [anon_sym_o_GT] = ACTIONS(2808), + [anon_sym_err_PLUSout_GT] = ACTIONS(2808), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2808), + [anon_sym_o_PLUSe_GT] = ACTIONS(2808), + [anon_sym_e_PLUSo_GT] = ACTIONS(2808), + [anon_sym_err_GT_GT] = ACTIONS(2806), + [anon_sym_out_GT_GT] = ACTIONS(2806), + [anon_sym_e_GT_GT] = ACTIONS(2806), + [anon_sym_o_GT_GT] = ACTIONS(2806), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2806), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2806), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2806), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2806), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1207)] = { - [aux_sym__repeat_newline] = STATE(1236), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1207), - [anon_sym_in] = ACTIONS(2895), - [sym__newline] = ACTIONS(2941), - [anon_sym_SEMI] = ACTIONS(2746), - [anon_sym_PIPE] = ACTIONS(2746), - [anon_sym_err_GT_PIPE] = ACTIONS(2746), - [anon_sym_out_GT_PIPE] = ACTIONS(2746), - [anon_sym_e_GT_PIPE] = ACTIONS(2746), - [anon_sym_o_GT_PIPE] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2746), - [anon_sym_RPAREN] = ACTIONS(2746), - [anon_sym_GT2] = ACTIONS(2807), - [anon_sym_DASH2] = ACTIONS(2809), - [anon_sym_STAR2] = ACTIONS(2811), - [anon_sym_and2] = ACTIONS(2746), - [anon_sym_xor2] = ACTIONS(2746), - [anon_sym_or2] = ACTIONS(2746), - [anon_sym_not_DASHin2] = ACTIONS(2895), - [anon_sym_has2] = ACTIONS(2895), - [anon_sym_not_DASHhas2] = ACTIONS(2895), - [anon_sym_starts_DASHwith2] = ACTIONS(2895), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2895), - [anon_sym_ends_DASHwith2] = ACTIONS(2895), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2895), - [anon_sym_EQ_EQ2] = ACTIONS(2813), - [anon_sym_BANG_EQ2] = ACTIONS(2813), - [anon_sym_LT2] = ACTIONS(2807), - [anon_sym_LT_EQ2] = ACTIONS(2813), - [anon_sym_GT_EQ2] = ACTIONS(2813), - [anon_sym_EQ_TILDE2] = ACTIONS(2897), - [anon_sym_BANG_TILDE2] = ACTIONS(2897), - [anon_sym_like2] = ACTIONS(2897), - [anon_sym_not_DASHlike2] = ACTIONS(2897), - [anon_sym_STAR_STAR2] = ACTIONS(2815), - [anon_sym_PLUS_PLUS2] = ACTIONS(2815), - [anon_sym_SLASH2] = ACTIONS(2811), - [anon_sym_mod2] = ACTIONS(2817), - [anon_sym_SLASH_SLASH2] = ACTIONS(2817), - [anon_sym_PLUS2] = ACTIONS(2819), - [anon_sym_bit_DASHshl2] = ACTIONS(2821), - [anon_sym_bit_DASHshr2] = ACTIONS(2821), - [anon_sym_bit_DASHand2] = ACTIONS(2899), - [anon_sym_bit_DASHxor2] = ACTIONS(2901), - [anon_sym_bit_DASHor2] = ACTIONS(2903), - [anon_sym_err_GT] = ACTIONS(2748), - [anon_sym_out_GT] = ACTIONS(2748), - [anon_sym_e_GT] = ACTIONS(2748), - [anon_sym_o_GT] = ACTIONS(2748), - [anon_sym_err_PLUSout_GT] = ACTIONS(2748), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2748), - [anon_sym_o_PLUSe_GT] = ACTIONS(2748), - [anon_sym_e_PLUSo_GT] = ACTIONS(2748), - [anon_sym_err_GT_GT] = ACTIONS(2746), - [anon_sym_out_GT_GT] = ACTIONS(2746), - [anon_sym_e_GT_GT] = ACTIONS(2746), - [anon_sym_o_GT_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2746), + [anon_sym_in] = ACTIONS(2824), + [sym__newline] = ACTIONS(2794), + [anon_sym_SEMI] = ACTIONS(2794), + [anon_sym_PIPE] = ACTIONS(2794), + [anon_sym_err_GT_PIPE] = ACTIONS(2794), + [anon_sym_out_GT_PIPE] = ACTIONS(2794), + [anon_sym_e_GT_PIPE] = ACTIONS(2794), + [anon_sym_o_GT_PIPE] = ACTIONS(2794), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2794), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2794), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2794), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2794), + [anon_sym_RPAREN] = ACTIONS(2794), + [anon_sym_GT2] = ACTIONS(2826), + [anon_sym_DASH2] = ACTIONS(2828), + [anon_sym_STAR2] = ACTIONS(2830), + [anon_sym_and2] = ACTIONS(2906), + [anon_sym_xor2] = ACTIONS(2794), + [anon_sym_or2] = ACTIONS(2794), + [anon_sym_not_DASHin2] = ACTIONS(2824), + [anon_sym_has2] = ACTIONS(2824), + [anon_sym_not_DASHhas2] = ACTIONS(2824), + [anon_sym_starts_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2824), + [anon_sym_ends_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2824), + [anon_sym_EQ_EQ2] = ACTIONS(2832), + [anon_sym_BANG_EQ2] = ACTIONS(2832), + [anon_sym_LT2] = ACTIONS(2826), + [anon_sym_LT_EQ2] = ACTIONS(2832), + [anon_sym_GT_EQ2] = ACTIONS(2832), + [anon_sym_EQ_TILDE2] = ACTIONS(2834), + [anon_sym_BANG_TILDE2] = ACTIONS(2834), + [anon_sym_like2] = ACTIONS(2834), + [anon_sym_not_DASHlike2] = ACTIONS(2834), + [anon_sym_STAR_STAR2] = ACTIONS(2836), + [anon_sym_PLUS_PLUS2] = ACTIONS(2836), + [anon_sym_SLASH2] = ACTIONS(2830), + [anon_sym_mod2] = ACTIONS(2838), + [anon_sym_SLASH_SLASH2] = ACTIONS(2838), + [anon_sym_PLUS2] = ACTIONS(2840), + [anon_sym_bit_DASHshl2] = ACTIONS(2842), + [anon_sym_bit_DASHshr2] = ACTIONS(2842), + [anon_sym_bit_DASHand2] = ACTIONS(2844), + [anon_sym_bit_DASHxor2] = ACTIONS(2846), + [anon_sym_bit_DASHor2] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2796), + [anon_sym_out_GT] = ACTIONS(2796), + [anon_sym_e_GT] = ACTIONS(2796), + [anon_sym_o_GT] = ACTIONS(2796), + [anon_sym_err_PLUSout_GT] = ACTIONS(2796), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2796), + [anon_sym_o_PLUSe_GT] = ACTIONS(2796), + [anon_sym_e_PLUSo_GT] = ACTIONS(2796), + [anon_sym_err_GT_GT] = ACTIONS(2794), + [anon_sym_out_GT_GT] = ACTIONS(2794), + [anon_sym_e_GT_GT] = ACTIONS(2794), + [anon_sym_o_GT_GT] = ACTIONS(2794), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2794), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2794), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2794), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2794), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1208)] = { - [aux_sym__repeat_newline] = STATE(527), + [aux_sym__repeat_newline] = STATE(1234), [sym_comment] = STATE(1208), - [anon_sym_in] = ACTIONS(2927), - [sym__newline] = ACTIONS(2750), - [anon_sym_SEMI] = ACTIONS(2750), - [anon_sym_PIPE] = ACTIONS(2750), - [anon_sym_err_GT_PIPE] = ACTIONS(2750), - [anon_sym_out_GT_PIPE] = ACTIONS(2750), - [anon_sym_e_GT_PIPE] = ACTIONS(2750), - [anon_sym_o_GT_PIPE] = ACTIONS(2750), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2750), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2750), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2750), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2750), - [anon_sym_RPAREN] = ACTIONS(2750), - [anon_sym_GT2] = ACTIONS(2911), - [anon_sym_DASH2] = ACTIONS(2913), - [anon_sym_STAR2] = ACTIONS(2915), - [anon_sym_and2] = ACTIONS(2750), - [anon_sym_xor2] = ACTIONS(2750), - [anon_sym_or2] = ACTIONS(2750), - [anon_sym_not_DASHin2] = ACTIONS(2927), - [anon_sym_has2] = ACTIONS(2927), - [anon_sym_not_DASHhas2] = ACTIONS(2927), - [anon_sym_starts_DASHwith2] = ACTIONS(2927), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2927), - [anon_sym_ends_DASHwith2] = ACTIONS(2927), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2927), - [anon_sym_EQ_EQ2] = ACTIONS(2917), - [anon_sym_BANG_EQ2] = ACTIONS(2917), - [anon_sym_LT2] = ACTIONS(2911), - [anon_sym_LT_EQ2] = ACTIONS(2917), - [anon_sym_GT_EQ2] = ACTIONS(2917), - [anon_sym_EQ_TILDE2] = ACTIONS(2929), - [anon_sym_BANG_TILDE2] = ACTIONS(2929), - [anon_sym_like2] = ACTIONS(2929), - [anon_sym_not_DASHlike2] = ACTIONS(2929), - [anon_sym_STAR_STAR2] = ACTIONS(2919), - [anon_sym_PLUS_PLUS2] = ACTIONS(2919), - [anon_sym_SLASH2] = ACTIONS(2915), - [anon_sym_mod2] = ACTIONS(2921), - [anon_sym_SLASH_SLASH2] = ACTIONS(2921), - [anon_sym_PLUS2] = ACTIONS(2923), - [anon_sym_bit_DASHshl2] = ACTIONS(2925), - [anon_sym_bit_DASHshr2] = ACTIONS(2925), - [anon_sym_bit_DASHand2] = ACTIONS(2931), - [anon_sym_bit_DASHxor2] = ACTIONS(2933), - [anon_sym_bit_DASHor2] = ACTIONS(2935), - [anon_sym_err_GT] = ACTIONS(2752), - [anon_sym_out_GT] = ACTIONS(2752), - [anon_sym_e_GT] = ACTIONS(2752), - [anon_sym_o_GT] = ACTIONS(2752), - [anon_sym_err_PLUSout_GT] = ACTIONS(2752), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2752), - [anon_sym_o_PLUSe_GT] = ACTIONS(2752), - [anon_sym_e_PLUSo_GT] = ACTIONS(2752), - [anon_sym_err_GT_GT] = ACTIONS(2750), - [anon_sym_out_GT_GT] = ACTIONS(2750), - [anon_sym_e_GT_GT] = ACTIONS(2750), - [anon_sym_o_GT_GT] = ACTIONS(2750), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2750), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2750), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2750), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2750), + [anon_sym_in] = ACTIONS(2872), + [sym__newline] = ACTIONS(2887), + [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(2853), + [anon_sym_DASH2] = ACTIONS(2855), + [anon_sym_STAR2] = ACTIONS(2857), + [anon_sym_and2] = ACTIONS(2776), + [anon_sym_xor2] = ACTIONS(2776), + [anon_sym_or2] = ACTIONS(2776), + [anon_sym_not_DASHin2] = ACTIONS(2872), + [anon_sym_has2] = ACTIONS(2872), + [anon_sym_not_DASHhas2] = ACTIONS(2872), + [anon_sym_starts_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2872), + [anon_sym_ends_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2872), + [anon_sym_EQ_EQ2] = ACTIONS(2859), + [anon_sym_BANG_EQ2] = ACTIONS(2859), + [anon_sym_LT2] = ACTIONS(2853), + [anon_sym_LT_EQ2] = ACTIONS(2859), + [anon_sym_GT_EQ2] = ACTIONS(2859), + [anon_sym_EQ_TILDE2] = ACTIONS(2879), + [anon_sym_BANG_TILDE2] = ACTIONS(2879), + [anon_sym_like2] = ACTIONS(2879), + [anon_sym_not_DASHlike2] = ACTIONS(2879), + [anon_sym_STAR_STAR2] = ACTIONS(2861), + [anon_sym_PLUS_PLUS2] = ACTIONS(2861), + [anon_sym_SLASH2] = ACTIONS(2857), + [anon_sym_mod2] = ACTIONS(2863), + [anon_sym_SLASH_SLASH2] = ACTIONS(2863), + [anon_sym_PLUS2] = ACTIONS(2865), + [anon_sym_bit_DASHshl2] = ACTIONS(2867), + [anon_sym_bit_DASHshr2] = ACTIONS(2867), + [anon_sym_bit_DASHand2] = ACTIONS(2881), + [anon_sym_bit_DASHxor2] = ACTIONS(2883), + [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(1209)] = { - [aux_sym__repeat_newline] = STATE(1238), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1209), - [anon_sym_in] = ACTIONS(2895), - [sym__newline] = ACTIONS(2941), - [anon_sym_SEMI] = ACTIONS(2746), - [anon_sym_PIPE] = ACTIONS(2746), - [anon_sym_err_GT_PIPE] = ACTIONS(2746), - [anon_sym_out_GT_PIPE] = ACTIONS(2746), - [anon_sym_e_GT_PIPE] = ACTIONS(2746), - [anon_sym_o_GT_PIPE] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2746), - [anon_sym_RPAREN] = ACTIONS(2746), - [anon_sym_GT2] = ACTIONS(2807), - [anon_sym_DASH2] = ACTIONS(2809), - [anon_sym_STAR2] = ACTIONS(2811), - [anon_sym_and2] = ACTIONS(2905), - [anon_sym_xor2] = ACTIONS(2746), - [anon_sym_or2] = ACTIONS(2746), - [anon_sym_not_DASHin2] = ACTIONS(2895), - [anon_sym_has2] = ACTIONS(2895), - [anon_sym_not_DASHhas2] = ACTIONS(2895), - [anon_sym_starts_DASHwith2] = ACTIONS(2895), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2895), - [anon_sym_ends_DASHwith2] = ACTIONS(2895), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2895), - [anon_sym_EQ_EQ2] = ACTIONS(2813), - [anon_sym_BANG_EQ2] = ACTIONS(2813), - [anon_sym_LT2] = ACTIONS(2807), - [anon_sym_LT_EQ2] = ACTIONS(2813), - [anon_sym_GT_EQ2] = ACTIONS(2813), - [anon_sym_EQ_TILDE2] = ACTIONS(2897), - [anon_sym_BANG_TILDE2] = ACTIONS(2897), - [anon_sym_like2] = ACTIONS(2897), - [anon_sym_not_DASHlike2] = ACTIONS(2897), - [anon_sym_STAR_STAR2] = ACTIONS(2815), - [anon_sym_PLUS_PLUS2] = ACTIONS(2815), - [anon_sym_SLASH2] = ACTIONS(2811), - [anon_sym_mod2] = ACTIONS(2817), - [anon_sym_SLASH_SLASH2] = ACTIONS(2817), - [anon_sym_PLUS2] = ACTIONS(2819), - [anon_sym_bit_DASHshl2] = ACTIONS(2821), - [anon_sym_bit_DASHshr2] = ACTIONS(2821), - [anon_sym_bit_DASHand2] = ACTIONS(2899), - [anon_sym_bit_DASHxor2] = ACTIONS(2901), - [anon_sym_bit_DASHor2] = ACTIONS(2903), - [anon_sym_err_GT] = ACTIONS(2748), - [anon_sym_out_GT] = ACTIONS(2748), - [anon_sym_e_GT] = ACTIONS(2748), - [anon_sym_o_GT] = ACTIONS(2748), - [anon_sym_err_PLUSout_GT] = ACTIONS(2748), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2748), - [anon_sym_o_PLUSe_GT] = ACTIONS(2748), - [anon_sym_e_PLUSo_GT] = ACTIONS(2748), - [anon_sym_err_GT_GT] = ACTIONS(2746), - [anon_sym_out_GT_GT] = ACTIONS(2746), - [anon_sym_e_GT_GT] = ACTIONS(2746), - [anon_sym_o_GT_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2746), + [anon_sym_in] = ACTIONS(2824), + [sym__newline] = ACTIONS(2810), + [anon_sym_SEMI] = ACTIONS(2810), + [anon_sym_PIPE] = ACTIONS(2810), + [anon_sym_err_GT_PIPE] = ACTIONS(2810), + [anon_sym_out_GT_PIPE] = ACTIONS(2810), + [anon_sym_e_GT_PIPE] = ACTIONS(2810), + [anon_sym_o_GT_PIPE] = ACTIONS(2810), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2810), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2810), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2810), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2810), + [anon_sym_RPAREN] = ACTIONS(2810), + [anon_sym_GT2] = ACTIONS(2826), + [anon_sym_DASH2] = ACTIONS(2828), + [anon_sym_STAR2] = ACTIONS(2830), + [anon_sym_and2] = ACTIONS(2810), + [anon_sym_xor2] = ACTIONS(2810), + [anon_sym_or2] = ACTIONS(2810), + [anon_sym_not_DASHin2] = ACTIONS(2824), + [anon_sym_has2] = ACTIONS(2824), + [anon_sym_not_DASHhas2] = ACTIONS(2824), + [anon_sym_starts_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2824), + [anon_sym_ends_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2824), + [anon_sym_EQ_EQ2] = ACTIONS(2832), + [anon_sym_BANG_EQ2] = ACTIONS(2832), + [anon_sym_LT2] = ACTIONS(2826), + [anon_sym_LT_EQ2] = ACTIONS(2832), + [anon_sym_GT_EQ2] = ACTIONS(2832), + [anon_sym_EQ_TILDE2] = ACTIONS(2810), + [anon_sym_BANG_TILDE2] = ACTIONS(2810), + [anon_sym_like2] = ACTIONS(2810), + [anon_sym_not_DASHlike2] = ACTIONS(2810), + [anon_sym_STAR_STAR2] = ACTIONS(2836), + [anon_sym_PLUS_PLUS2] = ACTIONS(2836), + [anon_sym_SLASH2] = ACTIONS(2830), + [anon_sym_mod2] = ACTIONS(2838), + [anon_sym_SLASH_SLASH2] = ACTIONS(2838), + [anon_sym_PLUS2] = ACTIONS(2840), + [anon_sym_bit_DASHshl2] = ACTIONS(2842), + [anon_sym_bit_DASHshr2] = ACTIONS(2842), + [anon_sym_bit_DASHand2] = ACTIONS(2810), + [anon_sym_bit_DASHxor2] = ACTIONS(2810), + [anon_sym_bit_DASHor2] = ACTIONS(2810), + [anon_sym_err_GT] = ACTIONS(2812), + [anon_sym_out_GT] = ACTIONS(2812), + [anon_sym_e_GT] = ACTIONS(2812), + [anon_sym_o_GT] = ACTIONS(2812), + [anon_sym_err_PLUSout_GT] = ACTIONS(2812), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2812), + [anon_sym_o_PLUSe_GT] = ACTIONS(2812), + [anon_sym_e_PLUSo_GT] = ACTIONS(2812), + [anon_sym_err_GT_GT] = ACTIONS(2810), + [anon_sym_out_GT_GT] = ACTIONS(2810), + [anon_sym_e_GT_GT] = ACTIONS(2810), + [anon_sym_o_GT_GT] = ACTIONS(2810), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2810), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2810), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2810), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2810), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1210)] = { - [aux_sym__repeat_newline] = STATE(527), + [aux_sym__repeat_newline] = STATE(1180), [sym_comment] = STATE(1210), - [anon_sym_in] = ACTIONS(2927), - [sym__newline] = ACTIONS(2750), - [anon_sym_SEMI] = ACTIONS(2750), - [anon_sym_PIPE] = ACTIONS(2750), - [anon_sym_err_GT_PIPE] = ACTIONS(2750), - [anon_sym_out_GT_PIPE] = ACTIONS(2750), - [anon_sym_e_GT_PIPE] = ACTIONS(2750), - [anon_sym_o_GT_PIPE] = ACTIONS(2750), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2750), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2750), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2750), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2750), - [anon_sym_RPAREN] = ACTIONS(2750), - [anon_sym_GT2] = ACTIONS(2911), - [anon_sym_DASH2] = ACTIONS(2913), - [anon_sym_STAR2] = ACTIONS(2915), - [anon_sym_and2] = ACTIONS(2937), - [anon_sym_xor2] = ACTIONS(2750), - [anon_sym_or2] = ACTIONS(2750), - [anon_sym_not_DASHin2] = ACTIONS(2927), - [anon_sym_has2] = ACTIONS(2927), - [anon_sym_not_DASHhas2] = ACTIONS(2927), - [anon_sym_starts_DASHwith2] = ACTIONS(2927), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2927), - [anon_sym_ends_DASHwith2] = ACTIONS(2927), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2927), - [anon_sym_EQ_EQ2] = ACTIONS(2917), - [anon_sym_BANG_EQ2] = ACTIONS(2917), - [anon_sym_LT2] = ACTIONS(2911), - [anon_sym_LT_EQ2] = ACTIONS(2917), - [anon_sym_GT_EQ2] = ACTIONS(2917), - [anon_sym_EQ_TILDE2] = ACTIONS(2929), - [anon_sym_BANG_TILDE2] = ACTIONS(2929), - [anon_sym_like2] = ACTIONS(2929), - [anon_sym_not_DASHlike2] = ACTIONS(2929), - [anon_sym_STAR_STAR2] = ACTIONS(2919), - [anon_sym_PLUS_PLUS2] = ACTIONS(2919), - [anon_sym_SLASH2] = ACTIONS(2915), - [anon_sym_mod2] = ACTIONS(2921), - [anon_sym_SLASH_SLASH2] = ACTIONS(2921), - [anon_sym_PLUS2] = ACTIONS(2923), - [anon_sym_bit_DASHshl2] = ACTIONS(2925), - [anon_sym_bit_DASHshr2] = ACTIONS(2925), - [anon_sym_bit_DASHand2] = ACTIONS(2931), - [anon_sym_bit_DASHxor2] = ACTIONS(2933), - [anon_sym_bit_DASHor2] = ACTIONS(2935), - [anon_sym_err_GT] = ACTIONS(2752), - [anon_sym_out_GT] = ACTIONS(2752), - [anon_sym_e_GT] = ACTIONS(2752), - [anon_sym_o_GT] = ACTIONS(2752), - [anon_sym_err_PLUSout_GT] = ACTIONS(2752), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2752), - [anon_sym_o_PLUSe_GT] = ACTIONS(2752), - [anon_sym_e_PLUSo_GT] = ACTIONS(2752), - [anon_sym_err_GT_GT] = ACTIONS(2750), - [anon_sym_out_GT_GT] = ACTIONS(2750), - [anon_sym_e_GT_GT] = ACTIONS(2750), - [anon_sym_o_GT_GT] = ACTIONS(2750), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2750), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2750), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2750), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2750), + [anon_sym_in] = ACTIONS(2872), + [sym__newline] = ACTIONS(2922), + [anon_sym_SEMI] = ACTIONS(2788), + [anon_sym_PIPE] = ACTIONS(2788), + [anon_sym_err_GT_PIPE] = ACTIONS(2788), + [anon_sym_out_GT_PIPE] = ACTIONS(2788), + [anon_sym_e_GT_PIPE] = ACTIONS(2788), + [anon_sym_o_GT_PIPE] = ACTIONS(2788), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2788), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2788), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2788), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2788), + [anon_sym_RPAREN] = ACTIONS(2788), + [anon_sym_GT2] = ACTIONS(2853), + [anon_sym_DASH2] = ACTIONS(2855), + [anon_sym_STAR2] = ACTIONS(2857), + [anon_sym_and2] = ACTIONS(2877), + [anon_sym_xor2] = ACTIONS(2924), + [anon_sym_or2] = ACTIONS(2788), + [anon_sym_not_DASHin2] = ACTIONS(2872), + [anon_sym_has2] = ACTIONS(2872), + [anon_sym_not_DASHhas2] = ACTIONS(2872), + [anon_sym_starts_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2872), + [anon_sym_ends_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2872), + [anon_sym_EQ_EQ2] = ACTIONS(2859), + [anon_sym_BANG_EQ2] = ACTIONS(2859), + [anon_sym_LT2] = ACTIONS(2853), + [anon_sym_LT_EQ2] = ACTIONS(2859), + [anon_sym_GT_EQ2] = ACTIONS(2859), + [anon_sym_EQ_TILDE2] = ACTIONS(2879), + [anon_sym_BANG_TILDE2] = ACTIONS(2879), + [anon_sym_like2] = ACTIONS(2879), + [anon_sym_not_DASHlike2] = ACTIONS(2879), + [anon_sym_STAR_STAR2] = ACTIONS(2861), + [anon_sym_PLUS_PLUS2] = ACTIONS(2861), + [anon_sym_SLASH2] = ACTIONS(2857), + [anon_sym_mod2] = ACTIONS(2863), + [anon_sym_SLASH_SLASH2] = ACTIONS(2863), + [anon_sym_PLUS2] = ACTIONS(2865), + [anon_sym_bit_DASHshl2] = ACTIONS(2867), + [anon_sym_bit_DASHshr2] = ACTIONS(2867), + [anon_sym_bit_DASHand2] = ACTIONS(2881), + [anon_sym_bit_DASHxor2] = ACTIONS(2883), + [anon_sym_bit_DASHor2] = ACTIONS(2885), + [anon_sym_err_GT] = ACTIONS(2790), + [anon_sym_out_GT] = ACTIONS(2790), + [anon_sym_e_GT] = ACTIONS(2790), + [anon_sym_o_GT] = ACTIONS(2790), + [anon_sym_err_PLUSout_GT] = ACTIONS(2790), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2790), + [anon_sym_o_PLUSe_GT] = ACTIONS(2790), + [anon_sym_e_PLUSo_GT] = ACTIONS(2790), + [anon_sym_err_GT_GT] = ACTIONS(2788), + [anon_sym_out_GT_GT] = ACTIONS(2788), + [anon_sym_e_GT_GT] = ACTIONS(2788), + [anon_sym_o_GT_GT] = ACTIONS(2788), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2788), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2788), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2788), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2788), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1211)] = { - [aux_sym__repeat_newline] = STATE(1198), [sym_comment] = STATE(1211), - [anon_sym_in] = ACTIONS(2730), - [sym__newline] = ACTIONS(2831), - [anon_sym_SEMI] = ACTIONS(2730), - [anon_sym_PIPE] = ACTIONS(2730), - [anon_sym_err_GT_PIPE] = ACTIONS(2730), - [anon_sym_out_GT_PIPE] = ACTIONS(2730), - [anon_sym_e_GT_PIPE] = ACTIONS(2730), - [anon_sym_o_GT_PIPE] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2730), - [anon_sym_RPAREN] = ACTIONS(2730), - [anon_sym_GT2] = ACTIONS(2807), - [anon_sym_DASH2] = ACTIONS(2809), - [anon_sym_STAR2] = ACTIONS(2811), - [anon_sym_and2] = ACTIONS(2730), - [anon_sym_xor2] = ACTIONS(2730), - [anon_sym_or2] = ACTIONS(2730), - [anon_sym_not_DASHin2] = ACTIONS(2730), - [anon_sym_has2] = ACTIONS(2730), - [anon_sym_not_DASHhas2] = ACTIONS(2730), - [anon_sym_starts_DASHwith2] = ACTIONS(2730), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2730), - [anon_sym_ends_DASHwith2] = ACTIONS(2730), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2730), - [anon_sym_EQ_EQ2] = ACTIONS(2813), - [anon_sym_BANG_EQ2] = ACTIONS(2813), - [anon_sym_LT2] = ACTIONS(2807), - [anon_sym_LT_EQ2] = ACTIONS(2813), - [anon_sym_GT_EQ2] = ACTIONS(2813), - [anon_sym_EQ_TILDE2] = ACTIONS(2730), - [anon_sym_BANG_TILDE2] = ACTIONS(2730), - [anon_sym_like2] = ACTIONS(2730), - [anon_sym_not_DASHlike2] = ACTIONS(2730), - [anon_sym_STAR_STAR2] = ACTIONS(2815), - [anon_sym_PLUS_PLUS2] = ACTIONS(2815), - [anon_sym_SLASH2] = ACTIONS(2811), - [anon_sym_mod2] = ACTIONS(2817), - [anon_sym_SLASH_SLASH2] = ACTIONS(2817), - [anon_sym_PLUS2] = ACTIONS(2819), - [anon_sym_bit_DASHshl2] = ACTIONS(2821), - [anon_sym_bit_DASHshr2] = ACTIONS(2821), - [anon_sym_bit_DASHand2] = ACTIONS(2730), - [anon_sym_bit_DASHxor2] = ACTIONS(2730), - [anon_sym_bit_DASHor2] = ACTIONS(2730), - [anon_sym_err_GT] = ACTIONS(2732), - [anon_sym_out_GT] = ACTIONS(2732), - [anon_sym_e_GT] = ACTIONS(2732), - [anon_sym_o_GT] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT] = ACTIONS(2732), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), + [ts_builtin_sym_end] = ACTIONS(2558), + [anon_sym_finally] = ACTIONS(2558), + [anon_sym_in] = ACTIONS(2558), + [sym__newline] = ACTIONS(2558), + [anon_sym_SEMI] = ACTIONS(2558), + [anon_sym_PIPE] = ACTIONS(2558), + [anon_sym_err_GT_PIPE] = ACTIONS(2558), + [anon_sym_out_GT_PIPE] = ACTIONS(2558), + [anon_sym_e_GT_PIPE] = ACTIONS(2558), + [anon_sym_o_GT_PIPE] = ACTIONS(2558), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2558), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2558), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2558), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2558), + [anon_sym_GT2] = ACTIONS(2560), + [anon_sym_DASH2] = ACTIONS(2558), + [anon_sym_STAR2] = ACTIONS(2560), + [anon_sym_and2] = ACTIONS(2558), + [anon_sym_xor2] = ACTIONS(2558), + [anon_sym_or2] = ACTIONS(2558), + [anon_sym_not_DASHin2] = ACTIONS(2558), + [anon_sym_has2] = ACTIONS(2558), + [anon_sym_not_DASHhas2] = ACTIONS(2558), + [anon_sym_starts_DASHwith2] = ACTIONS(2558), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2558), + [anon_sym_ends_DASHwith2] = ACTIONS(2558), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2558), + [anon_sym_EQ_EQ2] = ACTIONS(2558), + [anon_sym_BANG_EQ2] = ACTIONS(2558), + [anon_sym_LT2] = ACTIONS(2560), + [anon_sym_LT_EQ2] = ACTIONS(2558), + [anon_sym_GT_EQ2] = ACTIONS(2558), + [anon_sym_EQ_TILDE2] = ACTIONS(2558), + [anon_sym_BANG_TILDE2] = ACTIONS(2558), + [anon_sym_like2] = ACTIONS(2558), + [anon_sym_not_DASHlike2] = ACTIONS(2558), + [anon_sym_STAR_STAR2] = ACTIONS(2558), + [anon_sym_PLUS_PLUS2] = ACTIONS(2558), + [anon_sym_SLASH2] = ACTIONS(2560), + [anon_sym_mod2] = ACTIONS(2558), + [anon_sym_SLASH_SLASH2] = ACTIONS(2558), + [anon_sym_PLUS2] = ACTIONS(2560), + [anon_sym_bit_DASHshl2] = ACTIONS(2558), + [anon_sym_bit_DASHshr2] = ACTIONS(2558), + [anon_sym_bit_DASHand2] = ACTIONS(2558), + [anon_sym_bit_DASHxor2] = ACTIONS(2558), + [anon_sym_bit_DASHor2] = ACTIONS(2558), + [anon_sym_err_GT] = ACTIONS(2560), + [anon_sym_out_GT] = ACTIONS(2560), + [anon_sym_e_GT] = ACTIONS(2560), + [anon_sym_o_GT] = ACTIONS(2560), + [anon_sym_err_PLUSout_GT] = ACTIONS(2560), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2560), + [anon_sym_o_PLUSe_GT] = ACTIONS(2560), + [anon_sym_e_PLUSo_GT] = ACTIONS(2560), + [anon_sym_err_GT_GT] = ACTIONS(2558), + [anon_sym_out_GT_GT] = ACTIONS(2558), + [anon_sym_e_GT_GT] = ACTIONS(2558), + [anon_sym_o_GT_GT] = ACTIONS(2558), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2558), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2558), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2558), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2558), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1212)] = { - [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1212), - [anon_sym_in] = ACTIONS(2927), - [sym__newline] = ACTIONS(2750), - [anon_sym_SEMI] = ACTIONS(2750), - [anon_sym_PIPE] = ACTIONS(2750), - [anon_sym_err_GT_PIPE] = ACTIONS(2750), - [anon_sym_out_GT_PIPE] = ACTIONS(2750), - [anon_sym_e_GT_PIPE] = ACTIONS(2750), - [anon_sym_o_GT_PIPE] = ACTIONS(2750), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2750), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2750), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2750), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2750), - [anon_sym_RPAREN] = ACTIONS(2750), - [anon_sym_GT2] = ACTIONS(2911), - [anon_sym_DASH2] = ACTIONS(2913), - [anon_sym_STAR2] = ACTIONS(2915), - [anon_sym_and2] = ACTIONS(2937), - [anon_sym_xor2] = ACTIONS(2939), - [anon_sym_or2] = ACTIONS(2750), - [anon_sym_not_DASHin2] = ACTIONS(2927), - [anon_sym_has2] = ACTIONS(2927), - [anon_sym_not_DASHhas2] = ACTIONS(2927), - [anon_sym_starts_DASHwith2] = ACTIONS(2927), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2927), - [anon_sym_ends_DASHwith2] = ACTIONS(2927), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2927), - [anon_sym_EQ_EQ2] = ACTIONS(2917), - [anon_sym_BANG_EQ2] = ACTIONS(2917), - [anon_sym_LT2] = ACTIONS(2911), - [anon_sym_LT_EQ2] = ACTIONS(2917), - [anon_sym_GT_EQ2] = ACTIONS(2917), - [anon_sym_EQ_TILDE2] = ACTIONS(2929), - [anon_sym_BANG_TILDE2] = ACTIONS(2929), - [anon_sym_like2] = ACTIONS(2929), - [anon_sym_not_DASHlike2] = ACTIONS(2929), - [anon_sym_STAR_STAR2] = ACTIONS(2919), - [anon_sym_PLUS_PLUS2] = ACTIONS(2919), - [anon_sym_SLASH2] = ACTIONS(2915), - [anon_sym_mod2] = ACTIONS(2921), - [anon_sym_SLASH_SLASH2] = ACTIONS(2921), - [anon_sym_PLUS2] = ACTIONS(2923), - [anon_sym_bit_DASHshl2] = ACTIONS(2925), - [anon_sym_bit_DASHshr2] = ACTIONS(2925), - [anon_sym_bit_DASHand2] = ACTIONS(2931), - [anon_sym_bit_DASHxor2] = ACTIONS(2933), - [anon_sym_bit_DASHor2] = ACTIONS(2935), - [anon_sym_err_GT] = ACTIONS(2752), - [anon_sym_out_GT] = ACTIONS(2752), - [anon_sym_e_GT] = ACTIONS(2752), - [anon_sym_o_GT] = ACTIONS(2752), - [anon_sym_err_PLUSout_GT] = ACTIONS(2752), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2752), - [anon_sym_o_PLUSe_GT] = ACTIONS(2752), - [anon_sym_e_PLUSo_GT] = ACTIONS(2752), - [anon_sym_err_GT_GT] = ACTIONS(2750), - [anon_sym_out_GT_GT] = ACTIONS(2750), - [anon_sym_e_GT_GT] = ACTIONS(2750), - [anon_sym_o_GT_GT] = ACTIONS(2750), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2750), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2750), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2750), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2750), + [anon_sym_in] = ACTIONS(2910), + [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(2890), + [anon_sym_DASH2] = ACTIONS(2892), + [anon_sym_RBRACE] = ACTIONS(2648), + [anon_sym_STAR2] = ACTIONS(2894), + [anon_sym_and2] = ACTIONS(2648), + [anon_sym_xor2] = ACTIONS(2648), + [anon_sym_or2] = ACTIONS(2648), + [anon_sym_not_DASHin2] = ACTIONS(2910), + [anon_sym_has2] = ACTIONS(2910), + [anon_sym_not_DASHhas2] = ACTIONS(2910), + [anon_sym_starts_DASHwith2] = ACTIONS(2910), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2910), + [anon_sym_ends_DASHwith2] = ACTIONS(2910), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2910), + [anon_sym_EQ_EQ2] = ACTIONS(2896), + [anon_sym_BANG_EQ2] = ACTIONS(2896), + [anon_sym_LT2] = ACTIONS(2890), + [anon_sym_LT_EQ2] = ACTIONS(2896), + [anon_sym_GT_EQ2] = ACTIONS(2896), + [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(2898), + [anon_sym_PLUS_PLUS2] = ACTIONS(2898), + [anon_sym_SLASH2] = ACTIONS(2894), + [anon_sym_mod2] = ACTIONS(2900), + [anon_sym_SLASH_SLASH2] = ACTIONS(2900), + [anon_sym_PLUS2] = ACTIONS(2902), + [anon_sym_bit_DASHshl2] = ACTIONS(2904), + [anon_sym_bit_DASHshr2] = ACTIONS(2904), + [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(1213)] = { - [aux_sym__repeat_newline] = STATE(1241), [sym_comment] = STATE(1213), - [anon_sym_in] = ACTIONS(2895), - [sym__newline] = ACTIONS(2941), - [anon_sym_SEMI] = ACTIONS(2746), - [anon_sym_PIPE] = ACTIONS(2746), - [anon_sym_err_GT_PIPE] = ACTIONS(2746), - [anon_sym_out_GT_PIPE] = ACTIONS(2746), - [anon_sym_e_GT_PIPE] = ACTIONS(2746), - [anon_sym_o_GT_PIPE] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2746), - [anon_sym_RPAREN] = ACTIONS(2746), - [anon_sym_GT2] = ACTIONS(2807), - [anon_sym_DASH2] = ACTIONS(2809), - [anon_sym_STAR2] = ACTIONS(2811), - [anon_sym_and2] = ACTIONS(2746), - [anon_sym_xor2] = ACTIONS(2746), - [anon_sym_or2] = ACTIONS(2746), - [anon_sym_not_DASHin2] = ACTIONS(2895), - [anon_sym_has2] = ACTIONS(2895), - [anon_sym_not_DASHhas2] = ACTIONS(2895), - [anon_sym_starts_DASHwith2] = ACTIONS(2895), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2895), - [anon_sym_ends_DASHwith2] = ACTIONS(2895), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2895), - [anon_sym_EQ_EQ2] = ACTIONS(2813), - [anon_sym_BANG_EQ2] = ACTIONS(2813), - [anon_sym_LT2] = ACTIONS(2807), - [anon_sym_LT_EQ2] = ACTIONS(2813), - [anon_sym_GT_EQ2] = ACTIONS(2813), - [anon_sym_EQ_TILDE2] = ACTIONS(2746), - [anon_sym_BANG_TILDE2] = ACTIONS(2746), - [anon_sym_like2] = ACTIONS(2746), - [anon_sym_not_DASHlike2] = ACTIONS(2746), - [anon_sym_STAR_STAR2] = ACTIONS(2815), - [anon_sym_PLUS_PLUS2] = ACTIONS(2815), - [anon_sym_SLASH2] = ACTIONS(2811), - [anon_sym_mod2] = ACTIONS(2817), - [anon_sym_SLASH_SLASH2] = ACTIONS(2817), - [anon_sym_PLUS2] = ACTIONS(2819), - [anon_sym_bit_DASHshl2] = ACTIONS(2821), - [anon_sym_bit_DASHshr2] = ACTIONS(2821), - [anon_sym_bit_DASHand2] = ACTIONS(2746), - [anon_sym_bit_DASHxor2] = ACTIONS(2746), - [anon_sym_bit_DASHor2] = ACTIONS(2746), - [anon_sym_err_GT] = ACTIONS(2748), - [anon_sym_out_GT] = ACTIONS(2748), - [anon_sym_e_GT] = ACTIONS(2748), - [anon_sym_o_GT] = ACTIONS(2748), - [anon_sym_err_PLUSout_GT] = ACTIONS(2748), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2748), - [anon_sym_o_PLUSe_GT] = ACTIONS(2748), - [anon_sym_e_PLUSo_GT] = ACTIONS(2748), - [anon_sym_err_GT_GT] = ACTIONS(2746), - [anon_sym_out_GT_GT] = ACTIONS(2746), - [anon_sym_e_GT_GT] = ACTIONS(2746), - [anon_sym_o_GT_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2746), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(968), + [aux_sym_cmd_identifier_token2] = ACTIONS(2822), + [anon_sym_in] = ACTIONS(847), + [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(847), + [anon_sym_DASH2] = ACTIONS(847), + [anon_sym_STAR2] = ACTIONS(847), + [anon_sym_and2] = ACTIONS(847), + [anon_sym_xor2] = ACTIONS(847), + [anon_sym_or2] = ACTIONS(847), + [anon_sym_not_DASHin2] = ACTIONS(847), + [anon_sym_has2] = ACTIONS(847), + [anon_sym_not_DASHhas2] = ACTIONS(847), + [anon_sym_starts_DASHwith2] = ACTIONS(847), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(847), + [anon_sym_ends_DASHwith2] = ACTIONS(847), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(847), + [anon_sym_EQ_EQ2] = ACTIONS(968), + [anon_sym_BANG_EQ2] = ACTIONS(968), + [anon_sym_LT2] = ACTIONS(847), + [anon_sym_LT_EQ2] = ACTIONS(968), + [anon_sym_GT_EQ2] = ACTIONS(968), + [anon_sym_EQ_TILDE2] = ACTIONS(968), + [anon_sym_BANG_TILDE2] = ACTIONS(847), + [anon_sym_like2] = ACTIONS(847), + [anon_sym_not_DASHlike2] = ACTIONS(847), + [anon_sym_STAR_STAR2] = ACTIONS(847), + [anon_sym_PLUS_PLUS2] = ACTIONS(847), + [anon_sym_SLASH2] = ACTIONS(847), + [anon_sym_mod2] = ACTIONS(847), + [anon_sym_SLASH_SLASH2] = ACTIONS(847), + [anon_sym_PLUS2] = ACTIONS(847), + [anon_sym_bit_DASHshl2] = ACTIONS(847), + [anon_sym_bit_DASHshr2] = ACTIONS(847), + [anon_sym_bit_DASHand2] = ACTIONS(847), + [anon_sym_bit_DASHxor2] = ACTIONS(847), + [anon_sym_bit_DASHor2] = ACTIONS(847), + [anon_sym_err_GT] = ACTIONS(847), + [anon_sym_out_GT] = ACTIONS(847), + [anon_sym_e_GT] = ACTIONS(847), + [anon_sym_o_GT] = ACTIONS(847), + [anon_sym_err_PLUSout_GT] = ACTIONS(847), + [anon_sym_out_PLUSerr_GT] = ACTIONS(847), + [anon_sym_o_PLUSe_GT] = ACTIONS(847), + [anon_sym_e_PLUSo_GT] = ACTIONS(847), + [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(1214)] = { - [aux_sym__repeat_newline] = STATE(527), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1214), - [anon_sym_in] = ACTIONS(2927), - [sym__newline] = ACTIONS(2750), - [anon_sym_SEMI] = ACTIONS(2750), - [anon_sym_PIPE] = ACTIONS(2750), - [anon_sym_err_GT_PIPE] = ACTIONS(2750), - [anon_sym_out_GT_PIPE] = ACTIONS(2750), - [anon_sym_e_GT_PIPE] = ACTIONS(2750), - [anon_sym_o_GT_PIPE] = ACTIONS(2750), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2750), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2750), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2750), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2750), - [anon_sym_RPAREN] = ACTIONS(2750), - [anon_sym_GT2] = ACTIONS(2911), - [anon_sym_DASH2] = ACTIONS(2913), - [anon_sym_STAR2] = ACTIONS(2915), - [anon_sym_and2] = ACTIONS(2750), - [anon_sym_xor2] = ACTIONS(2750), - [anon_sym_or2] = ACTIONS(2750), - [anon_sym_not_DASHin2] = ACTIONS(2927), - [anon_sym_has2] = ACTIONS(2927), - [anon_sym_not_DASHhas2] = ACTIONS(2927), - [anon_sym_starts_DASHwith2] = ACTIONS(2927), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2927), - [anon_sym_ends_DASHwith2] = ACTIONS(2927), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2927), - [anon_sym_EQ_EQ2] = ACTIONS(2917), - [anon_sym_BANG_EQ2] = ACTIONS(2917), - [anon_sym_LT2] = ACTIONS(2911), - [anon_sym_LT_EQ2] = ACTIONS(2917), - [anon_sym_GT_EQ2] = ACTIONS(2917), - [anon_sym_EQ_TILDE2] = ACTIONS(2750), - [anon_sym_BANG_TILDE2] = ACTIONS(2750), - [anon_sym_like2] = ACTIONS(2750), - [anon_sym_not_DASHlike2] = ACTIONS(2750), - [anon_sym_STAR_STAR2] = ACTIONS(2919), - [anon_sym_PLUS_PLUS2] = ACTIONS(2919), - [anon_sym_SLASH2] = ACTIONS(2915), - [anon_sym_mod2] = ACTIONS(2921), - [anon_sym_SLASH_SLASH2] = ACTIONS(2921), - [anon_sym_PLUS2] = ACTIONS(2923), - [anon_sym_bit_DASHshl2] = ACTIONS(2925), - [anon_sym_bit_DASHshr2] = ACTIONS(2925), - [anon_sym_bit_DASHand2] = ACTIONS(2750), - [anon_sym_bit_DASHxor2] = ACTIONS(2750), - [anon_sym_bit_DASHor2] = ACTIONS(2750), - [anon_sym_err_GT] = ACTIONS(2752), - [anon_sym_out_GT] = ACTIONS(2752), - [anon_sym_e_GT] = ACTIONS(2752), - [anon_sym_o_GT] = ACTIONS(2752), - [anon_sym_err_PLUSout_GT] = ACTIONS(2752), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2752), - [anon_sym_o_PLUSe_GT] = ACTIONS(2752), - [anon_sym_e_PLUSo_GT] = ACTIONS(2752), - [anon_sym_err_GT_GT] = ACTIONS(2750), - [anon_sym_out_GT_GT] = ACTIONS(2750), - [anon_sym_e_GT_GT] = ACTIONS(2750), - [anon_sym_o_GT_GT] = ACTIONS(2750), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2750), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2750), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2750), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2750), + [anon_sym_in] = ACTIONS(2824), + [sym__newline] = ACTIONS(2794), + [anon_sym_SEMI] = ACTIONS(2794), + [anon_sym_PIPE] = ACTIONS(2794), + [anon_sym_err_GT_PIPE] = ACTIONS(2794), + [anon_sym_out_GT_PIPE] = ACTIONS(2794), + [anon_sym_e_GT_PIPE] = ACTIONS(2794), + [anon_sym_o_GT_PIPE] = ACTIONS(2794), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2794), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2794), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2794), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2794), + [anon_sym_RPAREN] = ACTIONS(2794), + [anon_sym_GT2] = ACTIONS(2826), + [anon_sym_DASH2] = ACTIONS(2828), + [anon_sym_STAR2] = ACTIONS(2830), + [anon_sym_and2] = ACTIONS(2906), + [anon_sym_xor2] = ACTIONS(2908), + [anon_sym_or2] = ACTIONS(2794), + [anon_sym_not_DASHin2] = ACTIONS(2824), + [anon_sym_has2] = ACTIONS(2824), + [anon_sym_not_DASHhas2] = ACTIONS(2824), + [anon_sym_starts_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2824), + [anon_sym_ends_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2824), + [anon_sym_EQ_EQ2] = ACTIONS(2832), + [anon_sym_BANG_EQ2] = ACTIONS(2832), + [anon_sym_LT2] = ACTIONS(2826), + [anon_sym_LT_EQ2] = ACTIONS(2832), + [anon_sym_GT_EQ2] = ACTIONS(2832), + [anon_sym_EQ_TILDE2] = ACTIONS(2834), + [anon_sym_BANG_TILDE2] = ACTIONS(2834), + [anon_sym_like2] = ACTIONS(2834), + [anon_sym_not_DASHlike2] = ACTIONS(2834), + [anon_sym_STAR_STAR2] = ACTIONS(2836), + [anon_sym_PLUS_PLUS2] = ACTIONS(2836), + [anon_sym_SLASH2] = ACTIONS(2830), + [anon_sym_mod2] = ACTIONS(2838), + [anon_sym_SLASH_SLASH2] = ACTIONS(2838), + [anon_sym_PLUS2] = ACTIONS(2840), + [anon_sym_bit_DASHshl2] = ACTIONS(2842), + [anon_sym_bit_DASHshr2] = ACTIONS(2842), + [anon_sym_bit_DASHand2] = ACTIONS(2844), + [anon_sym_bit_DASHxor2] = ACTIONS(2846), + [anon_sym_bit_DASHor2] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2796), + [anon_sym_out_GT] = ACTIONS(2796), + [anon_sym_e_GT] = ACTIONS(2796), + [anon_sym_o_GT] = ACTIONS(2796), + [anon_sym_err_PLUSout_GT] = ACTIONS(2796), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2796), + [anon_sym_o_PLUSe_GT] = ACTIONS(2796), + [anon_sym_e_PLUSo_GT] = ACTIONS(2796), + [anon_sym_err_GT_GT] = ACTIONS(2794), + [anon_sym_out_GT_GT] = ACTIONS(2794), + [anon_sym_e_GT_GT] = ACTIONS(2794), + [anon_sym_o_GT_GT] = ACTIONS(2794), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2794), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2794), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2794), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2794), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1215)] = { - [aux_sym__repeat_newline] = STATE(527), + [aux_sym__repeat_newline] = STATE(1143), [sym_comment] = STATE(1215), - [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_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(2919), - [anon_sym_PLUS_PLUS2] = ACTIONS(2919), - [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(2872), + [sym__newline] = ACTIONS(2874), + [anon_sym_SEMI] = ACTIONS(2788), + [anon_sym_PIPE] = ACTIONS(2788), + [anon_sym_err_GT_PIPE] = ACTIONS(2788), + [anon_sym_out_GT_PIPE] = ACTIONS(2788), + [anon_sym_e_GT_PIPE] = ACTIONS(2788), + [anon_sym_o_GT_PIPE] = ACTIONS(2788), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2788), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2788), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2788), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2788), + [anon_sym_RPAREN] = ACTIONS(2788), + [anon_sym_GT2] = ACTIONS(2853), + [anon_sym_DASH2] = ACTIONS(2855), + [anon_sym_STAR2] = ACTIONS(2857), + [anon_sym_and2] = ACTIONS(2788), + [anon_sym_xor2] = ACTIONS(2788), + [anon_sym_or2] = ACTIONS(2788), + [anon_sym_not_DASHin2] = ACTIONS(2872), + [anon_sym_has2] = ACTIONS(2872), + [anon_sym_not_DASHhas2] = ACTIONS(2872), + [anon_sym_starts_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2872), + [anon_sym_ends_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2872), + [anon_sym_EQ_EQ2] = ACTIONS(2859), + [anon_sym_BANG_EQ2] = ACTIONS(2859), + [anon_sym_LT2] = ACTIONS(2853), + [anon_sym_LT_EQ2] = ACTIONS(2859), + [anon_sym_GT_EQ2] = ACTIONS(2859), + [anon_sym_EQ_TILDE2] = ACTIONS(2879), + [anon_sym_BANG_TILDE2] = ACTIONS(2879), + [anon_sym_like2] = ACTIONS(2879), + [anon_sym_not_DASHlike2] = ACTIONS(2879), + [anon_sym_STAR_STAR2] = ACTIONS(2861), + [anon_sym_PLUS_PLUS2] = ACTIONS(2861), + [anon_sym_SLASH2] = ACTIONS(2857), + [anon_sym_mod2] = ACTIONS(2863), + [anon_sym_SLASH_SLASH2] = ACTIONS(2863), + [anon_sym_PLUS2] = ACTIONS(2865), + [anon_sym_bit_DASHshl2] = ACTIONS(2867), + [anon_sym_bit_DASHshr2] = ACTIONS(2867), + [anon_sym_bit_DASHand2] = ACTIONS(2881), + [anon_sym_bit_DASHxor2] = ACTIONS(2883), + [anon_sym_bit_DASHor2] = ACTIONS(2788), + [anon_sym_err_GT] = ACTIONS(2790), + [anon_sym_out_GT] = ACTIONS(2790), + [anon_sym_e_GT] = ACTIONS(2790), + [anon_sym_o_GT] = ACTIONS(2790), + [anon_sym_err_PLUSout_GT] = ACTIONS(2790), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2790), + [anon_sym_o_PLUSe_GT] = ACTIONS(2790), + [anon_sym_e_PLUSo_GT] = ACTIONS(2790), + [anon_sym_err_GT_GT] = ACTIONS(2788), + [anon_sym_out_GT_GT] = ACTIONS(2788), + [anon_sym_e_GT_GT] = ACTIONS(2788), + [anon_sym_o_GT_GT] = ACTIONS(2788), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2788), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2788), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2788), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2788), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1216)] = { - [aux_sym__repeat_newline] = STATE(1242), + [aux_sym__repeat_newline] = STATE(1225), [sym_comment] = STATE(1216), - [anon_sym_in] = ACTIONS(2895), - [sym__newline] = ACTIONS(2860), - [anon_sym_SEMI] = ACTIONS(2754), - [anon_sym_PIPE] = ACTIONS(2754), - [anon_sym_err_GT_PIPE] = ACTIONS(2754), - [anon_sym_out_GT_PIPE] = ACTIONS(2754), - [anon_sym_e_GT_PIPE] = ACTIONS(2754), - [anon_sym_o_GT_PIPE] = ACTIONS(2754), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2754), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2754), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2754), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2754), - [anon_sym_RPAREN] = ACTIONS(2754), - [anon_sym_GT2] = ACTIONS(2807), - [anon_sym_DASH2] = ACTIONS(2809), - [anon_sym_STAR2] = ACTIONS(2811), - [anon_sym_and2] = ACTIONS(2754), - [anon_sym_xor2] = ACTIONS(2754), - [anon_sym_or2] = ACTIONS(2754), - [anon_sym_not_DASHin2] = ACTIONS(2895), - [anon_sym_has2] = ACTIONS(2895), - [anon_sym_not_DASHhas2] = ACTIONS(2895), - [anon_sym_starts_DASHwith2] = ACTIONS(2895), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2895), - [anon_sym_ends_DASHwith2] = ACTIONS(2895), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2895), - [anon_sym_EQ_EQ2] = ACTIONS(2813), - [anon_sym_BANG_EQ2] = ACTIONS(2813), - [anon_sym_LT2] = ACTIONS(2807), - [anon_sym_LT_EQ2] = ACTIONS(2813), - [anon_sym_GT_EQ2] = ACTIONS(2813), - [anon_sym_EQ_TILDE2] = ACTIONS(2754), - [anon_sym_BANG_TILDE2] = ACTIONS(2754), - [anon_sym_like2] = ACTIONS(2754), - [anon_sym_not_DASHlike2] = ACTIONS(2754), - [anon_sym_STAR_STAR2] = ACTIONS(2815), - [anon_sym_PLUS_PLUS2] = ACTIONS(2815), - [anon_sym_SLASH2] = ACTIONS(2811), - [anon_sym_mod2] = ACTIONS(2817), - [anon_sym_SLASH_SLASH2] = ACTIONS(2817), - [anon_sym_PLUS2] = ACTIONS(2819), - [anon_sym_bit_DASHshl2] = ACTIONS(2821), - [anon_sym_bit_DASHshr2] = ACTIONS(2821), - [anon_sym_bit_DASHand2] = ACTIONS(2754), - [anon_sym_bit_DASHxor2] = ACTIONS(2754), - [anon_sym_bit_DASHor2] = ACTIONS(2754), - [anon_sym_err_GT] = ACTIONS(2756), - [anon_sym_out_GT] = ACTIONS(2756), - [anon_sym_e_GT] = ACTIONS(2756), - [anon_sym_o_GT] = ACTIONS(2756), - [anon_sym_err_PLUSout_GT] = ACTIONS(2756), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2756), - [anon_sym_o_PLUSe_GT] = ACTIONS(2756), - [anon_sym_e_PLUSo_GT] = ACTIONS(2756), - [anon_sym_err_GT_GT] = ACTIONS(2754), - [anon_sym_out_GT_GT] = ACTIONS(2754), - [anon_sym_e_GT_GT] = ACTIONS(2754), - [anon_sym_o_GT_GT] = ACTIONS(2754), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2754), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2754), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2754), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2754), + [anon_sym_in] = ACTIONS(2872), + [sym__newline] = ACTIONS(2850), + [anon_sym_SEMI] = ACTIONS(2798), + [anon_sym_PIPE] = ACTIONS(2798), + [anon_sym_err_GT_PIPE] = ACTIONS(2798), + [anon_sym_out_GT_PIPE] = ACTIONS(2798), + [anon_sym_e_GT_PIPE] = ACTIONS(2798), + [anon_sym_o_GT_PIPE] = ACTIONS(2798), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2798), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2798), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2798), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2798), + [anon_sym_RPAREN] = ACTIONS(2798), + [anon_sym_GT2] = ACTIONS(2853), + [anon_sym_DASH2] = ACTIONS(2855), + [anon_sym_STAR2] = ACTIONS(2857), + [anon_sym_and2] = ACTIONS(2798), + [anon_sym_xor2] = ACTIONS(2798), + [anon_sym_or2] = ACTIONS(2798), + [anon_sym_not_DASHin2] = ACTIONS(2872), + [anon_sym_has2] = ACTIONS(2872), + [anon_sym_not_DASHhas2] = ACTIONS(2872), + [anon_sym_starts_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2872), + [anon_sym_ends_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2872), + [anon_sym_EQ_EQ2] = ACTIONS(2859), + [anon_sym_BANG_EQ2] = ACTIONS(2859), + [anon_sym_LT2] = ACTIONS(2853), + [anon_sym_LT_EQ2] = ACTIONS(2859), + [anon_sym_GT_EQ2] = ACTIONS(2859), + [anon_sym_EQ_TILDE2] = ACTIONS(2798), + [anon_sym_BANG_TILDE2] = ACTIONS(2798), + [anon_sym_like2] = ACTIONS(2798), + [anon_sym_not_DASHlike2] = ACTIONS(2798), + [anon_sym_STAR_STAR2] = ACTIONS(2861), + [anon_sym_PLUS_PLUS2] = ACTIONS(2861), + [anon_sym_SLASH2] = ACTIONS(2857), + [anon_sym_mod2] = ACTIONS(2863), + [anon_sym_SLASH_SLASH2] = ACTIONS(2863), + [anon_sym_PLUS2] = ACTIONS(2865), + [anon_sym_bit_DASHshl2] = ACTIONS(2867), + [anon_sym_bit_DASHshr2] = ACTIONS(2867), + [anon_sym_bit_DASHand2] = ACTIONS(2798), + [anon_sym_bit_DASHxor2] = ACTIONS(2798), + [anon_sym_bit_DASHor2] = ACTIONS(2798), + [anon_sym_err_GT] = ACTIONS(2800), + [anon_sym_out_GT] = ACTIONS(2800), + [anon_sym_e_GT] = ACTIONS(2800), + [anon_sym_o_GT] = ACTIONS(2800), + [anon_sym_err_PLUSout_GT] = ACTIONS(2800), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2800), + [anon_sym_o_PLUSe_GT] = ACTIONS(2800), + [anon_sym_e_PLUSo_GT] = ACTIONS(2800), + [anon_sym_err_GT_GT] = ACTIONS(2798), + [anon_sym_out_GT_GT] = ACTIONS(2798), + [anon_sym_e_GT_GT] = ACTIONS(2798), + [anon_sym_o_GT_GT] = ACTIONS(2798), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2798), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2798), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2798), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2798), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1217)] = { - [aux_sym__repeat_newline] = STATE(1183), + [aux_sym__repeat_newline] = STATE(1142), [sym_comment] = STATE(1217), - [anon_sym_in] = ACTIONS(2895), - [sym__newline] = ACTIONS(2804), - [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(2807), - [anon_sym_DASH2] = ACTIONS(2809), - [anon_sym_STAR2] = ACTIONS(2811), - [anon_sym_and2] = ACTIONS(2720), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2895), - [anon_sym_has2] = ACTIONS(2895), - [anon_sym_not_DASHhas2] = ACTIONS(2895), - [anon_sym_starts_DASHwith2] = ACTIONS(2895), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2895), - [anon_sym_ends_DASHwith2] = ACTIONS(2895), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2895), - [anon_sym_EQ_EQ2] = ACTIONS(2813), - [anon_sym_BANG_EQ2] = ACTIONS(2813), - [anon_sym_LT2] = ACTIONS(2807), - [anon_sym_LT_EQ2] = ACTIONS(2813), - [anon_sym_GT_EQ2] = ACTIONS(2813), - [anon_sym_EQ_TILDE2] = ACTIONS(2897), - [anon_sym_BANG_TILDE2] = ACTIONS(2897), - [anon_sym_like2] = ACTIONS(2897), - [anon_sym_not_DASHlike2] = ACTIONS(2897), - [anon_sym_STAR_STAR2] = ACTIONS(2815), - [anon_sym_PLUS_PLUS2] = ACTIONS(2815), - [anon_sym_SLASH2] = ACTIONS(2811), - [anon_sym_mod2] = ACTIONS(2817), - [anon_sym_SLASH_SLASH2] = ACTIONS(2817), - [anon_sym_PLUS2] = ACTIONS(2819), - [anon_sym_bit_DASHshl2] = ACTIONS(2821), - [anon_sym_bit_DASHshr2] = ACTIONS(2821), - [anon_sym_bit_DASHand2] = ACTIONS(2899), - [anon_sym_bit_DASHxor2] = ACTIONS(2901), - [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(2872), + [sym__newline] = ACTIONS(2850), + [anon_sym_SEMI] = ACTIONS(2798), + [anon_sym_PIPE] = ACTIONS(2798), + [anon_sym_err_GT_PIPE] = ACTIONS(2798), + [anon_sym_out_GT_PIPE] = ACTIONS(2798), + [anon_sym_e_GT_PIPE] = ACTIONS(2798), + [anon_sym_o_GT_PIPE] = ACTIONS(2798), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2798), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2798), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2798), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2798), + [anon_sym_RPAREN] = ACTIONS(2798), + [anon_sym_GT2] = ACTIONS(2853), + [anon_sym_DASH2] = ACTIONS(2855), + [anon_sym_STAR2] = ACTIONS(2857), + [anon_sym_and2] = ACTIONS(2798), + [anon_sym_xor2] = ACTIONS(2798), + [anon_sym_or2] = ACTIONS(2798), + [anon_sym_not_DASHin2] = ACTIONS(2872), + [anon_sym_has2] = ACTIONS(2872), + [anon_sym_not_DASHhas2] = ACTIONS(2872), + [anon_sym_starts_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2872), + [anon_sym_ends_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2872), + [anon_sym_EQ_EQ2] = ACTIONS(2859), + [anon_sym_BANG_EQ2] = ACTIONS(2859), + [anon_sym_LT2] = ACTIONS(2853), + [anon_sym_LT_EQ2] = ACTIONS(2859), + [anon_sym_GT_EQ2] = ACTIONS(2859), + [anon_sym_EQ_TILDE2] = ACTIONS(2879), + [anon_sym_BANG_TILDE2] = ACTIONS(2879), + [anon_sym_like2] = ACTIONS(2879), + [anon_sym_not_DASHlike2] = ACTIONS(2879), + [anon_sym_STAR_STAR2] = ACTIONS(2861), + [anon_sym_PLUS_PLUS2] = ACTIONS(2861), + [anon_sym_SLASH2] = ACTIONS(2857), + [anon_sym_mod2] = ACTIONS(2863), + [anon_sym_SLASH_SLASH2] = ACTIONS(2863), + [anon_sym_PLUS2] = ACTIONS(2865), + [anon_sym_bit_DASHshl2] = ACTIONS(2867), + [anon_sym_bit_DASHshr2] = ACTIONS(2867), + [anon_sym_bit_DASHand2] = ACTIONS(2881), + [anon_sym_bit_DASHxor2] = ACTIONS(2883), + [anon_sym_bit_DASHor2] = ACTIONS(2798), + [anon_sym_err_GT] = ACTIONS(2800), + [anon_sym_out_GT] = ACTIONS(2800), + [anon_sym_e_GT] = ACTIONS(2800), + [anon_sym_o_GT] = ACTIONS(2800), + [anon_sym_err_PLUSout_GT] = ACTIONS(2800), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2800), + [anon_sym_o_PLUSe_GT] = ACTIONS(2800), + [anon_sym_e_PLUSo_GT] = ACTIONS(2800), + [anon_sym_err_GT_GT] = ACTIONS(2798), + [anon_sym_out_GT_GT] = ACTIONS(2798), + [anon_sym_e_GT_GT] = ACTIONS(2798), + [anon_sym_o_GT_GT] = ACTIONS(2798), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2798), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2798), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2798), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2798), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1218)] = { - [aux_sym__repeat_newline] = STATE(1243), + [aux_sym__repeat_newline] = STATE(1184), [sym_comment] = STATE(1218), - [anon_sym_in] = ACTIONS(2746), - [sym__newline] = ACTIONS(2941), - [anon_sym_SEMI] = ACTIONS(2746), - [anon_sym_PIPE] = ACTIONS(2746), - [anon_sym_err_GT_PIPE] = ACTIONS(2746), - [anon_sym_out_GT_PIPE] = ACTIONS(2746), - [anon_sym_e_GT_PIPE] = ACTIONS(2746), - [anon_sym_o_GT_PIPE] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2746), - [anon_sym_RPAREN] = ACTIONS(2746), - [anon_sym_GT2] = ACTIONS(2748), - [anon_sym_DASH2] = ACTIONS(2809), - [anon_sym_STAR2] = ACTIONS(2811), - [anon_sym_and2] = ACTIONS(2746), - [anon_sym_xor2] = ACTIONS(2746), - [anon_sym_or2] = ACTIONS(2746), - [anon_sym_not_DASHin2] = ACTIONS(2746), - [anon_sym_has2] = ACTIONS(2746), - [anon_sym_not_DASHhas2] = ACTIONS(2746), - [anon_sym_starts_DASHwith2] = ACTIONS(2746), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2746), - [anon_sym_ends_DASHwith2] = ACTIONS(2746), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2746), - [anon_sym_EQ_EQ2] = ACTIONS(2746), - [anon_sym_BANG_EQ2] = ACTIONS(2746), - [anon_sym_LT2] = ACTIONS(2748), - [anon_sym_LT_EQ2] = ACTIONS(2746), - [anon_sym_GT_EQ2] = ACTIONS(2746), - [anon_sym_EQ_TILDE2] = ACTIONS(2746), - [anon_sym_BANG_TILDE2] = ACTIONS(2746), - [anon_sym_like2] = ACTIONS(2746), - [anon_sym_not_DASHlike2] = ACTIONS(2746), - [anon_sym_STAR_STAR2] = ACTIONS(2815), - [anon_sym_PLUS_PLUS2] = ACTIONS(2815), - [anon_sym_SLASH2] = ACTIONS(2811), - [anon_sym_mod2] = ACTIONS(2817), - [anon_sym_SLASH_SLASH2] = ACTIONS(2817), - [anon_sym_PLUS2] = ACTIONS(2819), - [anon_sym_bit_DASHshl2] = ACTIONS(2746), - [anon_sym_bit_DASHshr2] = ACTIONS(2746), - [anon_sym_bit_DASHand2] = ACTIONS(2746), - [anon_sym_bit_DASHxor2] = ACTIONS(2746), - [anon_sym_bit_DASHor2] = ACTIONS(2746), - [anon_sym_err_GT] = ACTIONS(2748), - [anon_sym_out_GT] = ACTIONS(2748), - [anon_sym_e_GT] = ACTIONS(2748), - [anon_sym_o_GT] = ACTIONS(2748), - [anon_sym_err_PLUSout_GT] = ACTIONS(2748), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2748), - [anon_sym_o_PLUSe_GT] = ACTIONS(2748), - [anon_sym_e_PLUSo_GT] = ACTIONS(2748), - [anon_sym_err_GT_GT] = ACTIONS(2746), - [anon_sym_out_GT_GT] = ACTIONS(2746), - [anon_sym_e_GT_GT] = ACTIONS(2746), - [anon_sym_o_GT_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2746), + [anon_sym_in] = ACTIONS(2872), + [sym__newline] = ACTIONS(2874), + [anon_sym_SEMI] = ACTIONS(2788), + [anon_sym_PIPE] = ACTIONS(2788), + [anon_sym_err_GT_PIPE] = ACTIONS(2788), + [anon_sym_out_GT_PIPE] = ACTIONS(2788), + [anon_sym_e_GT_PIPE] = ACTIONS(2788), + [anon_sym_o_GT_PIPE] = ACTIONS(2788), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2788), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2788), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2788), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2788), + [anon_sym_RPAREN] = ACTIONS(2788), + [anon_sym_GT2] = ACTIONS(2853), + [anon_sym_DASH2] = ACTIONS(2855), + [anon_sym_STAR2] = ACTIONS(2857), + [anon_sym_and2] = ACTIONS(2788), + [anon_sym_xor2] = ACTIONS(2788), + [anon_sym_or2] = ACTIONS(2788), + [anon_sym_not_DASHin2] = ACTIONS(2872), + [anon_sym_has2] = ACTIONS(2872), + [anon_sym_not_DASHhas2] = ACTIONS(2872), + [anon_sym_starts_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2872), + [anon_sym_ends_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2872), + [anon_sym_EQ_EQ2] = ACTIONS(2859), + [anon_sym_BANG_EQ2] = ACTIONS(2859), + [anon_sym_LT2] = ACTIONS(2853), + [anon_sym_LT_EQ2] = ACTIONS(2859), + [anon_sym_GT_EQ2] = ACTIONS(2859), + [anon_sym_EQ_TILDE2] = ACTIONS(2788), + [anon_sym_BANG_TILDE2] = ACTIONS(2788), + [anon_sym_like2] = ACTIONS(2788), + [anon_sym_not_DASHlike2] = ACTIONS(2788), + [anon_sym_STAR_STAR2] = ACTIONS(2861), + [anon_sym_PLUS_PLUS2] = ACTIONS(2861), + [anon_sym_SLASH2] = ACTIONS(2857), + [anon_sym_mod2] = ACTIONS(2863), + [anon_sym_SLASH_SLASH2] = ACTIONS(2863), + [anon_sym_PLUS2] = ACTIONS(2865), + [anon_sym_bit_DASHshl2] = ACTIONS(2867), + [anon_sym_bit_DASHshr2] = ACTIONS(2867), + [anon_sym_bit_DASHand2] = ACTIONS(2788), + [anon_sym_bit_DASHxor2] = ACTIONS(2788), + [anon_sym_bit_DASHor2] = ACTIONS(2788), + [anon_sym_err_GT] = ACTIONS(2790), + [anon_sym_out_GT] = ACTIONS(2790), + [anon_sym_e_GT] = ACTIONS(2790), + [anon_sym_o_GT] = ACTIONS(2790), + [anon_sym_err_PLUSout_GT] = ACTIONS(2790), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2790), + [anon_sym_o_PLUSe_GT] = ACTIONS(2790), + [anon_sym_e_PLUSo_GT] = ACTIONS(2790), + [anon_sym_err_GT_GT] = ACTIONS(2788), + [anon_sym_out_GT_GT] = ACTIONS(2788), + [anon_sym_e_GT_GT] = ACTIONS(2788), + [anon_sym_o_GT_GT] = ACTIONS(2788), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2788), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2788), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2788), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2788), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1219)] = { - [aux_sym__repeat_newline] = STATE(527), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1219), - [anon_sym_in] = ACTIONS(2927), - [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(2911), - [anon_sym_DASH2] = ACTIONS(2913), - [anon_sym_STAR2] = ACTIONS(2915), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2927), - [anon_sym_has2] = ACTIONS(2927), - [anon_sym_not_DASHhas2] = ACTIONS(2927), - [anon_sym_starts_DASHwith2] = ACTIONS(2927), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2927), - [anon_sym_ends_DASHwith2] = ACTIONS(2927), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2927), - [anon_sym_EQ_EQ2] = ACTIONS(2917), - [anon_sym_BANG_EQ2] = ACTIONS(2917), - [anon_sym_LT2] = ACTIONS(2911), - [anon_sym_LT_EQ2] = ACTIONS(2917), - [anon_sym_GT_EQ2] = ACTIONS(2917), - [anon_sym_EQ_TILDE2] = ACTIONS(2929), - [anon_sym_BANG_TILDE2] = ACTIONS(2929), - [anon_sym_like2] = ACTIONS(2929), - [anon_sym_not_DASHlike2] = ACTIONS(2929), - [anon_sym_STAR_STAR2] = ACTIONS(2919), - [anon_sym_PLUS_PLUS2] = ACTIONS(2919), - [anon_sym_SLASH2] = ACTIONS(2915), - [anon_sym_mod2] = ACTIONS(2921), - [anon_sym_SLASH_SLASH2] = ACTIONS(2921), - [anon_sym_PLUS2] = ACTIONS(2923), - [anon_sym_bit_DASHshl2] = ACTIONS(2925), - [anon_sym_bit_DASHshr2] = ACTIONS(2925), - [anon_sym_bit_DASHand2] = ACTIONS(2931), - [anon_sym_bit_DASHxor2] = ACTIONS(2933), - [anon_sym_bit_DASHor2] = ACTIONS(2935), - [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(2810), + [sym__newline] = ACTIONS(2810), + [anon_sym_SEMI] = ACTIONS(2810), + [anon_sym_PIPE] = ACTIONS(2810), + [anon_sym_err_GT_PIPE] = ACTIONS(2810), + [anon_sym_out_GT_PIPE] = ACTIONS(2810), + [anon_sym_e_GT_PIPE] = ACTIONS(2810), + [anon_sym_o_GT_PIPE] = ACTIONS(2810), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2810), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2810), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2810), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2810), + [anon_sym_RPAREN] = ACTIONS(2810), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2828), + [anon_sym_STAR2] = ACTIONS(2830), + [anon_sym_and2] = ACTIONS(2810), + [anon_sym_xor2] = ACTIONS(2810), + [anon_sym_or2] = ACTIONS(2810), + [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(2810), + [anon_sym_BANG_EQ2] = ACTIONS(2810), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2810), + [anon_sym_GT_EQ2] = ACTIONS(2810), + [anon_sym_EQ_TILDE2] = ACTIONS(2810), + [anon_sym_BANG_TILDE2] = ACTIONS(2810), + [anon_sym_like2] = ACTIONS(2810), + [anon_sym_not_DASHlike2] = ACTIONS(2810), + [anon_sym_STAR_STAR2] = ACTIONS(2836), + [anon_sym_PLUS_PLUS2] = ACTIONS(2836), + [anon_sym_SLASH2] = ACTIONS(2830), + [anon_sym_mod2] = ACTIONS(2838), + [anon_sym_SLASH_SLASH2] = ACTIONS(2838), + [anon_sym_PLUS2] = ACTIONS(2840), + [anon_sym_bit_DASHshl2] = ACTIONS(2810), + [anon_sym_bit_DASHshr2] = ACTIONS(2810), + [anon_sym_bit_DASHand2] = ACTIONS(2810), + [anon_sym_bit_DASHxor2] = ACTIONS(2810), + [anon_sym_bit_DASHor2] = ACTIONS(2810), + [anon_sym_err_GT] = ACTIONS(2812), + [anon_sym_out_GT] = ACTIONS(2812), + [anon_sym_e_GT] = ACTIONS(2812), + [anon_sym_o_GT] = ACTIONS(2812), + [anon_sym_err_PLUSout_GT] = ACTIONS(2812), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2812), + [anon_sym_o_PLUSe_GT] = ACTIONS(2812), + [anon_sym_e_PLUSo_GT] = ACTIONS(2812), + [anon_sym_err_GT_GT] = ACTIONS(2810), + [anon_sym_out_GT_GT] = ACTIONS(2810), + [anon_sym_e_GT_GT] = ACTIONS(2810), + [anon_sym_o_GT_GT] = ACTIONS(2810), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2810), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2810), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2810), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2810), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1220)] = { - [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1220), - [anon_sym_in] = ACTIONS(2750), - [sym__newline] = ACTIONS(2750), - [anon_sym_SEMI] = ACTIONS(2750), - [anon_sym_PIPE] = ACTIONS(2750), - [anon_sym_err_GT_PIPE] = ACTIONS(2750), - [anon_sym_out_GT_PIPE] = ACTIONS(2750), - [anon_sym_e_GT_PIPE] = ACTIONS(2750), - [anon_sym_o_GT_PIPE] = ACTIONS(2750), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2750), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2750), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2750), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2750), - [anon_sym_RPAREN] = ACTIONS(2750), - [anon_sym_GT2] = ACTIONS(2752), - [anon_sym_DASH2] = ACTIONS(2913), - [anon_sym_STAR2] = ACTIONS(2915), - [anon_sym_and2] = ACTIONS(2750), - [anon_sym_xor2] = ACTIONS(2750), - [anon_sym_or2] = ACTIONS(2750), - [anon_sym_not_DASHin2] = ACTIONS(2750), - [anon_sym_has2] = ACTIONS(2750), - [anon_sym_not_DASHhas2] = ACTIONS(2750), - [anon_sym_starts_DASHwith2] = ACTIONS(2750), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2750), - [anon_sym_ends_DASHwith2] = ACTIONS(2750), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2750), - [anon_sym_EQ_EQ2] = ACTIONS(2750), - [anon_sym_BANG_EQ2] = ACTIONS(2750), - [anon_sym_LT2] = ACTIONS(2752), - [anon_sym_LT_EQ2] = ACTIONS(2750), - [anon_sym_GT_EQ2] = ACTIONS(2750), - [anon_sym_EQ_TILDE2] = ACTIONS(2750), - [anon_sym_BANG_TILDE2] = ACTIONS(2750), - [anon_sym_like2] = ACTIONS(2750), - [anon_sym_not_DASHlike2] = ACTIONS(2750), - [anon_sym_STAR_STAR2] = ACTIONS(2919), - [anon_sym_PLUS_PLUS2] = ACTIONS(2919), - [anon_sym_SLASH2] = ACTIONS(2915), - [anon_sym_mod2] = ACTIONS(2921), - [anon_sym_SLASH_SLASH2] = ACTIONS(2921), - [anon_sym_PLUS2] = ACTIONS(2923), - [anon_sym_bit_DASHshl2] = ACTIONS(2750), - [anon_sym_bit_DASHshr2] = ACTIONS(2750), - [anon_sym_bit_DASHand2] = ACTIONS(2750), - [anon_sym_bit_DASHxor2] = ACTIONS(2750), - [anon_sym_bit_DASHor2] = ACTIONS(2750), - [anon_sym_err_GT] = ACTIONS(2752), - [anon_sym_out_GT] = ACTIONS(2752), - [anon_sym_e_GT] = ACTIONS(2752), - [anon_sym_o_GT] = ACTIONS(2752), - [anon_sym_err_PLUSout_GT] = ACTIONS(2752), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2752), - [anon_sym_o_PLUSe_GT] = ACTIONS(2752), - [anon_sym_e_PLUSo_GT] = ACTIONS(2752), - [anon_sym_err_GT_GT] = ACTIONS(2750), - [anon_sym_out_GT_GT] = ACTIONS(2750), - [anon_sym_e_GT_GT] = ACTIONS(2750), - [anon_sym_o_GT_GT] = ACTIONS(2750), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2750), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2750), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2750), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2750), + [ts_builtin_sym_end] = ACTIONS(2445), + [anon_sym_finally] = 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_GT2] = ACTIONS(2447), + [anon_sym_DASH2] = 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), }, [STATE(1221)] = { - [aux_sym__repeat_newline] = STATE(1244), + [aux_sym__repeat_newline] = STATE(1266), [sym_comment] = STATE(1221), - [anon_sym_in] = ACTIONS(2895), - [sym__newline] = ACTIONS(2941), - [anon_sym_SEMI] = ACTIONS(2746), - [anon_sym_PIPE] = ACTIONS(2746), - [anon_sym_err_GT_PIPE] = ACTIONS(2746), - [anon_sym_out_GT_PIPE] = ACTIONS(2746), - [anon_sym_e_GT_PIPE] = ACTIONS(2746), - [anon_sym_o_GT_PIPE] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2746), - [anon_sym_RPAREN] = ACTIONS(2746), - [anon_sym_GT2] = ACTIONS(2807), - [anon_sym_DASH2] = ACTIONS(2809), - [anon_sym_STAR2] = ACTIONS(2811), - [anon_sym_and2] = ACTIONS(2746), - [anon_sym_xor2] = ACTIONS(2746), - [anon_sym_or2] = ACTIONS(2746), - [anon_sym_not_DASHin2] = ACTIONS(2895), - [anon_sym_has2] = ACTIONS(2895), - [anon_sym_not_DASHhas2] = ACTIONS(2895), - [anon_sym_starts_DASHwith2] = ACTIONS(2895), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2895), - [anon_sym_ends_DASHwith2] = ACTIONS(2895), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2895), - [anon_sym_EQ_EQ2] = ACTIONS(2813), - [anon_sym_BANG_EQ2] = ACTIONS(2813), - [anon_sym_LT2] = ACTIONS(2807), - [anon_sym_LT_EQ2] = ACTIONS(2813), - [anon_sym_GT_EQ2] = ACTIONS(2813), - [anon_sym_EQ_TILDE2] = ACTIONS(2897), - [anon_sym_BANG_TILDE2] = ACTIONS(2897), - [anon_sym_like2] = ACTIONS(2897), - [anon_sym_not_DASHlike2] = ACTIONS(2897), - [anon_sym_STAR_STAR2] = ACTIONS(2815), - [anon_sym_PLUS_PLUS2] = ACTIONS(2815), - [anon_sym_SLASH2] = ACTIONS(2811), - [anon_sym_mod2] = ACTIONS(2817), - [anon_sym_SLASH_SLASH2] = ACTIONS(2817), - [anon_sym_PLUS2] = ACTIONS(2819), - [anon_sym_bit_DASHshl2] = ACTIONS(2821), - [anon_sym_bit_DASHshr2] = ACTIONS(2821), - [anon_sym_bit_DASHand2] = ACTIONS(2746), - [anon_sym_bit_DASHxor2] = ACTIONS(2746), - [anon_sym_bit_DASHor2] = ACTIONS(2746), - [anon_sym_err_GT] = ACTIONS(2748), - [anon_sym_out_GT] = ACTIONS(2748), - [anon_sym_e_GT] = ACTIONS(2748), - [anon_sym_o_GT] = ACTIONS(2748), - [anon_sym_err_PLUSout_GT] = ACTIONS(2748), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2748), - [anon_sym_o_PLUSe_GT] = ACTIONS(2748), - [anon_sym_e_PLUSo_GT] = ACTIONS(2748), - [anon_sym_err_GT_GT] = ACTIONS(2746), - [anon_sym_out_GT_GT] = ACTIONS(2746), - [anon_sym_e_GT_GT] = ACTIONS(2746), - [anon_sym_o_GT_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2746), + [anon_sym_in] = ACTIONS(2872), + [sym__newline] = ACTIONS(2869), + [anon_sym_SEMI] = ACTIONS(2806), + [anon_sym_PIPE] = ACTIONS(2806), + [anon_sym_err_GT_PIPE] = ACTIONS(2806), + [anon_sym_out_GT_PIPE] = ACTIONS(2806), + [anon_sym_e_GT_PIPE] = ACTIONS(2806), + [anon_sym_o_GT_PIPE] = ACTIONS(2806), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2806), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2806), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2806), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2806), + [anon_sym_RPAREN] = ACTIONS(2806), + [anon_sym_GT2] = ACTIONS(2853), + [anon_sym_DASH2] = ACTIONS(2855), + [anon_sym_STAR2] = ACTIONS(2857), + [anon_sym_and2] = ACTIONS(2806), + [anon_sym_xor2] = ACTIONS(2806), + [anon_sym_or2] = ACTIONS(2806), + [anon_sym_not_DASHin2] = ACTIONS(2872), + [anon_sym_has2] = ACTIONS(2872), + [anon_sym_not_DASHhas2] = ACTIONS(2872), + [anon_sym_starts_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2872), + [anon_sym_ends_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2872), + [anon_sym_EQ_EQ2] = ACTIONS(2859), + [anon_sym_BANG_EQ2] = ACTIONS(2859), + [anon_sym_LT2] = ACTIONS(2853), + [anon_sym_LT_EQ2] = ACTIONS(2859), + [anon_sym_GT_EQ2] = ACTIONS(2859), + [anon_sym_EQ_TILDE2] = ACTIONS(2879), + [anon_sym_BANG_TILDE2] = ACTIONS(2879), + [anon_sym_like2] = ACTIONS(2879), + [anon_sym_not_DASHlike2] = ACTIONS(2879), + [anon_sym_STAR_STAR2] = ACTIONS(2861), + [anon_sym_PLUS_PLUS2] = ACTIONS(2861), + [anon_sym_SLASH2] = ACTIONS(2857), + [anon_sym_mod2] = ACTIONS(2863), + [anon_sym_SLASH_SLASH2] = ACTIONS(2863), + [anon_sym_PLUS2] = ACTIONS(2865), + [anon_sym_bit_DASHshl2] = ACTIONS(2867), + [anon_sym_bit_DASHshr2] = ACTIONS(2867), + [anon_sym_bit_DASHand2] = ACTIONS(2806), + [anon_sym_bit_DASHxor2] = ACTIONS(2806), + [anon_sym_bit_DASHor2] = ACTIONS(2806), + [anon_sym_err_GT] = ACTIONS(2808), + [anon_sym_out_GT] = ACTIONS(2808), + [anon_sym_e_GT] = ACTIONS(2808), + [anon_sym_o_GT] = ACTIONS(2808), + [anon_sym_err_PLUSout_GT] = ACTIONS(2808), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2808), + [anon_sym_o_PLUSe_GT] = ACTIONS(2808), + [anon_sym_e_PLUSo_GT] = ACTIONS(2808), + [anon_sym_err_GT_GT] = ACTIONS(2806), + [anon_sym_out_GT_GT] = ACTIONS(2806), + [anon_sym_e_GT_GT] = ACTIONS(2806), + [anon_sym_o_GT_GT] = ACTIONS(2806), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2806), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2806), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2806), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2806), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1222)] = { - [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1222), - [anon_sym_in] = ACTIONS(2927), - [sym__newline] = ACTIONS(2750), - [anon_sym_SEMI] = ACTIONS(2750), - [anon_sym_PIPE] = ACTIONS(2750), - [anon_sym_err_GT_PIPE] = ACTIONS(2750), - [anon_sym_out_GT_PIPE] = ACTIONS(2750), - [anon_sym_e_GT_PIPE] = ACTIONS(2750), - [anon_sym_o_GT_PIPE] = ACTIONS(2750), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2750), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2750), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2750), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2750), - [anon_sym_RPAREN] = ACTIONS(2750), - [anon_sym_GT2] = ACTIONS(2911), - [anon_sym_DASH2] = ACTIONS(2913), - [anon_sym_STAR2] = ACTIONS(2915), - [anon_sym_and2] = ACTIONS(2750), - [anon_sym_xor2] = ACTIONS(2750), - [anon_sym_or2] = ACTIONS(2750), - [anon_sym_not_DASHin2] = ACTIONS(2927), - [anon_sym_has2] = ACTIONS(2927), - [anon_sym_not_DASHhas2] = ACTIONS(2927), - [anon_sym_starts_DASHwith2] = ACTIONS(2927), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2927), - [anon_sym_ends_DASHwith2] = ACTIONS(2927), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2927), - [anon_sym_EQ_EQ2] = ACTIONS(2917), - [anon_sym_BANG_EQ2] = ACTIONS(2917), - [anon_sym_LT2] = ACTIONS(2911), - [anon_sym_LT_EQ2] = ACTIONS(2917), - [anon_sym_GT_EQ2] = ACTIONS(2917), - [anon_sym_EQ_TILDE2] = ACTIONS(2929), - [anon_sym_BANG_TILDE2] = ACTIONS(2929), - [anon_sym_like2] = ACTIONS(2929), - [anon_sym_not_DASHlike2] = ACTIONS(2929), - [anon_sym_STAR_STAR2] = ACTIONS(2919), - [anon_sym_PLUS_PLUS2] = ACTIONS(2919), - [anon_sym_SLASH2] = ACTIONS(2915), - [anon_sym_mod2] = ACTIONS(2921), - [anon_sym_SLASH_SLASH2] = ACTIONS(2921), - [anon_sym_PLUS2] = ACTIONS(2923), - [anon_sym_bit_DASHshl2] = ACTIONS(2925), - [anon_sym_bit_DASHshr2] = ACTIONS(2925), - [anon_sym_bit_DASHand2] = ACTIONS(2750), - [anon_sym_bit_DASHxor2] = ACTIONS(2750), - [anon_sym_bit_DASHor2] = ACTIONS(2750), - [anon_sym_err_GT] = ACTIONS(2752), - [anon_sym_out_GT] = ACTIONS(2752), - [anon_sym_e_GT] = ACTIONS(2752), - [anon_sym_o_GT] = ACTIONS(2752), - [anon_sym_err_PLUSout_GT] = ACTIONS(2752), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2752), - [anon_sym_o_PLUSe_GT] = ACTIONS(2752), - [anon_sym_e_PLUSo_GT] = ACTIONS(2752), - [anon_sym_err_GT_GT] = ACTIONS(2750), - [anon_sym_out_GT_GT] = ACTIONS(2750), - [anon_sym_e_GT_GT] = ACTIONS(2750), - [anon_sym_o_GT_GT] = ACTIONS(2750), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2750), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2750), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2750), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2750), + [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(2892), + [anon_sym_RBRACE] = ACTIONS(2648), + [anon_sym_STAR2] = ACTIONS(2894), + [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(2898), + [anon_sym_PLUS_PLUS2] = ACTIONS(2898), + [anon_sym_SLASH2] = ACTIONS(2894), + [anon_sym_mod2] = ACTIONS(2900), + [anon_sym_SLASH_SLASH2] = ACTIONS(2900), + [anon_sym_PLUS2] = ACTIONS(2902), + [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(1223)] = { - [aux_sym__repeat_newline] = STATE(1245), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1223), - [anon_sym_in] = ACTIONS(2895), - [sym__newline] = ACTIONS(2941), - [anon_sym_SEMI] = ACTIONS(2746), - [anon_sym_PIPE] = ACTIONS(2746), - [anon_sym_err_GT_PIPE] = ACTIONS(2746), - [anon_sym_out_GT_PIPE] = ACTIONS(2746), - [anon_sym_e_GT_PIPE] = ACTIONS(2746), - [anon_sym_o_GT_PIPE] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2746), - [anon_sym_RPAREN] = ACTIONS(2746), - [anon_sym_GT2] = ACTIONS(2807), - [anon_sym_DASH2] = ACTIONS(2809), - [anon_sym_STAR2] = ACTIONS(2811), - [anon_sym_and2] = ACTIONS(2746), - [anon_sym_xor2] = ACTIONS(2746), - [anon_sym_or2] = ACTIONS(2746), - [anon_sym_not_DASHin2] = ACTIONS(2895), - [anon_sym_has2] = ACTIONS(2895), - [anon_sym_not_DASHhas2] = ACTIONS(2895), - [anon_sym_starts_DASHwith2] = ACTIONS(2895), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2895), - [anon_sym_ends_DASHwith2] = ACTIONS(2895), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2895), - [anon_sym_EQ_EQ2] = ACTIONS(2813), - [anon_sym_BANG_EQ2] = ACTIONS(2813), - [anon_sym_LT2] = ACTIONS(2807), - [anon_sym_LT_EQ2] = ACTIONS(2813), - [anon_sym_GT_EQ2] = ACTIONS(2813), - [anon_sym_EQ_TILDE2] = ACTIONS(2897), - [anon_sym_BANG_TILDE2] = ACTIONS(2897), - [anon_sym_like2] = ACTIONS(2897), - [anon_sym_not_DASHlike2] = ACTIONS(2897), - [anon_sym_STAR_STAR2] = ACTIONS(2815), - [anon_sym_PLUS_PLUS2] = ACTIONS(2815), - [anon_sym_SLASH2] = ACTIONS(2811), - [anon_sym_mod2] = ACTIONS(2817), - [anon_sym_SLASH_SLASH2] = ACTIONS(2817), - [anon_sym_PLUS2] = ACTIONS(2819), - [anon_sym_bit_DASHshl2] = ACTIONS(2821), - [anon_sym_bit_DASHshr2] = ACTIONS(2821), - [anon_sym_bit_DASHand2] = ACTIONS(2899), - [anon_sym_bit_DASHxor2] = ACTIONS(2746), - [anon_sym_bit_DASHor2] = ACTIONS(2746), - [anon_sym_err_GT] = ACTIONS(2748), - [anon_sym_out_GT] = ACTIONS(2748), - [anon_sym_e_GT] = ACTIONS(2748), - [anon_sym_o_GT] = ACTIONS(2748), - [anon_sym_err_PLUSout_GT] = ACTIONS(2748), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2748), - [anon_sym_o_PLUSe_GT] = ACTIONS(2748), - [anon_sym_e_PLUSo_GT] = ACTIONS(2748), - [anon_sym_err_GT_GT] = ACTIONS(2746), - [anon_sym_out_GT_GT] = ACTIONS(2746), - [anon_sym_e_GT_GT] = ACTIONS(2746), - [anon_sym_o_GT_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2746), + [anon_sym_in] = ACTIONS(2794), + [sym__newline] = ACTIONS(2794), + [anon_sym_SEMI] = ACTIONS(2794), + [anon_sym_PIPE] = ACTIONS(2794), + [anon_sym_err_GT_PIPE] = ACTIONS(2794), + [anon_sym_out_GT_PIPE] = ACTIONS(2794), + [anon_sym_e_GT_PIPE] = ACTIONS(2794), + [anon_sym_o_GT_PIPE] = ACTIONS(2794), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2794), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2794), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2794), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2794), + [anon_sym_RPAREN] = ACTIONS(2794), + [anon_sym_GT2] = ACTIONS(2796), + [anon_sym_DASH2] = ACTIONS(2794), + [anon_sym_STAR2] = ACTIONS(2830), + [anon_sym_and2] = ACTIONS(2794), + [anon_sym_xor2] = ACTIONS(2794), + [anon_sym_or2] = ACTIONS(2794), + [anon_sym_not_DASHin2] = ACTIONS(2794), + [anon_sym_has2] = ACTIONS(2794), + [anon_sym_not_DASHhas2] = ACTIONS(2794), + [anon_sym_starts_DASHwith2] = ACTIONS(2794), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2794), + [anon_sym_ends_DASHwith2] = ACTIONS(2794), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2794), + [anon_sym_EQ_EQ2] = ACTIONS(2794), + [anon_sym_BANG_EQ2] = ACTIONS(2794), + [anon_sym_LT2] = ACTIONS(2796), + [anon_sym_LT_EQ2] = ACTIONS(2794), + [anon_sym_GT_EQ2] = ACTIONS(2794), + [anon_sym_EQ_TILDE2] = ACTIONS(2794), + [anon_sym_BANG_TILDE2] = ACTIONS(2794), + [anon_sym_like2] = ACTIONS(2794), + [anon_sym_not_DASHlike2] = ACTIONS(2794), + [anon_sym_STAR_STAR2] = ACTIONS(2836), + [anon_sym_PLUS_PLUS2] = ACTIONS(2836), + [anon_sym_SLASH2] = ACTIONS(2830), + [anon_sym_mod2] = ACTIONS(2838), + [anon_sym_SLASH_SLASH2] = ACTIONS(2838), + [anon_sym_PLUS2] = ACTIONS(2796), + [anon_sym_bit_DASHshl2] = ACTIONS(2794), + [anon_sym_bit_DASHshr2] = ACTIONS(2794), + [anon_sym_bit_DASHand2] = ACTIONS(2794), + [anon_sym_bit_DASHxor2] = ACTIONS(2794), + [anon_sym_bit_DASHor2] = ACTIONS(2794), + [anon_sym_err_GT] = ACTIONS(2796), + [anon_sym_out_GT] = ACTIONS(2796), + [anon_sym_e_GT] = ACTIONS(2796), + [anon_sym_o_GT] = ACTIONS(2796), + [anon_sym_err_PLUSout_GT] = ACTIONS(2796), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2796), + [anon_sym_o_PLUSe_GT] = ACTIONS(2796), + [anon_sym_e_PLUSo_GT] = ACTIONS(2796), + [anon_sym_err_GT_GT] = ACTIONS(2794), + [anon_sym_out_GT_GT] = ACTIONS(2794), + [anon_sym_e_GT_GT] = ACTIONS(2794), + [anon_sym_o_GT_GT] = ACTIONS(2794), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2794), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2794), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2794), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2794), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1224)] = { - [aux_sym__repeat_newline] = STATE(527), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1224), - [anon_sym_in] = ACTIONS(2927), - [sym__newline] = ACTIONS(2750), - [anon_sym_SEMI] = ACTIONS(2750), - [anon_sym_PIPE] = ACTIONS(2750), - [anon_sym_err_GT_PIPE] = ACTIONS(2750), - [anon_sym_out_GT_PIPE] = ACTIONS(2750), - [anon_sym_e_GT_PIPE] = ACTIONS(2750), - [anon_sym_o_GT_PIPE] = ACTIONS(2750), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2750), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2750), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2750), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2750), - [anon_sym_RPAREN] = ACTIONS(2750), - [anon_sym_GT2] = ACTIONS(2911), - [anon_sym_DASH2] = ACTIONS(2913), - [anon_sym_STAR2] = ACTIONS(2915), - [anon_sym_and2] = ACTIONS(2750), - [anon_sym_xor2] = ACTIONS(2750), - [anon_sym_or2] = ACTIONS(2750), - [anon_sym_not_DASHin2] = ACTIONS(2927), - [anon_sym_has2] = ACTIONS(2927), - [anon_sym_not_DASHhas2] = ACTIONS(2927), - [anon_sym_starts_DASHwith2] = ACTIONS(2927), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2927), - [anon_sym_ends_DASHwith2] = ACTIONS(2927), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2927), - [anon_sym_EQ_EQ2] = ACTIONS(2917), - [anon_sym_BANG_EQ2] = ACTIONS(2917), - [anon_sym_LT2] = ACTIONS(2911), - [anon_sym_LT_EQ2] = ACTIONS(2917), - [anon_sym_GT_EQ2] = ACTIONS(2917), - [anon_sym_EQ_TILDE2] = ACTIONS(2929), - [anon_sym_BANG_TILDE2] = ACTIONS(2929), - [anon_sym_like2] = ACTIONS(2929), - [anon_sym_not_DASHlike2] = ACTIONS(2929), - [anon_sym_STAR_STAR2] = ACTIONS(2919), - [anon_sym_PLUS_PLUS2] = ACTIONS(2919), - [anon_sym_SLASH2] = ACTIONS(2915), - [anon_sym_mod2] = ACTIONS(2921), - [anon_sym_SLASH_SLASH2] = ACTIONS(2921), - [anon_sym_PLUS2] = ACTIONS(2923), - [anon_sym_bit_DASHshl2] = ACTIONS(2925), - [anon_sym_bit_DASHshr2] = ACTIONS(2925), - [anon_sym_bit_DASHand2] = ACTIONS(2931), - [anon_sym_bit_DASHxor2] = ACTIONS(2750), - [anon_sym_bit_DASHor2] = ACTIONS(2750), - [anon_sym_err_GT] = ACTIONS(2752), - [anon_sym_out_GT] = ACTIONS(2752), - [anon_sym_e_GT] = ACTIONS(2752), - [anon_sym_o_GT] = ACTIONS(2752), - [anon_sym_err_PLUSout_GT] = ACTIONS(2752), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2752), - [anon_sym_o_PLUSe_GT] = ACTIONS(2752), - [anon_sym_e_PLUSo_GT] = ACTIONS(2752), - [anon_sym_err_GT_GT] = ACTIONS(2750), - [anon_sym_out_GT_GT] = ACTIONS(2750), - [anon_sym_e_GT_GT] = ACTIONS(2750), - [anon_sym_o_GT_GT] = ACTIONS(2750), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2750), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2750), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2750), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2750), + [anon_sym_in] = ACTIONS(2824), + [sym__newline] = ACTIONS(2810), + [anon_sym_SEMI] = ACTIONS(2810), + [anon_sym_PIPE] = ACTIONS(2810), + [anon_sym_err_GT_PIPE] = ACTIONS(2810), + [anon_sym_out_GT_PIPE] = ACTIONS(2810), + [anon_sym_e_GT_PIPE] = ACTIONS(2810), + [anon_sym_o_GT_PIPE] = ACTIONS(2810), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2810), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2810), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2810), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2810), + [anon_sym_RPAREN] = ACTIONS(2810), + [anon_sym_GT2] = ACTIONS(2826), + [anon_sym_DASH2] = ACTIONS(2828), + [anon_sym_STAR2] = ACTIONS(2830), + [anon_sym_and2] = ACTIONS(2810), + [anon_sym_xor2] = ACTIONS(2810), + [anon_sym_or2] = ACTIONS(2810), + [anon_sym_not_DASHin2] = ACTIONS(2824), + [anon_sym_has2] = ACTIONS(2824), + [anon_sym_not_DASHhas2] = ACTIONS(2824), + [anon_sym_starts_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2824), + [anon_sym_ends_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2824), + [anon_sym_EQ_EQ2] = ACTIONS(2832), + [anon_sym_BANG_EQ2] = ACTIONS(2832), + [anon_sym_LT2] = ACTIONS(2826), + [anon_sym_LT_EQ2] = ACTIONS(2832), + [anon_sym_GT_EQ2] = ACTIONS(2832), + [anon_sym_EQ_TILDE2] = ACTIONS(2834), + [anon_sym_BANG_TILDE2] = ACTIONS(2834), + [anon_sym_like2] = ACTIONS(2834), + [anon_sym_not_DASHlike2] = ACTIONS(2834), + [anon_sym_STAR_STAR2] = ACTIONS(2836), + [anon_sym_PLUS_PLUS2] = ACTIONS(2836), + [anon_sym_SLASH2] = ACTIONS(2830), + [anon_sym_mod2] = ACTIONS(2838), + [anon_sym_SLASH_SLASH2] = ACTIONS(2838), + [anon_sym_PLUS2] = ACTIONS(2840), + [anon_sym_bit_DASHshl2] = ACTIONS(2842), + [anon_sym_bit_DASHshr2] = ACTIONS(2842), + [anon_sym_bit_DASHand2] = ACTIONS(2810), + [anon_sym_bit_DASHxor2] = ACTIONS(2810), + [anon_sym_bit_DASHor2] = ACTIONS(2810), + [anon_sym_err_GT] = ACTIONS(2812), + [anon_sym_out_GT] = ACTIONS(2812), + [anon_sym_e_GT] = ACTIONS(2812), + [anon_sym_o_GT] = ACTIONS(2812), + [anon_sym_err_PLUSout_GT] = ACTIONS(2812), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2812), + [anon_sym_o_PLUSe_GT] = ACTIONS(2812), + [anon_sym_e_PLUSo_GT] = ACTIONS(2812), + [anon_sym_err_GT_GT] = ACTIONS(2810), + [anon_sym_out_GT_GT] = ACTIONS(2810), + [anon_sym_e_GT_GT] = ACTIONS(2810), + [anon_sym_o_GT_GT] = ACTIONS(2810), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2810), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2810), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2810), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2810), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1225)] = { - [aux_sym__repeat_newline] = STATE(1185), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1225), - [anon_sym_in] = ACTIONS(2895), - [sym__newline] = ACTIONS(2804), - [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(2807), - [anon_sym_DASH2] = ACTIONS(2809), - [anon_sym_STAR2] = ACTIONS(2811), - [anon_sym_and2] = ACTIONS(2905), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2895), - [anon_sym_has2] = ACTIONS(2895), - [anon_sym_not_DASHhas2] = ACTIONS(2895), - [anon_sym_starts_DASHwith2] = ACTIONS(2895), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2895), - [anon_sym_ends_DASHwith2] = ACTIONS(2895), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2895), - [anon_sym_EQ_EQ2] = ACTIONS(2813), - [anon_sym_BANG_EQ2] = ACTIONS(2813), - [anon_sym_LT2] = ACTIONS(2807), - [anon_sym_LT_EQ2] = ACTIONS(2813), - [anon_sym_GT_EQ2] = ACTIONS(2813), - [anon_sym_EQ_TILDE2] = ACTIONS(2897), - [anon_sym_BANG_TILDE2] = ACTIONS(2897), - [anon_sym_like2] = ACTIONS(2897), - [anon_sym_not_DASHlike2] = ACTIONS(2897), - [anon_sym_STAR_STAR2] = ACTIONS(2815), - [anon_sym_PLUS_PLUS2] = ACTIONS(2815), - [anon_sym_SLASH2] = ACTIONS(2811), - [anon_sym_mod2] = ACTIONS(2817), - [anon_sym_SLASH_SLASH2] = ACTIONS(2817), - [anon_sym_PLUS2] = ACTIONS(2819), - [anon_sym_bit_DASHshl2] = ACTIONS(2821), - [anon_sym_bit_DASHshr2] = ACTIONS(2821), - [anon_sym_bit_DASHand2] = ACTIONS(2899), - [anon_sym_bit_DASHxor2] = ACTIONS(2901), - [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(2824), + [sym__newline] = ACTIONS(2794), + [anon_sym_SEMI] = ACTIONS(2794), + [anon_sym_PIPE] = ACTIONS(2794), + [anon_sym_err_GT_PIPE] = ACTIONS(2794), + [anon_sym_out_GT_PIPE] = ACTIONS(2794), + [anon_sym_e_GT_PIPE] = ACTIONS(2794), + [anon_sym_o_GT_PIPE] = ACTIONS(2794), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2794), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2794), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2794), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2794), + [anon_sym_RPAREN] = ACTIONS(2794), + [anon_sym_GT2] = ACTIONS(2826), + [anon_sym_DASH2] = ACTIONS(2828), + [anon_sym_STAR2] = ACTIONS(2830), + [anon_sym_and2] = ACTIONS(2794), + [anon_sym_xor2] = ACTIONS(2794), + [anon_sym_or2] = ACTIONS(2794), + [anon_sym_not_DASHin2] = ACTIONS(2824), + [anon_sym_has2] = ACTIONS(2824), + [anon_sym_not_DASHhas2] = ACTIONS(2824), + [anon_sym_starts_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2824), + [anon_sym_ends_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2824), + [anon_sym_EQ_EQ2] = ACTIONS(2832), + [anon_sym_BANG_EQ2] = ACTIONS(2832), + [anon_sym_LT2] = ACTIONS(2826), + [anon_sym_LT_EQ2] = ACTIONS(2832), + [anon_sym_GT_EQ2] = ACTIONS(2832), + [anon_sym_EQ_TILDE2] = ACTIONS(2794), + [anon_sym_BANG_TILDE2] = ACTIONS(2794), + [anon_sym_like2] = ACTIONS(2794), + [anon_sym_not_DASHlike2] = ACTIONS(2794), + [anon_sym_STAR_STAR2] = ACTIONS(2836), + [anon_sym_PLUS_PLUS2] = ACTIONS(2836), + [anon_sym_SLASH2] = ACTIONS(2830), + [anon_sym_mod2] = ACTIONS(2838), + [anon_sym_SLASH_SLASH2] = ACTIONS(2838), + [anon_sym_PLUS2] = ACTIONS(2840), + [anon_sym_bit_DASHshl2] = ACTIONS(2842), + [anon_sym_bit_DASHshr2] = ACTIONS(2842), + [anon_sym_bit_DASHand2] = ACTIONS(2794), + [anon_sym_bit_DASHxor2] = ACTIONS(2794), + [anon_sym_bit_DASHor2] = ACTIONS(2794), + [anon_sym_err_GT] = ACTIONS(2796), + [anon_sym_out_GT] = ACTIONS(2796), + [anon_sym_e_GT] = ACTIONS(2796), + [anon_sym_o_GT] = ACTIONS(2796), + [anon_sym_err_PLUSout_GT] = ACTIONS(2796), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2796), + [anon_sym_o_PLUSe_GT] = ACTIONS(2796), + [anon_sym_e_PLUSo_GT] = ACTIONS(2796), + [anon_sym_err_GT_GT] = ACTIONS(2794), + [anon_sym_out_GT_GT] = ACTIONS(2794), + [anon_sym_e_GT_GT] = ACTIONS(2794), + [anon_sym_o_GT_GT] = ACTIONS(2794), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2794), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2794), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2794), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2794), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1226)] = { - [aux_sym__repeat_newline] = STATE(1246), + [aux_sym__repeat_newline] = STATE(1268), [sym_comment] = STATE(1226), - [anon_sym_in] = ACTIONS(2895), - [sym__newline] = ACTIONS(2941), - [anon_sym_SEMI] = ACTIONS(2746), - [anon_sym_PIPE] = ACTIONS(2746), - [anon_sym_err_GT_PIPE] = ACTIONS(2746), - [anon_sym_out_GT_PIPE] = ACTIONS(2746), - [anon_sym_e_GT_PIPE] = ACTIONS(2746), - [anon_sym_o_GT_PIPE] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2746), - [anon_sym_RPAREN] = ACTIONS(2746), - [anon_sym_GT2] = ACTIONS(2807), - [anon_sym_DASH2] = ACTIONS(2809), - [anon_sym_STAR2] = ACTIONS(2811), - [anon_sym_and2] = ACTIONS(2746), - [anon_sym_xor2] = ACTIONS(2746), - [anon_sym_or2] = ACTIONS(2746), - [anon_sym_not_DASHin2] = ACTIONS(2895), - [anon_sym_has2] = ACTIONS(2895), - [anon_sym_not_DASHhas2] = ACTIONS(2895), - [anon_sym_starts_DASHwith2] = ACTIONS(2895), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2895), - [anon_sym_ends_DASHwith2] = ACTIONS(2895), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2895), - [anon_sym_EQ_EQ2] = ACTIONS(2813), - [anon_sym_BANG_EQ2] = ACTIONS(2813), - [anon_sym_LT2] = ACTIONS(2807), - [anon_sym_LT_EQ2] = ACTIONS(2813), - [anon_sym_GT_EQ2] = ACTIONS(2813), - [anon_sym_EQ_TILDE2] = ACTIONS(2897), - [anon_sym_BANG_TILDE2] = ACTIONS(2897), - [anon_sym_like2] = ACTIONS(2897), - [anon_sym_not_DASHlike2] = ACTIONS(2897), - [anon_sym_STAR_STAR2] = ACTIONS(2815), - [anon_sym_PLUS_PLUS2] = ACTIONS(2815), - [anon_sym_SLASH2] = ACTIONS(2811), - [anon_sym_mod2] = ACTIONS(2817), - [anon_sym_SLASH_SLASH2] = ACTIONS(2817), - [anon_sym_PLUS2] = ACTIONS(2819), - [anon_sym_bit_DASHshl2] = ACTIONS(2821), - [anon_sym_bit_DASHshr2] = ACTIONS(2821), - [anon_sym_bit_DASHand2] = ACTIONS(2899), - [anon_sym_bit_DASHxor2] = ACTIONS(2901), - [anon_sym_bit_DASHor2] = ACTIONS(2746), - [anon_sym_err_GT] = ACTIONS(2748), - [anon_sym_out_GT] = ACTIONS(2748), - [anon_sym_e_GT] = ACTIONS(2748), - [anon_sym_o_GT] = ACTIONS(2748), - [anon_sym_err_PLUSout_GT] = ACTIONS(2748), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2748), - [anon_sym_o_PLUSe_GT] = ACTIONS(2748), - [anon_sym_e_PLUSo_GT] = ACTIONS(2748), - [anon_sym_err_GT_GT] = ACTIONS(2746), - [anon_sym_out_GT_GT] = ACTIONS(2746), - [anon_sym_e_GT_GT] = ACTIONS(2746), - [anon_sym_o_GT_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2746), + [anon_sym_in] = ACTIONS(2872), + [sym__newline] = ACTIONS(2869), + [anon_sym_SEMI] = ACTIONS(2806), + [anon_sym_PIPE] = ACTIONS(2806), + [anon_sym_err_GT_PIPE] = ACTIONS(2806), + [anon_sym_out_GT_PIPE] = ACTIONS(2806), + [anon_sym_e_GT_PIPE] = ACTIONS(2806), + [anon_sym_o_GT_PIPE] = ACTIONS(2806), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2806), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2806), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2806), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2806), + [anon_sym_RPAREN] = ACTIONS(2806), + [anon_sym_GT2] = ACTIONS(2853), + [anon_sym_DASH2] = ACTIONS(2855), + [anon_sym_STAR2] = ACTIONS(2857), + [anon_sym_and2] = ACTIONS(2806), + [anon_sym_xor2] = ACTIONS(2806), + [anon_sym_or2] = ACTIONS(2806), + [anon_sym_not_DASHin2] = ACTIONS(2872), + [anon_sym_has2] = ACTIONS(2872), + [anon_sym_not_DASHhas2] = ACTIONS(2872), + [anon_sym_starts_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2872), + [anon_sym_ends_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2872), + [anon_sym_EQ_EQ2] = ACTIONS(2859), + [anon_sym_BANG_EQ2] = ACTIONS(2859), + [anon_sym_LT2] = ACTIONS(2853), + [anon_sym_LT_EQ2] = ACTIONS(2859), + [anon_sym_GT_EQ2] = ACTIONS(2859), + [anon_sym_EQ_TILDE2] = ACTIONS(2879), + [anon_sym_BANG_TILDE2] = ACTIONS(2879), + [anon_sym_like2] = ACTIONS(2879), + [anon_sym_not_DASHlike2] = ACTIONS(2879), + [anon_sym_STAR_STAR2] = ACTIONS(2861), + [anon_sym_PLUS_PLUS2] = ACTIONS(2861), + [anon_sym_SLASH2] = ACTIONS(2857), + [anon_sym_mod2] = ACTIONS(2863), + [anon_sym_SLASH_SLASH2] = ACTIONS(2863), + [anon_sym_PLUS2] = ACTIONS(2865), + [anon_sym_bit_DASHshl2] = ACTIONS(2867), + [anon_sym_bit_DASHshr2] = ACTIONS(2867), + [anon_sym_bit_DASHand2] = ACTIONS(2881), + [anon_sym_bit_DASHxor2] = ACTIONS(2806), + [anon_sym_bit_DASHor2] = ACTIONS(2806), + [anon_sym_err_GT] = ACTIONS(2808), + [anon_sym_out_GT] = ACTIONS(2808), + [anon_sym_e_GT] = ACTIONS(2808), + [anon_sym_o_GT] = ACTIONS(2808), + [anon_sym_err_PLUSout_GT] = ACTIONS(2808), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2808), + [anon_sym_o_PLUSe_GT] = ACTIONS(2808), + [anon_sym_e_PLUSo_GT] = ACTIONS(2808), + [anon_sym_err_GT_GT] = ACTIONS(2806), + [anon_sym_out_GT_GT] = ACTIONS(2806), + [anon_sym_e_GT_GT] = ACTIONS(2806), + [anon_sym_o_GT_GT] = ACTIONS(2806), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2806), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2806), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2806), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2806), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1227)] = { [sym_comment] = STATE(1227), - [ts_builtin_sym_end] = ACTIONS(2174), - [anon_sym_in] = ACTIONS(2174), - [sym__newline] = ACTIONS(2174), - [anon_sym_SEMI] = ACTIONS(2174), - [anon_sym_PIPE] = ACTIONS(2174), - [anon_sym_err_GT_PIPE] = ACTIONS(2174), - [anon_sym_out_GT_PIPE] = ACTIONS(2174), - [anon_sym_e_GT_PIPE] = ACTIONS(2174), - [anon_sym_o_GT_PIPE] = ACTIONS(2174), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2174), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2174), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2174), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2174), - [anon_sym_GT2] = ACTIONS(2176), - [anon_sym_DASH2] = ACTIONS(2174), - [anon_sym_STAR2] = ACTIONS(2176), - [anon_sym_and2] = ACTIONS(2174), - [anon_sym_xor2] = ACTIONS(2174), - [anon_sym_or2] = ACTIONS(2174), - [anon_sym_not_DASHin2] = ACTIONS(2174), - [anon_sym_has2] = ACTIONS(2174), - [anon_sym_not_DASHhas2] = ACTIONS(2174), - [anon_sym_starts_DASHwith2] = ACTIONS(2174), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2174), - [anon_sym_ends_DASHwith2] = ACTIONS(2174), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2174), - [anon_sym_EQ_EQ2] = ACTIONS(2174), - [anon_sym_BANG_EQ2] = ACTIONS(2174), - [anon_sym_LT2] = ACTIONS(2176), - [anon_sym_LT_EQ2] = ACTIONS(2174), - [anon_sym_GT_EQ2] = ACTIONS(2174), - [anon_sym_EQ_TILDE2] = ACTIONS(2174), - [anon_sym_BANG_TILDE2] = ACTIONS(2174), - [anon_sym_like2] = ACTIONS(2174), - [anon_sym_not_DASHlike2] = ACTIONS(2174), - [anon_sym_LPAREN2] = ACTIONS(2174), - [anon_sym_STAR_STAR2] = ACTIONS(2174), - [anon_sym_PLUS_PLUS2] = ACTIONS(2174), - [anon_sym_SLASH2] = ACTIONS(2176), - [anon_sym_mod2] = ACTIONS(2174), - [anon_sym_SLASH_SLASH2] = ACTIONS(2174), - [anon_sym_PLUS2] = ACTIONS(2176), - [anon_sym_bit_DASHshl2] = ACTIONS(2174), - [anon_sym_bit_DASHshr2] = ACTIONS(2174), - [anon_sym_bit_DASHand2] = ACTIONS(2174), - [anon_sym_bit_DASHxor2] = ACTIONS(2174), - [anon_sym_bit_DASHor2] = ACTIONS(2174), - [anon_sym_err_GT] = ACTIONS(2176), - [anon_sym_out_GT] = ACTIONS(2176), - [anon_sym_e_GT] = ACTIONS(2176), - [anon_sym_o_GT] = ACTIONS(2176), - [anon_sym_err_PLUSout_GT] = ACTIONS(2176), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2176), - [anon_sym_o_PLUSe_GT] = ACTIONS(2176), - [anon_sym_e_PLUSo_GT] = ACTIONS(2176), - [anon_sym_err_GT_GT] = ACTIONS(2174), - [anon_sym_out_GT_GT] = ACTIONS(2174), - [anon_sym_e_GT_GT] = ACTIONS(2174), - [anon_sym_o_GT_GT] = ACTIONS(2174), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2174), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2174), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2174), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2174), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(2616), + [aux_sym_cmd_identifier_token2] = ACTIONS(2822), + [anon_sym_in] = ACTIONS(2618), + [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_GT2] = ACTIONS(2618), + [anon_sym_DASH2] = ACTIONS(2618), + [anon_sym_STAR2] = ACTIONS(2618), + [anon_sym_and2] = ACTIONS(2618), + [anon_sym_xor2] = ACTIONS(2618), + [anon_sym_or2] = ACTIONS(2618), + [anon_sym_not_DASHin2] = ACTIONS(2618), + [anon_sym_has2] = ACTIONS(2618), + [anon_sym_not_DASHhas2] = ACTIONS(2618), + [anon_sym_starts_DASHwith2] = ACTIONS(2618), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2618), + [anon_sym_ends_DASHwith2] = ACTIONS(2618), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2618), + [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(2618), + [anon_sym_like2] = ACTIONS(2618), + [anon_sym_not_DASHlike2] = ACTIONS(2618), + [anon_sym_STAR_STAR2] = ACTIONS(2618), + [anon_sym_PLUS_PLUS2] = ACTIONS(2618), + [anon_sym_SLASH2] = ACTIONS(2618), + [anon_sym_mod2] = ACTIONS(2618), + [anon_sym_SLASH_SLASH2] = ACTIONS(2618), + [anon_sym_PLUS2] = ACTIONS(2618), + [anon_sym_bit_DASHshl2] = ACTIONS(2618), + [anon_sym_bit_DASHshr2] = ACTIONS(2618), + [anon_sym_bit_DASHand2] = ACTIONS(2618), + [anon_sym_bit_DASHxor2] = ACTIONS(2618), + [anon_sym_bit_DASHor2] = ACTIONS(2618), + [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(103), }, [STATE(1228)] = { - [aux_sym__repeat_newline] = STATE(527), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1228), - [anon_sym_in] = ACTIONS(2927), - [sym__newline] = ACTIONS(2750), - [anon_sym_SEMI] = ACTIONS(2750), - [anon_sym_PIPE] = ACTIONS(2750), - [anon_sym_err_GT_PIPE] = ACTIONS(2750), - [anon_sym_out_GT_PIPE] = ACTIONS(2750), - [anon_sym_e_GT_PIPE] = ACTIONS(2750), - [anon_sym_o_GT_PIPE] = ACTIONS(2750), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2750), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2750), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2750), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2750), - [anon_sym_RPAREN] = ACTIONS(2750), - [anon_sym_GT2] = ACTIONS(2911), - [anon_sym_DASH2] = ACTIONS(2913), - [anon_sym_STAR2] = ACTIONS(2915), - [anon_sym_and2] = ACTIONS(2750), - [anon_sym_xor2] = ACTIONS(2750), - [anon_sym_or2] = ACTIONS(2750), - [anon_sym_not_DASHin2] = ACTIONS(2927), - [anon_sym_has2] = ACTIONS(2927), - [anon_sym_not_DASHhas2] = ACTIONS(2927), - [anon_sym_starts_DASHwith2] = ACTIONS(2927), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2927), - [anon_sym_ends_DASHwith2] = ACTIONS(2927), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2927), - [anon_sym_EQ_EQ2] = ACTIONS(2917), - [anon_sym_BANG_EQ2] = ACTIONS(2917), - [anon_sym_LT2] = ACTIONS(2911), - [anon_sym_LT_EQ2] = ACTIONS(2917), - [anon_sym_GT_EQ2] = ACTIONS(2917), - [anon_sym_EQ_TILDE2] = ACTIONS(2929), - [anon_sym_BANG_TILDE2] = ACTIONS(2929), - [anon_sym_like2] = ACTIONS(2929), - [anon_sym_not_DASHlike2] = ACTIONS(2929), - [anon_sym_STAR_STAR2] = ACTIONS(2919), - [anon_sym_PLUS_PLUS2] = ACTIONS(2919), - [anon_sym_SLASH2] = ACTIONS(2915), - [anon_sym_mod2] = ACTIONS(2921), - [anon_sym_SLASH_SLASH2] = ACTIONS(2921), - [anon_sym_PLUS2] = ACTIONS(2923), - [anon_sym_bit_DASHshl2] = ACTIONS(2925), - [anon_sym_bit_DASHshr2] = ACTIONS(2925), - [anon_sym_bit_DASHand2] = ACTIONS(2931), - [anon_sym_bit_DASHxor2] = ACTIONS(2933), - [anon_sym_bit_DASHor2] = ACTIONS(2750), - [anon_sym_err_GT] = ACTIONS(2752), - [anon_sym_out_GT] = ACTIONS(2752), - [anon_sym_e_GT] = ACTIONS(2752), - [anon_sym_o_GT] = ACTIONS(2752), - [anon_sym_err_PLUSout_GT] = ACTIONS(2752), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2752), - [anon_sym_o_PLUSe_GT] = ACTIONS(2752), - [anon_sym_e_PLUSo_GT] = ACTIONS(2752), - [anon_sym_err_GT_GT] = ACTIONS(2750), - [anon_sym_out_GT_GT] = ACTIONS(2750), - [anon_sym_e_GT_GT] = ACTIONS(2750), - [anon_sym_o_GT_GT] = ACTIONS(2750), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2750), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2750), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2750), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2750), + [anon_sym_in] = ACTIONS(2824), + [sym__newline] = ACTIONS(2784), + [anon_sym_SEMI] = ACTIONS(2784), + [anon_sym_PIPE] = ACTIONS(2784), + [anon_sym_err_GT_PIPE] = ACTIONS(2784), + [anon_sym_out_GT_PIPE] = ACTIONS(2784), + [anon_sym_e_GT_PIPE] = ACTIONS(2784), + [anon_sym_o_GT_PIPE] = ACTIONS(2784), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2784), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2784), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2784), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2784), + [anon_sym_RPAREN] = ACTIONS(2784), + [anon_sym_GT2] = ACTIONS(2826), + [anon_sym_DASH2] = ACTIONS(2828), + [anon_sym_STAR2] = ACTIONS(2830), + [anon_sym_and2] = ACTIONS(2784), + [anon_sym_xor2] = ACTIONS(2784), + [anon_sym_or2] = ACTIONS(2784), + [anon_sym_not_DASHin2] = ACTIONS(2824), + [anon_sym_has2] = ACTIONS(2824), + [anon_sym_not_DASHhas2] = ACTIONS(2824), + [anon_sym_starts_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2824), + [anon_sym_ends_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2824), + [anon_sym_EQ_EQ2] = ACTIONS(2832), + [anon_sym_BANG_EQ2] = ACTIONS(2832), + [anon_sym_LT2] = ACTIONS(2826), + [anon_sym_LT_EQ2] = ACTIONS(2832), + [anon_sym_GT_EQ2] = ACTIONS(2832), + [anon_sym_EQ_TILDE2] = ACTIONS(2834), + [anon_sym_BANG_TILDE2] = ACTIONS(2834), + [anon_sym_like2] = ACTIONS(2834), + [anon_sym_not_DASHlike2] = ACTIONS(2834), + [anon_sym_STAR_STAR2] = ACTIONS(2836), + [anon_sym_PLUS_PLUS2] = ACTIONS(2836), + [anon_sym_SLASH2] = ACTIONS(2830), + [anon_sym_mod2] = ACTIONS(2838), + [anon_sym_SLASH_SLASH2] = ACTIONS(2838), + [anon_sym_PLUS2] = ACTIONS(2840), + [anon_sym_bit_DASHshl2] = ACTIONS(2842), + [anon_sym_bit_DASHshr2] = ACTIONS(2842), + [anon_sym_bit_DASHand2] = ACTIONS(2844), + [anon_sym_bit_DASHxor2] = ACTIONS(2784), + [anon_sym_bit_DASHor2] = ACTIONS(2784), + [anon_sym_err_GT] = ACTIONS(2786), + [anon_sym_out_GT] = ACTIONS(2786), + [anon_sym_e_GT] = ACTIONS(2786), + [anon_sym_o_GT] = ACTIONS(2786), + [anon_sym_err_PLUSout_GT] = ACTIONS(2786), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2786), + [anon_sym_o_PLUSe_GT] = ACTIONS(2786), + [anon_sym_e_PLUSo_GT] = ACTIONS(2786), + [anon_sym_err_GT_GT] = ACTIONS(2784), + [anon_sym_out_GT_GT] = ACTIONS(2784), + [anon_sym_e_GT_GT] = ACTIONS(2784), + [anon_sym_o_GT_GT] = ACTIONS(2784), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2784), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2784), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2784), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2784), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1229)] = { - [sym__expression] = STATE(4914), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), - [sym__expr_binary_expression] = STATE(2253), - [sym_expr_parenthesized] = STATE(704), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1861), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1229), - [aux_sym_cmd_identifier_token2] = ACTIONS(2829), - [anon_sym_true] = ACTIONS(2557), - [anon_sym_false] = ACTIONS(2557), - [anon_sym_null] = ACTIONS(2559), - [aux_sym_cmd_identifier_token3] = ACTIONS(2561), - [aux_sym_cmd_identifier_token4] = ACTIONS(2561), - [aux_sym_cmd_identifier_token5] = ACTIONS(2561), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), - [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(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(2565), - [aux_sym__val_number_decimal_token4] = ACTIONS(2565), - [aux_sym__val_number_token1] = ACTIONS(2561), - [aux_sym__val_number_token2] = ACTIONS(2561), - [aux_sym__val_number_token3] = ACTIONS(2561), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2567), - [anon_sym_DQUOTE] = 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(2824), + [sym__newline] = ACTIONS(2810), + [anon_sym_SEMI] = ACTIONS(2810), + [anon_sym_PIPE] = ACTIONS(2810), + [anon_sym_err_GT_PIPE] = ACTIONS(2810), + [anon_sym_out_GT_PIPE] = ACTIONS(2810), + [anon_sym_e_GT_PIPE] = ACTIONS(2810), + [anon_sym_o_GT_PIPE] = ACTIONS(2810), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2810), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2810), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2810), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2810), + [anon_sym_RPAREN] = ACTIONS(2810), + [anon_sym_GT2] = ACTIONS(2826), + [anon_sym_DASH2] = ACTIONS(2828), + [anon_sym_STAR2] = ACTIONS(2830), + [anon_sym_and2] = ACTIONS(2810), + [anon_sym_xor2] = ACTIONS(2810), + [anon_sym_or2] = ACTIONS(2810), + [anon_sym_not_DASHin2] = ACTIONS(2824), + [anon_sym_has2] = ACTIONS(2824), + [anon_sym_not_DASHhas2] = ACTIONS(2824), + [anon_sym_starts_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2824), + [anon_sym_ends_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2824), + [anon_sym_EQ_EQ2] = ACTIONS(2832), + [anon_sym_BANG_EQ2] = ACTIONS(2832), + [anon_sym_LT2] = ACTIONS(2826), + [anon_sym_LT_EQ2] = ACTIONS(2832), + [anon_sym_GT_EQ2] = ACTIONS(2832), + [anon_sym_EQ_TILDE2] = ACTIONS(2834), + [anon_sym_BANG_TILDE2] = ACTIONS(2834), + [anon_sym_like2] = ACTIONS(2834), + [anon_sym_not_DASHlike2] = ACTIONS(2834), + [anon_sym_STAR_STAR2] = ACTIONS(2836), + [anon_sym_PLUS_PLUS2] = ACTIONS(2836), + [anon_sym_SLASH2] = ACTIONS(2830), + [anon_sym_mod2] = ACTIONS(2838), + [anon_sym_SLASH_SLASH2] = ACTIONS(2838), + [anon_sym_PLUS2] = ACTIONS(2840), + [anon_sym_bit_DASHshl2] = ACTIONS(2842), + [anon_sym_bit_DASHshr2] = ACTIONS(2842), + [anon_sym_bit_DASHand2] = ACTIONS(2844), + [anon_sym_bit_DASHxor2] = ACTIONS(2810), + [anon_sym_bit_DASHor2] = ACTIONS(2810), + [anon_sym_err_GT] = ACTIONS(2812), + [anon_sym_out_GT] = ACTIONS(2812), + [anon_sym_e_GT] = ACTIONS(2812), + [anon_sym_o_GT] = ACTIONS(2812), + [anon_sym_err_PLUSout_GT] = ACTIONS(2812), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2812), + [anon_sym_o_PLUSe_GT] = ACTIONS(2812), + [anon_sym_e_PLUSo_GT] = ACTIONS(2812), + [anon_sym_err_GT_GT] = ACTIONS(2810), + [anon_sym_out_GT_GT] = ACTIONS(2810), + [anon_sym_e_GT_GT] = ACTIONS(2810), + [anon_sym_o_GT_GT] = ACTIONS(2810), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2810), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2810), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2810), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2810), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1230)] = { - [aux_sym__repeat_newline] = STATE(527), + [sym__ctrl_match_body] = STATE(5303), + [sym_match_arm] = STATE(4828), + [sym_default_arm] = STATE(4828), + [sym_match_pattern] = STATE(5314), + [sym__match_pattern] = STATE(4156), + [sym__match_pattern_expression] = STATE(4612), + [sym__match_pattern_value] = STATE(4618), + [sym__match_pattern_list] = STATE(4619), + [sym__match_pattern_record] = STATE(4620), + [sym_expr_parenthesized] = STATE(3917), + [sym_val_range] = STATE(4618), + [sym__val_range] = STATE(5288), + [sym_val_nothing] = STATE(4620), + [sym_val_bool] = STATE(4286), + [sym_val_variable] = STATE(3872), + [sym_val_number] = STATE(4620), + [sym__val_number_decimal] = STATE(3638), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(4620), + [sym_val_filesize] = STATE(4620), + [sym_val_binary] = STATE(4620), + [sym_val_string] = STATE(4620), + [sym__raw_str] = STATE(2274), + [sym__str_double_quotes] = STATE(2274), + [sym__str_single_quotes] = STATE(2274), + [sym__str_back_ticks] = STATE(2274), + [sym_val_table] = STATE(4620), + [sym_unquoted] = STATE(4621), + [sym__unquoted_anonymous_prefix] = STATE(5288), [sym_comment] = STATE(1230), - [anon_sym_in] = ACTIONS(2927), - [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(2911), - [anon_sym_DASH2] = ACTIONS(2913), - [anon_sym_STAR2] = ACTIONS(2915), - [anon_sym_and2] = ACTIONS(2937), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2927), - [anon_sym_has2] = ACTIONS(2927), - [anon_sym_not_DASHhas2] = ACTIONS(2927), - [anon_sym_starts_DASHwith2] = ACTIONS(2927), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2927), - [anon_sym_ends_DASHwith2] = ACTIONS(2927), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2927), - [anon_sym_EQ_EQ2] = ACTIONS(2917), - [anon_sym_BANG_EQ2] = ACTIONS(2917), - [anon_sym_LT2] = ACTIONS(2911), - [anon_sym_LT_EQ2] = ACTIONS(2917), - [anon_sym_GT_EQ2] = ACTIONS(2917), - [anon_sym_EQ_TILDE2] = ACTIONS(2929), - [anon_sym_BANG_TILDE2] = ACTIONS(2929), - [anon_sym_like2] = ACTIONS(2929), - [anon_sym_not_DASHlike2] = ACTIONS(2929), - [anon_sym_STAR_STAR2] = ACTIONS(2919), - [anon_sym_PLUS_PLUS2] = ACTIONS(2919), - [anon_sym_SLASH2] = ACTIONS(2915), - [anon_sym_mod2] = ACTIONS(2921), - [anon_sym_SLASH_SLASH2] = ACTIONS(2921), - [anon_sym_PLUS2] = ACTIONS(2923), - [anon_sym_bit_DASHshl2] = ACTIONS(2925), - [anon_sym_bit_DASHshr2] = ACTIONS(2925), - [anon_sym_bit_DASHand2] = ACTIONS(2931), - [anon_sym_bit_DASHxor2] = ACTIONS(2933), - [anon_sym_bit_DASHor2] = ACTIONS(2935), - [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(1357), + [aux_sym__ctrl_match_body_repeat1] = STATE(1386), + [anon_sym_true] = ACTIONS(2928), + [anon_sym_false] = ACTIONS(2928), + [anon_sym_null] = ACTIONS(2930), + [aux_sym_cmd_identifier_token3] = ACTIONS(2932), + [aux_sym_cmd_identifier_token4] = ACTIONS(2932), + [aux_sym_cmd_identifier_token5] = ACTIONS(2932), + [sym__newline] = ACTIONS(2934), + [anon_sym_LBRACK] = ACTIONS(2936), + [anon_sym_LPAREN] = ACTIONS(2688), + [anon_sym_DOLLAR] = ACTIONS(2938), + [anon_sym_LBRACE] = ACTIONS(2940), + [anon_sym_RBRACE] = ACTIONS(2942), + [anon_sym__] = ACTIONS(2944), + [anon_sym_DOT_DOT] = ACTIONS(2946), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2948), + [anon_sym_DOT_DOT_LT] = ACTIONS(2948), + [aux_sym__val_number_decimal_token1] = ACTIONS(2950), + [aux_sym__val_number_decimal_token2] = ACTIONS(2952), + [aux_sym__val_number_decimal_token3] = ACTIONS(2954), + [aux_sym__val_number_decimal_token4] = ACTIONS(2954), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2956), + [anon_sym_DQUOTE] = ACTIONS(1772), + [anon_sym_SQUOTE] = ACTIONS(1774), + [anon_sym_BQUOTE] = ACTIONS(1776), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1778), }, [STATE(1231)] = { - [aux_sym__repeat_newline] = STATE(527), + [aux_sym__repeat_newline] = STATE(1205), [sym_comment] = STATE(1231), - [anon_sym_in] = ACTIONS(2762), - [sym__newline] = ACTIONS(2762), - [anon_sym_SEMI] = ACTIONS(2762), - [anon_sym_PIPE] = ACTIONS(2762), - [anon_sym_err_GT_PIPE] = ACTIONS(2762), - [anon_sym_out_GT_PIPE] = ACTIONS(2762), - [anon_sym_e_GT_PIPE] = ACTIONS(2762), - [anon_sym_o_GT_PIPE] = ACTIONS(2762), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2762), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2762), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2762), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2762), - [anon_sym_RPAREN] = ACTIONS(2762), - [anon_sym_GT2] = ACTIONS(2911), - [anon_sym_DASH2] = ACTIONS(2913), - [anon_sym_STAR2] = ACTIONS(2915), - [anon_sym_and2] = ACTIONS(2762), - [anon_sym_xor2] = ACTIONS(2762), - [anon_sym_or2] = ACTIONS(2762), - [anon_sym_not_DASHin2] = ACTIONS(2762), - [anon_sym_has2] = ACTIONS(2762), - [anon_sym_not_DASHhas2] = ACTIONS(2762), - [anon_sym_starts_DASHwith2] = ACTIONS(2762), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2762), - [anon_sym_ends_DASHwith2] = ACTIONS(2762), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2762), - [anon_sym_EQ_EQ2] = ACTIONS(2917), - [anon_sym_BANG_EQ2] = ACTIONS(2917), - [anon_sym_LT2] = ACTIONS(2911), - [anon_sym_LT_EQ2] = ACTIONS(2917), - [anon_sym_GT_EQ2] = ACTIONS(2917), - [anon_sym_EQ_TILDE2] = ACTIONS(2762), - [anon_sym_BANG_TILDE2] = ACTIONS(2762), - [anon_sym_like2] = ACTIONS(2762), - [anon_sym_not_DASHlike2] = ACTIONS(2762), - [anon_sym_STAR_STAR2] = ACTIONS(2919), - [anon_sym_PLUS_PLUS2] = ACTIONS(2919), - [anon_sym_SLASH2] = ACTIONS(2915), - [anon_sym_mod2] = ACTIONS(2921), - [anon_sym_SLASH_SLASH2] = ACTIONS(2921), - [anon_sym_PLUS2] = ACTIONS(2923), - [anon_sym_bit_DASHshl2] = ACTIONS(2925), - [anon_sym_bit_DASHshr2] = ACTIONS(2925), - [anon_sym_bit_DASHand2] = ACTIONS(2762), - [anon_sym_bit_DASHxor2] = ACTIONS(2762), - [anon_sym_bit_DASHor2] = ACTIONS(2762), - [anon_sym_err_GT] = ACTIONS(2764), - [anon_sym_out_GT] = ACTIONS(2764), - [anon_sym_e_GT] = ACTIONS(2764), - [anon_sym_o_GT] = ACTIONS(2764), - [anon_sym_err_PLUSout_GT] = ACTIONS(2764), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2764), - [anon_sym_o_PLUSe_GT] = ACTIONS(2764), - [anon_sym_e_PLUSo_GT] = ACTIONS(2764), - [anon_sym_err_GT_GT] = ACTIONS(2762), - [anon_sym_out_GT_GT] = ACTIONS(2762), - [anon_sym_e_GT_GT] = ACTIONS(2762), - [anon_sym_o_GT_GT] = ACTIONS(2762), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2762), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2762), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2762), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2762), + [anon_sym_in] = ACTIONS(2872), + [sym__newline] = ACTIONS(2869), + [anon_sym_SEMI] = ACTIONS(2806), + [anon_sym_PIPE] = ACTIONS(2806), + [anon_sym_err_GT_PIPE] = ACTIONS(2806), + [anon_sym_out_GT_PIPE] = ACTIONS(2806), + [anon_sym_e_GT_PIPE] = ACTIONS(2806), + [anon_sym_o_GT_PIPE] = ACTIONS(2806), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2806), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2806), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2806), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2806), + [anon_sym_RPAREN] = ACTIONS(2806), + [anon_sym_GT2] = ACTIONS(2853), + [anon_sym_DASH2] = ACTIONS(2855), + [anon_sym_STAR2] = ACTIONS(2857), + [anon_sym_and2] = ACTIONS(2806), + [anon_sym_xor2] = ACTIONS(2806), + [anon_sym_or2] = ACTIONS(2806), + [anon_sym_not_DASHin2] = ACTIONS(2872), + [anon_sym_has2] = ACTIONS(2872), + [anon_sym_not_DASHhas2] = ACTIONS(2872), + [anon_sym_starts_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2872), + [anon_sym_ends_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2872), + [anon_sym_EQ_EQ2] = ACTIONS(2859), + [anon_sym_BANG_EQ2] = ACTIONS(2859), + [anon_sym_LT2] = ACTIONS(2853), + [anon_sym_LT_EQ2] = ACTIONS(2859), + [anon_sym_GT_EQ2] = ACTIONS(2859), + [anon_sym_EQ_TILDE2] = ACTIONS(2879), + [anon_sym_BANG_TILDE2] = ACTIONS(2879), + [anon_sym_like2] = ACTIONS(2879), + [anon_sym_not_DASHlike2] = ACTIONS(2879), + [anon_sym_STAR_STAR2] = ACTIONS(2861), + [anon_sym_PLUS_PLUS2] = ACTIONS(2861), + [anon_sym_SLASH2] = ACTIONS(2857), + [anon_sym_mod2] = ACTIONS(2863), + [anon_sym_SLASH_SLASH2] = ACTIONS(2863), + [anon_sym_PLUS2] = ACTIONS(2865), + [anon_sym_bit_DASHshl2] = ACTIONS(2867), + [anon_sym_bit_DASHshr2] = ACTIONS(2867), + [anon_sym_bit_DASHand2] = ACTIONS(2881), + [anon_sym_bit_DASHxor2] = ACTIONS(2883), + [anon_sym_bit_DASHor2] = ACTIONS(2806), + [anon_sym_err_GT] = ACTIONS(2808), + [anon_sym_out_GT] = ACTIONS(2808), + [anon_sym_e_GT] = ACTIONS(2808), + [anon_sym_o_GT] = ACTIONS(2808), + [anon_sym_err_PLUSout_GT] = ACTIONS(2808), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2808), + [anon_sym_o_PLUSe_GT] = ACTIONS(2808), + [anon_sym_e_PLUSo_GT] = ACTIONS(2808), + [anon_sym_err_GT_GT] = ACTIONS(2806), + [anon_sym_out_GT_GT] = ACTIONS(2806), + [anon_sym_e_GT_GT] = ACTIONS(2806), + [anon_sym_o_GT_GT] = ACTIONS(2806), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2806), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2806), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2806), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2806), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1232)] = { - [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1232), - [anon_sym_in] = ACTIONS(2762), - [sym__newline] = ACTIONS(2762), - [anon_sym_SEMI] = ACTIONS(2762), - [anon_sym_PIPE] = ACTIONS(2762), - [anon_sym_err_GT_PIPE] = ACTIONS(2762), - [anon_sym_out_GT_PIPE] = ACTIONS(2762), - [anon_sym_e_GT_PIPE] = ACTIONS(2762), - [anon_sym_o_GT_PIPE] = ACTIONS(2762), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2762), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2762), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2762), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2762), - [anon_sym_RPAREN] = ACTIONS(2762), - [anon_sym_GT2] = ACTIONS(2764), - [anon_sym_DASH2] = ACTIONS(2913), - [anon_sym_STAR2] = ACTIONS(2915), - [anon_sym_and2] = ACTIONS(2762), - [anon_sym_xor2] = ACTIONS(2762), - [anon_sym_or2] = ACTIONS(2762), - [anon_sym_not_DASHin2] = ACTIONS(2762), - [anon_sym_has2] = ACTIONS(2762), - [anon_sym_not_DASHhas2] = ACTIONS(2762), - [anon_sym_starts_DASHwith2] = ACTIONS(2762), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2762), - [anon_sym_ends_DASHwith2] = ACTIONS(2762), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2762), - [anon_sym_EQ_EQ2] = ACTIONS(2762), - [anon_sym_BANG_EQ2] = ACTIONS(2762), - [anon_sym_LT2] = ACTIONS(2764), - [anon_sym_LT_EQ2] = ACTIONS(2762), - [anon_sym_GT_EQ2] = ACTIONS(2762), - [anon_sym_EQ_TILDE2] = ACTIONS(2762), - [anon_sym_BANG_TILDE2] = ACTIONS(2762), - [anon_sym_like2] = ACTIONS(2762), - [anon_sym_not_DASHlike2] = ACTIONS(2762), - [anon_sym_STAR_STAR2] = ACTIONS(2919), - [anon_sym_PLUS_PLUS2] = ACTIONS(2919), - [anon_sym_SLASH2] = ACTIONS(2915), - [anon_sym_mod2] = ACTIONS(2921), - [anon_sym_SLASH_SLASH2] = ACTIONS(2921), - [anon_sym_PLUS2] = ACTIONS(2923), - [anon_sym_bit_DASHshl2] = ACTIONS(2925), - [anon_sym_bit_DASHshr2] = ACTIONS(2925), - [anon_sym_bit_DASHand2] = ACTIONS(2762), - [anon_sym_bit_DASHxor2] = ACTIONS(2762), - [anon_sym_bit_DASHor2] = ACTIONS(2762), - [anon_sym_err_GT] = ACTIONS(2764), - [anon_sym_out_GT] = ACTIONS(2764), - [anon_sym_e_GT] = ACTIONS(2764), - [anon_sym_o_GT] = ACTIONS(2764), - [anon_sym_err_PLUSout_GT] = ACTIONS(2764), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2764), - [anon_sym_o_PLUSe_GT] = ACTIONS(2764), - [anon_sym_e_PLUSo_GT] = ACTIONS(2764), - [anon_sym_err_GT_GT] = ACTIONS(2762), - [anon_sym_out_GT_GT] = ACTIONS(2762), - [anon_sym_e_GT_GT] = ACTIONS(2762), - [anon_sym_o_GT_GT] = ACTIONS(2762), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2762), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2762), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2762), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2762), + [anon_sym_in] = ACTIONS(2910), + [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(2890), + [anon_sym_DASH2] = ACTIONS(2892), + [anon_sym_RBRACE] = ACTIONS(2648), + [anon_sym_STAR2] = ACTIONS(2894), + [anon_sym_and2] = ACTIONS(2648), + [anon_sym_xor2] = ACTIONS(2648), + [anon_sym_or2] = ACTIONS(2648), + [anon_sym_not_DASHin2] = ACTIONS(2910), + [anon_sym_has2] = ACTIONS(2910), + [anon_sym_not_DASHhas2] = ACTIONS(2910), + [anon_sym_starts_DASHwith2] = ACTIONS(2910), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2910), + [anon_sym_ends_DASHwith2] = ACTIONS(2910), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2910), + [anon_sym_EQ_EQ2] = ACTIONS(2896), + [anon_sym_BANG_EQ2] = ACTIONS(2896), + [anon_sym_LT2] = ACTIONS(2890), + [anon_sym_LT_EQ2] = ACTIONS(2896), + [anon_sym_GT_EQ2] = ACTIONS(2896), + [anon_sym_EQ_TILDE2] = ACTIONS(2912), + [anon_sym_BANG_TILDE2] = ACTIONS(2912), + [anon_sym_like2] = ACTIONS(2912), + [anon_sym_not_DASHlike2] = ACTIONS(2912), + [anon_sym_STAR_STAR2] = ACTIONS(2898), + [anon_sym_PLUS_PLUS2] = ACTIONS(2898), + [anon_sym_SLASH2] = ACTIONS(2894), + [anon_sym_mod2] = ACTIONS(2900), + [anon_sym_SLASH_SLASH2] = ACTIONS(2900), + [anon_sym_PLUS2] = ACTIONS(2902), + [anon_sym_bit_DASHshl2] = ACTIONS(2904), + [anon_sym_bit_DASHshr2] = ACTIONS(2904), + [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(1233)] = { - [aux_sym__repeat_newline] = STATE(1186), + [sym__ctrl_match_body] = STATE(5486), + [sym_match_arm] = STATE(4828), + [sym_default_arm] = STATE(4828), + [sym_match_pattern] = STATE(5314), + [sym__match_pattern] = STATE(4156), + [sym__match_pattern_expression] = STATE(4612), + [sym__match_pattern_value] = STATE(4618), + [sym__match_pattern_list] = STATE(4619), + [sym__match_pattern_record] = STATE(4620), + [sym_expr_parenthesized] = STATE(3917), + [sym_val_range] = STATE(4618), + [sym__val_range] = STATE(5288), + [sym_val_nothing] = STATE(4620), + [sym_val_bool] = STATE(4286), + [sym_val_variable] = STATE(3872), + [sym_val_number] = STATE(4620), + [sym__val_number_decimal] = STATE(3638), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(4620), + [sym_val_filesize] = STATE(4620), + [sym_val_binary] = STATE(4620), + [sym_val_string] = STATE(4620), + [sym__raw_str] = STATE(2274), + [sym__str_double_quotes] = STATE(2274), + [sym__str_single_quotes] = STATE(2274), + [sym__str_back_ticks] = STATE(2274), + [sym_val_table] = STATE(4620), + [sym_unquoted] = STATE(4621), + [sym__unquoted_anonymous_prefix] = STATE(5288), [sym_comment] = STATE(1233), - [anon_sym_in] = ACTIONS(2895), - [sym__newline] = ACTIONS(2907), - [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(2807), - [anon_sym_DASH2] = ACTIONS(2809), - [anon_sym_STAR2] = ACTIONS(2811), - [anon_sym_and2] = ACTIONS(2905), - [anon_sym_xor2] = ACTIONS(2909), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2895), - [anon_sym_has2] = ACTIONS(2895), - [anon_sym_not_DASHhas2] = ACTIONS(2895), - [anon_sym_starts_DASHwith2] = ACTIONS(2895), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2895), - [anon_sym_ends_DASHwith2] = ACTIONS(2895), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2895), - [anon_sym_EQ_EQ2] = ACTIONS(2813), - [anon_sym_BANG_EQ2] = ACTIONS(2813), - [anon_sym_LT2] = ACTIONS(2807), - [anon_sym_LT_EQ2] = ACTIONS(2813), - [anon_sym_GT_EQ2] = ACTIONS(2813), - [anon_sym_EQ_TILDE2] = ACTIONS(2897), - [anon_sym_BANG_TILDE2] = ACTIONS(2897), - [anon_sym_like2] = ACTIONS(2897), - [anon_sym_not_DASHlike2] = ACTIONS(2897), - [anon_sym_STAR_STAR2] = ACTIONS(2815), - [anon_sym_PLUS_PLUS2] = ACTIONS(2815), - [anon_sym_SLASH2] = ACTIONS(2811), - [anon_sym_mod2] = ACTIONS(2817), - [anon_sym_SLASH_SLASH2] = ACTIONS(2817), - [anon_sym_PLUS2] = ACTIONS(2819), - [anon_sym_bit_DASHshl2] = ACTIONS(2821), - [anon_sym_bit_DASHshr2] = ACTIONS(2821), - [anon_sym_bit_DASHand2] = ACTIONS(2899), - [anon_sym_bit_DASHxor2] = ACTIONS(2901), - [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), + [aux_sym__types_body_repeat1] = STATE(1357), + [aux_sym__ctrl_match_body_repeat1] = STATE(1386), + [anon_sym_true] = ACTIONS(2928), + [anon_sym_false] = ACTIONS(2928), + [anon_sym_null] = ACTIONS(2930), + [aux_sym_cmd_identifier_token3] = ACTIONS(2932), + [aux_sym_cmd_identifier_token4] = ACTIONS(2932), + [aux_sym_cmd_identifier_token5] = ACTIONS(2932), + [sym__newline] = ACTIONS(2934), + [anon_sym_LBRACK] = ACTIONS(2936), + [anon_sym_LPAREN] = ACTIONS(2688), + [anon_sym_DOLLAR] = ACTIONS(2938), + [anon_sym_LBRACE] = ACTIONS(2940), + [anon_sym_RBRACE] = ACTIONS(2958), + [anon_sym__] = ACTIONS(2944), + [anon_sym_DOT_DOT] = ACTIONS(2946), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2948), + [anon_sym_DOT_DOT_LT] = ACTIONS(2948), + [aux_sym__val_number_decimal_token1] = ACTIONS(2950), + [aux_sym__val_number_decimal_token2] = ACTIONS(2952), + [aux_sym__val_number_decimal_token3] = ACTIONS(2954), + [aux_sym__val_number_decimal_token4] = ACTIONS(2954), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2956), + [anon_sym_DQUOTE] = ACTIONS(1772), + [anon_sym_SQUOTE] = ACTIONS(1774), + [anon_sym_BQUOTE] = ACTIONS(1776), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1778), }, [STATE(1234)] = { - [aux_sym__repeat_newline] = STATE(527), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1234), - [anon_sym_in] = ACTIONS(2762), - [sym__newline] = ACTIONS(2762), - [anon_sym_SEMI] = ACTIONS(2762), - [anon_sym_PIPE] = ACTIONS(2762), - [anon_sym_err_GT_PIPE] = ACTIONS(2762), - [anon_sym_out_GT_PIPE] = ACTIONS(2762), - [anon_sym_e_GT_PIPE] = ACTIONS(2762), - [anon_sym_o_GT_PIPE] = ACTIONS(2762), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2762), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2762), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2762), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2762), - [anon_sym_RPAREN] = ACTIONS(2762), - [anon_sym_GT2] = ACTIONS(2764), - [anon_sym_DASH2] = ACTIONS(2762), - [anon_sym_STAR2] = ACTIONS(2915), - [anon_sym_and2] = ACTIONS(2762), - [anon_sym_xor2] = ACTIONS(2762), - [anon_sym_or2] = ACTIONS(2762), - [anon_sym_not_DASHin2] = ACTIONS(2762), - [anon_sym_has2] = ACTIONS(2762), - [anon_sym_not_DASHhas2] = ACTIONS(2762), - [anon_sym_starts_DASHwith2] = ACTIONS(2762), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2762), - [anon_sym_ends_DASHwith2] = ACTIONS(2762), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2762), - [anon_sym_EQ_EQ2] = ACTIONS(2762), - [anon_sym_BANG_EQ2] = ACTIONS(2762), - [anon_sym_LT2] = ACTIONS(2764), - [anon_sym_LT_EQ2] = ACTIONS(2762), - [anon_sym_GT_EQ2] = ACTIONS(2762), - [anon_sym_EQ_TILDE2] = ACTIONS(2762), - [anon_sym_BANG_TILDE2] = ACTIONS(2762), - [anon_sym_like2] = ACTIONS(2762), - [anon_sym_not_DASHlike2] = ACTIONS(2762), - [anon_sym_STAR_STAR2] = ACTIONS(2919), - [anon_sym_PLUS_PLUS2] = ACTIONS(2919), - [anon_sym_SLASH2] = ACTIONS(2915), - [anon_sym_mod2] = ACTIONS(2921), - [anon_sym_SLASH_SLASH2] = ACTIONS(2921), - [anon_sym_PLUS2] = ACTIONS(2764), - [anon_sym_bit_DASHshl2] = ACTIONS(2762), - [anon_sym_bit_DASHshr2] = ACTIONS(2762), - [anon_sym_bit_DASHand2] = ACTIONS(2762), - [anon_sym_bit_DASHxor2] = ACTIONS(2762), - [anon_sym_bit_DASHor2] = ACTIONS(2762), - [anon_sym_err_GT] = ACTIONS(2764), - [anon_sym_out_GT] = ACTIONS(2764), - [anon_sym_e_GT] = ACTIONS(2764), - [anon_sym_o_GT] = ACTIONS(2764), - [anon_sym_err_PLUSout_GT] = ACTIONS(2764), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2764), - [anon_sym_o_PLUSe_GT] = ACTIONS(2764), - [anon_sym_e_PLUSo_GT] = ACTIONS(2764), - [anon_sym_err_GT_GT] = ACTIONS(2762), - [anon_sym_out_GT_GT] = ACTIONS(2762), - [anon_sym_e_GT_GT] = ACTIONS(2762), - [anon_sym_o_GT_GT] = ACTIONS(2762), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2762), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2762), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2762), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2762), + [anon_sym_in] = ACTIONS(2824), + [sym__newline] = ACTIONS(2810), + [anon_sym_SEMI] = ACTIONS(2810), + [anon_sym_PIPE] = ACTIONS(2810), + [anon_sym_err_GT_PIPE] = ACTIONS(2810), + [anon_sym_out_GT_PIPE] = ACTIONS(2810), + [anon_sym_e_GT_PIPE] = ACTIONS(2810), + [anon_sym_o_GT_PIPE] = ACTIONS(2810), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2810), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2810), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2810), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2810), + [anon_sym_RPAREN] = ACTIONS(2810), + [anon_sym_GT2] = ACTIONS(2826), + [anon_sym_DASH2] = ACTIONS(2828), + [anon_sym_STAR2] = ACTIONS(2830), + [anon_sym_and2] = ACTIONS(2810), + [anon_sym_xor2] = ACTIONS(2810), + [anon_sym_or2] = ACTIONS(2810), + [anon_sym_not_DASHin2] = ACTIONS(2824), + [anon_sym_has2] = ACTIONS(2824), + [anon_sym_not_DASHhas2] = ACTIONS(2824), + [anon_sym_starts_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2824), + [anon_sym_ends_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2824), + [anon_sym_EQ_EQ2] = ACTIONS(2832), + [anon_sym_BANG_EQ2] = ACTIONS(2832), + [anon_sym_LT2] = ACTIONS(2826), + [anon_sym_LT_EQ2] = ACTIONS(2832), + [anon_sym_GT_EQ2] = ACTIONS(2832), + [anon_sym_EQ_TILDE2] = ACTIONS(2834), + [anon_sym_BANG_TILDE2] = ACTIONS(2834), + [anon_sym_like2] = ACTIONS(2834), + [anon_sym_not_DASHlike2] = ACTIONS(2834), + [anon_sym_STAR_STAR2] = ACTIONS(2836), + [anon_sym_PLUS_PLUS2] = ACTIONS(2836), + [anon_sym_SLASH2] = ACTIONS(2830), + [anon_sym_mod2] = ACTIONS(2838), + [anon_sym_SLASH_SLASH2] = ACTIONS(2838), + [anon_sym_PLUS2] = ACTIONS(2840), + [anon_sym_bit_DASHshl2] = ACTIONS(2842), + [anon_sym_bit_DASHshr2] = ACTIONS(2842), + [anon_sym_bit_DASHand2] = ACTIONS(2844), + [anon_sym_bit_DASHxor2] = ACTIONS(2846), + [anon_sym_bit_DASHor2] = ACTIONS(2810), + [anon_sym_err_GT] = ACTIONS(2812), + [anon_sym_out_GT] = ACTIONS(2812), + [anon_sym_e_GT] = ACTIONS(2812), + [anon_sym_o_GT] = ACTIONS(2812), + [anon_sym_err_PLUSout_GT] = ACTIONS(2812), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2812), + [anon_sym_o_PLUSe_GT] = ACTIONS(2812), + [anon_sym_e_PLUSo_GT] = ACTIONS(2812), + [anon_sym_err_GT_GT] = ACTIONS(2810), + [anon_sym_out_GT_GT] = ACTIONS(2810), + [anon_sym_e_GT_GT] = ACTIONS(2810), + [anon_sym_o_GT_GT] = ACTIONS(2810), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2810), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2810), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2810), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2810), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1235)] = { - [aux_sym__repeat_newline] = STATE(527), + [aux_sym__repeat_newline] = STATE(1214), [sym_comment] = STATE(1235), - [anon_sym_in] = ACTIONS(2762), - [sym__newline] = ACTIONS(2762), - [anon_sym_SEMI] = ACTIONS(2762), - [anon_sym_PIPE] = ACTIONS(2762), - [anon_sym_err_GT_PIPE] = ACTIONS(2762), - [anon_sym_out_GT_PIPE] = ACTIONS(2762), - [anon_sym_e_GT_PIPE] = ACTIONS(2762), - [anon_sym_o_GT_PIPE] = ACTIONS(2762), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2762), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2762), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2762), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2762), - [anon_sym_RPAREN] = ACTIONS(2762), - [anon_sym_GT2] = ACTIONS(2764), - [anon_sym_DASH2] = ACTIONS(2762), - [anon_sym_STAR2] = ACTIONS(2764), - [anon_sym_and2] = ACTIONS(2762), - [anon_sym_xor2] = ACTIONS(2762), - [anon_sym_or2] = ACTIONS(2762), - [anon_sym_not_DASHin2] = ACTIONS(2762), - [anon_sym_has2] = ACTIONS(2762), - [anon_sym_not_DASHhas2] = ACTIONS(2762), - [anon_sym_starts_DASHwith2] = ACTIONS(2762), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2762), - [anon_sym_ends_DASHwith2] = ACTIONS(2762), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2762), - [anon_sym_EQ_EQ2] = ACTIONS(2762), - [anon_sym_BANG_EQ2] = ACTIONS(2762), - [anon_sym_LT2] = ACTIONS(2764), - [anon_sym_LT_EQ2] = ACTIONS(2762), - [anon_sym_GT_EQ2] = ACTIONS(2762), - [anon_sym_EQ_TILDE2] = ACTIONS(2762), - [anon_sym_BANG_TILDE2] = ACTIONS(2762), - [anon_sym_like2] = ACTIONS(2762), - [anon_sym_not_DASHlike2] = ACTIONS(2762), - [anon_sym_STAR_STAR2] = ACTIONS(2919), - [anon_sym_PLUS_PLUS2] = ACTIONS(2919), - [anon_sym_SLASH2] = ACTIONS(2764), - [anon_sym_mod2] = ACTIONS(2762), - [anon_sym_SLASH_SLASH2] = ACTIONS(2762), - [anon_sym_PLUS2] = ACTIONS(2764), - [anon_sym_bit_DASHshl2] = ACTIONS(2762), - [anon_sym_bit_DASHshr2] = ACTIONS(2762), - [anon_sym_bit_DASHand2] = ACTIONS(2762), - [anon_sym_bit_DASHxor2] = ACTIONS(2762), - [anon_sym_bit_DASHor2] = ACTIONS(2762), - [anon_sym_err_GT] = ACTIONS(2764), - [anon_sym_out_GT] = ACTIONS(2764), - [anon_sym_e_GT] = ACTIONS(2764), - [anon_sym_o_GT] = ACTIONS(2764), - [anon_sym_err_PLUSout_GT] = ACTIONS(2764), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2764), - [anon_sym_o_PLUSe_GT] = ACTIONS(2764), - [anon_sym_e_PLUSo_GT] = ACTIONS(2764), - [anon_sym_err_GT_GT] = ACTIONS(2762), - [anon_sym_out_GT_GT] = ACTIONS(2762), - [anon_sym_e_GT_GT] = ACTIONS(2762), - [anon_sym_o_GT_GT] = ACTIONS(2762), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2762), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2762), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2762), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2762), + [anon_sym_in] = ACTIONS(2872), + [sym__newline] = ACTIONS(2922), + [anon_sym_SEMI] = ACTIONS(2798), + [anon_sym_PIPE] = ACTIONS(2798), + [anon_sym_err_GT_PIPE] = ACTIONS(2798), + [anon_sym_out_GT_PIPE] = ACTIONS(2798), + [anon_sym_e_GT_PIPE] = ACTIONS(2798), + [anon_sym_o_GT_PIPE] = ACTIONS(2798), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2798), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2798), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2798), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2798), + [anon_sym_RPAREN] = ACTIONS(2798), + [anon_sym_GT2] = ACTIONS(2853), + [anon_sym_DASH2] = ACTIONS(2855), + [anon_sym_STAR2] = ACTIONS(2857), + [anon_sym_and2] = ACTIONS(2877), + [anon_sym_xor2] = ACTIONS(2924), + [anon_sym_or2] = ACTIONS(2798), + [anon_sym_not_DASHin2] = ACTIONS(2872), + [anon_sym_has2] = ACTIONS(2872), + [anon_sym_not_DASHhas2] = ACTIONS(2872), + [anon_sym_starts_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2872), + [anon_sym_ends_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2872), + [anon_sym_EQ_EQ2] = ACTIONS(2859), + [anon_sym_BANG_EQ2] = ACTIONS(2859), + [anon_sym_LT2] = ACTIONS(2853), + [anon_sym_LT_EQ2] = ACTIONS(2859), + [anon_sym_GT_EQ2] = ACTIONS(2859), + [anon_sym_EQ_TILDE2] = ACTIONS(2879), + [anon_sym_BANG_TILDE2] = ACTIONS(2879), + [anon_sym_like2] = ACTIONS(2879), + [anon_sym_not_DASHlike2] = ACTIONS(2879), + [anon_sym_STAR_STAR2] = ACTIONS(2861), + [anon_sym_PLUS_PLUS2] = ACTIONS(2861), + [anon_sym_SLASH2] = ACTIONS(2857), + [anon_sym_mod2] = ACTIONS(2863), + [anon_sym_SLASH_SLASH2] = ACTIONS(2863), + [anon_sym_PLUS2] = ACTIONS(2865), + [anon_sym_bit_DASHshl2] = ACTIONS(2867), + [anon_sym_bit_DASHshr2] = ACTIONS(2867), + [anon_sym_bit_DASHand2] = ACTIONS(2881), + [anon_sym_bit_DASHxor2] = ACTIONS(2883), + [anon_sym_bit_DASHor2] = ACTIONS(2885), + [anon_sym_err_GT] = ACTIONS(2800), + [anon_sym_out_GT] = ACTIONS(2800), + [anon_sym_e_GT] = ACTIONS(2800), + [anon_sym_o_GT] = ACTIONS(2800), + [anon_sym_err_PLUSout_GT] = ACTIONS(2800), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2800), + [anon_sym_o_PLUSe_GT] = ACTIONS(2800), + [anon_sym_e_PLUSo_GT] = ACTIONS(2800), + [anon_sym_err_GT_GT] = ACTIONS(2798), + [anon_sym_out_GT_GT] = ACTIONS(2798), + [anon_sym_e_GT_GT] = ACTIONS(2798), + [anon_sym_o_GT_GT] = ACTIONS(2798), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2798), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2798), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2798), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2798), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1236)] = { - [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1236), - [anon_sym_in] = ACTIONS(2927), - [sym__newline] = ACTIONS(2762), - [anon_sym_SEMI] = ACTIONS(2762), - [anon_sym_PIPE] = ACTIONS(2762), - [anon_sym_err_GT_PIPE] = ACTIONS(2762), - [anon_sym_out_GT_PIPE] = ACTIONS(2762), - [anon_sym_e_GT_PIPE] = ACTIONS(2762), - [anon_sym_o_GT_PIPE] = ACTIONS(2762), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2762), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2762), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2762), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2762), - [anon_sym_RPAREN] = ACTIONS(2762), - [anon_sym_GT2] = ACTIONS(2911), - [anon_sym_DASH2] = ACTIONS(2913), - [anon_sym_STAR2] = ACTIONS(2915), - [anon_sym_and2] = ACTIONS(2762), - [anon_sym_xor2] = ACTIONS(2762), - [anon_sym_or2] = ACTIONS(2762), - [anon_sym_not_DASHin2] = ACTIONS(2927), - [anon_sym_has2] = ACTIONS(2927), - [anon_sym_not_DASHhas2] = ACTIONS(2927), - [anon_sym_starts_DASHwith2] = ACTIONS(2927), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2927), - [anon_sym_ends_DASHwith2] = ACTIONS(2927), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2927), - [anon_sym_EQ_EQ2] = ACTIONS(2917), - [anon_sym_BANG_EQ2] = ACTIONS(2917), - [anon_sym_LT2] = ACTIONS(2911), - [anon_sym_LT_EQ2] = ACTIONS(2917), - [anon_sym_GT_EQ2] = ACTIONS(2917), - [anon_sym_EQ_TILDE2] = ACTIONS(2929), - [anon_sym_BANG_TILDE2] = ACTIONS(2929), - [anon_sym_like2] = ACTIONS(2929), - [anon_sym_not_DASHlike2] = ACTIONS(2929), - [anon_sym_STAR_STAR2] = ACTIONS(2919), - [anon_sym_PLUS_PLUS2] = ACTIONS(2919), - [anon_sym_SLASH2] = ACTIONS(2915), - [anon_sym_mod2] = ACTIONS(2921), - [anon_sym_SLASH_SLASH2] = ACTIONS(2921), - [anon_sym_PLUS2] = ACTIONS(2923), - [anon_sym_bit_DASHshl2] = ACTIONS(2925), - [anon_sym_bit_DASHshr2] = ACTIONS(2925), - [anon_sym_bit_DASHand2] = ACTIONS(2931), - [anon_sym_bit_DASHxor2] = ACTIONS(2933), - [anon_sym_bit_DASHor2] = ACTIONS(2935), - [anon_sym_err_GT] = ACTIONS(2764), - [anon_sym_out_GT] = ACTIONS(2764), - [anon_sym_e_GT] = ACTIONS(2764), - [anon_sym_o_GT] = ACTIONS(2764), - [anon_sym_err_PLUSout_GT] = ACTIONS(2764), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2764), - [anon_sym_o_PLUSe_GT] = ACTIONS(2764), - [anon_sym_e_PLUSo_GT] = ACTIONS(2764), - [anon_sym_err_GT_GT] = ACTIONS(2762), - [anon_sym_out_GT_GT] = ACTIONS(2762), - [anon_sym_e_GT_GT] = ACTIONS(2762), - [anon_sym_o_GT_GT] = ACTIONS(2762), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2762), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2762), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2762), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2762), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1237)] = { - [aux_sym__repeat_newline] = STATE(527), - [sym_comment] = STATE(1237), - [anon_sym_in] = ACTIONS(2927), - [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(2911), - [anon_sym_DASH2] = ACTIONS(2913), - [anon_sym_STAR2] = ACTIONS(2915), - [anon_sym_and2] = ACTIONS(2937), - [anon_sym_xor2] = ACTIONS(2939), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2927), - [anon_sym_has2] = ACTIONS(2927), - [anon_sym_not_DASHhas2] = ACTIONS(2927), - [anon_sym_starts_DASHwith2] = ACTIONS(2927), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2927), - [anon_sym_ends_DASHwith2] = ACTIONS(2927), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2927), - [anon_sym_EQ_EQ2] = ACTIONS(2917), - [anon_sym_BANG_EQ2] = ACTIONS(2917), - [anon_sym_LT2] = ACTIONS(2911), - [anon_sym_LT_EQ2] = ACTIONS(2917), - [anon_sym_GT_EQ2] = ACTIONS(2917), - [anon_sym_EQ_TILDE2] = ACTIONS(2929), - [anon_sym_BANG_TILDE2] = ACTIONS(2929), - [anon_sym_like2] = ACTIONS(2929), - [anon_sym_not_DASHlike2] = ACTIONS(2929), - [anon_sym_STAR_STAR2] = ACTIONS(2919), - [anon_sym_PLUS_PLUS2] = ACTIONS(2919), - [anon_sym_SLASH2] = ACTIONS(2915), - [anon_sym_mod2] = ACTIONS(2921), - [anon_sym_SLASH_SLASH2] = ACTIONS(2921), - [anon_sym_PLUS2] = ACTIONS(2923), - [anon_sym_bit_DASHshl2] = ACTIONS(2925), - [anon_sym_bit_DASHshr2] = ACTIONS(2925), - [anon_sym_bit_DASHand2] = ACTIONS(2931), - [anon_sym_bit_DASHxor2] = ACTIONS(2933), - [anon_sym_bit_DASHor2] = ACTIONS(2935), - [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(2910), + [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(2890), + [anon_sym_DASH2] = ACTIONS(2892), + [anon_sym_RBRACE] = ACTIONS(2648), + [anon_sym_STAR2] = ACTIONS(2894), + [anon_sym_and2] = ACTIONS(2648), + [anon_sym_xor2] = ACTIONS(2648), + [anon_sym_or2] = ACTIONS(2648), + [anon_sym_not_DASHin2] = ACTIONS(2910), + [anon_sym_has2] = ACTIONS(2910), + [anon_sym_not_DASHhas2] = ACTIONS(2910), + [anon_sym_starts_DASHwith2] = ACTIONS(2910), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2910), + [anon_sym_ends_DASHwith2] = ACTIONS(2910), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2910), + [anon_sym_EQ_EQ2] = ACTIONS(2896), + [anon_sym_BANG_EQ2] = ACTIONS(2896), + [anon_sym_LT2] = ACTIONS(2890), + [anon_sym_LT_EQ2] = ACTIONS(2896), + [anon_sym_GT_EQ2] = ACTIONS(2896), + [anon_sym_EQ_TILDE2] = ACTIONS(2912), + [anon_sym_BANG_TILDE2] = ACTIONS(2912), + [anon_sym_like2] = ACTIONS(2912), + [anon_sym_not_DASHlike2] = ACTIONS(2912), + [anon_sym_STAR_STAR2] = ACTIONS(2898), + [anon_sym_PLUS_PLUS2] = ACTIONS(2898), + [anon_sym_SLASH2] = ACTIONS(2894), + [anon_sym_mod2] = ACTIONS(2900), + [anon_sym_SLASH_SLASH2] = ACTIONS(2900), + [anon_sym_PLUS2] = ACTIONS(2902), + [anon_sym_bit_DASHshl2] = ACTIONS(2904), + [anon_sym_bit_DASHshr2] = ACTIONS(2904), + [anon_sym_bit_DASHand2] = ACTIONS(2914), + [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(1237)] = { + [aux_sym__repeat_newline] = STATE(1165), + [sym_comment] = STATE(1237), + [anon_sym_in] = ACTIONS(2788), + [sym__newline] = ACTIONS(2874), + [anon_sym_SEMI] = ACTIONS(2788), + [anon_sym_PIPE] = ACTIONS(2788), + [anon_sym_err_GT_PIPE] = ACTIONS(2788), + [anon_sym_out_GT_PIPE] = ACTIONS(2788), + [anon_sym_e_GT_PIPE] = ACTIONS(2788), + [anon_sym_o_GT_PIPE] = ACTIONS(2788), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2788), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2788), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2788), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2788), + [anon_sym_RPAREN] = ACTIONS(2788), + [anon_sym_GT2] = ACTIONS(2790), + [anon_sym_DASH2] = ACTIONS(2788), + [anon_sym_STAR2] = ACTIONS(2790), + [anon_sym_and2] = ACTIONS(2788), + [anon_sym_xor2] = ACTIONS(2788), + [anon_sym_or2] = ACTIONS(2788), + [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(2788), + [anon_sym_BANG_EQ2] = ACTIONS(2788), + [anon_sym_LT2] = ACTIONS(2790), + [anon_sym_LT_EQ2] = ACTIONS(2788), + [anon_sym_GT_EQ2] = ACTIONS(2788), + [anon_sym_EQ_TILDE2] = ACTIONS(2788), + [anon_sym_BANG_TILDE2] = ACTIONS(2788), + [anon_sym_like2] = ACTIONS(2788), + [anon_sym_not_DASHlike2] = ACTIONS(2788), + [anon_sym_STAR_STAR2] = ACTIONS(2861), + [anon_sym_PLUS_PLUS2] = ACTIONS(2861), + [anon_sym_SLASH2] = ACTIONS(2790), + [anon_sym_mod2] = ACTIONS(2788), + [anon_sym_SLASH_SLASH2] = ACTIONS(2788), + [anon_sym_PLUS2] = ACTIONS(2790), + [anon_sym_bit_DASHshl2] = ACTIONS(2788), + [anon_sym_bit_DASHshr2] = ACTIONS(2788), + [anon_sym_bit_DASHand2] = ACTIONS(2788), + [anon_sym_bit_DASHxor2] = ACTIONS(2788), + [anon_sym_bit_DASHor2] = ACTIONS(2788), + [anon_sym_err_GT] = ACTIONS(2790), + [anon_sym_out_GT] = ACTIONS(2790), + [anon_sym_e_GT] = ACTIONS(2790), + [anon_sym_o_GT] = ACTIONS(2790), + [anon_sym_err_PLUSout_GT] = ACTIONS(2790), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2790), + [anon_sym_o_PLUSe_GT] = ACTIONS(2790), + [anon_sym_e_PLUSo_GT] = ACTIONS(2790), + [anon_sym_err_GT_GT] = ACTIONS(2788), + [anon_sym_out_GT_GT] = ACTIONS(2788), + [anon_sym_e_GT_GT] = ACTIONS(2788), + [anon_sym_o_GT_GT] = ACTIONS(2788), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2788), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2788), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2788), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2788), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1238)] = { - [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1238), - [anon_sym_in] = ACTIONS(2927), - [sym__newline] = ACTIONS(2762), - [anon_sym_SEMI] = ACTIONS(2762), - [anon_sym_PIPE] = ACTIONS(2762), - [anon_sym_err_GT_PIPE] = ACTIONS(2762), - [anon_sym_out_GT_PIPE] = ACTIONS(2762), - [anon_sym_e_GT_PIPE] = ACTIONS(2762), - [anon_sym_o_GT_PIPE] = ACTIONS(2762), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2762), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2762), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2762), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2762), - [anon_sym_RPAREN] = ACTIONS(2762), - [anon_sym_GT2] = ACTIONS(2911), - [anon_sym_DASH2] = ACTIONS(2913), - [anon_sym_STAR2] = ACTIONS(2915), - [anon_sym_and2] = ACTIONS(2937), - [anon_sym_xor2] = ACTIONS(2762), - [anon_sym_or2] = ACTIONS(2762), - [anon_sym_not_DASHin2] = ACTIONS(2927), - [anon_sym_has2] = ACTIONS(2927), - [anon_sym_not_DASHhas2] = ACTIONS(2927), - [anon_sym_starts_DASHwith2] = ACTIONS(2927), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2927), - [anon_sym_ends_DASHwith2] = ACTIONS(2927), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2927), - [anon_sym_EQ_EQ2] = ACTIONS(2917), - [anon_sym_BANG_EQ2] = ACTIONS(2917), - [anon_sym_LT2] = ACTIONS(2911), - [anon_sym_LT_EQ2] = ACTIONS(2917), - [anon_sym_GT_EQ2] = ACTIONS(2917), - [anon_sym_EQ_TILDE2] = ACTIONS(2929), - [anon_sym_BANG_TILDE2] = ACTIONS(2929), - [anon_sym_like2] = ACTIONS(2929), - [anon_sym_not_DASHlike2] = ACTIONS(2929), - [anon_sym_STAR_STAR2] = ACTIONS(2919), - [anon_sym_PLUS_PLUS2] = ACTIONS(2919), - [anon_sym_SLASH2] = ACTIONS(2915), - [anon_sym_mod2] = ACTIONS(2921), - [anon_sym_SLASH_SLASH2] = ACTIONS(2921), - [anon_sym_PLUS2] = ACTIONS(2923), - [anon_sym_bit_DASHshl2] = ACTIONS(2925), - [anon_sym_bit_DASHshr2] = ACTIONS(2925), - [anon_sym_bit_DASHand2] = ACTIONS(2931), - [anon_sym_bit_DASHxor2] = ACTIONS(2933), - [anon_sym_bit_DASHor2] = ACTIONS(2935), - [anon_sym_err_GT] = ACTIONS(2764), - [anon_sym_out_GT] = ACTIONS(2764), - [anon_sym_e_GT] = ACTIONS(2764), - [anon_sym_o_GT] = ACTIONS(2764), - [anon_sym_err_PLUSout_GT] = ACTIONS(2764), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2764), - [anon_sym_o_PLUSe_GT] = ACTIONS(2764), - [anon_sym_e_PLUSo_GT] = ACTIONS(2764), - [anon_sym_err_GT_GT] = ACTIONS(2762), - [anon_sym_out_GT_GT] = ACTIONS(2762), - [anon_sym_e_GT_GT] = ACTIONS(2762), - [anon_sym_o_GT_GT] = ACTIONS(2762), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2762), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2762), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2762), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2762), + [anon_sym_in] = ACTIONS(2910), + [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(2890), + [anon_sym_DASH2] = ACTIONS(2892), + [anon_sym_RBRACE] = ACTIONS(2648), + [anon_sym_STAR2] = ACTIONS(2894), + [anon_sym_and2] = ACTIONS(2648), + [anon_sym_xor2] = ACTIONS(2648), + [anon_sym_or2] = ACTIONS(2648), + [anon_sym_not_DASHin2] = ACTIONS(2910), + [anon_sym_has2] = ACTIONS(2910), + [anon_sym_not_DASHhas2] = ACTIONS(2910), + [anon_sym_starts_DASHwith2] = ACTIONS(2910), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2910), + [anon_sym_ends_DASHwith2] = ACTIONS(2910), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2910), + [anon_sym_EQ_EQ2] = ACTIONS(2896), + [anon_sym_BANG_EQ2] = ACTIONS(2896), + [anon_sym_LT2] = ACTIONS(2890), + [anon_sym_LT_EQ2] = ACTIONS(2896), + [anon_sym_GT_EQ2] = ACTIONS(2896), + [anon_sym_EQ_TILDE2] = ACTIONS(2912), + [anon_sym_BANG_TILDE2] = ACTIONS(2912), + [anon_sym_like2] = ACTIONS(2912), + [anon_sym_not_DASHlike2] = ACTIONS(2912), + [anon_sym_STAR_STAR2] = ACTIONS(2898), + [anon_sym_PLUS_PLUS2] = ACTIONS(2898), + [anon_sym_SLASH2] = ACTIONS(2894), + [anon_sym_mod2] = ACTIONS(2900), + [anon_sym_SLASH_SLASH2] = ACTIONS(2900), + [anon_sym_PLUS2] = ACTIONS(2902), + [anon_sym_bit_DASHshl2] = ACTIONS(2904), + [anon_sym_bit_DASHshr2] = ACTIONS(2904), + [anon_sym_bit_DASHand2] = ACTIONS(2914), + [anon_sym_bit_DASHxor2] = ACTIONS(2916), + [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(1239)] = { - [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1239), - [anon_sym_in] = ACTIONS(2927), - [sym__newline] = ACTIONS(2762), - [anon_sym_SEMI] = ACTIONS(2762), - [anon_sym_PIPE] = ACTIONS(2762), - [anon_sym_err_GT_PIPE] = ACTIONS(2762), - [anon_sym_out_GT_PIPE] = ACTIONS(2762), - [anon_sym_e_GT_PIPE] = ACTIONS(2762), - [anon_sym_o_GT_PIPE] = ACTIONS(2762), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2762), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2762), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2762), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2762), - [anon_sym_RPAREN] = ACTIONS(2762), - [anon_sym_GT2] = ACTIONS(2911), - [anon_sym_DASH2] = ACTIONS(2913), - [anon_sym_STAR2] = ACTIONS(2915), - [anon_sym_and2] = ACTIONS(2937), - [anon_sym_xor2] = ACTIONS(2939), - [anon_sym_or2] = ACTIONS(2762), - [anon_sym_not_DASHin2] = ACTIONS(2927), - [anon_sym_has2] = ACTIONS(2927), - [anon_sym_not_DASHhas2] = ACTIONS(2927), - [anon_sym_starts_DASHwith2] = ACTIONS(2927), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2927), - [anon_sym_ends_DASHwith2] = ACTIONS(2927), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2927), - [anon_sym_EQ_EQ2] = ACTIONS(2917), - [anon_sym_BANG_EQ2] = ACTIONS(2917), - [anon_sym_LT2] = ACTIONS(2911), - [anon_sym_LT_EQ2] = ACTIONS(2917), - [anon_sym_GT_EQ2] = ACTIONS(2917), - [anon_sym_EQ_TILDE2] = ACTIONS(2929), - [anon_sym_BANG_TILDE2] = ACTIONS(2929), - [anon_sym_like2] = ACTIONS(2929), - [anon_sym_not_DASHlike2] = ACTIONS(2929), - [anon_sym_STAR_STAR2] = ACTIONS(2919), - [anon_sym_PLUS_PLUS2] = ACTIONS(2919), - [anon_sym_SLASH2] = ACTIONS(2915), - [anon_sym_mod2] = ACTIONS(2921), - [anon_sym_SLASH_SLASH2] = ACTIONS(2921), - [anon_sym_PLUS2] = ACTIONS(2923), - [anon_sym_bit_DASHshl2] = ACTIONS(2925), - [anon_sym_bit_DASHshr2] = ACTIONS(2925), - [anon_sym_bit_DASHand2] = ACTIONS(2931), - [anon_sym_bit_DASHxor2] = ACTIONS(2933), - [anon_sym_bit_DASHor2] = ACTIONS(2935), - [anon_sym_err_GT] = ACTIONS(2764), - [anon_sym_out_GT] = ACTIONS(2764), - [anon_sym_e_GT] = ACTIONS(2764), - [anon_sym_o_GT] = ACTIONS(2764), - [anon_sym_err_PLUSout_GT] = ACTIONS(2764), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2764), - [anon_sym_o_PLUSe_GT] = ACTIONS(2764), - [anon_sym_e_PLUSo_GT] = ACTIONS(2764), - [anon_sym_err_GT_GT] = ACTIONS(2762), - [anon_sym_out_GT_GT] = ACTIONS(2762), - [anon_sym_e_GT_GT] = ACTIONS(2762), - [anon_sym_o_GT_GT] = ACTIONS(2762), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2762), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2762), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2762), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2762), + [ts_builtin_sym_end] = ACTIONS(2164), + [anon_sym_in] = ACTIONS(2164), + [sym__newline] = ACTIONS(2164), + [anon_sym_SEMI] = ACTIONS(2164), + [anon_sym_PIPE] = ACTIONS(2164), + [anon_sym_err_GT_PIPE] = ACTIONS(2164), + [anon_sym_out_GT_PIPE] = ACTIONS(2164), + [anon_sym_e_GT_PIPE] = ACTIONS(2164), + [anon_sym_o_GT_PIPE] = ACTIONS(2164), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2164), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2164), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2164), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2164), + [anon_sym_GT2] = ACTIONS(2166), + [anon_sym_DASH2] = ACTIONS(2164), + [anon_sym_STAR2] = ACTIONS(2166), + [anon_sym_and2] = ACTIONS(2164), + [anon_sym_xor2] = ACTIONS(2164), + [anon_sym_or2] = ACTIONS(2164), + [anon_sym_not_DASHin2] = ACTIONS(2164), + [anon_sym_has2] = ACTIONS(2164), + [anon_sym_not_DASHhas2] = ACTIONS(2164), + [anon_sym_starts_DASHwith2] = ACTIONS(2164), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2164), + [anon_sym_ends_DASHwith2] = ACTIONS(2164), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2164), + [anon_sym_EQ_EQ2] = ACTIONS(2164), + [anon_sym_BANG_EQ2] = ACTIONS(2164), + [anon_sym_LT2] = ACTIONS(2166), + [anon_sym_LT_EQ2] = ACTIONS(2164), + [anon_sym_GT_EQ2] = ACTIONS(2164), + [anon_sym_EQ_TILDE2] = ACTIONS(2164), + [anon_sym_BANG_TILDE2] = ACTIONS(2164), + [anon_sym_like2] = ACTIONS(2164), + [anon_sym_not_DASHlike2] = ACTIONS(2164), + [anon_sym_STAR_STAR2] = ACTIONS(2164), + [anon_sym_PLUS_PLUS2] = ACTIONS(2164), + [anon_sym_SLASH2] = ACTIONS(2166), + [anon_sym_mod2] = ACTIONS(2164), + [anon_sym_SLASH_SLASH2] = ACTIONS(2164), + [anon_sym_PLUS2] = ACTIONS(2166), + [anon_sym_bit_DASHshl2] = ACTIONS(2164), + [anon_sym_bit_DASHshr2] = ACTIONS(2164), + [anon_sym_bit_DASHand2] = ACTIONS(2164), + [anon_sym_bit_DASHxor2] = ACTIONS(2164), + [anon_sym_bit_DASHor2] = ACTIONS(2164), + [anon_sym_LBRACK2] = ACTIONS(2960), + [anon_sym_err_GT] = ACTIONS(2166), + [anon_sym_out_GT] = ACTIONS(2166), + [anon_sym_e_GT] = ACTIONS(2166), + [anon_sym_o_GT] = ACTIONS(2166), + [anon_sym_err_PLUSout_GT] = ACTIONS(2166), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2166), + [anon_sym_o_PLUSe_GT] = ACTIONS(2166), + [anon_sym_e_PLUSo_GT] = ACTIONS(2166), + [anon_sym_err_GT_GT] = ACTIONS(2164), + [anon_sym_out_GT_GT] = ACTIONS(2164), + [anon_sym_e_GT_GT] = ACTIONS(2164), + [anon_sym_o_GT_GT] = ACTIONS(2164), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2164), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2164), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2164), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2164), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1240)] = { - [aux_sym__repeat_newline] = STATE(1187), + [sym__ctrl_match_body] = STATE(5229), + [sym_match_arm] = STATE(4828), + [sym_default_arm] = STATE(4828), + [sym_match_pattern] = STATE(5314), + [sym__match_pattern] = STATE(4156), + [sym__match_pattern_expression] = STATE(4612), + [sym__match_pattern_value] = STATE(4618), + [sym__match_pattern_list] = STATE(4619), + [sym__match_pattern_record] = STATE(4620), + [sym_expr_parenthesized] = STATE(3917), + [sym_val_range] = STATE(4618), + [sym__val_range] = STATE(5288), + [sym_val_nothing] = STATE(4620), + [sym_val_bool] = STATE(4286), + [sym_val_variable] = STATE(3872), + [sym_val_number] = STATE(4620), + [sym__val_number_decimal] = STATE(3638), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(4620), + [sym_val_filesize] = STATE(4620), + [sym_val_binary] = STATE(4620), + [sym_val_string] = STATE(4620), + [sym__raw_str] = STATE(2274), + [sym__str_double_quotes] = STATE(2274), + [sym__str_single_quotes] = STATE(2274), + [sym__str_back_ticks] = STATE(2274), + [sym_val_table] = STATE(4620), + [sym_unquoted] = STATE(4621), + [sym__unquoted_anonymous_prefix] = STATE(5288), [sym_comment] = STATE(1240), - [anon_sym_in] = ACTIONS(2895), - [sym__newline] = ACTIONS(2804), - [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(2807), - [anon_sym_DASH2] = ACTIONS(2809), - [anon_sym_STAR2] = ACTIONS(2811), - [anon_sym_and2] = ACTIONS(2720), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2895), - [anon_sym_has2] = ACTIONS(2895), - [anon_sym_not_DASHhas2] = ACTIONS(2895), - [anon_sym_starts_DASHwith2] = ACTIONS(2895), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2895), - [anon_sym_ends_DASHwith2] = ACTIONS(2895), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2895), - [anon_sym_EQ_EQ2] = ACTIONS(2813), - [anon_sym_BANG_EQ2] = ACTIONS(2813), - [anon_sym_LT2] = ACTIONS(2807), - [anon_sym_LT_EQ2] = ACTIONS(2813), - [anon_sym_GT_EQ2] = ACTIONS(2813), - [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(2815), - [anon_sym_PLUS_PLUS2] = ACTIONS(2815), - [anon_sym_SLASH2] = ACTIONS(2811), - [anon_sym_mod2] = ACTIONS(2817), - [anon_sym_SLASH_SLASH2] = ACTIONS(2817), - [anon_sym_PLUS2] = ACTIONS(2819), - [anon_sym_bit_DASHshl2] = ACTIONS(2821), - [anon_sym_bit_DASHshr2] = ACTIONS(2821), - [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), + [aux_sym__types_body_repeat1] = STATE(1357), + [aux_sym__ctrl_match_body_repeat1] = STATE(1386), + [anon_sym_true] = ACTIONS(2928), + [anon_sym_false] = ACTIONS(2928), + [anon_sym_null] = ACTIONS(2930), + [aux_sym_cmd_identifier_token3] = ACTIONS(2932), + [aux_sym_cmd_identifier_token4] = ACTIONS(2932), + [aux_sym_cmd_identifier_token5] = ACTIONS(2932), + [sym__newline] = ACTIONS(2934), + [anon_sym_LBRACK] = ACTIONS(2936), + [anon_sym_LPAREN] = ACTIONS(2688), + [anon_sym_DOLLAR] = ACTIONS(2938), + [anon_sym_LBRACE] = ACTIONS(2940), + [anon_sym_RBRACE] = ACTIONS(2962), + [anon_sym__] = ACTIONS(2944), + [anon_sym_DOT_DOT] = ACTIONS(2946), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2948), + [anon_sym_DOT_DOT_LT] = ACTIONS(2948), + [aux_sym__val_number_decimal_token1] = ACTIONS(2950), + [aux_sym__val_number_decimal_token2] = ACTIONS(2952), + [aux_sym__val_number_decimal_token3] = ACTIONS(2954), + [aux_sym__val_number_decimal_token4] = ACTIONS(2954), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2956), + [anon_sym_DQUOTE] = ACTIONS(1772), + [anon_sym_SQUOTE] = ACTIONS(1774), + [anon_sym_BQUOTE] = ACTIONS(1776), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1778), }, [STATE(1241)] = { - [aux_sym__repeat_newline] = STATE(527), + [sym__ctrl_match_body] = STATE(5234), + [sym_match_arm] = STATE(4828), + [sym_default_arm] = STATE(4828), + [sym_match_pattern] = STATE(5314), + [sym__match_pattern] = STATE(4156), + [sym__match_pattern_expression] = STATE(4612), + [sym__match_pattern_value] = STATE(4618), + [sym__match_pattern_list] = STATE(4619), + [sym__match_pattern_record] = STATE(4620), + [sym_expr_parenthesized] = STATE(3917), + [sym_val_range] = STATE(4618), + [sym__val_range] = STATE(5288), + [sym_val_nothing] = STATE(4620), + [sym_val_bool] = STATE(4286), + [sym_val_variable] = STATE(3872), + [sym_val_number] = STATE(4620), + [sym__val_number_decimal] = STATE(3638), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(4620), + [sym_val_filesize] = STATE(4620), + [sym_val_binary] = STATE(4620), + [sym_val_string] = STATE(4620), + [sym__raw_str] = STATE(2274), + [sym__str_double_quotes] = STATE(2274), + [sym__str_single_quotes] = STATE(2274), + [sym__str_back_ticks] = STATE(2274), + [sym_val_table] = STATE(4620), + [sym_unquoted] = STATE(4621), + [sym__unquoted_anonymous_prefix] = STATE(5288), [sym_comment] = STATE(1241), - [anon_sym_in] = ACTIONS(2927), - [sym__newline] = ACTIONS(2762), - [anon_sym_SEMI] = ACTIONS(2762), - [anon_sym_PIPE] = ACTIONS(2762), - [anon_sym_err_GT_PIPE] = ACTIONS(2762), - [anon_sym_out_GT_PIPE] = ACTIONS(2762), - [anon_sym_e_GT_PIPE] = ACTIONS(2762), - [anon_sym_o_GT_PIPE] = ACTIONS(2762), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2762), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2762), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2762), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2762), - [anon_sym_RPAREN] = ACTIONS(2762), - [anon_sym_GT2] = ACTIONS(2911), - [anon_sym_DASH2] = ACTIONS(2913), - [anon_sym_STAR2] = ACTIONS(2915), - [anon_sym_and2] = ACTIONS(2762), - [anon_sym_xor2] = ACTIONS(2762), - [anon_sym_or2] = ACTIONS(2762), - [anon_sym_not_DASHin2] = ACTIONS(2927), - [anon_sym_has2] = ACTIONS(2927), - [anon_sym_not_DASHhas2] = ACTIONS(2927), - [anon_sym_starts_DASHwith2] = ACTIONS(2927), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2927), - [anon_sym_ends_DASHwith2] = ACTIONS(2927), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2927), - [anon_sym_EQ_EQ2] = ACTIONS(2917), - [anon_sym_BANG_EQ2] = ACTIONS(2917), - [anon_sym_LT2] = ACTIONS(2911), - [anon_sym_LT_EQ2] = ACTIONS(2917), - [anon_sym_GT_EQ2] = ACTIONS(2917), - [anon_sym_EQ_TILDE2] = ACTIONS(2762), - [anon_sym_BANG_TILDE2] = ACTIONS(2762), - [anon_sym_like2] = ACTIONS(2762), - [anon_sym_not_DASHlike2] = ACTIONS(2762), - [anon_sym_STAR_STAR2] = ACTIONS(2919), - [anon_sym_PLUS_PLUS2] = ACTIONS(2919), - [anon_sym_SLASH2] = ACTIONS(2915), - [anon_sym_mod2] = ACTIONS(2921), - [anon_sym_SLASH_SLASH2] = ACTIONS(2921), - [anon_sym_PLUS2] = ACTIONS(2923), - [anon_sym_bit_DASHshl2] = ACTIONS(2925), - [anon_sym_bit_DASHshr2] = ACTIONS(2925), - [anon_sym_bit_DASHand2] = ACTIONS(2762), - [anon_sym_bit_DASHxor2] = ACTIONS(2762), - [anon_sym_bit_DASHor2] = ACTIONS(2762), - [anon_sym_err_GT] = ACTIONS(2764), - [anon_sym_out_GT] = ACTIONS(2764), - [anon_sym_e_GT] = ACTIONS(2764), - [anon_sym_o_GT] = ACTIONS(2764), - [anon_sym_err_PLUSout_GT] = ACTIONS(2764), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2764), - [anon_sym_o_PLUSe_GT] = ACTIONS(2764), - [anon_sym_e_PLUSo_GT] = ACTIONS(2764), - [anon_sym_err_GT_GT] = ACTIONS(2762), - [anon_sym_out_GT_GT] = ACTIONS(2762), - [anon_sym_e_GT_GT] = ACTIONS(2762), - [anon_sym_o_GT_GT] = ACTIONS(2762), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2762), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2762), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2762), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2762), + [aux_sym__types_body_repeat1] = STATE(1357), + [aux_sym__ctrl_match_body_repeat1] = STATE(1386), + [anon_sym_true] = ACTIONS(2928), + [anon_sym_false] = ACTIONS(2928), + [anon_sym_null] = ACTIONS(2930), + [aux_sym_cmd_identifier_token3] = ACTIONS(2932), + [aux_sym_cmd_identifier_token4] = ACTIONS(2932), + [aux_sym_cmd_identifier_token5] = ACTIONS(2932), + [sym__newline] = ACTIONS(2934), + [anon_sym_LBRACK] = ACTIONS(2936), + [anon_sym_LPAREN] = ACTIONS(2688), + [anon_sym_DOLLAR] = ACTIONS(2938), + [anon_sym_LBRACE] = ACTIONS(2940), + [anon_sym_RBRACE] = ACTIONS(2964), + [anon_sym__] = ACTIONS(2944), + [anon_sym_DOT_DOT] = ACTIONS(2946), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2948), + [anon_sym_DOT_DOT_LT] = ACTIONS(2948), + [aux_sym__val_number_decimal_token1] = ACTIONS(2950), + [aux_sym__val_number_decimal_token2] = ACTIONS(2952), + [aux_sym__val_number_decimal_token3] = ACTIONS(2954), + [aux_sym__val_number_decimal_token4] = ACTIONS(2954), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2956), + [anon_sym_DQUOTE] = ACTIONS(1772), + [anon_sym_SQUOTE] = ACTIONS(1774), + [anon_sym_BQUOTE] = ACTIONS(1776), + [aux_sym_unquoted_token1] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1778), }, [STATE(1242)] = { - [aux_sym__repeat_newline] = STATE(527), + [aux_sym__repeat_newline] = STATE(1204), [sym_comment] = STATE(1242), - [anon_sym_in] = ACTIONS(2927), - [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(2911), - [anon_sym_DASH2] = ACTIONS(2913), - [anon_sym_STAR2] = ACTIONS(2915), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2927), - [anon_sym_has2] = ACTIONS(2927), - [anon_sym_not_DASHhas2] = ACTIONS(2927), - [anon_sym_starts_DASHwith2] = ACTIONS(2927), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2927), - [anon_sym_ends_DASHwith2] = ACTIONS(2927), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2927), - [anon_sym_EQ_EQ2] = ACTIONS(2917), - [anon_sym_BANG_EQ2] = ACTIONS(2917), - [anon_sym_LT2] = ACTIONS(2911), - [anon_sym_LT_EQ2] = ACTIONS(2917), - [anon_sym_GT_EQ2] = ACTIONS(2917), - [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(2919), - [anon_sym_PLUS_PLUS2] = ACTIONS(2919), - [anon_sym_SLASH2] = ACTIONS(2915), - [anon_sym_mod2] = ACTIONS(2921), - [anon_sym_SLASH_SLASH2] = ACTIONS(2921), - [anon_sym_PLUS2] = ACTIONS(2923), - [anon_sym_bit_DASHshl2] = ACTIONS(2925), - [anon_sym_bit_DASHshr2] = ACTIONS(2925), - [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(2872), + [sym__newline] = ACTIONS(2922), + [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(2853), + [anon_sym_DASH2] = ACTIONS(2855), + [anon_sym_STAR2] = ACTIONS(2857), + [anon_sym_and2] = ACTIONS(2877), + [anon_sym_xor2] = ACTIONS(2924), + [anon_sym_or2] = ACTIONS(2776), + [anon_sym_not_DASHin2] = ACTIONS(2872), + [anon_sym_has2] = ACTIONS(2872), + [anon_sym_not_DASHhas2] = ACTIONS(2872), + [anon_sym_starts_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2872), + [anon_sym_ends_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2872), + [anon_sym_EQ_EQ2] = ACTIONS(2859), + [anon_sym_BANG_EQ2] = ACTIONS(2859), + [anon_sym_LT2] = ACTIONS(2853), + [anon_sym_LT_EQ2] = ACTIONS(2859), + [anon_sym_GT_EQ2] = ACTIONS(2859), + [anon_sym_EQ_TILDE2] = ACTIONS(2879), + [anon_sym_BANG_TILDE2] = ACTIONS(2879), + [anon_sym_like2] = ACTIONS(2879), + [anon_sym_not_DASHlike2] = ACTIONS(2879), + [anon_sym_STAR_STAR2] = ACTIONS(2861), + [anon_sym_PLUS_PLUS2] = ACTIONS(2861), + [anon_sym_SLASH2] = ACTIONS(2857), + [anon_sym_mod2] = ACTIONS(2863), + [anon_sym_SLASH_SLASH2] = ACTIONS(2863), + [anon_sym_PLUS2] = ACTIONS(2865), + [anon_sym_bit_DASHshl2] = ACTIONS(2867), + [anon_sym_bit_DASHshr2] = ACTIONS(2867), + [anon_sym_bit_DASHand2] = ACTIONS(2881), + [anon_sym_bit_DASHxor2] = ACTIONS(2883), + [anon_sym_bit_DASHor2] = ACTIONS(2885), + [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(1243)] = { - [aux_sym__repeat_newline] = STATE(527), + [aux_sym__repeat_newline] = STATE(1141), [sym_comment] = STATE(1243), - [anon_sym_in] = ACTIONS(2762), - [sym__newline] = ACTIONS(2762), - [anon_sym_SEMI] = ACTIONS(2762), - [anon_sym_PIPE] = ACTIONS(2762), - [anon_sym_err_GT_PIPE] = ACTIONS(2762), - [anon_sym_out_GT_PIPE] = ACTIONS(2762), - [anon_sym_e_GT_PIPE] = ACTIONS(2762), - [anon_sym_o_GT_PIPE] = ACTIONS(2762), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2762), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2762), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2762), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2762), - [anon_sym_RPAREN] = ACTIONS(2762), - [anon_sym_GT2] = ACTIONS(2764), - [anon_sym_DASH2] = ACTIONS(2913), - [anon_sym_STAR2] = ACTIONS(2915), - [anon_sym_and2] = ACTIONS(2762), - [anon_sym_xor2] = ACTIONS(2762), - [anon_sym_or2] = ACTIONS(2762), - [anon_sym_not_DASHin2] = ACTIONS(2762), - [anon_sym_has2] = ACTIONS(2762), - [anon_sym_not_DASHhas2] = ACTIONS(2762), - [anon_sym_starts_DASHwith2] = ACTIONS(2762), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2762), - [anon_sym_ends_DASHwith2] = ACTIONS(2762), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2762), - [anon_sym_EQ_EQ2] = ACTIONS(2762), - [anon_sym_BANG_EQ2] = ACTIONS(2762), - [anon_sym_LT2] = ACTIONS(2764), - [anon_sym_LT_EQ2] = ACTIONS(2762), - [anon_sym_GT_EQ2] = ACTIONS(2762), - [anon_sym_EQ_TILDE2] = ACTIONS(2762), - [anon_sym_BANG_TILDE2] = ACTIONS(2762), - [anon_sym_like2] = ACTIONS(2762), - [anon_sym_not_DASHlike2] = ACTIONS(2762), - [anon_sym_STAR_STAR2] = ACTIONS(2919), - [anon_sym_PLUS_PLUS2] = ACTIONS(2919), - [anon_sym_SLASH2] = ACTIONS(2915), - [anon_sym_mod2] = ACTIONS(2921), - [anon_sym_SLASH_SLASH2] = ACTIONS(2921), - [anon_sym_PLUS2] = ACTIONS(2923), - [anon_sym_bit_DASHshl2] = ACTIONS(2762), - [anon_sym_bit_DASHshr2] = ACTIONS(2762), - [anon_sym_bit_DASHand2] = ACTIONS(2762), - [anon_sym_bit_DASHxor2] = ACTIONS(2762), - [anon_sym_bit_DASHor2] = ACTIONS(2762), - [anon_sym_err_GT] = ACTIONS(2764), - [anon_sym_out_GT] = ACTIONS(2764), - [anon_sym_e_GT] = ACTIONS(2764), - [anon_sym_o_GT] = ACTIONS(2764), - [anon_sym_err_PLUSout_GT] = ACTIONS(2764), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2764), - [anon_sym_o_PLUSe_GT] = ACTIONS(2764), - [anon_sym_e_PLUSo_GT] = ACTIONS(2764), - [anon_sym_err_GT_GT] = ACTIONS(2762), - [anon_sym_out_GT_GT] = ACTIONS(2762), - [anon_sym_e_GT_GT] = ACTIONS(2762), - [anon_sym_o_GT_GT] = ACTIONS(2762), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2762), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2762), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2762), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2762), + [anon_sym_in] = ACTIONS(2872), + [sym__newline] = ACTIONS(2850), + [anon_sym_SEMI] = ACTIONS(2798), + [anon_sym_PIPE] = ACTIONS(2798), + [anon_sym_err_GT_PIPE] = ACTIONS(2798), + [anon_sym_out_GT_PIPE] = ACTIONS(2798), + [anon_sym_e_GT_PIPE] = ACTIONS(2798), + [anon_sym_o_GT_PIPE] = ACTIONS(2798), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2798), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2798), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2798), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2798), + [anon_sym_RPAREN] = ACTIONS(2798), + [anon_sym_GT2] = ACTIONS(2853), + [anon_sym_DASH2] = ACTIONS(2855), + [anon_sym_STAR2] = ACTIONS(2857), + [anon_sym_and2] = ACTIONS(2798), + [anon_sym_xor2] = ACTIONS(2798), + [anon_sym_or2] = ACTIONS(2798), + [anon_sym_not_DASHin2] = ACTIONS(2872), + [anon_sym_has2] = ACTIONS(2872), + [anon_sym_not_DASHhas2] = ACTIONS(2872), + [anon_sym_starts_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2872), + [anon_sym_ends_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2872), + [anon_sym_EQ_EQ2] = ACTIONS(2859), + [anon_sym_BANG_EQ2] = ACTIONS(2859), + [anon_sym_LT2] = ACTIONS(2853), + [anon_sym_LT_EQ2] = ACTIONS(2859), + [anon_sym_GT_EQ2] = ACTIONS(2859), + [anon_sym_EQ_TILDE2] = ACTIONS(2879), + [anon_sym_BANG_TILDE2] = ACTIONS(2879), + [anon_sym_like2] = ACTIONS(2879), + [anon_sym_not_DASHlike2] = ACTIONS(2879), + [anon_sym_STAR_STAR2] = ACTIONS(2861), + [anon_sym_PLUS_PLUS2] = ACTIONS(2861), + [anon_sym_SLASH2] = ACTIONS(2857), + [anon_sym_mod2] = ACTIONS(2863), + [anon_sym_SLASH_SLASH2] = ACTIONS(2863), + [anon_sym_PLUS2] = ACTIONS(2865), + [anon_sym_bit_DASHshl2] = ACTIONS(2867), + [anon_sym_bit_DASHshr2] = ACTIONS(2867), + [anon_sym_bit_DASHand2] = ACTIONS(2881), + [anon_sym_bit_DASHxor2] = ACTIONS(2883), + [anon_sym_bit_DASHor2] = ACTIONS(2885), + [anon_sym_err_GT] = ACTIONS(2800), + [anon_sym_out_GT] = ACTIONS(2800), + [anon_sym_e_GT] = ACTIONS(2800), + [anon_sym_o_GT] = ACTIONS(2800), + [anon_sym_err_PLUSout_GT] = ACTIONS(2800), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2800), + [anon_sym_o_PLUSe_GT] = ACTIONS(2800), + [anon_sym_e_PLUSo_GT] = ACTIONS(2800), + [anon_sym_err_GT_GT] = ACTIONS(2798), + [anon_sym_out_GT_GT] = ACTIONS(2798), + [anon_sym_e_GT_GT] = ACTIONS(2798), + [anon_sym_o_GT_GT] = ACTIONS(2798), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2798), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2798), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2798), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2798), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1244)] = { - [aux_sym__repeat_newline] = STATE(527), + [sym__expression] = STATE(5045), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), + [sym__expr_binary_expression] = STATE(2246), + [sym_expr_parenthesized] = STATE(724), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1886), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), [sym_comment] = STATE(1244), - [anon_sym_in] = ACTIONS(2927), - [sym__newline] = ACTIONS(2762), - [anon_sym_SEMI] = ACTIONS(2762), - [anon_sym_PIPE] = ACTIONS(2762), - [anon_sym_err_GT_PIPE] = ACTIONS(2762), - [anon_sym_out_GT_PIPE] = ACTIONS(2762), - [anon_sym_e_GT_PIPE] = ACTIONS(2762), - [anon_sym_o_GT_PIPE] = ACTIONS(2762), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2762), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2762), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2762), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2762), - [anon_sym_RPAREN] = ACTIONS(2762), - [anon_sym_GT2] = ACTIONS(2911), - [anon_sym_DASH2] = ACTIONS(2913), - [anon_sym_STAR2] = ACTIONS(2915), - [anon_sym_and2] = ACTIONS(2762), - [anon_sym_xor2] = ACTIONS(2762), - [anon_sym_or2] = ACTIONS(2762), - [anon_sym_not_DASHin2] = ACTIONS(2927), - [anon_sym_has2] = ACTIONS(2927), - [anon_sym_not_DASHhas2] = ACTIONS(2927), - [anon_sym_starts_DASHwith2] = ACTIONS(2927), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2927), - [anon_sym_ends_DASHwith2] = ACTIONS(2927), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2927), - [anon_sym_EQ_EQ2] = ACTIONS(2917), - [anon_sym_BANG_EQ2] = ACTIONS(2917), - [anon_sym_LT2] = ACTIONS(2911), - [anon_sym_LT_EQ2] = ACTIONS(2917), - [anon_sym_GT_EQ2] = ACTIONS(2917), - [anon_sym_EQ_TILDE2] = ACTIONS(2929), - [anon_sym_BANG_TILDE2] = ACTIONS(2929), - [anon_sym_like2] = ACTIONS(2929), - [anon_sym_not_DASHlike2] = ACTIONS(2929), - [anon_sym_STAR_STAR2] = ACTIONS(2919), - [anon_sym_PLUS_PLUS2] = ACTIONS(2919), - [anon_sym_SLASH2] = ACTIONS(2915), - [anon_sym_mod2] = ACTIONS(2921), - [anon_sym_SLASH_SLASH2] = ACTIONS(2921), - [anon_sym_PLUS2] = ACTIONS(2923), - [anon_sym_bit_DASHshl2] = ACTIONS(2925), - [anon_sym_bit_DASHshr2] = ACTIONS(2925), - [anon_sym_bit_DASHand2] = ACTIONS(2762), - [anon_sym_bit_DASHxor2] = ACTIONS(2762), - [anon_sym_bit_DASHor2] = ACTIONS(2762), - [anon_sym_err_GT] = ACTIONS(2764), - [anon_sym_out_GT] = ACTIONS(2764), - [anon_sym_e_GT] = ACTIONS(2764), - [anon_sym_o_GT] = ACTIONS(2764), - [anon_sym_err_PLUSout_GT] = ACTIONS(2764), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2764), - [anon_sym_o_PLUSe_GT] = ACTIONS(2764), - [anon_sym_e_PLUSo_GT] = ACTIONS(2764), - [anon_sym_err_GT_GT] = ACTIONS(2762), - [anon_sym_out_GT_GT] = ACTIONS(2762), - [anon_sym_e_GT_GT] = ACTIONS(2762), - [anon_sym_o_GT_GT] = ACTIONS(2762), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2762), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2762), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2762), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2762), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token2] = ACTIONS(2822), + [anon_sym_true] = ACTIONS(2596), + [anon_sym_false] = ACTIONS(2596), + [anon_sym_null] = ACTIONS(2598), + [aux_sym_cmd_identifier_token3] = ACTIONS(2600), + [aux_sym_cmd_identifier_token4] = ACTIONS(2600), + [aux_sym_cmd_identifier_token5] = ACTIONS(2600), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(998), + [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(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2006), + [aux_sym__val_number_decimal_token3] = ACTIONS(2604), + [aux_sym__val_number_decimal_token4] = ACTIONS(2604), + [aux_sym__val_number_token1] = ACTIONS(2600), + [aux_sym__val_number_token2] = ACTIONS(2600), + [aux_sym__val_number_token3] = ACTIONS(2600), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2606), + [anon_sym_DQUOTE] = 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(1245)] = { - [aux_sym__repeat_newline] = STATE(527), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1245), - [anon_sym_in] = ACTIONS(2927), - [sym__newline] = ACTIONS(2762), - [anon_sym_SEMI] = ACTIONS(2762), - [anon_sym_PIPE] = ACTIONS(2762), - [anon_sym_err_GT_PIPE] = ACTIONS(2762), - [anon_sym_out_GT_PIPE] = ACTIONS(2762), - [anon_sym_e_GT_PIPE] = ACTIONS(2762), - [anon_sym_o_GT_PIPE] = ACTIONS(2762), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2762), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2762), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2762), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2762), - [anon_sym_RPAREN] = ACTIONS(2762), - [anon_sym_GT2] = ACTIONS(2911), - [anon_sym_DASH2] = ACTIONS(2913), - [anon_sym_STAR2] = ACTIONS(2915), - [anon_sym_and2] = ACTIONS(2762), - [anon_sym_xor2] = ACTIONS(2762), - [anon_sym_or2] = ACTIONS(2762), - [anon_sym_not_DASHin2] = ACTIONS(2927), - [anon_sym_has2] = ACTIONS(2927), - [anon_sym_not_DASHhas2] = ACTIONS(2927), - [anon_sym_starts_DASHwith2] = ACTIONS(2927), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2927), - [anon_sym_ends_DASHwith2] = ACTIONS(2927), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2927), - [anon_sym_EQ_EQ2] = ACTIONS(2917), - [anon_sym_BANG_EQ2] = ACTIONS(2917), - [anon_sym_LT2] = ACTIONS(2911), - [anon_sym_LT_EQ2] = ACTIONS(2917), - [anon_sym_GT_EQ2] = ACTIONS(2917), - [anon_sym_EQ_TILDE2] = ACTIONS(2929), - [anon_sym_BANG_TILDE2] = ACTIONS(2929), - [anon_sym_like2] = ACTIONS(2929), - [anon_sym_not_DASHlike2] = ACTIONS(2929), - [anon_sym_STAR_STAR2] = ACTIONS(2919), - [anon_sym_PLUS_PLUS2] = ACTIONS(2919), - [anon_sym_SLASH2] = ACTIONS(2915), - [anon_sym_mod2] = ACTIONS(2921), - [anon_sym_SLASH_SLASH2] = ACTIONS(2921), - [anon_sym_PLUS2] = ACTIONS(2923), - [anon_sym_bit_DASHshl2] = ACTIONS(2925), - [anon_sym_bit_DASHshr2] = ACTIONS(2925), - [anon_sym_bit_DASHand2] = ACTIONS(2931), - [anon_sym_bit_DASHxor2] = ACTIONS(2762), - [anon_sym_bit_DASHor2] = ACTIONS(2762), - [anon_sym_err_GT] = ACTIONS(2764), - [anon_sym_out_GT] = ACTIONS(2764), - [anon_sym_e_GT] = ACTIONS(2764), - [anon_sym_o_GT] = ACTIONS(2764), - [anon_sym_err_PLUSout_GT] = ACTIONS(2764), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2764), - [anon_sym_o_PLUSe_GT] = ACTIONS(2764), - [anon_sym_e_PLUSo_GT] = ACTIONS(2764), - [anon_sym_err_GT_GT] = ACTIONS(2762), - [anon_sym_out_GT_GT] = ACTIONS(2762), - [anon_sym_e_GT_GT] = ACTIONS(2762), - [anon_sym_o_GT_GT] = ACTIONS(2762), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2762), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2762), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2762), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2762), + [anon_sym_in] = ACTIONS(2818), + [sym__newline] = ACTIONS(2818), + [anon_sym_SEMI] = ACTIONS(2818), + [anon_sym_PIPE] = ACTIONS(2818), + [anon_sym_err_GT_PIPE] = ACTIONS(2818), + [anon_sym_out_GT_PIPE] = ACTIONS(2818), + [anon_sym_e_GT_PIPE] = ACTIONS(2818), + [anon_sym_o_GT_PIPE] = ACTIONS(2818), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2818), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2818), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2818), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2818), + [anon_sym_RPAREN] = ACTIONS(2818), + [anon_sym_GT2] = ACTIONS(2826), + [anon_sym_DASH2] = ACTIONS(2828), + [anon_sym_STAR2] = ACTIONS(2830), + [anon_sym_and2] = ACTIONS(2818), + [anon_sym_xor2] = ACTIONS(2818), + [anon_sym_or2] = ACTIONS(2818), + [anon_sym_not_DASHin2] = ACTIONS(2818), + [anon_sym_has2] = ACTIONS(2818), + [anon_sym_not_DASHhas2] = ACTIONS(2818), + [anon_sym_starts_DASHwith2] = ACTIONS(2818), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2818), + [anon_sym_ends_DASHwith2] = ACTIONS(2818), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2818), + [anon_sym_EQ_EQ2] = ACTIONS(2832), + [anon_sym_BANG_EQ2] = ACTIONS(2832), + [anon_sym_LT2] = ACTIONS(2826), + [anon_sym_LT_EQ2] = ACTIONS(2832), + [anon_sym_GT_EQ2] = ACTIONS(2832), + [anon_sym_EQ_TILDE2] = ACTIONS(2818), + [anon_sym_BANG_TILDE2] = ACTIONS(2818), + [anon_sym_like2] = ACTIONS(2818), + [anon_sym_not_DASHlike2] = ACTIONS(2818), + [anon_sym_STAR_STAR2] = ACTIONS(2836), + [anon_sym_PLUS_PLUS2] = ACTIONS(2836), + [anon_sym_SLASH2] = ACTIONS(2830), + [anon_sym_mod2] = ACTIONS(2838), + [anon_sym_SLASH_SLASH2] = ACTIONS(2838), + [anon_sym_PLUS2] = ACTIONS(2840), + [anon_sym_bit_DASHshl2] = ACTIONS(2842), + [anon_sym_bit_DASHshr2] = ACTIONS(2842), + [anon_sym_bit_DASHand2] = ACTIONS(2818), + [anon_sym_bit_DASHxor2] = ACTIONS(2818), + [anon_sym_bit_DASHor2] = ACTIONS(2818), + [anon_sym_err_GT] = ACTIONS(2820), + [anon_sym_out_GT] = ACTIONS(2820), + [anon_sym_e_GT] = ACTIONS(2820), + [anon_sym_o_GT] = ACTIONS(2820), + [anon_sym_err_PLUSout_GT] = ACTIONS(2820), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2820), + [anon_sym_o_PLUSe_GT] = ACTIONS(2820), + [anon_sym_e_PLUSo_GT] = ACTIONS(2820), + [anon_sym_err_GT_GT] = ACTIONS(2818), + [anon_sym_out_GT_GT] = ACTIONS(2818), + [anon_sym_e_GT_GT] = ACTIONS(2818), + [anon_sym_o_GT_GT] = ACTIONS(2818), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2818), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2818), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2818), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2818), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1246)] = { - [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1246), - [anon_sym_in] = ACTIONS(2927), - [sym__newline] = ACTIONS(2762), - [anon_sym_SEMI] = ACTIONS(2762), - [anon_sym_PIPE] = ACTIONS(2762), - [anon_sym_err_GT_PIPE] = ACTIONS(2762), - [anon_sym_out_GT_PIPE] = ACTIONS(2762), - [anon_sym_e_GT_PIPE] = ACTIONS(2762), - [anon_sym_o_GT_PIPE] = ACTIONS(2762), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2762), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2762), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2762), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2762), - [anon_sym_RPAREN] = ACTIONS(2762), - [anon_sym_GT2] = ACTIONS(2911), - [anon_sym_DASH2] = ACTIONS(2913), - [anon_sym_STAR2] = ACTIONS(2915), - [anon_sym_and2] = ACTIONS(2762), - [anon_sym_xor2] = ACTIONS(2762), - [anon_sym_or2] = ACTIONS(2762), - [anon_sym_not_DASHin2] = ACTIONS(2927), - [anon_sym_has2] = ACTIONS(2927), - [anon_sym_not_DASHhas2] = ACTIONS(2927), - [anon_sym_starts_DASHwith2] = ACTIONS(2927), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2927), - [anon_sym_ends_DASHwith2] = ACTIONS(2927), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2927), - [anon_sym_EQ_EQ2] = ACTIONS(2917), - [anon_sym_BANG_EQ2] = ACTIONS(2917), - [anon_sym_LT2] = ACTIONS(2911), - [anon_sym_LT_EQ2] = ACTIONS(2917), - [anon_sym_GT_EQ2] = ACTIONS(2917), - [anon_sym_EQ_TILDE2] = ACTIONS(2929), - [anon_sym_BANG_TILDE2] = ACTIONS(2929), - [anon_sym_like2] = ACTIONS(2929), - [anon_sym_not_DASHlike2] = ACTIONS(2929), - [anon_sym_STAR_STAR2] = ACTIONS(2919), - [anon_sym_PLUS_PLUS2] = ACTIONS(2919), - [anon_sym_SLASH2] = ACTIONS(2915), - [anon_sym_mod2] = ACTIONS(2921), - [anon_sym_SLASH_SLASH2] = ACTIONS(2921), - [anon_sym_PLUS2] = ACTIONS(2923), - [anon_sym_bit_DASHshl2] = ACTIONS(2925), - [anon_sym_bit_DASHshr2] = ACTIONS(2925), - [anon_sym_bit_DASHand2] = ACTIONS(2931), - [anon_sym_bit_DASHxor2] = ACTIONS(2933), - [anon_sym_bit_DASHor2] = ACTIONS(2762), - [anon_sym_err_GT] = ACTIONS(2764), - [anon_sym_out_GT] = ACTIONS(2764), - [anon_sym_e_GT] = ACTIONS(2764), - [anon_sym_o_GT] = ACTIONS(2764), - [anon_sym_err_PLUSout_GT] = ACTIONS(2764), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2764), - [anon_sym_o_PLUSe_GT] = ACTIONS(2764), - [anon_sym_e_PLUSo_GT] = ACTIONS(2764), - [anon_sym_err_GT_GT] = ACTIONS(2762), - [anon_sym_out_GT_GT] = ACTIONS(2762), - [anon_sym_e_GT_GT] = ACTIONS(2762), - [anon_sym_o_GT_GT] = ACTIONS(2762), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2762), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2762), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2762), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2762), + [anon_sym_in] = ACTIONS(2364), + [sym__newline] = ACTIONS(2364), + [anon_sym_SEMI] = ACTIONS(2364), + [anon_sym_PIPE] = ACTIONS(2364), + [anon_sym_err_GT_PIPE] = ACTIONS(2364), + [anon_sym_out_GT_PIPE] = ACTIONS(2364), + [anon_sym_e_GT_PIPE] = ACTIONS(2364), + [anon_sym_o_GT_PIPE] = ACTIONS(2364), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2364), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2364), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2364), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2364), + [anon_sym_RPAREN] = ACTIONS(2364), + [anon_sym_GT2] = ACTIONS(2371), + [anon_sym_DASH2] = ACTIONS(2364), + [anon_sym_LBRACE] = ACTIONS(2364), + [anon_sym_STAR2] = ACTIONS(2371), + [anon_sym_and2] = ACTIONS(2364), + [anon_sym_xor2] = ACTIONS(2364), + [anon_sym_or2] = ACTIONS(2364), + [anon_sym_not_DASHin2] = ACTIONS(2364), + [anon_sym_has2] = ACTIONS(2364), + [anon_sym_not_DASHhas2] = ACTIONS(2364), + [anon_sym_starts_DASHwith2] = ACTIONS(2364), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2364), + [anon_sym_ends_DASHwith2] = ACTIONS(2364), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2364), + [anon_sym_EQ_EQ2] = ACTIONS(2364), + [anon_sym_BANG_EQ2] = ACTIONS(2364), + [anon_sym_LT2] = ACTIONS(2371), + [anon_sym_LT_EQ2] = ACTIONS(2364), + [anon_sym_GT_EQ2] = ACTIONS(2364), + [anon_sym_EQ_TILDE2] = ACTIONS(2364), + [anon_sym_BANG_TILDE2] = ACTIONS(2364), + [anon_sym_like2] = ACTIONS(2364), + [anon_sym_not_DASHlike2] = ACTIONS(2364), + [anon_sym_STAR_STAR2] = ACTIONS(2364), + [anon_sym_PLUS_PLUS2] = ACTIONS(2364), + [anon_sym_SLASH2] = ACTIONS(2371), + [anon_sym_mod2] = ACTIONS(2364), + [anon_sym_SLASH_SLASH2] = ACTIONS(2364), + [anon_sym_PLUS2] = ACTIONS(2371), + [anon_sym_bit_DASHshl2] = ACTIONS(2364), + [anon_sym_bit_DASHshr2] = ACTIONS(2364), + [anon_sym_bit_DASHand2] = ACTIONS(2364), + [anon_sym_bit_DASHxor2] = ACTIONS(2364), + [anon_sym_bit_DASHor2] = ACTIONS(2364), + [anon_sym_err_GT] = ACTIONS(2371), + [anon_sym_out_GT] = ACTIONS(2371), + [anon_sym_e_GT] = ACTIONS(2371), + [anon_sym_o_GT] = ACTIONS(2371), + [anon_sym_err_PLUSout_GT] = ACTIONS(2371), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2371), + [anon_sym_o_PLUSe_GT] = ACTIONS(2371), + [anon_sym_e_PLUSo_GT] = ACTIONS(2371), + [anon_sym_err_GT_GT] = ACTIONS(2364), + [anon_sym_out_GT_GT] = ACTIONS(2364), + [anon_sym_e_GT_GT] = ACTIONS(2364), + [anon_sym_o_GT_GT] = ACTIONS(2364), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2364), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2364), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2364), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2364), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1247)] = { + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1247), - [ts_builtin_sym_end] = ACTIONS(2142), - [anon_sym_in] = ACTIONS(2142), - [sym__newline] = ACTIONS(2142), - [anon_sym_SEMI] = ACTIONS(2142), - [anon_sym_PIPE] = ACTIONS(2142), - [anon_sym_err_GT_PIPE] = ACTIONS(2142), - [anon_sym_out_GT_PIPE] = ACTIONS(2142), - [anon_sym_e_GT_PIPE] = ACTIONS(2142), - [anon_sym_o_GT_PIPE] = ACTIONS(2142), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2142), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2142), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2142), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2142), - [anon_sym_GT2] = ACTIONS(2144), - [anon_sym_DASH2] = ACTIONS(2142), - [anon_sym_STAR2] = ACTIONS(2144), - [anon_sym_and2] = ACTIONS(2142), - [anon_sym_xor2] = ACTIONS(2142), - [anon_sym_or2] = ACTIONS(2142), - [anon_sym_not_DASHin2] = ACTIONS(2142), - [anon_sym_has2] = ACTIONS(2142), - [anon_sym_not_DASHhas2] = ACTIONS(2142), - [anon_sym_starts_DASHwith2] = ACTIONS(2142), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2142), - [anon_sym_ends_DASHwith2] = ACTIONS(2142), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2142), - [anon_sym_EQ_EQ2] = ACTIONS(2142), - [anon_sym_BANG_EQ2] = ACTIONS(2142), - [anon_sym_LT2] = ACTIONS(2144), - [anon_sym_LT_EQ2] = ACTIONS(2142), - [anon_sym_GT_EQ2] = ACTIONS(2142), - [anon_sym_EQ_TILDE2] = ACTIONS(2142), - [anon_sym_BANG_TILDE2] = ACTIONS(2142), - [anon_sym_like2] = ACTIONS(2142), - [anon_sym_not_DASHlike2] = ACTIONS(2142), - [anon_sym_LPAREN2] = ACTIONS(2142), - [anon_sym_STAR_STAR2] = ACTIONS(2142), - [anon_sym_PLUS_PLUS2] = ACTIONS(2142), - [anon_sym_SLASH2] = ACTIONS(2144), - [anon_sym_mod2] = ACTIONS(2142), - [anon_sym_SLASH_SLASH2] = ACTIONS(2142), - [anon_sym_PLUS2] = ACTIONS(2144), - [anon_sym_bit_DASHshl2] = ACTIONS(2142), - [anon_sym_bit_DASHshr2] = ACTIONS(2142), - [anon_sym_bit_DASHand2] = ACTIONS(2142), - [anon_sym_bit_DASHxor2] = ACTIONS(2142), - [anon_sym_bit_DASHor2] = ACTIONS(2142), - [anon_sym_err_GT] = ACTIONS(2144), - [anon_sym_out_GT] = ACTIONS(2144), - [anon_sym_e_GT] = ACTIONS(2144), - [anon_sym_o_GT] = ACTIONS(2144), - [anon_sym_err_PLUSout_GT] = ACTIONS(2144), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2144), - [anon_sym_o_PLUSe_GT] = ACTIONS(2144), - [anon_sym_e_PLUSo_GT] = ACTIONS(2144), - [anon_sym_err_GT_GT] = ACTIONS(2142), - [anon_sym_out_GT_GT] = ACTIONS(2142), - [anon_sym_e_GT_GT] = ACTIONS(2142), - [anon_sym_o_GT_GT] = ACTIONS(2142), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2142), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2142), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2142), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2142), + [anon_sym_in] = ACTIONS(2818), + [sym__newline] = ACTIONS(2818), + [anon_sym_SEMI] = ACTIONS(2818), + [anon_sym_PIPE] = ACTIONS(2818), + [anon_sym_err_GT_PIPE] = ACTIONS(2818), + [anon_sym_out_GT_PIPE] = ACTIONS(2818), + [anon_sym_e_GT_PIPE] = ACTIONS(2818), + [anon_sym_o_GT_PIPE] = ACTIONS(2818), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2818), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2818), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2818), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2818), + [anon_sym_RPAREN] = ACTIONS(2818), + [anon_sym_GT2] = ACTIONS(2820), + [anon_sym_DASH2] = ACTIONS(2828), + [anon_sym_STAR2] = ACTIONS(2830), + [anon_sym_and2] = ACTIONS(2818), + [anon_sym_xor2] = ACTIONS(2818), + [anon_sym_or2] = ACTIONS(2818), + [anon_sym_not_DASHin2] = ACTIONS(2818), + [anon_sym_has2] = ACTIONS(2818), + [anon_sym_not_DASHhas2] = ACTIONS(2818), + [anon_sym_starts_DASHwith2] = ACTIONS(2818), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2818), + [anon_sym_ends_DASHwith2] = ACTIONS(2818), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2818), + [anon_sym_EQ_EQ2] = ACTIONS(2818), + [anon_sym_BANG_EQ2] = ACTIONS(2818), + [anon_sym_LT2] = ACTIONS(2820), + [anon_sym_LT_EQ2] = ACTIONS(2818), + [anon_sym_GT_EQ2] = ACTIONS(2818), + [anon_sym_EQ_TILDE2] = ACTIONS(2818), + [anon_sym_BANG_TILDE2] = ACTIONS(2818), + [anon_sym_like2] = ACTIONS(2818), + [anon_sym_not_DASHlike2] = ACTIONS(2818), + [anon_sym_STAR_STAR2] = ACTIONS(2836), + [anon_sym_PLUS_PLUS2] = ACTIONS(2836), + [anon_sym_SLASH2] = ACTIONS(2830), + [anon_sym_mod2] = ACTIONS(2838), + [anon_sym_SLASH_SLASH2] = ACTIONS(2838), + [anon_sym_PLUS2] = ACTIONS(2840), + [anon_sym_bit_DASHshl2] = ACTIONS(2842), + [anon_sym_bit_DASHshr2] = ACTIONS(2842), + [anon_sym_bit_DASHand2] = ACTIONS(2818), + [anon_sym_bit_DASHxor2] = ACTIONS(2818), + [anon_sym_bit_DASHor2] = ACTIONS(2818), + [anon_sym_err_GT] = ACTIONS(2820), + [anon_sym_out_GT] = ACTIONS(2820), + [anon_sym_e_GT] = ACTIONS(2820), + [anon_sym_o_GT] = ACTIONS(2820), + [anon_sym_err_PLUSout_GT] = ACTIONS(2820), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2820), + [anon_sym_o_PLUSe_GT] = ACTIONS(2820), + [anon_sym_e_PLUSo_GT] = ACTIONS(2820), + [anon_sym_err_GT_GT] = ACTIONS(2818), + [anon_sym_out_GT_GT] = ACTIONS(2818), + [anon_sym_e_GT_GT] = ACTIONS(2818), + [anon_sym_o_GT_GT] = ACTIONS(2818), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2818), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2818), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2818), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2818), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1248)] = { - [aux_sym__repeat_newline] = STATE(1252), [sym_comment] = STATE(1248), - [anon_sym_in] = ACTIONS(2754), - [sym__newline] = ACTIONS(2860), - [anon_sym_SEMI] = ACTIONS(2754), - [anon_sym_PIPE] = ACTIONS(2754), - [anon_sym_err_GT_PIPE] = ACTIONS(2754), - [anon_sym_out_GT_PIPE] = ACTIONS(2754), - [anon_sym_e_GT_PIPE] = ACTIONS(2754), - [anon_sym_o_GT_PIPE] = ACTIONS(2754), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2754), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2754), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2754), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2754), - [anon_sym_RPAREN] = ACTIONS(2754), - [anon_sym_GT2] = ACTIONS(2756), - [anon_sym_DASH2] = ACTIONS(2809), - [anon_sym_STAR2] = ACTIONS(2811), - [anon_sym_and2] = ACTIONS(2754), - [anon_sym_xor2] = ACTIONS(2754), - [anon_sym_or2] = ACTIONS(2754), - [anon_sym_not_DASHin2] = ACTIONS(2754), - [anon_sym_has2] = ACTIONS(2754), - [anon_sym_not_DASHhas2] = ACTIONS(2754), - [anon_sym_starts_DASHwith2] = ACTIONS(2754), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2754), - [anon_sym_ends_DASHwith2] = ACTIONS(2754), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2754), - [anon_sym_EQ_EQ2] = ACTIONS(2754), - [anon_sym_BANG_EQ2] = ACTIONS(2754), - [anon_sym_LT2] = ACTIONS(2756), - [anon_sym_LT_EQ2] = ACTIONS(2754), - [anon_sym_GT_EQ2] = ACTIONS(2754), - [anon_sym_EQ_TILDE2] = ACTIONS(2754), - [anon_sym_BANG_TILDE2] = ACTIONS(2754), - [anon_sym_like2] = ACTIONS(2754), - [anon_sym_not_DASHlike2] = ACTIONS(2754), - [anon_sym_STAR_STAR2] = ACTIONS(2815), - [anon_sym_PLUS_PLUS2] = ACTIONS(2815), - [anon_sym_SLASH2] = ACTIONS(2811), - [anon_sym_mod2] = ACTIONS(2817), - [anon_sym_SLASH_SLASH2] = ACTIONS(2817), - [anon_sym_PLUS2] = ACTIONS(2819), - [anon_sym_bit_DASHshl2] = ACTIONS(2754), - [anon_sym_bit_DASHshr2] = ACTIONS(2754), - [anon_sym_bit_DASHand2] = ACTIONS(2754), - [anon_sym_bit_DASHxor2] = ACTIONS(2754), - [anon_sym_bit_DASHor2] = ACTIONS(2754), - [anon_sym_err_GT] = ACTIONS(2756), - [anon_sym_out_GT] = ACTIONS(2756), - [anon_sym_e_GT] = ACTIONS(2756), - [anon_sym_o_GT] = ACTIONS(2756), - [anon_sym_err_PLUSout_GT] = ACTIONS(2756), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2756), - [anon_sym_o_PLUSe_GT] = ACTIONS(2756), - [anon_sym_e_PLUSo_GT] = ACTIONS(2756), - [anon_sym_err_GT_GT] = ACTIONS(2754), - [anon_sym_out_GT_GT] = ACTIONS(2754), - [anon_sym_e_GT_GT] = ACTIONS(2754), - [anon_sym_o_GT_GT] = ACTIONS(2754), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2754), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2754), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2754), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2754), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token2] = ACTIONS(2754), + [anon_sym_in] = ACTIONS(2362), + [sym__newline] = ACTIONS(2360), + [anon_sym_SEMI] = ACTIONS(2360), + [anon_sym_PIPE] = ACTIONS(2360), + [anon_sym_err_GT_PIPE] = ACTIONS(2360), + [anon_sym_out_GT_PIPE] = ACTIONS(2360), + [anon_sym_e_GT_PIPE] = ACTIONS(2360), + [anon_sym_o_GT_PIPE] = ACTIONS(2360), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2360), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2360), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2360), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2360), + [anon_sym_GT2] = ACTIONS(2362), + [anon_sym_DASH2] = ACTIONS(2362), + [anon_sym_RBRACE] = ACTIONS(2360), + [anon_sym_STAR2] = ACTIONS(2362), + [anon_sym_and2] = ACTIONS(2362), + [anon_sym_xor2] = ACTIONS(2362), + [anon_sym_or2] = ACTIONS(2362), + [anon_sym_not_DASHin2] = ACTIONS(2362), + [anon_sym_has2] = ACTIONS(2362), + [anon_sym_not_DASHhas2] = ACTIONS(2362), + [anon_sym_starts_DASHwith2] = ACTIONS(2362), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2362), + [anon_sym_ends_DASHwith2] = ACTIONS(2362), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2362), + [anon_sym_EQ_EQ2] = ACTIONS(2360), + [anon_sym_BANG_EQ2] = ACTIONS(2360), + [anon_sym_LT2] = ACTIONS(2362), + [anon_sym_LT_EQ2] = ACTIONS(2360), + [anon_sym_GT_EQ2] = ACTIONS(2360), + [anon_sym_EQ_TILDE2] = ACTIONS(2360), + [anon_sym_BANG_TILDE2] = ACTIONS(2362), + [anon_sym_like2] = ACTIONS(2362), + [anon_sym_not_DASHlike2] = ACTIONS(2362), + [anon_sym_STAR_STAR2] = ACTIONS(2362), + [anon_sym_PLUS_PLUS2] = ACTIONS(2362), + [anon_sym_SLASH2] = ACTIONS(2362), + [anon_sym_mod2] = ACTIONS(2362), + [anon_sym_SLASH_SLASH2] = ACTIONS(2362), + [anon_sym_PLUS2] = ACTIONS(2362), + [anon_sym_bit_DASHshl2] = ACTIONS(2362), + [anon_sym_bit_DASHshr2] = ACTIONS(2362), + [anon_sym_bit_DASHand2] = ACTIONS(2362), + [anon_sym_bit_DASHxor2] = ACTIONS(2362), + [anon_sym_bit_DASHor2] = ACTIONS(2362), + [anon_sym_err_GT] = ACTIONS(2362), + [anon_sym_out_GT] = ACTIONS(2362), + [anon_sym_e_GT] = ACTIONS(2362), + [anon_sym_o_GT] = ACTIONS(2362), + [anon_sym_err_PLUSout_GT] = ACTIONS(2362), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2362), + [anon_sym_o_PLUSe_GT] = ACTIONS(2362), + [anon_sym_e_PLUSo_GT] = ACTIONS(2362), + [anon_sym_err_GT_GT] = ACTIONS(2360), + [anon_sym_out_GT_GT] = ACTIONS(2360), + [anon_sym_e_GT_GT] = ACTIONS(2360), + [anon_sym_o_GT_GT] = ACTIONS(2360), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2360), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2360), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2360), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2360), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(1249)] = { - [aux_sym__repeat_newline] = STATE(1188), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1249), - [anon_sym_in] = ACTIONS(2720), - [sym__newline] = ACTIONS(2804), - [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(2809), - [anon_sym_STAR2] = ACTIONS(2811), - [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(2815), - [anon_sym_PLUS_PLUS2] = ACTIONS(2815), - [anon_sym_SLASH2] = ACTIONS(2811), - [anon_sym_mod2] = ACTIONS(2817), - [anon_sym_SLASH_SLASH2] = ACTIONS(2817), - [anon_sym_PLUS2] = ACTIONS(2819), - [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(2818), + [sym__newline] = ACTIONS(2818), + [anon_sym_SEMI] = ACTIONS(2818), + [anon_sym_PIPE] = ACTIONS(2818), + [anon_sym_err_GT_PIPE] = ACTIONS(2818), + [anon_sym_out_GT_PIPE] = ACTIONS(2818), + [anon_sym_e_GT_PIPE] = ACTIONS(2818), + [anon_sym_o_GT_PIPE] = ACTIONS(2818), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2818), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2818), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2818), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2818), + [anon_sym_RPAREN] = ACTIONS(2818), + [anon_sym_GT2] = ACTIONS(2820), + [anon_sym_DASH2] = ACTIONS(2818), + [anon_sym_STAR2] = ACTIONS(2830), + [anon_sym_and2] = ACTIONS(2818), + [anon_sym_xor2] = ACTIONS(2818), + [anon_sym_or2] = ACTIONS(2818), + [anon_sym_not_DASHin2] = ACTIONS(2818), + [anon_sym_has2] = ACTIONS(2818), + [anon_sym_not_DASHhas2] = ACTIONS(2818), + [anon_sym_starts_DASHwith2] = ACTIONS(2818), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2818), + [anon_sym_ends_DASHwith2] = ACTIONS(2818), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2818), + [anon_sym_EQ_EQ2] = ACTIONS(2818), + [anon_sym_BANG_EQ2] = ACTIONS(2818), + [anon_sym_LT2] = ACTIONS(2820), + [anon_sym_LT_EQ2] = ACTIONS(2818), + [anon_sym_GT_EQ2] = ACTIONS(2818), + [anon_sym_EQ_TILDE2] = ACTIONS(2818), + [anon_sym_BANG_TILDE2] = ACTIONS(2818), + [anon_sym_like2] = ACTIONS(2818), + [anon_sym_not_DASHlike2] = ACTIONS(2818), + [anon_sym_STAR_STAR2] = ACTIONS(2836), + [anon_sym_PLUS_PLUS2] = ACTIONS(2836), + [anon_sym_SLASH2] = ACTIONS(2830), + [anon_sym_mod2] = ACTIONS(2838), + [anon_sym_SLASH_SLASH2] = ACTIONS(2838), + [anon_sym_PLUS2] = ACTIONS(2820), + [anon_sym_bit_DASHshl2] = ACTIONS(2818), + [anon_sym_bit_DASHshr2] = ACTIONS(2818), + [anon_sym_bit_DASHand2] = ACTIONS(2818), + [anon_sym_bit_DASHxor2] = ACTIONS(2818), + [anon_sym_bit_DASHor2] = ACTIONS(2818), + [anon_sym_err_GT] = ACTIONS(2820), + [anon_sym_out_GT] = ACTIONS(2820), + [anon_sym_e_GT] = ACTIONS(2820), + [anon_sym_o_GT] = ACTIONS(2820), + [anon_sym_err_PLUSout_GT] = ACTIONS(2820), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2820), + [anon_sym_o_PLUSe_GT] = ACTIONS(2820), + [anon_sym_e_PLUSo_GT] = ACTIONS(2820), + [anon_sym_err_GT_GT] = ACTIONS(2818), + [anon_sym_out_GT_GT] = ACTIONS(2818), + [anon_sym_e_GT_GT] = ACTIONS(2818), + [anon_sym_o_GT_GT] = ACTIONS(2818), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2818), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2818), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2818), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2818), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1250)] = { - [aux_sym__repeat_newline] = STATE(1257), + [aux_sym__repeat_newline] = STATE(1194), [sym_comment] = STATE(1250), - [anon_sym_in] = ACTIONS(2895), - [sym__newline] = ACTIONS(2860), - [anon_sym_SEMI] = ACTIONS(2754), - [anon_sym_PIPE] = ACTIONS(2754), - [anon_sym_err_GT_PIPE] = ACTIONS(2754), - [anon_sym_out_GT_PIPE] = ACTIONS(2754), - [anon_sym_e_GT_PIPE] = ACTIONS(2754), - [anon_sym_o_GT_PIPE] = ACTIONS(2754), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2754), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2754), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2754), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2754), - [anon_sym_RPAREN] = ACTIONS(2754), - [anon_sym_GT2] = ACTIONS(2807), - [anon_sym_DASH2] = ACTIONS(2809), - [anon_sym_STAR2] = ACTIONS(2811), - [anon_sym_and2] = ACTIONS(2754), - [anon_sym_xor2] = ACTIONS(2754), - [anon_sym_or2] = ACTIONS(2754), - [anon_sym_not_DASHin2] = ACTIONS(2895), - [anon_sym_has2] = ACTIONS(2895), - [anon_sym_not_DASHhas2] = ACTIONS(2895), - [anon_sym_starts_DASHwith2] = ACTIONS(2895), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2895), - [anon_sym_ends_DASHwith2] = ACTIONS(2895), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2895), - [anon_sym_EQ_EQ2] = ACTIONS(2813), - [anon_sym_BANG_EQ2] = ACTIONS(2813), - [anon_sym_LT2] = ACTIONS(2807), - [anon_sym_LT_EQ2] = ACTIONS(2813), - [anon_sym_GT_EQ2] = ACTIONS(2813), - [anon_sym_EQ_TILDE2] = ACTIONS(2897), - [anon_sym_BANG_TILDE2] = ACTIONS(2897), - [anon_sym_like2] = ACTIONS(2897), - [anon_sym_not_DASHlike2] = ACTIONS(2897), - [anon_sym_STAR_STAR2] = ACTIONS(2815), - [anon_sym_PLUS_PLUS2] = ACTIONS(2815), - [anon_sym_SLASH2] = ACTIONS(2811), - [anon_sym_mod2] = ACTIONS(2817), - [anon_sym_SLASH_SLASH2] = ACTIONS(2817), - [anon_sym_PLUS2] = ACTIONS(2819), - [anon_sym_bit_DASHshl2] = ACTIONS(2821), - [anon_sym_bit_DASHshr2] = ACTIONS(2821), - [anon_sym_bit_DASHand2] = ACTIONS(2754), - [anon_sym_bit_DASHxor2] = ACTIONS(2754), - [anon_sym_bit_DASHor2] = ACTIONS(2754), - [anon_sym_err_GT] = ACTIONS(2756), - [anon_sym_out_GT] = ACTIONS(2756), - [anon_sym_e_GT] = ACTIONS(2756), - [anon_sym_o_GT] = ACTIONS(2756), - [anon_sym_err_PLUSout_GT] = ACTIONS(2756), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2756), - [anon_sym_o_PLUSe_GT] = ACTIONS(2756), - [anon_sym_e_PLUSo_GT] = ACTIONS(2756), - [anon_sym_err_GT_GT] = ACTIONS(2754), - [anon_sym_out_GT_GT] = ACTIONS(2754), - [anon_sym_e_GT_GT] = ACTIONS(2754), - [anon_sym_o_GT_GT] = ACTIONS(2754), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2754), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2754), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2754), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2754), + [anon_sym_in] = ACTIONS(2788), + [sym__newline] = ACTIONS(2874), + [anon_sym_SEMI] = ACTIONS(2788), + [anon_sym_PIPE] = ACTIONS(2788), + [anon_sym_err_GT_PIPE] = ACTIONS(2788), + [anon_sym_out_GT_PIPE] = ACTIONS(2788), + [anon_sym_e_GT_PIPE] = ACTIONS(2788), + [anon_sym_o_GT_PIPE] = ACTIONS(2788), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2788), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2788), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2788), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2788), + [anon_sym_RPAREN] = ACTIONS(2788), + [anon_sym_GT2] = ACTIONS(2790), + [anon_sym_DASH2] = ACTIONS(2855), + [anon_sym_STAR2] = ACTIONS(2857), + [anon_sym_and2] = ACTIONS(2788), + [anon_sym_xor2] = ACTIONS(2788), + [anon_sym_or2] = ACTIONS(2788), + [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(2788), + [anon_sym_BANG_EQ2] = ACTIONS(2788), + [anon_sym_LT2] = ACTIONS(2790), + [anon_sym_LT_EQ2] = ACTIONS(2788), + [anon_sym_GT_EQ2] = ACTIONS(2788), + [anon_sym_EQ_TILDE2] = ACTIONS(2788), + [anon_sym_BANG_TILDE2] = ACTIONS(2788), + [anon_sym_like2] = ACTIONS(2788), + [anon_sym_not_DASHlike2] = ACTIONS(2788), + [anon_sym_STAR_STAR2] = ACTIONS(2861), + [anon_sym_PLUS_PLUS2] = ACTIONS(2861), + [anon_sym_SLASH2] = ACTIONS(2857), + [anon_sym_mod2] = ACTIONS(2863), + [anon_sym_SLASH_SLASH2] = ACTIONS(2863), + [anon_sym_PLUS2] = ACTIONS(2865), + [anon_sym_bit_DASHshl2] = ACTIONS(2788), + [anon_sym_bit_DASHshr2] = ACTIONS(2788), + [anon_sym_bit_DASHand2] = ACTIONS(2788), + [anon_sym_bit_DASHxor2] = ACTIONS(2788), + [anon_sym_bit_DASHor2] = ACTIONS(2788), + [anon_sym_err_GT] = ACTIONS(2790), + [anon_sym_out_GT] = ACTIONS(2790), + [anon_sym_e_GT] = ACTIONS(2790), + [anon_sym_o_GT] = ACTIONS(2790), + [anon_sym_err_PLUSout_GT] = ACTIONS(2790), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2790), + [anon_sym_o_PLUSe_GT] = ACTIONS(2790), + [anon_sym_e_PLUSo_GT] = ACTIONS(2790), + [anon_sym_err_GT_GT] = ACTIONS(2788), + [anon_sym_out_GT_GT] = ACTIONS(2788), + [anon_sym_e_GT_GT] = ACTIONS(2788), + [anon_sym_o_GT_GT] = ACTIONS(2788), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2788), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2788), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2788), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2788), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1251)] = { - [aux_sym__repeat_newline] = STATE(1263), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1251), - [anon_sym_in] = ACTIONS(2895), - [sym__newline] = ACTIONS(2860), - [anon_sym_SEMI] = ACTIONS(2754), - [anon_sym_PIPE] = ACTIONS(2754), - [anon_sym_err_GT_PIPE] = ACTIONS(2754), - [anon_sym_out_GT_PIPE] = ACTIONS(2754), - [anon_sym_e_GT_PIPE] = ACTIONS(2754), - [anon_sym_o_GT_PIPE] = ACTIONS(2754), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2754), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2754), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2754), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2754), - [anon_sym_RPAREN] = ACTIONS(2754), - [anon_sym_GT2] = ACTIONS(2807), - [anon_sym_DASH2] = ACTIONS(2809), - [anon_sym_STAR2] = ACTIONS(2811), - [anon_sym_and2] = ACTIONS(2754), - [anon_sym_xor2] = ACTIONS(2754), - [anon_sym_or2] = ACTIONS(2754), - [anon_sym_not_DASHin2] = ACTIONS(2895), - [anon_sym_has2] = ACTIONS(2895), - [anon_sym_not_DASHhas2] = ACTIONS(2895), - [anon_sym_starts_DASHwith2] = ACTIONS(2895), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2895), - [anon_sym_ends_DASHwith2] = ACTIONS(2895), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2895), - [anon_sym_EQ_EQ2] = ACTIONS(2813), - [anon_sym_BANG_EQ2] = ACTIONS(2813), - [anon_sym_LT2] = ACTIONS(2807), - [anon_sym_LT_EQ2] = ACTIONS(2813), - [anon_sym_GT_EQ2] = ACTIONS(2813), - [anon_sym_EQ_TILDE2] = ACTIONS(2897), - [anon_sym_BANG_TILDE2] = ACTIONS(2897), - [anon_sym_like2] = ACTIONS(2897), - [anon_sym_not_DASHlike2] = ACTIONS(2897), - [anon_sym_STAR_STAR2] = ACTIONS(2815), - [anon_sym_PLUS_PLUS2] = ACTIONS(2815), - [anon_sym_SLASH2] = ACTIONS(2811), - [anon_sym_mod2] = ACTIONS(2817), - [anon_sym_SLASH_SLASH2] = ACTIONS(2817), - [anon_sym_PLUS2] = ACTIONS(2819), - [anon_sym_bit_DASHshl2] = ACTIONS(2821), - [anon_sym_bit_DASHshr2] = ACTIONS(2821), - [anon_sym_bit_DASHand2] = ACTIONS(2899), - [anon_sym_bit_DASHxor2] = ACTIONS(2754), - [anon_sym_bit_DASHor2] = ACTIONS(2754), - [anon_sym_err_GT] = ACTIONS(2756), - [anon_sym_out_GT] = ACTIONS(2756), - [anon_sym_e_GT] = ACTIONS(2756), - [anon_sym_o_GT] = ACTIONS(2756), - [anon_sym_err_PLUSout_GT] = ACTIONS(2756), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2756), - [anon_sym_o_PLUSe_GT] = ACTIONS(2756), - [anon_sym_e_PLUSo_GT] = ACTIONS(2756), - [anon_sym_err_GT_GT] = ACTIONS(2754), - [anon_sym_out_GT_GT] = ACTIONS(2754), - [anon_sym_e_GT_GT] = ACTIONS(2754), - [anon_sym_o_GT_GT] = ACTIONS(2754), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2754), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2754), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2754), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2754), + [anon_sym_in] = ACTIONS(2818), + [sym__newline] = ACTIONS(2818), + [anon_sym_SEMI] = ACTIONS(2818), + [anon_sym_PIPE] = ACTIONS(2818), + [anon_sym_err_GT_PIPE] = ACTIONS(2818), + [anon_sym_out_GT_PIPE] = ACTIONS(2818), + [anon_sym_e_GT_PIPE] = ACTIONS(2818), + [anon_sym_o_GT_PIPE] = ACTIONS(2818), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2818), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2818), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2818), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2818), + [anon_sym_RPAREN] = ACTIONS(2818), + [anon_sym_GT2] = ACTIONS(2820), + [anon_sym_DASH2] = ACTIONS(2818), + [anon_sym_STAR2] = ACTIONS(2820), + [anon_sym_and2] = ACTIONS(2818), + [anon_sym_xor2] = ACTIONS(2818), + [anon_sym_or2] = ACTIONS(2818), + [anon_sym_not_DASHin2] = ACTIONS(2818), + [anon_sym_has2] = ACTIONS(2818), + [anon_sym_not_DASHhas2] = ACTIONS(2818), + [anon_sym_starts_DASHwith2] = ACTIONS(2818), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2818), + [anon_sym_ends_DASHwith2] = ACTIONS(2818), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2818), + [anon_sym_EQ_EQ2] = ACTIONS(2818), + [anon_sym_BANG_EQ2] = ACTIONS(2818), + [anon_sym_LT2] = ACTIONS(2820), + [anon_sym_LT_EQ2] = ACTIONS(2818), + [anon_sym_GT_EQ2] = ACTIONS(2818), + [anon_sym_EQ_TILDE2] = ACTIONS(2818), + [anon_sym_BANG_TILDE2] = ACTIONS(2818), + [anon_sym_like2] = ACTIONS(2818), + [anon_sym_not_DASHlike2] = ACTIONS(2818), + [anon_sym_STAR_STAR2] = ACTIONS(2836), + [anon_sym_PLUS_PLUS2] = ACTIONS(2836), + [anon_sym_SLASH2] = ACTIONS(2820), + [anon_sym_mod2] = ACTIONS(2818), + [anon_sym_SLASH_SLASH2] = ACTIONS(2818), + [anon_sym_PLUS2] = ACTIONS(2820), + [anon_sym_bit_DASHshl2] = ACTIONS(2818), + [anon_sym_bit_DASHshr2] = ACTIONS(2818), + [anon_sym_bit_DASHand2] = ACTIONS(2818), + [anon_sym_bit_DASHxor2] = ACTIONS(2818), + [anon_sym_bit_DASHor2] = ACTIONS(2818), + [anon_sym_err_GT] = ACTIONS(2820), + [anon_sym_out_GT] = ACTIONS(2820), + [anon_sym_e_GT] = ACTIONS(2820), + [anon_sym_o_GT] = ACTIONS(2820), + [anon_sym_err_PLUSout_GT] = ACTIONS(2820), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2820), + [anon_sym_o_PLUSe_GT] = ACTIONS(2820), + [anon_sym_e_PLUSo_GT] = ACTIONS(2820), + [anon_sym_err_GT_GT] = ACTIONS(2818), + [anon_sym_out_GT_GT] = ACTIONS(2818), + [anon_sym_e_GT_GT] = ACTIONS(2818), + [anon_sym_o_GT_GT] = ACTIONS(2818), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2818), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2818), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2818), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2818), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1252)] = { - [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1252), - [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(2913), - [anon_sym_STAR2] = ACTIONS(2915), - [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(2919), - [anon_sym_PLUS_PLUS2] = ACTIONS(2919), - [anon_sym_SLASH2] = ACTIONS(2915), - [anon_sym_mod2] = ACTIONS(2921), - [anon_sym_SLASH_SLASH2] = ACTIONS(2921), - [anon_sym_PLUS2] = ACTIONS(2923), - [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(2754), + [anon_sym_in] = ACTIONS(2618), + [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_GT2] = ACTIONS(2618), + [anon_sym_DASH2] = ACTIONS(2618), + [anon_sym_RBRACE] = ACTIONS(2616), + [anon_sym_STAR2] = ACTIONS(2618), + [anon_sym_and2] = ACTIONS(2618), + [anon_sym_xor2] = ACTIONS(2618), + [anon_sym_or2] = ACTIONS(2618), + [anon_sym_not_DASHin2] = ACTIONS(2618), + [anon_sym_has2] = ACTIONS(2618), + [anon_sym_not_DASHhas2] = ACTIONS(2618), + [anon_sym_starts_DASHwith2] = ACTIONS(2618), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2618), + [anon_sym_ends_DASHwith2] = ACTIONS(2618), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2618), + [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(2618), + [anon_sym_like2] = ACTIONS(2618), + [anon_sym_not_DASHlike2] = ACTIONS(2618), + [anon_sym_STAR_STAR2] = ACTIONS(2618), + [anon_sym_PLUS_PLUS2] = ACTIONS(2618), + [anon_sym_SLASH2] = ACTIONS(2618), + [anon_sym_mod2] = ACTIONS(2618), + [anon_sym_SLASH_SLASH2] = ACTIONS(2618), + [anon_sym_PLUS2] = ACTIONS(2618), + [anon_sym_bit_DASHshl2] = ACTIONS(2618), + [anon_sym_bit_DASHshr2] = ACTIONS(2618), + [anon_sym_bit_DASHand2] = ACTIONS(2618), + [anon_sym_bit_DASHxor2] = ACTIONS(2618), + [anon_sym_bit_DASHor2] = ACTIONS(2618), + [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(103), }, [STATE(1253)] = { + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1253), - [anon_sym_export] = ACTIONS(2944), - [anon_sym_alias] = ACTIONS(2948), - [anon_sym_let] = ACTIONS(2948), - [anon_sym_mut] = ACTIONS(2948), - [anon_sym_const] = ACTIONS(2948), - [aux_sym_cmd_identifier_token1] = ACTIONS(2944), - [anon_sym_def] = ACTIONS(2948), - [anon_sym_use] = ACTIONS(2948), - [anon_sym_export_DASHenv] = ACTIONS(2948), - [anon_sym_extern] = ACTIONS(2948), - [anon_sym_module] = ACTIONS(2948), - [anon_sym_for] = ACTIONS(2948), - [anon_sym_loop] = ACTIONS(2948), - [anon_sym_while] = ACTIONS(2948), - [anon_sym_if] = ACTIONS(2948), - [anon_sym_else] = ACTIONS(2948), - [anon_sym_try] = ACTIONS(2948), - [anon_sym_catch] = ACTIONS(2948), - [anon_sym_match] = ACTIONS(2948), - [anon_sym_in] = ACTIONS(2944), - [anon_sym_true] = ACTIONS(2948), - [anon_sym_false] = ACTIONS(2948), - [anon_sym_null] = ACTIONS(2948), - [aux_sym_cmd_identifier_token3] = ACTIONS(2948), - [aux_sym_cmd_identifier_token4] = ACTIONS(2948), - [aux_sym_cmd_identifier_token5] = ACTIONS(2948), - [sym__newline] = ACTIONS(2948), - [anon_sym_SEMI] = ACTIONS(2952), - [anon_sym_PIPE] = ACTIONS(2146), - [anon_sym_AT] = ACTIONS(2952), - [anon_sym_LBRACK] = ACTIONS(2952), - [anon_sym_LPAREN] = ACTIONS(2948), - [anon_sym_DOLLAR] = ACTIONS(2944), - [anon_sym_DASH2] = ACTIONS(2944), - [anon_sym_LBRACE] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(2952), - [anon_sym_DOT_DOT] = ACTIONS(2955), - [anon_sym_where] = ACTIONS(2952), - [aux_sym_expr_unary_token1] = ACTIONS(2952), - [anon_sym_PLUS2] = ACTIONS(2958), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2960), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2952), - [anon_sym_DOT_DOT_LT] = ACTIONS(2952), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2960), - [aux_sym__val_number_decimal_token1] = ACTIONS(2944), - [aux_sym__val_number_decimal_token2] = ACTIONS(2948), - [aux_sym__val_number_decimal_token3] = ACTIONS(2948), - [aux_sym__val_number_decimal_token4] = ACTIONS(2948), - [aux_sym__val_number_token1] = ACTIONS(2948), - [aux_sym__val_number_token2] = ACTIONS(2948), - [aux_sym__val_number_token3] = ACTIONS(2948), - [anon_sym_0b] = ACTIONS(2955), - [anon_sym_0o] = ACTIONS(2955), - [anon_sym_0x] = ACTIONS(2955), - [sym_val_date] = ACTIONS(2952), - [anon_sym_DQUOTE] = ACTIONS(2948), - [anon_sym_SQUOTE] = ACTIONS(2948), - [anon_sym_BQUOTE] = ACTIONS(2948), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2948), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2948), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2960), - [anon_sym_CARET] = ACTIONS(2952), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2948), + [anon_sym_in] = ACTIONS(2824), + [sym__newline] = ACTIONS(2818), + [anon_sym_SEMI] = ACTIONS(2818), + [anon_sym_PIPE] = ACTIONS(2818), + [anon_sym_err_GT_PIPE] = ACTIONS(2818), + [anon_sym_out_GT_PIPE] = ACTIONS(2818), + [anon_sym_e_GT_PIPE] = ACTIONS(2818), + [anon_sym_o_GT_PIPE] = ACTIONS(2818), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2818), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2818), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2818), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2818), + [anon_sym_RPAREN] = ACTIONS(2818), + [anon_sym_GT2] = ACTIONS(2826), + [anon_sym_DASH2] = ACTIONS(2828), + [anon_sym_STAR2] = ACTIONS(2830), + [anon_sym_and2] = ACTIONS(2818), + [anon_sym_xor2] = ACTIONS(2818), + [anon_sym_or2] = ACTIONS(2818), + [anon_sym_not_DASHin2] = ACTIONS(2824), + [anon_sym_has2] = ACTIONS(2824), + [anon_sym_not_DASHhas2] = ACTIONS(2824), + [anon_sym_starts_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2824), + [anon_sym_ends_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2824), + [anon_sym_EQ_EQ2] = ACTIONS(2832), + [anon_sym_BANG_EQ2] = ACTIONS(2832), + [anon_sym_LT2] = ACTIONS(2826), + [anon_sym_LT_EQ2] = ACTIONS(2832), + [anon_sym_GT_EQ2] = ACTIONS(2832), + [anon_sym_EQ_TILDE2] = ACTIONS(2834), + [anon_sym_BANG_TILDE2] = ACTIONS(2834), + [anon_sym_like2] = ACTIONS(2834), + [anon_sym_not_DASHlike2] = ACTIONS(2834), + [anon_sym_STAR_STAR2] = ACTIONS(2836), + [anon_sym_PLUS_PLUS2] = ACTIONS(2836), + [anon_sym_SLASH2] = ACTIONS(2830), + [anon_sym_mod2] = ACTIONS(2838), + [anon_sym_SLASH_SLASH2] = ACTIONS(2838), + [anon_sym_PLUS2] = ACTIONS(2840), + [anon_sym_bit_DASHshl2] = ACTIONS(2842), + [anon_sym_bit_DASHshr2] = ACTIONS(2842), + [anon_sym_bit_DASHand2] = ACTIONS(2844), + [anon_sym_bit_DASHxor2] = ACTIONS(2846), + [anon_sym_bit_DASHor2] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2820), + [anon_sym_out_GT] = ACTIONS(2820), + [anon_sym_e_GT] = ACTIONS(2820), + [anon_sym_o_GT] = ACTIONS(2820), + [anon_sym_err_PLUSout_GT] = ACTIONS(2820), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2820), + [anon_sym_o_PLUSe_GT] = ACTIONS(2820), + [anon_sym_e_PLUSo_GT] = ACTIONS(2820), + [anon_sym_err_GT_GT] = ACTIONS(2818), + [anon_sym_out_GT_GT] = ACTIONS(2818), + [anon_sym_e_GT_GT] = ACTIONS(2818), + [anon_sym_o_GT_GT] = ACTIONS(2818), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2818), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2818), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2818), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2818), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1254)] = { - [aux_sym__repeat_newline] = STATE(1266), [sym_comment] = STATE(1254), - [anon_sym_in] = ACTIONS(2895), - [sym__newline] = ACTIONS(2860), - [anon_sym_SEMI] = ACTIONS(2754), - [anon_sym_PIPE] = ACTIONS(2754), - [anon_sym_err_GT_PIPE] = ACTIONS(2754), - [anon_sym_out_GT_PIPE] = ACTIONS(2754), - [anon_sym_e_GT_PIPE] = ACTIONS(2754), - [anon_sym_o_GT_PIPE] = ACTIONS(2754), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2754), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2754), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2754), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2754), - [anon_sym_RPAREN] = ACTIONS(2754), - [anon_sym_GT2] = ACTIONS(2807), - [anon_sym_DASH2] = ACTIONS(2809), - [anon_sym_STAR2] = ACTIONS(2811), - [anon_sym_and2] = ACTIONS(2754), - [anon_sym_xor2] = ACTIONS(2754), - [anon_sym_or2] = ACTIONS(2754), - [anon_sym_not_DASHin2] = ACTIONS(2895), - [anon_sym_has2] = ACTIONS(2895), - [anon_sym_not_DASHhas2] = ACTIONS(2895), - [anon_sym_starts_DASHwith2] = ACTIONS(2895), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2895), - [anon_sym_ends_DASHwith2] = ACTIONS(2895), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2895), - [anon_sym_EQ_EQ2] = ACTIONS(2813), - [anon_sym_BANG_EQ2] = ACTIONS(2813), - [anon_sym_LT2] = ACTIONS(2807), - [anon_sym_LT_EQ2] = ACTIONS(2813), - [anon_sym_GT_EQ2] = ACTIONS(2813), - [anon_sym_EQ_TILDE2] = ACTIONS(2897), - [anon_sym_BANG_TILDE2] = ACTIONS(2897), - [anon_sym_like2] = ACTIONS(2897), - [anon_sym_not_DASHlike2] = ACTIONS(2897), - [anon_sym_STAR_STAR2] = ACTIONS(2815), - [anon_sym_PLUS_PLUS2] = ACTIONS(2815), - [anon_sym_SLASH2] = ACTIONS(2811), - [anon_sym_mod2] = ACTIONS(2817), - [anon_sym_SLASH_SLASH2] = ACTIONS(2817), - [anon_sym_PLUS2] = ACTIONS(2819), - [anon_sym_bit_DASHshl2] = ACTIONS(2821), - [anon_sym_bit_DASHshr2] = ACTIONS(2821), - [anon_sym_bit_DASHand2] = ACTIONS(2899), - [anon_sym_bit_DASHxor2] = ACTIONS(2901), - [anon_sym_bit_DASHor2] = ACTIONS(2754), - [anon_sym_err_GT] = ACTIONS(2756), - [anon_sym_out_GT] = ACTIONS(2756), - [anon_sym_e_GT] = ACTIONS(2756), - [anon_sym_o_GT] = ACTIONS(2756), - [anon_sym_err_PLUSout_GT] = ACTIONS(2756), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2756), - [anon_sym_o_PLUSe_GT] = ACTIONS(2756), - [anon_sym_e_PLUSo_GT] = ACTIONS(2756), - [anon_sym_err_GT_GT] = ACTIONS(2754), - [anon_sym_out_GT_GT] = ACTIONS(2754), - [anon_sym_e_GT_GT] = ACTIONS(2754), - [anon_sym_o_GT_GT] = ACTIONS(2754), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2754), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2754), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2754), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2754), + [anon_sym_in] = ACTIONS(2364), + [sym__newline] = ACTIONS(2366), + [anon_sym_SEMI] = ACTIONS(2369), + [anon_sym_PIPE] = ACTIONS(2369), + [anon_sym_err_GT_PIPE] = ACTIONS(2369), + [anon_sym_out_GT_PIPE] = ACTIONS(2369), + [anon_sym_e_GT_PIPE] = ACTIONS(2369), + [anon_sym_o_GT_PIPE] = ACTIONS(2369), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2369), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2369), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2369), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2369), + [anon_sym_RPAREN] = ACTIONS(2369), + [anon_sym_GT2] = ACTIONS(2371), + [anon_sym_DASH2] = ACTIONS(2364), + [anon_sym_LBRACE] = ACTIONS(2369), + [anon_sym_STAR2] = ACTIONS(2371), + [anon_sym_and2] = ACTIONS(2364), + [anon_sym_xor2] = ACTIONS(2364), + [anon_sym_or2] = ACTIONS(2364), + [anon_sym_not_DASHin2] = ACTIONS(2364), + [anon_sym_has2] = ACTIONS(2364), + [anon_sym_not_DASHhas2] = ACTIONS(2364), + [anon_sym_starts_DASHwith2] = ACTIONS(2364), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2364), + [anon_sym_ends_DASHwith2] = ACTIONS(2364), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2364), + [anon_sym_EQ_EQ2] = ACTIONS(2364), + [anon_sym_BANG_EQ2] = ACTIONS(2364), + [anon_sym_LT2] = ACTIONS(2371), + [anon_sym_LT_EQ2] = ACTIONS(2364), + [anon_sym_GT_EQ2] = ACTIONS(2364), + [anon_sym_EQ_TILDE2] = ACTIONS(2364), + [anon_sym_BANG_TILDE2] = ACTIONS(2364), + [anon_sym_like2] = ACTIONS(2364), + [anon_sym_not_DASHlike2] = ACTIONS(2364), + [anon_sym_STAR_STAR2] = ACTIONS(2364), + [anon_sym_PLUS_PLUS2] = ACTIONS(2364), + [anon_sym_SLASH2] = ACTIONS(2371), + [anon_sym_mod2] = ACTIONS(2364), + [anon_sym_SLASH_SLASH2] = ACTIONS(2364), + [anon_sym_PLUS2] = ACTIONS(2371), + [anon_sym_bit_DASHshl2] = ACTIONS(2364), + [anon_sym_bit_DASHshr2] = ACTIONS(2364), + [anon_sym_bit_DASHand2] = ACTIONS(2364), + [anon_sym_bit_DASHxor2] = ACTIONS(2364), + [anon_sym_bit_DASHor2] = ACTIONS(2364), + [anon_sym_err_GT] = ACTIONS(2373), + [anon_sym_out_GT] = ACTIONS(2373), + [anon_sym_e_GT] = ACTIONS(2373), + [anon_sym_o_GT] = ACTIONS(2373), + [anon_sym_err_PLUSout_GT] = ACTIONS(2373), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2373), + [anon_sym_o_PLUSe_GT] = ACTIONS(2373), + [anon_sym_e_PLUSo_GT] = ACTIONS(2373), + [anon_sym_err_GT_GT] = ACTIONS(2369), + [anon_sym_out_GT_GT] = ACTIONS(2369), + [anon_sym_e_GT_GT] = ACTIONS(2369), + [anon_sym_o_GT_GT] = ACTIONS(2369), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2369), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2369), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2369), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2369), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1255)] = { - [aux_sym__repeat_newline] = STATE(1189), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1255), - [anon_sym_in] = ACTIONS(2895), - [sym__newline] = ACTIONS(2804), - [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(2807), - [anon_sym_DASH2] = ACTIONS(2809), - [anon_sym_STAR2] = ACTIONS(2811), - [anon_sym_and2] = ACTIONS(2720), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2895), - [anon_sym_has2] = ACTIONS(2895), - [anon_sym_not_DASHhas2] = ACTIONS(2895), - [anon_sym_starts_DASHwith2] = ACTIONS(2895), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2895), - [anon_sym_ends_DASHwith2] = ACTIONS(2895), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2895), - [anon_sym_EQ_EQ2] = ACTIONS(2813), - [anon_sym_BANG_EQ2] = ACTIONS(2813), - [anon_sym_LT2] = ACTIONS(2807), - [anon_sym_LT_EQ2] = ACTIONS(2813), - [anon_sym_GT_EQ2] = ACTIONS(2813), - [anon_sym_EQ_TILDE2] = ACTIONS(2897), - [anon_sym_BANG_TILDE2] = ACTIONS(2897), - [anon_sym_like2] = ACTIONS(2897), - [anon_sym_not_DASHlike2] = ACTIONS(2897), - [anon_sym_STAR_STAR2] = ACTIONS(2815), - [anon_sym_PLUS_PLUS2] = ACTIONS(2815), - [anon_sym_SLASH2] = ACTIONS(2811), - [anon_sym_mod2] = ACTIONS(2817), - [anon_sym_SLASH_SLASH2] = ACTIONS(2817), - [anon_sym_PLUS2] = ACTIONS(2819), - [anon_sym_bit_DASHshl2] = ACTIONS(2821), - [anon_sym_bit_DASHshr2] = ACTIONS(2821), - [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(2824), + [sym__newline] = ACTIONS(2818), + [anon_sym_SEMI] = ACTIONS(2818), + [anon_sym_PIPE] = ACTIONS(2818), + [anon_sym_err_GT_PIPE] = ACTIONS(2818), + [anon_sym_out_GT_PIPE] = ACTIONS(2818), + [anon_sym_e_GT_PIPE] = ACTIONS(2818), + [anon_sym_o_GT_PIPE] = ACTIONS(2818), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2818), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2818), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2818), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2818), + [anon_sym_RPAREN] = ACTIONS(2818), + [anon_sym_GT2] = ACTIONS(2826), + [anon_sym_DASH2] = ACTIONS(2828), + [anon_sym_STAR2] = ACTIONS(2830), + [anon_sym_and2] = ACTIONS(2906), + [anon_sym_xor2] = ACTIONS(2818), + [anon_sym_or2] = ACTIONS(2818), + [anon_sym_not_DASHin2] = ACTIONS(2824), + [anon_sym_has2] = ACTIONS(2824), + [anon_sym_not_DASHhas2] = ACTIONS(2824), + [anon_sym_starts_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2824), + [anon_sym_ends_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2824), + [anon_sym_EQ_EQ2] = ACTIONS(2832), + [anon_sym_BANG_EQ2] = ACTIONS(2832), + [anon_sym_LT2] = ACTIONS(2826), + [anon_sym_LT_EQ2] = ACTIONS(2832), + [anon_sym_GT_EQ2] = ACTIONS(2832), + [anon_sym_EQ_TILDE2] = ACTIONS(2834), + [anon_sym_BANG_TILDE2] = ACTIONS(2834), + [anon_sym_like2] = ACTIONS(2834), + [anon_sym_not_DASHlike2] = ACTIONS(2834), + [anon_sym_STAR_STAR2] = ACTIONS(2836), + [anon_sym_PLUS_PLUS2] = ACTIONS(2836), + [anon_sym_SLASH2] = ACTIONS(2830), + [anon_sym_mod2] = ACTIONS(2838), + [anon_sym_SLASH_SLASH2] = ACTIONS(2838), + [anon_sym_PLUS2] = ACTIONS(2840), + [anon_sym_bit_DASHshl2] = ACTIONS(2842), + [anon_sym_bit_DASHshr2] = ACTIONS(2842), + [anon_sym_bit_DASHand2] = ACTIONS(2844), + [anon_sym_bit_DASHxor2] = ACTIONS(2846), + [anon_sym_bit_DASHor2] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2820), + [anon_sym_out_GT] = ACTIONS(2820), + [anon_sym_e_GT] = ACTIONS(2820), + [anon_sym_o_GT] = ACTIONS(2820), + [anon_sym_err_PLUSout_GT] = ACTIONS(2820), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2820), + [anon_sym_o_PLUSe_GT] = ACTIONS(2820), + [anon_sym_e_PLUSo_GT] = ACTIONS(2820), + [anon_sym_err_GT_GT] = ACTIONS(2818), + [anon_sym_out_GT_GT] = ACTIONS(2818), + [anon_sym_e_GT_GT] = ACTIONS(2818), + [anon_sym_o_GT_GT] = ACTIONS(2818), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2818), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2818), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2818), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2818), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1256)] = { - [sym__expression] = STATE(4938), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), - [sym__expr_binary_expression] = STATE(2253), - [sym_expr_parenthesized] = STATE(704), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1861), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1256), - [aux_sym_cmd_identifier_token2] = ACTIONS(2829), - [anon_sym_true] = ACTIONS(2557), - [anon_sym_false] = ACTIONS(2557), - [anon_sym_null] = ACTIONS(2559), - [aux_sym_cmd_identifier_token3] = ACTIONS(2561), - [aux_sym_cmd_identifier_token4] = ACTIONS(2561), - [aux_sym_cmd_identifier_token5] = ACTIONS(2561), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), - [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(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(2565), - [aux_sym__val_number_decimal_token4] = ACTIONS(2565), - [aux_sym__val_number_token1] = ACTIONS(2561), - [aux_sym__val_number_token2] = ACTIONS(2561), - [aux_sym__val_number_token3] = ACTIONS(2561), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2567), - [anon_sym_DQUOTE] = 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(2794), + [sym__newline] = ACTIONS(2794), + [anon_sym_SEMI] = ACTIONS(2794), + [anon_sym_PIPE] = ACTIONS(2794), + [anon_sym_err_GT_PIPE] = ACTIONS(2794), + [anon_sym_out_GT_PIPE] = ACTIONS(2794), + [anon_sym_e_GT_PIPE] = ACTIONS(2794), + [anon_sym_o_GT_PIPE] = ACTIONS(2794), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2794), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2794), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2794), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2794), + [anon_sym_RPAREN] = ACTIONS(2794), + [anon_sym_GT2] = ACTIONS(2796), + [anon_sym_DASH2] = ACTIONS(2828), + [anon_sym_STAR2] = ACTIONS(2830), + [anon_sym_and2] = ACTIONS(2794), + [anon_sym_xor2] = ACTIONS(2794), + [anon_sym_or2] = ACTIONS(2794), + [anon_sym_not_DASHin2] = ACTIONS(2794), + [anon_sym_has2] = ACTIONS(2794), + [anon_sym_not_DASHhas2] = ACTIONS(2794), + [anon_sym_starts_DASHwith2] = ACTIONS(2794), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2794), + [anon_sym_ends_DASHwith2] = ACTIONS(2794), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2794), + [anon_sym_EQ_EQ2] = ACTIONS(2794), + [anon_sym_BANG_EQ2] = ACTIONS(2794), + [anon_sym_LT2] = ACTIONS(2796), + [anon_sym_LT_EQ2] = ACTIONS(2794), + [anon_sym_GT_EQ2] = ACTIONS(2794), + [anon_sym_EQ_TILDE2] = ACTIONS(2794), + [anon_sym_BANG_TILDE2] = ACTIONS(2794), + [anon_sym_like2] = ACTIONS(2794), + [anon_sym_not_DASHlike2] = ACTIONS(2794), + [anon_sym_STAR_STAR2] = ACTIONS(2836), + [anon_sym_PLUS_PLUS2] = ACTIONS(2836), + [anon_sym_SLASH2] = ACTIONS(2830), + [anon_sym_mod2] = ACTIONS(2838), + [anon_sym_SLASH_SLASH2] = ACTIONS(2838), + [anon_sym_PLUS2] = ACTIONS(2840), + [anon_sym_bit_DASHshl2] = ACTIONS(2794), + [anon_sym_bit_DASHshr2] = ACTIONS(2794), + [anon_sym_bit_DASHand2] = ACTIONS(2794), + [anon_sym_bit_DASHxor2] = ACTIONS(2794), + [anon_sym_bit_DASHor2] = ACTIONS(2794), + [anon_sym_err_GT] = ACTIONS(2796), + [anon_sym_out_GT] = ACTIONS(2796), + [anon_sym_e_GT] = ACTIONS(2796), + [anon_sym_o_GT] = ACTIONS(2796), + [anon_sym_err_PLUSout_GT] = ACTIONS(2796), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2796), + [anon_sym_o_PLUSe_GT] = ACTIONS(2796), + [anon_sym_e_PLUSo_GT] = ACTIONS(2796), + [anon_sym_err_GT_GT] = ACTIONS(2794), + [anon_sym_out_GT_GT] = ACTIONS(2794), + [anon_sym_e_GT_GT] = ACTIONS(2794), + [anon_sym_o_GT_GT] = ACTIONS(2794), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2794), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2794), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2794), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2794), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1257)] = { - [aux_sym__repeat_newline] = STATE(527), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1257), - [anon_sym_in] = ACTIONS(2927), - [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(2911), - [anon_sym_DASH2] = ACTIONS(2913), - [anon_sym_STAR2] = ACTIONS(2915), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2927), - [anon_sym_has2] = ACTIONS(2927), - [anon_sym_not_DASHhas2] = ACTIONS(2927), - [anon_sym_starts_DASHwith2] = ACTIONS(2927), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2927), - [anon_sym_ends_DASHwith2] = ACTIONS(2927), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2927), - [anon_sym_EQ_EQ2] = ACTIONS(2917), - [anon_sym_BANG_EQ2] = ACTIONS(2917), - [anon_sym_LT2] = ACTIONS(2911), - [anon_sym_LT_EQ2] = ACTIONS(2917), - [anon_sym_GT_EQ2] = ACTIONS(2917), - [anon_sym_EQ_TILDE2] = ACTIONS(2929), - [anon_sym_BANG_TILDE2] = ACTIONS(2929), - [anon_sym_like2] = ACTIONS(2929), - [anon_sym_not_DASHlike2] = ACTIONS(2929), - [anon_sym_STAR_STAR2] = ACTIONS(2919), - [anon_sym_PLUS_PLUS2] = ACTIONS(2919), - [anon_sym_SLASH2] = ACTIONS(2915), - [anon_sym_mod2] = ACTIONS(2921), - [anon_sym_SLASH_SLASH2] = ACTIONS(2921), - [anon_sym_PLUS2] = ACTIONS(2923), - [anon_sym_bit_DASHshl2] = ACTIONS(2925), - [anon_sym_bit_DASHshr2] = ACTIONS(2925), - [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(2824), + [sym__newline] = ACTIONS(2818), + [anon_sym_SEMI] = ACTIONS(2818), + [anon_sym_PIPE] = ACTIONS(2818), + [anon_sym_err_GT_PIPE] = ACTIONS(2818), + [anon_sym_out_GT_PIPE] = ACTIONS(2818), + [anon_sym_e_GT_PIPE] = ACTIONS(2818), + [anon_sym_o_GT_PIPE] = ACTIONS(2818), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2818), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2818), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2818), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2818), + [anon_sym_RPAREN] = ACTIONS(2818), + [anon_sym_GT2] = ACTIONS(2826), + [anon_sym_DASH2] = ACTIONS(2828), + [anon_sym_STAR2] = ACTIONS(2830), + [anon_sym_and2] = ACTIONS(2906), + [anon_sym_xor2] = ACTIONS(2908), + [anon_sym_or2] = ACTIONS(2818), + [anon_sym_not_DASHin2] = ACTIONS(2824), + [anon_sym_has2] = ACTIONS(2824), + [anon_sym_not_DASHhas2] = ACTIONS(2824), + [anon_sym_starts_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2824), + [anon_sym_ends_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2824), + [anon_sym_EQ_EQ2] = ACTIONS(2832), + [anon_sym_BANG_EQ2] = ACTIONS(2832), + [anon_sym_LT2] = ACTIONS(2826), + [anon_sym_LT_EQ2] = ACTIONS(2832), + [anon_sym_GT_EQ2] = ACTIONS(2832), + [anon_sym_EQ_TILDE2] = ACTIONS(2834), + [anon_sym_BANG_TILDE2] = ACTIONS(2834), + [anon_sym_like2] = ACTIONS(2834), + [anon_sym_not_DASHlike2] = ACTIONS(2834), + [anon_sym_STAR_STAR2] = ACTIONS(2836), + [anon_sym_PLUS_PLUS2] = ACTIONS(2836), + [anon_sym_SLASH2] = ACTIONS(2830), + [anon_sym_mod2] = ACTIONS(2838), + [anon_sym_SLASH_SLASH2] = ACTIONS(2838), + [anon_sym_PLUS2] = ACTIONS(2840), + [anon_sym_bit_DASHshl2] = ACTIONS(2842), + [anon_sym_bit_DASHshr2] = ACTIONS(2842), + [anon_sym_bit_DASHand2] = ACTIONS(2844), + [anon_sym_bit_DASHxor2] = ACTIONS(2846), + [anon_sym_bit_DASHor2] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2820), + [anon_sym_out_GT] = ACTIONS(2820), + [anon_sym_e_GT] = ACTIONS(2820), + [anon_sym_o_GT] = ACTIONS(2820), + [anon_sym_err_PLUSout_GT] = ACTIONS(2820), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2820), + [anon_sym_o_PLUSe_GT] = ACTIONS(2820), + [anon_sym_e_PLUSo_GT] = ACTIONS(2820), + [anon_sym_err_GT_GT] = ACTIONS(2818), + [anon_sym_out_GT_GT] = ACTIONS(2818), + [anon_sym_e_GT_GT] = ACTIONS(2818), + [anon_sym_o_GT_GT] = ACTIONS(2818), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2818), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2818), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2818), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2818), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1258)] = { + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1258), - [ts_builtin_sym_end] = ACTIONS(2525), - [aux_sym_cmd_identifier_token2] = ACTIONS(2829), - [anon_sym_in] = ACTIONS(2527), - [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(2527), - [anon_sym_STAR2] = ACTIONS(2527), - [anon_sym_and2] = ACTIONS(2527), - [anon_sym_xor2] = ACTIONS(2527), - [anon_sym_or2] = ACTIONS(2527), - [anon_sym_not_DASHin2] = ACTIONS(2527), - [anon_sym_has2] = ACTIONS(2527), - [anon_sym_not_DASHhas2] = ACTIONS(2527), - [anon_sym_starts_DASHwith2] = ACTIONS(2527), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2527), - [anon_sym_ends_DASHwith2] = ACTIONS(2527), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2527), - [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(2527), - [anon_sym_like2] = ACTIONS(2527), - [anon_sym_not_DASHlike2] = ACTIONS(2527), - [anon_sym_STAR_STAR2] = ACTIONS(2527), - [anon_sym_PLUS_PLUS2] = ACTIONS(2527), - [anon_sym_SLASH2] = ACTIONS(2527), - [anon_sym_mod2] = ACTIONS(2527), - [anon_sym_SLASH_SLASH2] = ACTIONS(2527), - [anon_sym_PLUS2] = ACTIONS(2527), - [anon_sym_bit_DASHshl2] = ACTIONS(2527), - [anon_sym_bit_DASHshr2] = ACTIONS(2527), - [anon_sym_bit_DASHand2] = ACTIONS(2527), - [anon_sym_bit_DASHxor2] = ACTIONS(2527), - [anon_sym_bit_DASHor2] = ACTIONS(2527), - [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(103), + [anon_sym_in] = ACTIONS(2794), + [sym__newline] = ACTIONS(2794), + [anon_sym_SEMI] = ACTIONS(2794), + [anon_sym_PIPE] = ACTIONS(2794), + [anon_sym_err_GT_PIPE] = ACTIONS(2794), + [anon_sym_out_GT_PIPE] = ACTIONS(2794), + [anon_sym_e_GT_PIPE] = ACTIONS(2794), + [anon_sym_o_GT_PIPE] = ACTIONS(2794), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2794), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2794), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2794), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2794), + [anon_sym_RPAREN] = ACTIONS(2794), + [anon_sym_GT2] = ACTIONS(2796), + [anon_sym_DASH2] = ACTIONS(2794), + [anon_sym_STAR2] = ACTIONS(2796), + [anon_sym_and2] = ACTIONS(2794), + [anon_sym_xor2] = ACTIONS(2794), + [anon_sym_or2] = ACTIONS(2794), + [anon_sym_not_DASHin2] = ACTIONS(2794), + [anon_sym_has2] = ACTIONS(2794), + [anon_sym_not_DASHhas2] = ACTIONS(2794), + [anon_sym_starts_DASHwith2] = ACTIONS(2794), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2794), + [anon_sym_ends_DASHwith2] = ACTIONS(2794), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2794), + [anon_sym_EQ_EQ2] = ACTIONS(2794), + [anon_sym_BANG_EQ2] = ACTIONS(2794), + [anon_sym_LT2] = ACTIONS(2796), + [anon_sym_LT_EQ2] = ACTIONS(2794), + [anon_sym_GT_EQ2] = ACTIONS(2794), + [anon_sym_EQ_TILDE2] = ACTIONS(2794), + [anon_sym_BANG_TILDE2] = ACTIONS(2794), + [anon_sym_like2] = ACTIONS(2794), + [anon_sym_not_DASHlike2] = ACTIONS(2794), + [anon_sym_STAR_STAR2] = ACTIONS(2836), + [anon_sym_PLUS_PLUS2] = ACTIONS(2836), + [anon_sym_SLASH2] = ACTIONS(2796), + [anon_sym_mod2] = ACTIONS(2794), + [anon_sym_SLASH_SLASH2] = ACTIONS(2794), + [anon_sym_PLUS2] = ACTIONS(2796), + [anon_sym_bit_DASHshl2] = ACTIONS(2794), + [anon_sym_bit_DASHshr2] = ACTIONS(2794), + [anon_sym_bit_DASHand2] = ACTIONS(2794), + [anon_sym_bit_DASHxor2] = ACTIONS(2794), + [anon_sym_bit_DASHor2] = ACTIONS(2794), + [anon_sym_err_GT] = ACTIONS(2796), + [anon_sym_out_GT] = ACTIONS(2796), + [anon_sym_e_GT] = ACTIONS(2796), + [anon_sym_o_GT] = ACTIONS(2796), + [anon_sym_err_PLUSout_GT] = ACTIONS(2796), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2796), + [anon_sym_o_PLUSe_GT] = ACTIONS(2796), + [anon_sym_e_PLUSo_GT] = ACTIONS(2796), + [anon_sym_err_GT_GT] = ACTIONS(2794), + [anon_sym_out_GT_GT] = ACTIONS(2794), + [anon_sym_e_GT_GT] = ACTIONS(2794), + [anon_sym_o_GT_GT] = ACTIONS(2794), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2794), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2794), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2794), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2794), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1259)] = { - [aux_sym__repeat_newline] = STATE(1190), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1259), - [anon_sym_in] = ACTIONS(2895), - [sym__newline] = ACTIONS(2804), - [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(2807), - [anon_sym_DASH2] = ACTIONS(2809), - [anon_sym_STAR2] = ACTIONS(2811), - [anon_sym_and2] = ACTIONS(2720), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2895), - [anon_sym_has2] = ACTIONS(2895), - [anon_sym_not_DASHhas2] = ACTIONS(2895), - [anon_sym_starts_DASHwith2] = ACTIONS(2895), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2895), - [anon_sym_ends_DASHwith2] = ACTIONS(2895), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2895), - [anon_sym_EQ_EQ2] = ACTIONS(2813), - [anon_sym_BANG_EQ2] = ACTIONS(2813), - [anon_sym_LT2] = ACTIONS(2807), - [anon_sym_LT_EQ2] = ACTIONS(2813), - [anon_sym_GT_EQ2] = ACTIONS(2813), - [anon_sym_EQ_TILDE2] = ACTIONS(2897), - [anon_sym_BANG_TILDE2] = ACTIONS(2897), - [anon_sym_like2] = ACTIONS(2897), - [anon_sym_not_DASHlike2] = ACTIONS(2897), - [anon_sym_STAR_STAR2] = ACTIONS(2815), - [anon_sym_PLUS_PLUS2] = ACTIONS(2815), - [anon_sym_SLASH2] = ACTIONS(2811), - [anon_sym_mod2] = ACTIONS(2817), - [anon_sym_SLASH_SLASH2] = ACTIONS(2817), - [anon_sym_PLUS2] = ACTIONS(2819), - [anon_sym_bit_DASHshl2] = ACTIONS(2821), - [anon_sym_bit_DASHshr2] = ACTIONS(2821), - [anon_sym_bit_DASHand2] = ACTIONS(2899), - [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(2824), + [sym__newline] = ACTIONS(2818), + [anon_sym_SEMI] = ACTIONS(2818), + [anon_sym_PIPE] = ACTIONS(2818), + [anon_sym_err_GT_PIPE] = ACTIONS(2818), + [anon_sym_out_GT_PIPE] = ACTIONS(2818), + [anon_sym_e_GT_PIPE] = ACTIONS(2818), + [anon_sym_o_GT_PIPE] = ACTIONS(2818), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2818), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2818), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2818), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2818), + [anon_sym_RPAREN] = ACTIONS(2818), + [anon_sym_GT2] = ACTIONS(2826), + [anon_sym_DASH2] = ACTIONS(2828), + [anon_sym_STAR2] = ACTIONS(2830), + [anon_sym_and2] = ACTIONS(2818), + [anon_sym_xor2] = ACTIONS(2818), + [anon_sym_or2] = ACTIONS(2818), + [anon_sym_not_DASHin2] = ACTIONS(2824), + [anon_sym_has2] = ACTIONS(2824), + [anon_sym_not_DASHhas2] = ACTIONS(2824), + [anon_sym_starts_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2824), + [anon_sym_ends_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2824), + [anon_sym_EQ_EQ2] = ACTIONS(2832), + [anon_sym_BANG_EQ2] = ACTIONS(2832), + [anon_sym_LT2] = ACTIONS(2826), + [anon_sym_LT_EQ2] = ACTIONS(2832), + [anon_sym_GT_EQ2] = ACTIONS(2832), + [anon_sym_EQ_TILDE2] = ACTIONS(2818), + [anon_sym_BANG_TILDE2] = ACTIONS(2818), + [anon_sym_like2] = ACTIONS(2818), + [anon_sym_not_DASHlike2] = ACTIONS(2818), + [anon_sym_STAR_STAR2] = ACTIONS(2836), + [anon_sym_PLUS_PLUS2] = ACTIONS(2836), + [anon_sym_SLASH2] = ACTIONS(2830), + [anon_sym_mod2] = ACTIONS(2838), + [anon_sym_SLASH_SLASH2] = ACTIONS(2838), + [anon_sym_PLUS2] = ACTIONS(2840), + [anon_sym_bit_DASHshl2] = ACTIONS(2842), + [anon_sym_bit_DASHshr2] = ACTIONS(2842), + [anon_sym_bit_DASHand2] = ACTIONS(2818), + [anon_sym_bit_DASHxor2] = ACTIONS(2818), + [anon_sym_bit_DASHor2] = ACTIONS(2818), + [anon_sym_err_GT] = ACTIONS(2820), + [anon_sym_out_GT] = ACTIONS(2820), + [anon_sym_e_GT] = ACTIONS(2820), + [anon_sym_o_GT] = ACTIONS(2820), + [anon_sym_err_PLUSout_GT] = ACTIONS(2820), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2820), + [anon_sym_o_PLUSe_GT] = ACTIONS(2820), + [anon_sym_e_PLUSo_GT] = ACTIONS(2820), + [anon_sym_err_GT_GT] = ACTIONS(2818), + [anon_sym_out_GT_GT] = ACTIONS(2818), + [anon_sym_e_GT_GT] = ACTIONS(2818), + [anon_sym_o_GT_GT] = ACTIONS(2818), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2818), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2818), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2818), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2818), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1260)] = { + [aux_sym__repeat_newline] = STATE(1200), [sym_comment] = STATE(1260), - [anon_sym_in] = ACTIONS(2551), - [sym__newline] = ACTIONS(2551), - [anon_sym_SEMI] = ACTIONS(2551), - [anon_sym_PIPE] = ACTIONS(2551), - [anon_sym_err_GT_PIPE] = ACTIONS(2551), - [anon_sym_out_GT_PIPE] = ACTIONS(2551), - [anon_sym_e_GT_PIPE] = ACTIONS(2551), - [anon_sym_o_GT_PIPE] = ACTIONS(2551), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2551), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2551), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2551), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2551), - [anon_sym_RPAREN] = ACTIONS(2551), - [anon_sym_GT2] = ACTIONS(2838), - [anon_sym_DASH2] = ACTIONS(2840), - [anon_sym_RBRACE] = ACTIONS(2551), - [anon_sym_STAR2] = ACTIONS(2823), - [anon_sym_and2] = ACTIONS(2551), - [anon_sym_xor2] = ACTIONS(2551), - [anon_sym_or2] = ACTIONS(2551), - [anon_sym_not_DASHin2] = ACTIONS(2551), - [anon_sym_has2] = ACTIONS(2551), - [anon_sym_not_DASHhas2] = ACTIONS(2551), - [anon_sym_starts_DASHwith2] = ACTIONS(2551), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2551), - [anon_sym_ends_DASHwith2] = ACTIONS(2551), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2551), - [anon_sym_EQ_EQ2] = ACTIONS(2842), - [anon_sym_BANG_EQ2] = ACTIONS(2842), - [anon_sym_LT2] = ACTIONS(2838), - [anon_sym_LT_EQ2] = ACTIONS(2842), - [anon_sym_GT_EQ2] = ACTIONS(2842), - [anon_sym_EQ_TILDE2] = ACTIONS(2551), - [anon_sym_BANG_TILDE2] = ACTIONS(2551), - [anon_sym_like2] = ACTIONS(2551), - [anon_sym_not_DASHlike2] = ACTIONS(2551), - [anon_sym_STAR_STAR2] = ACTIONS(2825), - [anon_sym_PLUS_PLUS2] = ACTIONS(2825), - [anon_sym_SLASH2] = ACTIONS(2823), - [anon_sym_mod2] = ACTIONS(2827), - [anon_sym_SLASH_SLASH2] = ACTIONS(2827), - [anon_sym_PLUS2] = ACTIONS(2846), - [anon_sym_bit_DASHshl2] = ACTIONS(2848), - [anon_sym_bit_DASHshr2] = ACTIONS(2848), - [anon_sym_bit_DASHand2] = ACTIONS(2551), - [anon_sym_bit_DASHxor2] = ACTIONS(2551), - [anon_sym_bit_DASHor2] = ACTIONS(2551), - [anon_sym_err_GT] = ACTIONS(2553), - [anon_sym_out_GT] = ACTIONS(2553), - [anon_sym_e_GT] = ACTIONS(2553), - [anon_sym_o_GT] = ACTIONS(2553), - [anon_sym_err_PLUSout_GT] = ACTIONS(2553), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2553), - [anon_sym_o_PLUSe_GT] = ACTIONS(2553), - [anon_sym_e_PLUSo_GT] = ACTIONS(2553), - [anon_sym_err_GT_GT] = ACTIONS(2551), - [anon_sym_out_GT_GT] = ACTIONS(2551), - [anon_sym_e_GT_GT] = ACTIONS(2551), - [anon_sym_o_GT_GT] = ACTIONS(2551), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2551), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2551), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2551), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2551), + [anon_sym_in] = ACTIONS(2872), + [sym__newline] = ACTIONS(2874), + [anon_sym_SEMI] = ACTIONS(2788), + [anon_sym_PIPE] = ACTIONS(2788), + [anon_sym_err_GT_PIPE] = ACTIONS(2788), + [anon_sym_out_GT_PIPE] = ACTIONS(2788), + [anon_sym_e_GT_PIPE] = ACTIONS(2788), + [anon_sym_o_GT_PIPE] = ACTIONS(2788), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2788), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2788), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2788), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2788), + [anon_sym_RPAREN] = ACTIONS(2788), + [anon_sym_GT2] = ACTIONS(2853), + [anon_sym_DASH2] = ACTIONS(2855), + [anon_sym_STAR2] = ACTIONS(2857), + [anon_sym_and2] = ACTIONS(2788), + [anon_sym_xor2] = ACTIONS(2788), + [anon_sym_or2] = ACTIONS(2788), + [anon_sym_not_DASHin2] = ACTIONS(2872), + [anon_sym_has2] = ACTIONS(2872), + [anon_sym_not_DASHhas2] = ACTIONS(2872), + [anon_sym_starts_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2872), + [anon_sym_ends_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2872), + [anon_sym_EQ_EQ2] = ACTIONS(2859), + [anon_sym_BANG_EQ2] = ACTIONS(2859), + [anon_sym_LT2] = ACTIONS(2853), + [anon_sym_LT_EQ2] = ACTIONS(2859), + [anon_sym_GT_EQ2] = ACTIONS(2859), + [anon_sym_EQ_TILDE2] = ACTIONS(2879), + [anon_sym_BANG_TILDE2] = ACTIONS(2879), + [anon_sym_like2] = ACTIONS(2879), + [anon_sym_not_DASHlike2] = ACTIONS(2879), + [anon_sym_STAR_STAR2] = ACTIONS(2861), + [anon_sym_PLUS_PLUS2] = ACTIONS(2861), + [anon_sym_SLASH2] = ACTIONS(2857), + [anon_sym_mod2] = ACTIONS(2863), + [anon_sym_SLASH_SLASH2] = ACTIONS(2863), + [anon_sym_PLUS2] = ACTIONS(2865), + [anon_sym_bit_DASHshl2] = ACTIONS(2867), + [anon_sym_bit_DASHshr2] = ACTIONS(2867), + [anon_sym_bit_DASHand2] = ACTIONS(2788), + [anon_sym_bit_DASHxor2] = ACTIONS(2788), + [anon_sym_bit_DASHor2] = ACTIONS(2788), + [anon_sym_err_GT] = ACTIONS(2790), + [anon_sym_out_GT] = ACTIONS(2790), + [anon_sym_e_GT] = ACTIONS(2790), + [anon_sym_o_GT] = ACTIONS(2790), + [anon_sym_err_PLUSout_GT] = ACTIONS(2790), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2790), + [anon_sym_o_PLUSe_GT] = ACTIONS(2790), + [anon_sym_e_PLUSo_GT] = ACTIONS(2790), + [anon_sym_err_GT_GT] = ACTIONS(2788), + [anon_sym_out_GT_GT] = ACTIONS(2788), + [anon_sym_e_GT_GT] = ACTIONS(2788), + [anon_sym_o_GT_GT] = ACTIONS(2788), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2788), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2788), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2788), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2788), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1261)] = { - [sym__ctrl_match_body] = STATE(5184), - [sym_match_arm] = STATE(4682), - [sym_default_arm] = STATE(4682), - [sym_match_pattern] = STATE(5194), - [sym__match_pattern] = STATE(4028), - [sym__match_pattern_expression] = STATE(4471), - [sym__match_pattern_value] = STATE(4475), - [sym__match_pattern_list] = STATE(4483), - [sym__match_pattern_record] = STATE(4489), - [sym_expr_parenthesized] = STATE(3865), - [sym_val_range] = STATE(4475), - [sym__val_range] = STATE(5176), - [sym_val_nothing] = STATE(4489), - [sym_val_bool] = STATE(4169), - [sym_val_variable] = STATE(3808), - [sym_val_number] = STATE(4489), - [sym__val_number_decimal] = STATE(3636), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(4489), - [sym_val_filesize] = STATE(4489), - [sym_val_binary] = STATE(4489), - [sym_val_string] = STATE(4489), - [sym__raw_str] = STATE(2266), - [sym__str_double_quotes] = STATE(2266), - [sym__str_single_quotes] = STATE(2266), - [sym__str_back_ticks] = STATE(2266), - [sym_val_table] = STATE(4489), - [sym_unquoted] = STATE(4503), - [sym__unquoted_anonymous_prefix] = STATE(5176), [sym_comment] = STATE(1261), - [aux_sym__types_body_repeat1] = STATE(1355), - [aux_sym__ctrl_match_body_repeat1] = STATE(1368), - [anon_sym_true] = ACTIONS(2863), - [anon_sym_false] = ACTIONS(2863), - [anon_sym_null] = ACTIONS(2865), - [aux_sym_cmd_identifier_token3] = ACTIONS(2867), - [aux_sym_cmd_identifier_token4] = ACTIONS(2867), - [aux_sym_cmd_identifier_token5] = ACTIONS(2867), - [sym__newline] = ACTIONS(2869), - [anon_sym_LBRACK] = ACTIONS(2871), - [anon_sym_LPAREN] = ACTIONS(2694), - [anon_sym_DOLLAR] = ACTIONS(2873), - [anon_sym_LBRACE] = ACTIONS(2875), - [anon_sym_RBRACE] = ACTIONS(2962), - [anon_sym__] = ACTIONS(2879), - [anon_sym_DOT_DOT] = ACTIONS(2881), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2883), - [anon_sym_DOT_DOT_LT] = ACTIONS(2883), - [aux_sym__val_number_decimal_token1] = ACTIONS(2885), - [aux_sym__val_number_decimal_token2] = ACTIONS(2887), - [aux_sym__val_number_decimal_token3] = ACTIONS(2889), - [aux_sym__val_number_decimal_token4] = ACTIONS(2889), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2891), - [anon_sym_DQUOTE] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(1802), - [anon_sym_BQUOTE] = ACTIONS(1804), - [aux_sym_unquoted_token1] = ACTIONS(1936), + [anon_sym_in] = ACTIONS(1699), + [sym__newline] = ACTIONS(1699), + [anon_sym_SEMI] = ACTIONS(1699), + [anon_sym_PIPE] = ACTIONS(1699), + [anon_sym_err_GT_PIPE] = ACTIONS(1699), + [anon_sym_out_GT_PIPE] = ACTIONS(1699), + [anon_sym_e_GT_PIPE] = ACTIONS(1699), + [anon_sym_o_GT_PIPE] = ACTIONS(1699), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1699), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1699), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1699), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1699), + [anon_sym_GT2] = ACTIONS(1615), + [anon_sym_DASH2] = ACTIONS(1699), + [anon_sym_RBRACE] = ACTIONS(1699), + [anon_sym_STAR2] = ACTIONS(1615), + [anon_sym_and2] = ACTIONS(1699), + [anon_sym_xor2] = ACTIONS(1699), + [anon_sym_or2] = ACTIONS(1699), + [anon_sym_not_DASHin2] = ACTIONS(1699), + [anon_sym_has2] = ACTIONS(1699), + [anon_sym_not_DASHhas2] = ACTIONS(1699), + [anon_sym_starts_DASHwith2] = ACTIONS(1699), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1699), + [anon_sym_ends_DASHwith2] = ACTIONS(1699), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1699), + [anon_sym_EQ_EQ2] = ACTIONS(1699), + [anon_sym_BANG_EQ2] = ACTIONS(1699), + [anon_sym_LT2] = ACTIONS(1615), + [anon_sym_LT_EQ2] = ACTIONS(1699), + [anon_sym_GT_EQ2] = ACTIONS(1699), + [anon_sym_EQ_TILDE2] = ACTIONS(1699), + [anon_sym_BANG_TILDE2] = ACTIONS(1699), + [anon_sym_like2] = ACTIONS(1699), + [anon_sym_not_DASHlike2] = ACTIONS(1699), + [anon_sym_STAR_STAR2] = ACTIONS(1699), + [anon_sym_PLUS_PLUS2] = ACTIONS(1699), + [anon_sym_SLASH2] = ACTIONS(1615), + [anon_sym_mod2] = ACTIONS(1699), + [anon_sym_SLASH_SLASH2] = ACTIONS(1699), + [anon_sym_PLUS2] = ACTIONS(1615), + [anon_sym_bit_DASHshl2] = ACTIONS(1699), + [anon_sym_bit_DASHshr2] = ACTIONS(1699), + [anon_sym_bit_DASHand2] = ACTIONS(1699), + [anon_sym_bit_DASHxor2] = ACTIONS(1699), + [anon_sym_bit_DASHor2] = ACTIONS(1699), + [anon_sym_COLON2] = ACTIONS(1701), + [anon_sym_err_GT] = ACTIONS(1615), + [anon_sym_out_GT] = ACTIONS(1615), + [anon_sym_e_GT] = ACTIONS(1615), + [anon_sym_o_GT] = ACTIONS(1615), + [anon_sym_err_PLUSout_GT] = ACTIONS(1615), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1615), + [anon_sym_o_PLUSe_GT] = ACTIONS(1615), + [anon_sym_e_PLUSo_GT] = ACTIONS(1615), + [anon_sym_err_GT_GT] = ACTIONS(1699), + [anon_sym_out_GT_GT] = ACTIONS(1699), + [anon_sym_e_GT_GT] = ACTIONS(1699), + [anon_sym_o_GT_GT] = ACTIONS(1699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1699), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1806), }, [STATE(1262)] = { - [sym__ctrl_match_body] = STATE(5367), - [sym_match_arm] = STATE(4682), - [sym_default_arm] = STATE(4682), - [sym_match_pattern] = STATE(5194), - [sym__match_pattern] = STATE(4028), - [sym__match_pattern_expression] = STATE(4471), - [sym__match_pattern_value] = STATE(4475), - [sym__match_pattern_list] = STATE(4483), - [sym__match_pattern_record] = STATE(4489), - [sym_expr_parenthesized] = STATE(3865), - [sym_val_range] = STATE(4475), - [sym__val_range] = STATE(5176), - [sym_val_nothing] = STATE(4489), - [sym_val_bool] = STATE(4169), - [sym_val_variable] = STATE(3808), - [sym_val_number] = STATE(4489), - [sym__val_number_decimal] = STATE(3636), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(4489), - [sym_val_filesize] = STATE(4489), - [sym_val_binary] = STATE(4489), - [sym_val_string] = STATE(4489), - [sym__raw_str] = STATE(2266), - [sym__str_double_quotes] = STATE(2266), - [sym__str_single_quotes] = STATE(2266), - [sym__str_back_ticks] = STATE(2266), - [sym_val_table] = STATE(4489), - [sym_unquoted] = STATE(4503), - [sym__unquoted_anonymous_prefix] = STATE(5176), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1262), - [aux_sym__types_body_repeat1] = STATE(1355), - [aux_sym__ctrl_match_body_repeat1] = STATE(1368), - [anon_sym_true] = ACTIONS(2863), - [anon_sym_false] = ACTIONS(2863), - [anon_sym_null] = ACTIONS(2865), - [aux_sym_cmd_identifier_token3] = ACTIONS(2867), - [aux_sym_cmd_identifier_token4] = ACTIONS(2867), - [aux_sym_cmd_identifier_token5] = ACTIONS(2867), - [sym__newline] = ACTIONS(2869), - [anon_sym_LBRACK] = ACTIONS(2871), - [anon_sym_LPAREN] = ACTIONS(2694), - [anon_sym_DOLLAR] = ACTIONS(2873), - [anon_sym_LBRACE] = ACTIONS(2875), - [anon_sym_RBRACE] = ACTIONS(2964), - [anon_sym__] = ACTIONS(2879), - [anon_sym_DOT_DOT] = ACTIONS(2881), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2883), - [anon_sym_DOT_DOT_LT] = ACTIONS(2883), - [aux_sym__val_number_decimal_token1] = ACTIONS(2885), - [aux_sym__val_number_decimal_token2] = ACTIONS(2887), - [aux_sym__val_number_decimal_token3] = ACTIONS(2889), - [aux_sym__val_number_decimal_token4] = ACTIONS(2889), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2891), - [anon_sym_DQUOTE] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(1802), - [anon_sym_BQUOTE] = ACTIONS(1804), - [aux_sym_unquoted_token1] = ACTIONS(1936), + [anon_sym_in] = ACTIONS(2784), + [sym__newline] = ACTIONS(2784), + [anon_sym_SEMI] = ACTIONS(2784), + [anon_sym_PIPE] = ACTIONS(2784), + [anon_sym_err_GT_PIPE] = ACTIONS(2784), + [anon_sym_out_GT_PIPE] = ACTIONS(2784), + [anon_sym_e_GT_PIPE] = ACTIONS(2784), + [anon_sym_o_GT_PIPE] = ACTIONS(2784), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2784), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2784), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2784), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2784), + [anon_sym_RPAREN] = ACTIONS(2784), + [anon_sym_GT2] = ACTIONS(2826), + [anon_sym_DASH2] = ACTIONS(2828), + [anon_sym_STAR2] = ACTIONS(2830), + [anon_sym_and2] = ACTIONS(2784), + [anon_sym_xor2] = ACTIONS(2784), + [anon_sym_or2] = ACTIONS(2784), + [anon_sym_not_DASHin2] = ACTIONS(2784), + [anon_sym_has2] = ACTIONS(2784), + [anon_sym_not_DASHhas2] = ACTIONS(2784), + [anon_sym_starts_DASHwith2] = ACTIONS(2784), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2784), + [anon_sym_ends_DASHwith2] = ACTIONS(2784), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2784), + [anon_sym_EQ_EQ2] = ACTIONS(2832), + [anon_sym_BANG_EQ2] = ACTIONS(2832), + [anon_sym_LT2] = ACTIONS(2826), + [anon_sym_LT_EQ2] = ACTIONS(2832), + [anon_sym_GT_EQ2] = ACTIONS(2832), + [anon_sym_EQ_TILDE2] = ACTIONS(2784), + [anon_sym_BANG_TILDE2] = ACTIONS(2784), + [anon_sym_like2] = ACTIONS(2784), + [anon_sym_not_DASHlike2] = ACTIONS(2784), + [anon_sym_STAR_STAR2] = ACTIONS(2836), + [anon_sym_PLUS_PLUS2] = ACTIONS(2836), + [anon_sym_SLASH2] = ACTIONS(2830), + [anon_sym_mod2] = ACTIONS(2838), + [anon_sym_SLASH_SLASH2] = ACTIONS(2838), + [anon_sym_PLUS2] = ACTIONS(2840), + [anon_sym_bit_DASHshl2] = ACTIONS(2842), + [anon_sym_bit_DASHshr2] = ACTIONS(2842), + [anon_sym_bit_DASHand2] = ACTIONS(2784), + [anon_sym_bit_DASHxor2] = ACTIONS(2784), + [anon_sym_bit_DASHor2] = ACTIONS(2784), + [anon_sym_err_GT] = ACTIONS(2786), + [anon_sym_out_GT] = ACTIONS(2786), + [anon_sym_e_GT] = ACTIONS(2786), + [anon_sym_o_GT] = ACTIONS(2786), + [anon_sym_err_PLUSout_GT] = ACTIONS(2786), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2786), + [anon_sym_o_PLUSe_GT] = ACTIONS(2786), + [anon_sym_e_PLUSo_GT] = ACTIONS(2786), + [anon_sym_err_GT_GT] = ACTIONS(2784), + [anon_sym_out_GT_GT] = ACTIONS(2784), + [anon_sym_e_GT_GT] = ACTIONS(2784), + [anon_sym_o_GT_GT] = ACTIONS(2784), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2784), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2784), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2784), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2784), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1806), }, [STATE(1263)] = { - [aux_sym__repeat_newline] = STATE(527), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1263), - [anon_sym_in] = ACTIONS(2927), - [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(2911), - [anon_sym_DASH2] = ACTIONS(2913), - [anon_sym_STAR2] = ACTIONS(2915), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2927), - [anon_sym_has2] = ACTIONS(2927), - [anon_sym_not_DASHhas2] = ACTIONS(2927), - [anon_sym_starts_DASHwith2] = ACTIONS(2927), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2927), - [anon_sym_ends_DASHwith2] = ACTIONS(2927), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2927), - [anon_sym_EQ_EQ2] = ACTIONS(2917), - [anon_sym_BANG_EQ2] = ACTIONS(2917), - [anon_sym_LT2] = ACTIONS(2911), - [anon_sym_LT_EQ2] = ACTIONS(2917), - [anon_sym_GT_EQ2] = ACTIONS(2917), - [anon_sym_EQ_TILDE2] = ACTIONS(2929), - [anon_sym_BANG_TILDE2] = ACTIONS(2929), - [anon_sym_like2] = ACTIONS(2929), - [anon_sym_not_DASHlike2] = ACTIONS(2929), - [anon_sym_STAR_STAR2] = ACTIONS(2919), - [anon_sym_PLUS_PLUS2] = ACTIONS(2919), - [anon_sym_SLASH2] = ACTIONS(2915), - [anon_sym_mod2] = ACTIONS(2921), - [anon_sym_SLASH_SLASH2] = ACTIONS(2921), - [anon_sym_PLUS2] = ACTIONS(2923), - [anon_sym_bit_DASHshl2] = ACTIONS(2925), - [anon_sym_bit_DASHshr2] = ACTIONS(2925), - [anon_sym_bit_DASHand2] = ACTIONS(2931), - [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(2824), + [sym__newline] = ACTIONS(2794), + [anon_sym_SEMI] = ACTIONS(2794), + [anon_sym_PIPE] = ACTIONS(2794), + [anon_sym_err_GT_PIPE] = ACTIONS(2794), + [anon_sym_out_GT_PIPE] = ACTIONS(2794), + [anon_sym_e_GT_PIPE] = ACTIONS(2794), + [anon_sym_o_GT_PIPE] = ACTIONS(2794), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2794), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2794), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2794), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2794), + [anon_sym_RPAREN] = ACTIONS(2794), + [anon_sym_GT2] = ACTIONS(2826), + [anon_sym_DASH2] = ACTIONS(2828), + [anon_sym_STAR2] = ACTIONS(2830), + [anon_sym_and2] = ACTIONS(2794), + [anon_sym_xor2] = ACTIONS(2794), + [anon_sym_or2] = ACTIONS(2794), + [anon_sym_not_DASHin2] = ACTIONS(2824), + [anon_sym_has2] = ACTIONS(2824), + [anon_sym_not_DASHhas2] = ACTIONS(2824), + [anon_sym_starts_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2824), + [anon_sym_ends_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2824), + [anon_sym_EQ_EQ2] = ACTIONS(2832), + [anon_sym_BANG_EQ2] = ACTIONS(2832), + [anon_sym_LT2] = ACTIONS(2826), + [anon_sym_LT_EQ2] = ACTIONS(2832), + [anon_sym_GT_EQ2] = ACTIONS(2832), + [anon_sym_EQ_TILDE2] = ACTIONS(2834), + [anon_sym_BANG_TILDE2] = ACTIONS(2834), + [anon_sym_like2] = ACTIONS(2834), + [anon_sym_not_DASHlike2] = ACTIONS(2834), + [anon_sym_STAR_STAR2] = ACTIONS(2836), + [anon_sym_PLUS_PLUS2] = ACTIONS(2836), + [anon_sym_SLASH2] = ACTIONS(2830), + [anon_sym_mod2] = ACTIONS(2838), + [anon_sym_SLASH_SLASH2] = ACTIONS(2838), + [anon_sym_PLUS2] = ACTIONS(2840), + [anon_sym_bit_DASHshl2] = ACTIONS(2842), + [anon_sym_bit_DASHshr2] = ACTIONS(2842), + [anon_sym_bit_DASHand2] = ACTIONS(2794), + [anon_sym_bit_DASHxor2] = ACTIONS(2794), + [anon_sym_bit_DASHor2] = ACTIONS(2794), + [anon_sym_err_GT] = ACTIONS(2796), + [anon_sym_out_GT] = ACTIONS(2796), + [anon_sym_e_GT] = ACTIONS(2796), + [anon_sym_o_GT] = ACTIONS(2796), + [anon_sym_err_PLUSout_GT] = ACTIONS(2796), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2796), + [anon_sym_o_PLUSe_GT] = ACTIONS(2796), + [anon_sym_e_PLUSo_GT] = ACTIONS(2796), + [anon_sym_err_GT_GT] = ACTIONS(2794), + [anon_sym_out_GT_GT] = ACTIONS(2794), + [anon_sym_e_GT_GT] = ACTIONS(2794), + [anon_sym_o_GT_GT] = ACTIONS(2794), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2794), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2794), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2794), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2794), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1264)] = { - [aux_sym__repeat_newline] = STATE(1193), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1264), - [anon_sym_in] = ACTIONS(2895), - [sym__newline] = ACTIONS(2804), - [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(2807), - [anon_sym_DASH2] = ACTIONS(2809), - [anon_sym_STAR2] = ACTIONS(2811), - [anon_sym_and2] = ACTIONS(2720), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2895), - [anon_sym_has2] = ACTIONS(2895), - [anon_sym_not_DASHhas2] = ACTIONS(2895), - [anon_sym_starts_DASHwith2] = ACTIONS(2895), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2895), - [anon_sym_ends_DASHwith2] = ACTIONS(2895), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2895), - [anon_sym_EQ_EQ2] = ACTIONS(2813), - [anon_sym_BANG_EQ2] = ACTIONS(2813), - [anon_sym_LT2] = ACTIONS(2807), - [anon_sym_LT_EQ2] = ACTIONS(2813), - [anon_sym_GT_EQ2] = ACTIONS(2813), - [anon_sym_EQ_TILDE2] = ACTIONS(2897), - [anon_sym_BANG_TILDE2] = ACTIONS(2897), - [anon_sym_like2] = ACTIONS(2897), - [anon_sym_not_DASHlike2] = ACTIONS(2897), - [anon_sym_STAR_STAR2] = ACTIONS(2815), - [anon_sym_PLUS_PLUS2] = ACTIONS(2815), - [anon_sym_SLASH2] = ACTIONS(2811), - [anon_sym_mod2] = ACTIONS(2817), - [anon_sym_SLASH_SLASH2] = ACTIONS(2817), - [anon_sym_PLUS2] = ACTIONS(2819), - [anon_sym_bit_DASHshl2] = ACTIONS(2821), - [anon_sym_bit_DASHshr2] = ACTIONS(2821), - [anon_sym_bit_DASHand2] = ACTIONS(2899), - [anon_sym_bit_DASHxor2] = ACTIONS(2901), - [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(2818), + [sym__newline] = ACTIONS(2818), + [anon_sym_SEMI] = ACTIONS(2818), + [anon_sym_PIPE] = ACTIONS(2818), + [anon_sym_err_GT_PIPE] = ACTIONS(2818), + [anon_sym_out_GT_PIPE] = ACTIONS(2818), + [anon_sym_e_GT_PIPE] = ACTIONS(2818), + [anon_sym_o_GT_PIPE] = ACTIONS(2818), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2818), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2818), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2818), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2818), + [anon_sym_RPAREN] = ACTIONS(2818), + [anon_sym_GT2] = ACTIONS(2820), + [anon_sym_DASH2] = ACTIONS(2828), + [anon_sym_STAR2] = ACTIONS(2830), + [anon_sym_and2] = ACTIONS(2818), + [anon_sym_xor2] = ACTIONS(2818), + [anon_sym_or2] = ACTIONS(2818), + [anon_sym_not_DASHin2] = ACTIONS(2818), + [anon_sym_has2] = ACTIONS(2818), + [anon_sym_not_DASHhas2] = ACTIONS(2818), + [anon_sym_starts_DASHwith2] = ACTIONS(2818), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2818), + [anon_sym_ends_DASHwith2] = ACTIONS(2818), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2818), + [anon_sym_EQ_EQ2] = ACTIONS(2818), + [anon_sym_BANG_EQ2] = ACTIONS(2818), + [anon_sym_LT2] = ACTIONS(2820), + [anon_sym_LT_EQ2] = ACTIONS(2818), + [anon_sym_GT_EQ2] = ACTIONS(2818), + [anon_sym_EQ_TILDE2] = ACTIONS(2818), + [anon_sym_BANG_TILDE2] = ACTIONS(2818), + [anon_sym_like2] = ACTIONS(2818), + [anon_sym_not_DASHlike2] = ACTIONS(2818), + [anon_sym_STAR_STAR2] = ACTIONS(2836), + [anon_sym_PLUS_PLUS2] = ACTIONS(2836), + [anon_sym_SLASH2] = ACTIONS(2830), + [anon_sym_mod2] = ACTIONS(2838), + [anon_sym_SLASH_SLASH2] = ACTIONS(2838), + [anon_sym_PLUS2] = ACTIONS(2840), + [anon_sym_bit_DASHshl2] = ACTIONS(2818), + [anon_sym_bit_DASHshr2] = ACTIONS(2818), + [anon_sym_bit_DASHand2] = ACTIONS(2818), + [anon_sym_bit_DASHxor2] = ACTIONS(2818), + [anon_sym_bit_DASHor2] = ACTIONS(2818), + [anon_sym_err_GT] = ACTIONS(2820), + [anon_sym_out_GT] = ACTIONS(2820), + [anon_sym_e_GT] = ACTIONS(2820), + [anon_sym_o_GT] = ACTIONS(2820), + [anon_sym_err_PLUSout_GT] = ACTIONS(2820), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2820), + [anon_sym_o_PLUSe_GT] = ACTIONS(2820), + [anon_sym_e_PLUSo_GT] = ACTIONS(2820), + [anon_sym_err_GT_GT] = ACTIONS(2818), + [anon_sym_out_GT_GT] = ACTIONS(2818), + [anon_sym_e_GT_GT] = ACTIONS(2818), + [anon_sym_o_GT_GT] = ACTIONS(2818), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2818), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2818), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2818), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2818), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1265)] = { + [aux_sym__repeat_newline] = STATE(1258), [sym_comment] = STATE(1265), - [anon_sym_in] = ACTIONS(2551), - [sym__newline] = ACTIONS(2551), - [anon_sym_SEMI] = ACTIONS(2551), - [anon_sym_PIPE] = ACTIONS(2551), - [anon_sym_err_GT_PIPE] = ACTIONS(2551), - [anon_sym_out_GT_PIPE] = ACTIONS(2551), - [anon_sym_e_GT_PIPE] = ACTIONS(2551), - [anon_sym_o_GT_PIPE] = ACTIONS(2551), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2551), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2551), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2551), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2551), - [anon_sym_RPAREN] = ACTIONS(2551), - [anon_sym_GT2] = ACTIONS(2553), - [anon_sym_DASH2] = ACTIONS(2840), - [anon_sym_RBRACE] = ACTIONS(2551), - [anon_sym_STAR2] = ACTIONS(2823), - [anon_sym_and2] = ACTIONS(2551), - [anon_sym_xor2] = ACTIONS(2551), - [anon_sym_or2] = ACTIONS(2551), - [anon_sym_not_DASHin2] = ACTIONS(2551), - [anon_sym_has2] = ACTIONS(2551), - [anon_sym_not_DASHhas2] = ACTIONS(2551), - [anon_sym_starts_DASHwith2] = ACTIONS(2551), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2551), - [anon_sym_ends_DASHwith2] = ACTIONS(2551), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2551), - [anon_sym_EQ_EQ2] = ACTIONS(2551), - [anon_sym_BANG_EQ2] = ACTIONS(2551), - [anon_sym_LT2] = ACTIONS(2553), - [anon_sym_LT_EQ2] = ACTIONS(2551), - [anon_sym_GT_EQ2] = ACTIONS(2551), - [anon_sym_EQ_TILDE2] = ACTIONS(2551), - [anon_sym_BANG_TILDE2] = ACTIONS(2551), - [anon_sym_like2] = ACTIONS(2551), - [anon_sym_not_DASHlike2] = ACTIONS(2551), - [anon_sym_STAR_STAR2] = ACTIONS(2825), - [anon_sym_PLUS_PLUS2] = ACTIONS(2825), - [anon_sym_SLASH2] = ACTIONS(2823), - [anon_sym_mod2] = ACTIONS(2827), - [anon_sym_SLASH_SLASH2] = ACTIONS(2827), - [anon_sym_PLUS2] = ACTIONS(2846), - [anon_sym_bit_DASHshl2] = ACTIONS(2848), - [anon_sym_bit_DASHshr2] = ACTIONS(2848), - [anon_sym_bit_DASHand2] = ACTIONS(2551), - [anon_sym_bit_DASHxor2] = ACTIONS(2551), - [anon_sym_bit_DASHor2] = ACTIONS(2551), - [anon_sym_err_GT] = ACTIONS(2553), - [anon_sym_out_GT] = ACTIONS(2553), - [anon_sym_e_GT] = ACTIONS(2553), - [anon_sym_o_GT] = ACTIONS(2553), - [anon_sym_err_PLUSout_GT] = ACTIONS(2553), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2553), - [anon_sym_o_PLUSe_GT] = ACTIONS(2553), - [anon_sym_e_PLUSo_GT] = ACTIONS(2553), - [anon_sym_err_GT_GT] = ACTIONS(2551), - [anon_sym_out_GT_GT] = ACTIONS(2551), - [anon_sym_e_GT_GT] = ACTIONS(2551), - [anon_sym_o_GT_GT] = ACTIONS(2551), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2551), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2551), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2551), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2551), + [anon_sym_in] = ACTIONS(2798), + [sym__newline] = ACTIONS(2850), + [anon_sym_SEMI] = ACTIONS(2798), + [anon_sym_PIPE] = ACTIONS(2798), + [anon_sym_err_GT_PIPE] = ACTIONS(2798), + [anon_sym_out_GT_PIPE] = ACTIONS(2798), + [anon_sym_e_GT_PIPE] = ACTIONS(2798), + [anon_sym_o_GT_PIPE] = ACTIONS(2798), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2798), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2798), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2798), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2798), + [anon_sym_RPAREN] = ACTIONS(2798), + [anon_sym_GT2] = ACTIONS(2800), + [anon_sym_DASH2] = ACTIONS(2798), + [anon_sym_STAR2] = ACTIONS(2800), + [anon_sym_and2] = ACTIONS(2798), + [anon_sym_xor2] = ACTIONS(2798), + [anon_sym_or2] = ACTIONS(2798), + [anon_sym_not_DASHin2] = ACTIONS(2798), + [anon_sym_has2] = ACTIONS(2798), + [anon_sym_not_DASHhas2] = ACTIONS(2798), + [anon_sym_starts_DASHwith2] = ACTIONS(2798), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2798), + [anon_sym_ends_DASHwith2] = ACTIONS(2798), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2798), + [anon_sym_EQ_EQ2] = ACTIONS(2798), + [anon_sym_BANG_EQ2] = ACTIONS(2798), + [anon_sym_LT2] = ACTIONS(2800), + [anon_sym_LT_EQ2] = ACTIONS(2798), + [anon_sym_GT_EQ2] = ACTIONS(2798), + [anon_sym_EQ_TILDE2] = ACTIONS(2798), + [anon_sym_BANG_TILDE2] = ACTIONS(2798), + [anon_sym_like2] = ACTIONS(2798), + [anon_sym_not_DASHlike2] = ACTIONS(2798), + [anon_sym_STAR_STAR2] = ACTIONS(2861), + [anon_sym_PLUS_PLUS2] = ACTIONS(2861), + [anon_sym_SLASH2] = ACTIONS(2800), + [anon_sym_mod2] = ACTIONS(2798), + [anon_sym_SLASH_SLASH2] = ACTIONS(2798), + [anon_sym_PLUS2] = ACTIONS(2800), + [anon_sym_bit_DASHshl2] = ACTIONS(2798), + [anon_sym_bit_DASHshr2] = ACTIONS(2798), + [anon_sym_bit_DASHand2] = ACTIONS(2798), + [anon_sym_bit_DASHxor2] = ACTIONS(2798), + [anon_sym_bit_DASHor2] = ACTIONS(2798), + [anon_sym_err_GT] = ACTIONS(2800), + [anon_sym_out_GT] = ACTIONS(2800), + [anon_sym_e_GT] = ACTIONS(2800), + [anon_sym_o_GT] = ACTIONS(2800), + [anon_sym_err_PLUSout_GT] = ACTIONS(2800), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2800), + [anon_sym_o_PLUSe_GT] = ACTIONS(2800), + [anon_sym_e_PLUSo_GT] = ACTIONS(2800), + [anon_sym_err_GT_GT] = ACTIONS(2798), + [anon_sym_out_GT_GT] = ACTIONS(2798), + [anon_sym_e_GT_GT] = ACTIONS(2798), + [anon_sym_o_GT_GT] = ACTIONS(2798), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2798), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2798), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2798), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2798), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1266)] = { - [aux_sym__repeat_newline] = STATE(527), + [aux_sym__repeat_newline] = STATE(485), [sym_comment] = STATE(1266), - [anon_sym_in] = ACTIONS(2927), - [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(2911), - [anon_sym_DASH2] = ACTIONS(2913), - [anon_sym_STAR2] = ACTIONS(2915), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2927), - [anon_sym_has2] = ACTIONS(2927), - [anon_sym_not_DASHhas2] = ACTIONS(2927), - [anon_sym_starts_DASHwith2] = ACTIONS(2927), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2927), - [anon_sym_ends_DASHwith2] = ACTIONS(2927), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2927), - [anon_sym_EQ_EQ2] = ACTIONS(2917), - [anon_sym_BANG_EQ2] = ACTIONS(2917), - [anon_sym_LT2] = ACTIONS(2911), - [anon_sym_LT_EQ2] = ACTIONS(2917), - [anon_sym_GT_EQ2] = ACTIONS(2917), - [anon_sym_EQ_TILDE2] = ACTIONS(2929), - [anon_sym_BANG_TILDE2] = ACTIONS(2929), - [anon_sym_like2] = ACTIONS(2929), - [anon_sym_not_DASHlike2] = ACTIONS(2929), - [anon_sym_STAR_STAR2] = ACTIONS(2919), - [anon_sym_PLUS_PLUS2] = ACTIONS(2919), - [anon_sym_SLASH2] = ACTIONS(2915), - [anon_sym_mod2] = ACTIONS(2921), - [anon_sym_SLASH_SLASH2] = ACTIONS(2921), - [anon_sym_PLUS2] = ACTIONS(2923), - [anon_sym_bit_DASHshl2] = ACTIONS(2925), - [anon_sym_bit_DASHshr2] = ACTIONS(2925), - [anon_sym_bit_DASHand2] = ACTIONS(2931), - [anon_sym_bit_DASHxor2] = ACTIONS(2933), - [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(2824), + [sym__newline] = ACTIONS(2818), + [anon_sym_SEMI] = ACTIONS(2818), + [anon_sym_PIPE] = ACTIONS(2818), + [anon_sym_err_GT_PIPE] = ACTIONS(2818), + [anon_sym_out_GT_PIPE] = ACTIONS(2818), + [anon_sym_e_GT_PIPE] = ACTIONS(2818), + [anon_sym_o_GT_PIPE] = ACTIONS(2818), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2818), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2818), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2818), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2818), + [anon_sym_RPAREN] = ACTIONS(2818), + [anon_sym_GT2] = ACTIONS(2826), + [anon_sym_DASH2] = ACTIONS(2828), + [anon_sym_STAR2] = ACTIONS(2830), + [anon_sym_and2] = ACTIONS(2818), + [anon_sym_xor2] = ACTIONS(2818), + [anon_sym_or2] = ACTIONS(2818), + [anon_sym_not_DASHin2] = ACTIONS(2824), + [anon_sym_has2] = ACTIONS(2824), + [anon_sym_not_DASHhas2] = ACTIONS(2824), + [anon_sym_starts_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2824), + [anon_sym_ends_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2824), + [anon_sym_EQ_EQ2] = ACTIONS(2832), + [anon_sym_BANG_EQ2] = ACTIONS(2832), + [anon_sym_LT2] = ACTIONS(2826), + [anon_sym_LT_EQ2] = ACTIONS(2832), + [anon_sym_GT_EQ2] = ACTIONS(2832), + [anon_sym_EQ_TILDE2] = ACTIONS(2834), + [anon_sym_BANG_TILDE2] = ACTIONS(2834), + [anon_sym_like2] = ACTIONS(2834), + [anon_sym_not_DASHlike2] = ACTIONS(2834), + [anon_sym_STAR_STAR2] = ACTIONS(2836), + [anon_sym_PLUS_PLUS2] = ACTIONS(2836), + [anon_sym_SLASH2] = ACTIONS(2830), + [anon_sym_mod2] = ACTIONS(2838), + [anon_sym_SLASH_SLASH2] = ACTIONS(2838), + [anon_sym_PLUS2] = ACTIONS(2840), + [anon_sym_bit_DASHshl2] = ACTIONS(2842), + [anon_sym_bit_DASHshr2] = ACTIONS(2842), + [anon_sym_bit_DASHand2] = ACTIONS(2818), + [anon_sym_bit_DASHxor2] = ACTIONS(2818), + [anon_sym_bit_DASHor2] = ACTIONS(2818), + [anon_sym_err_GT] = ACTIONS(2820), + [anon_sym_out_GT] = ACTIONS(2820), + [anon_sym_e_GT] = ACTIONS(2820), + [anon_sym_o_GT] = ACTIONS(2820), + [anon_sym_err_PLUSout_GT] = ACTIONS(2820), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2820), + [anon_sym_o_PLUSe_GT] = ACTIONS(2820), + [anon_sym_e_PLUSo_GT] = ACTIONS(2820), + [anon_sym_err_GT_GT] = ACTIONS(2818), + [anon_sym_out_GT_GT] = ACTIONS(2818), + [anon_sym_e_GT_GT] = ACTIONS(2818), + [anon_sym_o_GT_GT] = ACTIONS(2818), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2818), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2818), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2818), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2818), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1267)] = { - [sym__expression] = STATE(4910), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), - [sym__expr_binary_expression] = STATE(2253), - [sym_expr_parenthesized] = STATE(704), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1861), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), + [aux_sym__repeat_newline] = STATE(1228), [sym_comment] = STATE(1267), - [aux_sym_cmd_identifier_token2] = ACTIONS(2555), - [anon_sym_true] = ACTIONS(2557), - [anon_sym_false] = ACTIONS(2557), - [anon_sym_null] = ACTIONS(2559), - [aux_sym_cmd_identifier_token3] = ACTIONS(2561), - [aux_sym_cmd_identifier_token4] = ACTIONS(2561), - [aux_sym_cmd_identifier_token5] = ACTIONS(2561), + [anon_sym_in] = ACTIONS(2872), + [sym__newline] = ACTIONS(2874), + [anon_sym_SEMI] = ACTIONS(2788), + [anon_sym_PIPE] = ACTIONS(2788), + [anon_sym_err_GT_PIPE] = ACTIONS(2788), + [anon_sym_out_GT_PIPE] = ACTIONS(2788), + [anon_sym_e_GT_PIPE] = ACTIONS(2788), + [anon_sym_o_GT_PIPE] = ACTIONS(2788), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2788), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2788), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2788), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2788), + [anon_sym_RPAREN] = ACTIONS(2788), + [anon_sym_GT2] = ACTIONS(2853), + [anon_sym_DASH2] = ACTIONS(2855), + [anon_sym_STAR2] = ACTIONS(2857), + [anon_sym_and2] = ACTIONS(2788), + [anon_sym_xor2] = ACTIONS(2788), + [anon_sym_or2] = ACTIONS(2788), + [anon_sym_not_DASHin2] = ACTIONS(2872), + [anon_sym_has2] = ACTIONS(2872), + [anon_sym_not_DASHhas2] = ACTIONS(2872), + [anon_sym_starts_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2872), + [anon_sym_ends_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2872), + [anon_sym_EQ_EQ2] = ACTIONS(2859), + [anon_sym_BANG_EQ2] = ACTIONS(2859), + [anon_sym_LT2] = ACTIONS(2853), + [anon_sym_LT_EQ2] = ACTIONS(2859), + [anon_sym_GT_EQ2] = ACTIONS(2859), + [anon_sym_EQ_TILDE2] = ACTIONS(2879), + [anon_sym_BANG_TILDE2] = ACTIONS(2879), + [anon_sym_like2] = ACTIONS(2879), + [anon_sym_not_DASHlike2] = ACTIONS(2879), + [anon_sym_STAR_STAR2] = ACTIONS(2861), + [anon_sym_PLUS_PLUS2] = ACTIONS(2861), + [anon_sym_SLASH2] = ACTIONS(2857), + [anon_sym_mod2] = ACTIONS(2863), + [anon_sym_SLASH_SLASH2] = ACTIONS(2863), + [anon_sym_PLUS2] = ACTIONS(2865), + [anon_sym_bit_DASHshl2] = ACTIONS(2867), + [anon_sym_bit_DASHshr2] = ACTIONS(2867), + [anon_sym_bit_DASHand2] = ACTIONS(2881), + [anon_sym_bit_DASHxor2] = ACTIONS(2788), + [anon_sym_bit_DASHor2] = ACTIONS(2788), + [anon_sym_err_GT] = ACTIONS(2790), + [anon_sym_out_GT] = ACTIONS(2790), + [anon_sym_e_GT] = ACTIONS(2790), + [anon_sym_o_GT] = ACTIONS(2790), + [anon_sym_err_PLUSout_GT] = ACTIONS(2790), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2790), + [anon_sym_o_PLUSe_GT] = ACTIONS(2790), + [anon_sym_e_PLUSo_GT] = ACTIONS(2790), + [anon_sym_err_GT_GT] = ACTIONS(2788), + [anon_sym_out_GT_GT] = ACTIONS(2788), + [anon_sym_e_GT_GT] = ACTIONS(2788), + [anon_sym_o_GT_GT] = ACTIONS(2788), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2788), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2788), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2788), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2788), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1268)] = { + [aux_sym__repeat_newline] = STATE(485), + [sym_comment] = STATE(1268), + [anon_sym_in] = ACTIONS(2824), + [sym__newline] = ACTIONS(2818), + [anon_sym_SEMI] = ACTIONS(2818), + [anon_sym_PIPE] = ACTIONS(2818), + [anon_sym_err_GT_PIPE] = ACTIONS(2818), + [anon_sym_out_GT_PIPE] = ACTIONS(2818), + [anon_sym_e_GT_PIPE] = ACTIONS(2818), + [anon_sym_o_GT_PIPE] = ACTIONS(2818), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2818), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2818), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2818), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2818), + [anon_sym_RPAREN] = ACTIONS(2818), + [anon_sym_GT2] = ACTIONS(2826), + [anon_sym_DASH2] = ACTIONS(2828), + [anon_sym_STAR2] = ACTIONS(2830), + [anon_sym_and2] = ACTIONS(2818), + [anon_sym_xor2] = ACTIONS(2818), + [anon_sym_or2] = ACTIONS(2818), + [anon_sym_not_DASHin2] = ACTIONS(2824), + [anon_sym_has2] = ACTIONS(2824), + [anon_sym_not_DASHhas2] = ACTIONS(2824), + [anon_sym_starts_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2824), + [anon_sym_ends_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2824), + [anon_sym_EQ_EQ2] = ACTIONS(2832), + [anon_sym_BANG_EQ2] = ACTIONS(2832), + [anon_sym_LT2] = ACTIONS(2826), + [anon_sym_LT_EQ2] = ACTIONS(2832), + [anon_sym_GT_EQ2] = ACTIONS(2832), + [anon_sym_EQ_TILDE2] = ACTIONS(2834), + [anon_sym_BANG_TILDE2] = ACTIONS(2834), + [anon_sym_like2] = ACTIONS(2834), + [anon_sym_not_DASHlike2] = ACTIONS(2834), + [anon_sym_STAR_STAR2] = ACTIONS(2836), + [anon_sym_PLUS_PLUS2] = ACTIONS(2836), + [anon_sym_SLASH2] = ACTIONS(2830), + [anon_sym_mod2] = ACTIONS(2838), + [anon_sym_SLASH_SLASH2] = ACTIONS(2838), + [anon_sym_PLUS2] = ACTIONS(2840), + [anon_sym_bit_DASHshl2] = ACTIONS(2842), + [anon_sym_bit_DASHshr2] = ACTIONS(2842), + [anon_sym_bit_DASHand2] = ACTIONS(2844), + [anon_sym_bit_DASHxor2] = ACTIONS(2818), + [anon_sym_bit_DASHor2] = ACTIONS(2818), + [anon_sym_err_GT] = ACTIONS(2820), + [anon_sym_out_GT] = ACTIONS(2820), + [anon_sym_e_GT] = ACTIONS(2820), + [anon_sym_o_GT] = ACTIONS(2820), + [anon_sym_err_PLUSout_GT] = ACTIONS(2820), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2820), + [anon_sym_o_PLUSe_GT] = ACTIONS(2820), + [anon_sym_e_PLUSo_GT] = ACTIONS(2820), + [anon_sym_err_GT_GT] = ACTIONS(2818), + [anon_sym_out_GT_GT] = ACTIONS(2818), + [anon_sym_e_GT_GT] = ACTIONS(2818), + [anon_sym_o_GT_GT] = ACTIONS(2818), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2818), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2818), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2818), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2818), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1269)] = { + [aux_sym__repeat_newline] = STATE(1170), + [sym_comment] = STATE(1269), + [anon_sym_in] = ACTIONS(2872), + [sym__newline] = ACTIONS(2874), + [anon_sym_SEMI] = ACTIONS(2788), + [anon_sym_PIPE] = ACTIONS(2788), + [anon_sym_err_GT_PIPE] = ACTIONS(2788), + [anon_sym_out_GT_PIPE] = ACTIONS(2788), + [anon_sym_e_GT_PIPE] = ACTIONS(2788), + [anon_sym_o_GT_PIPE] = ACTIONS(2788), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2788), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2788), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2788), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2788), + [anon_sym_RPAREN] = ACTIONS(2788), + [anon_sym_GT2] = ACTIONS(2853), + [anon_sym_DASH2] = ACTIONS(2855), + [anon_sym_STAR2] = ACTIONS(2857), + [anon_sym_and2] = ACTIONS(2788), + [anon_sym_xor2] = ACTIONS(2788), + [anon_sym_or2] = ACTIONS(2788), + [anon_sym_not_DASHin2] = ACTIONS(2872), + [anon_sym_has2] = ACTIONS(2872), + [anon_sym_not_DASHhas2] = ACTIONS(2872), + [anon_sym_starts_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2872), + [anon_sym_ends_DASHwith2] = ACTIONS(2872), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2872), + [anon_sym_EQ_EQ2] = ACTIONS(2859), + [anon_sym_BANG_EQ2] = ACTIONS(2859), + [anon_sym_LT2] = ACTIONS(2853), + [anon_sym_LT_EQ2] = ACTIONS(2859), + [anon_sym_GT_EQ2] = ACTIONS(2859), + [anon_sym_EQ_TILDE2] = ACTIONS(2879), + [anon_sym_BANG_TILDE2] = ACTIONS(2879), + [anon_sym_like2] = ACTIONS(2879), + [anon_sym_not_DASHlike2] = ACTIONS(2879), + [anon_sym_STAR_STAR2] = ACTIONS(2861), + [anon_sym_PLUS_PLUS2] = ACTIONS(2861), + [anon_sym_SLASH2] = ACTIONS(2857), + [anon_sym_mod2] = ACTIONS(2863), + [anon_sym_SLASH_SLASH2] = ACTIONS(2863), + [anon_sym_PLUS2] = ACTIONS(2865), + [anon_sym_bit_DASHshl2] = ACTIONS(2867), + [anon_sym_bit_DASHshr2] = ACTIONS(2867), + [anon_sym_bit_DASHand2] = ACTIONS(2881), + [anon_sym_bit_DASHxor2] = ACTIONS(2883), + [anon_sym_bit_DASHor2] = ACTIONS(2885), + [anon_sym_err_GT] = ACTIONS(2790), + [anon_sym_out_GT] = ACTIONS(2790), + [anon_sym_e_GT] = ACTIONS(2790), + [anon_sym_o_GT] = ACTIONS(2790), + [anon_sym_err_PLUSout_GT] = ACTIONS(2790), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2790), + [anon_sym_o_PLUSe_GT] = ACTIONS(2790), + [anon_sym_e_PLUSo_GT] = ACTIONS(2790), + [anon_sym_err_GT_GT] = ACTIONS(2788), + [anon_sym_out_GT_GT] = ACTIONS(2788), + [anon_sym_e_GT_GT] = ACTIONS(2788), + [anon_sym_o_GT_GT] = ACTIONS(2788), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2788), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2788), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2788), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2788), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1270)] = { + [sym__expression] = STATE(5032), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), + [sym__expr_binary_expression] = STATE(2246), + [sym_expr_parenthesized] = STATE(724), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1886), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_comment] = STATE(1270), + [aux_sym_cmd_identifier_token2] = ACTIONS(2594), + [anon_sym_true] = ACTIONS(2596), + [anon_sym_false] = ACTIONS(2596), + [anon_sym_null] = ACTIONS(2598), + [aux_sym_cmd_identifier_token3] = ACTIONS(2600), + [aux_sym_cmd_identifier_token4] = ACTIONS(2600), + [aux_sym_cmd_identifier_token5] = ACTIONS(2600), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [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(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(2565), - [aux_sym__val_number_decimal_token4] = ACTIONS(2565), - [aux_sym__val_number_token1] = ACTIONS(2561), - [aux_sym__val_number_token2] = ACTIONS(2561), - [aux_sym__val_number_token3] = ACTIONS(2561), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2006), + [aux_sym__val_number_decimal_token3] = ACTIONS(2604), + [aux_sym__val_number_decimal_token4] = ACTIONS(2604), + [aux_sym__val_number_token1] = ACTIONS(2600), + [aux_sym__val_number_token2] = ACTIONS(2600), + [aux_sym__val_number_token3] = ACTIONS(2600), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2567), + [sym_val_date] = ACTIONS(2606), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -140203,65 +141282,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(103), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(1268)] = { - [sym__expression] = STATE(4921), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), - [sym__expr_binary_expression] = STATE(2253), - [sym_expr_parenthesized] = STATE(704), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1861), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_comment] = STATE(1268), - [aux_sym_cmd_identifier_token2] = ACTIONS(2555), - [anon_sym_true] = ACTIONS(2557), - [anon_sym_false] = ACTIONS(2557), - [anon_sym_null] = ACTIONS(2559), - [aux_sym_cmd_identifier_token3] = ACTIONS(2561), - [aux_sym_cmd_identifier_token4] = ACTIONS(2561), - [aux_sym_cmd_identifier_token5] = ACTIONS(2561), + [STATE(1271)] = { + [sym__expression] = STATE(5047), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), + [sym__expr_binary_expression] = STATE(2246), + [sym_expr_parenthesized] = STATE(724), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1886), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_comment] = STATE(1271), + [aux_sym_cmd_identifier_token2] = ACTIONS(2594), + [anon_sym_true] = ACTIONS(2596), + [anon_sym_false] = ACTIONS(2596), + [anon_sym_null] = ACTIONS(2598), + [aux_sym_cmd_identifier_token3] = ACTIONS(2600), + [aux_sym_cmd_identifier_token4] = ACTIONS(2600), + [aux_sym_cmd_identifier_token5] = ACTIONS(2600), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [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(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(2565), - [aux_sym__val_number_decimal_token4] = ACTIONS(2565), - [aux_sym__val_number_token1] = ACTIONS(2561), - [aux_sym__val_number_token2] = ACTIONS(2561), - [aux_sym__val_number_token3] = ACTIONS(2561), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2006), + [aux_sym__val_number_decimal_token3] = ACTIONS(2604), + [aux_sym__val_number_decimal_token4] = ACTIONS(2604), + [aux_sym__val_number_token1] = ACTIONS(2600), + [aux_sym__val_number_token2] = ACTIONS(2600), + [aux_sym__val_number_token3] = ACTIONS(2600), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2567), + [sym_val_date] = ACTIONS(2606), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -140270,65 +141349,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(103), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(1269)] = { - [sym__expression] = STATE(4923), - [sym_expr_unary] = STATE(947), - [sym__expr_unary_minus] = STATE(948), - [sym_expr_binary] = STATE(947), - [sym__expr_binary_expression] = STATE(2253), - [sym_expr_parenthesized] = STATE(704), - [sym_val_range] = STATE(947), - [sym__value] = STATE(947), - [sym_val_nothing] = STATE(946), - [sym_val_bool] = STATE(946), - [sym_val_variable] = STATE(713), - [sym_val_cellpath] = STATE(946), - [sym_val_number] = STATE(946), - [sym__val_number_decimal] = STATE(1861), - [sym__val_number] = STATE(707), - [sym_val_duration] = STATE(946), - [sym_val_filesize] = STATE(946), - [sym_val_binary] = STATE(946), - [sym_val_string] = STATE(946), - [sym__raw_str] = STATE(426), - [sym__str_double_quotes] = STATE(426), - [sym__str_single_quotes] = STATE(426), - [sym__str_back_ticks] = STATE(426), - [sym_val_interpolated] = STATE(946), - [sym__inter_single_quotes] = STATE(749), - [sym__inter_double_quotes] = STATE(750), - [sym_val_list] = STATE(946), - [sym_val_record] = STATE(946), - [sym_val_table] = STATE(946), - [sym_val_closure] = STATE(946), - [sym_comment] = STATE(1269), - [aux_sym_cmd_identifier_token2] = ACTIONS(2555), - [anon_sym_true] = ACTIONS(2557), - [anon_sym_false] = ACTIONS(2557), - [anon_sym_null] = ACTIONS(2559), - [aux_sym_cmd_identifier_token3] = ACTIONS(2561), - [aux_sym_cmd_identifier_token4] = ACTIONS(2561), - [aux_sym_cmd_identifier_token5] = ACTIONS(2561), + [STATE(1272)] = { + [sym__expression] = STATE(5051), + [sym_expr_unary] = STATE(932), + [sym__expr_unary_minus] = STATE(959), + [sym_expr_binary] = STATE(932), + [sym__expr_binary_expression] = STATE(2246), + [sym_expr_parenthesized] = STATE(724), + [sym_val_range] = STATE(932), + [sym__value] = STATE(932), + [sym_val_nothing] = STATE(970), + [sym_val_bool] = STATE(970), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(970), + [sym_val_number] = STATE(970), + [sym__val_number_decimal] = STATE(1886), + [sym__val_number] = STATE(710), + [sym_val_duration] = STATE(970), + [sym_val_filesize] = STATE(970), + [sym_val_binary] = STATE(970), + [sym_val_string] = STATE(970), + [sym__raw_str] = STATE(418), + [sym__str_double_quotes] = STATE(418), + [sym__str_single_quotes] = STATE(418), + [sym__str_back_ticks] = STATE(418), + [sym_val_interpolated] = STATE(970), + [sym__inter_single_quotes] = STATE(808), + [sym__inter_double_quotes] = STATE(809), + [sym_val_list] = STATE(970), + [sym_val_record] = STATE(970), + [sym_val_table] = STATE(970), + [sym_val_closure] = STATE(970), + [sym_comment] = STATE(1272), + [aux_sym_cmd_identifier_token2] = ACTIONS(2594), + [anon_sym_true] = ACTIONS(2596), + [anon_sym_false] = ACTIONS(2596), + [anon_sym_null] = ACTIONS(2598), + [aux_sym_cmd_identifier_token3] = ACTIONS(2600), + [aux_sym_cmd_identifier_token4] = ACTIONS(2600), + [aux_sym_cmd_identifier_token5] = ACTIONS(2600), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(998), [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(1928), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(2565), - [aux_sym__val_number_decimal_token4] = ACTIONS(2565), - [aux_sym__val_number_token1] = ACTIONS(2561), - [aux_sym__val_number_token2] = ACTIONS(2561), - [aux_sym__val_number_token3] = ACTIONS(2561), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2006), + [aux_sym__val_number_decimal_token3] = ACTIONS(2604), + [aux_sym__val_number_decimal_token4] = ACTIONS(2604), + [aux_sym__val_number_token1] = ACTIONS(2600), + [aux_sym__val_number_token2] = ACTIONS(2600), + [aux_sym__val_number_token3] = ACTIONS(2600), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2567), + [sym_val_date] = ACTIONS(2606), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -140337,71 +141416,272 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(103), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(1270)] = { - [aux_sym__repeat_newline] = STATE(1239), - [sym_comment] = STATE(1270), - [anon_sym_in] = ACTIONS(2895), - [sym__newline] = ACTIONS(2907), - [anon_sym_SEMI] = ACTIONS(2746), - [anon_sym_PIPE] = ACTIONS(2746), - [anon_sym_err_GT_PIPE] = ACTIONS(2746), - [anon_sym_out_GT_PIPE] = ACTIONS(2746), - [anon_sym_e_GT_PIPE] = ACTIONS(2746), - [anon_sym_o_GT_PIPE] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2746), - [anon_sym_RPAREN] = ACTIONS(2746), - [anon_sym_GT2] = ACTIONS(2807), - [anon_sym_DASH2] = ACTIONS(2809), - [anon_sym_STAR2] = ACTIONS(2811), - [anon_sym_and2] = ACTIONS(2905), - [anon_sym_xor2] = ACTIONS(2909), - [anon_sym_or2] = ACTIONS(2746), - [anon_sym_not_DASHin2] = ACTIONS(2895), - [anon_sym_has2] = ACTIONS(2895), - [anon_sym_not_DASHhas2] = ACTIONS(2895), - [anon_sym_starts_DASHwith2] = ACTIONS(2895), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2895), - [anon_sym_ends_DASHwith2] = ACTIONS(2895), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2895), - [anon_sym_EQ_EQ2] = ACTIONS(2813), - [anon_sym_BANG_EQ2] = ACTIONS(2813), - [anon_sym_LT2] = ACTIONS(2807), - [anon_sym_LT_EQ2] = ACTIONS(2813), - [anon_sym_GT_EQ2] = ACTIONS(2813), - [anon_sym_EQ_TILDE2] = ACTIONS(2897), - [anon_sym_BANG_TILDE2] = ACTIONS(2897), - [anon_sym_like2] = ACTIONS(2897), - [anon_sym_not_DASHlike2] = ACTIONS(2897), - [anon_sym_STAR_STAR2] = ACTIONS(2815), - [anon_sym_PLUS_PLUS2] = ACTIONS(2815), - [anon_sym_SLASH2] = ACTIONS(2811), - [anon_sym_mod2] = ACTIONS(2817), - [anon_sym_SLASH_SLASH2] = ACTIONS(2817), - [anon_sym_PLUS2] = ACTIONS(2819), - [anon_sym_bit_DASHshl2] = ACTIONS(2821), - [anon_sym_bit_DASHshr2] = ACTIONS(2821), - [anon_sym_bit_DASHand2] = ACTIONS(2899), - [anon_sym_bit_DASHxor2] = ACTIONS(2901), - [anon_sym_bit_DASHor2] = ACTIONS(2903), - [anon_sym_err_GT] = ACTIONS(2748), - [anon_sym_out_GT] = ACTIONS(2748), - [anon_sym_e_GT] = ACTIONS(2748), - [anon_sym_o_GT] = ACTIONS(2748), - [anon_sym_err_PLUSout_GT] = ACTIONS(2748), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2748), - [anon_sym_o_PLUSe_GT] = ACTIONS(2748), - [anon_sym_e_PLUSo_GT] = ACTIONS(2748), - [anon_sym_err_GT_GT] = ACTIONS(2746), - [anon_sym_out_GT_GT] = ACTIONS(2746), - [anon_sym_e_GT_GT] = ACTIONS(2746), - [anon_sym_o_GT_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2746), + [STATE(1273)] = { + [aux_sym__repeat_newline] = STATE(1262), + [sym_comment] = STATE(1273), + [anon_sym_in] = ACTIONS(2788), + [sym__newline] = ACTIONS(2874), + [anon_sym_SEMI] = ACTIONS(2788), + [anon_sym_PIPE] = ACTIONS(2788), + [anon_sym_err_GT_PIPE] = ACTIONS(2788), + [anon_sym_out_GT_PIPE] = ACTIONS(2788), + [anon_sym_e_GT_PIPE] = ACTIONS(2788), + [anon_sym_o_GT_PIPE] = ACTIONS(2788), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2788), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2788), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2788), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2788), + [anon_sym_RPAREN] = ACTIONS(2788), + [anon_sym_GT2] = ACTIONS(2853), + [anon_sym_DASH2] = ACTIONS(2855), + [anon_sym_STAR2] = ACTIONS(2857), + [anon_sym_and2] = ACTIONS(2788), + [anon_sym_xor2] = ACTIONS(2788), + [anon_sym_or2] = ACTIONS(2788), + [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(2859), + [anon_sym_BANG_EQ2] = ACTIONS(2859), + [anon_sym_LT2] = ACTIONS(2853), + [anon_sym_LT_EQ2] = ACTIONS(2859), + [anon_sym_GT_EQ2] = ACTIONS(2859), + [anon_sym_EQ_TILDE2] = ACTIONS(2788), + [anon_sym_BANG_TILDE2] = ACTIONS(2788), + [anon_sym_like2] = ACTIONS(2788), + [anon_sym_not_DASHlike2] = ACTIONS(2788), + [anon_sym_STAR_STAR2] = ACTIONS(2861), + [anon_sym_PLUS_PLUS2] = ACTIONS(2861), + [anon_sym_SLASH2] = ACTIONS(2857), + [anon_sym_mod2] = ACTIONS(2863), + [anon_sym_SLASH_SLASH2] = ACTIONS(2863), + [anon_sym_PLUS2] = ACTIONS(2865), + [anon_sym_bit_DASHshl2] = ACTIONS(2867), + [anon_sym_bit_DASHshr2] = ACTIONS(2867), + [anon_sym_bit_DASHand2] = ACTIONS(2788), + [anon_sym_bit_DASHxor2] = ACTIONS(2788), + [anon_sym_bit_DASHor2] = ACTIONS(2788), + [anon_sym_err_GT] = ACTIONS(2790), + [anon_sym_out_GT] = ACTIONS(2790), + [anon_sym_e_GT] = ACTIONS(2790), + [anon_sym_o_GT] = ACTIONS(2790), + [anon_sym_err_PLUSout_GT] = ACTIONS(2790), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2790), + [anon_sym_o_PLUSe_GT] = ACTIONS(2790), + [anon_sym_e_PLUSo_GT] = ACTIONS(2790), + [anon_sym_err_GT_GT] = ACTIONS(2788), + [anon_sym_out_GT_GT] = ACTIONS(2788), + [anon_sym_e_GT_GT] = ACTIONS(2788), + [anon_sym_o_GT_GT] = ACTIONS(2788), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2788), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2788), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2788), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2788), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1274)] = { + [aux_sym__repeat_newline] = STATE(485), + [sym_comment] = STATE(1274), + [anon_sym_in] = ACTIONS(2824), + [sym__newline] = ACTIONS(2794), + [anon_sym_SEMI] = ACTIONS(2794), + [anon_sym_PIPE] = ACTIONS(2794), + [anon_sym_err_GT_PIPE] = ACTIONS(2794), + [anon_sym_out_GT_PIPE] = ACTIONS(2794), + [anon_sym_e_GT_PIPE] = ACTIONS(2794), + [anon_sym_o_GT_PIPE] = ACTIONS(2794), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2794), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2794), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2794), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2794), + [anon_sym_RPAREN] = ACTIONS(2794), + [anon_sym_GT2] = ACTIONS(2826), + [anon_sym_DASH2] = ACTIONS(2828), + [anon_sym_STAR2] = ACTIONS(2830), + [anon_sym_and2] = ACTIONS(2794), + [anon_sym_xor2] = ACTIONS(2794), + [anon_sym_or2] = ACTIONS(2794), + [anon_sym_not_DASHin2] = ACTIONS(2824), + [anon_sym_has2] = ACTIONS(2824), + [anon_sym_not_DASHhas2] = ACTIONS(2824), + [anon_sym_starts_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2824), + [anon_sym_ends_DASHwith2] = ACTIONS(2824), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2824), + [anon_sym_EQ_EQ2] = ACTIONS(2832), + [anon_sym_BANG_EQ2] = ACTIONS(2832), + [anon_sym_LT2] = ACTIONS(2826), + [anon_sym_LT_EQ2] = ACTIONS(2832), + [anon_sym_GT_EQ2] = ACTIONS(2832), + [anon_sym_EQ_TILDE2] = ACTIONS(2834), + [anon_sym_BANG_TILDE2] = ACTIONS(2834), + [anon_sym_like2] = ACTIONS(2834), + [anon_sym_not_DASHlike2] = ACTIONS(2834), + [anon_sym_STAR_STAR2] = ACTIONS(2836), + [anon_sym_PLUS_PLUS2] = ACTIONS(2836), + [anon_sym_SLASH2] = ACTIONS(2830), + [anon_sym_mod2] = ACTIONS(2838), + [anon_sym_SLASH_SLASH2] = ACTIONS(2838), + [anon_sym_PLUS2] = ACTIONS(2840), + [anon_sym_bit_DASHshl2] = ACTIONS(2842), + [anon_sym_bit_DASHshr2] = ACTIONS(2842), + [anon_sym_bit_DASHand2] = ACTIONS(2844), + [anon_sym_bit_DASHxor2] = ACTIONS(2794), + [anon_sym_bit_DASHor2] = ACTIONS(2794), + [anon_sym_err_GT] = ACTIONS(2796), + [anon_sym_out_GT] = ACTIONS(2796), + [anon_sym_e_GT] = ACTIONS(2796), + [anon_sym_o_GT] = ACTIONS(2796), + [anon_sym_err_PLUSout_GT] = ACTIONS(2796), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2796), + [anon_sym_o_PLUSe_GT] = ACTIONS(2796), + [anon_sym_e_PLUSo_GT] = ACTIONS(2796), + [anon_sym_err_GT_GT] = ACTIONS(2794), + [anon_sym_out_GT_GT] = ACTIONS(2794), + [anon_sym_e_GT_GT] = ACTIONS(2794), + [anon_sym_o_GT_GT] = ACTIONS(2794), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2794), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2794), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2794), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2794), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1275)] = { + [sym_comment] = STATE(1275), + [ts_builtin_sym_end] = ACTIONS(2551), + [anon_sym_finally] = ACTIONS(2551), + [anon_sym_in] = ACTIONS(2551), + [sym__newline] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(2551), + [anon_sym_PIPE] = ACTIONS(2551), + [anon_sym_err_GT_PIPE] = ACTIONS(2551), + [anon_sym_out_GT_PIPE] = ACTIONS(2551), + [anon_sym_e_GT_PIPE] = ACTIONS(2551), + [anon_sym_o_GT_PIPE] = ACTIONS(2551), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2551), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2551), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2551), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2551), + [anon_sym_GT2] = ACTIONS(2553), + [anon_sym_DASH2] = ACTIONS(2551), + [anon_sym_STAR2] = ACTIONS(2553), + [anon_sym_and2] = ACTIONS(2551), + [anon_sym_xor2] = ACTIONS(2551), + [anon_sym_or2] = ACTIONS(2551), + [anon_sym_not_DASHin2] = ACTIONS(2551), + [anon_sym_has2] = ACTIONS(2551), + [anon_sym_not_DASHhas2] = ACTIONS(2551), + [anon_sym_starts_DASHwith2] = ACTIONS(2551), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2551), + [anon_sym_ends_DASHwith2] = ACTIONS(2551), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2551), + [anon_sym_EQ_EQ2] = ACTIONS(2551), + [anon_sym_BANG_EQ2] = ACTIONS(2551), + [anon_sym_LT2] = ACTIONS(2553), + [anon_sym_LT_EQ2] = ACTIONS(2551), + [anon_sym_GT_EQ2] = ACTIONS(2551), + [anon_sym_EQ_TILDE2] = ACTIONS(2551), + [anon_sym_BANG_TILDE2] = ACTIONS(2551), + [anon_sym_like2] = ACTIONS(2551), + [anon_sym_not_DASHlike2] = ACTIONS(2551), + [anon_sym_STAR_STAR2] = ACTIONS(2551), + [anon_sym_PLUS_PLUS2] = ACTIONS(2551), + [anon_sym_SLASH2] = ACTIONS(2553), + [anon_sym_mod2] = ACTIONS(2551), + [anon_sym_SLASH_SLASH2] = ACTIONS(2551), + [anon_sym_PLUS2] = ACTIONS(2553), + [anon_sym_bit_DASHshl2] = ACTIONS(2551), + [anon_sym_bit_DASHshr2] = ACTIONS(2551), + [anon_sym_bit_DASHand2] = ACTIONS(2551), + [anon_sym_bit_DASHxor2] = ACTIONS(2551), + [anon_sym_bit_DASHor2] = ACTIONS(2551), + [anon_sym_err_GT] = ACTIONS(2553), + [anon_sym_out_GT] = ACTIONS(2553), + [anon_sym_e_GT] = ACTIONS(2553), + [anon_sym_o_GT] = ACTIONS(2553), + [anon_sym_err_PLUSout_GT] = ACTIONS(2553), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2553), + [anon_sym_o_PLUSe_GT] = ACTIONS(2553), + [anon_sym_e_PLUSo_GT] = ACTIONS(2553), + [anon_sym_err_GT_GT] = ACTIONS(2551), + [anon_sym_out_GT_GT] = ACTIONS(2551), + [anon_sym_e_GT_GT] = ACTIONS(2551), + [anon_sym_o_GT_GT] = ACTIONS(2551), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2551), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2551), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2551), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2551), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1276)] = { + [aux_sym__repeat_newline] = STATE(1264), + [sym_comment] = STATE(1276), + [anon_sym_in] = ACTIONS(2806), + [sym__newline] = ACTIONS(2869), + [anon_sym_SEMI] = ACTIONS(2806), + [anon_sym_PIPE] = ACTIONS(2806), + [anon_sym_err_GT_PIPE] = ACTIONS(2806), + [anon_sym_out_GT_PIPE] = ACTIONS(2806), + [anon_sym_e_GT_PIPE] = ACTIONS(2806), + [anon_sym_o_GT_PIPE] = ACTIONS(2806), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2806), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2806), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2806), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2806), + [anon_sym_RPAREN] = ACTIONS(2806), + [anon_sym_GT2] = ACTIONS(2808), + [anon_sym_DASH2] = ACTIONS(2855), + [anon_sym_STAR2] = ACTIONS(2857), + [anon_sym_and2] = ACTIONS(2806), + [anon_sym_xor2] = ACTIONS(2806), + [anon_sym_or2] = ACTIONS(2806), + [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(2806), + [anon_sym_BANG_EQ2] = ACTIONS(2806), + [anon_sym_LT2] = ACTIONS(2808), + [anon_sym_LT_EQ2] = ACTIONS(2806), + [anon_sym_GT_EQ2] = ACTIONS(2806), + [anon_sym_EQ_TILDE2] = ACTIONS(2806), + [anon_sym_BANG_TILDE2] = ACTIONS(2806), + [anon_sym_like2] = ACTIONS(2806), + [anon_sym_not_DASHlike2] = ACTIONS(2806), + [anon_sym_STAR_STAR2] = ACTIONS(2861), + [anon_sym_PLUS_PLUS2] = ACTIONS(2861), + [anon_sym_SLASH2] = ACTIONS(2857), + [anon_sym_mod2] = ACTIONS(2863), + [anon_sym_SLASH_SLASH2] = ACTIONS(2863), + [anon_sym_PLUS2] = ACTIONS(2865), + [anon_sym_bit_DASHshl2] = ACTIONS(2806), + [anon_sym_bit_DASHshr2] = ACTIONS(2806), + [anon_sym_bit_DASHand2] = ACTIONS(2806), + [anon_sym_bit_DASHxor2] = ACTIONS(2806), + [anon_sym_bit_DASHor2] = ACTIONS(2806), + [anon_sym_err_GT] = ACTIONS(2808), + [anon_sym_out_GT] = ACTIONS(2808), + [anon_sym_e_GT] = ACTIONS(2808), + [anon_sym_o_GT] = ACTIONS(2808), + [anon_sym_err_PLUSout_GT] = ACTIONS(2808), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2808), + [anon_sym_o_PLUSe_GT] = ACTIONS(2808), + [anon_sym_e_PLUSo_GT] = ACTIONS(2808), + [anon_sym_err_GT_GT] = ACTIONS(2806), + [anon_sym_out_GT_GT] = ACTIONS(2806), + [anon_sym_e_GT_GT] = ACTIONS(2806), + [anon_sym_o_GT_GT] = ACTIONS(2806), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2806), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2806), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2806), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2806), [anon_sym_POUND] = ACTIONS(3), }, }; @@ -140410,9 +141690,180 @@ static const uint16_t ts_small_parse_table[] = { [0] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1271), 1, + STATE(1277), 1, + sym_comment, + ACTIONS(2479), 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(2477), 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, + [73] = 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(998), 1, + anon_sym_DOLLAR, + ACTIONS(2006), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(2008), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(2792), 1, + anon_sym_null, + STATE(705), 1, + sym_val_variable, + STATE(710), 1, + sym__val_number, + STATE(724), 1, + sym_expr_parenthesized, + STATE(808), 1, + sym__inter_single_quotes, + STATE(809), 1, + sym__inter_double_quotes, + STATE(959), 1, + sym__expr_unary_minus, + STATE(1278), 1, + sym_comment, + STATE(1886), 1, + sym__val_number_decimal, + STATE(2246), 1, + sym__expr_binary_expression, + STATE(4924), 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(1945), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2010), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(418), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(932), 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(970), 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, + [212] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1279), 1, sym_comment, - ACTIONS(2100), 13, + ACTIONS(2666), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -140426,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(2098), 49, + ACTIONS(2664), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140476,7 +141927,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, - [73] = 39, + [285] = 39, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2968), 1, @@ -140515,25 +141966,129 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__unquoted_in_record_token1, ACTIONS(3012), 1, sym_raw_string_begin, - STATE(1272), 1, + STATE(1280), 1, sym_comment, - STATE(2259), 1, + STATE(2256), 1, aux_sym__repeat_newline, - STATE(2492), 1, + STATE(2471), 1, sym__val_number_decimal, - STATE(2911), 1, + STATE(2958), 1, sym_expr_parenthesized, - STATE(3007), 1, + STATE(3008), 1, sym_val_variable, - STATE(3048), 1, + STATE(3046), 1, + sym__val_number, + STATE(3074), 1, sym__inter_single_quotes, - STATE(3049), 1, + STATE(3075), 1, sym__inter_double_quotes, - STATE(3092), 1, + STATE(3105), 1, + sym_val_bool, + STATE(3208), 1, + sym__unquoted_in_record, + ACTIONS(2966), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2984), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(2990), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(2996), 2, + anon_sym_0o, + anon_sym_0x, + STATE(4747), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(2970), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + ACTIONS(2992), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(3541), 3, + sym_val_range, + sym__value, + sym__unquoted_in_record_with_expr, + STATE(2643), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3044), 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, + [428] = 39, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2968), 1, + anon_sym_null, + ACTIONS(2972), 1, + sym__newline, + ACTIONS(2974), 1, + anon_sym_LBRACK, + ACTIONS(2976), 1, + anon_sym_LPAREN, + ACTIONS(2978), 1, + anon_sym_DOLLAR, + ACTIONS(2980), 1, + anon_sym_LBRACE, + ACTIONS(2982), 1, + anon_sym_DOT_DOT, + ACTIONS(2986), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(2988), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(2994), 1, + anon_sym_0b, + ACTIONS(2998), 1, + sym_val_date, + ACTIONS(3000), 1, + anon_sym_DQUOTE, + ACTIONS(3002), 1, + anon_sym_SQUOTE, + ACTIONS(3004), 1, + anon_sym_BQUOTE, + ACTIONS(3006), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3008), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3010), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(3012), 1, + sym_raw_string_begin, + STATE(1281), 1, + sym_comment, + STATE(1308), 1, + aux_sym__repeat_newline, + STATE(2471), 1, + sym__val_number_decimal, + STATE(2958), 1, + sym_expr_parenthesized, + STATE(3008), 1, + sym_val_variable, + STATE(3046), 1, sym__val_number, - STATE(3127), 1, + STATE(3074), 1, + sym__inter_single_quotes, + STATE(3075), 1, + sym__inter_double_quotes, + STATE(3105), 1, sym_val_bool, - STATE(3144), 1, + STATE(3208), 1, sym__unquoted_in_record, ACTIONS(2966), 2, anon_sym_true, @@ -140547,7 +142102,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2996), 2, anon_sym_0o, anon_sym_0x, - STATE(4601), 2, + STATE(4747), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(2970), 3, @@ -140558,16 +142113,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(3410), 3, + STATE(3541), 3, sym_val_range, sym__value, sym__unquoted_in_record_with_expr, - STATE(2568), 4, + STATE(2643), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(3091), 12, + STATE(3044), 12, sym_val_nothing, sym_val_cellpath, sym_val_number, @@ -140580,12 +142135,12 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [216] = 4, + [571] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1273), 1, + STATE(1282), 1, sym_comment, - ACTIONS(1914), 13, + ACTIONS(2451), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -140599,7 +142154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1912), 49, + ACTIONS(2449), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140649,12 +142204,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [289] = 4, + [644] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1274), 1, + STATE(1283), 1, sym_comment, - ACTIONS(2583), 13, + ACTIONS(2455), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -140668,7 +142223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2581), 49, + ACTIONS(2453), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140718,12 +142273,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [362] = 4, + [717] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1275), 1, + STATE(1284), 1, sym_comment, - ACTIONS(2622), 13, + ACTIONS(2459), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -140737,7 +142292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2620), 49, + ACTIONS(2457), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140787,12 +142342,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [435] = 4, + [790] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1276), 1, + STATE(1285), 1, sym_comment, - ACTIONS(2284), 13, + ACTIONS(2463), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -140806,7 +142361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2282), 49, + ACTIONS(2461), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140856,12 +142411,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [508] = 4, + [863] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1277), 1, + STATE(1286), 1, sym_comment, - ACTIONS(2595), 13, + ACTIONS(2467), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -140875,7 +142430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2593), 49, + ACTIONS(2465), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140925,12 +142480,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [581] = 4, + [936] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1278), 1, + STATE(1287), 1, sym_comment, - ACTIONS(2270), 13, + ACTIONS(2471), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -140944,7 +142499,7 @@ 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(2469), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140994,12 +142549,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [654] = 4, + [1009] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1279), 1, + STATE(1288), 1, sym_comment, - ACTIONS(2274), 13, + ACTIONS(2475), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141013,7 +142568,7 @@ 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(2473), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141063,43 +142618,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, - [727] = 15, + [1082] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3018), 1, - anon_sym_DASH2, - ACTIONS(3030), 1, - anon_sym_PLUS2, - ACTIONS(3034), 1, - anon_sym_bit_DASHand2, - STATE(1280), 1, + STATE(1289), 1, sym_comment, - ACTIONS(3016), 2, + ACTIONS(2610), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3020), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(3026), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3028), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3032), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3022), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3024), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2553), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -141108,17 +142637,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(3014), 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(2551), 25, + ACTIONS(2608), 49, ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -141130,9 +142651,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, @@ -141143,36 +142687,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [822] = 13, + [1155] = 37, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3018), 1, + 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(3030), 1, - anon_sym_PLUS2, - STATE(1281), 1, + ACTIONS(998), 1, + anon_sym_DOLLAR, + ACTIONS(2006), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(2008), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(2792), 1, + anon_sym_null, + STATE(705), 1, + sym_val_variable, + STATE(710), 1, + sym__val_number, + STATE(724), 1, + sym_expr_parenthesized, + STATE(808), 1, + sym__inter_single_quotes, + STATE(809), 1, + sym__inter_double_quotes, + STATE(959), 1, + sym__expr_unary_minus, + STATE(1290), 1, sym_comment, - ACTIONS(3016), 2, + STATE(1886), 1, + sym__val_number_decimal, + STATE(2246), 1, + sym__expr_binary_expression, + STATE(5006), 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(1945), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2010), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(418), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(932), 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(970), 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, + [1294] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1291), 1, + sym_comment, + ACTIONS(1889), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3020), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(3026), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3028), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3032), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3022), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2553), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -141181,17 +142808,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(3014), 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(2551), 30, + ACTIONS(1887), 49, ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -141203,13 +142822,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_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, @@ -141221,17 +142858,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, - [913] = 4, + [1367] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1282), 1, + STATE(1292), 1, sym_comment, - ACTIONS(2591), 13, + ACTIONS(2134), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + ACTIONS(2247), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -141240,9 +142878,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(2589), 49, + ACTIONS(2245), 20, ts_builtin_sym_end, - anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -141254,6 +142891,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(2132), 29, + anon_sym_in, anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, @@ -141282,20 +142929,12 @@ 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, - [986] = 4, + [1444] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1283), 1, + STATE(1293), 1, sym_comment, - ACTIONS(2238), 13, + ACTIONS(2670), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141309,7 +142948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2236), 49, + ACTIONS(2668), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141359,12 +142998,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1059] = 4, + [1517] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1284), 1, + STATE(1294), 1, sym_comment, - ACTIONS(1958), 13, + ACTIONS(2172), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141378,7 +143017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1956), 49, + ACTIONS(2170), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141428,12 +143067,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1132] = 4, + [1590] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1285), 1, + STATE(1295), 1, sym_comment, - ACTIONS(2535), 13, + ACTIONS(1974), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141447,7 +143086,7 @@ 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(1972), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141497,18 +143136,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, - [1205] = 6, + [1663] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1286), 1, + STATE(1296), 1, sym_comment, - ACTIONS(2164), 5, + ACTIONS(2658), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2168), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -141517,8 +143155,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(2166), 20, + ACTIONS(2656), 49, ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -141530,16 +143169,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_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - 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(2162), 29, - anon_sym_in, anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, @@ -141568,49 +143197,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [1282] = 18, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [1736] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3018), 1, - anon_sym_DASH2, - ACTIONS(3030), 1, - anon_sym_PLUS2, - ACTIONS(3034), 1, - anon_sym_bit_DASHand2, - ACTIONS(3036), 1, - anon_sym_and2, - ACTIONS(3038), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3040), 1, - anon_sym_bit_DASHor2, - STATE(1287), 1, + STATE(1297), 1, sym_comment, - ACTIONS(3016), 2, + ACTIONS(2483), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3020), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(3026), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3028), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3032), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3022), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3024), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2553), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -141619,17 +143224,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(3014), 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(2551), 22, + ACTIONS(2481), 49, ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -141641,8 +143238,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, @@ -141651,143 +143274,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, - [1383] = 37, + [1809] = 4, 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(1004), 1, - anon_sym_DOLLAR, - ACTIONS(2430), 1, - aux_sym_expr_unary_token1, - ACTIONS(2434), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(2436), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(2714), 1, - anon_sym_null, - ACTIONS(3042), 1, - anon_sym_DOT_DOT, - STATE(707), 1, - sym__val_number, - STATE(749), 1, - sym__inter_single_quotes, - STATE(750), 1, - sym__inter_double_quotes, - STATE(948), 1, - sym__expr_unary_minus, - STATE(1288), 1, - sym_comment, - STATE(1882), 1, - sym__val_number_decimal, - STATE(1950), 1, - sym_val_variable, - STATE(1957), 1, - sym_expr_parenthesized, - STATE(2250), 1, - sym__expr_binary_expression, - STATE(4954), 1, - sym__expression, - ACTIONS(193), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2422), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2438), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3044), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(426), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(947), 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(946), 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, - [1522] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3018), 1, - anon_sym_DASH2, - ACTIONS(3030), 1, - anon_sym_PLUS2, - STATE(1289), 1, + STATE(1298), 1, sym_comment, - ACTIONS(3016), 2, + ACTIONS(1909), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3020), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(3026), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3028), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3032), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3022), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3024), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2553), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -141796,17 +143293,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(3014), 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(2551), 26, + ACTIONS(1907), 49, ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -141818,9 +143307,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_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, @@ -141832,12 +143343,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1615] = 4, + [1882] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1290), 1, + STATE(1299), 1, sym_comment, - ACTIONS(2618), 13, + ACTIONS(2487), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141851,7 +143362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2616), 49, + ACTIONS(2485), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141901,12 +143412,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1688] = 4, + [1955] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1291), 1, + STATE(1300), 1, sym_comment, - ACTIONS(2553), 13, + ACTIONS(2568), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141920,7 +143431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2551), 49, + ACTIONS(2566), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141970,12 +143481,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, - [1761] = 4, + [2028] = 39, ACTIONS(3), 1, anon_sym_POUND, - STATE(1292), 1, + ACTIONS(2968), 1, + anon_sym_null, + ACTIONS(2972), 1, + sym__newline, + ACTIONS(2974), 1, + anon_sym_LBRACK, + ACTIONS(2976), 1, + anon_sym_LPAREN, + ACTIONS(2978), 1, + anon_sym_DOLLAR, + ACTIONS(2980), 1, + anon_sym_LBRACE, + ACTIONS(2982), 1, + anon_sym_DOT_DOT, + ACTIONS(2986), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(2988), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(2994), 1, + anon_sym_0b, + ACTIONS(2998), 1, + sym_val_date, + ACTIONS(3000), 1, + anon_sym_DQUOTE, + ACTIONS(3002), 1, + anon_sym_SQUOTE, + ACTIONS(3004), 1, + anon_sym_BQUOTE, + ACTIONS(3006), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3008), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3010), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(3012), 1, + sym_raw_string_begin, + STATE(1280), 1, + aux_sym__repeat_newline, + STATE(1301), 1, sym_comment, - ACTIONS(2100), 13, + STATE(2471), 1, + sym__val_number_decimal, + STATE(3008), 1, + sym_val_variable, + STATE(3011), 1, + sym_expr_parenthesized, + STATE(3046), 1, + sym__val_number, + STATE(3074), 1, + sym__inter_single_quotes, + STATE(3075), 1, + sym__inter_double_quotes, + STATE(3105), 1, + sym_val_bool, + STATE(3140), 1, + sym__unquoted_in_record, + ACTIONS(2966), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2984), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(2990), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(2996), 2, + anon_sym_0o, + anon_sym_0x, + STATE(4747), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(2970), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + ACTIONS(2992), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(3407), 3, + sym_val_range, + sym__value, + sym__unquoted_in_record_with_expr, + STATE(2643), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3044), 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, + [2171] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1302), 1, + sym_comment, + ACTIONS(2547), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141989,7 +143604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2098), 49, + ACTIONS(2545), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142039,12 +143654,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1834] = 4, + [2244] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1293), 1, + STATE(1303), 1, sym_comment, - ACTIONS(2242), 13, + ACTIONS(2580), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142058,7 +143673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2240), 49, + ACTIONS(2578), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142108,51 +143723,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, - [1907] = 19, + [2317] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3018), 1, - anon_sym_DASH2, - ACTIONS(3030), 1, - anon_sym_PLUS2, - ACTIONS(3034), 1, - anon_sym_bit_DASHand2, - ACTIONS(3036), 1, - anon_sym_and2, - ACTIONS(3038), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3040), 1, - anon_sym_bit_DASHor2, - ACTIONS(3046), 1, - anon_sym_xor2, - STATE(1294), 1, + STATE(1304), 1, sym_comment, - ACTIONS(3016), 2, + ACTIONS(2150), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3020), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(3026), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3028), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3032), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3022), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3024), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2553), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -142161,17 +143742,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(3014), 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(2551), 21, + ACTIONS(2148), 49, ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -142183,7 +143756,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, @@ -142192,12 +143792,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2010] = 4, + [2390] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1295), 1, + STATE(1305), 1, sym_comment, - ACTIONS(1614), 13, + ACTIONS(2427), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142211,7 +143811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1713), 49, + ACTIONS(2425), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142261,12 +143861,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2083] = 4, + [2463] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1296), 1, + STATE(1306), 1, sym_comment, - ACTIONS(2246), 13, + ACTIONS(2431), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142280,7 +143880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2244), 49, + ACTIONS(2429), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142330,12 +143930,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2156] = 4, + [2536] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1297), 1, + STATE(1307), 1, sym_comment, - ACTIONS(2100), 13, + ACTIONS(2435), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142349,7 +143949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2098), 49, + ACTIONS(2433), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142399,81 +143999,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, - [2229] = 4, + [2609] = 39, ACTIONS(3), 1, anon_sym_POUND, - STATE(1298), 1, - sym_comment, - ACTIONS(866), 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(886), 49, - ts_builtin_sym_end, - anon_sym_in, + ACTIONS(2968), 1, + anon_sym_null, + ACTIONS(2972), 1, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_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, - [2302] = 4, + ACTIONS(2974), 1, + anon_sym_LBRACK, + ACTIONS(2976), 1, + anon_sym_LPAREN, + ACTIONS(2978), 1, + anon_sym_DOLLAR, + ACTIONS(2980), 1, + anon_sym_LBRACE, + ACTIONS(2982), 1, + anon_sym_DOT_DOT, + ACTIONS(2986), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(2988), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(2994), 1, + anon_sym_0b, + ACTIONS(2998), 1, + sym_val_date, + ACTIONS(3000), 1, + anon_sym_DQUOTE, + ACTIONS(3002), 1, + anon_sym_SQUOTE, + ACTIONS(3004), 1, + anon_sym_BQUOTE, + ACTIONS(3006), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3008), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3010), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(3012), 1, + sym_raw_string_begin, + STATE(1308), 1, + sym_comment, + STATE(2256), 1, + aux_sym__repeat_newline, + STATE(2471), 1, + sym__val_number_decimal, + STATE(2989), 1, + sym_expr_parenthesized, + STATE(3008), 1, + sym_val_variable, + STATE(3046), 1, + sym__val_number, + STATE(3071), 1, + sym__unquoted_in_record, + STATE(3074), 1, + sym__inter_single_quotes, + STATE(3075), 1, + sym__inter_double_quotes, + STATE(3105), 1, + sym_val_bool, + ACTIONS(2966), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2984), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(2990), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(2996), 2, + anon_sym_0o, + anon_sym_0x, + STATE(4747), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(2970), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + ACTIONS(2992), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(3574), 3, + sym_val_range, + sym__value, + sym__unquoted_in_record_with_expr, + STATE(2643), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3044), 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, + [2752] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1299), 1, + STATE(1309), 1, sym_comment, - ACTIONS(2120), 13, + ACTIONS(2574), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142487,7 +144122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2118), 49, + ACTIONS(2572), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142537,12 +144172,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2375] = 4, + [2825] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1300), 1, + STATE(1310), 1, sym_comment, - ACTIONS(2234), 13, + ACTIONS(2439), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142556,7 +144191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2232), 49, + ACTIONS(2437), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142606,12 +144241,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2448] = 4, + [2898] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1301), 1, + STATE(1311), 1, sym_comment, - ACTIONS(2100), 13, + ACTIONS(2479), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142625,7 +144260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2098), 49, + ACTIONS(2477), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142675,12 +144310,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, - [2521] = 4, + [2971] = 37, ACTIONS(3), 1, anon_sym_POUND, - STATE(1302), 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(998), 1, + anon_sym_DOLLAR, + ACTIONS(2515), 1, + aux_sym_expr_unary_token1, + ACTIONS(2519), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(2521), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(2792), 1, + anon_sym_null, + ACTIONS(3014), 1, + anon_sym_DOT_DOT, + STATE(710), 1, + sym__val_number, + STATE(808), 1, + sym__inter_single_quotes, + STATE(809), 1, + sym__inter_double_quotes, + STATE(959), 1, + sym__expr_unary_minus, + STATE(1312), 1, sym_comment, - ACTIONS(2638), 13, + STATE(1921), 1, + sym__val_number_decimal, + STATE(1967), 1, + sym_val_variable, + STATE(1974), 1, + sym_expr_parenthesized, + STATE(2250), 1, + sym__expr_binary_expression, + STATE(5244), 1, + sym__expression, + ACTIONS(193), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2507), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2523), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3016), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(418), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(932), 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(970), 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, + [3110] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1313), 1, + sym_comment, + ACTIONS(2443), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142694,7 +144431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2636), 49, + ACTIONS(2441), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142744,12 +144481,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2594] = 4, + [3183] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1303), 1, + STATE(1314), 1, sym_comment, - ACTIONS(2230), 13, + ACTIONS(847), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142763,7 +144500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2228), 49, + ACTIONS(968), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142813,12 +144550,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2667] = 4, + [3256] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1304), 1, + STATE(1315), 1, sym_comment, - ACTIONS(2172), 13, + ACTIONS(2564), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142832,7 +144569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2170), 49, + ACTIONS(2562), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142882,12 +144619,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2740] = 4, + [3329] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1305), 1, + STATE(1316), 1, sym_comment, - ACTIONS(2100), 13, + ACTIONS(1615), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142901,7 +144638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2098), 49, + ACTIONS(1699), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142951,12 +144688,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2813] = 4, + [3402] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1306), 1, + STATE(1317), 1, sym_comment, - ACTIONS(2278), 13, + ACTIONS(2626), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142970,7 +144707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2276), 49, + ACTIONS(2624), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143020,12 +144757,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2886] = 4, + [3475] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1307), 1, + STATE(1318), 1, sym_comment, - ACTIONS(2539), 13, + ACTIONS(2529), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143039,7 +144776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2537), 49, + ACTIONS(2527), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143089,27 +144826,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, - [2959] = 9, + [3548] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3018), 1, - anon_sym_DASH2, - ACTIONS(3030), 1, - anon_sym_PLUS2, - STATE(1308), 1, + STATE(1319), 1, sym_comment, - ACTIONS(3020), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3026), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3028), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2553), 10, + ACTIONS(2533), 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, @@ -143118,7 +144845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2551), 44, + ACTIONS(2531), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143132,6 +144859,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_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -143150,6 +144878,10 @@ 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, @@ -143163,12 +144895,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3042] = 4, + [3621] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1309), 1, + STATE(1320), 1, sym_comment, - ACTIONS(2288), 13, + ACTIONS(2134), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143182,7 +144914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2286), 49, + ACTIONS(2132), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143232,12 +144964,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3115] = 4, + [3694] = 12, ACTIONS(3), 1, anon_sym_POUND, - STATE(1310), 1, + ACTIONS(3020), 1, + anon_sym_DASH2, + ACTIONS(3030), 1, + anon_sym_PLUS2, + STATE(1321), 1, sym_comment, - ACTIONS(2531), 13, + ACTIONS(3018), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3022), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3026), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3028), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3032), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3024), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2650), 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(2648), 38, + 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_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, + [3783] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1322), 1, + sym_comment, + ACTIONS(2094), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143251,7 +145060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2529), 49, + ACTIONS(2092), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143301,12 +145110,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3188] = 4, + [3856] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(1311), 1, + ACTIONS(3020), 1, + anon_sym_DASH2, + ACTIONS(3030), 1, + anon_sym_PLUS2, + STATE(1323), 1, sym_comment, - ACTIONS(2198), 13, + ACTIONS(3022), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3026), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3028), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3032), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2650), 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(2648), 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, + [3941] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1324), 1, + sym_comment, + ACTIONS(2094), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143320,7 +145204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2196), 49, + ACTIONS(2092), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143370,12 +145254,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3261] = 4, + [4014] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1312), 1, + STATE(1325), 1, sym_comment, - ACTIONS(1975), 13, + ACTIONS(3022), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3026), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3028), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2650), 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(2648), 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, + [4093] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1326), 1, + sym_comment, + ACTIONS(2094), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143389,7 +145345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1973), 49, + ACTIONS(2092), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143439,12 +145395,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, - [3334] = 4, + [4166] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1313), 1, + STATE(1327), 1, sym_comment, - ACTIONS(2100), 13, + ACTIONS(3026), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2650), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143458,7 +145417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2098), 49, + ACTIONS(2648), 47, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143491,8 +145450,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, @@ -143508,12 +145465,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3407] = 4, + [4241] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1314), 1, + STATE(1328), 1, sym_comment, - ACTIONS(2100), 13, + ACTIONS(2094), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143527,7 +145484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2098), 49, + ACTIONS(2092), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143577,17 +145534,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, - [3480] = 4, + [4314] = 17, ACTIONS(3), 1, anon_sym_POUND, - STATE(1315), 1, + ACTIONS(3020), 1, + anon_sym_DASH2, + ACTIONS(3030), 1, + anon_sym_PLUS2, + ACTIONS(3038), 1, + anon_sym_bit_DASHand2, + ACTIONS(3040), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3042), 1, + anon_sym_bit_DASHor2, + STATE(1329), 1, sym_comment, - ACTIONS(2104), 13, + ACTIONS(3018), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(3022), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(3026), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3028), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3032), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3024), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3036), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2650), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -143596,9 +145583,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(2102), 49, - ts_builtin_sym_end, + ACTIONS(3034), 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(2648), 23, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -143610,34 +145605,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, @@ -143646,12 +145616,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3553] = 4, + [4413] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1316), 1, + STATE(1330), 1, sym_comment, - ACTIONS(2206), 13, + ACTIONS(2094), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143665,7 +145635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2204), 49, + ACTIONS(2092), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143715,17 +145685,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3626] = 4, + [4486] = 18, ACTIONS(3), 1, anon_sym_POUND, - STATE(1317), 1, + ACTIONS(3020), 1, + anon_sym_DASH2, + ACTIONS(3030), 1, + anon_sym_PLUS2, + ACTIONS(3038), 1, + anon_sym_bit_DASHand2, + ACTIONS(3040), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3042), 1, + anon_sym_bit_DASHor2, + ACTIONS(3044), 1, + anon_sym_and2, + STATE(1331), 1, sym_comment, - ACTIONS(2278), 13, + ACTIONS(3018), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(3022), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(3026), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3028), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3032), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3024), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3036), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2650), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -143734,9 +145736,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(2276), 49, - ts_builtin_sym_end, + ACTIONS(3034), 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(2648), 22, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -143748,34 +145758,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_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, @@ -143784,12 +145768,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3699] = 4, + [4587] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1318), 1, + STATE(1332), 1, sym_comment, - ACTIONS(2634), 13, + ACTIONS(2094), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143803,7 +145787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2632), 49, + ACTIONS(2092), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143853,17 +145837,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3772] = 4, + [4660] = 19, ACTIONS(3), 1, anon_sym_POUND, - STATE(1319), 1, + ACTIONS(3020), 1, + anon_sym_DASH2, + ACTIONS(3030), 1, + anon_sym_PLUS2, + ACTIONS(3038), 1, + anon_sym_bit_DASHand2, + ACTIONS(3040), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3042), 1, + anon_sym_bit_DASHor2, + ACTIONS(3044), 1, + anon_sym_and2, + ACTIONS(3046), 1, + anon_sym_xor2, + STATE(1333), 1, sym_comment, - ACTIONS(2292), 13, + ACTIONS(3018), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(3022), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(3026), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3028), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3032), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3024), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3036), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2650), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -143872,9 +145890,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(2290), 49, - ts_builtin_sym_end, + ACTIONS(3034), 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(2648), 21, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -143886,34 +145912,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_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, @@ -143922,12 +145921,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3845] = 4, + [4763] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1320), 1, + STATE(1334), 1, sym_comment, - ACTIONS(2296), 13, + ACTIONS(2094), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143941,7 +145940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2294), 49, + ACTIONS(2092), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143991,23 +145990,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3918] = 16, + [4836] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3018), 1, + ACTIONS(3020), 1, anon_sym_DASH2, ACTIONS(3030), 1, anon_sym_PLUS2, - ACTIONS(3034), 1, - anon_sym_bit_DASHand2, - ACTIONS(3038), 1, - anon_sym_bit_DASHxor2, - STATE(1321), 1, + STATE(1335), 1, sym_comment, - ACTIONS(3016), 2, + ACTIONS(3018), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3020), 2, + ACTIONS(3022), 2, anon_sym_STAR2, anon_sym_SLASH2, ACTIONS(3026), 2, @@ -144019,17 +146014,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3032), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3022), 4, + ACTIONS(3024), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3024), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2553), 8, + ACTIONS(2650), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -144038,7 +146028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3014), 8, + ACTIONS(3034), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -144047,7 +146037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2551), 24, + ACTIONS(2648), 30, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -144063,6 +146053,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_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, @@ -144072,116 +146068,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4015] = 39, + [4927] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2968), 1, - anon_sym_null, - ACTIONS(2972), 1, - sym__newline, - ACTIONS(2974), 1, - anon_sym_LBRACK, - ACTIONS(2976), 1, - anon_sym_LPAREN, - ACTIONS(2978), 1, - anon_sym_DOLLAR, - ACTIONS(2980), 1, - anon_sym_LBRACE, - ACTIONS(2982), 1, - anon_sym_DOT_DOT, - ACTIONS(2986), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(2988), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(2994), 1, - anon_sym_0b, - ACTIONS(2998), 1, - sym_val_date, - ACTIONS(3000), 1, - anon_sym_DQUOTE, - ACTIONS(3002), 1, - anon_sym_SQUOTE, - ACTIONS(3004), 1, - anon_sym_BQUOTE, - ACTIONS(3006), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3008), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3010), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(3012), 1, - sym_raw_string_begin, - STATE(1322), 1, + STATE(1336), 1, sym_comment, - STATE(2259), 1, - aux_sym__repeat_newline, - STATE(2492), 1, - sym__val_number_decimal, - STATE(2986), 1, - sym_expr_parenthesized, - STATE(3007), 1, - sym_val_variable, - STATE(3048), 1, - sym__inter_single_quotes, - STATE(3049), 1, - sym__inter_double_quotes, - STATE(3092), 1, - sym__val_number, - STATE(3127), 1, - sym_val_bool, - STATE(3180), 1, - sym__unquoted_in_record, - ACTIONS(2966), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2984), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(2990), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(2996), 2, - anon_sym_0o, - anon_sym_0x, - STATE(4601), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(2970), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(2992), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(3476), 3, - sym_val_range, - sym__value, - sym__unquoted_in_record_with_expr, - STATE(2568), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3091), 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, - [4158] = 4, + ACTIONS(2094), 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(2092), 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, + [5000] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1323), 1, + STATE(1337), 1, sym_comment, - ACTIONS(2164), 13, + ACTIONS(2650), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144195,7 +146156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2162), 49, + ACTIONS(2648), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144245,12 +146206,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4231] = 4, + [5073] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1324), 1, + STATE(1338), 1, sym_comment, - ACTIONS(2100), 13, + ACTIONS(2094), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144264,7 +146225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2098), 49, + ACTIONS(2092), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144314,19 +146275,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4304] = 12, + [5146] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3018), 1, + ACTIONS(3020), 1, anon_sym_DASH2, ACTIONS(3030), 1, anon_sym_PLUS2, - STATE(1325), 1, + STATE(1339), 1, sym_comment, - ACTIONS(3016), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3020), 2, + ACTIONS(3022), 2, anon_sym_STAR2, anon_sym_SLASH2, ACTIONS(3026), 2, @@ -144335,15 +146293,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3028), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3032), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3022), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2553), 8, + ACTIONS(2650), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -144352,7 +146304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2551), 38, + ACTIONS(2648), 44, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144376,10 +146328,16 @@ 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, @@ -144391,116 +146349,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4393] = 39, + [5229] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2968), 1, - anon_sym_null, - ACTIONS(2972), 1, - sym__newline, - ACTIONS(2974), 1, - anon_sym_LBRACK, - ACTIONS(2976), 1, - anon_sym_LPAREN, - ACTIONS(2978), 1, - anon_sym_DOLLAR, - ACTIONS(2980), 1, - anon_sym_LBRACE, - ACTIONS(2982), 1, - anon_sym_DOT_DOT, - ACTIONS(2986), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(2988), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(2994), 1, - anon_sym_0b, - ACTIONS(2998), 1, - sym_val_date, - ACTIONS(3000), 1, - anon_sym_DQUOTE, - ACTIONS(3002), 1, - anon_sym_SQUOTE, - ACTIONS(3004), 1, - anon_sym_BQUOTE, - ACTIONS(3006), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3008), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3010), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(3012), 1, - sym_raw_string_begin, - STATE(1272), 1, - aux_sym__repeat_newline, - STATE(1326), 1, - sym_comment, - STATE(2492), 1, - sym__val_number_decimal, - STATE(2986), 1, - sym_expr_parenthesized, - STATE(3007), 1, - sym_val_variable, - STATE(3048), 1, - sym__inter_single_quotes, - STATE(3049), 1, - sym__inter_double_quotes, - STATE(3092), 1, - sym__val_number, - STATE(3127), 1, - sym_val_bool, - STATE(3180), 1, - sym__unquoted_in_record, - ACTIONS(2966), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2984), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(2990), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(2996), 2, - anon_sym_0o, - anon_sym_0x, - STATE(4601), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(2970), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(2992), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(3476), 3, - sym_val_range, - sym__value, - sym__unquoted_in_record_with_expr, - STATE(2568), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3091), 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, - [4536] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1327), 1, + STATE(1340), 1, sym_comment, - ACTIONS(2100), 13, + ACTIONS(2094), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144514,7 +146368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2098), 49, + ACTIONS(2092), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144564,16 +146418,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4609] = 10, + [5302] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3018), 1, + ACTIONS(3020), 1, anon_sym_DASH2, ACTIONS(3030), 1, anon_sym_PLUS2, - STATE(1328), 1, + STATE(1341), 1, sym_comment, - ACTIONS(3020), 2, + ACTIONS(3018), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3022), 2, anon_sym_STAR2, anon_sym_SLASH2, ACTIONS(3026), 2, @@ -144585,9 +146442,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3032), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2553), 10, - anon_sym_GT2, - anon_sym_LT2, + ACTIONS(3024), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3036), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2650), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -144596,9 +146461,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(2551), 42, - ts_builtin_sym_end, + ACTIONS(3034), 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(2648), 26, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -144613,21 +146486,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_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, @@ -144639,12 +146497,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4694] = 4, + [5395] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1329), 1, + STATE(1342), 1, sym_comment, - ACTIONS(2543), 13, + ACTIONS(2094), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144658,7 +146516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2541), 49, + ACTIONS(2092), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144708,17 +146566,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, - [4767] = 4, + [5468] = 15, ACTIONS(3), 1, anon_sym_POUND, - STATE(1330), 1, + ACTIONS(3020), 1, + anon_sym_DASH2, + ACTIONS(3030), 1, + anon_sym_PLUS2, + ACTIONS(3038), 1, + anon_sym_bit_DASHand2, + STATE(1343), 1, sym_comment, - ACTIONS(2575), 13, + ACTIONS(3018), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(3022), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(3026), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3028), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3032), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3024), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3036), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2650), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -144727,9 +146611,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(2573), 49, - ts_builtin_sym_end, + ACTIONS(3034), 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(2648), 25, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -144741,32 +146633,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, @@ -144777,12 +146646,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4840] = 4, + [5563] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1331), 1, + STATE(1344), 1, sym_comment, - ACTIONS(2100), 13, + ACTIONS(2094), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144796,7 +146665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2098), 49, + ACTIONS(2092), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144846,119 +146715,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, - [4913] = 37, + [5636] = 16, 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, + ACTIONS(3020), 1, anon_sym_DASH2, - ACTIONS(1004), 1, - anon_sym_DOLLAR, - ACTIONS(1928), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(1930), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(2714), 1, - anon_sym_null, - STATE(704), 1, - sym_expr_parenthesized, - STATE(707), 1, - sym__val_number, - STATE(713), 1, - sym_val_variable, - STATE(749), 1, - sym__inter_single_quotes, - STATE(750), 1, - sym__inter_double_quotes, - STATE(948), 1, - sym__expr_unary_minus, - STATE(1332), 1, - sym_comment, - STATE(1861), 1, - sym__val_number_decimal, - STATE(2253), 1, - sym__expr_binary_expression, - STATE(4887), 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(1932), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(1938), 2, - anon_sym_true, - anon_sym_false, - STATE(426), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(947), 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(946), 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, - [5052] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1333), 1, + ACTIONS(3030), 1, + anon_sym_PLUS2, + ACTIONS(3038), 1, + anon_sym_bit_DASHand2, + ACTIONS(3040), 1, + anon_sym_bit_DASHxor2, + STATE(1345), 1, sym_comment, - ACTIONS(2156), 13, + ACTIONS(3018), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(3022), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(3026), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3028), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3032), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3024), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3036), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2650), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -144967,9 +146762,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(2154), 49, - ts_builtin_sym_end, + ACTIONS(3034), 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(2648), 24, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -144981,33 +146784,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, @@ -145017,23 +146796,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5125] = 7, + [5733] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1334), 1, + STATE(1346), 1, sym_comment, - ACTIONS(3020), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3026), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3028), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2553), 11, + ACTIONS(2094), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -145043,7 +146815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2551), 45, + ACTIONS(2092), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -145076,6 +146848,10 @@ 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, @@ -145089,12 +146865,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5204] = 4, + [5806] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1335), 1, + STATE(1347), 1, sym_comment, - ACTIONS(2599), 13, + ACTIONS(2407), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -145108,7 +146884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2597), 49, + ACTIONS(2405), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -145158,12 +146934,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5277] = 4, + [5879] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1336), 1, + STATE(1348), 1, sym_comment, - ACTIONS(2100), 13, + ACTIONS(2106), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -145177,7 +146953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2098), 49, + ACTIONS(2104), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -145227,12 +147003,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5350] = 4, + [5952] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1337), 1, + STATE(1349), 1, sym_comment, - ACTIONS(2250), 13, + ACTIONS(2114), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -145246,7 +147022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2248), 49, + ACTIONS(2112), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -145296,12 +147072,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5423] = 4, + [6025] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1338), 1, + STATE(1350), 1, sym_comment, - ACTIONS(1864), 13, + ACTIONS(2654), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -145315,7 +147091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1862), 49, + ACTIONS(2652), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -145365,12 +147141,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5496] = 4, + [6098] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1339), 1, + STATE(1351), 1, sym_comment, - ACTIONS(2254), 13, + ACTIONS(2122), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -145384,7 +147160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2252), 49, + ACTIONS(2120), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -145434,12 +147210,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5569] = 4, + [6171] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1340), 1, + STATE(1352), 1, sym_comment, - ACTIONS(2112), 13, + ACTIONS(1984), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -145453,7 +147229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2110), 49, + ACTIONS(1982), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -145503,114 +147279,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5642] = 37, + [6244] = 4, 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(1004), 1, - anon_sym_DOLLAR, - ACTIONS(1928), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(1930), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(2714), 1, - anon_sym_null, - STATE(704), 1, - sym_expr_parenthesized, - STATE(707), 1, - sym__val_number, - STATE(713), 1, - sym_val_variable, - STATE(749), 1, - sym__inter_single_quotes, - STATE(750), 1, - sym__inter_double_quotes, - STATE(948), 1, - sym__expr_unary_minus, - STATE(1341), 1, - sym_comment, - STATE(1861), 1, - sym__val_number_decimal, - STATE(2253), 1, - sym__expr_binary_expression, - STATE(4919), 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(1932), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(1938), 2, - anon_sym_true, - anon_sym_false, - STATE(426), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(947), 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(946), 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, - [5781] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1342), 1, + STATE(1353), 1, sym_comment, - ACTIONS(2258), 13, + ACTIONS(2411), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -145624,7 +147298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2256), 49, + ACTIONS(2409), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -145674,236 +147348,553 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5854] = 4, + [6317] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1343), 1, + STATE(1354), 1, sym_comment, - ACTIONS(2662), 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(2660), 49, - ts_builtin_sym_end, - anon_sym_in, + STATE(1355), 1, + aux_sym__block_body_repeat1, + ACTIONS(153), 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, + ACTIONS(3052), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(3048), 10, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOLLAR, 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, - [5927] = 4, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3050), 46, + 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_finally, + 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, + [6395] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1344), 1, + ACTIONS(3058), 2, + sym__newline, + anon_sym_SEMI, + STATE(1355), 2, sym_comment, - ACTIONS(2100), 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(2098), 49, - ts_builtin_sym_end, + aux_sym__block_body_repeat1, + ACTIONS(3054), 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(3056), 48, + 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_finally, + 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_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, + aux_sym__val_number_decimal_token2, + aux_sym__val_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, + [6469] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1355), 1, + aux_sym__block_body_repeat1, + STATE(1356), 1, + sym_comment, + ACTIONS(153), 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, + ACTIONS(3061), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(3048), 10, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOLLAR, 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, - [6000] = 39, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3050), 46, + 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_finally, + 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, + [6547] = 42, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2968), 1, + ACTIONS(191), 1, + anon_sym_0b, + ACTIONS(1772), 1, + anon_sym_DQUOTE, + ACTIONS(1774), 1, + anon_sym_SQUOTE, + ACTIONS(1776), 1, + anon_sym_BQUOTE, + ACTIONS(1778), 1, + sym_raw_string_begin, + ACTIONS(1943), 1, + aux_sym_unquoted_token1, + ACTIONS(2688), 1, + anon_sym_LPAREN, + ACTIONS(2930), 1, anon_sym_null, - ACTIONS(2972), 1, + ACTIONS(2934), 1, sym__newline, - ACTIONS(2974), 1, + ACTIONS(2936), 1, anon_sym_LBRACK, - ACTIONS(2976), 1, - anon_sym_LPAREN, - ACTIONS(2978), 1, + ACTIONS(2938), 1, anon_sym_DOLLAR, - ACTIONS(2980), 1, + ACTIONS(2940), 1, anon_sym_LBRACE, - ACTIONS(2982), 1, + ACTIONS(2944), 1, + anon_sym__, + ACTIONS(2946), 1, anon_sym_DOT_DOT, - ACTIONS(2986), 1, + ACTIONS(2950), 1, aux_sym__val_number_decimal_token1, - ACTIONS(2988), 1, + ACTIONS(2952), 1, aux_sym__val_number_decimal_token2, - ACTIONS(2994), 1, + ACTIONS(2956), 1, + sym_val_date, + STATE(710), 1, + sym__val_number, + STATE(1357), 1, + sym_comment, + STATE(1381), 1, + aux_sym__ctrl_match_body_repeat1, + STATE(2273), 1, + aux_sym__types_body_repeat1, + STATE(3638), 1, + sym__val_number_decimal, + STATE(3872), 1, + sym_val_variable, + STATE(3917), 1, + sym_expr_parenthesized, + STATE(4156), 1, + sym__match_pattern, + STATE(4286), 1, + sym_val_bool, + STATE(4612), 1, + sym__match_pattern_expression, + STATE(4619), 1, + sym__match_pattern_list, + STATE(4621), 1, + sym_unquoted, + STATE(5314), 1, + sym_match_pattern, + ACTIONS(193), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2928), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2948), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(2954), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(4618), 2, + sym__match_pattern_value, + sym_val_range, + STATE(4827), 2, + sym_match_arm, + sym_default_arm, + STATE(5288), 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(2932), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(2274), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4620), 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, + [6695] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3063), 1, + sym__newline, + STATE(1358), 2, + aux_sym__repeat_newline, + sym_comment, + ACTIONS(1867), 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, - ACTIONS(2998), 1, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1862), 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_finally, + 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_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, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, sym_val_date, - ACTIONS(3000), 1, anon_sym_DQUOTE, - ACTIONS(3002), 1, anon_sym_SQUOTE, - ACTIONS(3004), 1, anon_sym_BQUOTE, - ACTIONS(3006), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3008), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3010), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(3012), 1, + anon_sym_CARET, + [6769] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1355), 1, + aux_sym__block_body_repeat1, + STATE(1359), 1, + sym_comment, + ACTIONS(153), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(3066), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(3048), 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(3050), 46, sym_raw_string_begin, - STATE(1322), 1, - aux_sym__repeat_newline, - STATE(1345), 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_finally, + 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, + [6847] = 38, + ACTIONS(103), 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(1772), 1, + anon_sym_DQUOTE, + ACTIONS(1774), 1, + anon_sym_SQUOTE, + ACTIONS(1776), 1, + anon_sym_BQUOTE, + ACTIONS(1778), 1, + sym_raw_string_begin, + ACTIONS(1943), 1, + aux_sym_unquoted_token1, + ACTIONS(2686), 1, + anon_sym_LBRACK, + ACTIONS(2688), 1, + anon_sym_LPAREN, + ACTIONS(2690), 1, + anon_sym_DOLLAR, + ACTIONS(2692), 1, + anon_sym_LBRACE, + ACTIONS(2754), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2756), 1, + anon_sym_COLON2, + ACTIONS(3070), 1, + anon_sym_null, + ACTIONS(3074), 1, + anon_sym_DOT_DOT, + ACTIONS(3082), 1, + sym_val_date, + STATE(710), 1, + sym__val_number, + STATE(808), 1, + sym__inter_single_quotes, + STATE(809), 1, + sym__inter_double_quotes, + STATE(1360), 1, sym_comment, - STATE(2492), 1, + STATE(3905), 1, sym__val_number_decimal, - STATE(2935), 1, - sym_expr_parenthesized, - STATE(3007), 1, + STATE(4366), 1, sym_val_variable, - STATE(3048), 1, - sym__inter_single_quotes, - STATE(3049), 1, - sym__inter_double_quotes, - STATE(3092), 1, - sym__val_number, - STATE(3117), 1, - sym__unquoted_in_record, - STATE(3127), 1, + STATE(4583), 1, + sym_expr_parenthesized, + STATE(4925), 1, sym_val_bool, - ACTIONS(2966), 2, + STATE(5211), 1, + sym_unquoted, + ACTIONS(193), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3068), 2, anon_sym_true, anon_sym_false, - ACTIONS(2984), 2, + ACTIONS(3076), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(2990), 2, + ACTIONS(3078), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3080), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(2996), 2, - anon_sym_0o, - anon_sym_0x, - STATE(4601), 2, + STATE(5210), 2, + sym_val_range, + sym__value, + STATE(5288), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(2970), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(2992), 3, + ACTIONS(2600), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(3395), 3, - sym_val_range, - sym__value, - sym__unquoted_in_record_with_expr, - STATE(2568), 4, + ACTIONS(3072), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(2274), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(3091), 12, + STATE(970), 12, sym_val_nothing, sym_val_cellpath, sym_val_number, @@ -145916,573 +147907,214 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [6143] = 4, + [6987] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1346), 1, - sym_comment, - ACTIONS(2666), 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(2664), 49, + ACTIONS(3052), 1, ts_builtin_sym_end, - anon_sym_in, + STATE(1361), 1, + sym_comment, + STATE(1374), 1, + aux_sym__block_body_repeat1, + ACTIONS(55), 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, + ACTIONS(3048), 10, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOLLAR, 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, - [6216] = 5, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3050), 46, + 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_finally, + 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, + [7064] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1347), 1, - sym_comment, - ACTIONS(3026), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2553), 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(2551), 47, + ACTIONS(3066), 1, ts_builtin_sym_end, - anon_sym_in, + STATE(1362), 1, + sym_comment, + STATE(1374), 1, + aux_sym__block_body_repeat1, + ACTIONS(55), 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, + ACTIONS(3048), 10, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOLLAR, 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_mod2, - anon_sym_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, - [6291] = 4, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3050), 46, + 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_finally, + 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, + [7141] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1348), 1, + STATE(1363), 1, sym_comment, - ACTIONS(2610), 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(2608), 49, - ts_builtin_sym_end, + ACTIONS(3084), 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(3086), 50, + 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_finally, + 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_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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, - [6364] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3018), 1, - anon_sym_DASH2, - ACTIONS(3030), 1, - anon_sym_PLUS2, - ACTIONS(3034), 1, - anon_sym_bit_DASHand2, - ACTIONS(3038), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3040), 1, - anon_sym_bit_DASHor2, - STATE(1349), 1, - sym_comment, - ACTIONS(3016), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3020), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3026), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3028), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3032), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3022), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3024), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2553), 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(3014), 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(2551), 23, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [6463] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1350), 1, - sym_comment, - ACTIONS(2262), 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(2260), 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, - [6536] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1351), 1, - sym_comment, - ACTIONS(2100), 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(2098), 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, - [6609] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1352), 1, - sym_comment, - ACTIONS(2266), 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(2264), 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, - [6682] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1353), 1, - sym_comment, - ACTIONS(2202), 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(2200), 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, - [6755] = 38, + 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, + aux_sym__val_number_decimal_token2, + aux_sym__val_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, + [7212] = 37, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(191), 1, @@ -146491,87 +148123,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(205), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1800), 1, + ACTIONS(1772), 1, anon_sym_DQUOTE, - ACTIONS(1802), 1, + ACTIONS(1774), 1, anon_sym_SQUOTE, - ACTIONS(1804), 1, + ACTIONS(1776), 1, anon_sym_BQUOTE, - ACTIONS(1806), 1, + ACTIONS(1778), 1, sym_raw_string_begin, - ACTIONS(1936), 1, + ACTIONS(1943), 1, aux_sym_unquoted_token1, - ACTIONS(2682), 1, + ACTIONS(2594), 1, aux_sym_cmd_identifier_token2, - ACTIONS(2684), 1, - anon_sym_COLON2, - ACTIONS(2692), 1, + ACTIONS(2686), 1, anon_sym_LBRACK, - ACTIONS(2694), 1, + ACTIONS(2688), 1, anon_sym_LPAREN, - ACTIONS(2696), 1, + ACTIONS(2690), 1, anon_sym_DOLLAR, - ACTIONS(2698), 1, + ACTIONS(2692), 1, anon_sym_LBRACE, - ACTIONS(3050), 1, + ACTIONS(3070), 1, anon_sym_null, - ACTIONS(3054), 1, + ACTIONS(3074), 1, anon_sym_DOT_DOT, - ACTIONS(3062), 1, + ACTIONS(3082), 1, sym_val_date, - STATE(707), 1, + STATE(710), 1, sym__val_number, - STATE(749), 1, + STATE(808), 1, sym__inter_single_quotes, - STATE(750), 1, + STATE(809), 1, sym__inter_double_quotes, - STATE(1354), 1, + STATE(1364), 1, sym_comment, - STATE(3807), 1, + STATE(3905), 1, sym__val_number_decimal, - STATE(4227), 1, + STATE(4366), 1, sym_val_variable, - STATE(4422), 1, + STATE(4583), 1, sym_expr_parenthesized, - STATE(4816), 1, + STATE(4925), 1, sym_val_bool, - STATE(5079), 1, + STATE(5211), 1, sym_unquoted, ACTIONS(193), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3048), 2, + ACTIONS(3068), 2, anon_sym_true, anon_sym_false, - ACTIONS(3056), 2, + ACTIONS(3076), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3058), 2, + ACTIONS(3078), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3060), 2, + ACTIONS(3080), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(5078), 2, + STATE(5210), 2, sym_val_range, sym__value, - STATE(5176), 2, + STATE(5288), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(2561), 3, + ACTIONS(2600), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3052), 3, + ACTIONS(3072), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2266), 4, + STATE(2274), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(946), 12, + STATE(970), 12, sym_val_nothing, sym_val_cellpath, sym_val_number, @@ -146584,121 +148214,87 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [6895] = 42, + [7349] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(191), 1, - anon_sym_0b, - ACTIONS(1800), 1, - anon_sym_DQUOTE, - ACTIONS(1802), 1, - anon_sym_SQUOTE, - ACTIONS(1804), 1, - anon_sym_BQUOTE, - ACTIONS(1806), 1, - sym_raw_string_begin, - ACTIONS(1936), 1, - aux_sym_unquoted_token1, - ACTIONS(2694), 1, - anon_sym_LPAREN, - ACTIONS(2865), 1, - anon_sym_null, - ACTIONS(2869), 1, + ACTIONS(2602), 1, sym__newline, - ACTIONS(2871), 1, - anon_sym_LBRACK, - ACTIONS(2873), 1, + ACTIONS(3092), 1, + anon_sym_SEMI, + STATE(1365), 1, + sym_comment, + STATE(1372), 1, + aux_sym__parenthesized_body_repeat1, + STATE(1389), 1, + aux_sym__repeat_newline, + ACTIONS(3088), 10, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, anon_sym_DOLLAR, - ACTIONS(2875), 1, - anon_sym_LBRACE, - ACTIONS(2879), 1, - anon_sym__, - ACTIONS(2881), 1, + anon_sym_DASH2, anon_sym_DOT_DOT, - ACTIONS(2885), 1, aux_sym__val_number_decimal_token1, - ACTIONS(2887), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(2891), 1, - sym_val_date, - STATE(707), 1, - sym__val_number, - STATE(1355), 1, - sym_comment, - STATE(1378), 1, - aux_sym__ctrl_match_body_repeat1, - STATE(2270), 1, - aux_sym__types_body_repeat1, - STATE(3636), 1, - sym__val_number_decimal, - STATE(3808), 1, - sym_val_variable, - STATE(3865), 1, - sym_expr_parenthesized, - STATE(4028), 1, - sym__match_pattern, - STATE(4169), 1, - sym_val_bool, - STATE(4471), 1, - sym__match_pattern_expression, - STATE(4483), 1, - sym__match_pattern_list, - STATE(4503), 1, - sym_unquoted, - STATE(5194), 1, - sym_match_pattern, - ACTIONS(193), 2, + anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2863), 2, + ACTIONS(3090), 46, + 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_finally, + anon_sym_match, anon_sym_true, anon_sym_false, - ACTIONS(2883), 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_LBRACE, + anon_sym_where, + aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(2889), 2, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4475), 2, - sym__match_pattern_value, - sym_val_range, - STATE(4679), 2, - sym_match_arm, - sym_default_arm, - STATE(5176), 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(2867), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(2266), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4489), 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, - [7043] = 5, - ACTIONS(3), 1, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [7428] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3064), 1, + ACTIONS(1966), 1, + anon_sym_POUND_BANG, + ACTIONS(2766), 1, sym__newline, - STATE(1356), 2, - aux_sym__repeat_newline, + STATE(1366), 1, sym_comment, - ACTIONS(1971), 10, + ACTIONS(3084), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -146709,8 +148305,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1966), 48, + ACTIONS(3086), 48, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -146727,6 +148324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -146735,12 +148333,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -146758,16 +148354,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [7116] = 5, + [7503] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3071), 2, - sym__newline, - anon_sym_SEMI, - STATE(1357), 2, + STATE(1367), 1, sym_comment, - aux_sym__block_body_repeat1, - ACTIONS(3067), 10, + ACTIONS(1968), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -146778,7 +148370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3069), 47, + ACTIONS(1966), 50, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -146796,6 +148388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -146803,10 +148396,12 @@ 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_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_where, @@ -146826,7 +148421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [7189] = 37, + [7574] = 37, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1396), 1, @@ -146847,73 +148442,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, ACTIONS(1436), 1, sym_raw_string_begin, - ACTIONS(1482), 1, + ACTIONS(1486), 1, anon_sym_LBRACE, ACTIONS(1588), 1, anon_sym_LBRACK, - ACTIONS(3076), 1, + ACTIONS(3096), 1, anon_sym_null, - ACTIONS(3080), 1, + ACTIONS(3100), 1, anon_sym_DOT_DOT, - ACTIONS(3084), 1, + ACTIONS(3104), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3086), 1, + ACTIONS(3106), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3090), 1, + ACTIONS(3110), 1, sym_val_date, - ACTIONS(3092), 1, + ACTIONS(3112), 1, aux_sym__unquoted_in_record_token1, - STATE(1358), 1, + STATE(1368), 1, sym_comment, - STATE(3640), 1, + STATE(3655), 1, sym__val_number_decimal, - STATE(3965), 1, + STATE(4050), 1, sym_val_variable, - STATE(4105), 1, + STATE(4296), 1, sym_expr_parenthesized, - STATE(4220), 1, + STATE(4485), 1, sym__unquoted_in_record, - STATE(4386), 1, - sym__val_number, - STATE(4421), 1, + STATE(4488), 1, sym_val_bool, - STATE(4680), 1, + STATE(4628), 1, + sym__val_number, + STATE(4846), 1, sym__inter_single_quotes, - STATE(4683), 1, + STATE(4847), 1, sym__inter_double_quotes, ACTIONS(1418), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3074), 2, + ACTIONS(3094), 2, anon_sym_true, anon_sym_false, - ACTIONS(3082), 2, + ACTIONS(3102), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3088), 2, + ACTIONS(3108), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4595), 2, + STATE(4768), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(1414), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3078), 3, + ACTIONS(3098), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(4889), 3, + STATE(4987), 3, sym_val_range, sym__value, sym__unquoted_in_record_with_expr, - STATE(3665), 4, + STATE(3725), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4538), 12, + STATE(4862), 12, sym_val_nothing, sym_val_cellpath, sym_val_number, @@ -146926,7 +148521,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [7326] = 37, + [7711] = 37, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1396), 1, @@ -146947,73 +148542,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, ACTIONS(1436), 1, sym_raw_string_begin, - ACTIONS(1482), 1, + ACTIONS(1486), 1, anon_sym_LBRACE, ACTIONS(1588), 1, anon_sym_LBRACK, - ACTIONS(3076), 1, + ACTIONS(3096), 1, anon_sym_null, - ACTIONS(3080), 1, + ACTIONS(3100), 1, anon_sym_DOT_DOT, - ACTIONS(3084), 1, + ACTIONS(3104), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3086), 1, + ACTIONS(3106), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3090), 1, + ACTIONS(3110), 1, sym_val_date, - ACTIONS(3092), 1, + ACTIONS(3112), 1, aux_sym__unquoted_in_record_token1, - STATE(1359), 1, + STATE(1369), 1, sym_comment, - STATE(3640), 1, + STATE(3655), 1, sym__val_number_decimal, - STATE(3965), 1, + STATE(4050), 1, sym_val_variable, - STATE(4187), 1, + STATE(4260), 1, sym_expr_parenthesized, - STATE(4278), 1, + STATE(4488), 1, + sym_val_bool, + STATE(4506), 1, sym__unquoted_in_record, - STATE(4386), 1, + STATE(4628), 1, sym__val_number, - STATE(4421), 1, - sym_val_bool, - STATE(4680), 1, + STATE(4846), 1, sym__inter_single_quotes, - STATE(4683), 1, + STATE(4847), 1, sym__inter_double_quotes, ACTIONS(1418), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3074), 2, + ACTIONS(3094), 2, anon_sym_true, anon_sym_false, - ACTIONS(3082), 2, + ACTIONS(3102), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3088), 2, + ACTIONS(3108), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4595), 2, + STATE(4768), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(1414), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3078), 3, + ACTIONS(3098), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(4835), 3, + STATE(5044), 3, sym_val_range, sym__value, sym__unquoted_in_record_with_expr, - STATE(3665), 4, + STATE(3725), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4538), 12, + STATE(4862), 12, sym_val_nothing, sym_val_cellpath, sym_val_number, @@ -147026,7 +148621,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [7463] = 37, + [7848] = 37, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(191), 1, @@ -147035,85 +148630,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(205), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1800), 1, + ACTIONS(1772), 1, anon_sym_DQUOTE, - ACTIONS(1802), 1, + ACTIONS(1774), 1, anon_sym_SQUOTE, - ACTIONS(1804), 1, + ACTIONS(1776), 1, anon_sym_BQUOTE, - ACTIONS(1806), 1, + ACTIONS(1778), 1, sym_raw_string_begin, - ACTIONS(1936), 1, + ACTIONS(1943), 1, aux_sym_unquoted_token1, - ACTIONS(2555), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2692), 1, + ACTIONS(2686), 1, anon_sym_LBRACK, - ACTIONS(2694), 1, + ACTIONS(2688), 1, anon_sym_LPAREN, - ACTIONS(2696), 1, + ACTIONS(2690), 1, anon_sym_DOLLAR, - ACTIONS(2698), 1, + ACTIONS(2692), 1, anon_sym_LBRACE, - ACTIONS(3050), 1, + ACTIONS(2822), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3070), 1, anon_sym_null, - ACTIONS(3054), 1, + ACTIONS(3074), 1, anon_sym_DOT_DOT, - ACTIONS(3062), 1, + ACTIONS(3082), 1, sym_val_date, - STATE(707), 1, + STATE(710), 1, sym__val_number, - STATE(749), 1, + STATE(808), 1, sym__inter_single_quotes, - STATE(750), 1, + STATE(809), 1, sym__inter_double_quotes, - STATE(1360), 1, + STATE(1370), 1, sym_comment, - STATE(3807), 1, + STATE(3905), 1, sym__val_number_decimal, - STATE(4227), 1, + STATE(4366), 1, sym_val_variable, - STATE(4422), 1, + STATE(4445), 1, sym_expr_parenthesized, - STATE(4816), 1, + STATE(4925), 1, sym_val_bool, - STATE(5079), 1, + STATE(5203), 1, sym_unquoted, ACTIONS(193), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3048), 2, + ACTIONS(3068), 2, anon_sym_true, anon_sym_false, - ACTIONS(3056), 2, + ACTIONS(3076), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3058), 2, + ACTIONS(3078), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3060), 2, + ACTIONS(3080), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(5078), 2, + STATE(5163), 2, sym_val_range, sym__value, - STATE(5176), 2, + STATE(5288), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(2561), 3, + ACTIONS(2600), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3052), 3, + ACTIONS(3072), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2266), 4, + STATE(2274), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(946), 12, + STATE(970), 12, sym_val_nothing, sym_val_cellpath, sym_val_number, @@ -147126,7 +148721,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [7600] = 37, + [7985] = 37, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1396), 1, @@ -147147,73 +148742,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, ACTIONS(1436), 1, sym_raw_string_begin, - ACTIONS(1482), 1, + ACTIONS(1486), 1, anon_sym_LBRACE, ACTIONS(1588), 1, anon_sym_LBRACK, - ACTIONS(3076), 1, + ACTIONS(3096), 1, anon_sym_null, - ACTIONS(3080), 1, + ACTIONS(3100), 1, anon_sym_DOT_DOT, - ACTIONS(3084), 1, + ACTIONS(3104), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3086), 1, + ACTIONS(3106), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3090), 1, + ACTIONS(3110), 1, sym_val_date, - ACTIONS(3092), 1, + ACTIONS(3112), 1, aux_sym__unquoted_in_record_token1, - STATE(1361), 1, + STATE(1371), 1, sym_comment, - STATE(3640), 1, + STATE(3655), 1, sym__val_number_decimal, - STATE(3965), 1, + STATE(4050), 1, sym_val_variable, - STATE(4154), 1, + STATE(4217), 1, sym_expr_parenthesized, - STATE(4249), 1, + STATE(4363), 1, sym__unquoted_in_record, - STATE(4386), 1, - sym__val_number, - STATE(4421), 1, + STATE(4488), 1, sym_val_bool, - STATE(4680), 1, + STATE(4628), 1, + sym__val_number, + STATE(4846), 1, sym__inter_single_quotes, - STATE(4683), 1, + STATE(4847), 1, sym__inter_double_quotes, ACTIONS(1418), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3074), 2, + ACTIONS(3094), 2, anon_sym_true, anon_sym_false, - ACTIONS(3082), 2, + ACTIONS(3102), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3088), 2, + ACTIONS(3108), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4595), 2, + STATE(4768), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(1414), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3078), 3, + ACTIONS(3098), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(4788), 3, + STATE(5031), 3, sym_val_range, sym__value, sym__unquoted_in_record_with_expr, - STATE(3665), 4, + STATE(3725), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4538), 12, + STATE(4862), 12, sym_val_nothing, sym_val_cellpath, sym_val_number, @@ -147226,20 +148821,19 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [7737] = 7, + [8122] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1357), 1, - aux_sym__block_body_repeat1, - STATE(1362), 1, - sym_comment, - ACTIONS(153), 2, + ACTIONS(3118), 1, sym__newline, + ACTIONS(3121), 1, anon_sym_SEMI, - ACTIONS(3098), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(3094), 10, + STATE(4654), 1, + aux_sym__repeat_newline, + STATE(1372), 2, + sym_comment, + aux_sym__parenthesized_body_repeat1, + ACTIONS(3114), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -147250,7 +148844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3096), 45, + ACTIONS(3116), 46, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -147268,6 +148862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -147296,120 +148891,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [7814] = 37, - ACTIONS(103), 1, + [8199] = 7, + 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(1800), 1, - anon_sym_DQUOTE, - ACTIONS(1802), 1, - anon_sym_SQUOTE, - ACTIONS(1804), 1, - anon_sym_BQUOTE, - ACTIONS(1806), 1, - sym_raw_string_begin, - ACTIONS(1936), 1, - aux_sym_unquoted_token1, - ACTIONS(2692), 1, - anon_sym_LBRACK, - ACTIONS(2694), 1, - anon_sym_LPAREN, - ACTIONS(2696), 1, + ACTIONS(3061), 1, + ts_builtin_sym_end, + STATE(1373), 1, + sym_comment, + STATE(1374), 1, + aux_sym__block_body_repeat1, + ACTIONS(55), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(3048), 10, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, anon_sym_DOLLAR, - ACTIONS(2698), 1, - anon_sym_LBRACE, - ACTIONS(2829), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3050), 1, - anon_sym_null, - ACTIONS(3054), 1, + anon_sym_DASH2, anon_sym_DOT_DOT, - ACTIONS(3062), 1, - sym_val_date, - STATE(707), 1, - sym__val_number, - STATE(749), 1, - sym__inter_single_quotes, - STATE(750), 1, - sym__inter_double_quotes, - STATE(1363), 1, - sym_comment, - STATE(3807), 1, - sym__val_number_decimal, - STATE(4227), 1, - sym_val_variable, - STATE(4460), 1, - sym_expr_parenthesized, - STATE(4816), 1, - sym_val_bool, - STATE(5197), 1, - sym_unquoted, - ACTIONS(193), 2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3048), 2, + ACTIONS(3050), 46, + 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_finally, + anon_sym_match, anon_sym_true, anon_sym_false, - ACTIONS(3056), 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_LBRACE, + anon_sym_where, + aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3058), 2, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3060), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(5176), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - STATE(5354), 2, - sym_val_range, - sym__value, - ACTIONS(2561), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3052), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(2266), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(946), 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, - [7951] = 7, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [8276] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1357), 1, - aux_sym__block_body_repeat1, - STATE(1364), 1, - sym_comment, - ACTIONS(153), 2, + ACTIONS(3124), 2, sym__newline, anon_sym_SEMI, - ACTIONS(3100), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(3094), 10, + STATE(1374), 2, + sym_comment, + aux_sym__block_body_repeat1, + ACTIONS(3054), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -147420,8 +148981,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3096), 45, + ACTIONS(3056), 47, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -147438,6 +149000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -147466,20 +149029,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [8028] = 7, + [8349] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1357), 1, - aux_sym__block_body_repeat1, - STATE(1365), 1, + ACTIONS(1966), 1, + anon_sym_PIPE, + STATE(1375), 1, sym_comment, - ACTIONS(153), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(3102), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(3094), 10, + ACTIONS(2769), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -147490,7 +149047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3096), 45, + ACTIONS(2766), 49, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -147508,6 +149065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -147515,10 +149073,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, @@ -147536,91 +149097,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [8105] = 36, + [8422] = 36, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(810), 1, + ACTIONS(918), 1, anon_sym_DOLLAR, - ACTIONS(832), 1, + ACTIONS(934), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(940), 1, anon_sym_0b, - ACTIONS(854), 1, + ACTIONS(960), 1, aux_sym_unquoted_token1, - ACTIONS(856), 1, + ACTIONS(962), 1, sym_raw_string_begin, - ACTIONS(1250), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3106), 1, + ACTIONS(3129), 1, anon_sym_null, - ACTIONS(3110), 1, + ACTIONS(3133), 1, anon_sym_LBRACK, - ACTIONS(3112), 1, + ACTIONS(3135), 1, anon_sym_LPAREN, - ACTIONS(3114), 1, + ACTIONS(3137), 1, anon_sym_LBRACE, - ACTIONS(3116), 1, + ACTIONS(3139), 1, anon_sym_DOT_DOT, - ACTIONS(3118), 1, + ACTIONS(3141), 1, anon_sym_LPAREN2, - ACTIONS(3122), 1, + ACTIONS(3145), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3128), 1, + ACTIONS(3151), 1, sym_val_date, - ACTIONS(3130), 1, + ACTIONS(3153), 1, anon_sym_DQUOTE, - ACTIONS(3132), 1, + ACTIONS(3155), 1, anon_sym_SQUOTE, - ACTIONS(3134), 1, + ACTIONS(3157), 1, anon_sym_BQUOTE, - ACTIONS(3136), 1, + ACTIONS(3159), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3138), 1, + ACTIONS(3161), 1, anon_sym_DOLLAR_DQUOTE, - STATE(1366), 1, + STATE(1376), 1, sym_comment, - STATE(3072), 1, + STATE(2509), 1, + sym__val_number_decimal, + STATE(3015), 1, + sym_val_bool, + STATE(3253), 1, sym_unquoted, - STATE(3094), 1, + STATE(3271), 1, + sym__val_number, + STATE(3334), 1, sym__inter_single_quotes, - STATE(3095), 1, + STATE(3335), 1, sym__inter_double_quotes, - STATE(3192), 1, - sym__val_number, - STATE(3700), 1, - sym__val_number_decimal, - STATE(4092), 1, - sym_val_bool, - ACTIONS(834), 2, + ACTIONS(942), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3104), 2, + ACTIONS(3127), 2, anon_sym_true, anon_sym_false, - ACTIONS(3120), 2, + ACTIONS(3143), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3124), 2, + ACTIONS(3147), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(3071), 2, + STATE(3251), 2, sym__expr_parenthesized_immediate, sym__value, - STATE(5092), 2, + STATE(5489), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(3108), 3, + ACTIONS(3131), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - ACTIONS(3126), 3, + ACTIONS(3149), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(2483), 4, + STATE(2547), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(3023), 13, + STATE(3270), 13, sym_val_nothing, sym_val_variable, sym_val_cellpath, @@ -147634,14 +149195,17 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [8239] = 5, + [8556] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2146), 1, - anon_sym_PIPE, - STATE(1367), 1, + STATE(1355), 1, + aux_sym__block_body_repeat1, + STATE(1377), 1, sym_comment, - ACTIONS(2955), 10, + ACTIONS(153), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(3048), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -147652,7 +149216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2952), 48, + ACTIONS(3050), 46, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -147670,6 +149234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -147677,13 +149242,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, @@ -147701,122 +149263,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [8311] = 40, + [8630] = 36, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(191), 1, - anon_sym_0b, - ACTIONS(1800), 1, + ACTIONS(1772), 1, anon_sym_DQUOTE, - ACTIONS(1802), 1, + ACTIONS(1774), 1, anon_sym_SQUOTE, - ACTIONS(1804), 1, + ACTIONS(1776), 1, anon_sym_BQUOTE, - ACTIONS(1806), 1, + ACTIONS(1778), 1, sym_raw_string_begin, - ACTIONS(1936), 1, - aux_sym_unquoted_token1, - ACTIONS(2694), 1, - anon_sym_LPAREN, - ACTIONS(2865), 1, + ACTIONS(2994), 1, + anon_sym_0b, + ACTIONS(3006), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3008), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3165), 1, anon_sym_null, - ACTIONS(2871), 1, + ACTIONS(3169), 1, anon_sym_LBRACK, - ACTIONS(2873), 1, + ACTIONS(3171), 1, + anon_sym_LPAREN, + ACTIONS(3173), 1, anon_sym_DOLLAR, - ACTIONS(2875), 1, + ACTIONS(3175), 1, anon_sym_LBRACE, - ACTIONS(2879), 1, - anon_sym__, - ACTIONS(2881), 1, + ACTIONS(3177), 1, anon_sym_DOT_DOT, - ACTIONS(2885), 1, + ACTIONS(3179), 1, + anon_sym_LPAREN2, + ACTIONS(3183), 1, aux_sym__val_number_decimal_token1, - ACTIONS(2887), 1, + ACTIONS(3185), 1, aux_sym__val_number_decimal_token2, - ACTIONS(2891), 1, + ACTIONS(3189), 1, sym_val_date, - STATE(707), 1, - sym__val_number, - STATE(1368), 1, + ACTIONS(3191), 1, + aux_sym_unquoted_token1, + STATE(1378), 1, sym_comment, - STATE(1380), 1, - aux_sym__ctrl_match_body_repeat1, - STATE(3636), 1, + STATE(3046), 1, + sym__val_number, + STATE(3074), 1, + sym__inter_single_quotes, + STATE(3075), 1, + sym__inter_double_quotes, + STATE(3724), 1, sym__val_number_decimal, - STATE(3808), 1, - sym_val_variable, - STATE(3865), 1, - sym_expr_parenthesized, - STATE(4028), 1, - sym__match_pattern, - STATE(4169), 1, + STATE(4648), 1, sym_val_bool, - STATE(4471), 1, - sym__match_pattern_expression, - STATE(4483), 1, - sym__match_pattern_list, - STATE(4503), 1, + STATE(4741), 1, sym_unquoted, - STATE(5194), 1, - sym_match_pattern, - ACTIONS(193), 2, + ACTIONS(2996), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(2863), 2, + ACTIONS(3163), 2, anon_sym_true, anon_sym_false, - ACTIONS(2883), 2, + ACTIONS(3181), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(2889), 2, + ACTIONS(3187), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4475), 2, - sym__match_pattern_value, - sym_val_range, - STATE(4679), 2, - sym_match_arm, - sym_default_arm, - STATE(5176), 2, + STATE(4734), 2, + sym__expr_parenthesized_immediate, + sym__value, + STATE(5502), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(189), 3, + ACTIONS(2992), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(2867), 3, + ACTIONS(3167), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2266), 4, + STATE(2274), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4489), 8, - sym__match_pattern_record, + STATE(3044), 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, - [8453] = 8, + sym_val_closure, + [8764] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2563), 1, - sym__newline, - ACTIONS(3144), 1, - anon_sym_SEMI, - STATE(1369), 1, + STATE(1379), 1, sym_comment, - STATE(1383), 1, - aux_sym__parenthesized_body_repeat1, - STATE(1391), 1, - aux_sym__repeat_newline, - ACTIONS(3140), 10, + ACTIONS(3084), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -147827,8 +149377,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3142), 45, + ACTIONS(3086), 49, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -147845,6 +149396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -147852,6 +149404,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, @@ -147873,19 +149427,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [8531] = 7, + [8834] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3098), 1, - ts_builtin_sym_end, - STATE(1370), 1, + STATE(1380), 1, sym_comment, - STATE(1374), 1, - aux_sym__block_body_repeat1, - ACTIONS(55), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(3094), 10, + ACTIONS(3195), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -147896,8 +149443,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3096), 45, + ACTIONS(3193), 49, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -147914,6 +149462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -147921,6 +149470,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, @@ -147942,226 +149493,294 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [8607] = 4, + [8904] = 40, ACTIONS(3), 1, anon_sym_POUND, - STATE(1371), 1, - sym_comment, - ACTIONS(3146), 10, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, + ACTIONS(191), 1, + anon_sym_0b, + ACTIONS(1772), 1, + anon_sym_DQUOTE, + ACTIONS(1774), 1, + anon_sym_SQUOTE, + ACTIONS(1776), 1, + anon_sym_BQUOTE, + ACTIONS(1778), 1, + sym_raw_string_begin, + ACTIONS(1943), 1, + aux_sym_unquoted_token1, + ACTIONS(2688), 1, + anon_sym_LPAREN, + ACTIONS(2930), 1, + anon_sym_null, + ACTIONS(2936), 1, + anon_sym_LBRACK, + ACTIONS(2938), 1, anon_sym_DOLLAR, - anon_sym_DASH2, + ACTIONS(2940), 1, + anon_sym_LBRACE, + ACTIONS(2944), 1, + anon_sym__, + ACTIONS(2946), 1, anon_sym_DOT_DOT, + ACTIONS(2950), 1, aux_sym__val_number_decimal_token1, - anon_sym_0b, + ACTIONS(2952), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(2956), 1, + sym_val_date, + STATE(710), 1, + sym__val_number, + STATE(1381), 1, + sym_comment, + STATE(1382), 1, + aux_sym__ctrl_match_body_repeat1, + STATE(3638), 1, + sym__val_number_decimal, + STATE(3872), 1, + sym_val_variable, + STATE(3917), 1, + sym_expr_parenthesized, + STATE(4156), 1, + sym__match_pattern, + STATE(4286), 1, + sym_val_bool, + STATE(4612), 1, + sym__match_pattern_expression, + STATE(4619), 1, + sym__match_pattern_list, + STATE(4621), 1, + sym_unquoted, + STATE(5314), 1, + sym_match_pattern, + ACTIONS(193), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3148), 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, + ACTIONS(2928), 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_AT, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_where, - aux_sym_expr_unary_token1, + ACTIONS(2948), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, + ACTIONS(2954), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + STATE(4618), 2, + sym__match_pattern_value, + sym_val_range, + STATE(4663), 2, + sym_match_arm, + sym_default_arm, + STATE(5288), 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, - [8677] = 7, + ACTIONS(2932), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(2274), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4620), 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, + [9046] = 39, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3100), 1, - ts_builtin_sym_end, - STATE(1372), 1, - sym_comment, - STATE(1374), 1, - aux_sym__block_body_repeat1, - ACTIONS(55), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(3094), 10, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, + ACTIONS(3200), 1, + anon_sym_null, + ACTIONS(3206), 1, + anon_sym_LBRACK, + ACTIONS(3209), 1, + anon_sym_LPAREN, + ACTIONS(3212), 1, anon_sym_DOLLAR, - anon_sym_DASH2, + ACTIONS(3215), 1, + anon_sym_LBRACE, + ACTIONS(3218), 1, + anon_sym__, + ACTIONS(3221), 1, anon_sym_DOT_DOT, + ACTIONS(3227), 1, aux_sym__val_number_decimal_token1, + ACTIONS(3230), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3239), 1, anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3096), 45, + ACTIONS(3245), 1, + sym_val_date, + ACTIONS(3248), 1, + anon_sym_DQUOTE, + ACTIONS(3251), 1, + anon_sym_SQUOTE, + ACTIONS(3254), 1, + anon_sym_BQUOTE, + ACTIONS(3257), 1, + aux_sym_unquoted_token1, + ACTIONS(3260), 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(710), 1, + sym__val_number, + STATE(3638), 1, + sym__val_number_decimal, + STATE(3872), 1, + sym_val_variable, + STATE(3917), 1, + sym_expr_parenthesized, + STATE(4156), 1, + sym__match_pattern, + STATE(4286), 1, + sym_val_bool, + STATE(4612), 1, + sym__match_pattern_expression, + STATE(4619), 1, + sym__match_pattern_list, + STATE(4621), 1, + sym_unquoted, + STATE(5314), 1, + sym_match_pattern, + ACTIONS(3197), 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(3224), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, + ACTIONS(3233), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + ACTIONS(3242), 2, + anon_sym_0o, + anon_sym_0x, + STATE(1382), 2, + sym_comment, + aux_sym__ctrl_match_body_repeat1, + STATE(4618), 2, + sym__match_pattern_value, + sym_val_range, + STATE(4929), 2, + sym_match_arm, + sym_default_arm, + STATE(5288), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(3203), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + ACTIONS(3236), 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, - [8753] = 36, + STATE(2274), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4620), 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, + [9186] = 36, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1800), 1, - anon_sym_DQUOTE, - ACTIONS(1802), 1, - anon_sym_SQUOTE, - ACTIONS(1804), 1, - anon_sym_BQUOTE, - ACTIONS(1806), 1, - sym_raw_string_begin, - ACTIONS(2994), 1, - anon_sym_0b, - ACTIONS(3006), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3008), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3152), 1, + ACTIONS(3265), 1, anon_sym_null, - ACTIONS(3156), 1, + ACTIONS(3269), 1, anon_sym_LBRACK, - ACTIONS(3158), 1, + ACTIONS(3271), 1, anon_sym_LPAREN, - ACTIONS(3160), 1, + ACTIONS(3273), 1, anon_sym_DOLLAR, - ACTIONS(3162), 1, + ACTIONS(3275), 1, anon_sym_LBRACE, - ACTIONS(3164), 1, + ACTIONS(3277), 1, anon_sym_DOT_DOT, - ACTIONS(3166), 1, + ACTIONS(3279), 1, anon_sym_LPAREN2, - ACTIONS(3170), 1, + ACTIONS(3283), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3172), 1, + ACTIONS(3285), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3176), 1, + ACTIONS(3291), 1, + anon_sym_0b, + ACTIONS(3295), 1, sym_val_date, - ACTIONS(3178), 1, + ACTIONS(3297), 1, + anon_sym_DQUOTE, + ACTIONS(3299), 1, + anon_sym_SQUOTE, + ACTIONS(3301), 1, + anon_sym_BQUOTE, + ACTIONS(3303), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3305), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3307), 1, aux_sym_unquoted_token1, - STATE(1373), 1, + ACTIONS(3309), 1, + sym_raw_string_begin, + STATE(1383), 1, sym_comment, - STATE(3048), 1, - sym__inter_single_quotes, - STATE(3049), 1, - sym__inter_double_quotes, - STATE(3092), 1, - sym__val_number, - STATE(3714), 1, + STATE(1854), 1, sym__val_number_decimal, - STATE(4217), 1, + STATE(2093), 1, sym_val_bool, - STATE(4716), 1, + STATE(2194), 1, sym_unquoted, - ACTIONS(2996), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3150), 2, + STATE(2198), 1, + sym__inter_single_quotes, + STATE(2199), 1, + sym__inter_double_quotes, + STATE(2206), 1, + sym__val_number, + ACTIONS(3263), 2, anon_sym_true, anon_sym_false, - ACTIONS(3168), 2, + ACTIONS(3281), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3174), 2, + ACTIONS(3287), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4712), 2, + ACTIONS(3293), 2, + anon_sym_0o, + anon_sym_0x, + STATE(2155), 2, sym__expr_parenthesized_immediate, sym__value, - STATE(5373), 2, + STATE(5328), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(2992), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(3154), 3, + ACTIONS(3267), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2266), 4, + ACTIONS(3289), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(2187), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(3091), 13, + STATE(2204), 13, sym_val_nothing, sym_val_variable, sym_val_cellpath, @@ -148175,16 +149794,12 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [8887] = 5, + [9320] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3180), 2, - sym__newline, - anon_sym_SEMI, - STATE(1374), 2, + STATE(1384), 1, sym_comment, - aux_sym__block_body_repeat1, - ACTIONS(3067), 10, + ACTIONS(3311), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -148195,9 +149810,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3069), 46, + ACTIONS(3313), 49, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -148214,6 +149828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -148221,78 +149836,13 @@ 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_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, - [8959] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2146), 1, - anon_sym_POUND_BANG, - ACTIONS(2952), 1, sym__newline, - STATE(1375), 1, - sym_comment, - ACTIONS(3146), 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(3148), 47, - 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, 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, @@ -148310,12 +149860,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [9033] = 4, + [9390] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1376), 1, + STATE(1385), 1, sym_comment, - ACTIONS(2148), 10, + ACTIONS(3317), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -148326,8 +149876,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2146), 49, + ACTIONS(3315), 49, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -148344,6 +149895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -148353,12 +149905,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -148376,198 +149926,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [9103] = 36, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(810), 1, - anon_sym_DOLLAR, - ACTIONS(826), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(832), 1, - anon_sym_0b, - ACTIONS(854), 1, - aux_sym_unquoted_token1, - ACTIONS(856), 1, - sym_raw_string_begin, - ACTIONS(3110), 1, - anon_sym_LBRACK, - ACTIONS(3112), 1, - anon_sym_LPAREN, - ACTIONS(3114), 1, - anon_sym_LBRACE, - ACTIONS(3116), 1, - anon_sym_DOT_DOT, - ACTIONS(3118), 1, - anon_sym_LPAREN2, - ACTIONS(3130), 1, - anon_sym_DQUOTE, - ACTIONS(3132), 1, - anon_sym_SQUOTE, - ACTIONS(3134), 1, - anon_sym_BQUOTE, - ACTIONS(3136), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3138), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3185), 1, - anon_sym_null, - ACTIONS(3189), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3193), 1, - sym_val_date, - STATE(1377), 1, - sym_comment, - STATE(2493), 1, - sym__val_number_decimal, - STATE(2794), 1, - sym_val_bool, - STATE(3072), 1, - sym_unquoted, - STATE(3094), 1, - sym__inter_single_quotes, - STATE(3095), 1, - sym__inter_double_quotes, - STATE(3192), 1, - sym__val_number, - ACTIONS(834), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3120), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3183), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3191), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(3071), 2, - sym__expr_parenthesized_immediate, - sym__value, - STATE(5092), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(3126), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(3187), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(2483), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3023), 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, - [9237] = 40, + [9460] = 40, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(191), 1, anon_sym_0b, - ACTIONS(1800), 1, + ACTIONS(1772), 1, anon_sym_DQUOTE, - ACTIONS(1802), 1, + ACTIONS(1774), 1, anon_sym_SQUOTE, - ACTIONS(1804), 1, + ACTIONS(1776), 1, anon_sym_BQUOTE, - ACTIONS(1806), 1, + ACTIONS(1778), 1, sym_raw_string_begin, - ACTIONS(1936), 1, + ACTIONS(1943), 1, aux_sym_unquoted_token1, - ACTIONS(2694), 1, + ACTIONS(2688), 1, anon_sym_LPAREN, - ACTIONS(2865), 1, + ACTIONS(2930), 1, anon_sym_null, - ACTIONS(2871), 1, + ACTIONS(2936), 1, anon_sym_LBRACK, - ACTIONS(2873), 1, + ACTIONS(2938), 1, anon_sym_DOLLAR, - ACTIONS(2875), 1, + ACTIONS(2940), 1, anon_sym_LBRACE, - ACTIONS(2879), 1, + ACTIONS(2944), 1, anon_sym__, - ACTIONS(2881), 1, + ACTIONS(2946), 1, anon_sym_DOT_DOT, - ACTIONS(2885), 1, + ACTIONS(2950), 1, aux_sym__val_number_decimal_token1, - ACTIONS(2887), 1, + ACTIONS(2952), 1, aux_sym__val_number_decimal_token2, - ACTIONS(2891), 1, + ACTIONS(2956), 1, sym_val_date, - STATE(707), 1, + STATE(710), 1, sym__val_number, - STATE(1378), 1, - sym_comment, - STATE(1380), 1, + STATE(1382), 1, aux_sym__ctrl_match_body_repeat1, - STATE(3636), 1, + STATE(1386), 1, + sym_comment, + STATE(3638), 1, sym__val_number_decimal, - STATE(3808), 1, + STATE(3872), 1, sym_val_variable, - STATE(3865), 1, + STATE(3917), 1, sym_expr_parenthesized, - STATE(4028), 1, + STATE(4156), 1, sym__match_pattern, - STATE(4169), 1, + STATE(4286), 1, sym_val_bool, - STATE(4471), 1, + STATE(4612), 1, sym__match_pattern_expression, - STATE(4483), 1, + STATE(4619), 1, sym__match_pattern_list, - STATE(4503), 1, + STATE(4621), 1, sym_unquoted, - STATE(5194), 1, + STATE(5314), 1, sym_match_pattern, ACTIONS(193), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(2863), 2, + ACTIONS(2928), 2, anon_sym_true, anon_sym_false, - ACTIONS(2883), 2, + ACTIONS(2948), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(2889), 2, + ACTIONS(2954), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4475), 2, + STATE(4618), 2, sym__match_pattern_value, sym_val_range, - STATE(4729), 2, + STATE(4827), 2, sym_match_arm, sym_default_arm, - STATE(5176), 2, + STATE(5288), 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(2867), 3, + ACTIONS(2932), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2266), 4, + STATE(2274), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4489), 8, + STATE(4620), 8, sym__match_pattern_record, sym_val_nothing, sym_val_number, @@ -148576,19 +150028,12 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_table, - [9379] = 7, + [9602] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3102), 1, - ts_builtin_sym_end, - STATE(1374), 1, - aux_sym__block_body_repeat1, - STATE(1379), 1, + STATE(1387), 1, sym_comment, - ACTIONS(55), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(3094), 10, + ACTIONS(3319), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -148599,7 +150044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3096), 45, + ACTIONS(3321), 49, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -148617,6 +150062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -148624,10 +150070,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, @@ -148645,192 +150094,226 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [9455] = 39, + [9672] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3198), 1, - anon_sym_null, - ACTIONS(3204), 1, - anon_sym_LBRACK, - ACTIONS(3207), 1, - anon_sym_LPAREN, - ACTIONS(3210), 1, + STATE(1388), 1, + sym_comment, + ACTIONS(3323), 10, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, anon_sym_DOLLAR, - ACTIONS(3213), 1, - anon_sym_LBRACE, - ACTIONS(3216), 1, - anon_sym__, - ACTIONS(3219), 1, + anon_sym_DASH2, anon_sym_DOT_DOT, - ACTIONS(3225), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3228), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3237), 1, anon_sym_0b, - ACTIONS(3243), 1, - sym_val_date, - ACTIONS(3246), 1, - anon_sym_DQUOTE, - ACTIONS(3249), 1, - anon_sym_SQUOTE, - ACTIONS(3252), 1, - anon_sym_BQUOTE, - ACTIONS(3255), 1, - aux_sym_unquoted_token1, - ACTIONS(3258), 1, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3325), 49, sym_raw_string_begin, - STATE(707), 1, - sym__val_number, - STATE(3636), 1, - sym__val_number_decimal, - STATE(3808), 1, - sym_val_variable, - STATE(3865), 1, - sym_expr_parenthesized, - STATE(4028), 1, - sym__match_pattern, - STATE(4169), 1, - sym_val_bool, - STATE(4471), 1, - sym__match_pattern_expression, - STATE(4483), 1, - sym__match_pattern_list, - STATE(4503), 1, - sym_unquoted, - STATE(5194), 1, - sym_match_pattern, - ACTIONS(3195), 2, + 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_finally, + anon_sym_match, anon_sym_true, anon_sym_false, - ACTIONS(3222), 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_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, - ACTIONS(3231), 2, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3240), 2, + 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, + [9742] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2602), 1, + sym__newline, + ACTIONS(3331), 1, + anon_sym_SEMI, + STATE(1358), 1, + aux_sym__repeat_newline, + STATE(1389), 1, + sym_comment, + ACTIONS(3327), 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, - STATE(1380), 2, - sym_comment, - aux_sym__ctrl_match_body_repeat1, - STATE(4475), 2, - sym__match_pattern_value, - sym_val_range, - STATE(4789), 2, - sym_match_arm, - sym_default_arm, - STATE(5176), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(3201), 3, + ACTIONS(3329), 46, + 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_finally, + 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, - ACTIONS(3234), 3, + 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, - STATE(2266), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4489), 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, - [9595] = 36, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [9818] = 36, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3263), 1, + ACTIONS(799), 1, + anon_sym_DOLLAR, + ACTIONS(821), 1, + anon_sym_0b, + ACTIONS(841), 1, + aux_sym_unquoted_token1, + ACTIONS(843), 1, + sym_raw_string_begin, + ACTIONS(1250), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3335), 1, anon_sym_null, - ACTIONS(3267), 1, + ACTIONS(3339), 1, anon_sym_LBRACK, - ACTIONS(3269), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3271), 1, - anon_sym_DOLLAR, - ACTIONS(3273), 1, + ACTIONS(3343), 1, anon_sym_LBRACE, - ACTIONS(3275), 1, + ACTIONS(3345), 1, anon_sym_DOT_DOT, - ACTIONS(3277), 1, + ACTIONS(3347), 1, anon_sym_LPAREN2, - ACTIONS(3281), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3283), 1, + ACTIONS(3351), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3289), 1, - anon_sym_0b, - ACTIONS(3293), 1, + ACTIONS(3357), 1, sym_val_date, - ACTIONS(3295), 1, + ACTIONS(3359), 1, anon_sym_DQUOTE, - ACTIONS(3297), 1, + ACTIONS(3361), 1, anon_sym_SQUOTE, - ACTIONS(3299), 1, + ACTIONS(3363), 1, anon_sym_BQUOTE, - ACTIONS(3301), 1, + ACTIONS(3365), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3303), 1, + ACTIONS(3367), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3305), 1, - aux_sym_unquoted_token1, - ACTIONS(3307), 1, - sym_raw_string_begin, - STATE(1381), 1, + STATE(1390), 1, sym_comment, - STATE(1863), 1, - sym__val_number_decimal, - STATE(2144), 1, - sym_val_bool, - STATE(2172), 1, + STATE(3047), 1, sym__inter_single_quotes, - STATE(2173), 1, + STATE(3048), 1, sym__inter_double_quotes, - STATE(2208), 1, - sym__val_number, - STATE(2232), 1, + STATE(3202), 1, sym_unquoted, - ACTIONS(3261), 2, + STATE(3229), 1, + sym__val_number, + STATE(3737), 1, + sym__val_number_decimal, + STATE(4233), 1, + sym_val_bool, + ACTIONS(823), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3333), 2, anon_sym_true, anon_sym_false, - ACTIONS(3279), 2, + ACTIONS(3349), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3285), 2, + ACTIONS(3353), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3291), 2, - anon_sym_0o, - anon_sym_0x, - STATE(2230), 2, + STATE(3201), 2, sym__expr_parenthesized_immediate, sym__value, - STATE(5227), 2, + STATE(5250), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(3265), 3, + ACTIONS(3337), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - ACTIONS(3287), 3, + ACTIONS(3355), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(2178), 4, + STATE(2477), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(2206), 13, + STATE(3228), 13, sym_val_nothing, sym_val_variable, sym_val_cellpath, @@ -148844,91 +150327,91 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [9729] = 36, + [9952] = 36, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(930), 1, + ACTIONS(799), 1, anon_sym_DOLLAR, - ACTIONS(946), 1, + ACTIONS(815), 1, aux_sym__val_number_decimal_token1, - ACTIONS(952), 1, + ACTIONS(821), 1, anon_sym_0b, - ACTIONS(972), 1, + ACTIONS(841), 1, aux_sym_unquoted_token1, - ACTIONS(974), 1, + ACTIONS(843), 1, sym_raw_string_begin, - ACTIONS(3311), 1, - anon_sym_null, - ACTIONS(3315), 1, + ACTIONS(3339), 1, anon_sym_LBRACK, - ACTIONS(3317), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(3319), 1, + ACTIONS(3343), 1, anon_sym_LBRACE, - ACTIONS(3321), 1, + ACTIONS(3345), 1, anon_sym_DOT_DOT, - ACTIONS(3323), 1, + ACTIONS(3347), 1, anon_sym_LPAREN2, - ACTIONS(3327), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3333), 1, - sym_val_date, - ACTIONS(3335), 1, + ACTIONS(3359), 1, anon_sym_DQUOTE, - ACTIONS(3337), 1, + ACTIONS(3361), 1, anon_sym_SQUOTE, - ACTIONS(3339), 1, + ACTIONS(3363), 1, anon_sym_BQUOTE, - ACTIONS(3341), 1, + ACTIONS(3365), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3343), 1, + ACTIONS(3367), 1, anon_sym_DOLLAR_DQUOTE, - STATE(1382), 1, + ACTIONS(3371), 1, + anon_sym_null, + ACTIONS(3375), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3379), 1, + sym_val_date, + STATE(1391), 1, sym_comment, - STATE(2528), 1, + STATE(2465), 1, sym__val_number_decimal, - STATE(2950), 1, + STATE(2841), 1, sym_val_bool, - STATE(3340), 1, + STATE(3047), 1, sym__inter_single_quotes, - STATE(3342), 1, + STATE(3048), 1, sym__inter_double_quotes, - STATE(3344), 1, + STATE(3202), 1, sym_unquoted, - STATE(3362), 1, + STATE(3229), 1, sym__val_number, - ACTIONS(954), 2, + ACTIONS(823), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3309), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3325), 2, + ACTIONS(3349), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3329), 2, + ACTIONS(3369), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3377), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(3275), 2, + STATE(3201), 2, sym__expr_parenthesized_immediate, sym__value, - STATE(5316), 2, + STATE(5250), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(3313), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(3331), 3, + ACTIONS(3355), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(2554), 4, + ACTIONS(3373), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(2477), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(3355), 13, + STATE(3228), 13, sym_val_nothing, sym_val_variable, sym_val_cellpath, @@ -148942,19 +150425,17 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [9863] = 7, + [10086] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3349), 1, + ACTIONS(3086), 1, + anon_sym_RPAREN, + STATE(1392), 1, + sym_comment, + ACTIONS(3385), 2, sym__newline, - ACTIONS(3352), 1, anon_sym_SEMI, - STATE(4562), 1, - aux_sym__repeat_newline, - STATE(1383), 2, - sym_comment, - aux_sym__parenthesized_body_repeat1, - ACTIONS(3345), 10, + ACTIONS(3381), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -148965,7 +150446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3347), 45, + ACTIONS(3383), 46, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -148983,6 +150464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -149011,29 +150493,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [9939] = 6, + [10160] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3148), 1, - anon_sym_RPAREN, - STATE(1384), 1, + ACTIONS(1601), 1, + anon_sym_DOLLAR, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + ACTIONS(1637), 1, + sym__unquoted_pattern, + ACTIONS(3388), 1, + anon_sym_DOT, + STATE(1393), 1, sym_comment, - ACTIONS(3359), 2, + STATE(1448), 1, + sym__immediate_decimal, + ACTIONS(3390), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3392), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(703), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1633), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1631), 41, + anon_sym_in, sym__newline, anon_sym_SEMI, - ACTIONS(3355), 10, - anon_sym_export, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_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, + [10245] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3400), 1, aux_sym_cmd_identifier_token1, + ACTIONS(3407), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3410), 1, + aux_sym__val_number_decimal_token2, + STATE(2113), 1, + sym__val_number_decimal, + STATE(4794), 1, + sym_env_var, + STATE(5257), 1, + sym_cmd_identifier, + ACTIONS(3394), 2, + anon_sym_export, anon_sym_in, + ACTIONS(3413), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(1394), 2, + sym_comment, + aux_sym_pipe_element_parenthesized_repeat2, + ACTIONS(3405), 6, 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(3357), 45, + ACTIONS(3403), 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(3397), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -149050,6 +150632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -149057,33 +150640,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_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, - [10012] = 4, + [10332] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1385), 1, + STATE(1395), 1, sym_comment, - ACTIONS(3362), 10, + ACTIONS(3381), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -149094,7 +150656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3364), 48, + ACTIONS(3383), 48, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -149112,6 +150674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -149125,7 +150688,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, @@ -149143,25 +150705,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10081] = 4, + [10401] = 13, ACTIONS(3), 1, anon_sym_POUND, - STATE(1386), 1, - sym_comment, - ACTIONS(3368), 10, - anon_sym_export, + ACTIONS(3422), 1, aux_sym_cmd_identifier_token1, + ACTIONS(3429), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3432), 1, + aux_sym__val_number_decimal_token2, + STATE(2113), 1, + sym__val_number_decimal, + STATE(5036), 1, + sym_env_var, + STATE(5257), 1, + sym_cmd_identifier, + ACTIONS(3416), 2, + anon_sym_export, anon_sym_in, + ACTIONS(3435), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(1396), 2, + sym_comment, + aux_sym_pipe_element_repeat2, + ACTIONS(3427), 6, 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(3366), 48, + ACTIONS(3425), 17, sym_raw_string_begin, - ts_builtin_sym_end, + 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(3419), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -149178,6 +150771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -149185,40 +150779,12 @@ 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_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, - [10150] = 6, + [10488] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1357), 1, - aux_sym__block_body_repeat1, - STATE(1387), 1, + STATE(1397), 1, sym_comment, - ACTIONS(153), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(3094), 10, + ACTIONS(3114), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -149229,7 +150795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3096), 45, + ACTIONS(3116), 48, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -149247,6 +150813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -149254,6 +150821,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, @@ -149275,38 +150844,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10223] = 12, + [10557] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1600), 1, + ACTIONS(1601), 1, anon_sym_DOLLAR, - ACTIONS(1604), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, - ACTIONS(1635), 1, + ACTIONS(1695), 1, sym__unquoted_pattern, - ACTIONS(3370), 1, - anon_sym_DOT, - STATE(1388), 1, + STATE(1398), 1, sym_comment, - STATE(1444), 1, + STATE(1485), 1, sym__immediate_decimal, - ACTIONS(3372), 2, + ACTIONS(3438), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3374), 2, + ACTIONS(3440), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(688), 2, + STATE(807), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1602), 6, + ACTIONS(1683), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1598), 41, + ACTIONS(1681), 41, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -149348,29 +150915,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [10308] = 4, - ACTIONS(3), 1, + [10639] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(1389), 1, + ACTIONS(3444), 1, + sym__newline, + ACTIONS(3447), 1, + sym__space, + ACTIONS(3450), 1, + sym_raw_string_begin, + STATE(1399), 2, sym_comment, - ACTIONS(3146), 10, + aux_sym_pipe_element_parenthesized_repeat1, + ACTIONS(3442), 53, 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(3148), 48, - sym_raw_string_begin, - ts_builtin_sym_end, 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, @@ -149383,94 +150946,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, 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_AT, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, anon_sym_LBRACE, - anon_sym_where, + 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, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [10377] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1390), 1, - sym_comment, - ACTIONS(3376), 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(3378), 48, - 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_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, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -149478,34 +150981,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10446] = 7, - ACTIONS(3), 1, + [10711] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2563), 1, + ACTIONS(3403), 1, + sym_raw_string_begin, + ACTIONS(3452), 1, sym__newline, - ACTIONS(3384), 1, - anon_sym_SEMI, - STATE(1356), 1, - aux_sym__repeat_newline, - STATE(1391), 1, + ACTIONS(3454), 1, + sym__space, + STATE(1399), 1, + aux_sym_pipe_element_parenthesized_repeat1, + STATE(1400), 1, sym_comment, - ACTIONS(3380), 10, + ACTIONS(3405), 53, 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(3382), 45, - 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, @@ -149518,157 +151013,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, 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_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, - [10521] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1392), 1, - sym_comment, - ACTIONS(3388), 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(3386), 48, - 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_AT, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_where, + 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, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [10590] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1393), 1, - sym_comment, - ACTIONS(3390), 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(3392), 48, - 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_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, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -149676,36 +151048,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10659] = 11, + [10785] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1600), 1, + ACTIONS(1637), 1, + sym__unquoted_pattern, + ACTIONS(1685), 1, anon_sym_DOLLAR, - ACTIONS(1604), 1, + ACTIONS(1687), 1, anon_sym_LPAREN2, - ACTIONS(1679), 1, - sym__unquoted_pattern, - STATE(1394), 1, + ACTIONS(3456), 1, + anon_sym_DOT, + STATE(1401), 1, sym_comment, - STATE(1491), 1, + STATE(1454), 1, sym__immediate_decimal, - ACTIONS(3394), 2, + ACTIONS(3458), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3396), 2, + ACTIONS(3460), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(748), 2, + STATE(919), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1653), 6, + ACTIONS(1633), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1651), 41, + ACTIONS(1631), 40, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -149718,8 +151093,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, @@ -149747,237 +151120,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [10741] = 13, + [10869] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3404), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3411), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3414), 1, - aux_sym__val_number_decimal_token2, - STATE(2137), 1, - sym__val_number_decimal, - STATE(4730), 1, - sym_env_var, - STATE(5260), 1, - sym_cmd_identifier, - ACTIONS(3398), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3417), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(1395), 2, - sym_comment, - aux_sym_pipe_element_parenthesized_repeat2, - ACTIONS(3409), 6, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3407), 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(3401), 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, - [10827] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1396), 1, - sym_comment, - ACTIONS(3345), 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(3347), 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, - [10895] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1397), 1, - sym_comment, - ACTIONS(3355), 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(3357), 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, - [10963] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1600), 1, + ACTIONS(1601), 1, anon_sym_DOLLAR, - ACTIONS(1604), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, - ACTIONS(1635), 1, + ACTIONS(1637), 1, sym__unquoted_pattern, - STATE(1398), 1, + STATE(1402), 1, sym_comment, - STATE(1468), 1, + STATE(1483), 1, sym__immediate_decimal, - ACTIONS(3394), 2, + ACTIONS(3438), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3396), 2, + ACTIONS(3440), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(730), 2, + STATE(788), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1602), 6, + ACTIONS(1633), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1598), 41, + ACTIONS(1631), 41, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -150019,39 +151191,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [11045] = 12, + [10951] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1635), 1, - sym__unquoted_pattern, - ACTIONS(1685), 1, - anon_sym_DOLLAR, - ACTIONS(1687), 1, - anon_sym_LPAREN2, - ACTIONS(3420), 1, + ACTIONS(3462), 1, anon_sym_DOT, - STATE(1399), 1, + ACTIONS(3464), 1, + aux_sym__immediate_decimal_token5, + STATE(1403), 1, sym_comment, - STATE(1453), 1, - sym__immediate_decimal, - ACTIONS(3422), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3424), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(929), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1602), 6, + ACTIONS(747), 8, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1598), 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, @@ -150064,6 +151222,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, @@ -150082,6 +151243,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, @@ -150091,48 +151253,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [11129] = 13, - ACTIONS(3), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [11022] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3432), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3439), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3442), 1, - aux_sym__val_number_decimal_token2, - STATE(2137), 1, - sym__val_number_decimal, - STATE(4786), 1, - sym_env_var, - STATE(5260), 1, - sym_cmd_identifier, - ACTIONS(3426), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3445), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(1400), 2, + STATE(1404), 1, sym_comment, - aux_sym_pipe_element_repeat2, - ACTIONS(3437), 6, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3435), 17, + ACTIONS(3466), 2, sym_raw_string_begin, + sym__space, + ACTIONS(880), 54, + 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_finally, + 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_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, @@ -150140,11 +151319,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - ACTIONS(3429), 23, + [11089] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3425), 1, + sym_raw_string_begin, + ACTIONS(3468), 1, + sym__space, + STATE(1405), 1, + sym_comment, + STATE(1413), 1, + aux_sym_pipe_element_repeat1, + ACTIONS(3427), 53, + 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, @@ -150157,84 +151349,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, 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] = 11, + 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, + [11160] = 33, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1679), 1, - sym__unquoted_pattern, - ACTIONS(1685), 1, + ACTIONS(1396), 1, + anon_sym_LPAREN, + ACTIONS(1400), 1, anon_sym_DOLLAR, - ACTIONS(1687), 1, - anon_sym_LPAREN2, - STATE(1401), 1, + ACTIONS(1416), 1, + anon_sym_0b, + ACTIONS(1422), 1, + anon_sym_DQUOTE, + ACTIONS(1424), 1, + anon_sym_SQUOTE, + ACTIONS(1426), 1, + anon_sym_BQUOTE, + ACTIONS(1428), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(1430), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1436), 1, + sym_raw_string_begin, + ACTIONS(1492), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(1494), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(1588), 1, + anon_sym_LBRACK, + ACTIONS(3470), 1, + anon_sym_null, + ACTIONS(3472), 1, + anon_sym_LBRACE, + ACTIONS(3474), 1, + anon_sym_DOT_DOT, + ACTIONS(3478), 1, + sym_val_date, + STATE(1406), 1, sym_comment, - STATE(1509), 1, - sym__immediate_decimal, - ACTIONS(3448), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3450), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(1279), 2, - sym__expr_parenthesized_immediate, + STATE(3910), 1, + sym__val_number_decimal, + STATE(4050), 1, sym_val_variable, - ACTIONS(1653), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1651), 40, - 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_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [11296] = 37, + STATE(4211), 1, + sym_expr_parenthesized, + STATE(4628), 1, + sym__val_number, + STATE(4846), 1, + sym__inter_single_quotes, + STATE(4847), 1, + sym__inter_double_quotes, + STATE(5039), 1, + sym_block, + ACTIONS(1418), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1472), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1496), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3476), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(4913), 2, + sym_val_range, + sym__value, + STATE(3725), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1414), 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(4862), 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, + [11285] = 37, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1386), 1, @@ -150257,35 +151499,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__unquoted_in_list_token1, ACTIONS(1436), 1, sym_raw_string_begin, - ACTIONS(1576), 1, + ACTIONS(1570), 1, anon_sym_DOT_DOT, - ACTIONS(2674), 1, + ACTIONS(2720), 1, anon_sym_DOLLAR, - ACTIONS(2676), 1, + ACTIONS(2722), 1, anon_sym_LBRACE, - ACTIONS(2680), 1, + ACTIONS(2724), 1, sym_val_date, - ACTIONS(3452), 1, + ACTIONS(3480), 1, sym__newline, - ACTIONS(3454), 1, + ACTIONS(3482), 1, anon_sym_LBRACK, - STATE(1402), 1, + STATE(1407), 1, sym_comment, - STATE(1421), 1, + STATE(1424), 1, aux_sym__match_pattern_list_body_repeat1, - STATE(2281), 1, + STATE(2282), 1, aux_sym__types_body_repeat1, - STATE(3727), 1, + STATE(3795), 1, sym__val_number_decimal, - STATE(4040), 1, + STATE(3964), 1, sym_expr_parenthesized, - STATE(4041), 1, + STATE(3965), 1, sym_val_variable, - STATE(4386), 1, - sym__val_number, - STATE(4490), 1, + STATE(4347), 1, sym_val_bool, - STATE(4737), 1, + STATE(4628), 1, + sym__val_number, + STATE(4805), 1, sym__match_pattern_list, ACTIONS(1384), 2, anon_sym_true, @@ -150299,13 +151541,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1418), 2, anon_sym_0o, anon_sym_0x, - STATE(4338), 2, + STATE(4339), 2, sym__match_pattern_expression, sym__unquoted_in_list, - STATE(4736), 2, + STATE(4686), 2, sym__match_pattern_value, sym_val_range, - STATE(5140), 2, + STATE(5330), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(1388), 3, @@ -150316,12 +151558,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(3665), 4, + STATE(3725), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4742), 8, + STATE(4754), 8, sym__match_pattern_record, sym_val_nothing, sym_val_number, @@ -150330,7 +151572,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_table, - [11429] = 33, + [11418] = 33, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1396), 1, @@ -150351,52 +151593,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, ACTIONS(1436), 1, sym_raw_string_begin, - ACTIONS(1488), 1, + ACTIONS(1492), 1, aux_sym__val_number_decimal_token1, - ACTIONS(1490), 1, + ACTIONS(1494), 1, aux_sym__val_number_decimal_token2, ACTIONS(1588), 1, anon_sym_LBRACK, - ACTIONS(3456), 1, + ACTIONS(3470), 1, anon_sym_null, - ACTIONS(3458), 1, + ACTIONS(3472), 1, anon_sym_LBRACE, - ACTIONS(3460), 1, + ACTIONS(3474), 1, anon_sym_DOT_DOT, - ACTIONS(3464), 1, + ACTIONS(3478), 1, sym_val_date, - STATE(1403), 1, + STATE(1408), 1, sym_comment, - STATE(3792), 1, + STATE(3910), 1, sym__val_number_decimal, - STATE(3965), 1, + STATE(4050), 1, sym_val_variable, - STATE(4078), 1, + STATE(4202), 1, sym_expr_parenthesized, - STATE(4386), 1, + STATE(4628), 1, sym__val_number, - STATE(4680), 1, + STATE(4846), 1, sym__inter_single_quotes, - STATE(4683), 1, + STATE(4847), 1, sym__inter_double_quotes, - STATE(4783), 1, + STATE(5004), 1, sym_block, ACTIONS(1418), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(1468), 2, + ACTIONS(1472), 2, anon_sym_true, anon_sym_false, - ACTIONS(1492), 2, + ACTIONS(1496), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3462), 2, + ACTIONS(3476), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(4784), 2, + STATE(5025), 2, sym_val_range, sym__value, - STATE(3665), 4, + STATE(3725), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, @@ -150408,7 +151650,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(4538), 13, + STATE(4862), 13, sym_val_nothing, sym_val_bool, sym_val_cellpath, @@ -150422,36 +151664,36 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [11554] = 11, + [11543] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1635), 1, + ACTIONS(1637), 1, sym__unquoted_pattern, ACTIONS(1685), 1, anon_sym_DOLLAR, ACTIONS(1687), 1, anon_sym_LPAREN2, - STATE(1404), 1, + STATE(1409), 1, sym_comment, - STATE(1513), 1, + STATE(1523), 1, sym__immediate_decimal, - ACTIONS(3448), 2, + ACTIONS(3484), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3450), 2, + ACTIONS(3486), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1299), 2, + STATE(1351), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1602), 6, + ACTIONS(1633), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1598), 40, + ACTIONS(1631), 40, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -150492,25 +151734,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [11635] = 6, + [11624] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3466), 1, - anon_sym_DOT, - ACTIONS(3468), 1, - aux_sym__immediate_decimal_token5, - STATE(1405), 1, + ACTIONS(1685), 1, + anon_sym_DOLLAR, + ACTIONS(1687), 1, + anon_sym_LPAREN2, + ACTIONS(1695), 1, + sym__unquoted_pattern, + STATE(1410), 1, sym_comment, - ACTIONS(747), 8, + STATE(1525), 1, + sym__immediate_decimal, + ACTIONS(3484), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3486), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(1288), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1683), 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), 46, + ACTIONS(1681), 40, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -150523,9 +151777,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, @@ -150544,7 +151795,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, @@ -150554,83 +151804,14 @@ 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, - [11706] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(3407), 1, - sym_raw_string_begin, - ACTIONS(3470), 1, - sym__newline, - ACTIONS(3472), 1, - sym__space, - STATE(1406), 1, - sym_comment, - STATE(1408), 1, - aux_sym_pipe_element_parenthesized_repeat1, - ACTIONS(3409), 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, - [11779] = 6, + [11705] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3474), 1, + ACTIONS(3488), 1, aux_sym__immediate_decimal_token1, - ACTIONS(3476), 1, + ACTIONS(3490), 1, aux_sym__immediate_decimal_token5, - STATE(1407), 1, + STATE(1411), 1, sym_comment, ACTIONS(739), 8, anon_sym_GT2, @@ -150688,25 +151869,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [11850] = 6, - ACTIONS(103), 1, + [11776] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3480), 1, + ACTIONS(3492), 1, sym__newline, - ACTIONS(3483), 1, - sym__space, - ACTIONS(3486), 1, - sym_raw_string_begin, - STATE(1408), 2, + STATE(1412), 2, + aux_sym__repeat_newline, sym_comment, - aux_sym_pipe_element_parenthesized_repeat1, - ACTIONS(3478), 52, + ACTIONS(1867), 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(1862), 44, + 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, @@ -150719,8 +151906,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, - anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, @@ -150729,23 +151916,16 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -150753,125 +151933,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [11921] = 33, - ACTIONS(3), 1, + [11845] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1396), 1, - anon_sym_LPAREN, - ACTIONS(1400), 1, - anon_sym_DOLLAR, - ACTIONS(1416), 1, - anon_sym_0b, - ACTIONS(1422), 1, - anon_sym_DQUOTE, - ACTIONS(1424), 1, - anon_sym_SQUOTE, - ACTIONS(1426), 1, - anon_sym_BQUOTE, - ACTIONS(1428), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(1430), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1436), 1, + ACTIONS(3497), 1, + sym__space, + ACTIONS(3500), 1, sym_raw_string_begin, - ACTIONS(1488), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(1490), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(1588), 1, - anon_sym_LBRACK, - ACTIONS(3456), 1, - anon_sym_null, - ACTIONS(3458), 1, - anon_sym_LBRACE, - ACTIONS(3460), 1, - anon_sym_DOT_DOT, - ACTIONS(3464), 1, - sym_val_date, - STATE(1409), 1, + STATE(1413), 2, sym_comment, - STATE(3792), 1, - sym__val_number_decimal, - STATE(3965), 1, - sym_val_variable, - STATE(4075), 1, - sym_expr_parenthesized, - STATE(4386), 1, - sym__val_number, - STATE(4680), 1, - sym__inter_single_quotes, - STATE(4683), 1, - sym__inter_double_quotes, - STATE(4780), 1, - sym_block, - ACTIONS(1418), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1468), 2, + aux_sym_pipe_element_repeat1, + ACTIONS(3495), 53, + 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_finally, + anon_sym_match, + anon_sym_in, anon_sym_true, anon_sym_false, - ACTIONS(1492), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3462), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(4782), 2, - sym_val_range, - sym__value, - STATE(3665), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1414), 6, + 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, - STATE(4538), 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, - [12046] = 11, + 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, + [11914] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1724), 1, + ACTIONS(1818), 1, anon_sym_LPAREN2, - ACTIONS(1734), 1, + ACTIONS(1828), 1, sym__unquoted_pattern, - ACTIONS(3488), 1, + ACTIONS(3502), 1, anon_sym_DOT_DOT2, - ACTIONS(3492), 1, + ACTIONS(3506), 1, sym_filesize_unit, - ACTIONS(3494), 1, + ACTIONS(3508), 1, sym_duration_unit, - STATE(1410), 1, + STATE(1414), 1, sym_comment, - STATE(4801), 1, + STATE(5072), 1, sym__expr_parenthesized_immediate, - ACTIONS(3490), 2, + ACTIONS(3504), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(866), 5, + ACTIONS(847), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(886), 42, + ACTIONS(968), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -150914,78 +152066,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [12126] = 4, - ACTIONS(103), 1, + [11994] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1411), 1, + ACTIONS(3464), 1, + aux_sym__immediate_decimal_token5, + STATE(1415), 1, sym_comment, - ACTIONS(3496), 2, - sym_raw_string_begin, - sym__space, - ACTIONS(850), 53, - 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(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, - 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_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_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_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, - [12192] = 6, + 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, + [12062] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3498), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(3500), 1, + ACTIONS(3510), 1, + anon_sym_DOT, + ACTIONS(3512), 1, aux_sym__immediate_decimal_token5, - STATE(1412), 1, + STATE(1416), 1, sym_comment, - ACTIONS(739), 8, + ACTIONS(747), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -150994,7 +152147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(741), 45, + ACTIONS(749), 45, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -151040,79 +152193,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [12262] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3502), 1, - sym__newline, - STATE(1413), 2, - aux_sym__repeat_newline, - sym_comment, - ACTIONS(1971), 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(1966), 43, - 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, - aux_sym__val_number_decimal_token2, - aux_sym__val_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, - [12330] = 6, + [12132] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3505), 1, - anon_sym_DOT, - ACTIONS(3507), 1, + ACTIONS(3514), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(3516), 1, aux_sym__immediate_decimal_token5, - STATE(1414), 1, + STATE(1417), 1, sym_comment, - ACTIONS(747), 8, + ACTIONS(739), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -151121,7 +152211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(749), 45, + ACTIONS(741), 45, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -151167,14 +152257,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [12400] = 5, + [12202] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3468), 1, + ACTIONS(3518), 1, aux_sym__immediate_decimal_token5, - STATE(1415), 1, + STATE(1418), 1, sym_comment, - ACTIONS(747), 8, + ACTIONS(767), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -151183,7 +152273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(749), 46, + ACTIONS(769), 46, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -151230,23 +152320,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [12468] = 5, - ACTIONS(103), 1, + [12270] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3511), 1, - sym__space, - ACTIONS(3514), 1, - sym_raw_string_begin, - STATE(1416), 2, + STATE(1419), 1, sym_comment, - aux_sym_pipe_element_repeat1, - ACTIONS(3509), 52, + ACTIONS(1968), 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(1966), 45, + 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, @@ -151259,33 +152354,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, 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_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, @@ -151293,18 +152382,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [12536] = 6, + [12336] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3435), 1, + STATE(1420), 1, + sym_comment, + ACTIONS(3522), 2, sym_raw_string_begin, - ACTIONS(3516), 1, sym__space, - STATE(1416), 1, - aux_sym_pipe_element_repeat1, - STATE(1417), 1, - sym_comment, - ACTIONS(3437), 52, + ACTIONS(3520), 53, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -151323,6 +152409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_in, anon_sym_true, @@ -151357,14 +152444,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [12606] = 5, + [12402] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3518), 1, - aux_sym__immediate_decimal_token5, - STATE(1418), 1, + STATE(1421), 1, sym_comment, - ACTIONS(771), 8, + ACTIONS(863), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -151373,7 +152458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(773), 46, + ACTIONS(865), 46, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -151420,34 +152505,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [12674] = 11, + [12467] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1724), 1, - anon_sym_LPAREN2, - ACTIONS(1820), 1, - sym__unquoted_pattern, - ACTIONS(3520), 1, - anon_sym_DOT_DOT2, ACTIONS(3524), 1, - sym_filesize_unit, + anon_sym_DOT, ACTIONS(3526), 1, - sym_duration_unit, - STATE(1419), 1, + aux_sym__immediate_decimal_token5, + STATE(1422), 1, sym_comment, - STATE(4881), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3522), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(866), 5, + ACTIONS(1792), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(886), 41, - ts_builtin_sym_end, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1790), 45, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -151460,7 +152535,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, @@ -151479,6 +152556,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, @@ -151488,69 +152566,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [12753] = 5, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [12536] = 36, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3528), 1, - aux_sym__immediate_decimal_token5, - STATE(1420), 1, - sym_comment, - ACTIONS(771), 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(773), 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, - [12820] = 36, + ACTIONS(191), 1, + anon_sym_0b, + ACTIONS(1772), 1, + anon_sym_DQUOTE, + ACTIONS(1774), 1, + anon_sym_SQUOTE, + ACTIONS(1776), 1, + anon_sym_BQUOTE, + ACTIONS(1778), 1, + sym_raw_string_begin, + ACTIONS(1943), 1, + aux_sym_unquoted_token1, + ACTIONS(2688), 1, + anon_sym_LPAREN, + ACTIONS(2936), 1, + anon_sym_LBRACK, + ACTIONS(2938), 1, + anon_sym_DOLLAR, + ACTIONS(2940), 1, + anon_sym_LBRACE, + ACTIONS(3530), 1, + anon_sym_null, + ACTIONS(3534), 1, + anon_sym_DOT_DOT, + ACTIONS(3538), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3540), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3544), 1, + sym_val_date, + STATE(710), 1, + sym__val_number, + STATE(1423), 1, + sym_comment, + STATE(3759), 1, + sym__val_number_decimal, + STATE(3872), 1, + sym_val_variable, + STATE(3917), 1, + sym_expr_parenthesized, + STATE(4378), 1, + sym_val_bool, + STATE(4612), 1, + sym__match_pattern_expression, + STATE(4619), 1, + sym__match_pattern_list, + STATE(4621), 1, + sym_unquoted, + STATE(4871), 1, + sym__match_pattern, + ACTIONS(193), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3528), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3536), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(3542), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(4618), 2, + sym__match_pattern_value, + sym_val_range, + STATE(5288), 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(3532), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(2274), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4620), 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, + [12665] = 36, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1386), 1, @@ -151573,35 +152684,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__unquoted_in_list_token1, ACTIONS(1436), 1, sym_raw_string_begin, - ACTIONS(1576), 1, + ACTIONS(1570), 1, anon_sym_DOT_DOT, - ACTIONS(2674), 1, + ACTIONS(2720), 1, anon_sym_DOLLAR, - ACTIONS(2676), 1, + ACTIONS(2722), 1, anon_sym_LBRACE, - ACTIONS(2680), 1, + ACTIONS(2724), 1, sym_val_date, - ACTIONS(3454), 1, + ACTIONS(3482), 1, anon_sym_LBRACK, - STATE(1421), 1, - sym_comment, STATE(1424), 1, + sym_comment, + STATE(1426), 1, aux_sym__match_pattern_list_body_repeat1, - STATE(3727), 1, + STATE(3795), 1, sym__val_number_decimal, - STATE(4040), 1, + STATE(3964), 1, sym_expr_parenthesized, - STATE(4041), 1, + STATE(3965), 1, sym_val_variable, - STATE(4243), 1, + STATE(4347), 1, + sym_val_bool, + STATE(4622), 1, sym__match_pattern_expression, - STATE(4244), 1, + STATE(4623), 1, sym__unquoted_in_list, - STATE(4386), 1, + STATE(4628), 1, sym__val_number, - STATE(4490), 1, - sym_val_bool, - STATE(4737), 1, + STATE(4805), 1, sym__match_pattern_list, ACTIONS(1384), 2, anon_sym_true, @@ -151615,10 +152726,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1418), 2, anon_sym_0o, anon_sym_0x, - STATE(4736), 2, + STATE(4686), 2, sym__match_pattern_value, sym_val_range, - STATE(5140), 2, + STATE(5330), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(1388), 3, @@ -151629,12 +152740,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(3665), 4, + STATE(3725), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4742), 8, + STATE(4754), 8, sym__match_pattern_record, sym_val_nothing, sym_val_number, @@ -151643,85 +152754,24 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_table, - [12949] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1422), 1, - sym_comment, - 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(2146), 44, - 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_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, - anon_sym_CARET, - [13014] = 5, + [12794] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3507), 1, + ACTIONS(3546), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(3548), 1, aux_sym__immediate_decimal_token5, - STATE(1423), 1, + STATE(1425), 1, sym_comment, - ACTIONS(747), 8, + ACTIONS(1732), 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(749), 45, - ts_builtin_sym_end, + ACTIONS(1730), 45, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -151734,7 +152784,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, @@ -151765,90 +152817,89 @@ 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, - [13081] = 34, + [12863] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3533), 1, + ACTIONS(3553), 1, anon_sym_null, - ACTIONS(3539), 1, + ACTIONS(3559), 1, anon_sym_LBRACK, - ACTIONS(3542), 1, + ACTIONS(3562), 1, anon_sym_LPAREN, - ACTIONS(3545), 1, + ACTIONS(3565), 1, anon_sym_DOLLAR, - ACTIONS(3548), 1, + ACTIONS(3568), 1, anon_sym_LBRACE, - ACTIONS(3551), 1, + ACTIONS(3571), 1, anon_sym_DOT_DOT, - ACTIONS(3557), 1, + ACTIONS(3577), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3560), 1, + ACTIONS(3580), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3569), 1, + ACTIONS(3589), 1, anon_sym_0b, - ACTIONS(3575), 1, + ACTIONS(3595), 1, sym_val_date, - ACTIONS(3578), 1, + ACTIONS(3598), 1, anon_sym_DQUOTE, - ACTIONS(3581), 1, + ACTIONS(3601), 1, anon_sym_SQUOTE, - ACTIONS(3584), 1, + ACTIONS(3604), 1, anon_sym_BQUOTE, - ACTIONS(3587), 1, + ACTIONS(3607), 1, aux_sym__unquoted_in_list_token1, - ACTIONS(3590), 1, + ACTIONS(3610), 1, sym_raw_string_begin, - STATE(3889), 1, + STATE(3850), 1, sym__val_number_decimal, - STATE(4356), 1, + STATE(4383), 1, + sym_expr_parenthesized, + STATE(4384), 1, sym_val_variable, - STATE(4386), 1, + STATE(4628), 1, sym__val_number, - STATE(4516), 1, - sym_expr_parenthesized, - STATE(4737), 1, + STATE(4805), 1, sym__match_pattern_list, - STATE(4901), 1, + STATE(4967), 1, sym_val_bool, - ACTIONS(3530), 2, + ACTIONS(3550), 2, anon_sym_true, anon_sym_false, - ACTIONS(3554), 2, + ACTIONS(3574), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3563), 2, + ACTIONS(3583), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3572), 2, + ACTIONS(3592), 2, anon_sym_0o, anon_sym_0x, - STATE(1424), 2, + STATE(1426), 2, sym_comment, aux_sym__match_pattern_list_body_repeat1, - STATE(4736), 2, + STATE(4686), 2, sym__match_pattern_value, sym_val_range, - STATE(4793), 2, + STATE(5042), 2, sym__match_pattern_expression, sym__unquoted_in_list, - STATE(5140), 2, + STATE(5330), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(3536), 3, + ACTIONS(3556), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - ACTIONS(3566), 3, + ACTIONS(3586), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(3665), 4, + STATE(3725), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4742), 8, + STATE(4754), 8, sym__match_pattern_record, sym_val_nothing, sym_val_number, @@ -151857,215 +152908,91 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_table, - [13206] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(1425), 1, - sym_comment, - ACTIONS(3595), 2, - sym_raw_string_begin, - sym__space, - ACTIONS(3593), 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, - [13271] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3597), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(3599), 1, - aux_sym__immediate_decimal_token5, - STATE(1426), 1, - sym_comment, - ACTIONS(1772), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1770), 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, - [13340] = 36, + [12988] = 36, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(191), 1, anon_sym_0b, - ACTIONS(1800), 1, + ACTIONS(1772), 1, anon_sym_DQUOTE, - ACTIONS(1802), 1, + ACTIONS(1774), 1, anon_sym_SQUOTE, - ACTIONS(1804), 1, + ACTIONS(1776), 1, anon_sym_BQUOTE, - ACTIONS(1806), 1, + ACTIONS(1778), 1, sym_raw_string_begin, - ACTIONS(1936), 1, + ACTIONS(1943), 1, aux_sym_unquoted_token1, - ACTIONS(2694), 1, + ACTIONS(2688), 1, anon_sym_LPAREN, - ACTIONS(2871), 1, + ACTIONS(2936), 1, anon_sym_LBRACK, - ACTIONS(2873), 1, + ACTIONS(2938), 1, anon_sym_DOLLAR, - ACTIONS(2875), 1, + ACTIONS(2940), 1, anon_sym_LBRACE, - ACTIONS(3603), 1, + ACTIONS(3530), 1, anon_sym_null, - ACTIONS(3607), 1, + ACTIONS(3534), 1, anon_sym_DOT_DOT, - ACTIONS(3611), 1, + ACTIONS(3538), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3613), 1, + ACTIONS(3540), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3617), 1, + ACTIONS(3544), 1, sym_val_date, - STATE(707), 1, + STATE(710), 1, sym__val_number, STATE(1427), 1, sym_comment, - STATE(3725), 1, + STATE(3759), 1, sym__val_number_decimal, - STATE(3808), 1, + STATE(3872), 1, sym_val_variable, - STATE(3865), 1, + STATE(3917), 1, sym_expr_parenthesized, - STATE(4219), 1, + STATE(4378), 1, sym_val_bool, - STATE(4471), 1, + STATE(4612), 1, sym__match_pattern_expression, - STATE(4483), 1, + STATE(4619), 1, sym__match_pattern_list, - STATE(4503), 1, + STATE(4621), 1, sym_unquoted, - STATE(4643), 1, + STATE(4875), 1, sym__match_pattern, ACTIONS(193), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3601), 2, + ACTIONS(3528), 2, anon_sym_true, anon_sym_false, - ACTIONS(3609), 2, + ACTIONS(3536), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3615), 2, + ACTIONS(3542), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4475), 2, + STATE(4618), 2, sym__match_pattern_value, sym_val_range, - STATE(5176), 2, + STATE(5288), 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(3605), 3, + ACTIONS(3532), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2266), 4, + STATE(2274), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4489), 8, + STATE(4620), 8, sym__match_pattern_record, sym_val_nothing, sym_val_number, @@ -152074,12 +153001,14 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_table, - [13469] = 4, + [13117] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3613), 1, + aux_sym__immediate_decimal_token5, STATE(1428), 1, sym_comment, - ACTIONS(860), 8, + ACTIONS(767), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -152088,7 +153017,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(862), 46, + ACTIONS(769), 45, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -152101,9 +153031,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, @@ -152135,24 +153063,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [13534] = 6, + [13184] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3619), 1, - anon_sym_DOT, - ACTIONS(3621), 1, + ACTIONS(3512), 1, aux_sym__immediate_decimal_token5, STATE(1429), 1, sym_comment, - ACTIONS(1746), 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(1744), 45, + ACTIONS(749), 45, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -152165,9 +153093,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, @@ -152198,7 +153124,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [13603] = 4, + sym_duration_unit, + [13251] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1430), 1, @@ -152259,91 +153186,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [13668] = 36, + [13316] = 36, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(191), 1, + ACTIONS(1386), 1, + anon_sym_null, + ACTIONS(1396), 1, + anon_sym_LPAREN, + ACTIONS(1408), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(1410), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(1416), 1, anon_sym_0b, - ACTIONS(1800), 1, + ACTIONS(1422), 1, anon_sym_DQUOTE, - ACTIONS(1802), 1, + ACTIONS(1424), 1, anon_sym_SQUOTE, - ACTIONS(1804), 1, + ACTIONS(1426), 1, anon_sym_BQUOTE, - ACTIONS(1806), 1, + ACTIONS(1434), 1, + aux_sym__unquoted_in_list_token1, + ACTIONS(1436), 1, sym_raw_string_begin, - ACTIONS(1936), 1, - aux_sym_unquoted_token1, - ACTIONS(2694), 1, - anon_sym_LPAREN, - ACTIONS(2871), 1, - anon_sym_LBRACK, - ACTIONS(2873), 1, + ACTIONS(1570), 1, + anon_sym_DOT_DOT, + ACTIONS(2720), 1, anon_sym_DOLLAR, - ACTIONS(2875), 1, + ACTIONS(2722), 1, anon_sym_LBRACE, - ACTIONS(3603), 1, - anon_sym_null, - ACTIONS(3607), 1, - anon_sym_DOT_DOT, - ACTIONS(3611), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3613), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3617), 1, + ACTIONS(2724), 1, sym_val_date, - STATE(707), 1, - sym__val_number, + ACTIONS(3482), 1, + anon_sym_LBRACK, + STATE(1426), 1, + aux_sym__match_pattern_list_body_repeat1, STATE(1431), 1, sym_comment, - STATE(3725), 1, + STATE(3795), 1, sym__val_number_decimal, - STATE(3808), 1, - sym_val_variable, - STATE(3865), 1, + STATE(3964), 1, sym_expr_parenthesized, - STATE(4219), 1, - sym_val_bool, - STATE(4471), 1, + STATE(3965), 1, + sym_val_variable, + STATE(4340), 1, sym__match_pattern_expression, - STATE(4483), 1, + STATE(4341), 1, + sym__unquoted_in_list, + STATE(4347), 1, + sym_val_bool, + STATE(4628), 1, + sym__val_number, + STATE(4805), 1, sym__match_pattern_list, - STATE(4503), 1, - sym_unquoted, - STATE(4724), 1, - sym__match_pattern, - ACTIONS(193), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3601), 2, + ACTIONS(1384), 2, anon_sym_true, anon_sym_false, - ACTIONS(3609), 2, + ACTIONS(1406), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3615), 2, + ACTIONS(1412), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4475), 2, + ACTIONS(1418), 2, + anon_sym_0o, + anon_sym_0x, + STATE(4686), 2, sym__match_pattern_value, sym_val_range, - STATE(5176), 2, + STATE(5330), 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(3605), 3, + ACTIONS(1388), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2266), 4, + ACTIONS(1414), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(3725), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4489), 8, + STATE(4754), 8, sym__match_pattern_record, sym_val_nothing, sym_val_number, @@ -152352,12 +153279,12 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_table, - [13797] = 4, + [13445] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1432), 1, sym_comment, - ACTIONS(771), 8, + ACTIONS(767), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -152366,7 +153293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(773), 46, + ACTIONS(769), 46, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -152413,105 +153340,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [13862] = 36, + [13510] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1386), 1, - anon_sym_null, - ACTIONS(1396), 1, - anon_sym_LPAREN, - ACTIONS(1408), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(1410), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(1416), 1, - anon_sym_0b, - ACTIONS(1422), 1, - anon_sym_DQUOTE, - ACTIONS(1424), 1, - anon_sym_SQUOTE, - ACTIONS(1426), 1, - anon_sym_BQUOTE, - ACTIONS(1434), 1, - aux_sym__unquoted_in_list_token1, - ACTIONS(1436), 1, - sym_raw_string_begin, - ACTIONS(1576), 1, - anon_sym_DOT_DOT, - ACTIONS(2674), 1, - anon_sym_DOLLAR, - ACTIONS(2676), 1, - anon_sym_LBRACE, - ACTIONS(2680), 1, - sym_val_date, - ACTIONS(3454), 1, - anon_sym_LBRACK, - STATE(1424), 1, - aux_sym__match_pattern_list_body_repeat1, + ACTIONS(1818), 1, + anon_sym_LPAREN2, + ACTIONS(1840), 1, + sym__unquoted_pattern, + ACTIONS(3615), 1, + anon_sym_DOT_DOT2, + ACTIONS(3619), 1, + sym_filesize_unit, + ACTIONS(3621), 1, + sym_duration_unit, STATE(1433), 1, sym_comment, - STATE(3727), 1, - sym__val_number_decimal, - STATE(4040), 1, - sym_expr_parenthesized, - STATE(4041), 1, - sym_val_variable, - STATE(4339), 1, - sym__match_pattern_expression, - STATE(4340), 1, - sym__unquoted_in_list, - STATE(4386), 1, - sym__val_number, - STATE(4490), 1, - sym_val_bool, - STATE(4737), 1, - sym__match_pattern_list, - ACTIONS(1384), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1406), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(1412), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(1418), 2, - anon_sym_0o, - anon_sym_0x, - STATE(4736), 2, - sym__match_pattern_value, - sym_val_range, - STATE(5140), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(1388), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(1414), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(3665), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4742), 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, - [13991] = 4, + STATE(4972), 1, + sym__expr_parenthesized_immediate, + ACTIONS(3617), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(847), 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, + [13589] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1434), 1, sym_comment, - ACTIONS(860), 8, + ACTIONS(863), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -152520,7 +153422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(862), 45, + ACTIONS(865), 45, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -152566,14 +153468,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [14055] = 5, + [13653] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3621), 1, + ACTIONS(3623), 1, aux_sym__immediate_decimal_token5, STATE(1435), 1, sym_comment, - ACTIONS(1746), 7, + ACTIONS(1848), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -152581,7 +153483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1744), 45, + ACTIONS(1846), 45, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -152627,12 +153529,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14121] = 4, + [13719] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1436), 1, sym_comment, - ACTIONS(739), 8, + ACTIONS(767), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -152641,7 +153543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(741), 45, + ACTIONS(769), 45, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -152687,14 +153589,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [14185] = 5, + [13783] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3623), 1, + ACTIONS(3526), 1, aux_sym__immediate_decimal_token5, STATE(1437), 1, sym_comment, - ACTIONS(1854), 7, + ACTIONS(1792), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -152702,7 +153604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1852), 45, + ACTIONS(1790), 45, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -152748,24 +153650,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14251] = 6, + [13849] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3625), 1, - anon_sym_DOT, - ACTIONS(3627), 1, - aux_sym__immediate_decimal_token5, STATE(1438), 1, sym_comment, - ACTIONS(1746), 7, + 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(1744), 44, + ACTIONS(741), 45, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -152810,21 +153709,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14319] = 4, + sym_duration_unit, + [13913] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3625), 1, + anon_sym_DOT, + ACTIONS(3627), 1, + aux_sym__immediate_decimal_token5, STATE(1439), 1, sym_comment, - ACTIONS(771), 8, + ACTIONS(1792), 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), 45, + ACTIONS(1790), 44, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -152869,8 +153772,7 @@ 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, - [14383] = 6, + [13981] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3629), 1, @@ -152879,7 +153781,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__immediate_decimal_token5, STATE(1440), 1, sym_comment, - ACTIONS(1772), 7, + ACTIONS(1732), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -152887,7 +153789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1770), 44, + ACTIONS(1730), 44, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -152932,14 +153834,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14451] = 5, + [14049] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3633), 1, + ACTIONS(3627), 1, aux_sym__immediate_decimal_token5, STATE(1441), 1, sym_comment, - ACTIONS(1854), 7, + ACTIONS(1792), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -152947,7 +153849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1852), 44, + ACTIONS(1790), 44, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -152992,12 +153894,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14516] = 4, + [14114] = 22, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1772), 1, + anon_sym_DQUOTE, + ACTIONS(1774), 1, + anon_sym_SQUOTE, + ACTIONS(1776), 1, + anon_sym_BQUOTE, + ACTIONS(1778), 1, + sym_raw_string_begin, + ACTIONS(3637), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3641), 1, + anon_sym_LBRACK, + ACTIONS(3643), 1, + anon_sym_STAR2, STATE(1442), 1, sym_comment, - ACTIONS(1854), 7, + STATE(2150), 1, + sym__val_number_decimal, + STATE(3755), 1, + sym_cmd_identifier, + STATE(3763), 1, + sym_val_string, + STATE(4499), 1, + sym__command_name, + STATE(4502), 1, + sym_wild_card, + STATE(4503), 1, + sym_command_list, + STATE(4649), 1, + sym_scope_pattern, + ACTIONS(3633), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3645), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3647), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3639), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(2274), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3635), 24, + 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_finally, + 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, + [14213] = 22, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1772), 1, + anon_sym_DQUOTE, + ACTIONS(1774), 1, + anon_sym_SQUOTE, + ACTIONS(1776), 1, + anon_sym_BQUOTE, + ACTIONS(1778), 1, + sym_raw_string_begin, + ACTIONS(3637), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3641), 1, + anon_sym_LBRACK, + ACTIONS(3643), 1, + anon_sym_STAR2, + STATE(1443), 1, + sym_comment, + STATE(2150), 1, + sym__val_number_decimal, + STATE(3755), 1, + sym_cmd_identifier, + STATE(3763), 1, + sym_val_string, + STATE(4499), 1, + sym__command_name, + STATE(4501), 1, + sym_scope_pattern, + STATE(4502), 1, + sym_wild_card, + STATE(4503), 1, + sym_command_list, + ACTIONS(3633), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3645), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3647), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3649), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(2274), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3635), 24, + 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_finally, + 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, + [14312] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1444), 1, + sym_comment, + ACTIONS(1848), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -153005,7 +154061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1852), 45, + ACTIONS(1846), 45, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -153051,14 +154107,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14579] = 5, + [14375] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3627), 1, - aux_sym__immediate_decimal_token5, - STATE(1443), 1, + STATE(1445), 1, sym_comment, - ACTIONS(1746), 7, + ACTIONS(1897), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -153066,8 +154120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1744), 44, - ts_builtin_sym_end, + ACTIONS(1895), 45, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -153080,7 +154133,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, @@ -153111,27 +154166,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14644] = 8, + [14438] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1977), 1, - anon_sym_LPAREN2, - ACTIONS(1983), 1, + ACTIONS(1637), 1, sym__unquoted_pattern, - ACTIONS(3635), 1, + ACTIONS(1976), 1, + anon_sym_LPAREN2, + ACTIONS(3651), 1, anon_sym_DOT_DOT2, - STATE(1444), 1, + STATE(1446), 1, sym_comment, - ACTIONS(3637), 2, + ACTIONS(3653), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1975), 5, + ACTIONS(1974), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1973), 42, + ACTIONS(1972), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -153174,83 +154229,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [14715] = 8, + [14509] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1635), 1, - sym__unquoted_pattern, - ACTIONS(1960), 1, - anon_sym_LPAREN2, - ACTIONS(3639), 1, - anon_sym_DOT_DOT2, - STATE(1445), 1, + STATE(1447), 1, sym_comment, - ACTIONS(3641), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1958), 5, + ACTIONS(1732), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1956), 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, - [14786] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1446), 1, - sym_comment, - ACTIONS(1772), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1770), 45, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1730), 45, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -153296,138 +154288,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14849] = 4, + [14572] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1447), 1, - sym_comment, - ACTIONS(1872), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1870), 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, + ACTIONS(1986), 1, 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, - [14912] = 4, - ACTIONS(3), 1, - anon_sym_POUND, + ACTIONS(1992), 1, + sym__unquoted_pattern, + ACTIONS(3655), 1, + anon_sym_DOT_DOT2, STATE(1448), 1, sym_comment, - ACTIONS(1772), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1770), 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, + ACTIONS(3657), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14974] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1449), 1, - sym_comment, - ACTIONS(1854), 7, + ACTIONS(1984), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1852), 44, - ts_builtin_sym_end, + ACTIONS(1982), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -153440,7 +154321,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, @@ -153459,7 +154342,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, @@ -153469,14 +154351,14 @@ 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, - [15036] = 4, + [14643] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1450), 1, + ACTIONS(3659), 1, + aux_sym__immediate_decimal_token5, + STATE(1449), 1, sym_comment, - ACTIONS(1872), 7, + ACTIONS(1848), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -153484,7 +154366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1870), 44, + ACTIONS(1846), 44, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -153529,119 +154411,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [15098] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3643), 1, - anon_sym_DOT, - ACTIONS(3645), 1, - aux_sym__immediate_decimal_token5, - STATE(1451), 1, - sym_comment, - ACTIONS(1746), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1744), 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, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [15164] = 22, + [14708] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1800), 1, + ACTIONS(251), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(843), 1, + sym_raw_string_begin, + ACTIONS(3359), 1, anon_sym_DQUOTE, - ACTIONS(1802), 1, + ACTIONS(3361), 1, anon_sym_SQUOTE, - ACTIONS(1804), 1, + ACTIONS(3363), 1, anon_sym_BQUOTE, - ACTIONS(1806), 1, - sym_raw_string_begin, - ACTIONS(3651), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3655), 1, - anon_sym_LBRACK, - ACTIONS(3657), 1, - anon_sym_STAR2, - STATE(1452), 1, + ACTIONS(3365), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3367), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3661), 1, + anon_sym_LPAREN, + ACTIONS(3663), 1, + anon_sym_DOLLAR, + STATE(1450), 1, sym_comment, - STATE(2133), 1, + STATE(2099), 1, sym__val_number_decimal, - STATE(3713), 1, - sym_cmd_identifier, - STATE(3719), 1, - sym_val_string, - STATE(4379), 1, - sym__command_name, - STATE(4380), 1, - sym_scope_pattern, - STATE(4381), 1, - sym_wild_card, - STATE(4382), 1, - sym_command_list, - ACTIONS(3647), 2, + STATE(3047), 1, + sym__inter_single_quotes, + STATE(3048), 1, + sym__inter_double_quotes, + ACTIONS(277), 2, anon_sym_export, anon_sym_in, - ACTIONS(3659), 2, + ACTIONS(3645), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3661), 2, + ACTIONS(3647), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3653), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(2266), 4, + STATE(2477), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3649), 23, + STATE(3189), 5, + sym_cmd_identifier, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(271), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -153658,6 +154477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -153665,27 +154485,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [15262] = 8, + [14802] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1977), 1, - anon_sym_LPAREN2, - ACTIONS(1983), 1, - sym__unquoted_pattern, - ACTIONS(3663), 1, - anon_sym_DOT_DOT2, - STATE(1453), 1, + STATE(1451), 1, sym_comment, - ACTIONS(3665), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1975), 5, + ACTIONS(1848), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1973), 41, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1846), 44, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -153718,6 +154531,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, @@ -153727,59 +154541,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [15332] = 22, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [14864] = 22, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1800), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(1802), 1, + ACTIONS(93), 1, anon_sym_SQUOTE, - ACTIONS(1804), 1, + ACTIONS(95), 1, anon_sym_BQUOTE, - ACTIONS(1806), 1, + ACTIONS(105), 1, sym_raw_string_begin, - ACTIONS(3651), 1, + ACTIONS(3669), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3655), 1, + ACTIONS(3671), 1, anon_sym_LBRACK, - ACTIONS(3657), 1, + ACTIONS(3673), 1, anon_sym_STAR2, - STATE(1454), 1, + STATE(1452), 1, sym_comment, - STATE(2133), 1, + STATE(2018), 1, sym__val_number_decimal, - STATE(3713), 1, + STATE(4376), 1, sym_cmd_identifier, - STATE(3719), 1, - sym_val_string, STATE(4379), 1, + sym_val_string, + STATE(4772), 1, sym__command_name, - STATE(4381), 1, + STATE(4780), 1, + sym_scope_pattern, + STATE(4783), 1, sym_wild_card, - STATE(4382), 1, + STATE(4784), 1, sym_command_list, - STATE(4466), 1, - sym_scope_pattern, - ACTIONS(3647), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3659), 2, + ACTIONS(3645), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3661), 2, + ACTIONS(3647), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3667), 4, + ACTIONS(3665), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3649), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(2266), 4, + STATE(502), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3649), 23, + ACTIONS(3667), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -153796,6 +154611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -153803,90 +154619,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [15430] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1866), 1, - anon_sym_DOT2, - STATE(427), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(458), 1, - sym_path, - STATE(932), 1, - sym_cell_path, - STATE(1455), 1, - sym_comment, - ACTIONS(1885), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(3669), 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(1882), 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, - [15502] = 8, + [14962] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1635), 1, + ACTIONS(1637), 1, sym__unquoted_pattern, - ACTIONS(1960), 1, + ACTIONS(1976), 1, anon_sym_LPAREN2, - ACTIONS(3673), 1, + ACTIONS(3675), 1, anon_sym_DOT_DOT2, - STATE(1456), 1, + STATE(1453), 1, sym_comment, - ACTIONS(3675), 2, + ACTIONS(3677), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1958), 5, + ACTIONS(1974), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1956), 41, + ACTIONS(1972), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -153928,23 +154681,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [15572] = 6, + [15032] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3677), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(1986), 1, + anon_sym_LPAREN2, + ACTIONS(1992), 1, + sym__unquoted_pattern, ACTIONS(3679), 1, - aux_sym__immediate_decimal_token5, - STATE(1457), 1, + anon_sym_DOT_DOT2, + STATE(1454), 1, sym_comment, - ACTIONS(1772), 6, + ACTIONS(3681), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1984), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1770), 43, + ACTIONS(1982), 41, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -153957,9 +154715,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, @@ -153978,7 +154734,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, @@ -153988,56 +154743,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [15638] = 20, + [15102] = 20, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(251), 1, aux_sym_cmd_identifier_token1, - ACTIONS(856), 1, + ACTIONS(843), 1, sym_raw_string_begin, - ACTIONS(3130), 1, + ACTIONS(3359), 1, anon_sym_DQUOTE, - ACTIONS(3132), 1, + ACTIONS(3361), 1, anon_sym_SQUOTE, - ACTIONS(3134), 1, + ACTIONS(3363), 1, anon_sym_BQUOTE, - ACTIONS(3136), 1, + ACTIONS(3365), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3138), 1, + ACTIONS(3367), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3681), 1, + ACTIONS(3661), 1, anon_sym_LPAREN, - ACTIONS(3683), 1, + ACTIONS(3663), 1, anon_sym_DOLLAR, - STATE(1458), 1, + STATE(1455), 1, sym_comment, - STATE(2136), 1, + STATE(2099), 1, sym__val_number_decimal, - STATE(3094), 1, + STATE(3047), 1, sym__inter_single_quotes, - STATE(3095), 1, + STATE(3048), 1, sym__inter_double_quotes, ACTIONS(277), 2, anon_sym_export, anon_sym_in, - ACTIONS(3659), 2, + ACTIONS(3645), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3661), 2, + ACTIONS(3647), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2483), 4, + STATE(2477), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(2905), 5, + STATE(3014), 5, sym_cmd_identifier, sym_expr_parenthesized, sym_val_variable, sym_val_string, sym_val_interpolated, - ACTIONS(271), 23, + ACTIONS(271), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -154054,6 +154809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -154061,23 +154817,96 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [15731] = 6, + [15196] = 22, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3685), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(3687), 1, - aux_sym__immediate_decimal_token5, - STATE(1459), 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(3669), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3671), 1, + anon_sym_LBRACK, + ACTIONS(3673), 1, + anon_sym_STAR2, + STATE(1456), 1, + sym_comment, + STATE(2018), 1, + sym__val_number_decimal, + STATE(4376), 1, + sym_cmd_identifier, + STATE(4379), 1, + sym_val_string, + STATE(4772), 1, + sym__command_name, + STATE(4783), 1, + sym_wild_card, + STATE(4784), 1, + sym_command_list, + STATE(4881), 1, + sym_scope_pattern, + ACTIONS(3645), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3647), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3665), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3639), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + STATE(502), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3667), 24, + 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_finally, + 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, + [15294] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1457), 1, sym_comment, - ACTIONS(1772), 6, + ACTIONS(1897), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1770), 42, + ACTIONS(1895), 44, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -154120,24 +154949,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [15796] = 6, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [15356] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3689), 1, + ACTIONS(3683), 1, anon_sym_DOT, - ACTIONS(3691), 1, + ACTIONS(3685), 1, aux_sym__immediate_decimal_token5, - STATE(1460), 1, + STATE(1458), 1, sym_comment, - ACTIONS(1746), 6, + ACTIONS(1792), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1744), 42, - ts_builtin_sym_end, + ACTIONS(1790), 43, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154150,7 +154980,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, @@ -154179,56 +155011,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [15861] = 20, + [15422] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(251), 1, + ACTIONS(19), 1, aux_sym_cmd_identifier_token1, - ACTIONS(856), 1, + ACTIONS(962), 1, sym_raw_string_begin, - ACTIONS(3130), 1, + ACTIONS(3153), 1, anon_sym_DQUOTE, - ACTIONS(3132), 1, + ACTIONS(3155), 1, anon_sym_SQUOTE, - ACTIONS(3134), 1, + ACTIONS(3157), 1, anon_sym_BQUOTE, - ACTIONS(3136), 1, + ACTIONS(3159), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3138), 1, + ACTIONS(3161), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3681), 1, + ACTIONS(3687), 1, anon_sym_LPAREN, - ACTIONS(3683), 1, + ACTIONS(3689), 1, anon_sym_DOLLAR, - STATE(1461), 1, + STATE(1459), 1, sym_comment, - STATE(2136), 1, + STATE(2011), 1, sym__val_number_decimal, - STATE(3094), 1, + STATE(3334), 1, sym__inter_single_quotes, - STATE(3095), 1, + STATE(3335), 1, sym__inter_double_quotes, - ACTIONS(277), 2, + ACTIONS(45), 2, anon_sym_export, anon_sym_in, - ACTIONS(3659), 2, + ACTIONS(3645), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3661), 2, + ACTIONS(3647), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2483), 4, + STATE(2547), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(3124), 5, + STATE(3102), 5, sym_cmd_identifier, sym_expr_parenthesized, sym_val_variable, sym_val_string, sym_val_interpolated, - ACTIONS(271), 23, + ACTIONS(39), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -154245,6 +155077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -154252,22 +155085,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [15954] = 5, + [15516] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3693), 1, - aux_sym__immediate_decimal_token5, - STATE(1462), 1, + ACTIONS(1877), 1, + anon_sym_DOT2, + STATE(428), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(458), 1, + sym_path, + STATE(927), 1, + sym_cell_path, + STATE(1460), 1, sym_comment, - ACTIONS(1854), 6, + ACTIONS(1874), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1852), 43, - anon_sym_in, + ACTIONS(3691), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -154280,8 +155117,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_RBRACE, + ACTIONS(1871), 29, + anon_sym_in, + anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -154300,7 +155139,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, @@ -154310,175 +155148,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [16017] = 22, - 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(3699), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3701), 1, - anon_sym_LBRACK, - ACTIONS(3703), 1, - anon_sym_STAR2, - STATE(1463), 1, - sym_comment, - STATE(2013), 1, - sym__val_number_decimal, - STATE(4301), 1, - sym_cmd_identifier, - STATE(4302), 1, - sym_val_string, - STATE(4640), 1, - sym__command_name, - STATE(4647), 1, - sym_wild_card, - STATE(4649), 1, - sym_command_list, - STATE(4703), 1, - sym_scope_pattern, - ACTIONS(3659), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3661), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3695), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3667), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - STATE(502), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3697), 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, - [16114] = 20, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(19), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(974), 1, - sym_raw_string_begin, - ACTIONS(3335), 1, - anon_sym_DQUOTE, - ACTIONS(3337), 1, - anon_sym_SQUOTE, - ACTIONS(3339), 1, - anon_sym_BQUOTE, - ACTIONS(3341), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3343), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3705), 1, - anon_sym_LPAREN, - ACTIONS(3707), 1, - anon_sym_DOLLAR, - STATE(1464), 1, - sym_comment, - STATE(2121), 1, - sym__val_number_decimal, - STATE(3340), 1, - sym__inter_single_quotes, - STATE(3342), 1, - sym__inter_double_quotes, - ACTIONS(45), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3659), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3661), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2554), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3059), 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, - [16207] = 9, + [15588] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2280), 1, - anon_sym_DOT2, - STATE(622), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(720), 1, - sym_path, - STATE(1273), 1, - sym_cell_path, - STATE(1465), 1, + ACTIONS(3695), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(3697), 1, + aux_sym__immediate_decimal_token5, + STATE(1461), 1, sym_comment, - ACTIONS(1885), 5, + ACTIONS(1732), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(3669), 12, - ts_builtin_sym_end, + sym__unquoted_pattern, + ACTIONS(1730), 43, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -154490,9 +155177,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, - ACTIONS(1882), 29, - anon_sym_in, + anon_sym_RPAREN, anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -154511,6 +155198,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, @@ -154520,21 +155208,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [16278] = 5, + [15654] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3645), 1, - aux_sym__immediate_decimal_token5, - STATE(1466), 1, + STATE(1462), 1, sym_comment, - ACTIONS(1746), 6, + ACTIONS(1732), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1744), 43, + ACTIONS(1730), 44, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154547,9 +155235,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, @@ -154578,62 +155264,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [16341] = 22, - ACTIONS(3), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [15716] = 7, + ACTIONS(103), 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(3699), 1, - aux_sym_cmd_identifier_token1, + ACTIONS(1623), 1, + sym__entry_separator, ACTIONS(3701), 1, - anon_sym_LBRACK, + anon_sym_RBRACE, ACTIONS(3703), 1, - anon_sym_STAR2, - STATE(1467), 1, + sym_raw_string_begin, + STATE(1463), 1, sym_comment, - STATE(2013), 1, - sym__val_number_decimal, - STATE(4301), 1, - sym_cmd_identifier, - STATE(4302), 1, - sym_val_string, - STATE(4640), 1, - sym__command_name, - STATE(4642), 1, - sym_scope_pattern, - STATE(4647), 1, - sym_wild_card, - STATE(4649), 1, - sym_command_list, - ACTIONS(3659), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3661), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3695), 2, + STATE(1464), 1, + aux_sym__types_body_repeat2, + ACTIONS(3699), 46, anon_sym_export, - anon_sym_in, - ACTIONS(3653), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - STATE(502), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3697), 23, 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, @@ -154646,143 +155298,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, 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, - [16438] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1977), 1, - anon_sym_LPAREN2, - ACTIONS(1983), 1, - sym__unquoted_pattern, - STATE(1468), 1, - sym_comment, - ACTIONS(1975), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1973), 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_LPAREN, + anon_sym_DOLLAR, 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, - [16502] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1635), 1, - sym__unquoted_pattern, - ACTIONS(1960), 1, - anon_sym_LPAREN2, - STATE(1469), 1, - sym_comment, - ACTIONS(1958), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1956), 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, - [16566] = 7, + 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, + [15783] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1622), 1, + ACTIONS(3707), 1, sym__entry_separator, - ACTIONS(3711), 1, - anon_sym_RBRACE, - ACTIONS(3713), 1, + ACTIONS(3710), 1, sym_raw_string_begin, - STATE(1470), 1, + STATE(1464), 2, sym_comment, - STATE(1472), 1, aux_sym__types_body_repeat2, - ACTIONS(3709), 45, + ACTIONS(3705), 47, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -154801,6 +155355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_in, anon_sym_true, @@ -154812,6 +155367,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, @@ -154828,73 +155384,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [16632] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1471), 1, - sym_comment, - ACTIONS(1854), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1852), 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, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [16692] = 5, + [15846] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3717), 1, + ACTIONS(1623), 1, sym__entry_separator, - ACTIONS(3720), 1, + ACTIONS(3715), 1, + anon_sym_RBRACE, + ACTIONS(3718), 1, sym_raw_string_begin, - STATE(1472), 2, - sym_comment, + STATE(1464), 1, aux_sym__types_body_repeat2, - ACTIONS(3715), 46, + STATE(1465), 1, + sym_comment, + ACTIONS(3712), 46, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -154913,6 +155416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_in, anon_sym_true, @@ -154924,7 +155428,6 @@ 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, @@ -154941,20 +155444,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [16754] = 7, + [15913] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1622), 1, + ACTIONS(1623), 1, sym__entry_separator, - ACTIONS(3724), 1, + ACTIONS(3723), 1, anon_sym_RBRACE, - ACTIONS(3726), 1, + ACTIONS(3725), 1, sym_raw_string_begin, - STATE(1472), 1, + STATE(1464), 1, aux_sym__types_body_repeat2, - STATE(1473), 1, + STATE(1466), 1, sym_comment, - ACTIONS(3722), 45, + ACTIONS(3721), 46, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -154973,6 +155476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_in, anon_sym_true, @@ -155000,20 +155504,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [16820] = 7, + [15980] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1622), 1, + ACTIONS(1623), 1, sym__entry_separator, - ACTIONS(3713), 1, - sym_raw_string_begin, - ACTIONS(3728), 1, + ACTIONS(3723), 1, anon_sym_RBRACE, - STATE(1472), 1, + ACTIONS(3725), 1, + sym_raw_string_begin, + STATE(1464), 1, aux_sym__types_body_repeat2, - STATE(1474), 1, + STATE(1467), 1, sym_comment, - ACTIONS(3709), 45, + ACTIONS(3721), 46, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -155032,6 +155536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_in, anon_sym_true, @@ -155059,78 +155564,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [16886] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2656), 1, - anon_sym_LPAREN2, - ACTIONS(2658), 1, - sym__unquoted_pattern, - STATE(1475), 1, - sym_comment, - ACTIONS(994), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1030), 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, - [16950] = 7, + [16047] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1622), 1, + ACTIONS(1623), 1, sym__entry_separator, - ACTIONS(3713), 1, + ACTIONS(3718), 1, sym_raw_string_begin, - ACTIONS(3728), 1, + ACTIONS(3727), 1, anon_sym_RBRACE, - STATE(1472), 1, + STATE(1464), 1, aux_sym__types_body_repeat2, - STATE(1476), 1, + STATE(1468), 1, sym_comment, - ACTIONS(3709), 45, + ACTIONS(3712), 46, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -155149,6 +155596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_in, anon_sym_true, @@ -155176,194 +155624,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [17016] = 6, - ACTIONS(3), 1, + [16114] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2656), 1, - anon_sym_LPAREN2, - ACTIONS(2658), 1, - sym__unquoted_pattern, - STATE(1477), 1, - sym_comment, - ACTIONS(1020), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1022), 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, + ACTIONS(1623), 1, + sym__entry_separator, + ACTIONS(3725), 1, + sym_raw_string_begin, + ACTIONS(3730), 1, 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, - [17080] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2652), 1, - anon_sym_LPAREN2, - ACTIONS(2654), 1, - sym__unquoted_pattern, - STATE(1478), 1, - sym_comment, - ACTIONS(2650), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2648), 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, - [17144] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2612), 1, - anon_sym_LPAREN2, - ACTIONS(2614), 1, - sym__unquoted_pattern, - STATE(1479), 1, - sym_comment, - ACTIONS(1614), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1713), 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, - [17208] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1622), 1, - sym__entry_separator, - ACTIONS(3713), 1, - sym_raw_string_begin, - ACTIONS(3730), 1, - anon_sym_RBRACE, - STATE(1472), 1, + STATE(1464), 1, aux_sym__types_body_repeat2, - STATE(1480), 1, + STATE(1469), 1, sym_comment, - ACTIONS(3709), 45, + ACTIONS(3721), 46, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -155382,6 +155656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_in, anon_sym_true, @@ -155409,78 +155684,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [17274] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1977), 1, - anon_sym_LPAREN2, - ACTIONS(1983), 1, - sym__unquoted_pattern, - STATE(1481), 1, - sym_comment, - ACTIONS(2599), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2597), 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, - [17338] = 7, + [16181] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1622), 1, + ACTIONS(1623), 1, sym__entry_separator, - ACTIONS(3713), 1, + ACTIONS(3725), 1, sym_raw_string_begin, - ACTIONS(3730), 1, + ACTIONS(3732), 1, anon_sym_RBRACE, - STATE(1472), 1, + STATE(1464), 1, aux_sym__types_body_repeat2, - STATE(1482), 1, + STATE(1470), 1, sym_comment, - ACTIONS(3709), 45, + ACTIONS(3721), 46, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -155499,6 +155716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_in, anon_sym_true, @@ -155526,77 +155744,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [17404] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3732), 1, - aux_sym__immediate_decimal_token5, - STATE(1483), 1, - sym_comment, - ACTIONS(1854), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1852), 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, - [17466] = 7, + [16248] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1622), 1, + ACTIONS(1623), 1, sym__entry_separator, - ACTIONS(3726), 1, + ACTIONS(3725), 1, sym_raw_string_begin, - ACTIONS(3734), 1, + ACTIONS(3732), 1, anon_sym_RBRACE, - STATE(1472), 1, + STATE(1464), 1, aux_sym__types_body_repeat2, - STATE(1484), 1, + STATE(1471), 1, sym_comment, - ACTIONS(3722), 45, + ACTIONS(3721), 46, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -155615,6 +155776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_in, anon_sym_true, @@ -155642,20 +155804,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [17532] = 7, + [16315] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1622), 1, + ACTIONS(1623), 1, sym__entry_separator, - ACTIONS(3726), 1, + ACTIONS(3703), 1, sym_raw_string_begin, - ACTIONS(3736), 1, + ACTIONS(3734), 1, anon_sym_RBRACE, - STATE(1472), 1, + STATE(1464), 1, aux_sym__types_body_repeat2, - STATE(1485), 1, + STATE(1472), 1, sym_comment, - ACTIONS(3722), 45, + ACTIONS(3699), 46, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -155674,6 +155836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_in, anon_sym_true, @@ -155701,20 +155864,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [17598] = 7, + [16382] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1622), 1, + ACTIONS(1623), 1, sym__entry_separator, - ACTIONS(3726), 1, + ACTIONS(3703), 1, sym_raw_string_begin, - ACTIONS(3738), 1, + ACTIONS(3736), 1, anon_sym_RBRACE, - STATE(1472), 1, + STATE(1464), 1, aux_sym__types_body_repeat2, - STATE(1486), 1, + STATE(1473), 1, sym_comment, - ACTIONS(3722), 45, + ACTIONS(3699), 46, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -155733,6 +155896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_in, anon_sym_true, @@ -155760,81 +155924,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [17664] = 7, - ACTIONS(103), 1, + [16449] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1622), 1, - sym__entry_separator, - ACTIONS(3713), 1, - sym_raw_string_begin, + ACTIONS(3738), 1, + aux_sym__immediate_decimal_token1, ACTIONS(3740), 1, - anon_sym_RBRACE, - STATE(1472), 1, - aux_sym__types_body_repeat2, - STATE(1487), 1, + aux_sym__immediate_decimal_token5, + STATE(1474), 1, sym_comment, - ACTIONS(3709), 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(1732), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1730), 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, - [17730] = 6, + anon_sym_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, + [16514] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1679), 1, - sym__unquoted_pattern, - ACTIONS(2642), 1, - anon_sym_LPAREN2, - STATE(1488), 1, + ACTIONS(3685), 1, + aux_sym__immediate_decimal_token5, + STATE(1475), 1, sym_comment, - ACTIONS(2543), 5, + ACTIONS(1792), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2541), 42, + sym__unquoted_pattern, + ACTIONS(1790), 43, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -155868,6 +156031,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, @@ -155877,19 +156041,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17794] = 4, + [16577] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1489), 1, + ACTIONS(3742), 1, + aux_sym__immediate_decimal_token5, + STATE(1476), 1, sym_comment, - ACTIONS(1872), 6, + ACTIONS(1848), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1870), 43, + ACTIONS(1846), 43, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -155933,23 +156099,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17854] = 5, + [16640] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3691), 1, - aux_sym__immediate_decimal_token5, - STATE(1490), 1, + ACTIONS(2358), 1, + anon_sym_DOT2, + STATE(526), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(715), 1, + sym_path, + STATE(1298), 1, + sym_cell_path, + STATE(1477), 1, sym_comment, - ACTIONS(1746), 6, + ACTIONS(1874), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1744), 42, + ACTIONS(3691), 12, ts_builtin_sym_end, - anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -155961,6 +156131,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, + ACTIONS(1871), 29, + anon_sym_in, anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, @@ -155980,7 +156152,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, @@ -155990,22 +156161,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17916] = 6, + [16711] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1623), 1, + sym__entry_separator, + ACTIONS(3703), 1, + sym_raw_string_begin, + ACTIONS(3744), 1, + anon_sym_RBRACE, + STATE(1464), 1, + aux_sym__types_body_repeat2, + STATE(1478), 1, + sym_comment, + ACTIONS(3699), 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_finally, + 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, + [16778] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2644), 1, - anon_sym_LPAREN2, - ACTIONS(2646), 1, - sym__unquoted_pattern, - STATE(1491), 1, + ACTIONS(3746), 1, + anon_sym_DOT, + ACTIONS(3748), 1, + aux_sym__immediate_decimal_token5, + STATE(1479), 1, sym_comment, - ACTIONS(2591), 5, + ACTIONS(1792), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2589), 42, + sym__unquoted_pattern, + ACTIONS(1790), 42, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -156018,9 +156251,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, @@ -156039,6 +156270,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, @@ -156048,20 +156280,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17980] = 7, + [16843] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1622), 1, + ACTIONS(1623), 1, sym__entry_separator, - ACTIONS(3745), 1, - anon_sym_RBRACE, - ACTIONS(3748), 1, + ACTIONS(3725), 1, sym_raw_string_begin, - STATE(1472), 1, + ACTIONS(3750), 1, + anon_sym_RBRACE, + STATE(1464), 1, aux_sym__types_body_repeat2, - STATE(1492), 1, + STATE(1480), 1, sym_comment, - ACTIONS(3742), 45, + ACTIONS(3721), 46, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -156080,6 +156312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_in, anon_sym_true, @@ -156107,20 +156340,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [18046] = 7, + [16910] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1622), 1, + ACTIONS(1623), 1, sym__entry_separator, - ACTIONS(3748), 1, + ACTIONS(3703), 1, sym_raw_string_begin, - ACTIONS(3751), 1, - anon_sym_RBRACE, - STATE(1472), 1, + STATE(1464), 1, aux_sym__types_body_repeat2, - STATE(1493), 1, + STATE(1481), 1, sym_comment, - ACTIONS(3742), 45, + ACTIONS(3699), 46, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -156139,6 +156370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_in, anon_sym_true, @@ -156166,19 +156398,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [18112] = 4, + [16974] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1494), 1, + ACTIONS(1986), 1, + anon_sym_LPAREN2, + ACTIONS(1992), 1, + sym__unquoted_pattern, + STATE(1482), 1, sym_comment, - ACTIONS(1772), 6, + ACTIONS(2654), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1770), 43, + ACTIONS(2652), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -156212,7 +156447,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, @@ -156222,19 +156456,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18172] = 4, + [17038] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1495), 1, + ACTIONS(1986), 1, + anon_sym_LPAREN2, + ACTIONS(1992), 1, + sym__unquoted_pattern, + STATE(1483), 1, sym_comment, - ACTIONS(2527), 6, + ACTIONS(1984), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(2525), 43, + ACTIONS(1982), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -156268,7 +156505,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, @@ -156278,23 +156514,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18232] = 6, + [17102] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1679), 1, + ACTIONS(1695), 1, sym__unquoted_pattern, - ACTIONS(2642), 1, + ACTIONS(2576), 1, anon_sym_LPAREN2, - STATE(1496), 1, + STATE(1484), 1, sym_comment, - ACTIONS(2543), 5, + ACTIONS(2574), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2541), 41, - ts_builtin_sym_end, + ACTIONS(2572), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -156307,7 +156542,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, @@ -156335,23 +156572,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18295] = 6, + [17166] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1635), 1, - sym__unquoted_pattern, - ACTIONS(1960), 1, + ACTIONS(2612), 1, anon_sym_LPAREN2, - STATE(1497), 1, + ACTIONS(2614), 1, + sym__unquoted_pattern, + STATE(1485), 1, sym_comment, - ACTIONS(1958), 5, + ACTIONS(2610), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1956), 41, - ts_builtin_sym_end, + ACTIONS(2608), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -156364,7 +156600,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, @@ -156392,19 +156630,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18358] = 4, + [17230] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1498), 1, + ACTIONS(3748), 1, + aux_sym__immediate_decimal_token5, + STATE(1486), 1, sym_comment, - ACTIONS(2527), 6, + ACTIONS(1792), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(2525), 42, + ACTIONS(1790), 42, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -156447,80 +156687,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18417] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1622), 1, - sym__entry_separator, - ACTIONS(3713), 1, - sym_raw_string_begin, - STATE(1472), 1, - aux_sym__types_body_repeat2, - STATE(1499), 1, - sym_comment, - ACTIONS(3709), 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, - [18480] = 6, + [17292] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1977), 1, - anon_sym_LPAREN2, - ACTIONS(1983), 1, - sym__unquoted_pattern, - STATE(1500), 1, + STATE(1487), 1, sym_comment, - ACTIONS(2599), 5, + ACTIONS(2362), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2597), 41, - ts_builtin_sym_end, + sym__unquoted_pattern, + ACTIONS(2360), 43, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -156533,7 +156712,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, @@ -156552,6 +156733,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, @@ -156561,22 +156743,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18543] = 6, + [17352] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2652), 1, - anon_sym_LPAREN2, - ACTIONS(2654), 1, - sym__unquoted_pattern, - STATE(1501), 1, + ACTIONS(3752), 1, + aux_sym__immediate_decimal_token5, + STATE(1488), 1, sym_comment, - ACTIONS(2650), 5, + ACTIONS(1848), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2648), 41, + sym__unquoted_pattern, + ACTIONS(1846), 42, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -156609,6 +156790,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, @@ -156618,23 +156800,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18606] = 6, + [17414] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2656), 1, + ACTIONS(2620), 1, anon_sym_LPAREN2, - ACTIONS(2658), 1, + ACTIONS(2622), 1, sym__unquoted_pattern, - STATE(1502), 1, + STATE(1489), 1, sym_comment, - ACTIONS(1020), 5, + ACTIONS(2618), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1022), 41, - ts_builtin_sym_end, + ACTIONS(2616), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -156647,7 +156828,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, @@ -156675,14 +156858,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18669] = 5, - ACTIONS(103), 1, + [17478] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2555), 1, - aux_sym_cmd_identifier_token2, - STATE(1503), 1, + STATE(1490), 1, sym_comment, - ACTIONS(2648), 18, + ACTIONS(1732), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1730), 43, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -156695,17 +156884,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - ACTIONS(2650), 29, - anon_sym_in, - anon_sym_GT2, anon_sym_DASH2, - anon_sym_STAR2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -156716,29 +156896,41 @@ 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_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18730] = 5, - ACTIONS(103), 1, + [17538] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2555), 1, - aux_sym_cmd_identifier_token2, - STATE(1504), 1, + ACTIONS(2632), 1, + anon_sym_LPAREN2, + ACTIONS(2634), 1, + sym__unquoted_pattern, + STATE(1491), 1, sym_comment, - ACTIONS(2525), 18, + ACTIONS(1012), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1226), 42, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -156751,17 +156943,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - ACTIONS(2527), 29, - anon_sym_in, - anon_sym_GT2, anon_sym_DASH2, - anon_sym_STAR2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -156772,35 +156955,36 @@ 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, - [18791] = 4, + [17602] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1505), 1, + STATE(1492), 1, sym_comment, - ACTIONS(1772), 6, + ACTIONS(1848), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1770), 42, - ts_builtin_sym_end, + ACTIONS(1846), 43, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -156813,7 +156997,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, @@ -156842,14 +157028,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18850] = 5, - ACTIONS(103), 1, + [17662] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2555), 1, - aux_sym_cmd_identifier_token2, - STATE(1506), 1, + STATE(1493), 1, sym_comment, - ACTIONS(886), 18, + ACTIONS(1897), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1895), 43, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -156862,17 +157054,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - ACTIONS(866), 29, - anon_sym_in, - anon_sym_GT2, anon_sym_DASH2, - anon_sym_STAR2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -156883,38 +157066,40 @@ 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_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18911] = 6, + [17722] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2656), 1, + ACTIONS(2632), 1, anon_sym_LPAREN2, - ACTIONS(2658), 1, + ACTIONS(2634), 1, sym__unquoted_pattern, - STATE(1507), 1, + STATE(1494), 1, sym_comment, - ACTIONS(994), 5, + ACTIONS(1020), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1030), 41, - ts_builtin_sym_end, + ACTIONS(1234), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -156927,7 +157112,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, @@ -156955,18 +157142,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18974] = 6, + [17786] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2672), 1, + anon_sym_LPAREN2, + ACTIONS(2674), 1, + sym__unquoted_pattern, + STATE(1495), 1, + sym_comment, + ACTIONS(1615), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1699), 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, + [17850] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1622), 1, - sym__entry_separator, - ACTIONS(3726), 1, - sym_raw_string_begin, - STATE(1472), 1, - aux_sym__types_body_repeat2, - STATE(1508), 1, + STATE(1496), 1, sym_comment, - ACTIONS(3722), 45, + ACTIONS(3756), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(3754), 47, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -156985,6 +157227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_in, anon_sym_true, @@ -156996,6 +157239,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, @@ -157012,23 +157256,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [19037] = 6, + [17910] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2644), 1, - anon_sym_LPAREN2, - ACTIONS(2646), 1, + ACTIONS(1637), 1, sym__unquoted_pattern, - STATE(1509), 1, + ACTIONS(1976), 1, + anon_sym_LPAREN2, + STATE(1497), 1, sym_comment, - ACTIONS(2591), 5, + ACTIONS(1974), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2589), 41, - ts_builtin_sym_end, + ACTIONS(1972), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -157041,7 +157284,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, @@ -157069,15 +157314,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19100] = 4, + [17974] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(1510), 1, - sym_comment, - ACTIONS(3756), 2, - sym_raw_string_begin, + ACTIONS(1623), 1, sym__entry_separator, - ACTIONS(3754), 46, + ACTIONS(3725), 1, + sym_raw_string_begin, + STATE(1464), 1, + aux_sym__types_body_repeat2, + STATE(1498), 1, + sym_comment, + ACTIONS(3721), 46, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -157096,6 +157344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_in, anon_sym_true, @@ -157107,7 +157356,6 @@ 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, @@ -157124,22 +157372,276 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [19159] = 6, + [18038] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2612), 1, + ACTIONS(3762), 1, + sym__newline, + STATE(1499), 2, + sym_comment, + aux_sym__types_body_repeat1, + ACTIONS(3758), 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(3760), 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_finally, + 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, + [18100] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1422), 1, + anon_sym_DQUOTE, + ACTIONS(1424), 1, + anon_sym_SQUOTE, + ACTIONS(1426), 1, + anon_sym_BQUOTE, + ACTIONS(1436), 1, + sym_raw_string_begin, + ACTIONS(3769), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3771), 1, + anon_sym_LBRACK, + ACTIONS(3773), 1, + anon_sym_DOLLAR, + ACTIONS(3775), 1, + anon_sym_LBRACE, + STATE(1500), 1, + sym_comment, + STATE(2120), 1, + sym__val_number_decimal, + ACTIONS(3645), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3647), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3765), 2, + anon_sym_export, + anon_sym_in, + STATE(5013), 2, + sym_cmd_identifier, + sym_val_string, + STATE(5014), 3, + sym_val_variable, + sym_val_list, + sym_val_record, + STATE(3725), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3767), 24, + 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_finally, + 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, + [18187] = 21, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1422), 1, + anon_sym_DQUOTE, + ACTIONS(1424), 1, + anon_sym_SQUOTE, + ACTIONS(1426), 1, + anon_sym_BQUOTE, + ACTIONS(1436), 1, + sym_raw_string_begin, + ACTIONS(3769), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3777), 1, + sym__newline, + ACTIONS(3779), 1, + anon_sym_RBRACK, + STATE(1501), 1, + sym_comment, + STATE(1696), 1, + aux_sym__types_body_repeat1, + STATE(1771), 1, + aux_sym__command_list_body_repeat1, + STATE(2120), 1, + sym__val_number_decimal, + STATE(4791), 1, + sym__command_name, + STATE(5054), 1, + sym_cmd_identifier, + STATE(5055), 1, + sym_val_string, + STATE(5497), 1, + sym__command_list_body, + ACTIONS(3645), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3647), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3765), 2, + anon_sym_export, + anon_sym_in, + STATE(3725), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3767), 24, + 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_finally, + 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, + [18280] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2594), 1, + aux_sym_cmd_identifier_token2, + STATE(1502), 1, + sym_comment, + ACTIONS(968), 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(847), 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, + [18341] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2632), 1, anon_sym_LPAREN2, - ACTIONS(2614), 1, + ACTIONS(2634), 1, sym__unquoted_pattern, - STATE(1511), 1, + STATE(1503), 1, sym_comment, - ACTIONS(1614), 5, + ACTIONS(1012), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1713), 41, + ACTIONS(1226), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -157181,19 +157683,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19222] = 4, + [18404] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1512), 1, + STATE(1504), 1, sym_comment, - ACTIONS(1854), 6, + ACTIONS(2362), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1852), 42, + ACTIONS(2360), 42, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -157236,24 +157738,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19281] = 6, + [18463] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1977), 1, - anon_sym_LPAREN2, - ACTIONS(1983), 1, - sym__unquoted_pattern, - STATE(1513), 1, + ACTIONS(3000), 1, + anon_sym_DQUOTE, + ACTIONS(3002), 1, + anon_sym_SQUOTE, + ACTIONS(3004), 1, + anon_sym_BQUOTE, + ACTIONS(3012), 1, + sym_raw_string_begin, + ACTIONS(3785), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3787), 1, + anon_sym_LBRACK, + ACTIONS(3789), 1, + anon_sym_DOLLAR, + ACTIONS(3791), 1, + anon_sym_LBRACE, + STATE(1505), 1, + sym_comment, + STATE(2127), 1, + sym__val_number_decimal, + ACTIONS(3645), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3647), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3781), 2, + anon_sym_export, + anon_sym_in, + STATE(3523), 2, + sym_cmd_identifier, + sym_val_string, + STATE(3524), 3, + sym_val_variable, + sym_val_list, + sym_val_record, + STATE(2643), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3783), 24, + 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_finally, + 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, + [18550] = 21, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1422), 1, + anon_sym_DQUOTE, + ACTIONS(1424), 1, + anon_sym_SQUOTE, + ACTIONS(1426), 1, + anon_sym_BQUOTE, + ACTIONS(1436), 1, + sym_raw_string_begin, + ACTIONS(3769), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3777), 1, + sym__newline, + ACTIONS(3793), 1, + anon_sym_RBRACK, + STATE(1506), 1, + sym_comment, + STATE(1696), 1, + aux_sym__types_body_repeat1, + STATE(1771), 1, + aux_sym__command_list_body_repeat1, + STATE(2120), 1, + sym__val_number_decimal, + STATE(4791), 1, + sym__command_name, + STATE(5054), 1, + sym_cmd_identifier, + STATE(5055), 1, + sym_val_string, + STATE(5259), 1, + sym__command_list_body, + ACTIONS(3645), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3647), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3765), 2, + anon_sym_export, + anon_sym_in, + STATE(3725), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3767), 24, + 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_finally, + 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, + [18643] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1507), 1, sym_comment, - ACTIONS(1975), 5, + ACTIONS(2553), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1973), 41, - ts_builtin_sym_end, - anon_sym_in, + ACTIONS(3795), 14, + anon_sym_finally, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -157265,6 +157903,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(2551), 29, + anon_sym_in, anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, @@ -157293,19 +157935,228 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19344] = 4, + [18704] = 20, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1772), 1, + anon_sym_DQUOTE, + ACTIONS(1774), 1, + anon_sym_SQUOTE, + ACTIONS(1776), 1, + anon_sym_BQUOTE, + ACTIONS(1778), 1, + sym_raw_string_begin, + ACTIONS(2754), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2756), 1, + anon_sym_COLON2, + ACTIONS(3637), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3798), 1, + anon_sym_DASH_DASH, + STATE(1508), 1, + sym_comment, + STATE(1694), 1, + aux_sym_decl_def_repeat1, + STATE(2150), 1, + sym__val_number_decimal, + STATE(2188), 1, + sym_long_flag, + STATE(3755), 1, + sym_cmd_identifier, + STATE(3763), 1, + sym_val_string, + STATE(3949), 1, + sym__command_name, + ACTIONS(3800), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3802), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2274), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3633), 26, + 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_finally, + 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, + [18795] = 18, ACTIONS(3), 1, anon_sym_POUND, - STATE(1514), 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(3669), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3804), 1, + anon_sym_LBRACK, + ACTIONS(3806), 1, + anon_sym_DOLLAR, + ACTIONS(3808), 1, + anon_sym_LBRACE, + STATE(1509), 1, + sym_comment, + STATE(2018), 1, + sym__val_number_decimal, + ACTIONS(3645), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3647), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3665), 2, + anon_sym_export, + anon_sym_in, + STATE(3300), 2, + sym_cmd_identifier, + sym_val_string, + STATE(3301), 3, + sym_val_variable, + sym_val_list, + sym_val_record, + STATE(502), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3667), 24, + 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_finally, + 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, + [18882] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1772), 1, + anon_sym_DQUOTE, + ACTIONS(1774), 1, + anon_sym_SQUOTE, + ACTIONS(1776), 1, + anon_sym_BQUOTE, + ACTIONS(1778), 1, + sym_raw_string_begin, + ACTIONS(3637), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3810), 1, + anon_sym_LBRACK, + ACTIONS(3812), 1, + anon_sym_DOLLAR, + ACTIONS(3814), 1, + anon_sym_LBRACE, + STATE(1510), 1, + sym_comment, + STATE(2150), 1, + sym__val_number_decimal, + ACTIONS(3633), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3645), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3647), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(3031), 2, + sym_cmd_identifier, + sym_val_string, + STATE(3021), 3, + sym_val_variable, + sym_val_list, + sym_val_record, + STATE(2274), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3635), 24, + 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_finally, + 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, + [18969] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1511), 1, sym_comment, - ACTIONS(1872), 6, + ACTIONS(1732), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1870), 42, + ACTIONS(1730), 42, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -157348,20 +158199,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19403] = 5, + [19028] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1734), 1, - sym__unquoted_pattern, - STATE(1515), 1, + STATE(1512), 1, sym_comment, - ACTIONS(866), 5, + ACTIONS(1848), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(886), 42, + sym__unquoted_pattern, + ACTIONS(1846), 42, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -157374,9 +158225,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, @@ -157395,6 +158244,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, @@ -157404,86 +158254,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19464] = 5, + [19087] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3762), 1, - sym__newline, - STATE(1516), 2, + STATE(1513), 1, sym_comment, - aux_sym__types_body_repeat1, - ACTIONS(3758), 7, - anon_sym_export, - aux_sym_cmd_identifier_token1, + ACTIONS(1897), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1895), 42, + 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(3760), 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, - [19525] = 9, + anon_sym_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, + [19146] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2831), 1, - sym__newline, - STATE(1517), 1, + ACTIONS(2672), 1, + anon_sym_LPAREN2, + ACTIONS(2674), 1, + sym__unquoted_pattern, + STATE(1514), 1, sym_comment, - STATE(1636), 1, - aux_sym__repeat_newline, - ACTIONS(3765), 2, + ACTIONS(1615), 5, + anon_sym_GT2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(3767), 2, + anon_sym_PLUS2, + ACTIONS(1699), 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, - ACTIONS(3769), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2732), 3, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [19209] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1828), 1, + sym__unquoted_pattern, + STATE(1515), 1, + sym_comment, + ACTIONS(847), 5, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2730), 36, + ACTIONS(968), 42, anon_sym_in, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -157496,6 +158394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -157514,23 +158413,33 @@ 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, - [19593] = 5, + [19270] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1518), 1, + ACTIONS(1637), 1, + sym__unquoted_pattern, + ACTIONS(1976), 1, + anon_sym_LPAREN2, + STATE(1516), 1, sym_comment, - ACTIONS(2583), 5, + ACTIONS(1974), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(3771), 13, + ACTIONS(1972), 41, + ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -157542,10 +158451,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, - ACTIONS(2581), 29, - anon_sym_in, anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, @@ -157574,15 +158479,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19653] = 5, + [19333] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2829), 1, + ACTIONS(2594), 1, aux_sym_cmd_identifier_token2, - STATE(1519), 1, + STATE(1517), 1, sym_comment, - ACTIONS(2525), 17, - ts_builtin_sym_end, + ACTIONS(2360), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -157594,12 +158498,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_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, - ACTIONS(2527), 29, + ACTIONS(2362), 29, anon_sym_in, anon_sym_GT2, anon_sym_DASH2, @@ -157629,15 +158535,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19713] = 5, + [19394] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2829), 1, + ACTIONS(2594), 1, aux_sym_cmd_identifier_token2, - STATE(1520), 1, + STATE(1518), 1, sym_comment, - ACTIONS(2648), 17, - ts_builtin_sym_end, + ACTIONS(2616), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -157649,12 +158554,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_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, - ACTIONS(2650), 29, + ACTIONS(2618), 29, anon_sym_in, anon_sym_GT2, anon_sym_DASH2, @@ -157684,21 +158591,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19773] = 4, + [19455] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1521), 1, + ACTIONS(1986), 1, + anon_sym_LPAREN2, + ACTIONS(1992), 1, + sym__unquoted_pattern, + STATE(1519), 1, sym_comment, - ACTIONS(2958), 7, - anon_sym_export, - aux_sym_cmd_identifier_token1, + ACTIONS(2654), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2652), 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(2960), 40, + anon_sym_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, + [19518] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1772), 1, + anon_sym_DQUOTE, + ACTIONS(1774), 1, + anon_sym_SQUOTE, + ACTIONS(1776), 1, + anon_sym_BQUOTE, + ACTIONS(1778), 1, sym_raw_string_begin, + ACTIONS(3637), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3812), 1, + anon_sym_DOLLAR, + ACTIONS(3816), 1, + anon_sym_LBRACK, + ACTIONS(3818), 1, + anon_sym_LBRACE, + STATE(1520), 1, + sym_comment, + STATE(2150), 1, + sym__val_number_decimal, + ACTIONS(3633), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3645), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3647), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(3031), 2, + sym_cmd_identifier, + sym_val_string, + STATE(3021), 3, + sym_val_variable, + sym_val_list, + sym_val_record, + STATE(2274), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3635), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -157715,6 +158709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -157722,1149 +158717,120 @@ 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_LPAREN, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_DOT_DOLLAR, + [19605] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3669), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3820), 1, + anon_sym_LBRACK, + ACTIONS(3822), 1, + anon_sym_DOLLAR, + ACTIONS(3824), 1, + anon_sym_LBRACE, + ACTIONS(3826), 1, + anon_sym_DQUOTE, + ACTIONS(3828), 1, + anon_sym_SQUOTE, + ACTIONS(3830), 1, + anon_sym_BQUOTE, + ACTIONS(3832), 1, + sym_raw_string_begin, + STATE(1521), 1, + sym_comment, + STATE(2018), 1, + sym__val_number_decimal, + ACTIONS(3645), 2, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, + ACTIONS(3647), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, + ACTIONS(3665), 2, + anon_sym_export, + anon_sym_in, + STATE(3300), 2, + sym_cmd_identifier, + sym_val_string, + STATE(3301), 3, + sym_val_variable, + sym_val_list, + sym_val_record, + STATE(2394), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3667), 24, + 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_finally, + 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, + [19692] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1772), 1, anon_sym_DQUOTE, + ACTIONS(1774), 1, anon_sym_SQUOTE, + ACTIONS(1776), 1, anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACE, - [19831] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3774), 1, - anon_sym_COLON, - ACTIONS(3776), 1, + ACTIONS(1778), 1, + sym_raw_string_begin, + ACTIONS(2938), 1, + anon_sym_DOLLAR, + ACTIONS(3637), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3834), 1, anon_sym_LBRACK, - ACTIONS(3782), 1, - anon_sym_list, - ACTIONS(3784), 1, - anon_sym_oneof, - ACTIONS(3786), 1, + ACTIONS(3836), 1, anon_sym_LBRACE, STATE(1522), 1, sym_comment, - STATE(4654), 1, - sym_block, - STATE(4817), 1, - sym_returns, - STATE(5053), 1, - sym__one_type, - STATE(5063), 1, - sym__multiple_types, - STATE(5066), 1, - sym__type_annotation, - ACTIONS(3780), 2, - anon_sym_table, - anon_sym_record, - STATE(2651), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3778), 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, - [19911] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3774), 1, - anon_sym_COLON, - ACTIONS(3776), 1, - anon_sym_LBRACK, - ACTIONS(3782), 1, - anon_sym_list, - ACTIONS(3784), 1, - anon_sym_oneof, - ACTIONS(3786), 1, - anon_sym_LBRACE, - STATE(1523), 1, - sym_comment, - STATE(4529), 1, - sym_block, - STATE(4868), 1, - sym_returns, - STATE(5053), 1, - sym__one_type, - STATE(5063), 1, - sym__multiple_types, - STATE(5066), 1, - sym__type_annotation, - ACTIONS(3780), 2, - anon_sym_table, - anon_sym_record, - STATE(2651), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3778), 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, - [19991] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3774), 1, - anon_sym_COLON, - ACTIONS(3776), 1, - anon_sym_LBRACK, - ACTIONS(3782), 1, - anon_sym_list, - ACTIONS(3784), 1, - anon_sym_oneof, - ACTIONS(3786), 1, - anon_sym_LBRACE, - STATE(1524), 1, - sym_comment, - STATE(4663), 1, - sym_block, - STATE(4847), 1, - sym_returns, - STATE(5053), 1, - sym__one_type, - STATE(5063), 1, - sym__multiple_types, - STATE(5066), 1, - sym__type_annotation, - ACTIONS(3780), 2, - anon_sym_table, - anon_sym_record, - STATE(2651), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3778), 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, - [20071] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3774), 1, - anon_sym_COLON, - ACTIONS(3776), 1, - anon_sym_LBRACK, - ACTIONS(3782), 1, - anon_sym_list, - ACTIONS(3784), 1, - anon_sym_oneof, - ACTIONS(3786), 1, - anon_sym_LBRACE, - STATE(1525), 1, - sym_comment, - STATE(4658), 1, - sym_block, - STATE(4850), 1, - sym_returns, - STATE(5053), 1, - sym__one_type, - STATE(5063), 1, - sym__multiple_types, - STATE(5066), 1, - sym__type_annotation, - ACTIONS(3780), 2, - anon_sym_table, - anon_sym_record, - STATE(2651), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3778), 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, - [20151] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2829), 1, - aux_sym_cmd_identifier_token2, - STATE(1526), 1, - sym_comment, - ACTIONS(886), 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(866), 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, - [20211] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1600), 1, - anon_sym_DOLLAR, - ACTIONS(1604), 1, - anon_sym_LPAREN2, - ACTIONS(1635), 1, - sym__unquoted_pattern, - ACTIONS(3788), 1, - anon_sym_DOT, - STATE(1527), 1, - sym_comment, - STATE(1860), 1, - sym__immediate_decimal, - ACTIONS(3790), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3792), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(688), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1602), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1598), 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, - [20285] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1820), 1, - sym__unquoted_pattern, - STATE(1528), 1, - sym_comment, - ACTIONS(866), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(886), 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, - [20345] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3774), 1, - anon_sym_COLON, - ACTIONS(3776), 1, - anon_sym_LBRACK, - ACTIONS(3782), 1, - anon_sym_list, - ACTIONS(3784), 1, - anon_sym_oneof, - ACTIONS(3786), 1, - anon_sym_LBRACE, - STATE(1529), 1, - sym_comment, - STATE(4714), 1, - sym_block, - STATE(4834), 1, - sym_returns, - STATE(5053), 1, - sym__one_type, - STATE(5063), 1, - sym__multiple_types, - STATE(5066), 1, - sym__type_annotation, - ACTIONS(3780), 2, - anon_sym_table, - anon_sym_record, - STATE(2651), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3778), 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, - [20425] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3774), 1, - anon_sym_COLON, - ACTIONS(3776), 1, - anon_sym_LBRACK, - ACTIONS(3782), 1, - anon_sym_list, - ACTIONS(3784), 1, - anon_sym_oneof, - ACTIONS(3786), 1, - anon_sym_LBRACE, - STATE(1530), 1, - sym_comment, - STATE(4725), 1, - sym_block, - STATE(4837), 1, - sym_returns, - STATE(5053), 1, - sym__one_type, - STATE(5063), 1, - sym__multiple_types, - STATE(5066), 1, - sym__type_annotation, - ACTIONS(3780), 2, - anon_sym_table, - anon_sym_record, - STATE(2651), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3778), 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, - [20505] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3774), 1, - anon_sym_COLON, - ACTIONS(3776), 1, - anon_sym_LBRACK, - ACTIONS(3782), 1, - anon_sym_list, - ACTIONS(3784), 1, - anon_sym_oneof, - ACTIONS(3786), 1, - anon_sym_LBRACE, - STATE(1531), 1, - sym_comment, - STATE(4726), 1, - sym_block, - STATE(4842), 1, - sym_returns, - STATE(5053), 1, - sym__one_type, - STATE(5063), 1, - sym__multiple_types, - STATE(5066), 1, - sym__type_annotation, - ACTIONS(3780), 2, - anon_sym_table, - anon_sym_record, - STATE(2651), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3778), 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, - [20585] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3774), 1, - anon_sym_COLON, - ACTIONS(3776), 1, - anon_sym_LBRACK, - ACTIONS(3782), 1, - anon_sym_list, - ACTIONS(3784), 1, - anon_sym_oneof, - ACTIONS(3786), 1, - anon_sym_LBRACE, - STATE(1532), 1, - sym_comment, - STATE(4739), 1, - sym_block, - STATE(4843), 1, - sym_returns, - STATE(5053), 1, - sym__one_type, - STATE(5063), 1, - sym__multiple_types, - STATE(5066), 1, - sym__type_annotation, - ACTIONS(3780), 2, - anon_sym_table, - anon_sym_record, - STATE(2651), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3778), 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, - [20665] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3774), 1, - anon_sym_COLON, - ACTIONS(3776), 1, - anon_sym_LBRACK, - ACTIONS(3782), 1, - anon_sym_list, - ACTIONS(3784), 1, - anon_sym_oneof, - ACTIONS(3786), 1, - anon_sym_LBRACE, - STATE(1533), 1, - sym_comment, - STATE(4700), 1, - sym_block, - STATE(4844), 1, - sym_returns, - STATE(5053), 1, - sym__one_type, - STATE(5063), 1, - sym__multiple_types, - STATE(5066), 1, - sym__type_annotation, - ACTIONS(3780), 2, - anon_sym_table, - anon_sym_record, - STATE(2651), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3778), 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, - [20745] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3774), 1, - anon_sym_COLON, - ACTIONS(3776), 1, - anon_sym_LBRACK, - ACTIONS(3782), 1, - anon_sym_list, - ACTIONS(3784), 1, - anon_sym_oneof, - ACTIONS(3786), 1, - anon_sym_LBRACE, - STATE(1534), 1, - sym_comment, - STATE(4713), 1, - sym_block, - STATE(4845), 1, - sym_returns, - STATE(5053), 1, - sym__one_type, - STATE(5063), 1, - sym__multiple_types, - STATE(5066), 1, - sym__type_annotation, - ACTIONS(3780), 2, - anon_sym_table, - anon_sym_record, - STATE(2651), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3778), 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, - [20825] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3774), 1, - anon_sym_COLON, - ACTIONS(3776), 1, - anon_sym_LBRACK, - ACTIONS(3782), 1, - anon_sym_list, - ACTIONS(3784), 1, - anon_sym_oneof, - ACTIONS(3786), 1, - anon_sym_LBRACE, - STATE(1535), 1, - sym_comment, - STATE(4715), 1, - sym_block, - STATE(4848), 1, - sym_returns, - STATE(5053), 1, - sym__one_type, - STATE(5063), 1, - sym__multiple_types, - STATE(5066), 1, - sym__type_annotation, - ACTIONS(3780), 2, - anon_sym_table, - anon_sym_record, - STATE(2651), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3778), 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, - [20905] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3774), 1, - anon_sym_COLON, - ACTIONS(3776), 1, - anon_sym_LBRACK, - ACTIONS(3782), 1, - anon_sym_list, - ACTIONS(3784), 1, - anon_sym_oneof, - ACTIONS(3786), 1, - anon_sym_LBRACE, - STATE(1536), 1, - sym_comment, - STATE(4719), 1, - sym_block, - STATE(4849), 1, - sym_returns, - STATE(5053), 1, - sym__one_type, - STATE(5063), 1, - sym__multiple_types, - STATE(5066), 1, - sym__type_annotation, - ACTIONS(3780), 2, - anon_sym_table, - anon_sym_record, - STATE(2651), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3778), 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, - [20985] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3774), 1, - anon_sym_COLON, - ACTIONS(3776), 1, - anon_sym_LBRACK, - ACTIONS(3782), 1, - anon_sym_list, - ACTIONS(3784), 1, - anon_sym_oneof, - ACTIONS(3786), 1, - anon_sym_LBRACE, - STATE(1537), 1, - sym_comment, - STATE(4652), 1, - sym_block, - STATE(4821), 1, - sym_returns, - STATE(5053), 1, - sym__one_type, - STATE(5063), 1, - sym__multiple_types, - STATE(5066), 1, - sym__type_annotation, - ACTIONS(3780), 2, - anon_sym_table, - anon_sym_record, - STATE(2651), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3778), 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, - [21065] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3774), 1, - anon_sym_COLON, - ACTIONS(3776), 1, - anon_sym_LBRACK, - ACTIONS(3782), 1, - anon_sym_list, - ACTIONS(3784), 1, - anon_sym_oneof, - ACTIONS(3786), 1, - anon_sym_LBRACE, - STATE(1538), 1, - sym_comment, - STATE(4778), 1, - sym_block, - STATE(4825), 1, - sym_returns, - STATE(5053), 1, - sym__one_type, - STATE(5063), 1, - sym__multiple_types, - STATE(5066), 1, - sym__type_annotation, - ACTIONS(3780), 2, - anon_sym_table, - anon_sym_record, - STATE(2651), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3778), 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, - [21145] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3699), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3794), 1, - anon_sym_LBRACK, - ACTIONS(3796), 1, - anon_sym_DOLLAR, - ACTIONS(3798), 1, - anon_sym_LBRACE, - ACTIONS(3800), 1, - anon_sym_DQUOTE, - ACTIONS(3802), 1, - anon_sym_SQUOTE, - ACTIONS(3804), 1, - anon_sym_BQUOTE, - ACTIONS(3806), 1, - sym_raw_string_begin, - STATE(1539), 1, - sym_comment, - STATE(2013), 1, + STATE(2150), 1, sym__val_number_decimal, - ACTIONS(3659), 2, + ACTIONS(3633), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3645), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3661), 2, + ACTIONS(3647), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3695), 2, - anon_sym_export, - anon_sym_in, - STATE(3346), 2, + STATE(3031), 2, sym_cmd_identifier, sym_val_string, - STATE(3256), 3, + STATE(3021), 3, sym_val_variable, sym_val_list, sym_val_record, - STATE(2379), 4, + STATE(2274), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3697), 23, + ACTIONS(3635), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -158873,1047 +158839,238 @@ 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, - [21231] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3774), 1, - anon_sym_COLON, - ACTIONS(3776), 1, - anon_sym_LBRACK, - ACTIONS(3782), 1, - anon_sym_list, - ACTIONS(3784), 1, - anon_sym_oneof, - ACTIONS(3808), 1, - anon_sym_LBRACE, - STATE(1540), 1, - sym_comment, - STATE(4479), 1, - sym_block, - STATE(4894), 1, - sym_returns, - STATE(5053), 1, - sym__one_type, - STATE(5063), 1, - sym__multiple_types, - STATE(5066), 1, - sym__type_annotation, - ACTIONS(3780), 2, - anon_sym_table, - anon_sym_record, - STATE(2651), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3778), 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, - [21311] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3774), 1, - anon_sym_COLON, - ACTIONS(3776), 1, - anon_sym_LBRACK, - ACTIONS(3782), 1, - anon_sym_list, - ACTIONS(3784), 1, - anon_sym_oneof, - ACTIONS(3808), 1, - anon_sym_LBRACE, - STATE(1541), 1, - sym_comment, - STATE(4480), 1, - sym_block, - STATE(4895), 1, - sym_returns, - STATE(5053), 1, - sym__one_type, - STATE(5063), 1, - sym__multiple_types, - STATE(5066), 1, - sym__type_annotation, - ACTIONS(3780), 2, - anon_sym_table, - anon_sym_record, - STATE(2651), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3778), 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, - [21391] = 21, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1422), 1, - anon_sym_DQUOTE, - ACTIONS(1424), 1, - anon_sym_SQUOTE, - ACTIONS(1426), 1, - anon_sym_BQUOTE, - ACTIONS(1436), 1, - sym_raw_string_begin, - ACTIONS(3814), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3816), 1, - sym__newline, - ACTIONS(3818), 1, - anon_sym_RBRACK, - STATE(1542), 1, - sym_comment, - STATE(1710), 1, - aux_sym__types_body_repeat1, - STATE(1789), 1, - aux_sym__command_list_body_repeat1, - STATE(2138), 1, - sym__val_number_decimal, - STATE(4636), 1, - sym__command_name, - STATE(4851), 1, - sym_cmd_identifier, - STATE(4852), 1, - sym_val_string, - STATE(5233), 1, - sym__command_list_body, - ACTIONS(3659), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3661), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3810), 2, - anon_sym_export, - anon_sym_in, - STATE(3665), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3812), 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, - [21483] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3774), 1, - anon_sym_COLON, - ACTIONS(3776), 1, - anon_sym_LBRACK, - ACTIONS(3782), 1, - anon_sym_list, - ACTIONS(3784), 1, - anon_sym_oneof, - ACTIONS(3808), 1, - anon_sym_LBRACE, - STATE(1543), 1, - sym_comment, - STATE(4411), 1, - sym_block, - STATE(4885), 1, - sym_returns, - STATE(5053), 1, - sym__one_type, - STATE(5063), 1, - sym__multiple_types, - STATE(5066), 1, - sym__type_annotation, - ACTIONS(3780), 2, - anon_sym_table, - anon_sym_record, - STATE(2651), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3778), 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, - [21563] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3774), 1, - anon_sym_COLON, - ACTIONS(3776), 1, - anon_sym_LBRACK, - ACTIONS(3782), 1, - anon_sym_list, - ACTIONS(3784), 1, - anon_sym_oneof, - ACTIONS(3808), 1, - anon_sym_LBRACE, - STATE(1544), 1, - sym_comment, - STATE(4412), 1, - sym_block, - STATE(4886), 1, - sym_returns, - STATE(5053), 1, - sym__one_type, - STATE(5063), 1, - sym__multiple_types, - STATE(5066), 1, - sym__type_annotation, - ACTIONS(3780), 2, - anon_sym_table, - anon_sym_record, - STATE(2651), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3778), 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, - [21643] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3774), 1, - anon_sym_COLON, - ACTIONS(3776), 1, - anon_sym_LBRACK, - ACTIONS(3782), 1, - anon_sym_list, - ACTIONS(3784), 1, - anon_sym_oneof, - ACTIONS(3808), 1, - anon_sym_LBRACE, - STATE(1545), 1, - sym_comment, - STATE(4491), 1, - sym_block, - STATE(4907), 1, - sym_returns, - STATE(5053), 1, - sym__one_type, - STATE(5063), 1, - sym__multiple_types, - STATE(5066), 1, - sym__type_annotation, - ACTIONS(3780), 2, - anon_sym_table, - anon_sym_record, - STATE(2651), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3778), 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, - [21723] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3774), 1, - anon_sym_COLON, - ACTIONS(3776), 1, - anon_sym_LBRACK, - ACTIONS(3782), 1, - anon_sym_list, - ACTIONS(3784), 1, - anon_sym_oneof, - ACTIONS(3808), 1, - anon_sym_LBRACE, - STATE(1546), 1, - sym_comment, - STATE(4492), 1, - sym_block, - STATE(4909), 1, - sym_returns, - STATE(5053), 1, - sym__one_type, - STATE(5063), 1, - sym__multiple_types, - STATE(5066), 1, - sym__type_annotation, - ACTIONS(3780), 2, - anon_sym_table, - anon_sym_record, - STATE(2651), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3778), 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, - [21803] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3774), 1, - anon_sym_COLON, - ACTIONS(3776), 1, - anon_sym_LBRACK, - ACTIONS(3782), 1, - anon_sym_list, - ACTIONS(3784), 1, - anon_sym_oneof, - ACTIONS(3808), 1, - anon_sym_LBRACE, - STATE(1547), 1, - sym_comment, - STATE(4505), 1, - sym_block, - STATE(4913), 1, - sym_returns, - STATE(5053), 1, - sym__one_type, - STATE(5063), 1, - sym__multiple_types, - STATE(5066), 1, - sym__type_annotation, - ACTIONS(3780), 2, - anon_sym_table, - anon_sym_record, - STATE(2651), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3778), 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, - [21883] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3774), 1, - anon_sym_COLON, - ACTIONS(3776), 1, - anon_sym_LBRACK, - ACTIONS(3782), 1, - anon_sym_list, - ACTIONS(3784), 1, - anon_sym_oneof, - ACTIONS(3808), 1, - anon_sym_LBRACE, - STATE(1548), 1, - sym_comment, - STATE(4208), 1, - sym_block, - STATE(4917), 1, - sym_returns, - STATE(5053), 1, - sym__one_type, - STATE(5063), 1, - sym__multiple_types, - STATE(5066), 1, - sym__type_annotation, - ACTIONS(3780), 2, - anon_sym_table, - anon_sym_record, - STATE(2651), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3778), 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, - [21963] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3774), 1, - anon_sym_COLON, - ACTIONS(3776), 1, - anon_sym_LBRACK, - ACTIONS(3782), 1, - anon_sym_list, - ACTIONS(3784), 1, - anon_sym_oneof, - ACTIONS(3786), 1, - anon_sym_LBRACE, - STATE(1549), 1, - sym_comment, - STATE(4591), 1, - sym_block, - STATE(4898), 1, - sym_returns, - STATE(5053), 1, - sym__one_type, - STATE(5063), 1, - sym__multiple_types, - STATE(5066), 1, - sym__type_annotation, - ACTIONS(3780), 2, - anon_sym_table, - anon_sym_record, - STATE(2651), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3778), 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, - [22043] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3774), 1, - anon_sym_COLON, - ACTIONS(3776), 1, - anon_sym_LBRACK, - ACTIONS(3782), 1, - anon_sym_list, - ACTIONS(3784), 1, - anon_sym_oneof, - ACTIONS(3786), 1, - anon_sym_LBRACE, - STATE(1550), 1, - sym_comment, - STATE(4613), 1, - sym_block, - STATE(4905), 1, - sym_returns, - STATE(5053), 1, - sym__one_type, - STATE(5063), 1, - sym__multiple_types, - STATE(5066), 1, - sym__type_annotation, - ACTIONS(3780), 2, - anon_sym_table, - anon_sym_record, - STATE(2651), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3778), 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, - [22123] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3774), 1, - anon_sym_COLON, - ACTIONS(3776), 1, - anon_sym_LBRACK, - ACTIONS(3782), 1, - anon_sym_list, - ACTIONS(3784), 1, - anon_sym_oneof, - ACTIONS(3808), 1, - anon_sym_LBRACE, - STATE(1551), 1, - sym_comment, - STATE(4262), 1, - sym_block, - STATE(4863), 1, - sym_returns, - STATE(5053), 1, - sym__one_type, - STATE(5063), 1, - sym__multiple_types, - STATE(5066), 1, - sym__type_annotation, - ACTIONS(3780), 2, - anon_sym_table, - anon_sym_record, - STATE(2651), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3778), 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, - [22203] = 15, + 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_finally, + 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, + [19779] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3774), 1, - anon_sym_COLON, - ACTIONS(3776), 1, - anon_sym_LBRACK, - ACTIONS(3782), 1, - anon_sym_list, - ACTIONS(3784), 1, - anon_sym_oneof, - ACTIONS(3808), 1, - anon_sym_LBRACE, - STATE(1552), 1, + ACTIONS(1986), 1, + anon_sym_LPAREN2, + ACTIONS(1992), 1, + sym__unquoted_pattern, + STATE(1523), 1, sym_comment, - STATE(4263), 1, - sym_block, - STATE(4864), 1, - sym_returns, - STATE(5053), 1, - sym__one_type, - STATE(5063), 1, - sym__multiple_types, - STATE(5066), 1, - sym__type_annotation, - ACTIONS(3780), 2, - anon_sym_table, - anon_sym_record, - STATE(2651), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3778), 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, - [22283] = 15, + ACTIONS(1984), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1982), 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, + [19842] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3774), 1, - anon_sym_COLON, - ACTIONS(3776), 1, - anon_sym_LBRACK, - ACTIONS(3782), 1, - anon_sym_list, - ACTIONS(3784), 1, - anon_sym_oneof, - ACTIONS(3808), 1, - anon_sym_LBRACE, - STATE(1553), 1, + ACTIONS(1695), 1, + sym__unquoted_pattern, + ACTIONS(2576), 1, + anon_sym_LPAREN2, + STATE(1524), 1, sym_comment, - STATE(4268), 1, - sym_block, - STATE(4865), 1, - sym_returns, - STATE(5053), 1, - sym__one_type, - STATE(5063), 1, - sym__multiple_types, - STATE(5066), 1, - sym__type_annotation, - ACTIONS(3780), 2, - anon_sym_table, - anon_sym_record, - STATE(2651), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3778), 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, - [22363] = 15, + ACTIONS(2574), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2572), 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, + [19905] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3774), 1, - anon_sym_COLON, - ACTIONS(3776), 1, - anon_sym_LBRACK, - ACTIONS(3782), 1, - anon_sym_list, - ACTIONS(3784), 1, - anon_sym_oneof, - ACTIONS(3808), 1, - anon_sym_LBRACE, - STATE(1554), 1, + ACTIONS(2612), 1, + anon_sym_LPAREN2, + ACTIONS(2614), 1, + sym__unquoted_pattern, + STATE(1525), 1, sym_comment, - STATE(4269), 1, - sym_block, - STATE(4866), 1, - sym_returns, - STATE(5053), 1, - sym__one_type, - STATE(5063), 1, - sym__multiple_types, - STATE(5066), 1, - sym__type_annotation, - ACTIONS(3780), 2, - anon_sym_table, - anon_sym_record, - STATE(2651), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3778), 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, - [22443] = 18, + ACTIONS(2610), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2608), 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, + [19968] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1800), 1, + ACTIONS(1422), 1, anon_sym_DQUOTE, - ACTIONS(1802), 1, + ACTIONS(1424), 1, anon_sym_SQUOTE, - ACTIONS(1804), 1, + ACTIONS(1426), 1, anon_sym_BQUOTE, - ACTIONS(1806), 1, + ACTIONS(1436), 1, sym_raw_string_begin, - ACTIONS(3651), 1, + ACTIONS(3769), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3820), 1, + ACTIONS(3838), 1, anon_sym_LBRACK, - ACTIONS(3822), 1, + ACTIONS(3840), 1, anon_sym_DOLLAR, - ACTIONS(3824), 1, + ACTIONS(3842), 1, anon_sym_LBRACE, - STATE(1555), 1, + STATE(1526), 1, sym_comment, - STATE(2133), 1, + STATE(2120), 1, sym__val_number_decimal, - ACTIONS(3647), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3659), 2, + ACTIONS(3645), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3661), 2, + ACTIONS(3647), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2908), 2, + ACTIONS(3765), 2, + anon_sym_export, + anon_sym_in, + STATE(5013), 2, sym_cmd_identifier, sym_val_string, - STATE(2912), 3, + STATE(5014), 3, sym_val_variable, sym_val_list, sym_val_record, - STATE(2266), 4, + STATE(3725), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3649), 23, + ACTIONS(3767), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -159930,6 +159087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -159937,365 +159095,405 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [22529] = 15, + [20055] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3774), 1, - anon_sym_COLON, - ACTIONS(3776), 1, - anon_sym_LBRACK, - ACTIONS(3782), 1, - anon_sym_list, - ACTIONS(3784), 1, - anon_sym_oneof, - ACTIONS(3808), 1, - anon_sym_LBRACE, - STATE(1556), 1, + ACTIONS(2632), 1, + anon_sym_LPAREN2, + ACTIONS(2634), 1, + sym__unquoted_pattern, + STATE(1527), 1, sym_comment, - STATE(4288), 1, - sym_block, - STATE(4873), 1, - sym_returns, - STATE(5053), 1, - sym__one_type, - STATE(5063), 1, - sym__multiple_types, - STATE(5066), 1, - sym__type_annotation, - ACTIONS(3780), 2, - anon_sym_table, - anon_sym_record, - STATE(2651), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3778), 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, - [22609] = 15, + ACTIONS(1020), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1234), 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, + [20118] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3774), 1, - anon_sym_COLON, - ACTIONS(3776), 1, - anon_sym_LBRACK, - ACTIONS(3782), 1, - anon_sym_list, - ACTIONS(3784), 1, - anon_sym_oneof, - ACTIONS(3808), 1, - anon_sym_LBRACE, - STATE(1557), 1, + STATE(1528), 1, sym_comment, - STATE(4290), 1, - sym_block, - STATE(4875), 1, - sym_returns, - STATE(5053), 1, - sym__one_type, - STATE(5063), 1, - sym__multiple_types, - STATE(5066), 1, - sym__type_annotation, - ACTIONS(3780), 2, - anon_sym_table, - anon_sym_record, - STATE(2651), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3778), 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, - [22689] = 15, + ACTIONS(2772), 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(2774), 41, + 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_finally, + 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, + [20177] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3774), 1, - anon_sym_COLON, - ACTIONS(3776), 1, - anon_sym_LBRACK, - ACTIONS(3782), 1, - anon_sym_list, - ACTIONS(3784), 1, - anon_sym_oneof, - ACTIONS(3808), 1, - anon_sym_LBRACE, - STATE(1558), 1, + ACTIONS(2620), 1, + anon_sym_LPAREN2, + ACTIONS(2622), 1, + sym__unquoted_pattern, + STATE(1529), 1, sym_comment, - STATE(4327), 1, - sym_block, - STATE(4928), 1, - sym_returns, - STATE(5053), 1, - sym__one_type, - STATE(5063), 1, - sym__multiple_types, - STATE(5066), 1, - sym__type_annotation, - ACTIONS(3780), 2, - anon_sym_table, - anon_sym_record, - STATE(2651), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3778), 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, - [22769] = 15, + ACTIONS(2618), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2616), 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, + [20240] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3774), 1, - anon_sym_COLON, - ACTIONS(3776), 1, - anon_sym_LBRACK, - ACTIONS(3782), 1, - anon_sym_list, - ACTIONS(3784), 1, - anon_sym_oneof, - ACTIONS(3808), 1, - anon_sym_LBRACE, - STATE(1559), 1, + ACTIONS(3848), 1, + anon_sym_DASH2, + ACTIONS(3858), 1, + anon_sym_PLUS2, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(1530), 1, sym_comment, - STATE(4328), 1, - sym_block, - STATE(4931), 1, - sym_returns, - STATE(5053), 1, - sym__one_type, - STATE(5063), 1, - sym__multiple_types, - STATE(5066), 1, - sym__type_annotation, - ACTIONS(3780), 2, - anon_sym_table, - anon_sym_record, - STATE(2651), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3778), 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, - [22849] = 15, + ACTIONS(3846), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3850), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3854), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3856), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3860), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3852), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3844), 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(2810), 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, + [20316] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3774), 1, - anon_sym_COLON, - ACTIONS(3776), 1, - anon_sym_LBRACK, - ACTIONS(3782), 1, - anon_sym_list, - ACTIONS(3784), 1, - anon_sym_oneof, - ACTIONS(3808), 1, - anon_sym_LBRACE, - STATE(1560), 1, + ACTIONS(2850), 1, + sym__newline, + ACTIONS(3866), 1, + anon_sym_DASH2, + ACTIONS(3878), 1, + anon_sym_PLUS2, + ACTIONS(3882), 1, + anon_sym_bit_DASHand2, + STATE(1531), 1, sym_comment, - STATE(4342), 1, - sym_block, - STATE(4944), 1, - sym_returns, - STATE(5053), 1, - sym__one_type, - STATE(5063), 1, - sym__multiple_types, - STATE(5066), 1, - sym__type_annotation, - ACTIONS(3780), 2, - anon_sym_table, - anon_sym_record, - STATE(2651), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3778), 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, - [22929] = 15, + STATE(1562), 1, + aux_sym__repeat_newline, + ACTIONS(3864), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3868), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3874), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3876), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3880), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3870), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3872), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3862), 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(2798), 16, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [20398] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2850), 1, + sym__newline, + ACTIONS(3866), 1, + anon_sym_DASH2, + ACTIONS(3878), 1, + anon_sym_PLUS2, + ACTIONS(3882), 1, + anon_sym_bit_DASHand2, + ACTIONS(3884), 1, + anon_sym_bit_DASHxor2, + STATE(1532), 1, + sym_comment, + STATE(1564), 1, + aux_sym__repeat_newline, + ACTIONS(3864), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3868), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3874), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3876), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3880), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3870), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3872), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3862), 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(2798), 15, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + [20482] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3774), 1, + ACTIONS(3886), 1, anon_sym_COLON, - ACTIONS(3776), 1, + ACTIONS(3888), 1, anon_sym_LBRACK, - ACTIONS(3782), 1, + ACTIONS(3894), 1, anon_sym_list, - ACTIONS(3784), 1, + ACTIONS(3896), 1, anon_sym_oneof, - ACTIONS(3808), 1, + ACTIONS(3898), 1, anon_sym_LBRACE, - STATE(1561), 1, + STATE(1533), 1, sym_comment, - STATE(4343), 1, + STATE(4608), 1, sym_block, - STATE(4945), 1, + STATE(4920), 1, sym_returns, - STATE(5053), 1, + STATE(5155), 1, sym__one_type, - STATE(5063), 1, + STATE(5162), 1, sym__multiple_types, - STATE(5066), 1, + STATE(5165), 1, sym__type_annotation, - ACTIONS(3780), 2, + ACTIONS(3892), 2, anon_sym_table, anon_sym_record, - STATE(2651), 4, + STATE(2656), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3778), 31, + ACTIONS(3890), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -160327,40 +159525,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [23009] = 15, + [20562] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3774), 1, + ACTIONS(3886), 1, anon_sym_COLON, - ACTIONS(3776), 1, + ACTIONS(3888), 1, anon_sym_LBRACK, - ACTIONS(3782), 1, + ACTIONS(3894), 1, anon_sym_list, - ACTIONS(3784), 1, + ACTIONS(3896), 1, anon_sym_oneof, - ACTIONS(3808), 1, + ACTIONS(3898), 1, anon_sym_LBRACE, - STATE(1562), 1, + STATE(1534), 1, sym_comment, - STATE(4518), 1, + STATE(4609), 1, sym_block, - STATE(4795), 1, + STATE(4921), 1, sym_returns, - STATE(5053), 1, + STATE(5155), 1, sym__one_type, - STATE(5063), 1, + STATE(5162), 1, sym__multiple_types, - STATE(5066), 1, + STATE(5165), 1, sym__type_annotation, - ACTIONS(3780), 2, + ACTIONS(3892), 2, anon_sym_table, anon_sym_record, - STATE(2651), 4, + STATE(2656), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3778), 31, + ACTIONS(3890), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -160392,40 +159590,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [23089] = 15, + [20642] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1601), 1, + anon_sym_DOLLAR, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + ACTIONS(1637), 1, + sym__unquoted_pattern, + ACTIONS(3900), 1, + anon_sym_DOT, + STATE(1535), 1, + sym_comment, + STATE(1876), 1, + sym__immediate_decimal, + ACTIONS(3902), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3904), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(703), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1633), 6, + 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, + 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, + [20716] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3774), 1, + ACTIONS(3886), 1, anon_sym_COLON, - ACTIONS(3776), 1, + ACTIONS(3888), 1, anon_sym_LBRACK, - ACTIONS(3782), 1, + ACTIONS(3894), 1, anon_sym_list, - ACTIONS(3784), 1, + ACTIONS(3896), 1, anon_sym_oneof, - ACTIONS(3808), 1, + ACTIONS(3906), 1, anon_sym_LBRACE, - STATE(1563), 1, + STATE(1536), 1, sym_comment, - STATE(4359), 1, + STATE(4908), 1, sym_block, - STATE(4796), 1, + STATE(5063), 1, sym_returns, - STATE(5053), 1, + STATE(5155), 1, sym__one_type, - STATE(5063), 1, + STATE(5162), 1, sym__multiple_types, - STATE(5066), 1, + STATE(5165), 1, sym__type_annotation, - ACTIONS(3780), 2, + ACTIONS(3892), 2, anon_sym_table, anon_sym_record, - STATE(2651), 4, + STATE(2656), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3778), 31, + ACTIONS(3890), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -160457,40 +159717,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [23169] = 15, + [20796] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3774), 1, + ACTIONS(3886), 1, anon_sym_COLON, - ACTIONS(3776), 1, + ACTIONS(3888), 1, anon_sym_LBRACK, - ACTIONS(3782), 1, + ACTIONS(3894), 1, anon_sym_list, - ACTIONS(3784), 1, + ACTIONS(3896), 1, anon_sym_oneof, - ACTIONS(3808), 1, + ACTIONS(3906), 1, anon_sym_LBRACE, - STATE(1564), 1, + STATE(1537), 1, sym_comment, - STATE(4360), 1, + STATE(4758), 1, sym_block, - STATE(4798), 1, + STATE(4998), 1, sym_returns, - STATE(5053), 1, + STATE(5155), 1, sym__one_type, - STATE(5063), 1, + STATE(5162), 1, sym__multiple_types, - STATE(5066), 1, + STATE(5165), 1, sym__type_annotation, - ACTIONS(3780), 2, + ACTIONS(3892), 2, anon_sym_table, anon_sym_record, - STATE(2651), 4, + STATE(2656), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3778), 31, + ACTIONS(3890), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -160522,40 +159782,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [23249] = 15, + [20876] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3774), 1, + ACTIONS(3886), 1, anon_sym_COLON, - ACTIONS(3776), 1, + ACTIONS(3888), 1, anon_sym_LBRACK, - ACTIONS(3782), 1, + ACTIONS(3894), 1, anon_sym_list, - ACTIONS(3784), 1, + ACTIONS(3896), 1, anon_sym_oneof, - ACTIONS(3808), 1, + ACTIONS(3906), 1, anon_sym_LBRACE, - STATE(1565), 1, + STATE(1538), 1, sym_comment, - STATE(4362), 1, + STATE(4802), 1, sym_block, - STATE(4799), 1, + STATE(5046), 1, sym_returns, - STATE(5053), 1, + STATE(5155), 1, sym__one_type, - STATE(5063), 1, + STATE(5162), 1, sym__multiple_types, - STATE(5066), 1, + STATE(5165), 1, sym__type_annotation, - ACTIONS(3780), 2, + ACTIONS(3892), 2, anon_sym_table, anon_sym_record, - STATE(2651), 4, + STATE(2656), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3778), 31, + ACTIONS(3890), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -160587,40 +159847,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [23329] = 15, + [20956] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3774), 1, + ACTIONS(3886), 1, anon_sym_COLON, - ACTIONS(3776), 1, + ACTIONS(3888), 1, anon_sym_LBRACK, - ACTIONS(3782), 1, + ACTIONS(3894), 1, anon_sym_list, - ACTIONS(3784), 1, + ACTIONS(3896), 1, anon_sym_oneof, - ACTIONS(3808), 1, + ACTIONS(3906), 1, anon_sym_LBRACE, - STATE(1566), 1, + STATE(1539), 1, sym_comment, - STATE(4372), 1, + STATE(4706), 1, sym_block, - STATE(4813), 1, + STATE(4940), 1, sym_returns, - STATE(5053), 1, + STATE(5155), 1, sym__one_type, - STATE(5063), 1, + STATE(5162), 1, sym__multiple_types, - STATE(5066), 1, + STATE(5165), 1, sym__type_annotation, - ACTIONS(3780), 2, + ACTIONS(3892), 2, anon_sym_table, anon_sym_record, - STATE(2651), 4, + STATE(2656), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3778), 31, + ACTIONS(3890), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -160652,40 +159912,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [23409] = 15, + [21036] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3774), 1, + ACTIONS(3886), 1, anon_sym_COLON, - ACTIONS(3776), 1, + ACTIONS(3888), 1, anon_sym_LBRACK, - ACTIONS(3782), 1, + ACTIONS(3894), 1, anon_sym_list, - ACTIONS(3784), 1, + ACTIONS(3896), 1, anon_sym_oneof, - ACTIONS(3808), 1, + ACTIONS(3906), 1, anon_sym_LBRACE, - STATE(1567), 1, + STATE(1540), 1, sym_comment, - STATE(4373), 1, + STATE(4795), 1, sym_block, - STATE(4814), 1, + STATE(4919), 1, sym_returns, - STATE(5053), 1, + STATE(5155), 1, sym__one_type, - STATE(5063), 1, + STATE(5162), 1, sym__multiple_types, - STATE(5066), 1, + STATE(5165), 1, sym__type_annotation, - ACTIONS(3780), 2, + ACTIONS(3892), 2, anon_sym_table, anon_sym_record, - STATE(2651), 4, + STATE(2656), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3778), 31, + ACTIONS(3890), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -160717,41 +159977,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [23489] = 13, + [21116] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2860), 1, + ACTIONS(2874), 1, sym__newline, - ACTIONS(3828), 1, + ACTIONS(3866), 1, anon_sym_DASH2, - ACTIONS(3832), 1, + ACTIONS(3878), 1, anon_sym_PLUS2, - STATE(1568), 1, + STATE(1541), 1, sym_comment, - STATE(1582), 1, + STATE(1581), 1, aux_sym__repeat_newline, - ACTIONS(3765), 2, + ACTIONS(3864), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3868), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3767), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3769), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3826), 2, + ACTIONS(3880), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3870), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2788), 29, + anon_sym_in, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_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_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, + [21192] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3848), 1, + anon_sym_DASH2, + ACTIONS(3858), 1, + anon_sym_PLUS2, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(1542), 1, + sym_comment, + ACTIONS(3846), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3834), 2, + ACTIONS(3850), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3854), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3856), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3860), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3830), 4, + ACTIONS(3852), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2754), 29, + ACTIONS(2794), 30, anon_sym_in, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -160780,35 +160102,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [23565] = 12, + [21266] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2860), 1, + ACTIONS(2874), 1, sym__newline, - ACTIONS(3828), 1, + ACTIONS(3866), 1, anon_sym_DASH2, - ACTIONS(3832), 1, + ACTIONS(3878), 1, anon_sym_PLUS2, - STATE(1569), 1, + STATE(1543), 1, sym_comment, - STATE(1584), 1, + STATE(1582), 1, aux_sym__repeat_newline, - ACTIONS(2756), 2, + ACTIONS(2790), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3765), 2, + ACTIONS(3868), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3767), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3769), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3834), 2, + ACTIONS(3880), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2754), 33, + ACTIONS(2788), 33, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -160842,29 +160164,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [23639] = 9, + [21340] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2860), 1, + ACTIONS(3848), 1, + anon_sym_DASH2, + ACTIONS(3858), 1, + anon_sym_PLUS2, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(1544), 1, + sym_comment, + ACTIONS(2796), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3850), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3854), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3856), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3860), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2794), 34, + anon_sym_in, sym__newline, - STATE(1570), 1, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + 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, + [21412] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2874), 1, + sym__newline, + STATE(1545), 1, sym_comment, - STATE(1586), 1, + STATE(1583), 1, aux_sym__repeat_newline, - ACTIONS(3765), 2, + ACTIONS(3868), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3767), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3769), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2756), 3, + ACTIONS(2790), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2754), 36, + ACTIONS(2788), 36, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -160901,25 +160284,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [23707] = 7, + [21480] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2860), 1, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(1546), 1, + sym_comment, + ACTIONS(3850), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3854), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3856), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2796), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2794), 37, + anon_sym_in, sym__newline, - STATE(1571), 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_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, + [21546] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2874), 1, + sym__newline, + STATE(1547), 1, sym_comment, - STATE(1588), 1, + STATE(1584), 1, aux_sym__repeat_newline, - ACTIONS(3767), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2756), 5, + ACTIONS(2790), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2754), 38, + ACTIONS(2788), 38, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -160958,51 +160399,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [23771] = 18, + [21610] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2860), 1, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(1548), 1, + sym_comment, + ACTIONS(3854), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2796), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2794), 39, + anon_sym_in, sym__newline, - ACTIONS(3828), 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_DASH2, - ACTIONS(3832), 1, + anon_sym_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, + [21672] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2874), 1, + sym__newline, + ACTIONS(3866), 1, + anon_sym_DASH2, + ACTIONS(3878), 1, anon_sym_PLUS2, - ACTIONS(3840), 1, + ACTIONS(3882), 1, anon_sym_bit_DASHand2, - ACTIONS(3842), 1, + ACTIONS(3884), 1, anon_sym_bit_DASHxor2, - ACTIONS(3844), 1, + ACTIONS(3908), 1, anon_sym_bit_DASHor2, - STATE(1572), 1, + STATE(1549), 1, sym_comment, - STATE(1590), 1, + STATE(1585), 1, aux_sym__repeat_newline, - ACTIONS(3765), 2, + ACTIONS(3864), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3868), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3767), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3769), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3826), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3834), 2, + ACTIONS(3880), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3830), 4, + ACTIONS(3870), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3838), 4, + ACTIONS(3872), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3836), 8, + ACTIONS(3862), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -161011,7 +160508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2754), 14, + ACTIONS(2788), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -161026,53 +160523,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [23857] = 19, + [21758] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2860), 1, - sym__newline, - ACTIONS(3828), 1, + ACTIONS(3848), 1, anon_sym_DASH2, - ACTIONS(3832), 1, + ACTIONS(3858), 1, anon_sym_PLUS2, - ACTIONS(3840), 1, + ACTIONS(3912), 1, anon_sym_bit_DASHand2, - ACTIONS(3842), 1, + ACTIONS(3914), 1, anon_sym_bit_DASHxor2, - ACTIONS(3844), 1, + ACTIONS(3916), 1, anon_sym_bit_DASHor2, - ACTIONS(3846), 1, - anon_sym_and2, - STATE(1573), 1, - sym_comment, - STATE(1592), 1, + STATE(485), 1, aux_sym__repeat_newline, - ACTIONS(3765), 2, + STATE(1550), 1, + sym_comment, + ACTIONS(3846), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3850), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3767), 2, + ACTIONS(3854), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3769), 2, + ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3826), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3834), 2, + ACTIONS(3860), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3830), 4, + ACTIONS(3852), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3838), 4, + ACTIONS(3910), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3836), 8, + ACTIONS(3844), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -161081,7 +160574,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2754), 13, + ACTIONS(2794), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -161093,57 +160587,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [23945] = 20, + [21842] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2907), 1, + ACTIONS(2874), 1, sym__newline, - ACTIONS(3828), 1, + ACTIONS(3866), 1, anon_sym_DASH2, - ACTIONS(3832), 1, + ACTIONS(3878), 1, anon_sym_PLUS2, - ACTIONS(3840), 1, + ACTIONS(3882), 1, anon_sym_bit_DASHand2, - ACTIONS(3842), 1, + ACTIONS(3884), 1, anon_sym_bit_DASHxor2, - ACTIONS(3844), 1, + ACTIONS(3908), 1, anon_sym_bit_DASHor2, - ACTIONS(3846), 1, + ACTIONS(3918), 1, anon_sym_and2, - ACTIONS(3848), 1, - anon_sym_xor2, - STATE(1574), 1, + STATE(1551), 1, sym_comment, - STATE(1594), 1, + STATE(1586), 1, aux_sym__repeat_newline, - ACTIONS(3765), 2, + ACTIONS(3864), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3868), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3767), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3769), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3826), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3834), 2, + ACTIONS(3880), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3830), 4, + ACTIONS(3870), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3838), 4, + ACTIONS(3872), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3836), 8, + ACTIONS(3862), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -161152,7 +160645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2754), 12, + ACTIONS(2788), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -161164,41 +160657,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_xor2, anon_sym_or2, - [24035] = 14, + [21930] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2860), 1, - sym__newline, - ACTIONS(3828), 1, + ACTIONS(3848), 1, anon_sym_DASH2, - ACTIONS(3832), 1, + ACTIONS(3858), 1, anon_sym_PLUS2, - STATE(1575), 1, - sym_comment, - STATE(1596), 1, + ACTIONS(3912), 1, + anon_sym_bit_DASHand2, + ACTIONS(3914), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3916), 1, + anon_sym_bit_DASHor2, + ACTIONS(3920), 1, + anon_sym_and2, + STATE(485), 1, aux_sym__repeat_newline, - ACTIONS(3765), 2, + STATE(1552), 1, + sym_comment, + ACTIONS(3846), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3850), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3767), 2, + ACTIONS(3854), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3769), 2, + ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3826), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3834), 2, + ACTIONS(3860), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3830), 4, + ACTIONS(3852), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3836), 8, + ACTIONS(3910), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3844), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -161207,7 +160712,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2754), 21, + ACTIONS(2794), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -161219,43 +160725,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [24113] = 11, + [22016] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2860), 1, + ACTIONS(2922), 1, sym__newline, - ACTIONS(3828), 1, + ACTIONS(3866), 1, anon_sym_DASH2, - ACTIONS(3832), 1, + ACTIONS(3878), 1, anon_sym_PLUS2, - STATE(1576), 1, + ACTIONS(3882), 1, + anon_sym_bit_DASHand2, + ACTIONS(3884), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3908), 1, + anon_sym_bit_DASHor2, + ACTIONS(3918), 1, + anon_sym_and2, + ACTIONS(3922), 1, + anon_sym_xor2, + STATE(1553), 1, sym_comment, - STATE(1598), 1, + STATE(1587), 1, aux_sym__repeat_newline, - ACTIONS(2756), 2, + ACTIONS(3864), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3765), 2, + ACTIONS(3868), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3767), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3769), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2754), 35, + ACTIONS(3880), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3870), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3872), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3862), 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(2788), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -161267,68 +160796,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_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, - [24185] = 15, + [22106] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2860), 1, - sym__newline, - ACTIONS(3828), 1, + ACTIONS(3848), 1, anon_sym_DASH2, - ACTIONS(3832), 1, + ACTIONS(3858), 1, anon_sym_PLUS2, - STATE(1577), 1, - sym_comment, - STATE(1600), 1, + ACTIONS(3912), 1, + anon_sym_bit_DASHand2, + ACTIONS(3914), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3916), 1, + anon_sym_bit_DASHor2, + ACTIONS(3920), 1, + anon_sym_and2, + ACTIONS(3924), 1, + anon_sym_xor2, + STATE(485), 1, aux_sym__repeat_newline, - ACTIONS(3765), 2, + STATE(1554), 1, + sym_comment, + ACTIONS(3846), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3850), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3767), 2, + ACTIONS(3854), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3769), 2, + ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3826), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3834), 2, + ACTIONS(3860), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3830), 4, + ACTIONS(3852), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3838), 4, + ACTIONS(3910), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3836), 8, + ACTIONS(3844), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -161337,7 +160852,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2754), 17, + ACTIONS(2794), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -161349,53 +160865,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_and2, - anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [24265] = 16, + [22194] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2860), 1, + ACTIONS(2874), 1, sym__newline, - ACTIONS(3828), 1, + ACTIONS(3866), 1, anon_sym_DASH2, - ACTIONS(3832), 1, + ACTIONS(3878), 1, anon_sym_PLUS2, - ACTIONS(3840), 1, - anon_sym_bit_DASHand2, - STATE(1578), 1, + STATE(1555), 1, sym_comment, - STATE(1602), 1, + STATE(1588), 1, aux_sym__repeat_newline, - ACTIONS(3765), 2, + ACTIONS(3864), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3868), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3767), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3769), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3826), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3834), 2, + ACTIONS(3880), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3830), 4, + ACTIONS(3870), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3838), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3836), 8, + ACTIONS(3862), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -161404,7 +160908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2754), 16, + ACTIONS(2788), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -161419,51 +160923,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [24347] = 17, + [22272] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2860), 1, - sym__newline, - ACTIONS(3828), 1, + ACTIONS(3848), 1, anon_sym_DASH2, - ACTIONS(3832), 1, + ACTIONS(3858), 1, anon_sym_PLUS2, - ACTIONS(3840), 1, - anon_sym_bit_DASHand2, - ACTIONS(3842), 1, - anon_sym_bit_DASHxor2, - STATE(1579), 1, - sym_comment, - STATE(1604), 1, + STATE(485), 1, aux_sym__repeat_newline, - ACTIONS(3765), 2, + STATE(1556), 1, + sym_comment, + ACTIONS(3846), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3850), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3767), 2, + ACTIONS(3854), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3769), 2, + ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3826), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3834), 2, + ACTIONS(3860), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3830), 4, + ACTIONS(3852), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3838), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3836), 8, + ACTIONS(3844), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -161472,7 +160970,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2754), 15, + ACTIONS(2794), 22, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -161487,109 +160986,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [24431] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3000), 1, - anon_sym_DQUOTE, - ACTIONS(3002), 1, - anon_sym_SQUOTE, - ACTIONS(3004), 1, - anon_sym_BQUOTE, - ACTIONS(3012), 1, - sym_raw_string_begin, - ACTIONS(3854), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3856), 1, - anon_sym_LBRACK, - ACTIONS(3858), 1, - anon_sym_DOLLAR, - ACTIONS(3860), 1, - anon_sym_LBRACE, - STATE(1580), 1, - sym_comment, - STATE(2139), 1, - sym__val_number_decimal, - ACTIONS(3659), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3661), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3850), 2, - anon_sym_export, - anon_sym_in, - STATE(3448), 2, - sym_cmd_identifier, - sym_val_string, - STATE(3366), 3, - sym_val_variable, - sym_val_list, - sym_val_record, - STATE(2568), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3852), 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, - [24517] = 13, + [22348] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2804), 1, + ACTIONS(2874), 1, sym__newline, - ACTIONS(3828), 1, + ACTIONS(3866), 1, anon_sym_DASH2, - ACTIONS(3832), 1, + ACTIONS(3878), 1, anon_sym_PLUS2, - STATE(1581), 1, + STATE(1557), 1, sym_comment, - STATE(1619), 1, + STATE(1589), 1, aux_sym__repeat_newline, - ACTIONS(3765), 2, + ACTIONS(2790), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3868), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3767), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3769), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3826), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3834), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3830), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2720), 29, + ACTIONS(2788), 35, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -161612,45 +161041,43 @@ 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, - [24593] = 12, + [22420] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3864), 1, + ACTIONS(3848), 1, anon_sym_DASH2, - ACTIONS(3874), 1, + ACTIONS(3858), 1, anon_sym_PLUS2, - STATE(527), 1, + STATE(485), 1, aux_sym__repeat_newline, - STATE(1582), 1, + STATE(1558), 1, sym_comment, - ACTIONS(3862), 2, + ACTIONS(2796), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3866), 2, + ACTIONS(3850), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3870), 2, + ACTIONS(3854), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3872), 2, + ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3876), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3868), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2724), 30, + ACTIONS(2794), 36, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -161674,43 +161101,67 @@ 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, - [24667] = 12, + [22490] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2804), 1, + ACTIONS(2874), 1, sym__newline, - ACTIONS(3828), 1, + ACTIONS(3866), 1, anon_sym_DASH2, - ACTIONS(3832), 1, + ACTIONS(3878), 1, anon_sym_PLUS2, - STATE(1583), 1, + STATE(1559), 1, sym_comment, - STATE(1620), 1, + STATE(1590), 1, aux_sym__repeat_newline, - ACTIONS(2722), 2, + ACTIONS(3864), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3765), 2, + ACTIONS(3868), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3767), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3769), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3834), 2, + ACTIONS(3880), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2720), 33, + ACTIONS(3870), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3872), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3862), 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(2788), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -161725,6 +161176,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [22570] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3848), 1, + anon_sym_DASH2, + ACTIONS(3858), 1, + anon_sym_PLUS2, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(1560), 1, + sym_comment, + ACTIONS(3846), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3850), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3854), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3856), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3860), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3852), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3910), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3844), 8, + anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -161732,45 +161224,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + ACTIONS(2794), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [22648] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2874), 1, + sym__newline, + ACTIONS(3866), 1, + anon_sym_DASH2, + ACTIONS(3878), 1, + anon_sym_PLUS2, + ACTIONS(3882), 1, + anon_sym_bit_DASHand2, + STATE(1561), 1, + sym_comment, + STATE(1591), 1, + aux_sym__repeat_newline, + ACTIONS(3864), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3868), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3874), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3876), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3880), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3870), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(3872), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, + ACTIONS(3862), 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(2788), 16, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [24741] = 11, + [22730] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3864), 1, + ACTIONS(3848), 1, anon_sym_DASH2, - ACTIONS(3874), 1, + ACTIONS(3858), 1, anon_sym_PLUS2, - STATE(527), 1, + ACTIONS(3912), 1, + anon_sym_bit_DASHand2, + STATE(485), 1, aux_sym__repeat_newline, - STATE(1584), 1, + STATE(1562), 1, sym_comment, - ACTIONS(2726), 2, + ACTIONS(3846), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3866), 2, + ACTIONS(3850), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3870), 2, + ACTIONS(3854), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3872), 2, + ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3876), 2, + ACTIONS(3860), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2724), 34, + ACTIONS(3852), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3910), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3844), 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(2794), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -161786,6 +161372,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [22810] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2874), 1, + sym__newline, + ACTIONS(3866), 1, + anon_sym_DASH2, + ACTIONS(3878), 1, + anon_sym_PLUS2, + ACTIONS(3882), 1, + anon_sym_bit_DASHand2, + ACTIONS(3884), 1, + anon_sym_bit_DASHxor2, + STATE(1563), 1, + sym_comment, + STATE(1592), 1, + aux_sym__repeat_newline, + ACTIONS(3864), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3868), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3874), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3876), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3880), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3870), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3872), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3862), 8, + anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -161793,40 +161425,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + ACTIONS(2788), 15, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + [22894] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3848), 1, + anon_sym_DASH2, + ACTIONS(3858), 1, + anon_sym_PLUS2, + ACTIONS(3912), 1, + anon_sym_bit_DASHand2, + ACTIONS(3914), 1, + anon_sym_bit_DASHxor2, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(1564), 1, + sym_comment, + ACTIONS(3846), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3850), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3854), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3856), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3860), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3852), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(3910), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, + ACTIONS(3844), 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(2794), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_bit_DASHor2, - [24813] = 9, + [22976] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3886), 1, + anon_sym_COLON, + ACTIONS(3888), 1, + anon_sym_LBRACK, + ACTIONS(3894), 1, + anon_sym_list, + ACTIONS(3896), 1, + anon_sym_oneof, + ACTIONS(3898), 1, + anon_sym_LBRACE, + STATE(1565), 1, + sym_comment, + STATE(4523), 1, + sym_block, + STATE(4912), 1, + sym_returns, + STATE(5155), 1, + sym__one_type, + STATE(5162), 1, + sym__multiple_types, + STATE(5165), 1, + sym__type_annotation, + ACTIONS(3892), 2, + anon_sym_table, + anon_sym_record, + STATE(2656), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3890), 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, + [23056] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2804), 1, + ACTIONS(2887), 1, sym__newline, - STATE(1585), 1, + ACTIONS(3866), 1, + anon_sym_DASH2, + ACTIONS(3878), 1, + anon_sym_PLUS2, + STATE(1566), 1, sym_comment, - STATE(1621), 1, + STATE(1594), 1, aux_sym__repeat_newline, - ACTIONS(3765), 2, + ACTIONS(3864), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3868), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3767), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3769), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2722), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2720), 36, + ACTIONS(3880), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3870), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2776), 29, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -161839,7 +161618,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_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -161850,42 +161628,108 @@ 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, - [24881] = 8, + [23132] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3886), 1, + anon_sym_COLON, + ACTIONS(3888), 1, + anon_sym_LBRACK, + ACTIONS(3894), 1, + anon_sym_list, + ACTIONS(3896), 1, + anon_sym_oneof, + ACTIONS(3898), 1, + anon_sym_LBRACE, + STATE(1567), 1, + sym_comment, + STATE(4436), 1, + sym_block, + STATE(4976), 1, + sym_returns, + STATE(5155), 1, + sym__one_type, + STATE(5162), 1, + sym__multiple_types, + STATE(5165), 1, + sym__type_annotation, + ACTIONS(3892), 2, + anon_sym_table, + anon_sym_record, + STATE(2656), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3890), 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, + [23212] = 12, ACTIONS(3), 1, anon_sym_POUND, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(1586), 1, + ACTIONS(2887), 1, + sym__newline, + ACTIONS(3866), 1, + anon_sym_DASH2, + ACTIONS(3878), 1, + anon_sym_PLUS2, + STATE(1568), 1, sym_comment, - ACTIONS(3866), 2, + STATE(1596), 1, + aux_sym__repeat_newline, + ACTIONS(2778), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3868), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3870), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3872), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2726), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2724), 37, + ACTIONS(3880), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2776), 33, anon_sym_in, - sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -161897,7 +161741,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_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -161916,30 +161759,32 @@ 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, - [24947] = 7, + [23286] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2804), 1, + ACTIONS(2887), 1, sym__newline, - STATE(1587), 1, + STATE(1569), 1, sym_comment, - STATE(1622), 1, + STATE(1598), 1, aux_sym__repeat_newline, - ACTIONS(3767), 2, + ACTIONS(3868), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2722), 5, + ACTIONS(3876), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2778), 3, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2720), 38, + ACTIONS(2776), 36, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -161971,32 +161816,31 @@ static const uint16_t ts_small_parse_table[] = { 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, - [25011] = 6, + [23354] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(1588), 1, + ACTIONS(2887), 1, + sym__newline, + STATE(1570), 1, sym_comment, - ACTIONS(3870), 2, + STATE(1600), 1, + aux_sym__repeat_newline, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2726), 5, + ACTIONS(2778), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2724), 39, + ACTIONS(2776), 38, anon_sym_in, - sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162034,51 +161878,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25073] = 18, + [23418] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2804), 1, + ACTIONS(2887), 1, sym__newline, - ACTIONS(3828), 1, + ACTIONS(3866), 1, anon_sym_DASH2, - ACTIONS(3832), 1, + ACTIONS(3878), 1, anon_sym_PLUS2, - ACTIONS(3840), 1, + ACTIONS(3882), 1, anon_sym_bit_DASHand2, - ACTIONS(3842), 1, + ACTIONS(3884), 1, anon_sym_bit_DASHxor2, - ACTIONS(3844), 1, + ACTIONS(3908), 1, anon_sym_bit_DASHor2, - STATE(1589), 1, + STATE(1571), 1, sym_comment, - STATE(1623), 1, + STATE(1602), 1, aux_sym__repeat_newline, - ACTIONS(3765), 2, + ACTIONS(3864), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3868), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3767), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3769), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3826), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3834), 2, + ACTIONS(3880), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3830), 4, + ACTIONS(3870), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3838), 4, + ACTIONS(3872), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3836), 8, + ACTIONS(3862), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -162087,7 +161931,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(2776), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162102,49 +161946,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [25159] = 17, + [23504] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3864), 1, + ACTIONS(2887), 1, + sym__newline, + ACTIONS(3866), 1, anon_sym_DASH2, - ACTIONS(3874), 1, + ACTIONS(3878), 1, anon_sym_PLUS2, ACTIONS(3882), 1, anon_sym_bit_DASHand2, ACTIONS(3884), 1, anon_sym_bit_DASHxor2, - ACTIONS(3886), 1, + ACTIONS(3908), 1, anon_sym_bit_DASHor2, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(1590), 1, + ACTIONS(3918), 1, + anon_sym_and2, + STATE(1572), 1, sym_comment, - ACTIONS(3862), 2, + STATE(1604), 1, + aux_sym__repeat_newline, + ACTIONS(3864), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3866), 2, + ACTIONS(3868), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3870), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3872), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3876), 2, + ACTIONS(3880), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3868), 4, + ACTIONS(3870), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3880), 4, + ACTIONS(3872), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3878), 8, + ACTIONS(3862), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -162153,8 +162001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2724), 15, - sym__newline, + ACTIONS(2776), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162166,56 +162013,122 @@ static 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, - [25243] = 19, + [23592] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3886), 1, + anon_sym_COLON, + ACTIONS(3888), 1, + anon_sym_LBRACK, + ACTIONS(3894), 1, + anon_sym_list, + ACTIONS(3896), 1, + anon_sym_oneof, + ACTIONS(3906), 1, + anon_sym_LBRACE, + STATE(1573), 1, + sym_comment, + STATE(4705), 1, + sym_block, + STATE(4945), 1, + sym_returns, + STATE(5155), 1, + sym__one_type, + STATE(5162), 1, + sym__multiple_types, + STATE(5165), 1, + sym__type_annotation, + ACTIONS(3892), 2, + anon_sym_table, + anon_sym_record, + STATE(2656), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3890), 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, + [23672] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2804), 1, + ACTIONS(2922), 1, sym__newline, - ACTIONS(3828), 1, + ACTIONS(3866), 1, anon_sym_DASH2, - ACTIONS(3832), 1, + ACTIONS(3878), 1, anon_sym_PLUS2, - ACTIONS(3840), 1, + ACTIONS(3882), 1, anon_sym_bit_DASHand2, - ACTIONS(3842), 1, + ACTIONS(3884), 1, anon_sym_bit_DASHxor2, - ACTIONS(3844), 1, + ACTIONS(3908), 1, anon_sym_bit_DASHor2, - ACTIONS(3846), 1, + ACTIONS(3918), 1, anon_sym_and2, - STATE(1591), 1, + ACTIONS(3922), 1, + anon_sym_xor2, + STATE(1574), 1, sym_comment, - STATE(1624), 1, + STATE(1606), 1, aux_sym__repeat_newline, - ACTIONS(3765), 2, + ACTIONS(3864), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3868), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3767), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3769), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3826), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3834), 2, + ACTIONS(3880), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3830), 4, + ACTIONS(3870), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3838), 4, + ACTIONS(3872), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3836), 8, + ACTIONS(3862), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -162224,7 +162137,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(2776), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162236,53 +162149,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, - [25331] = 18, + [23762] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3864), 1, + ACTIONS(2887), 1, + sym__newline, + ACTIONS(3866), 1, anon_sym_DASH2, - ACTIONS(3874), 1, + ACTIONS(3878), 1, anon_sym_PLUS2, - ACTIONS(3882), 1, - anon_sym_bit_DASHand2, - ACTIONS(3884), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3886), 1, - anon_sym_bit_DASHor2, - ACTIONS(3888), 1, - anon_sym_and2, - STATE(527), 1, + STATE(1530), 1, aux_sym__repeat_newline, - STATE(1592), 1, + STATE(1575), 1, sym_comment, - ACTIONS(3862), 2, + ACTIONS(3864), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3866), 2, + ACTIONS(3868), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3870), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3872), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3876), 2, + ACTIONS(3880), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3868), 4, + ACTIONS(3870), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3880), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3878), 8, + ACTIONS(3862), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -162291,8 +162192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2724), 14, - sym__newline, + ACTIONS(2776), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162304,57 +162204,181 @@ static 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, - [25417] = 20, + 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, + [23840] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3886), 1, + anon_sym_COLON, + ACTIONS(3888), 1, + anon_sym_LBRACK, + ACTIONS(3894), 1, + anon_sym_list, + ACTIONS(3896), 1, + anon_sym_oneof, + ACTIONS(3906), 1, + anon_sym_LBRACE, + STATE(1576), 1, + sym_comment, + STATE(4684), 1, + sym_block, + STATE(4934), 1, + sym_returns, + STATE(5155), 1, + sym__one_type, + STATE(5162), 1, + sym__multiple_types, + STATE(5165), 1, + sym__type_annotation, + ACTIONS(3892), 2, + anon_sym_table, + anon_sym_record, + STATE(2656), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3890), 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, + [23920] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2907), 1, + ACTIONS(2887), 1, sym__newline, - ACTIONS(3828), 1, + ACTIONS(3866), 1, anon_sym_DASH2, - ACTIONS(3832), 1, + ACTIONS(3878), 1, anon_sym_PLUS2, - ACTIONS(3840), 1, + STATE(1577), 1, + sym_comment, + STATE(1610), 1, + aux_sym__repeat_newline, + ACTIONS(2778), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3868), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3874), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3876), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2776), 35, + anon_sym_in, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_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_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, - ACTIONS(3842), 1, anon_sym_bit_DASHxor2, - ACTIONS(3844), 1, anon_sym_bit_DASHor2, - ACTIONS(3846), 1, - anon_sym_and2, - ACTIONS(3848), 1, - anon_sym_xor2, - STATE(1593), 1, + [23992] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2887), 1, + sym__newline, + ACTIONS(3866), 1, + anon_sym_DASH2, + ACTIONS(3878), 1, + anon_sym_PLUS2, + STATE(1578), 1, sym_comment, - STATE(1625), 1, + STATE(1612), 1, aux_sym__repeat_newline, - ACTIONS(3765), 2, + ACTIONS(3864), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3868), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3767), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3769), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3826), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3834), 2, + ACTIONS(3880), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3830), 4, + ACTIONS(3870), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3838), 4, + ACTIONS(3872), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3836), 8, + ACTIONS(3862), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -162363,7 +162387,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(2776), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162375,54 +162399,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [25507] = 19, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [24072] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3864), 1, + ACTIONS(2887), 1, + sym__newline, + ACTIONS(3866), 1, anon_sym_DASH2, - ACTIONS(3874), 1, + ACTIONS(3878), 1, anon_sym_PLUS2, ACTIONS(3882), 1, anon_sym_bit_DASHand2, - ACTIONS(3884), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3886), 1, - anon_sym_bit_DASHor2, - ACTIONS(3888), 1, - anon_sym_and2, - ACTIONS(3890), 1, - anon_sym_xor2, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(1594), 1, + STATE(1579), 1, sym_comment, - ACTIONS(3862), 2, + STATE(1614), 1, + aux_sym__repeat_newline, + ACTIONS(3864), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3866), 2, + ACTIONS(3868), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3870), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3872), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3876), 2, + ACTIONS(3880), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3868), 4, + ACTIONS(3870), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3880), 4, + ACTIONS(3872), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3878), 8, + ACTIONS(3862), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -162431,8 +162454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2724), 13, - sym__newline, + ACTIONS(2776), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162444,41 +162466,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [25595] = 14, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [24154] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2804), 1, + ACTIONS(2887), 1, sym__newline, - ACTIONS(3828), 1, + ACTIONS(3866), 1, anon_sym_DASH2, - ACTIONS(3832), 1, + ACTIONS(3878), 1, anon_sym_PLUS2, - STATE(1595), 1, + ACTIONS(3882), 1, + anon_sym_bit_DASHand2, + ACTIONS(3884), 1, + anon_sym_bit_DASHxor2, + STATE(1580), 1, sym_comment, - STATE(1626), 1, + STATE(1616), 1, aux_sym__repeat_newline, - ACTIONS(3765), 2, + ACTIONS(3864), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3868), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3767), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3769), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3826), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3834), 2, + ACTIONS(3880), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3830), 4, + ACTIONS(3870), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3836), 8, + ACTIONS(3872), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3862), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -162487,7 +162522,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), 21, + ACTIONS(2776), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162502,54 +162537,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25673] = 13, + [24238] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3864), 1, + ACTIONS(3848), 1, anon_sym_DASH2, - ACTIONS(3874), 1, + ACTIONS(3858), 1, anon_sym_PLUS2, - STATE(527), 1, + STATE(485), 1, aux_sym__repeat_newline, - STATE(1596), 1, + STATE(1581), 1, sym_comment, - ACTIONS(3862), 2, + ACTIONS(3846), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3866), 2, + ACTIONS(3850), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3870), 2, + ACTIONS(3854), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3872), 2, + ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3876), 2, + ACTIONS(3860), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3868), 4, + ACTIONS(3852), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3878), 8, + ACTIONS(2784), 30, 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(2724), 22, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -162565,6 +162586,13 @@ 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, @@ -162572,33 +162600,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25749] = 11, + [24312] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2804), 1, - sym__newline, - ACTIONS(3828), 1, + ACTIONS(3848), 1, anon_sym_DASH2, - ACTIONS(3832), 1, + ACTIONS(3858), 1, anon_sym_PLUS2, - STATE(1597), 1, - sym_comment, - STATE(1627), 1, + STATE(485), 1, aux_sym__repeat_newline, - ACTIONS(2722), 2, + STATE(1582), 1, + sym_comment, + ACTIONS(2786), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3765), 2, + ACTIONS(3850), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3767), 2, + ACTIONS(3854), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3769), 2, + ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2720), 35, + ACTIONS(3860), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2784), 34, anon_sym_in, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162628,35 +162658,30 @@ 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, - [25821] = 10, + [24384] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3864), 1, - anon_sym_DASH2, - ACTIONS(3874), 1, - anon_sym_PLUS2, - STATE(527), 1, + STATE(485), 1, aux_sym__repeat_newline, - STATE(1598), 1, + STATE(1583), 1, sym_comment, - ACTIONS(2726), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3866), 2, + ACTIONS(3850), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3870), 2, + ACTIONS(3854), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3872), 2, + ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2724), 36, + ACTIONS(2786), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2784), 37, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -162670,6 +162695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -162693,54 +162719,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25891] = 15, + [24450] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2804), 1, - sym__newline, - ACTIONS(3828), 1, - anon_sym_DASH2, - ACTIONS(3832), 1, - anon_sym_PLUS2, - STATE(1599), 1, - sym_comment, - STATE(1628), 1, + STATE(485), 1, aux_sym__repeat_newline, - ACTIONS(3765), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3767), 2, + STATE(1584), 1, + sym_comment, + ACTIONS(3854), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3769), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3826), 2, + ACTIONS(2786), 5, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(3834), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3830), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3838), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3836), 8, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2784), 39, 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(2720), 17, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162752,50 +162749,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [25971] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3864), 1, - anon_sym_DASH2, - ACTIONS(3874), 1, - anon_sym_PLUS2, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(1600), 1, - sym_comment, - ACTIONS(3862), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3866), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3870), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3872), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3876), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3868), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3880), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3878), 8, - anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -162803,130 +162760,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2724), 18, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [26049] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2804), 1, - sym__newline, - ACTIONS(3828), 1, - anon_sym_DASH2, - ACTIONS(3832), 1, - anon_sym_PLUS2, - ACTIONS(3840), 1, - anon_sym_bit_DASHand2, - STATE(1601), 1, - sym_comment, - STATE(1629), 1, - aux_sym__repeat_newline, - ACTIONS(3765), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3767), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3769), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3826), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3834), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3830), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3838), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3836), 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(2720), 16, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [26131] = 15, + [24512] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3864), 1, + ACTIONS(3848), 1, anon_sym_DASH2, - ACTIONS(3874), 1, + ACTIONS(3858), 1, anon_sym_PLUS2, - ACTIONS(3882), 1, + ACTIONS(3912), 1, anon_sym_bit_DASHand2, - STATE(527), 1, + ACTIONS(3914), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3916), 1, + anon_sym_bit_DASHor2, + STATE(485), 1, aux_sym__repeat_newline, - STATE(1602), 1, + STATE(1585), 1, sym_comment, - ACTIONS(3862), 2, + ACTIONS(3846), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3866), 2, + ACTIONS(3850), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3870), 2, + ACTIONS(3854), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3872), 2, + ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3876), 2, + ACTIONS(3860), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3868), 4, + ACTIONS(3852), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3880), 4, + ACTIONS(3910), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3878), 8, + ACTIONS(3844), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -162935,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(2724), 17, + ACTIONS(2784), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -162951,51 +162842,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [26211] = 17, + [24596] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2804), 1, - sym__newline, - ACTIONS(3828), 1, + ACTIONS(3848), 1, anon_sym_DASH2, - ACTIONS(3832), 1, + ACTIONS(3858), 1, anon_sym_PLUS2, - ACTIONS(3840), 1, + ACTIONS(3912), 1, anon_sym_bit_DASHand2, - ACTIONS(3842), 1, + ACTIONS(3914), 1, anon_sym_bit_DASHxor2, - STATE(1603), 1, - sym_comment, - STATE(1630), 1, + ACTIONS(3916), 1, + anon_sym_bit_DASHor2, + ACTIONS(3920), 1, + anon_sym_and2, + STATE(485), 1, aux_sym__repeat_newline, - ACTIONS(3765), 2, + STATE(1586), 1, + sym_comment, + ACTIONS(3846), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3850), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3767), 2, + ACTIONS(3854), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3769), 2, + ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3826), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3834), 2, + ACTIONS(3860), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3830), 4, + ACTIONS(3852), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3838), 4, + ACTIONS(3910), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3836), 8, + ACTIONS(3844), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -163004,7 +162895,8 @@ 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(2784), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -163016,51 +162908,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHor2, - [26295] = 16, + [24682] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3864), 1, + ACTIONS(3848), 1, anon_sym_DASH2, - ACTIONS(3874), 1, + ACTIONS(3858), 1, anon_sym_PLUS2, - ACTIONS(3882), 1, + ACTIONS(3912), 1, anon_sym_bit_DASHand2, - ACTIONS(3884), 1, + ACTIONS(3914), 1, anon_sym_bit_DASHxor2, - STATE(527), 1, + ACTIONS(3916), 1, + anon_sym_bit_DASHor2, + ACTIONS(3920), 1, + anon_sym_and2, + ACTIONS(3924), 1, + anon_sym_xor2, + STATE(485), 1, aux_sym__repeat_newline, - STATE(1604), 1, + STATE(1587), 1, sym_comment, - ACTIONS(3862), 2, + ACTIONS(3846), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3866), 2, + ACTIONS(3850), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3870), 2, + ACTIONS(3854), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3872), 2, + ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3876), 2, + ACTIONS(3860), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3868), 4, + ACTIONS(3852), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3880), 4, + ACTIONS(3910), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3878), 8, + ACTIONS(3844), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -163069,7 +162965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2724), 16, + ACTIONS(2784), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -163082,59 +162978,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHor2, - [26377] = 13, + [24770] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2831), 1, - sym__newline, - ACTIONS(3828), 1, + ACTIONS(3848), 1, anon_sym_DASH2, - ACTIONS(3832), 1, + ACTIONS(3858), 1, anon_sym_PLUS2, - STATE(1605), 1, - sym_comment, - STATE(1632), 1, + STATE(485), 1, aux_sym__repeat_newline, - ACTIONS(3765), 2, + STATE(1588), 1, + sym_comment, + ACTIONS(3846), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3850), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3767), 2, + ACTIONS(3854), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3769), 2, + ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3826), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3834), 2, + ACTIONS(3860), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3830), 4, + ACTIONS(3852), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2730), 29, + ACTIONS(3844), 8, anon_sym_in, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_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_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -163142,43 +163019,8 @@ 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_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [26453] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2831), 1, + ACTIONS(2784), 22, sym__newline, - ACTIONS(3828), 1, - anon_sym_DASH2, - ACTIONS(3832), 1, - anon_sym_PLUS2, - STATE(1606), 1, - sym_comment, - STATE(1634), 1, - aux_sym__repeat_newline, - ACTIONS(2732), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3765), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3767), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3769), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3834), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2730), 33, - anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -163193,17 +163035,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_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, @@ -163211,94 +163042,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [26527] = 18, - 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(3699), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3892), 1, - anon_sym_LBRACK, - ACTIONS(3894), 1, - anon_sym_DOLLAR, - ACTIONS(3896), 1, - anon_sym_LBRACE, - STATE(1607), 1, - sym_comment, - STATE(2013), 1, - sym__val_number_decimal, - ACTIONS(3659), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3661), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3695), 2, - anon_sym_export, - anon_sym_in, - STATE(3346), 2, - sym_cmd_identifier, - sym_val_string, - STATE(3256), 3, - sym_val_variable, - sym_val_list, - sym_val_record, - STATE(502), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3697), 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, - [26613] = 7, + [24846] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2831), 1, - sym__newline, - STATE(1608), 1, - sym_comment, - STATE(1638), 1, + ACTIONS(3848), 1, + anon_sym_DASH2, + ACTIONS(3858), 1, + anon_sym_PLUS2, + STATE(485), 1, aux_sym__repeat_newline, - ACTIONS(3767), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2732), 5, + STATE(1589), 1, + sym_comment, + ACTIONS(2786), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(3850), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2730), 38, + ACTIONS(3854), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3856), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2784), 36, anon_sym_in, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -163310,7 +163079,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_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -163329,123 +163097,48 @@ static const uint16_t ts_small_parse_table[] = { 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, - [26677] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3774), 1, - anon_sym_COLON, - ACTIONS(3776), 1, - anon_sym_LBRACK, - ACTIONS(3782), 1, - anon_sym_list, - ACTIONS(3784), 1, - anon_sym_oneof, - ACTIONS(3786), 1, - anon_sym_LBRACE, - STATE(1609), 1, - sym_comment, - STATE(4610), 1, - sym_block, - STATE(4862), 1, - sym_returns, - STATE(5053), 1, - sym__one_type, - STATE(5063), 1, - sym__multiple_types, - STATE(5066), 1, - sym__type_annotation, - ACTIONS(3780), 2, - anon_sym_table, - anon_sym_record, - STATE(2651), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3778), 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, - [26757] = 18, + [24916] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2831), 1, - sym__newline, - ACTIONS(3828), 1, + ACTIONS(3848), 1, anon_sym_DASH2, - ACTIONS(3832), 1, + ACTIONS(3858), 1, anon_sym_PLUS2, - ACTIONS(3840), 1, - anon_sym_bit_DASHand2, - ACTIONS(3842), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3844), 1, - anon_sym_bit_DASHor2, - STATE(1610), 1, - sym_comment, - STATE(1640), 1, + STATE(485), 1, aux_sym__repeat_newline, - ACTIONS(3765), 2, + STATE(1590), 1, + sym_comment, + ACTIONS(3846), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3850), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3767), 2, + ACTIONS(3854), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3769), 2, + ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3826), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3834), 2, + ACTIONS(3860), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3830), 4, + ACTIONS(3852), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3838), 4, + ACTIONS(3910), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3836), 8, + ACTIONS(3844), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -163454,7 +163147,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2730), 14, + ACTIONS(2784), 18, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -163469,53 +163163,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [26843] = 19, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [24994] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2831), 1, - sym__newline, - ACTIONS(3828), 1, + ACTIONS(3848), 1, anon_sym_DASH2, - ACTIONS(3832), 1, + ACTIONS(3858), 1, anon_sym_PLUS2, - ACTIONS(3840), 1, + ACTIONS(3912), 1, anon_sym_bit_DASHand2, - ACTIONS(3842), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3844), 1, - anon_sym_bit_DASHor2, - ACTIONS(3846), 1, - anon_sym_and2, - STATE(1611), 1, - sym_comment, - STATE(1642), 1, + STATE(485), 1, aux_sym__repeat_newline, - ACTIONS(3765), 2, + STATE(1591), 1, + sym_comment, + ACTIONS(3846), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3850), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3767), 2, + ACTIONS(3854), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3769), 2, + ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3826), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3834), 2, + ACTIONS(3860), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3830), 4, + ACTIONS(3852), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3838), 4, + ACTIONS(3910), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3836), 8, + ACTIONS(3844), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -163524,7 +163213,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2730), 13, + ACTIONS(2784), 17, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -163536,57 +163226,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [26931] = 20, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [25074] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2907), 1, - sym__newline, - ACTIONS(3828), 1, + ACTIONS(3848), 1, anon_sym_DASH2, - ACTIONS(3832), 1, + ACTIONS(3858), 1, anon_sym_PLUS2, - ACTIONS(3840), 1, + ACTIONS(3912), 1, anon_sym_bit_DASHand2, - ACTIONS(3842), 1, + ACTIONS(3914), 1, anon_sym_bit_DASHxor2, - ACTIONS(3844), 1, - anon_sym_bit_DASHor2, - ACTIONS(3846), 1, - anon_sym_and2, - ACTIONS(3848), 1, - anon_sym_xor2, - STATE(1612), 1, - sym_comment, - STATE(1644), 1, + STATE(485), 1, aux_sym__repeat_newline, - ACTIONS(3765), 2, + STATE(1592), 1, + sym_comment, + ACTIONS(3846), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3850), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3767), 2, + ACTIONS(3854), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3769), 2, + ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3826), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3834), 2, + ACTIONS(3860), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3830), 4, + ACTIONS(3852), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3838), 4, + ACTIONS(3910), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3836), 8, + ACTIONS(3844), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -163595,7 +163280,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2730), 12, + ACTIONS(2784), 16, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -163607,50 +163293,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [27021] = 14, + anon_sym_bit_DASHor2, + [25156] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2831), 1, + ACTIONS(2869), 1, sym__newline, - ACTIONS(3828), 1, + ACTIONS(3866), 1, anon_sym_DASH2, - ACTIONS(3832), 1, + ACTIONS(3878), 1, anon_sym_PLUS2, - STATE(1613), 1, + STATE(1593), 1, sym_comment, - STATE(1646), 1, + STATE(1619), 1, aux_sym__repeat_newline, - ACTIONS(3765), 2, + ACTIONS(3864), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3868), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3767), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3769), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3826), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3834), 2, + ACTIONS(3880), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3830), 4, + ACTIONS(3870), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3836), 8, + ACTIONS(2806), 29, 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(2730), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -163665,6 +163346,13 @@ 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, @@ -163672,33 +163360,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [27099] = 11, + [25232] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2831), 1, - sym__newline, - ACTIONS(3828), 1, + ACTIONS(3848), 1, anon_sym_DASH2, - ACTIONS(3832), 1, + ACTIONS(3858), 1, anon_sym_PLUS2, - STATE(1614), 1, - sym_comment, - STATE(1648), 1, + STATE(485), 1, aux_sym__repeat_newline, - ACTIONS(2732), 2, + STATE(1594), 1, + sym_comment, + ACTIONS(3846), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3765), 2, + ACTIONS(3850), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3767), 2, + ACTIONS(3854), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3769), 2, + ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2730), 35, + ACTIONS(3860), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3852), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2810), 30, anon_sym_in, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -163720,67 +163415,43 @@ 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, - [27171] = 15, + [25306] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2831), 1, + ACTIONS(2869), 1, sym__newline, - ACTIONS(3828), 1, + ACTIONS(3866), 1, anon_sym_DASH2, - ACTIONS(3832), 1, + ACTIONS(3878), 1, anon_sym_PLUS2, - STATE(1615), 1, + STATE(1595), 1, sym_comment, - STATE(1650), 1, + STATE(1620), 1, aux_sym__repeat_newline, - ACTIONS(3765), 2, + ACTIONS(2808), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3868), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3767), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3769), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3826), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3834), 2, + ACTIONS(3880), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3830), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3838), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3836), 8, + ACTIONS(2806), 33, 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(2730), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -163795,127 +163466,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [27251] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2831), 1, - sym__newline, - ACTIONS(3828), 1, - anon_sym_DASH2, - ACTIONS(3832), 1, - anon_sym_PLUS2, - ACTIONS(3840), 1, - anon_sym_bit_DASHand2, - STATE(1616), 1, - sym_comment, - STATE(1652), 1, - aux_sym__repeat_newline, - ACTIONS(3765), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3767), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3769), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3826), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3834), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3830), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3838), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3836), 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(2730), 16, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_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, - [27333] = 17, + [25380] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2831), 1, - sym__newline, - ACTIONS(3828), 1, + ACTIONS(3848), 1, anon_sym_DASH2, - ACTIONS(3832), 1, + ACTIONS(3858), 1, anon_sym_PLUS2, - ACTIONS(3840), 1, - anon_sym_bit_DASHand2, - ACTIONS(3842), 1, - anon_sym_bit_DASHxor2, - STATE(1617), 1, - sym_comment, - STATE(1654), 1, + STATE(485), 1, aux_sym__repeat_newline, - ACTIONS(3765), 2, + STATE(1596), 1, + sym_comment, + ACTIONS(2812), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3850), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3767), 2, + ACTIONS(3854), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3769), 2, + ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3826), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3834), 2, + ACTIONS(3860), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3830), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3838), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3836), 8, + ACTIONS(2810), 34, 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(2730), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -163930,112 +163527,48 @@ 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_DASHand2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [27417] = 21, + [25452] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1422), 1, - anon_sym_DQUOTE, - ACTIONS(1424), 1, - anon_sym_SQUOTE, - ACTIONS(1426), 1, - anon_sym_BQUOTE, - ACTIONS(1436), 1, - sym_raw_string_begin, - ACTIONS(3814), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3816), 1, + ACTIONS(2869), 1, sym__newline, - ACTIONS(3898), 1, - anon_sym_RBRACK, - STATE(1618), 1, + STATE(1597), 1, sym_comment, - STATE(1710), 1, - aux_sym__types_body_repeat1, - STATE(1789), 1, - aux_sym__command_list_body_repeat1, - STATE(2138), 1, - sym__val_number_decimal, - STATE(4636), 1, - sym__command_name, - STATE(4851), 1, - sym_cmd_identifier, - STATE(4852), 1, - sym_val_string, - STATE(5122), 1, - sym__command_list_body, - ACTIONS(3659), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3661), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3810), 2, - anon_sym_export, - anon_sym_in, - STATE(3665), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3812), 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, - [27509] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3864), 1, - anon_sym_DASH2, - ACTIONS(3874), 1, - anon_sym_PLUS2, - STATE(527), 1, + STATE(1621), 1, aux_sym__repeat_newline, - STATE(1619), 1, - sym_comment, - ACTIONS(3862), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3866), 2, + ACTIONS(3868), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3870), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3872), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3876), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3868), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2738), 30, + ACTIONS(2808), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2806), 36, anon_sym_in, - sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -164047,6 +163580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -164057,40 +163591,40 @@ 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, - [27583] = 11, + [25520] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3864), 1, - anon_sym_DASH2, - ACTIONS(3874), 1, - anon_sym_PLUS2, - STATE(527), 1, + STATE(485), 1, aux_sym__repeat_newline, - STATE(1620), 1, + STATE(1598), 1, sym_comment, - ACTIONS(2740), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3866), 2, + ACTIONS(3850), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3870), 2, + ACTIONS(3854), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3872), 2, + ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3876), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2738), 34, + ACTIONS(2812), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2810), 37, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -164104,6 +163638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -164122,32 +163657,31 @@ 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, - [27655] = 8, + [25586] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(1621), 1, + ACTIONS(2869), 1, + sym__newline, + STATE(1599), 1, sym_comment, - ACTIONS(3866), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3870), 2, + STATE(1622), 1, + aux_sym__repeat_newline, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3872), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2740), 3, + ACTIONS(2808), 5, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2738), 37, + ACTIONS(2806), 38, anon_sym_in, - sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -164178,28 +163712,30 @@ static const uint16_t ts_small_parse_table[] = { 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, - [27721] = 6, + [25650] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(527), 1, + STATE(485), 1, aux_sym__repeat_newline, - STATE(1622), 1, + STATE(1600), 1, sym_comment, - ACTIONS(3870), 2, + ACTIONS(3854), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2740), 5, + ACTIONS(2812), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2738), 39, + ACTIONS(2810), 39, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -164239,49 +163775,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [27783] = 17, + [25712] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3864), 1, + ACTIONS(2869), 1, + sym__newline, + ACTIONS(3866), 1, anon_sym_DASH2, - ACTIONS(3874), 1, + ACTIONS(3878), 1, anon_sym_PLUS2, ACTIONS(3882), 1, anon_sym_bit_DASHand2, ACTIONS(3884), 1, anon_sym_bit_DASHxor2, - ACTIONS(3886), 1, + ACTIONS(3908), 1, anon_sym_bit_DASHor2, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(1623), 1, + STATE(1601), 1, sym_comment, - ACTIONS(3862), 2, + STATE(1623), 1, + aux_sym__repeat_newline, + ACTIONS(3864), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3866), 2, + ACTIONS(3868), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3870), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3872), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3876), 2, + ACTIONS(3880), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3868), 4, + ACTIONS(3870), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3880), 4, + ACTIONS(3872), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3878), 8, + ACTIONS(3862), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -164290,8 +163828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2738), 15, - sym__newline, + ACTIONS(2806), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -164306,51 +163843,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [27867] = 18, + [25798] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3864), 1, + ACTIONS(3848), 1, anon_sym_DASH2, - ACTIONS(3874), 1, + ACTIONS(3858), 1, anon_sym_PLUS2, - ACTIONS(3882), 1, + ACTIONS(3912), 1, anon_sym_bit_DASHand2, - ACTIONS(3884), 1, + ACTIONS(3914), 1, anon_sym_bit_DASHxor2, - ACTIONS(3886), 1, + ACTIONS(3916), 1, anon_sym_bit_DASHor2, - ACTIONS(3888), 1, - anon_sym_and2, - STATE(527), 1, + STATE(485), 1, aux_sym__repeat_newline, - STATE(1624), 1, + STATE(1602), 1, sym_comment, - ACTIONS(3862), 2, + ACTIONS(3846), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3866), 2, + ACTIONS(3850), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3870), 2, + ACTIONS(3854), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3872), 2, + ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3876), 2, + ACTIONS(3860), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3868), 4, + ACTIONS(3852), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3880), 4, + ACTIONS(3910), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3878), 8, + ACTIONS(3844), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -164359,7 +163894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2738), 14, + ACTIONS(2810), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -164372,55 +163907,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [27953] = 19, + [25882] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3864), 1, + ACTIONS(2869), 1, + sym__newline, + ACTIONS(3866), 1, anon_sym_DASH2, - ACTIONS(3874), 1, + ACTIONS(3878), 1, anon_sym_PLUS2, ACTIONS(3882), 1, anon_sym_bit_DASHand2, ACTIONS(3884), 1, anon_sym_bit_DASHxor2, - ACTIONS(3886), 1, + ACTIONS(3908), 1, anon_sym_bit_DASHor2, - ACTIONS(3888), 1, + ACTIONS(3918), 1, anon_sym_and2, - ACTIONS(3890), 1, - anon_sym_xor2, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(1625), 1, + STATE(1603), 1, sym_comment, - ACTIONS(3862), 2, + STATE(1624), 1, + aux_sym__repeat_newline, + ACTIONS(3864), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3866), 2, + ACTIONS(3868), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3870), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3872), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3876), 2, + ACTIONS(3880), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3868), 4, + ACTIONS(3870), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3880), 4, + ACTIONS(3872), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3878), 8, + ACTIONS(3862), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -164429,8 +163965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2738), 13, - sym__newline, + ACTIONS(2806), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -164442,39 +163977,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_xor2, anon_sym_or2, - [28041] = 13, + [25970] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3864), 1, + ACTIONS(3848), 1, anon_sym_DASH2, - ACTIONS(3874), 1, + ACTIONS(3858), 1, anon_sym_PLUS2, - STATE(527), 1, + ACTIONS(3912), 1, + anon_sym_bit_DASHand2, + ACTIONS(3914), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3916), 1, + anon_sym_bit_DASHor2, + ACTIONS(3920), 1, + anon_sym_and2, + STATE(485), 1, aux_sym__repeat_newline, - STATE(1626), 1, + STATE(1604), 1, sym_comment, - ACTIONS(3862), 2, + ACTIONS(3846), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3866), 2, + ACTIONS(3850), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3870), 2, + ACTIONS(3854), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3872), 2, + ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3876), 2, + ACTIONS(3860), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3868), 4, + ACTIONS(3852), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3878), 8, + ACTIONS(3910), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3844), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -164483,7 +164032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2738), 22, + ACTIONS(2810), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -164496,113 +164045,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_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, - [28117] = 10, + [26056] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3864), 1, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(3866), 1, anon_sym_DASH2, - ACTIONS(3874), 1, + ACTIONS(3878), 1, anon_sym_PLUS2, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(1627), 1, - sym_comment, - ACTIONS(2740), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3866), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3870), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3872), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2738), 36, - 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_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, + ACTIONS(3882), 1, anon_sym_bit_DASHand2, + ACTIONS(3884), 1, anon_sym_bit_DASHxor2, + ACTIONS(3908), 1, anon_sym_bit_DASHor2, - [28187] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3864), 1, - anon_sym_DASH2, - ACTIONS(3874), 1, - anon_sym_PLUS2, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(1628), 1, + ACTIONS(3918), 1, + anon_sym_and2, + ACTIONS(3922), 1, + anon_sym_xor2, + STATE(1605), 1, sym_comment, - ACTIONS(3862), 2, + STATE(1625), 1, + aux_sym__repeat_newline, + ACTIONS(3864), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3866), 2, + ACTIONS(3868), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3870), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3872), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3876), 2, + ACTIONS(3880), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3868), 4, + ACTIONS(3870), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3880), 4, + ACTIONS(3872), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3878), 8, + ACTIONS(3862), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -164611,8 +164104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2738), 18, - sym__newline, + ACTIONS(2806), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -164624,51 +164116,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [28265] = 15, + [26146] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3864), 1, + ACTIONS(3848), 1, anon_sym_DASH2, - ACTIONS(3874), 1, + ACTIONS(3858), 1, anon_sym_PLUS2, - ACTIONS(3882), 1, + ACTIONS(3912), 1, anon_sym_bit_DASHand2, - STATE(527), 1, + ACTIONS(3914), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3916), 1, + anon_sym_bit_DASHor2, + ACTIONS(3920), 1, + anon_sym_and2, + ACTIONS(3924), 1, + anon_sym_xor2, + STATE(485), 1, aux_sym__repeat_newline, - STATE(1629), 1, + STATE(1606), 1, sym_comment, - ACTIONS(3862), 2, + ACTIONS(3846), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3866), 2, + ACTIONS(3850), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3870), 2, + ACTIONS(3854), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3872), 2, + ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3876), 2, + ACTIONS(3860), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3868), 4, + ACTIONS(3852), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3880), 4, + ACTIONS(3910), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3878), 8, + ACTIONS(3844), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -164677,7 +164172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2738), 17, + ACTIONS(2810), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -164690,52 +164185,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_and2, - anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [28345] = 16, + [26234] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3864), 1, + ACTIONS(2869), 1, + sym__newline, + ACTIONS(3866), 1, anon_sym_DASH2, - ACTIONS(3874), 1, + ACTIONS(3878), 1, anon_sym_PLUS2, - ACTIONS(3882), 1, - anon_sym_bit_DASHand2, - ACTIONS(3884), 1, - anon_sym_bit_DASHxor2, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(1630), 1, + STATE(1607), 1, sym_comment, - ACTIONS(3862), 2, + STATE(1626), 1, + aux_sym__repeat_newline, + ACTIONS(3864), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3866), 2, + ACTIONS(3868), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3870), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3872), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3876), 2, + ACTIONS(3880), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3868), 4, + ACTIONS(3870), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3880), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3878), 8, + ACTIONS(3862), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -164744,8 +164228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2738), 16, - sym__newline, + ACTIONS(2806), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -164760,41 +164243,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [28427] = 13, + [26312] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3886), 1, + anon_sym_COLON, + ACTIONS(3888), 1, + anon_sym_LBRACK, + ACTIONS(3894), 1, + anon_sym_list, + ACTIONS(3896), 1, + anon_sym_oneof, + ACTIONS(3898), 1, + anon_sym_LBRACE, + STATE(1608), 1, + sym_comment, + STATE(4435), 1, + sym_block, + STATE(4974), 1, + sym_returns, + STATE(5155), 1, + sym__one_type, + STATE(5162), 1, + sym__multiple_types, + STATE(5165), 1, + sym__type_annotation, + ACTIONS(3892), 2, + anon_sym_table, + anon_sym_record, + STATE(2656), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3890), 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, + [26392] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2941), 1, + ACTIONS(2869), 1, sym__newline, - ACTIONS(3828), 1, + ACTIONS(3866), 1, anon_sym_DASH2, - ACTIONS(3832), 1, + ACTIONS(3878), 1, anon_sym_PLUS2, - STATE(1631), 1, + STATE(1609), 1, sym_comment, - STATE(1655), 1, + STATE(1627), 1, aux_sym__repeat_newline, - ACTIONS(3765), 2, + ACTIONS(2808), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3868), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3767), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3769), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3826), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3834), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3830), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2746), 29, + ACTIONS(2806), 35, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -164817,45 +164363,43 @@ 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, - [28503] = 12, + [26464] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3864), 1, + ACTIONS(3848), 1, anon_sym_DASH2, - ACTIONS(3874), 1, + ACTIONS(3858), 1, anon_sym_PLUS2, - STATE(527), 1, + STATE(485), 1, aux_sym__repeat_newline, - STATE(1632), 1, + STATE(1610), 1, sym_comment, - ACTIONS(3862), 2, + ACTIONS(2812), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3866), 2, + ACTIONS(3850), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3870), 2, + ACTIONS(3854), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3872), 2, + ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3876), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3868), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2750), 30, + ACTIONS(2810), 36, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -164879,43 +164423,67 @@ 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, - [28577] = 12, + [26534] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2941), 1, + ACTIONS(2869), 1, sym__newline, - ACTIONS(3828), 1, + ACTIONS(3866), 1, anon_sym_DASH2, - ACTIONS(3832), 1, + ACTIONS(3878), 1, anon_sym_PLUS2, - STATE(1633), 1, + STATE(1611), 1, sym_comment, - STATE(1656), 1, + STATE(1628), 1, aux_sym__repeat_newline, - ACTIONS(2748), 2, + ACTIONS(3864), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3765), 2, + ACTIONS(3868), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3767), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3769), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3834), 2, + ACTIONS(3880), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2746), 33, + ACTIONS(3870), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3872), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3862), 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(2806), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -164930,52 +164498,55 @@ 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_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [28651] = 11, + [26614] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3864), 1, + ACTIONS(3848), 1, anon_sym_DASH2, - ACTIONS(3874), 1, + ACTIONS(3858), 1, anon_sym_PLUS2, - STATE(527), 1, + STATE(485), 1, aux_sym__repeat_newline, - STATE(1634), 1, + STATE(1612), 1, sym_comment, - ACTIONS(2752), 2, + ACTIONS(3846), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3866), 2, + ACTIONS(3850), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3870), 2, + ACTIONS(3854), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3872), 2, + ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3876), 2, + ACTIONS(3860), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2750), 34, + ACTIONS(3852), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3910), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3844), 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(2810), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -164991,48 +164562,59 @@ 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_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [28723] = 9, + [26692] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2941), 1, + ACTIONS(2869), 1, sym__newline, - STATE(1635), 1, + ACTIONS(3866), 1, + anon_sym_DASH2, + ACTIONS(3878), 1, + anon_sym_PLUS2, + ACTIONS(3882), 1, + anon_sym_bit_DASHand2, + STATE(1613), 1, sym_comment, - STATE(1657), 1, + STATE(1629), 1, aux_sym__repeat_newline, - ACTIONS(3765), 2, + ACTIONS(3864), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3868), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3767), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3769), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2748), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2746), 36, + ACTIONS(3880), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3870), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3872), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3862), 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(2806), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -165044,123 +164626,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_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, - [28791] = 8, + [26774] = 15, ACTIONS(3), 1, anon_sym_POUND, - STATE(527), 1, + ACTIONS(3848), 1, + anon_sym_DASH2, + ACTIONS(3858), 1, + anon_sym_PLUS2, + ACTIONS(3912), 1, + anon_sym_bit_DASHand2, + STATE(485), 1, aux_sym__repeat_newline, - STATE(1636), 1, + STATE(1614), 1, sym_comment, - ACTIONS(3866), 2, + ACTIONS(3846), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3850), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3870), 2, + ACTIONS(3854), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3872), 2, + ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2752), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2750), 37, - 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_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(3860), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3852), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(3910), 4, 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, - [28857] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2941), 1, - sym__newline, - STATE(1637), 1, - sym_comment, - STATE(1658), 1, - aux_sym__repeat_newline, - ACTIONS(3767), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2748), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2746), 38, + ACTIONS(3844), 8, anon_sym_in, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_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_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -165168,39 +164678,7 @@ 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_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [28921] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(1638), 1, - sym_comment, - ACTIONS(3870), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2752), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2750), 39, - anon_sym_in, + ACTIONS(2810), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -165213,77 +164691,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_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_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [28983] = 18, + [26854] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2941), 1, + ACTIONS(2869), 1, sym__newline, - ACTIONS(3828), 1, + ACTIONS(3866), 1, anon_sym_DASH2, - ACTIONS(3832), 1, + ACTIONS(3878), 1, anon_sym_PLUS2, - ACTIONS(3840), 1, + ACTIONS(3882), 1, anon_sym_bit_DASHand2, - ACTIONS(3842), 1, + ACTIONS(3884), 1, anon_sym_bit_DASHxor2, - ACTIONS(3844), 1, - anon_sym_bit_DASHor2, - STATE(1639), 1, + STATE(1615), 1, sym_comment, - STATE(1659), 1, + STATE(1630), 1, aux_sym__repeat_newline, - ACTIONS(3765), 2, + ACTIONS(3864), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3868), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3767), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3769), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3826), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3834), 2, + ACTIONS(3880), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3830), 4, + ACTIONS(3870), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3838), 4, + ACTIONS(3872), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3836), 8, + ACTIONS(3862), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165292,7 +164747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2746), 14, + ACTIONS(2806), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -165307,49 +164762,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [29069] = 17, + anon_sym_bit_DASHor2, + [26938] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3864), 1, + ACTIONS(3848), 1, anon_sym_DASH2, - ACTIONS(3874), 1, + ACTIONS(3858), 1, anon_sym_PLUS2, - ACTIONS(3882), 1, + ACTIONS(3912), 1, anon_sym_bit_DASHand2, - ACTIONS(3884), 1, + ACTIONS(3914), 1, anon_sym_bit_DASHxor2, - ACTIONS(3886), 1, - anon_sym_bit_DASHor2, - STATE(527), 1, + STATE(485), 1, aux_sym__repeat_newline, - STATE(1640), 1, + STATE(1616), 1, sym_comment, - ACTIONS(3862), 2, + ACTIONS(3846), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3866), 2, + ACTIONS(3850), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3870), 2, + ACTIONS(3854), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3872), 2, + ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3876), 2, + ACTIONS(3860), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3868), 4, + ACTIONS(3852), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3880), 4, + ACTIONS(3910), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3878), 8, + ACTIONS(3844), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165358,7 +164812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2750), 15, + ACTIONS(2810), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -165374,62 +164828,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [29153] = 19, + anon_sym_bit_DASHor2, + [27020] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2941), 1, - sym__newline, - ACTIONS(3828), 1, + ACTIONS(3886), 1, + anon_sym_COLON, + ACTIONS(3888), 1, + anon_sym_LBRACK, + ACTIONS(3894), 1, + anon_sym_list, + ACTIONS(3896), 1, + anon_sym_oneof, + ACTIONS(3898), 1, + anon_sym_LBRACE, + STATE(1617), 1, + sym_comment, + STATE(4527), 1, + sym_block, + STATE(4923), 1, + sym_returns, + STATE(5155), 1, + sym__one_type, + STATE(5162), 1, + sym__multiple_types, + STATE(5165), 1, + sym__type_annotation, + ACTIONS(3892), 2, + anon_sym_table, + anon_sym_record, + STATE(2656), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3890), 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, + [27100] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3886), 1, + anon_sym_COLON, + ACTIONS(3888), 1, + anon_sym_LBRACK, + ACTIONS(3894), 1, + anon_sym_list, + ACTIONS(3896), 1, + anon_sym_oneof, + ACTIONS(3906), 1, + anon_sym_LBRACE, + STATE(1618), 1, + sym_comment, + STATE(4688), 1, + sym_block, + STATE(4936), 1, + sym_returns, + STATE(5155), 1, + sym__one_type, + STATE(5162), 1, + sym__multiple_types, + STATE(5165), 1, + sym__type_annotation, + ACTIONS(3892), 2, + anon_sym_table, + anon_sym_record, + STATE(2656), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3890), 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, + [27180] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3848), 1, anon_sym_DASH2, - ACTIONS(3832), 1, + ACTIONS(3858), 1, anon_sym_PLUS2, - ACTIONS(3840), 1, - anon_sym_bit_DASHand2, - ACTIONS(3842), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3844), 1, - anon_sym_bit_DASHor2, - ACTIONS(3846), 1, - anon_sym_and2, - STATE(1641), 1, - sym_comment, - STATE(1660), 1, + STATE(485), 1, aux_sym__repeat_newline, - ACTIONS(3765), 2, + STATE(1619), 1, + sym_comment, + ACTIONS(3846), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3850), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3767), 2, + ACTIONS(3854), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3769), 2, + ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3826), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3834), 2, + ACTIONS(3860), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3830), 4, + ACTIONS(3852), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3838), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3836), 8, + ACTIONS(2818), 30, 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(2746), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -165441,54 +165004,122 @@ static 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, - [29241] = 18, + 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, + [27254] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3864), 1, + ACTIONS(3848), 1, anon_sym_DASH2, - ACTIONS(3874), 1, + ACTIONS(3858), 1, anon_sym_PLUS2, - ACTIONS(3882), 1, - anon_sym_bit_DASHand2, - ACTIONS(3884), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3886), 1, - anon_sym_bit_DASHor2, - ACTIONS(3888), 1, - anon_sym_and2, - STATE(527), 1, + STATE(485), 1, aux_sym__repeat_newline, - STATE(1642), 1, + STATE(1620), 1, sym_comment, - ACTIONS(3862), 2, + ACTIONS(2820), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3866), 2, + ACTIONS(3850), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3870), 2, + ACTIONS(3854), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3872), 2, + ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3876), 2, + ACTIONS(3860), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3868), 4, + ACTIONS(2818), 34, + 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_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, - ACTIONS(3880), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3878), 8, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [27326] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(1621), 1, + sym_comment, + ACTIONS(3850), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3854), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3856), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2820), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2818), 37, 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_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -165496,7 +165127,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2750), 14, + anon_sym_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, + [27392] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(1622), 1, + sym_comment, + ACTIONS(3854), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2820), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2818), 39, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -165509,57 +165170,75 @@ static 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_and2, anon_sym_xor2, anon_sym_or2, - [29327] = 20, + 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, + [27454] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2907), 1, - sym__newline, - ACTIONS(3828), 1, + ACTIONS(3848), 1, anon_sym_DASH2, - ACTIONS(3832), 1, + ACTIONS(3858), 1, anon_sym_PLUS2, - ACTIONS(3840), 1, + ACTIONS(3912), 1, anon_sym_bit_DASHand2, - ACTIONS(3842), 1, + ACTIONS(3914), 1, anon_sym_bit_DASHxor2, - ACTIONS(3844), 1, + ACTIONS(3916), 1, anon_sym_bit_DASHor2, - ACTIONS(3846), 1, - anon_sym_and2, - ACTIONS(3848), 1, - anon_sym_xor2, - STATE(1643), 1, - sym_comment, - STATE(1661), 1, + STATE(485), 1, aux_sym__repeat_newline, - ACTIONS(3765), 2, + STATE(1623), 1, + sym_comment, + ACTIONS(3846), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3850), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3767), 2, + ACTIONS(3854), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3769), 2, + ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3826), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3834), 2, + ACTIONS(3860), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3830), 4, + ACTIONS(3852), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3838), 4, + ACTIONS(3910), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3836), 8, + ACTIONS(3844), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165568,7 +165247,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2746), 12, + ACTIONS(2818), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -165580,54 +165260,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [29417] = 19, + [27538] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3864), 1, + ACTIONS(3848), 1, anon_sym_DASH2, - ACTIONS(3874), 1, + ACTIONS(3858), 1, anon_sym_PLUS2, - ACTIONS(3882), 1, + ACTIONS(3912), 1, anon_sym_bit_DASHand2, - ACTIONS(3884), 1, + ACTIONS(3914), 1, anon_sym_bit_DASHxor2, - ACTIONS(3886), 1, + ACTIONS(3916), 1, anon_sym_bit_DASHor2, - ACTIONS(3888), 1, + ACTIONS(3920), 1, anon_sym_and2, - ACTIONS(3890), 1, - anon_sym_xor2, - STATE(527), 1, + STATE(485), 1, aux_sym__repeat_newline, - STATE(1644), 1, + STATE(1624), 1, sym_comment, - ACTIONS(3862), 2, + ACTIONS(3846), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3866), 2, + ACTIONS(3850), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3870), 2, + ACTIONS(3854), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3872), 2, + ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3876), 2, + ACTIONS(3860), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3868), 4, + ACTIONS(3852), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3880), 4, + ACTIONS(3910), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3878), 8, + ACTIONS(3844), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165636,7 +165316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2750), 13, + ACTIONS(2818), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -165649,41 +165329,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_xor2, anon_sym_or2, - [29505] = 14, + [27624] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2941), 1, - sym__newline, - ACTIONS(3828), 1, + ACTIONS(3848), 1, anon_sym_DASH2, - ACTIONS(3832), 1, + ACTIONS(3858), 1, anon_sym_PLUS2, - STATE(1645), 1, - sym_comment, - STATE(1662), 1, + ACTIONS(3912), 1, + anon_sym_bit_DASHand2, + ACTIONS(3914), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3916), 1, + anon_sym_bit_DASHor2, + ACTIONS(3920), 1, + anon_sym_and2, + ACTIONS(3924), 1, + anon_sym_xor2, + STATE(485), 1, aux_sym__repeat_newline, - ACTIONS(3765), 2, + STATE(1625), 1, + sym_comment, + ACTIONS(3846), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3850), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3767), 2, + ACTIONS(3854), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3769), 2, + ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3826), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3834), 2, + ACTIONS(3860), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3830), 4, + ACTIONS(3852), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3836), 8, + ACTIONS(3910), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3844), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165692,7 +165386,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2746), 21, + ACTIONS(2818), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -165704,48 +165399,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_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, - [29583] = 13, + [27712] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3864), 1, + ACTIONS(3848), 1, anon_sym_DASH2, - ACTIONS(3874), 1, + ACTIONS(3858), 1, anon_sym_PLUS2, - STATE(527), 1, + STATE(485), 1, aux_sym__repeat_newline, - STATE(1646), 1, + STATE(1626), 1, sym_comment, - ACTIONS(3862), 2, + ACTIONS(3846), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3866), 2, + ACTIONS(3850), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3870), 2, + ACTIONS(3854), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3872), 2, + ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3876), 2, + ACTIONS(3860), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3868), 4, + ACTIONS(3852), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3878), 8, + ACTIONS(3844), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165754,7 +165440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2750), 22, + ACTIONS(2818), 22, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -165777,33 +165463,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [29659] = 11, + [27788] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2941), 1, - sym__newline, - ACTIONS(3828), 1, + ACTIONS(3848), 1, anon_sym_DASH2, - ACTIONS(3832), 1, + ACTIONS(3858), 1, anon_sym_PLUS2, - STATE(1647), 1, - sym_comment, - STATE(1663), 1, + STATE(485), 1, aux_sym__repeat_newline, - ACTIONS(2748), 2, + STATE(1627), 1, + sym_comment, + ACTIONS(2820), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3765), 2, + ACTIONS(3850), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3767), 2, + ACTIONS(3854), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3769), 2, + ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2746), 35, + ACTIONS(2818), 36, anon_sym_in, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -165838,105 +165523,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [29731] = 10, + [27858] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3864), 1, + ACTIONS(3848), 1, anon_sym_DASH2, - ACTIONS(3874), 1, + ACTIONS(3858), 1, anon_sym_PLUS2, - STATE(527), 1, + STATE(485), 1, aux_sym__repeat_newline, - STATE(1648), 1, + STATE(1628), 1, sym_comment, - ACTIONS(2752), 2, + ACTIONS(3846), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3866), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3870), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3872), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2750), 36, - 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_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, - [29801] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2941), 1, - sym__newline, - ACTIONS(3828), 1, - anon_sym_DASH2, - ACTIONS(3832), 1, - anon_sym_PLUS2, - STATE(1649), 1, - sym_comment, - STATE(1664), 1, - aux_sym__repeat_newline, - ACTIONS(3765), 2, + ACTIONS(3850), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3767), 2, + ACTIONS(3854), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3769), 2, + ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3826), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3834), 2, + ACTIONS(3860), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3830), 4, + ACTIONS(3852), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3838), 4, + ACTIONS(3910), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3836), 8, + ACTIONS(3844), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165945,7 +165568,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2746), 17, + ACTIONS(2818), 18, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -165963,43 +165587,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [29881] = 14, + [27936] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3864), 1, + ACTIONS(3848), 1, anon_sym_DASH2, - ACTIONS(3874), 1, + ACTIONS(3858), 1, anon_sym_PLUS2, - STATE(527), 1, + ACTIONS(3912), 1, + anon_sym_bit_DASHand2, + STATE(485), 1, aux_sym__repeat_newline, - STATE(1650), 1, + STATE(1629), 1, sym_comment, - ACTIONS(3862), 2, + ACTIONS(3846), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3866), 2, + ACTIONS(3850), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3870), 2, + ACTIONS(3854), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3872), 2, + ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3876), 2, + ACTIONS(3860), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3868), 4, + ACTIONS(3852), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3880), 4, + ACTIONS(3910), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3878), 8, + ACTIONS(3844), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -166008,7 +165634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2750), 18, + ACTIONS(2818), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -166024,50 +165650,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [29959] = 16, + [28016] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2941), 1, - sym__newline, - ACTIONS(3828), 1, + ACTIONS(3848), 1, anon_sym_DASH2, - ACTIONS(3832), 1, + ACTIONS(3858), 1, anon_sym_PLUS2, - ACTIONS(3840), 1, + ACTIONS(3912), 1, anon_sym_bit_DASHand2, - STATE(1651), 1, - sym_comment, - STATE(1665), 1, + ACTIONS(3914), 1, + anon_sym_bit_DASHxor2, + STATE(485), 1, aux_sym__repeat_newline, - ACTIONS(3765), 2, + STATE(1630), 1, + sym_comment, + ACTIONS(3846), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3850), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3767), 2, + ACTIONS(3854), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3769), 2, + ACTIONS(3856), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3826), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3834), 2, + ACTIONS(3860), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3830), 4, + ACTIONS(3852), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3838), 4, + ACTIONS(3910), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3836), 8, + ACTIONS(3844), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -166076,7 +165701,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2746), 16, + ACTIONS(2818), 16, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -166091,48 +165717,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [30041] = 15, + [28098] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3864), 1, - anon_sym_DASH2, - ACTIONS(3874), 1, - anon_sym_PLUS2, - ACTIONS(3882), 1, - anon_sym_bit_DASHand2, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(1652), 1, + ACTIONS(3886), 1, + anon_sym_COLON, + ACTIONS(3888), 1, + anon_sym_LBRACK, + ACTIONS(3894), 1, + anon_sym_list, + ACTIONS(3896), 1, + anon_sym_oneof, + ACTIONS(3906), 1, + anon_sym_LBRACE, + STATE(1631), 1, + sym_comment, + STATE(4817), 1, + sym_block, + STATE(5005), 1, + sym_returns, + STATE(5155), 1, + sym__one_type, + STATE(5162), 1, + sym__multiple_types, + STATE(5165), 1, + sym__type_annotation, + ACTIONS(3892), 2, + anon_sym_table, + anon_sym_record, + STATE(2656), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3890), 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, + [28178] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2822), 1, + aux_sym_cmd_identifier_token2, + STATE(1632), 1, sym_comment, - ACTIONS(3862), 2, + ACTIONS(2360), 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(2362), 29, + anon_sym_in, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3866), 2, + anon_sym_DASH2, anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3870), 2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_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, - ACTIONS(3872), 2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3876), 2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3868), 4, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [28238] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2822), 1, + aux_sym_cmd_identifier_token2, + STATE(1633), 1, + sym_comment, + ACTIONS(2616), 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(3880), 4, anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3878), 8, + ACTIONS(2618), 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, @@ -166140,7 +165878,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2750), 17, + 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, + [28298] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3886), 1, + anon_sym_COLON, + ACTIONS(3888), 1, + anon_sym_LBRACK, + ACTIONS(3894), 1, + anon_sym_list, + ACTIONS(3896), 1, + anon_sym_oneof, + ACTIONS(3906), 1, + anon_sym_LBRACE, + STATE(1634), 1, + sym_comment, + STATE(4759), 1, + sym_block, + STATE(4978), 1, + sym_returns, + STATE(5155), 1, + sym__one_type, + STATE(5162), 1, + sym__multiple_types, + STATE(5165), 1, + sym__type_annotation, + ACTIONS(3892), 2, + anon_sym_table, + anon_sym_record, + STATE(2656), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3890), 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, + [28378] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1840), 1, + sym__unquoted_pattern, + STATE(1635), 1, + sym_comment, + ACTIONS(847), 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, @@ -166152,177 +165985,844 @@ static const uint16_t ts_small_parse_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_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, - [30121] = 17, + [28438] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3886), 1, + anon_sym_COLON, + ACTIONS(3888), 1, + anon_sym_LBRACK, + ACTIONS(3894), 1, + anon_sym_list, + ACTIONS(3896), 1, + anon_sym_oneof, + ACTIONS(3906), 1, + anon_sym_LBRACE, + STATE(1636), 1, + sym_comment, + STATE(4822), 1, + sym_block, + STATE(5010), 1, + sym_returns, + STATE(5155), 1, + sym__one_type, + STATE(5162), 1, + sym__multiple_types, + STATE(5165), 1, + sym__type_annotation, + ACTIONS(3892), 2, + anon_sym_table, + anon_sym_record, + STATE(2656), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3890), 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, + [28518] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3886), 1, + anon_sym_COLON, + ACTIONS(3888), 1, + anon_sym_LBRACK, + ACTIONS(3894), 1, + anon_sym_list, + ACTIONS(3896), 1, + anon_sym_oneof, + ACTIONS(3906), 1, + anon_sym_LBRACE, + STATE(1637), 1, + sym_comment, + STATE(4769), 1, + sym_block, + STATE(4985), 1, + sym_returns, + STATE(5155), 1, + sym__one_type, + STATE(5162), 1, + sym__multiple_types, + STATE(5165), 1, + sym__type_annotation, + ACTIONS(3892), 2, + anon_sym_table, + anon_sym_record, + STATE(2656), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3890), 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, + [28598] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3886), 1, + anon_sym_COLON, + ACTIONS(3888), 1, + anon_sym_LBRACK, + ACTIONS(3894), 1, + anon_sym_list, + ACTIONS(3896), 1, + anon_sym_oneof, + ACTIONS(3906), 1, + anon_sym_LBRACE, + STATE(1638), 1, + sym_comment, + STATE(4773), 1, + sym_block, + STATE(4988), 1, + sym_returns, + STATE(5155), 1, + sym__one_type, + STATE(5162), 1, + sym__multiple_types, + STATE(5165), 1, + sym__type_annotation, + ACTIONS(3892), 2, + anon_sym_table, + anon_sym_record, + STATE(2656), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3890), 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, + [28678] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3886), 1, + anon_sym_COLON, + ACTIONS(3888), 1, + anon_sym_LBRACK, + ACTIONS(3894), 1, + anon_sym_list, + ACTIONS(3896), 1, + anon_sym_oneof, + ACTIONS(3898), 1, + anon_sym_LBRACE, + STATE(1639), 1, + sym_comment, + STATE(4528), 1, + sym_block, + STATE(4995), 1, + sym_returns, + STATE(5155), 1, + sym__one_type, + STATE(5162), 1, + sym__multiple_types, + STATE(5165), 1, + sym__type_annotation, + ACTIONS(3892), 2, + anon_sym_table, + anon_sym_record, + STATE(2656), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3890), 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, + [28758] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3886), 1, + anon_sym_COLON, + ACTIONS(3888), 1, + anon_sym_LBRACK, + ACTIONS(3894), 1, + anon_sym_list, + ACTIONS(3896), 1, + anon_sym_oneof, + ACTIONS(3898), 1, + anon_sym_LBRACE, + STATE(1640), 1, + sym_comment, + STATE(4529), 1, + sym_block, + STATE(5026), 1, + sym_returns, + STATE(5155), 1, + sym__one_type, + STATE(5162), 1, + sym__multiple_types, + STATE(5165), 1, + sym__type_annotation, + ACTIONS(3892), 2, + anon_sym_table, + anon_sym_record, + STATE(2656), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3890), 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, + [28838] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3886), 1, + anon_sym_COLON, + ACTIONS(3888), 1, + anon_sym_LBRACK, + ACTIONS(3894), 1, + anon_sym_list, + ACTIONS(3896), 1, + anon_sym_oneof, + ACTIONS(3906), 1, + anon_sym_LBRACE, + STATE(1641), 1, + sym_comment, + STATE(4651), 1, + sym_block, + STATE(4931), 1, + sym_returns, + STATE(5155), 1, + sym__one_type, + STATE(5162), 1, + sym__multiple_types, + STATE(5165), 1, + sym__type_annotation, + ACTIONS(3892), 2, + anon_sym_table, + anon_sym_record, + STATE(2656), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3890), 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, + [28918] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3886), 1, + anon_sym_COLON, + ACTIONS(3888), 1, + anon_sym_LBRACK, + ACTIONS(3894), 1, + anon_sym_list, + ACTIONS(3896), 1, + anon_sym_oneof, + ACTIONS(3898), 1, + anon_sym_LBRACE, + STATE(1642), 1, + sym_comment, + STATE(4457), 1, + sym_block, + STATE(4986), 1, + sym_returns, + STATE(5155), 1, + sym__one_type, + STATE(5162), 1, + sym__multiple_types, + STATE(5165), 1, + sym__type_annotation, + ACTIONS(3892), 2, + anon_sym_table, + anon_sym_record, + STATE(2656), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3890), 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, + [28998] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3886), 1, + anon_sym_COLON, + ACTIONS(3888), 1, + anon_sym_LBRACK, + ACTIONS(3894), 1, + anon_sym_list, + ACTIONS(3896), 1, + anon_sym_oneof, + ACTIONS(3898), 1, + anon_sym_LBRACE, + STATE(1643), 1, + sym_comment, + STATE(4541), 1, + sym_block, + STATE(4957), 1, + sym_returns, + STATE(5155), 1, + sym__one_type, + STATE(5162), 1, + sym__multiple_types, + STATE(5165), 1, + sym__type_annotation, + ACTIONS(3892), 2, + anon_sym_table, + anon_sym_record, + STATE(2656), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3890), 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, + [29078] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3886), 1, + anon_sym_COLON, + ACTIONS(3888), 1, + anon_sym_LBRACK, + ACTIONS(3894), 1, + anon_sym_list, + ACTIONS(3896), 1, + anon_sym_oneof, + ACTIONS(3898), 1, + anon_sym_LBRACE, + STATE(1644), 1, + sym_comment, + STATE(4458), 1, + sym_block, + STATE(4989), 1, + sym_returns, + STATE(5155), 1, + sym__one_type, + STATE(5162), 1, + sym__multiple_types, + STATE(5165), 1, + sym__type_annotation, + ACTIONS(3892), 2, + anon_sym_table, + anon_sym_record, + STATE(2656), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3890), 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, + [29158] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3886), 1, + anon_sym_COLON, + ACTIONS(3888), 1, + anon_sym_LBRACK, + ACTIONS(3894), 1, + anon_sym_list, + ACTIONS(3896), 1, + anon_sym_oneof, + ACTIONS(3906), 1, + anon_sym_LBRACE, + STATE(1645), 1, + sym_comment, + STATE(4687), 1, + sym_block, + STATE(4932), 1, + sym_returns, + STATE(5155), 1, + sym__one_type, + STATE(5162), 1, + sym__multiple_types, + STATE(5165), 1, + sym__type_annotation, + ACTIONS(3892), 2, + anon_sym_table, + anon_sym_record, + STATE(2656), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3890), 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, + [29238] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2941), 1, - sym__newline, - ACTIONS(3828), 1, - anon_sym_DASH2, - ACTIONS(3832), 1, - anon_sym_PLUS2, - ACTIONS(3840), 1, - anon_sym_bit_DASHand2, - ACTIONS(3842), 1, - anon_sym_bit_DASHxor2, - STATE(1653), 1, + ACTIONS(3886), 1, + anon_sym_COLON, + ACTIONS(3888), 1, + anon_sym_LBRACK, + ACTIONS(3894), 1, + anon_sym_list, + ACTIONS(3896), 1, + anon_sym_oneof, + ACTIONS(3906), 1, + anon_sym_LBRACE, + STATE(1646), 1, sym_comment, - STATE(1666), 1, - aux_sym__repeat_newline, - ACTIONS(3765), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3767), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3769), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3826), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3834), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3830), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3838), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3836), 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(2746), 15, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - [30205] = 16, + STATE(4673), 1, + sym_block, + STATE(4960), 1, + sym_returns, + STATE(5155), 1, + sym__one_type, + STATE(5162), 1, + sym__multiple_types, + STATE(5165), 1, + sym__type_annotation, + ACTIONS(3892), 2, + anon_sym_table, + anon_sym_record, + STATE(2656), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3890), 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, + [29318] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3864), 1, - anon_sym_DASH2, - ACTIONS(3874), 1, - anon_sym_PLUS2, - ACTIONS(3882), 1, - anon_sym_bit_DASHand2, - ACTIONS(3884), 1, - anon_sym_bit_DASHxor2, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(1654), 1, + ACTIONS(3886), 1, + anon_sym_COLON, + ACTIONS(3888), 1, + anon_sym_LBRACK, + ACTIONS(3894), 1, + anon_sym_list, + ACTIONS(3896), 1, + anon_sym_oneof, + ACTIONS(3906), 1, + anon_sym_LBRACE, + STATE(1647), 1, sym_comment, - ACTIONS(3862), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3866), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3870), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3872), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3876), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3868), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3880), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3878), 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(2750), 16, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - [30287] = 12, + STATE(4746), 1, + sym_block, + STATE(4963), 1, + sym_returns, + STATE(5155), 1, + sym__one_type, + STATE(5162), 1, + sym__multiple_types, + STATE(5165), 1, + sym__type_annotation, + ACTIONS(3892), 2, + anon_sym_table, + anon_sym_record, + STATE(2656), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3890), 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, + [29398] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3864), 1, + ACTIONS(3928), 1, anon_sym_DASH2, - ACTIONS(3874), 1, + ACTIONS(3938), 1, anon_sym_PLUS2, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(1655), 1, + STATE(1648), 1, sym_comment, - ACTIONS(3862), 2, + ACTIONS(3926), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3866), 2, + ACTIONS(3930), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3870), 2, + ACTIONS(3934), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3872), 2, + ACTIONS(3936), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3876), 2, + ACTIONS(3940), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3868), 4, + ACTIONS(3932), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2762), 30, + ACTIONS(2648), 31, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -166336,6 +166836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -166353,33 +166854,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [30361] = 11, + [29470] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3864), 1, + ACTIONS(3928), 1, anon_sym_DASH2, - ACTIONS(3874), 1, + ACTIONS(3938), 1, anon_sym_PLUS2, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(1656), 1, + STATE(1649), 1, sym_comment, - ACTIONS(2764), 2, + ACTIONS(2650), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3866), 2, + ACTIONS(3930), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3870), 2, + ACTIONS(3934), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3872), 2, + ACTIONS(3936), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3876), 2, + ACTIONS(3940), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2762), 34, + ACTIONS(2648), 35, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -166393,6 +166892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -166414,27 +166914,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [30433] = 8, + [29540] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(1657), 1, + STATE(1650), 1, sym_comment, - ACTIONS(3866), 2, + ACTIONS(3930), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3870), 2, + ACTIONS(3934), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3872), 2, + ACTIONS(3936), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2764), 3, + ACTIONS(2650), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2762), 37, + ACTIONS(2648), 38, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -166449,6 +166947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -166472,23 +166971,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [30499] = 6, + [29604] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(1658), 1, + STATE(1651), 1, sym_comment, - ACTIONS(3870), 2, + ACTIONS(3934), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2764), 5, + ACTIONS(2650), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2762), 39, + ACTIONS(2648), 40, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -166503,6 +167000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -166528,49 +167026,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [30561] = 17, + [29664] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3864), 1, + ACTIONS(3928), 1, anon_sym_DASH2, - ACTIONS(3874), 1, + ACTIONS(3938), 1, anon_sym_PLUS2, - ACTIONS(3882), 1, + ACTIONS(3946), 1, anon_sym_bit_DASHand2, - ACTIONS(3884), 1, + ACTIONS(3948), 1, anon_sym_bit_DASHxor2, - ACTIONS(3886), 1, + ACTIONS(3950), 1, anon_sym_bit_DASHor2, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(1659), 1, + STATE(1652), 1, sym_comment, - ACTIONS(3862), 2, + ACTIONS(3926), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3866), 2, + ACTIONS(3930), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3870), 2, + ACTIONS(3934), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3872), 2, + ACTIONS(3936), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3876), 2, + ACTIONS(3940), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3868), 4, + ACTIONS(3932), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3880), 4, + ACTIONS(3944), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3878), 8, + ACTIONS(3942), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -166579,7 +167075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2762), 15, + ACTIONS(2648), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -166592,54 +167088,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [30645] = 18, + [29746] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3864), 1, + ACTIONS(3928), 1, anon_sym_DASH2, - ACTIONS(3874), 1, + ACTIONS(3938), 1, anon_sym_PLUS2, - ACTIONS(3882), 1, + ACTIONS(3946), 1, anon_sym_bit_DASHand2, - ACTIONS(3884), 1, + ACTIONS(3948), 1, anon_sym_bit_DASHxor2, - ACTIONS(3886), 1, + ACTIONS(3950), 1, anon_sym_bit_DASHor2, - ACTIONS(3888), 1, + ACTIONS(3952), 1, anon_sym_and2, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(1660), 1, + STATE(1653), 1, sym_comment, - ACTIONS(3862), 2, + ACTIONS(3926), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3866), 2, + ACTIONS(3930), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3870), 2, + ACTIONS(3934), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3872), 2, + ACTIONS(3936), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3876), 2, + ACTIONS(3940), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3868), 4, + ACTIONS(3932), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3880), 4, + ACTIONS(3944), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3878), 8, + ACTIONS(3942), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -166648,7 +167143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2762), 14, + ACTIONS(2648), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -166661,55 +167156,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_xor2, anon_sym_or2, - [30731] = 19, + [29830] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3864), 1, + ACTIONS(3928), 1, anon_sym_DASH2, - ACTIONS(3874), 1, + ACTIONS(3938), 1, anon_sym_PLUS2, - ACTIONS(3882), 1, + ACTIONS(3946), 1, anon_sym_bit_DASHand2, - ACTIONS(3884), 1, + ACTIONS(3948), 1, anon_sym_bit_DASHxor2, - ACTIONS(3886), 1, + ACTIONS(3950), 1, anon_sym_bit_DASHor2, - ACTIONS(3888), 1, + ACTIONS(3952), 1, anon_sym_and2, - ACTIONS(3890), 1, + ACTIONS(3954), 1, anon_sym_xor2, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(1661), 1, + STATE(1654), 1, sym_comment, - ACTIONS(3862), 2, + ACTIONS(3926), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3866), 2, + ACTIONS(3930), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3870), 2, + ACTIONS(3934), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3872), 2, + ACTIONS(3936), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3876), 2, + ACTIONS(3940), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3868), 4, + ACTIONS(3932), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3880), 4, + ACTIONS(3944), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3878), 8, + ACTIONS(3942), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -166718,7 +167212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2762), 13, + ACTIONS(2648), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -166731,39 +167225,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_or2, - [30819] = 13, + [29916] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3864), 1, + ACTIONS(3928), 1, anon_sym_DASH2, - ACTIONS(3874), 1, + ACTIONS(3938), 1, anon_sym_PLUS2, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(1662), 1, + STATE(1655), 1, sym_comment, - ACTIONS(3862), 2, + ACTIONS(3926), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3866), 2, + ACTIONS(3930), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3870), 2, + ACTIONS(3934), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3872), 2, + ACTIONS(3936), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3876), 2, + ACTIONS(3940), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3868), 4, + ACTIONS(3932), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3878), 8, + ACTIONS(3942), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -166772,7 +167265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2762), 22, + ACTIONS(2648), 23, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -166785,6 +167278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -166795,30 +167289,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [30895] = 10, + [29990] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3864), 1, + ACTIONS(3928), 1, anon_sym_DASH2, - ACTIONS(3874), 1, + ACTIONS(3938), 1, anon_sym_PLUS2, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(1663), 1, + STATE(1656), 1, sym_comment, - ACTIONS(2764), 2, + ACTIONS(2650), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3866), 2, + ACTIONS(3930), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3870), 2, + ACTIONS(3934), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3872), 2, + ACTIONS(3936), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2762), 36, + ACTIONS(2648), 37, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -166832,6 +167324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -166855,43 +167348,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [30965] = 14, + [30058] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3864), 1, + ACTIONS(3928), 1, anon_sym_DASH2, - ACTIONS(3874), 1, + ACTIONS(3938), 1, anon_sym_PLUS2, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(1664), 1, + STATE(1657), 1, sym_comment, - ACTIONS(3862), 2, + ACTIONS(3926), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3866), 2, + ACTIONS(3930), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3870), 2, + ACTIONS(3934), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3872), 2, + ACTIONS(3936), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3876), 2, + ACTIONS(3940), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3868), 4, + ACTIONS(3932), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3880), 4, + ACTIONS(3944), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3878), 8, + ACTIONS(3942), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -166900,7 +167391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2762), 18, + ACTIONS(2648), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -166913,51 +167404,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [31043] = 15, + [30134] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3864), 1, + ACTIONS(3928), 1, anon_sym_DASH2, - ACTIONS(3874), 1, + ACTIONS(3938), 1, anon_sym_PLUS2, - ACTIONS(3882), 1, + ACTIONS(3946), 1, anon_sym_bit_DASHand2, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(1665), 1, + STATE(1658), 1, sym_comment, - ACTIONS(3862), 2, + ACTIONS(3926), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3866), 2, + ACTIONS(3930), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3870), 2, + ACTIONS(3934), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3872), 2, + ACTIONS(3936), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3876), 2, + ACTIONS(3940), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3868), 4, + ACTIONS(3932), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3880), 4, + ACTIONS(3944), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3878), 8, + ACTIONS(3942), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -166966,7 +167456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2762), 17, + ACTIONS(2648), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -166979,52 +167469,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [31123] = 16, + [30212] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3864), 1, + ACTIONS(3928), 1, anon_sym_DASH2, - ACTIONS(3874), 1, + ACTIONS(3938), 1, anon_sym_PLUS2, - ACTIONS(3882), 1, + ACTIONS(3946), 1, anon_sym_bit_DASHand2, - ACTIONS(3884), 1, + ACTIONS(3948), 1, anon_sym_bit_DASHxor2, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(1666), 1, + STATE(1659), 1, sym_comment, - ACTIONS(3862), 2, + ACTIONS(3926), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3866), 2, + ACTIONS(3930), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3870), 2, + ACTIONS(3934), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3872), 2, + ACTIONS(3936), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3876), 2, + ACTIONS(3940), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3868), 4, + ACTIONS(3932), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3880), 4, + ACTIONS(3944), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3878), 8, + ACTIONS(3942), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -167033,7 +167522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2762), 16, + ACTIONS(2648), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -167046,55 +167535,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [31205] = 20, + [30292] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3886), 1, + anon_sym_COLON, + ACTIONS(3888), 1, + anon_sym_LBRACK, + ACTIONS(3894), 1, + anon_sym_list, + ACTIONS(3896), 1, + anon_sym_oneof, + ACTIONS(3906), 1, + anon_sym_LBRACE, + STATE(1660), 1, + sym_comment, + STATE(4731), 1, + sym_block, + STATE(4962), 1, + sym_returns, + STATE(5155), 1, + sym__one_type, + STATE(5162), 1, + sym__multiple_types, + STATE(5165), 1, + sym__type_annotation, + ACTIONS(3892), 2, + anon_sym_table, + anon_sym_record, + STATE(2656), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3890), 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, + [30372] = 19, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1800), 1, + ACTIONS(1772), 1, anon_sym_DQUOTE, - ACTIONS(1802), 1, + ACTIONS(1774), 1, anon_sym_SQUOTE, - ACTIONS(1804), 1, + ACTIONS(1776), 1, anon_sym_BQUOTE, - ACTIONS(1806), 1, + ACTIONS(1778), 1, sym_raw_string_begin, - ACTIONS(2682), 1, + ACTIONS(2822), 1, aux_sym_cmd_identifier_token2, - ACTIONS(2684), 1, - anon_sym_COLON2, - ACTIONS(3651), 1, + ACTIONS(3637), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3900), 1, + ACTIONS(3798), 1, anon_sym_DASH_DASH, - STATE(1667), 1, + STATE(1661), 1, sym_comment, - STATE(1723), 1, + STATE(1702), 1, aux_sym_decl_def_repeat1, - STATE(2133), 1, + STATE(2150), 1, sym__val_number_decimal, - STATE(2168), 1, + STATE(2188), 1, sym_long_flag, - STATE(3713), 1, + STATE(3755), 1, sym_cmd_identifier, - STATE(3719), 1, + STATE(3763), 1, sym_val_string, - STATE(3831), 1, + STATE(3859), 1, sym__command_name, - ACTIONS(3902), 2, + ACTIONS(3800), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3904), 2, + ACTIONS(3802), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2266), 4, + STATE(2274), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3647), 25, + ACTIONS(3633), 26, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -167112,6 +167665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_in, anon_sym_true, @@ -167120,38 +167674,171 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [31295] = 11, + [30460] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3908), 1, + ACTIONS(3886), 1, + anon_sym_COLON, + ACTIONS(3888), 1, + anon_sym_LBRACK, + ACTIONS(3894), 1, + anon_sym_list, + ACTIONS(3896), 1, + anon_sym_oneof, + ACTIONS(3906), 1, + anon_sym_LBRACE, + STATE(1662), 1, + sym_comment, + STATE(4880), 1, + sym_block, + STATE(4992), 1, + sym_returns, + STATE(5155), 1, + sym__one_type, + STATE(5162), 1, + sym__multiple_types, + STATE(5165), 1, + sym__type_annotation, + ACTIONS(3892), 2, + anon_sym_table, + anon_sym_record, + STATE(2656), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3890), 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, + [30540] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3886), 1, + anon_sym_COLON, + ACTIONS(3888), 1, + anon_sym_LBRACK, + ACTIONS(3894), 1, + anon_sym_list, + ACTIONS(3896), 1, + anon_sym_oneof, + ACTIONS(3906), 1, + anon_sym_LBRACE, + STATE(1663), 1, + sym_comment, + STATE(4664), 1, + sym_block, + STATE(4950), 1, + sym_returns, + STATE(5155), 1, + sym__one_type, + STATE(5162), 1, + sym__multiple_types, + STATE(5165), 1, + sym__type_annotation, + ACTIONS(3892), 2, + anon_sym_table, + anon_sym_record, + STATE(2656), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3890), 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, + [30620] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2850), 1, + sym__newline, + ACTIONS(3866), 1, anon_sym_DASH2, - ACTIONS(3918), 1, + ACTIONS(3878), 1, anon_sym_PLUS2, - STATE(1668), 1, + STATE(1542), 1, + aux_sym__repeat_newline, + STATE(1664), 1, sym_comment, - ACTIONS(3906), 2, + ACTIONS(3864), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3910), 2, + ACTIONS(3868), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3914), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3916), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3920), 2, + ACTIONS(3880), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3912), 4, + ACTIONS(3870), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2551), 31, + ACTIONS(2798), 29, anon_sym_in, - sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -167163,7 +167850,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -167181,33 +167867,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [31367] = 10, + [30696] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3908), 1, + ACTIONS(3886), 1, + anon_sym_COLON, + ACTIONS(3888), 1, + anon_sym_LBRACK, + ACTIONS(3894), 1, + anon_sym_list, + ACTIONS(3896), 1, + anon_sym_oneof, + ACTIONS(3898), 1, + anon_sym_LBRACE, + STATE(1665), 1, + sym_comment, + STATE(4543), 1, + sym_block, + STATE(4958), 1, + sym_returns, + STATE(5155), 1, + sym__one_type, + STATE(5162), 1, + sym__multiple_types, + STATE(5165), 1, + sym__type_annotation, + ACTIONS(3892), 2, + anon_sym_table, + anon_sym_record, + STATE(2656), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3890), 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, + [30776] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2822), 1, + aux_sym_cmd_identifier_token2, + STATE(1666), 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(847), 29, + anon_sym_in, + anon_sym_GT2, anon_sym_DASH2, - ACTIONS(3918), 1, + 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, - STATE(1669), 1, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [30836] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2850), 1, + sym__newline, + ACTIONS(3866), 1, + anon_sym_DASH2, + ACTIONS(3878), 1, + anon_sym_PLUS2, + STATE(1544), 1, + aux_sym__repeat_newline, + STATE(1667), 1, sym_comment, - ACTIONS(2553), 2, + ACTIONS(2800), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3910), 2, + ACTIONS(3868), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3914), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3916), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3920), 2, + ACTIONS(3880), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2551), 35, + ACTIONS(2798), 33, anon_sym_in, - sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -167219,7 +168028,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -167241,27 +168049,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [31437] = 7, + [30910] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(1670), 1, + ACTIONS(2850), 1, + sym__newline, + STATE(1546), 1, + aux_sym__repeat_newline, + STATE(1668), 1, sym_comment, - ACTIONS(3910), 2, + ACTIONS(3868), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3914), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3916), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2553), 3, + ACTIONS(2800), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2551), 38, + ACTIONS(2798), 36, anon_sym_in, - sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -167274,7 +168085,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_DASH2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -167298,23 +168108,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [31501] = 5, + [30978] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1671), 1, + ACTIONS(2850), 1, + sym__newline, + STATE(1548), 1, + aux_sym__repeat_newline, + STATE(1669), 1, sym_comment, - ACTIONS(3914), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2553), 5, + ACTIONS(2800), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2551), 40, + ACTIONS(2798), 38, anon_sym_in, - sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -167327,7 +168140,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_DASH2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -167353,47 +168165,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [31561] = 16, + [31042] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3908), 1, + ACTIONS(3886), 1, + anon_sym_COLON, + ACTIONS(3888), 1, + anon_sym_LBRACK, + ACTIONS(3894), 1, + anon_sym_list, + ACTIONS(3896), 1, + anon_sym_oneof, + ACTIONS(3898), 1, + anon_sym_LBRACE, + STATE(1670), 1, + sym_comment, + STATE(4553), 1, + sym_block, + STATE(4952), 1, + sym_returns, + STATE(5155), 1, + sym__one_type, + STATE(5162), 1, + sym__multiple_types, + STATE(5165), 1, + sym__type_annotation, + ACTIONS(3892), 2, + anon_sym_table, + anon_sym_record, + STATE(2656), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3890), 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, + [31122] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3886), 1, + anon_sym_COLON, + ACTIONS(3888), 1, + anon_sym_LBRACK, + ACTIONS(3894), 1, + anon_sym_list, + ACTIONS(3896), 1, + anon_sym_oneof, + ACTIONS(3898), 1, + anon_sym_LBRACE, + STATE(1671), 1, + sym_comment, + STATE(4557), 1, + sym_block, + STATE(4953), 1, + sym_returns, + STATE(5155), 1, + sym__one_type, + STATE(5162), 1, + sym__multiple_types, + STATE(5165), 1, + sym__type_annotation, + ACTIONS(3892), 2, + anon_sym_table, + anon_sym_record, + STATE(2656), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3890), 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, + [31202] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2850), 1, + sym__newline, + ACTIONS(3866), 1, anon_sym_DASH2, - ACTIONS(3918), 1, + ACTIONS(3878), 1, anon_sym_PLUS2, - ACTIONS(3926), 1, + ACTIONS(3882), 1, anon_sym_bit_DASHand2, - ACTIONS(3928), 1, + ACTIONS(3884), 1, anon_sym_bit_DASHxor2, - ACTIONS(3930), 1, + ACTIONS(3908), 1, anon_sym_bit_DASHor2, + STATE(1550), 1, + aux_sym__repeat_newline, STATE(1672), 1, sym_comment, - ACTIONS(3906), 2, + ACTIONS(3864), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3910), 2, + ACTIONS(3868), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3914), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3916), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3920), 2, + ACTIONS(3880), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3912), 4, + ACTIONS(3870), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3924), 4, + ACTIONS(3872), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3922), 8, + ACTIONS(3862), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -167402,8 +168348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2551), 16, - sym__newline, + ACTIONS(2798), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -167415,53 +168360,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_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [31643] = 17, + [31288] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3908), 1, + ACTIONS(2850), 1, + sym__newline, + ACTIONS(3866), 1, anon_sym_DASH2, - ACTIONS(3918), 1, + ACTIONS(3878), 1, anon_sym_PLUS2, - ACTIONS(3926), 1, + ACTIONS(3882), 1, anon_sym_bit_DASHand2, - ACTIONS(3928), 1, + ACTIONS(3884), 1, anon_sym_bit_DASHxor2, - ACTIONS(3930), 1, + ACTIONS(3908), 1, anon_sym_bit_DASHor2, - ACTIONS(3932), 1, + ACTIONS(3918), 1, anon_sym_and2, + STATE(1552), 1, + aux_sym__repeat_newline, STATE(1673), 1, sym_comment, - ACTIONS(3906), 2, + ACTIONS(3864), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3910), 2, + ACTIONS(3868), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3914), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3916), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3920), 2, + ACTIONS(3880), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3912), 4, + ACTIONS(3870), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3924), 4, + ACTIONS(3872), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3922), 8, + ACTIONS(3862), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -167470,8 +168418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2551), 15, - sym__newline, + ACTIONS(2798), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -167483,107 +168430,307 @@ static 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, - [31727] = 18, + [31376] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3886), 1, + anon_sym_COLON, + ACTIONS(3888), 1, + anon_sym_LBRACK, + ACTIONS(3894), 1, + anon_sym_list, + ACTIONS(3896), 1, + anon_sym_oneof, + ACTIONS(3898), 1, + anon_sym_LBRACE, + STATE(1674), 1, + sym_comment, + STATE(4570), 1, + sym_block, + STATE(4965), 1, + sym_returns, + STATE(5155), 1, + sym__one_type, + STATE(5162), 1, + sym__multiple_types, + STATE(5165), 1, + sym__type_annotation, + ACTIONS(3892), 2, + anon_sym_table, + anon_sym_record, + STATE(2656), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3890), 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, + [31456] = 20, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(3866), 1, + anon_sym_DASH2, + ACTIONS(3878), 1, + anon_sym_PLUS2, + ACTIONS(3882), 1, + anon_sym_bit_DASHand2, + ACTIONS(3884), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3908), 1, + anon_sym_bit_DASHor2, + ACTIONS(3918), 1, + anon_sym_and2, + ACTIONS(3922), 1, + anon_sym_xor2, + STATE(1554), 1, + aux_sym__repeat_newline, + STATE(1675), 1, + sym_comment, + ACTIONS(3864), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3868), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3874), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3876), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3880), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3870), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3872), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3862), 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(2798), 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, + [31546] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3886), 1, + anon_sym_COLON, + ACTIONS(3888), 1, + anon_sym_LBRACK, + ACTIONS(3894), 1, + anon_sym_list, + ACTIONS(3896), 1, + anon_sym_oneof, + ACTIONS(3898), 1, + anon_sym_LBRACE, + STATE(1676), 1, + sym_comment, + STATE(4572), 1, + sym_block, + STATE(4970), 1, + sym_returns, + STATE(5155), 1, + sym__one_type, + STATE(5162), 1, + sym__multiple_types, + STATE(5165), 1, + sym__type_annotation, + ACTIONS(3892), 2, + anon_sym_table, + anon_sym_record, + STATE(2656), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3890), 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, + [31626] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3908), 1, - anon_sym_DASH2, - ACTIONS(3918), 1, - anon_sym_PLUS2, - ACTIONS(3926), 1, - anon_sym_bit_DASHand2, - ACTIONS(3928), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3930), 1, - anon_sym_bit_DASHor2, - ACTIONS(3932), 1, - anon_sym_and2, - ACTIONS(3934), 1, - anon_sym_xor2, - STATE(1674), 1, + ACTIONS(3886), 1, + anon_sym_COLON, + ACTIONS(3888), 1, + anon_sym_LBRACK, + ACTIONS(3894), 1, + anon_sym_list, + ACTIONS(3896), 1, + anon_sym_oneof, + ACTIONS(3898), 1, + anon_sym_LBRACE, + STATE(1677), 1, sym_comment, - ACTIONS(3906), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3910), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3914), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3916), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3920), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3912), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3924), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3922), 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(2551), 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_or2, - [31813] = 12, + STATE(4460), 1, + sym_block, + STATE(4990), 1, + sym_returns, + STATE(5155), 1, + sym__one_type, + STATE(5162), 1, + sym__multiple_types, + STATE(5165), 1, + sym__type_annotation, + ACTIONS(3892), 2, + anon_sym_table, + anon_sym_record, + STATE(2656), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3890), 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, + [31706] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3908), 1, + ACTIONS(2850), 1, + sym__newline, + ACTIONS(3866), 1, anon_sym_DASH2, - ACTIONS(3918), 1, + ACTIONS(3878), 1, anon_sym_PLUS2, - STATE(1675), 1, + STATE(1556), 1, + aux_sym__repeat_newline, + STATE(1678), 1, sym_comment, - ACTIONS(3906), 2, + ACTIONS(3864), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3910), 2, + ACTIONS(3868), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3914), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3916), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3920), 2, + ACTIONS(3880), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3912), 4, + ACTIONS(3870), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3922), 8, + ACTIONS(3862), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -167592,8 +168739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2551), 23, - sym__newline, + ACTIONS(2798), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -167605,7 +168751,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -167616,29 +168761,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [31887] = 9, + [31784] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3908), 1, - anon_sym_DASH2, - ACTIONS(3918), 1, - anon_sym_PLUS2, - STATE(1676), 1, + STATE(1679), 1, sym_comment, - ACTIONS(2553), 2, + ACTIONS(2553), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3910), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(3914), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3916), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2551), 37, - anon_sym_in, + anon_sym_PLUS2, + ACTIONS(3795), 13, + ts_builtin_sym_end, + anon_sym_finally, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -167650,8 +168786,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_RBRACE, + ACTIONS(2551), 29, + anon_sym_in, + anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -167670,56 +168807,237 @@ 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, - [31955] = 13, + [31844] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3908), 1, + ACTIONS(3886), 1, + anon_sym_COLON, + ACTIONS(3888), 1, + anon_sym_LBRACK, + ACTIONS(3894), 1, + anon_sym_list, + ACTIONS(3896), 1, + anon_sym_oneof, + ACTIONS(3898), 1, + anon_sym_LBRACE, + STATE(1680), 1, + sym_comment, + STATE(4595), 1, + sym_block, + STATE(5052), 1, + sym_returns, + STATE(5155), 1, + sym__one_type, + STATE(5162), 1, + sym__multiple_types, + STATE(5165), 1, + sym__type_annotation, + ACTIONS(3892), 2, + anon_sym_table, + anon_sym_record, + STATE(2656), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3890), 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, + [31924] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3886), 1, + anon_sym_COLON, + ACTIONS(3888), 1, + anon_sym_LBRACK, + ACTIONS(3894), 1, + anon_sym_list, + ACTIONS(3896), 1, + anon_sym_oneof, + ACTIONS(3898), 1, + anon_sym_LBRACE, + STATE(1681), 1, + sym_comment, + STATE(4596), 1, + sym_block, + STATE(5060), 1, + sym_returns, + STATE(5155), 1, + sym__one_type, + STATE(5162), 1, + sym__multiple_types, + STATE(5165), 1, + sym__type_annotation, + ACTIONS(3892), 2, + anon_sym_table, + anon_sym_record, + STATE(2656), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3890), 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, + [32004] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3886), 1, + anon_sym_COLON, + ACTIONS(3888), 1, + anon_sym_LBRACK, + ACTIONS(3894), 1, + anon_sym_list, + ACTIONS(3896), 1, + anon_sym_oneof, + ACTIONS(3898), 1, + anon_sym_LBRACE, + STATE(1682), 1, + sym_comment, + STATE(4597), 1, + sym_block, + STATE(5070), 1, + sym_returns, + STATE(5155), 1, + sym__one_type, + STATE(5162), 1, + sym__multiple_types, + STATE(5165), 1, + sym__type_annotation, + ACTIONS(3892), 2, + anon_sym_table, + anon_sym_record, + STATE(2656), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3890), 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, + [32084] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2850), 1, + sym__newline, + ACTIONS(3866), 1, anon_sym_DASH2, - ACTIONS(3918), 1, + ACTIONS(3878), 1, anon_sym_PLUS2, - STATE(1677), 1, + STATE(1558), 1, + aux_sym__repeat_newline, + STATE(1683), 1, sym_comment, - ACTIONS(3906), 2, + ACTIONS(2800), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3910), 2, + ACTIONS(3868), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3914), 2, + ACTIONS(3874), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3916), 2, + ACTIONS(3876), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3920), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3912), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3924), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3922), 8, + ACTIONS(2798), 35, 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(2551), 19, - sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -167731,51 +169049,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [32031] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3908), 1, - anon_sym_DASH2, - ACTIONS(3918), 1, - anon_sym_PLUS2, - ACTIONS(3926), 1, - anon_sym_bit_DASHand2, - STATE(1678), 1, - sym_comment, - ACTIONS(3906), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3910), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3914), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3916), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3920), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3912), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3924), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3922), 8, - anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -167783,135 +169059,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2551), 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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [32109] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3908), 1, - anon_sym_DASH2, - ACTIONS(3918), 1, - anon_sym_PLUS2, - ACTIONS(3926), 1, - anon_sym_bit_DASHand2, - ACTIONS(3928), 1, - anon_sym_bit_DASHxor2, - STATE(1679), 1, - sym_comment, - ACTIONS(3906), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3910), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3914), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3916), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3920), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3912), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3924), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3922), 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(2551), 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_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [32189] = 18, + [32156] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1800), 1, + ACTIONS(3886), 1, + anon_sym_COLON, + ACTIONS(3888), 1, + anon_sym_LBRACK, + ACTIONS(3894), 1, + anon_sym_list, + ACTIONS(3896), 1, + anon_sym_oneof, + ACTIONS(3906), 1, + anon_sym_LBRACE, + STATE(1684), 1, + sym_comment, + STATE(4752), 1, + sym_block, + STATE(4975), 1, + sym_returns, + STATE(5155), 1, + sym__one_type, + STATE(5162), 1, + sym__multiple_types, + STATE(5165), 1, + sym__type_annotation, + ACTIONS(3892), 2, + anon_sym_table, + anon_sym_record, + STATE(2656), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3890), 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, + [32236] = 19, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1772), 1, anon_sym_DQUOTE, - ACTIONS(1802), 1, + ACTIONS(1774), 1, anon_sym_SQUOTE, - ACTIONS(1804), 1, + ACTIONS(1776), 1, anon_sym_BQUOTE, - ACTIONS(1806), 1, + ACTIONS(1778), 1, sym_raw_string_begin, - ACTIONS(2873), 1, - anon_sym_DOLLAR, - ACTIONS(3651), 1, + ACTIONS(2594), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3637), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3936), 1, - anon_sym_LBRACK, - ACTIONS(3938), 1, - anon_sym_LBRACE, - STATE(1680), 1, + ACTIONS(3798), 1, + anon_sym_DASH_DASH, + STATE(1685), 1, sym_comment, - STATE(2133), 1, + STATE(1694), 1, + aux_sym_decl_def_repeat1, + STATE(2150), 1, sym__val_number_decimal, - ACTIONS(3647), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3659), 2, + STATE(2188), 1, + sym_long_flag, + STATE(3755), 1, + sym_cmd_identifier, + STATE(3763), 1, + sym_val_string, + STATE(3949), 1, + sym__command_name, + ACTIONS(3800), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3661), 2, + ACTIONS(3802), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2908), 2, - sym_cmd_identifier, - sym_val_string, - STATE(2912), 3, - sym_val_variable, - sym_val_list, - sym_val_record, - STATE(2266), 4, + STATE(2274), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3649), 23, + ACTIONS(3633), 26, + anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -167928,47 +169197,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, 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, - [32275] = 15, + [32324] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2850), 1, + sym__newline, + ACTIONS(3866), 1, + anon_sym_DASH2, + ACTIONS(3878), 1, + anon_sym_PLUS2, + STATE(1560), 1, + aux_sym__repeat_newline, + STATE(1686), 1, + sym_comment, + ACTIONS(3864), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3868), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3874), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3876), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3880), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3870), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3872), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3862), 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(2798), 17, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [32404] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3774), 1, + ACTIONS(3886), 1, anon_sym_COLON, - ACTIONS(3776), 1, + ACTIONS(3888), 1, anon_sym_LBRACK, - ACTIONS(3782), 1, + ACTIONS(3894), 1, anon_sym_list, - ACTIONS(3784), 1, + ACTIONS(3896), 1, anon_sym_oneof, - ACTIONS(3786), 1, + ACTIONS(3898), 1, anon_sym_LBRACE, - STATE(1681), 1, + STATE(1687), 1, sym_comment, - STATE(4573), 1, + STATE(4600), 1, sym_block, - STATE(4836), 1, + STATE(5076), 1, sym_returns, - STATE(5053), 1, + STATE(5155), 1, sym__one_type, - STATE(5063), 1, + STATE(5162), 1, sym__multiple_types, - STATE(5066), 1, + STATE(5165), 1, sym__type_annotation, - ACTIONS(3780), 2, + ACTIONS(3892), 2, anon_sym_table, anon_sym_record, - STATE(2651), 4, + STATE(2656), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3778), 31, + ACTIONS(3890), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -168000,40 +169336,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [32355] = 15, + [32484] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3774), 1, + ACTIONS(3886), 1, anon_sym_COLON, - ACTIONS(3776), 1, + ACTIONS(3888), 1, anon_sym_LBRACK, - ACTIONS(3782), 1, + ACTIONS(3894), 1, anon_sym_list, - ACTIONS(3784), 1, + ACTIONS(3896), 1, anon_sym_oneof, - ACTIONS(3786), 1, + ACTIONS(3898), 1, anon_sym_LBRACE, - STATE(1682), 1, + STATE(1688), 1, sym_comment, - STATE(4575), 1, + STATE(4493), 1, sym_block, - STATE(4840), 1, + STATE(4914), 1, sym_returns, - STATE(5053), 1, + STATE(5155), 1, sym__one_type, - STATE(5063), 1, + STATE(5162), 1, sym__multiple_types, - STATE(5066), 1, + STATE(5165), 1, sym__type_annotation, - ACTIONS(3780), 2, + ACTIONS(3892), 2, anon_sym_table, anon_sym_record, - STATE(2651), 4, + STATE(2656), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3778), 31, + ACTIONS(3890), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -168065,244 +169401,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [32435] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1422), 1, - anon_sym_DQUOTE, - ACTIONS(1424), 1, - anon_sym_SQUOTE, - ACTIONS(1426), 1, - anon_sym_BQUOTE, - ACTIONS(1436), 1, - sym_raw_string_begin, - ACTIONS(3814), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOLLAR, - ACTIONS(3944), 1, - anon_sym_LBRACE, - STATE(1683), 1, - sym_comment, - STATE(2138), 1, - sym__val_number_decimal, - ACTIONS(3659), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3661), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3810), 2, - anon_sym_export, - anon_sym_in, - STATE(4804), 2, - sym_cmd_identifier, - sym_val_string, - STATE(4805), 3, - sym_val_variable, - sym_val_list, - sym_val_record, - STATE(3665), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3812), 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, - [32521] = 18, + [32564] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1422), 1, - anon_sym_DQUOTE, - ACTIONS(1424), 1, - anon_sym_SQUOTE, - ACTIONS(1426), 1, - anon_sym_BQUOTE, - ACTIONS(1436), 1, - sym_raw_string_begin, - ACTIONS(3814), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3946), 1, + ACTIONS(3886), 1, + anon_sym_COLON, + ACTIONS(3888), 1, anon_sym_LBRACK, - ACTIONS(3948), 1, - anon_sym_DOLLAR, - ACTIONS(3950), 1, + ACTIONS(3894), 1, + anon_sym_list, + ACTIONS(3896), 1, + anon_sym_oneof, + ACTIONS(3898), 1, anon_sym_LBRACE, - STATE(1684), 1, + STATE(1689), 1, sym_comment, - STATE(2138), 1, - sym__val_number_decimal, - ACTIONS(3659), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3661), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3810), 2, - anon_sym_export, - anon_sym_in, - STATE(4804), 2, - sym_cmd_identifier, - sym_val_string, - STATE(4805), 3, - sym_val_variable, - sym_val_list, - sym_val_record, - STATE(3665), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3812), 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, - [32607] = 18, + STATE(4500), 1, + sym_block, + STATE(4917), 1, + sym_returns, + STATE(5155), 1, + sym__one_type, + STATE(5162), 1, + sym__multiple_types, + STATE(5165), 1, + sym__type_annotation, + ACTIONS(3892), 2, + anon_sym_table, + anon_sym_record, + STATE(2656), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3890), 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, + [32644] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1800), 1, - anon_sym_DQUOTE, - ACTIONS(1802), 1, - anon_sym_SQUOTE, - ACTIONS(1804), 1, - anon_sym_BQUOTE, - ACTIONS(1806), 1, - sym_raw_string_begin, - ACTIONS(3651), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3822), 1, - anon_sym_DOLLAR, - ACTIONS(3952), 1, + ACTIONS(3886), 1, + anon_sym_COLON, + ACTIONS(3888), 1, anon_sym_LBRACK, - ACTIONS(3954), 1, + ACTIONS(3894), 1, + anon_sym_list, + ACTIONS(3896), 1, + anon_sym_oneof, + ACTIONS(3906), 1, anon_sym_LBRACE, - STATE(1685), 1, + STATE(1690), 1, sym_comment, - STATE(2133), 1, - sym__val_number_decimal, - ACTIONS(3647), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3659), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3661), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2908), 2, - sym_cmd_identifier, - sym_val_string, - STATE(2912), 3, - sym_val_variable, - sym_val_list, - sym_val_record, - STATE(2266), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3649), 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, - [32693] = 15, + STATE(4742), 1, + sym_block, + STATE(5008), 1, + sym_returns, + STATE(5155), 1, + sym__one_type, + STATE(5162), 1, + sym__multiple_types, + STATE(5165), 1, + sym__type_annotation, + ACTIONS(3892), 2, + anon_sym_table, + anon_sym_record, + STATE(2656), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3890), 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, + [32724] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3774), 1, + ACTIONS(3886), 1, anon_sym_COLON, - ACTIONS(3776), 1, + ACTIONS(3888), 1, anon_sym_LBRACK, - ACTIONS(3782), 1, + ACTIONS(3894), 1, anon_sym_list, - ACTIONS(3784), 1, + ACTIONS(3896), 1, anon_sym_oneof, - ACTIONS(3786), 1, + ACTIONS(3906), 1, anon_sym_LBRACE, - STATE(1686), 1, + STATE(1691), 1, sym_comment, - STATE(4624), 1, + STATE(4848), 1, sym_block, - STATE(4947), 1, + STATE(5009), 1, sym_returns, - STATE(5053), 1, + STATE(5155), 1, sym__one_type, - STATE(5063), 1, + STATE(5162), 1, sym__multiple_types, - STATE(5066), 1, + STATE(5165), 1, sym__type_annotation, - ACTIONS(3780), 2, + ACTIONS(3892), 2, anon_sym_table, anon_sym_record, - STATE(2651), 4, + STATE(2656), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3778), 31, + ACTIONS(3890), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -168334,40 +169596,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [32773] = 15, + [32804] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3774), 1, + ACTIONS(3886), 1, anon_sym_COLON, - ACTIONS(3776), 1, + ACTIONS(3888), 1, anon_sym_LBRACK, - ACTIONS(3782), 1, + ACTIONS(3894), 1, anon_sym_list, - ACTIONS(3784), 1, + ACTIONS(3896), 1, anon_sym_oneof, - ACTIONS(3786), 1, + ACTIONS(3898), 1, anon_sym_LBRACE, - STATE(1687), 1, + STATE(1692), 1, sym_comment, - STATE(4625), 1, + STATE(4462), 1, sym_block, - STATE(4872), 1, + STATE(4994), 1, sym_returns, - STATE(5053), 1, + STATE(5155), 1, sym__one_type, - STATE(5063), 1, + STATE(5162), 1, sym__multiple_types, - STATE(5066), 1, + STATE(5165), 1, sym__type_annotation, - ACTIONS(3780), 2, + ACTIONS(3892), 2, anon_sym_table, anon_sym_record, - STATE(2651), 4, + STATE(2656), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3778), 31, + ACTIONS(3890), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -168399,40 +169661,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [32853] = 15, + [32884] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3774), 1, + ACTIONS(3886), 1, anon_sym_COLON, - ACTIONS(3776), 1, + ACTIONS(3888), 1, anon_sym_LBRACK, - ACTIONS(3782), 1, + ACTIONS(3894), 1, anon_sym_list, - ACTIONS(3784), 1, + ACTIONS(3896), 1, anon_sym_oneof, - ACTIONS(3786), 1, + ACTIONS(3906), 1, anon_sym_LBRACE, - STATE(1688), 1, + STATE(1693), 1, sym_comment, - STATE(4628), 1, + STATE(4725), 1, sym_block, - STATE(4874), 1, + STATE(4944), 1, sym_returns, - STATE(5053), 1, + STATE(5155), 1, sym__one_type, - STATE(5063), 1, + STATE(5162), 1, sym__multiple_types, - STATE(5066), 1, + STATE(5165), 1, sym__type_annotation, - ACTIONS(3780), 2, + ACTIONS(3892), 2, anon_sym_table, anon_sym_record, - STATE(2651), 4, + STATE(2656), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3778), 31, + ACTIONS(3890), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -168464,40 +169726,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [32933] = 15, + [32964] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1772), 1, + anon_sym_DQUOTE, + ACTIONS(1774), 1, + anon_sym_SQUOTE, + ACTIONS(1776), 1, + anon_sym_BQUOTE, + ACTIONS(1778), 1, + sym_raw_string_begin, + ACTIONS(3637), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3956), 1, + anon_sym_DASH_DASH, + STATE(1694), 1, + sym_comment, + STATE(1984), 1, + aux_sym_decl_def_repeat1, + STATE(2150), 1, + sym__val_number_decimal, + STATE(2188), 1, + sym_long_flag, + STATE(3755), 1, + sym_cmd_identifier, + STATE(3763), 1, + sym_val_string, + STATE(3855), 1, + sym__command_name, + ACTIONS(3633), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3645), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3647), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2274), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3635), 24, + 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_finally, + 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, + [33051] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3774), 1, - anon_sym_COLON, - ACTIONS(3776), 1, - anon_sym_LBRACK, - ACTIONS(3782), 1, + ACTIONS(3894), 1, anon_sym_list, - ACTIONS(3784), 1, + ACTIONS(3896), 1, anon_sym_oneof, - ACTIONS(3786), 1, - anon_sym_LBRACE, - STATE(1689), 1, + ACTIONS(3958), 1, + sym__newline, + ACTIONS(3960), 1, + anon_sym_RBRACK, + STATE(1695), 1, sym_comment, - STATE(4629), 1, - sym_block, - STATE(4877), 1, - sym_returns, - STATE(5053), 1, + STATE(1776), 1, + aux_sym__types_body_repeat1, + STATE(1838), 1, + aux_sym__types_body_repeat3, + STATE(4781), 1, sym__one_type, - STATE(5063), 1, - sym__multiple_types, - STATE(5066), 1, + STATE(5230), 1, + sym__types_body, + STATE(5241), 1, sym__type_annotation, - ACTIONS(3780), 2, + ACTIONS(3892), 2, anon_sym_table, anon_sym_record, - STATE(2651), 4, + STATE(2656), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3778), 31, + ACTIONS(3890), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -168529,101 +169857,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [33013] = 15, + [33128] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3774), 1, - anon_sym_COLON, - ACTIONS(3776), 1, - anon_sym_LBRACK, - ACTIONS(3782), 1, - anon_sym_list, - ACTIONS(3784), 1, - anon_sym_oneof, - ACTIONS(3786), 1, - anon_sym_LBRACE, - STATE(1690), 1, + ACTIONS(1422), 1, + anon_sym_DQUOTE, + ACTIONS(1424), 1, + anon_sym_SQUOTE, + ACTIONS(1426), 1, + anon_sym_BQUOTE, + ACTIONS(1436), 1, + sym_raw_string_begin, + ACTIONS(3769), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3777), 1, + sym__newline, + STATE(1696), 1, sym_comment, - STATE(4609), 1, - sym_block, - STATE(4858), 1, - sym_returns, - STATE(5053), 1, - sym__one_type, - STATE(5063), 1, - sym__multiple_types, - STATE(5066), 1, - sym__type_annotation, - ACTIONS(3780), 2, - anon_sym_table, - anon_sym_record, - STATE(2651), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3778), 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, - [33093] = 11, + STATE(1759), 1, + aux_sym__command_list_body_repeat1, + STATE(2014), 1, + aux_sym__types_body_repeat1, + STATE(2120), 1, + sym__val_number_decimal, + STATE(4788), 1, + sym__command_name, + STATE(5054), 1, + sym_cmd_identifier, + STATE(5055), 1, + sym_val_string, + ACTIONS(3645), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3647), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3765), 2, + anon_sym_export, + anon_sym_in, + STATE(3725), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3767), 24, + 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_finally, + 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, + [33215] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1600), 1, + ACTIONS(1601), 1, anon_sym_DOLLAR, - ACTIONS(1604), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, - ACTIONS(1635), 1, + ACTIONS(1637), 1, sym__unquoted_pattern, - STATE(1691), 1, + STATE(1697), 1, sym_comment, - STATE(1949), 1, + STATE(1972), 1, sym__immediate_decimal, - ACTIONS(3956), 2, + ACTIONS(3962), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3958), 2, + ACTIONS(3964), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(730), 2, + STATE(788), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1602), 6, + ACTIONS(1633), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1598), 30, + ACTIONS(1631), 30, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -168654,36 +169985,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [33164] = 11, + [33286] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1600), 1, + ACTIONS(1601), 1, anon_sym_DOLLAR, - ACTIONS(1604), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, - ACTIONS(1679), 1, + ACTIONS(1637), 1, sym__unquoted_pattern, - STATE(1692), 1, + ACTIONS(3966), 1, + anon_sym_DOT, + STATE(1698), 1, sym_comment, - STATE(1967), 1, + STATE(1907), 1, + sym__immediate_decimal, + ACTIONS(3968), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3970), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(1986), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1633), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1631), 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, + [33359] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1601), 1, + anon_sym_DOLLAR, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + ACTIONS(1695), 1, + sym__unquoted_pattern, + STATE(1699), 1, + sym_comment, + STATE(2000), 1, sym__immediate_decimal, - ACTIONS(3956), 2, + ACTIONS(3962), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3958), 2, + ACTIONS(3964), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(748), 2, + STATE(807), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1653), 6, + ACTIONS(1683), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1651), 30, + ACTIONS(1681), 30, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -168714,50 +170106,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [33235] = 19, - ACTIONS(103), 1, + [33430] = 19, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1800), 1, + ACTIONS(1772), 1, anon_sym_DQUOTE, - ACTIONS(1802), 1, + ACTIONS(1774), 1, anon_sym_SQUOTE, - ACTIONS(1804), 1, + ACTIONS(1776), 1, anon_sym_BQUOTE, - ACTIONS(1806), 1, + ACTIONS(1778), 1, sym_raw_string_begin, - ACTIONS(2829), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3651), 1, + ACTIONS(3637), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3900), 1, + ACTIONS(3956), 1, anon_sym_DASH_DASH, - STATE(1693), 1, + STATE(1700), 1, sym_comment, - STATE(1712), 1, + STATE(1703), 1, aux_sym_decl_def_repeat1, - STATE(2133), 1, + STATE(2150), 1, sym__val_number_decimal, - STATE(2168), 1, + STATE(2188), 1, sym_long_flag, - STATE(3713), 1, + STATE(3755), 1, sym_cmd_identifier, - STATE(3719), 1, + STATE(3763), 1, sym_val_string, - STATE(3820), 1, + STATE(3946), 1, sym__command_name, - ACTIONS(3902), 2, + ACTIONS(3633), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3645), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3904), 2, + ACTIONS(3647), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2274), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3635), 24, + 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_finally, + 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, + [33517] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1772), 1, + anon_sym_DQUOTE, + ACTIONS(1774), 1, + anon_sym_SQUOTE, + ACTIONS(1776), 1, + anon_sym_BQUOTE, + ACTIONS(1778), 1, + sym_raw_string_begin, + ACTIONS(3637), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3956), 1, + anon_sym_DASH_DASH, + STATE(1701), 1, + sym_comment, + STATE(1714), 1, + aux_sym_decl_def_repeat1, + STATE(2150), 1, + sym__val_number_decimal, + STATE(2188), 1, + sym_long_flag, + STATE(3755), 1, + sym_cmd_identifier, + STATE(3763), 1, + sym_val_string, + STATE(3907), 1, + sym__command_name, + ACTIONS(3633), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3645), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3647), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2266), 4, + STATE(2274), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3647), 25, + ACTIONS(3635), 24, + 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_finally, + 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, + [33604] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1772), 1, + anon_sym_DQUOTE, + ACTIONS(1774), 1, + anon_sym_SQUOTE, + ACTIONS(1776), 1, + anon_sym_BQUOTE, + ACTIONS(1778), 1, + sym_raw_string_begin, + ACTIONS(3637), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3956), 1, + anon_sym_DASH_DASH, + STATE(1702), 1, + sym_comment, + STATE(1984), 1, + aux_sym_decl_def_repeat1, + STATE(2150), 1, + sym__val_number_decimal, + STATE(2188), 1, + sym_long_flag, + STATE(3755), 1, + sym_cmd_identifier, + STATE(3763), 1, + sym_val_string, + STATE(3896), 1, + sym__command_name, + ACTIONS(3633), 2, anon_sym_export, + anon_sym_in, + ACTIONS(3645), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3647), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2274), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3635), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -168774,44 +170302,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, 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, + [33691] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1772), 1, + anon_sym_DQUOTE, + ACTIONS(1774), 1, + anon_sym_SQUOTE, + ACTIONS(1776), 1, + anon_sym_BQUOTE, + ACTIONS(1778), 1, + sym_raw_string_begin, + ACTIONS(3637), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3956), 1, + anon_sym_DASH_DASH, + STATE(1703), 1, + sym_comment, + STATE(1984), 1, + aux_sym_decl_def_repeat1, + STATE(2150), 1, + sym__val_number_decimal, + STATE(2188), 1, + sym_long_flag, + STATE(3755), 1, + sym_cmd_identifier, + STATE(3763), 1, + sym_val_string, + STATE(3889), 1, + sym__command_name, + ACTIONS(3633), 2, + anon_sym_export, anon_sym_in, + ACTIONS(3645), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3647), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2274), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3635), 24, + 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_finally, + 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, - [33322] = 11, + [33778] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3962), 1, + ACTIONS(3974), 1, anon_sym_DASH2, - ACTIONS(3972), 1, + ACTIONS(3984), 1, anon_sym_PLUS2, - STATE(1694), 1, + STATE(1704), 1, sym_comment, - ACTIONS(3960), 2, + ACTIONS(3972), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3964), 2, + ACTIONS(3976), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3968), 2, + ACTIONS(3980), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3970), 2, + ACTIONS(3982), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3974), 2, + ACTIONS(3986), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3966), 4, + ACTIONS(3978), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2551), 30, + ACTIONS(2648), 30, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -168842,31 +170438,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [33393] = 10, + [33849] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3962), 1, + ACTIONS(3974), 1, anon_sym_DASH2, - ACTIONS(3972), 1, + ACTIONS(3984), 1, anon_sym_PLUS2, - STATE(1695), 1, + STATE(1705), 1, sym_comment, - ACTIONS(2553), 2, + ACTIONS(2650), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3964), 2, + ACTIONS(3976), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3968), 2, + ACTIONS(3980), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3970), 2, + ACTIONS(3982), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3974), 2, + ACTIONS(3986), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2551), 34, + ACTIONS(2648), 34, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -168901,25 +170497,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [33462] = 7, + [33918] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1696), 1, + STATE(1706), 1, sym_comment, - ACTIONS(3964), 2, + ACTIONS(3976), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3968), 2, + ACTIONS(3980), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3970), 2, + ACTIONS(3982), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2553), 3, + ACTIONS(2650), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2551), 37, + ACTIONS(2648), 37, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -168957,21 +170553,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [33525] = 5, + [33981] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1697), 1, + STATE(1707), 1, sym_comment, - ACTIONS(3968), 2, + ACTIONS(3980), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2553), 5, + ACTIONS(2650), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2551), 39, + ACTIONS(2648), 39, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -169011,47 +170607,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [33584] = 16, + [34040] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3962), 1, + ACTIONS(3974), 1, anon_sym_DASH2, - ACTIONS(3972), 1, + ACTIONS(3984), 1, anon_sym_PLUS2, - ACTIONS(3980), 1, + ACTIONS(3992), 1, anon_sym_bit_DASHand2, - ACTIONS(3982), 1, + ACTIONS(3994), 1, anon_sym_bit_DASHxor2, - ACTIONS(3984), 1, + ACTIONS(3996), 1, anon_sym_bit_DASHor2, - STATE(1698), 1, + STATE(1708), 1, sym_comment, - ACTIONS(3960), 2, + ACTIONS(3972), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3964), 2, + ACTIONS(3976), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3968), 2, + ACTIONS(3980), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3970), 2, + ACTIONS(3982), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3974), 2, + ACTIONS(3986), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3966), 4, + ACTIONS(3978), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3978), 4, + ACTIONS(3990), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3976), 8, + ACTIONS(3988), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -169060,7 +170656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2551), 15, + ACTIONS(2648), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -169076,49 +170672,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [33665] = 17, + [34121] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3962), 1, + ACTIONS(3974), 1, anon_sym_DASH2, - ACTIONS(3972), 1, + ACTIONS(3984), 1, anon_sym_PLUS2, - ACTIONS(3980), 1, + ACTIONS(3992), 1, anon_sym_bit_DASHand2, - ACTIONS(3982), 1, + ACTIONS(3994), 1, anon_sym_bit_DASHxor2, - ACTIONS(3984), 1, + ACTIONS(3996), 1, anon_sym_bit_DASHor2, - ACTIONS(3986), 1, + ACTIONS(3998), 1, anon_sym_and2, - STATE(1699), 1, + STATE(1709), 1, sym_comment, - ACTIONS(3960), 2, + ACTIONS(3972), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3964), 2, + ACTIONS(3976), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3968), 2, + ACTIONS(3980), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3970), 2, + ACTIONS(3982), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3974), 2, + ACTIONS(3986), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3966), 4, + ACTIONS(3978), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3978), 4, + ACTIONS(3990), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3976), 8, + ACTIONS(3988), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -169127,7 +170723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2551), 14, + ACTIONS(2648), 14, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -169142,51 +170738,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_xor2, anon_sym_or2, - [33748] = 18, + [34204] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3962), 1, + ACTIONS(3974), 1, anon_sym_DASH2, - ACTIONS(3972), 1, + ACTIONS(3984), 1, anon_sym_PLUS2, - ACTIONS(3980), 1, + ACTIONS(3992), 1, anon_sym_bit_DASHand2, - ACTIONS(3982), 1, + ACTIONS(3994), 1, anon_sym_bit_DASHxor2, - ACTIONS(3984), 1, + ACTIONS(3996), 1, anon_sym_bit_DASHor2, - ACTIONS(3986), 1, + ACTIONS(3998), 1, anon_sym_and2, - ACTIONS(3988), 1, + ACTIONS(4000), 1, anon_sym_xor2, - STATE(1700), 1, + STATE(1710), 1, sym_comment, - ACTIONS(3960), 2, + ACTIONS(3972), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3964), 2, + ACTIONS(3976), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3968), 2, + ACTIONS(3980), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3970), 2, + ACTIONS(3982), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3974), 2, + ACTIONS(3986), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3966), 4, + ACTIONS(3978), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3978), 4, + ACTIONS(3990), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3976), 8, + ACTIONS(3988), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -169195,7 +170791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2551), 13, + ACTIONS(2648), 13, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -169209,36 +170805,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_or2, - [33833] = 12, + [34289] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3962), 1, + ACTIONS(3974), 1, anon_sym_DASH2, - ACTIONS(3972), 1, + ACTIONS(3984), 1, anon_sym_PLUS2, - STATE(1701), 1, + STATE(1711), 1, sym_comment, - ACTIONS(3960), 2, + ACTIONS(3972), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3964), 2, + ACTIONS(3976), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3968), 2, + ACTIONS(3980), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3970), 2, + ACTIONS(3982), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3974), 2, + ACTIONS(3986), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3966), 4, + ACTIONS(3978), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3976), 8, + ACTIONS(3988), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -169247,7 +170843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2551), 22, + ACTIONS(2648), 22, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -169270,28 +170866,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [33906] = 9, + [34362] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3962), 1, + ACTIONS(3974), 1, anon_sym_DASH2, - ACTIONS(3972), 1, + ACTIONS(3984), 1, anon_sym_PLUS2, - STATE(1702), 1, + STATE(1712), 1, sym_comment, - ACTIONS(2553), 2, + ACTIONS(2650), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3964), 2, + ACTIONS(3976), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3968), 2, + ACTIONS(3980), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3970), 2, + ACTIONS(3982), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2551), 36, + ACTIONS(2648), 36, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -169328,41 +170924,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [33973] = 13, + [34429] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3962), 1, + ACTIONS(3974), 1, anon_sym_DASH2, - ACTIONS(3972), 1, + ACTIONS(3984), 1, anon_sym_PLUS2, - STATE(1703), 1, + STATE(1713), 1, sym_comment, - ACTIONS(3960), 2, + ACTIONS(3972), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3964), 2, + ACTIONS(3976), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3968), 2, + ACTIONS(3980), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3970), 2, + ACTIONS(3982), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3974), 2, + ACTIONS(3986), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3966), 4, + ACTIONS(3978), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3978), 4, + ACTIONS(3990), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3976), 8, + ACTIONS(3988), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -169371,7 +170967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2551), 18, + ACTIONS(2648), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -169390,106 +170986,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [34048] = 14, + [34504] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3782), 1, - anon_sym_list, - ACTIONS(3784), 1, - anon_sym_oneof, - ACTIONS(3990), 1, - sym__newline, - ACTIONS(3992), 1, - anon_sym_RBRACK, - STATE(1704), 1, + ACTIONS(1772), 1, + anon_sym_DQUOTE, + ACTIONS(1774), 1, + anon_sym_SQUOTE, + ACTIONS(1776), 1, + anon_sym_BQUOTE, + ACTIONS(1778), 1, + sym_raw_string_begin, + ACTIONS(3637), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3956), 1, + anon_sym_DASH_DASH, + STATE(1714), 1, sym_comment, - STATE(1737), 1, - aux_sym__types_body_repeat1, - STATE(1821), 1, - aux_sym__types_body_repeat3, - STATE(4611), 1, - sym__one_type, - STATE(5080), 1, - sym__types_body, - STATE(5109), 1, - sym__type_annotation, - ACTIONS(3780), 2, - anon_sym_table, - anon_sym_record, - STATE(2651), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3778), 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, - [34125] = 14, + STATE(1984), 1, + aux_sym_decl_def_repeat1, + STATE(2150), 1, + sym__val_number_decimal, + STATE(2188), 1, + sym_long_flag, + STATE(3755), 1, + sym_cmd_identifier, + STATE(3763), 1, + sym_val_string, + STATE(3902), 1, + sym__command_name, + ACTIONS(3633), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3645), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3647), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2274), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3635), 24, + 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_finally, + 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, + [34591] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3962), 1, + ACTIONS(3974), 1, anon_sym_DASH2, - ACTIONS(3972), 1, + ACTIONS(3984), 1, anon_sym_PLUS2, - ACTIONS(3980), 1, + ACTIONS(3992), 1, anon_sym_bit_DASHand2, - STATE(1705), 1, + STATE(1715), 1, sym_comment, - ACTIONS(3960), 2, + ACTIONS(3972), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3964), 2, + ACTIONS(3976), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3968), 2, + ACTIONS(3980), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3970), 2, + ACTIONS(3982), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3974), 2, + ACTIONS(3986), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3966), 4, + ACTIONS(3978), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3978), 4, + ACTIONS(3990), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3976), 8, + ACTIONS(3988), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -169498,7 +171099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2551), 17, + ACTIONS(2648), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -169516,45 +171117,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [34202] = 15, + [34668] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3962), 1, + ACTIONS(3974), 1, anon_sym_DASH2, - ACTIONS(3972), 1, + ACTIONS(3984), 1, anon_sym_PLUS2, - ACTIONS(3980), 1, + ACTIONS(3992), 1, anon_sym_bit_DASHand2, - ACTIONS(3982), 1, + ACTIONS(3994), 1, anon_sym_bit_DASHxor2, - STATE(1706), 1, + STATE(1716), 1, sym_comment, - ACTIONS(3960), 2, + ACTIONS(3972), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3964), 2, + ACTIONS(3976), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3968), 2, + ACTIONS(3980), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3970), 2, + ACTIONS(3982), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3974), 2, + ACTIONS(3986), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3966), 4, + ACTIONS(3978), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3978), 4, + ACTIONS(3990), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3976), 8, + ACTIONS(3988), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -169563,35 +171164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2551), 16, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - [34281] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1707), 1, - sym_comment, - ACTIONS(2583), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(3771), 12, + ACTIONS(2648), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -169604,276 +171177,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - ACTIONS(2581), 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, - [34340] = 12, + [34747] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1600), 1, - anon_sym_DOLLAR, - ACTIONS(1604), 1, - anon_sym_LPAREN2, - ACTIONS(1635), 1, - sym__unquoted_pattern, - ACTIONS(3994), 1, - anon_sym_DOT, - STATE(1708), 1, - sym_comment, - STATE(1908), 1, - sym__immediate_decimal, - ACTIONS(3996), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3998), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(1972), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1602), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1598), 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, - [34413] = 19, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1800), 1, + ACTIONS(1772), 1, anon_sym_DQUOTE, - ACTIONS(1802), 1, + ACTIONS(1774), 1, anon_sym_SQUOTE, - ACTIONS(1804), 1, + ACTIONS(1776), 1, anon_sym_BQUOTE, - ACTIONS(1806), 1, + ACTIONS(1778), 1, sym_raw_string_begin, - ACTIONS(2555), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3651), 1, + ACTIONS(3637), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3900), 1, + ACTIONS(3956), 1, anon_sym_DASH_DASH, - STATE(1709), 1, + STATE(1717), 1, sym_comment, - STATE(1723), 1, + STATE(1984), 1, aux_sym_decl_def_repeat1, - STATE(2133), 1, + STATE(2150), 1, sym__val_number_decimal, - STATE(2168), 1, + STATE(2188), 1, sym_long_flag, - STATE(3713), 1, + STATE(3755), 1, sym_cmd_identifier, - STATE(3719), 1, + STATE(3763), 1, sym_val_string, - STATE(3831), 1, + STATE(3871), 1, sym__command_name, - ACTIONS(3902), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3904), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2266), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3647), 25, + ACTIONS(3633), 2, 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, - [34500] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1422), 1, - anon_sym_DQUOTE, - ACTIONS(1424), 1, - anon_sym_SQUOTE, - ACTIONS(1426), 1, - anon_sym_BQUOTE, - ACTIONS(1436), 1, - sym_raw_string_begin, - ACTIONS(3814), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3816), 1, - sym__newline, - STATE(1710), 1, - sym_comment, - STATE(1770), 1, - aux_sym__command_list_body_repeat1, - STATE(2138), 1, - sym__val_number_decimal, - STATE(2159), 1, - aux_sym__types_body_repeat1, - STATE(4633), 1, - sym__command_name, - STATE(4851), 1, - sym_cmd_identifier, - STATE(4852), 1, - sym_val_string, - ACTIONS(3659), 2, + ACTIONS(3645), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3661), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3810), 2, - anon_sym_export, - anon_sym_in, - STATE(3665), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3812), 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, - [34586] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1800), 1, - anon_sym_DQUOTE, - ACTIONS(1802), 1, - anon_sym_SQUOTE, - ACTIONS(1804), 1, - anon_sym_BQUOTE, - ACTIONS(1806), 1, - sym_raw_string_begin, - ACTIONS(3651), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(4000), 1, - anon_sym_DASH_DASH, - STATE(1711), 1, - sym_comment, - STATE(2126), 1, - aux_sym_decl_def_repeat1, - STATE(2133), 1, - sym__val_number_decimal, - STATE(2168), 1, - sym_long_flag, - STATE(3713), 1, - sym_cmd_identifier, - STATE(3719), 1, - sym_val_string, - STATE(3789), 1, - sym__command_name, ACTIONS(3647), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3659), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3661), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2266), 4, + STATE(2274), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3649), 23, + ACTIONS(3635), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -169890,6 +171241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -169897,225 +171249,118 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [34672] = 19, + [34834] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1800), 1, + ACTIONS(1772), 1, anon_sym_DQUOTE, - ACTIONS(1802), 1, + ACTIONS(1774), 1, anon_sym_SQUOTE, - ACTIONS(1804), 1, + ACTIONS(1776), 1, anon_sym_BQUOTE, - ACTIONS(1806), 1, + ACTIONS(1778), 1, sym_raw_string_begin, - ACTIONS(3651), 1, + ACTIONS(3637), 1, aux_sym_cmd_identifier_token1, - ACTIONS(4000), 1, + ACTIONS(3956), 1, anon_sym_DASH_DASH, - STATE(1712), 1, + STATE(1718), 1, sym_comment, - STATE(2126), 1, + STATE(1719), 1, aux_sym_decl_def_repeat1, - STATE(2133), 1, + STATE(2150), 1, sym__val_number_decimal, - STATE(2168), 1, + STATE(2188), 1, sym_long_flag, - STATE(3713), 1, + STATE(3755), 1, sym_cmd_identifier, - STATE(3719), 1, + STATE(3763), 1, sym_val_string, - STATE(3878), 1, + STATE(3853), 1, sym__command_name, - ACTIONS(3647), 2, + ACTIONS(3633), 2, anon_sym_export, anon_sym_in, - ACTIONS(3659), 2, + ACTIONS(3645), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3661), 2, + ACTIONS(3647), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2266), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3649), 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, - [34758] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4002), 1, - anon_sym_DOT, - ACTIONS(4004), 1, - aux_sym__immediate_decimal_token5, - STATE(1713), 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, - [34818] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4006), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4008), 1, - aux_sym__immediate_decimal_token5, - STATE(1714), 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), 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, - [34878] = 19, + STATE(2274), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3635), 24, + 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_finally, + 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, + [34921] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1800), 1, + ACTIONS(1772), 1, anon_sym_DQUOTE, - ACTIONS(1802), 1, + ACTIONS(1774), 1, anon_sym_SQUOTE, - ACTIONS(1804), 1, + ACTIONS(1776), 1, anon_sym_BQUOTE, - ACTIONS(1806), 1, + ACTIONS(1778), 1, sym_raw_string_begin, - ACTIONS(3651), 1, + ACTIONS(3637), 1, aux_sym_cmd_identifier_token1, - ACTIONS(4000), 1, + ACTIONS(3956), 1, anon_sym_DASH_DASH, - STATE(1715), 1, + STATE(1719), 1, sym_comment, - STATE(1716), 1, + STATE(1984), 1, aux_sym_decl_def_repeat1, - STATE(2133), 1, + STATE(2150), 1, sym__val_number_decimal, - STATE(2168), 1, + STATE(2188), 1, sym_long_flag, - STATE(3713), 1, + STATE(3755), 1, sym_cmd_identifier, - STATE(3719), 1, + STATE(3763), 1, sym_val_string, - STATE(3884), 1, + STATE(3861), 1, sym__command_name, - ACTIONS(3647), 2, + ACTIONS(3633), 2, anon_sym_export, anon_sym_in, - ACTIONS(3659), 2, + ACTIONS(3645), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3661), 2, + ACTIONS(3647), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2266), 4, + STATE(2274), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3649), 23, + ACTIONS(3635), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -170132,6 +171377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -170139,50 +171385,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [34964] = 19, + [35008] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1800), 1, + ACTIONS(1772), 1, anon_sym_DQUOTE, - ACTIONS(1802), 1, + ACTIONS(1774), 1, anon_sym_SQUOTE, - ACTIONS(1804), 1, + ACTIONS(1776), 1, anon_sym_BQUOTE, - ACTIONS(1806), 1, + ACTIONS(1778), 1, sym_raw_string_begin, - ACTIONS(3651), 1, + ACTIONS(3637), 1, aux_sym_cmd_identifier_token1, - ACTIONS(4000), 1, + ACTIONS(3956), 1, anon_sym_DASH_DASH, - STATE(1716), 1, - sym_comment, - STATE(2126), 1, + STATE(1717), 1, aux_sym_decl_def_repeat1, - STATE(2133), 1, + STATE(1720), 1, + sym_comment, + STATE(2150), 1, sym__val_number_decimal, - STATE(2168), 1, + STATE(2188), 1, sym_long_flag, - STATE(3713), 1, + STATE(3755), 1, sym_cmd_identifier, - STATE(3719), 1, + STATE(3763), 1, sym_val_string, - STATE(3795), 1, + STATE(3865), 1, sym__command_name, - ACTIONS(3647), 2, + ACTIONS(3633), 2, anon_sym_export, anon_sym_in, - ACTIONS(3659), 2, + ACTIONS(3645), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3661), 2, + ACTIONS(3647), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2266), 4, + STATE(2274), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3649), 23, + ACTIONS(3635), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -170199,6 +171445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -170206,95 +171453,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [35050] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1600), 1, - anon_sym_DOLLAR, - ACTIONS(1604), 1, - anon_sym_LPAREN2, - ACTIONS(1606), 1, - anon_sym_DOT, - STATE(1717), 1, - sym_comment, - STATE(1959), 1, - sym__immediate_decimal, - ACTIONS(3996), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3998), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(1972), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1602), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1598), 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, - [35120] = 11, + [35095] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1600), 1, + ACTIONS(1601), 1, anon_sym_DOLLAR, - ACTIONS(1604), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, - ACTIONS(1635), 1, + ACTIONS(1695), 1, sym__unquoted_pattern, - STATE(1718), 1, + STATE(1721), 1, sym_comment, - STATE(1999), 1, + STATE(2024), 1, sym__immediate_decimal, - ACTIONS(4010), 2, + ACTIONS(4002), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(4012), 2, + ACTIONS(4004), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(730), 2, + STATE(807), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1602), 6, + ACTIONS(1683), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1598), 29, + ACTIONS(1681), 29, anon_sym_in, anon_sym_EQ_GT, anon_sym_and2, @@ -170324,97 +171512,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [35190] = 11, + [35165] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1600), 1, - anon_sym_DOLLAR, - ACTIONS(1604), 1, - anon_sym_LPAREN2, - ACTIONS(1679), 1, - sym__unquoted_pattern, - STATE(1719), 1, + ACTIONS(4006), 1, + anon_sym_DOT2, + STATE(1722), 1, sym_comment, - STATE(2001), 1, - sym__immediate_decimal, - ACTIONS(4010), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(4012), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(748), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1653), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1651), 29, + STATE(1756), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1834), 1, + sym_path, + STATE(1872), 1, + sym_cell_path, + ACTIONS(1454), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, 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, - [35260] = 11, + ACTIONS(1456), 38, + 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_finally, + 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, + [35229] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1600), 1, - anon_sym_DOLLAR, - ACTIONS(1604), 1, - anon_sym_LPAREN2, - ACTIONS(1643), 1, + ACTIONS(4008), 1, anon_sym_DOT, - STATE(1720), 1, + ACTIONS(4010), 1, + aux_sym__immediate_decimal_token5, + STATE(1723), 1, sym_comment, - STATE(1996), 1, - sym__immediate_decimal, - ACTIONS(3996), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3998), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(1970), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1641), 6, + ACTIONS(747), 8, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1639), 29, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(749), 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, @@ -170433,6 +171609,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, @@ -170442,50 +171619,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [35330] = 19, - ACTIONS(3), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [35289] = 17, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1800), 1, + ACTIONS(1772), 1, anon_sym_DQUOTE, - ACTIONS(1802), 1, + ACTIONS(1774), 1, anon_sym_SQUOTE, - ACTIONS(1804), 1, + ACTIONS(1776), 1, anon_sym_BQUOTE, - ACTIONS(1806), 1, + ACTIONS(1778), 1, sym_raw_string_begin, - ACTIONS(3651), 1, + ACTIONS(2754), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2756), 1, + anon_sym_COLON2, + ACTIONS(3637), 1, aux_sym_cmd_identifier_token1, - ACTIONS(4000), 1, - anon_sym_DASH_DASH, - STATE(1721), 1, + STATE(1724), 1, sym_comment, - STATE(2126), 1, - aux_sym_decl_def_repeat1, - STATE(2133), 1, + STATE(2150), 1, sym__val_number_decimal, - STATE(2168), 1, - sym_long_flag, - STATE(3713), 1, + STATE(3755), 1, sym_cmd_identifier, - STATE(3719), 1, + STATE(3763), 1, sym_val_string, - STATE(3855), 1, + STATE(5500), 1, sym__command_name, - ACTIONS(3647), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3659), 2, + ACTIONS(3800), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3661), 2, + ACTIONS(3802), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2266), 4, + STATE(2274), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3649), 23, + ACTIONS(3633), 26, + anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -170502,57 +171678,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, 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, - [35416] = 19, - ACTIONS(3), 1, + [35371] = 17, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1800), 1, + ACTIONS(1772), 1, anon_sym_DQUOTE, - ACTIONS(1802), 1, + ACTIONS(1774), 1, anon_sym_SQUOTE, - ACTIONS(1804), 1, + ACTIONS(1776), 1, anon_sym_BQUOTE, - ACTIONS(1806), 1, + ACTIONS(1778), 1, sym_raw_string_begin, - ACTIONS(3651), 1, + ACTIONS(2754), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2756), 1, + anon_sym_COLON2, + ACTIONS(3637), 1, aux_sym_cmd_identifier_token1, - ACTIONS(4000), 1, - anon_sym_DASH_DASH, - STATE(1722), 1, + STATE(1725), 1, sym_comment, - STATE(1724), 1, - aux_sym_decl_def_repeat1, - STATE(2133), 1, + STATE(2150), 1, sym__val_number_decimal, - STATE(2168), 1, - sym_long_flag, - STATE(3713), 1, + STATE(3755), 1, sym_cmd_identifier, - STATE(3719), 1, + STATE(3763), 1, sym_val_string, - STATE(3858), 1, + STATE(4365), 1, sym__command_name, - ACTIONS(3647), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3659), 2, + ACTIONS(3800), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3661), 2, + ACTIONS(3802), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2266), 4, + STATE(2274), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3649), 23, + ACTIONS(3633), 26, + anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -170569,57 +171743,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, 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, - [35502] = 19, + [35453] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1800), 1, + ACTIONS(1601), 1, + anon_sym_DOLLAR, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + ACTIONS(1607), 1, + anon_sym_DOT, + STATE(1726), 1, + sym_comment, + STATE(1985), 1, + sym__immediate_decimal, + ACTIONS(3968), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3970), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(1956), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1603), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1599), 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, + [35523] = 17, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1772), 1, anon_sym_DQUOTE, - ACTIONS(1802), 1, + ACTIONS(1774), 1, anon_sym_SQUOTE, - ACTIONS(1804), 1, + ACTIONS(1776), 1, anon_sym_BQUOTE, - ACTIONS(1806), 1, + ACTIONS(1778), 1, sym_raw_string_begin, - ACTIONS(3651), 1, + ACTIONS(2754), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2756), 1, + anon_sym_COLON2, + ACTIONS(3637), 1, aux_sym_cmd_identifier_token1, - ACTIONS(4000), 1, - anon_sym_DASH_DASH, - STATE(1723), 1, + STATE(1727), 1, sym_comment, - STATE(2126), 1, - aux_sym_decl_def_repeat1, - STATE(2133), 1, + STATE(2150), 1, sym__val_number_decimal, - STATE(2168), 1, - sym_long_flag, - STATE(3713), 1, + STATE(3755), 1, sym_cmd_identifier, - STATE(3719), 1, + STATE(3763), 1, sym_val_string, - STATE(3863), 1, + STATE(4047), 1, sym__command_name, - ACTIONS(3647), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3659), 2, + ACTIONS(3800), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3661), 2, + ACTIONS(3802), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2266), 4, + STATE(2274), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3649), 23, + ACTIONS(3633), 26, + anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -170636,57 +171867,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, 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, - [35588] = 19, + [35605] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1800), 1, - anon_sym_DQUOTE, - ACTIONS(1802), 1, - anon_sym_SQUOTE, - ACTIONS(1804), 1, - anon_sym_BQUOTE, - ACTIONS(1806), 1, - sym_raw_string_begin, - ACTIONS(3651), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(4000), 1, - anon_sym_DASH_DASH, - STATE(1724), 1, + ACTIONS(4012), 1, + anon_sym_QMARK2, + ACTIONS(4014), 1, + anon_sym_BANG, + STATE(1728), 1, sym_comment, - STATE(2126), 1, - aux_sym_decl_def_repeat1, - STATE(2133), 1, - sym__val_number_decimal, - STATE(2168), 1, - sym_long_flag, - STATE(3713), 1, - sym_cmd_identifier, - STATE(3719), 1, - sym_val_string, - STATE(3875), 1, - sym__command_name, - ACTIONS(3647), 2, + STATE(1847), 1, + sym__path_suffix, + ACTIONS(1442), 4, anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(3659), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3661), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2266), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3649), 23, + anon_sym_DOT2, + ACTIONS(1444), 38, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -170703,6 +171910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -170710,50 +171918,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [35674] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1800), 1, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, - ACTIONS(1802), 1, anon_sym_SQUOTE, - ACTIONS(1804), 1, anon_sym_BQUOTE, - ACTIONS(1806), 1, - sym_raw_string_begin, - ACTIONS(3651), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(4000), 1, - anon_sym_DASH_DASH, - STATE(1711), 1, - aux_sym_decl_def_repeat1, - STATE(1725), 1, + [35667] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4006), 1, + anon_sym_DOT2, + STATE(1729), 1, sym_comment, - STATE(2133), 1, - sym__val_number_decimal, - STATE(2168), 1, - sym_long_flag, - STATE(3713), 1, - sym_cmd_identifier, - STATE(3719), 1, - sym_val_string, - STATE(3803), 1, - sym__command_name, - ACTIONS(3647), 2, + STATE(1756), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1834), 1, + sym_path, + STATE(1885), 1, + sym_cell_path, + ACTIONS(1655), 3, anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(3659), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3661), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2266), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3649), 23, + ACTIONS(1653), 38, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -170770,6 +171966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -170777,50 +171974,92 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [35760] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1800), 1, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, - ACTIONS(1802), 1, anon_sym_SQUOTE, - ACTIONS(1804), 1, anon_sym_BQUOTE, - ACTIONS(1806), 1, - sym_raw_string_begin, - ACTIONS(3651), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(4000), 1, - anon_sym_DASH_DASH, - STATE(1721), 1, - aux_sym_decl_def_repeat1, - STATE(1726), 1, + [35731] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4016), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4018), 1, + aux_sym__immediate_decimal_token5, + STATE(1730), 1, sym_comment, - STATE(2133), 1, - sym__val_number_decimal, - STATE(2168), 1, - sym_long_flag, - STATE(3713), 1, - sym_cmd_identifier, - STATE(3719), 1, - sym_val_string, - STATE(3833), 1, - sym__command_name, - ACTIONS(3647), 2, + 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), 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, + [35791] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4006), 1, + anon_sym_DOT2, + STATE(1731), 1, + sym_comment, + STATE(1756), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1834), 1, + sym_path, + STATE(1889), 1, + sym_cell_path, + ACTIONS(1649), 3, anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(3659), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3661), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2266), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3649), 23, + ACTIONS(1647), 38, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -170837,6 +172076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -170844,27 +172084,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [35846] = 5, + 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, + [35855] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4014), 1, - aux_sym__immediate_decimal_token5, - STATE(1727), 1, + ACTIONS(1601), 1, + anon_sym_DOLLAR, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + ACTIONS(1639), 1, + anon_sym_DOT, + STATE(1732), 1, sym_comment, - ACTIONS(771), 8, + STATE(1977), 1, + sym__immediate_decimal, + ACTIONS(3968), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3970), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(1986), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1633), 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(773), 35, + ACTIONS(1631), 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, @@ -170883,7 +172147,65 @@ 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, + [35925] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1601), 1, + anon_sym_DOLLAR, + ACTIONS(1605), 1, anon_sym_LPAREN2, + ACTIONS(1637), 1, + sym__unquoted_pattern, + STATE(1733), 1, + sym_comment, + STATE(2022), 1, + sym__immediate_decimal, + ACTIONS(4002), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4004), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(788), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1633), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1631), 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, @@ -170893,37 +172215,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, - [35903] = 12, + [35995] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3990), 1, + ACTIONS(3958), 1, sym__newline, - ACTIONS(4020), 1, + ACTIONS(4024), 1, anon_sym_list, - ACTIONS(4022), 1, + ACTIONS(4026), 1, anon_sym_oneof, - STATE(1728), 1, + STATE(1734), 1, sym_comment, - STATE(1750), 1, + STATE(1780), 1, aux_sym__types_body_repeat1, - STATE(1857), 1, + STATE(1871), 1, aux_sym__composite_argument_body_repeat1, - STATE(4533), 1, + STATE(4703), 1, sym__all_type, - STATE(5115), 1, + STATE(5472), 1, sym__composite_argument_body, - ACTIONS(4018), 2, + ACTIONS(4022), 2, anon_sym_table, anon_sym_record, - STATE(4673), 4, + STATE(4685), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4016), 31, + ACTIONS(4020), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -170955,89 +172274,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [35974] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4024), 1, - anon_sym_DOT2, - STATE(1729), 1, - sym_comment, - STATE(1777), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(1866), 1, - sym_path, - STATE(1899), 1, - sym_cell_path, - ACTIONS(1659), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1657), 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, - [36037] = 10, + [36066] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1600), 1, + ACTIONS(1601), 1, anon_sym_DOLLAR, - ACTIONS(1604), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, - STATE(904), 1, + STATE(966), 1, sym__immediate_decimal, - STATE(1730), 1, + STATE(1735), 1, sym_comment, - ACTIONS(4010), 2, + ACTIONS(4002), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(4012), 2, + ACTIONS(4004), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(730), 2, + STATE(788), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1602), 6, + ACTIONS(1633), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1598), 29, + ACTIONS(1631), 29, anon_sym_in, anon_sym_EQ_GT, anon_sym_and2, @@ -171067,98 +172331,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [36104] = 17, - ACTIONS(103), 1, + [36133] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1800), 1, - anon_sym_DQUOTE, - ACTIONS(1802), 1, - anon_sym_SQUOTE, - ACTIONS(1804), 1, - anon_sym_BQUOTE, - ACTIONS(1806), 1, - sym_raw_string_begin, - ACTIONS(2682), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2684), 1, - anon_sym_COLON2, - ACTIONS(3651), 1, - aux_sym_cmd_identifier_token1, - STATE(1731), 1, + ACTIONS(4010), 1, + aux_sym__immediate_decimal_token5, + STATE(1736), 1, sym_comment, - STATE(2133), 1, - sym__val_number_decimal, - STATE(3713), 1, - sym_cmd_identifier, - STATE(3719), 1, - sym_val_string, - STATE(5011), 1, - sym__command_name, - ACTIONS(3902), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3904), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2266), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3647), 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, + 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, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [36185] = 10, + 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, + [36190] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1600), 1, + ACTIONS(1601), 1, anon_sym_DOLLAR, - ACTIONS(1604), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, - STATE(930), 1, + STATE(944), 1, sym__immediate_decimal, - STATE(1732), 1, + STATE(1737), 1, sym_comment, - ACTIONS(4010), 2, + ACTIONS(4002), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(4012), 2, + ACTIONS(4004), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(748), 2, + STATE(807), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1653), 6, + ACTIONS(1683), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1651), 29, + ACTIONS(1681), 29, anon_sym_in, anon_sym_EQ_GT, anon_sym_and2, @@ -171188,24 +172440,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [36252] = 8, + [36257] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4024), 1, - anon_sym_DOT2, - STATE(1733), 1, + STATE(1738), 1, sym_comment, - STATE(1777), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(1866), 1, - sym_path, - STATE(1880), 1, - sym_cell_path, - ACTIONS(1647), 3, + ACTIONS(1508), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1645), 37, + anon_sym_DOT2, + ACTIONS(1510), 40, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -171223,6 +172468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -171243,25 +172489,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [36315] = 8, + anon_sym_QMARK2, + anon_sym_BANG, + [36312] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4024), 1, + ACTIONS(4028), 1, anon_sym_DOT2, - STATE(1734), 1, + STATE(1739), 1, sym_comment, - STATE(1777), 1, + STATE(1782), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(1866), 1, + STATE(1891), 1, sym_path, - STATE(1884), 1, + STATE(1927), 1, sym_cell_path, - ACTIONS(1442), 3, + ACTIONS(1454), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1444), 37, + ACTIONS(1456), 37, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -171278,6 +172527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -171288,8 +172538,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, @@ -171298,23 +172546,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [36378] = 7, + [36375] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4026), 1, - anon_sym_QMARK2, - ACTIONS(4028), 1, - anon_sym_BANG, - STATE(1735), 1, + STATE(1740), 1, sym_comment, - STATE(1868), 1, - sym__path_suffix, - ACTIONS(1456), 4, + ACTIONS(1512), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1458), 37, + ACTIONS(1514), 40, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -171332,6 +172574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -171352,27 +172595,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [36439] = 5, + anon_sym_QMARK2, + anon_sym_BANG, + [36430] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4004), 1, - aux_sym__immediate_decimal_token5, - STATE(1736), 1, + ACTIONS(1601), 1, + anon_sym_DOLLAR, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + STATE(784), 1, + sym__immediate_decimal, + STATE(1741), 1, sym_comment, - ACTIONS(747), 8, + ACTIONS(4002), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4004), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(783), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1603), 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), 35, + ACTIONS(1599), 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, @@ -171391,7 +172645,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, @@ -171401,165 +172654,94 @@ 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, - [36496] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3782), 1, - anon_sym_list, - ACTIONS(3784), 1, - anon_sym_oneof, - ACTIONS(3990), 1, - sym__newline, - STATE(1737), 1, - sym_comment, - STATE(1813), 1, - aux_sym__types_body_repeat3, - STATE(1951), 1, - aux_sym__types_body_repeat1, - STATE(4548), 1, - sym__one_type, - STATE(5109), 1, - sym__type_annotation, - ACTIONS(3780), 2, - anon_sym_table, - anon_sym_record, - STATE(2651), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3778), 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, - [36567] = 11, + [36497] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1724), 1, - anon_sym_LPAREN2, - ACTIONS(1734), 1, - sym__unquoted_pattern, - ACTIONS(4030), 1, - anon_sym_DOT_DOT2, - ACTIONS(4034), 1, - sym_filesize_unit, - ACTIONS(4036), 1, - sym_duration_unit, - STATE(1738), 1, + STATE(1742), 1, sym_comment, - STATE(4801), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4032), 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(886), 31, + ACTIONS(1520), 4, + 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_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [36636] = 17, + anon_sym_DOT2, + ACTIONS(1522), 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_finally, + 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, + anon_sym_QMARK2, + anon_sym_BANG, + [36552] = 16, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1800), 1, + ACTIONS(1772), 1, anon_sym_DQUOTE, - ACTIONS(1802), 1, + ACTIONS(1774), 1, anon_sym_SQUOTE, - ACTIONS(1804), 1, + ACTIONS(1776), 1, anon_sym_BQUOTE, - ACTIONS(1806), 1, + ACTIONS(1778), 1, sym_raw_string_begin, - ACTIONS(2682), 1, + ACTIONS(2594), 1, aux_sym_cmd_identifier_token2, - ACTIONS(2684), 1, - anon_sym_COLON2, - ACTIONS(3651), 1, + ACTIONS(3637), 1, aux_sym_cmd_identifier_token1, - STATE(1739), 1, + STATE(1743), 1, sym_comment, - STATE(2133), 1, + STATE(2150), 1, sym__val_number_decimal, - STATE(3713), 1, + STATE(3755), 1, sym_cmd_identifier, - STATE(3719), 1, + STATE(3763), 1, sym_val_string, - STATE(4225), 1, + STATE(5500), 1, sym__command_name, - ACTIONS(3902), 2, + ACTIONS(3800), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3904), 2, + ACTIONS(3802), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2266), 4, + STATE(2274), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3647), 25, + ACTIONS(3633), 26, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -171577,6 +172759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_in, anon_sym_true, @@ -171585,45 +172768,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [36717] = 17, + [36631] = 16, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1800), 1, + ACTIONS(1772), 1, anon_sym_DQUOTE, - ACTIONS(1802), 1, + ACTIONS(1774), 1, anon_sym_SQUOTE, - ACTIONS(1804), 1, + ACTIONS(1776), 1, anon_sym_BQUOTE, - ACTIONS(1806), 1, + ACTIONS(1778), 1, sym_raw_string_begin, - ACTIONS(2682), 1, + ACTIONS(2594), 1, aux_sym_cmd_identifier_token2, - ACTIONS(2684), 1, - anon_sym_COLON2, - ACTIONS(3651), 1, + ACTIONS(3637), 1, aux_sym_cmd_identifier_token1, - STATE(1740), 1, + STATE(1744), 1, sym_comment, - STATE(2133), 1, + STATE(2150), 1, sym__val_number_decimal, - STATE(3713), 1, + STATE(3755), 1, sym_cmd_identifier, - STATE(3719), 1, + STATE(3763), 1, sym_val_string, - STATE(3964), 1, + STATE(4365), 1, sym__command_name, - ACTIONS(3902), 2, + ACTIONS(3800), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3904), 2, + ACTIONS(3802), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2266), 4, + STATE(2274), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3647), 25, + ACTIONS(3633), 26, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -171641,6 +172822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_in, anon_sym_true, @@ -171649,197 +172831,160 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [36798] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1600), 1, - anon_sym_DOLLAR, - ACTIONS(1604), 1, - anon_sym_LPAREN2, - STATE(729), 1, - sym__immediate_decimal, - STATE(1741), 1, - sym_comment, - ACTIONS(4010), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(4012), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(728), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1641), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1639), 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, - [36865] = 6, - ACTIONS(3), 1, + [36710] = 16, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4038), 1, - anon_sym_DOT, - ACTIONS(4040), 1, - aux_sym__immediate_decimal_token5, - STATE(1742), 1, + ACTIONS(1772), 1, + anon_sym_DQUOTE, + ACTIONS(1774), 1, + anon_sym_SQUOTE, + ACTIONS(1776), 1, + anon_sym_BQUOTE, + ACTIONS(1778), 1, + sym_raw_string_begin, + ACTIONS(2594), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3637), 1, + aux_sym_cmd_identifier_token1, + STATE(1745), 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, + STATE(2150), 1, + sym__val_number_decimal, + STATE(3755), 1, + sym_cmd_identifier, + STATE(3763), 1, + sym_val_string, + STATE(4047), 1, + sym__command_name, + ACTIONS(3800), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3802), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2274), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3633), 26, + 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_finally, + anon_sym_match, 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, - [36924] = 6, - ACTIONS(3), 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, + [36789] = 16, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4042), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4044), 1, - aux_sym__immediate_decimal_token5, - STATE(1743), 1, + ACTIONS(1772), 1, + anon_sym_DQUOTE, + ACTIONS(1774), 1, + anon_sym_SQUOTE, + ACTIONS(1776), 1, + anon_sym_BQUOTE, + ACTIONS(1778), 1, + sym_raw_string_begin, + ACTIONS(2594), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3637), 1, + aux_sym_cmd_identifier_token1, + STATE(1746), 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, + STATE(2150), 1, + sym__val_number_decimal, + STATE(3755), 1, + sym_cmd_identifier, + STATE(3763), 1, + sym_val_string, + STATE(5353), 1, + sym__command_name, + ACTIONS(3800), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3802), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2274), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3633), 26, + 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_finally, + anon_sym_match, 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, - [36983] = 10, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [36868] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1600), 1, + ACTIONS(1601), 1, anon_sym_DOLLAR, - ACTIONS(1604), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, - STATE(743), 1, + STATE(802), 1, sym__immediate_decimal, - STATE(1744), 1, + STATE(1747), 1, sym_comment, - ACTIONS(4010), 2, + ACTIONS(4002), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(4012), 2, + ACTIONS(4004), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(742), 2, + STATE(801), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1669), 6, + ACTIONS(1679), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1667), 29, + ACTIONS(1677), 29, anon_sym_in, anon_sym_EQ_GT, anon_sym_and2, @@ -171869,34 +173014,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [37050] = 10, + [36935] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1600), 1, + ACTIONS(1601), 1, anon_sym_DOLLAR, - ACTIONS(1604), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, - STATE(745), 1, + STATE(804), 1, sym__immediate_decimal, - STATE(1745), 1, + STATE(1748), 1, sym_comment, - ACTIONS(4010), 2, + ACTIONS(4002), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(4012), 2, + ACTIONS(4004), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(744), 2, + STATE(803), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1683), 6, + ACTIONS(1661), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1681), 29, + ACTIONS(1659), 29, anon_sym_in, anon_sym_EQ_GT, anon_sym_and2, @@ -171926,34 +173071,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [37117] = 10, + [37002] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1600), 1, + ACTIONS(1601), 1, anon_sym_DOLLAR, - ACTIONS(1604), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, - STATE(747), 1, + STATE(806), 1, sym__immediate_decimal, - STATE(1746), 1, + STATE(1749), 1, sym_comment, - ACTIONS(4010), 2, + ACTIONS(4002), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(4012), 2, + ACTIONS(4004), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(746), 2, + STATE(805), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1665), 6, + ACTIONS(1671), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1663), 29, + ACTIONS(1669), 29, anon_sym_in, anon_sym_EQ_GT, anon_sym_and2, @@ -171983,258 +173128,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [37184] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3990), 1, - sym__newline, - ACTIONS(4020), 1, - anon_sym_list, - ACTIONS(4022), 1, - anon_sym_oneof, - STATE(1747), 1, - sym_comment, - STATE(1750), 1, - aux_sym__types_body_repeat1, - STATE(1857), 1, - aux_sym__composite_argument_body_repeat1, - STATE(4533), 1, - sym__all_type, - STATE(5097), 1, - sym__composite_argument_body, - ACTIONS(4018), 2, - anon_sym_table, - anon_sym_record, - STATE(4673), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(4016), 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, - [37255] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3990), 1, - sym__newline, - ACTIONS(4020), 1, - anon_sym_list, - ACTIONS(4022), 1, - anon_sym_oneof, - STATE(1748), 1, - sym_comment, - STATE(1750), 1, - aux_sym__types_body_repeat1, - STATE(1857), 1, - aux_sym__composite_argument_body_repeat1, - STATE(4533), 1, - sym__all_type, - STATE(4984), 1, - sym__composite_argument_body, - ACTIONS(4018), 2, - anon_sym_table, - anon_sym_record, - STATE(4673), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(4016), 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, - [37326] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3990), 1, - sym__newline, - ACTIONS(4020), 1, - anon_sym_list, - ACTIONS(4022), 1, - anon_sym_oneof, - STATE(1749), 1, - sym_comment, - STATE(1750), 1, - aux_sym__types_body_repeat1, - STATE(1857), 1, - aux_sym__composite_argument_body_repeat1, - STATE(4533), 1, - sym__all_type, - STATE(5349), 1, - sym__composite_argument_body, - ACTIONS(4018), 2, - anon_sym_table, - anon_sym_record, - STATE(4673), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(4016), 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, - [37397] = 11, + [37069] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3990), 1, - sym__newline, - ACTIONS(4020), 1, - anon_sym_list, - ACTIONS(4022), 1, - anon_sym_oneof, STATE(1750), 1, sym_comment, - STATE(1858), 1, - aux_sym__composite_argument_body_repeat1, - STATE(1951), 1, - aux_sym__types_body_repeat1, - STATE(4607), 1, - sym__all_type, - ACTIONS(4018), 2, - anon_sym_table, - anon_sym_record, - STATE(4673), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(4016), 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, - [37465] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4046), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4048), 1, - aux_sym__immediate_decimal_token5, - STATE(1751), 1, - sym_comment, - ACTIONS(739), 7, + ACTIONS(1528), 4, 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(741), 34, + anon_sym_DOT2, + ACTIONS(1530), 40, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -172252,6 +173156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -172259,54 +173164,33 @@ 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, - [37523] = 16, - ACTIONS(103), 1, + anon_sym_QMARK2, + anon_sym_BANG, + [37124] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1800), 1, - anon_sym_DQUOTE, - ACTIONS(1802), 1, - anon_sym_SQUOTE, - ACTIONS(1804), 1, - anon_sym_BQUOTE, - ACTIONS(1806), 1, - sym_raw_string_begin, - ACTIONS(2829), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3651), 1, - aux_sym_cmd_identifier_token1, - STATE(1752), 1, + STATE(1751), 1, sym_comment, - STATE(2133), 1, - sym__val_number_decimal, - STATE(3713), 1, - sym_cmd_identifier, - STATE(3719), 1, - sym_val_string, - STATE(4408), 1, - sym__command_name, - ACTIONS(3902), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3904), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2266), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3647), 25, + ACTIONS(1500), 4, anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1502), 40, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -172323,82 +173207,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, 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, - [37601] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3782), 1, - anon_sym_list, - ACTIONS(3784), 1, - anon_sym_oneof, - ACTIONS(4050), 1, - anon_sym_GT2, - ACTIONS(4052), 1, - anon_sym_AT2, - STATE(1753), 1, - sym_comment, - STATE(4553), 1, - sym__all_type, - STATE(5093), 1, - sym_param_completer, - ACTIONS(3780), 2, - anon_sym_table, - anon_sym_record, - STATE(4869), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3778), 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, - [37669] = 4, + 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, + [37179] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1754), 1, + STATE(1752), 1, sym_comment, - ACTIONS(1519), 4, + ACTIONS(1504), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1521), 39, + ACTIONS(1506), 40, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -172416,6 +173258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -172438,17 +173281,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK2, anon_sym_BANG, - [37723] = 4, + [37234] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1755), 1, + ACTIONS(4030), 1, + anon_sym_DOT, + ACTIONS(4032), 1, + aux_sym__immediate_decimal_token5, + STATE(1753), 1, sym_comment, - ACTIONS(1523), 4, + ACTIONS(747), 6, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1525), 39, + anon_sym_DOT_DOT2, + sym_duration_unit, + sym__unquoted_pattern, + ACTIONS(749), 36, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -172466,6 +173315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -172473,33 +173323,100 @@ 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, - anon_sym_QMARK2, - anon_sym_BANG, - [37777] = 4, + [37293] = 16, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1772), 1, + anon_sym_DQUOTE, + ACTIONS(1774), 1, + anon_sym_SQUOTE, + ACTIONS(1776), 1, + anon_sym_BQUOTE, + ACTIONS(1778), 1, + sym_raw_string_begin, + ACTIONS(2822), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3637), 1, + aux_sym_cmd_identifier_token1, + STATE(1754), 1, + sym_comment, + STATE(2150), 1, + sym__val_number_decimal, + STATE(3755), 1, + sym_cmd_identifier, + STATE(3763), 1, + sym_val_string, + STATE(4482), 1, + sym__command_name, + ACTIONS(3800), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3802), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2274), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3633), 26, + 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_finally, + 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, + [37372] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1756), 1, + ACTIONS(4028), 1, + anon_sym_DOT2, + STATE(1755), 1, sym_comment, - ACTIONS(1527), 4, + STATE(1782), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1891), 1, + sym_path, + STATE(1915), 1, + sym_cell_path, + ACTIONS(1649), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1529), 39, + ACTIONS(1647), 37, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -172516,6 +173433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -172526,8 +173444,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, @@ -172536,19 +173452,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [37831] = 4, + [37435] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1757), 1, + ACTIONS(4006), 1, + anon_sym_DOT2, + STATE(1756), 1, sym_comment, - ACTIONS(1531), 4, + STATE(1775), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1834), 1, + sym_path, + ACTIONS(1524), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1533), 39, + ACTIONS(1526), 38, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -172566,6 +173485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -172586,19 +173506,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [37885] = 4, + [37496] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4034), 1, + aux_sym__immediate_decimal_token5, + STATE(1757), 1, + sym_comment, + ACTIONS(767), 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(769), 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, + [37553] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(4036), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4038), 1, + aux_sym__immediate_decimal_token5, STATE(1758), 1, sym_comment, - ACTIONS(1535), 4, + ACTIONS(739), 7, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1537), 39, + anon_sym_DOT_DOT2, + aux_sym__val_number_decimal_token1, + sym_duration_unit, + sym__unquoted_pattern, + ACTIONS(741), 35, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -172616,6 +173593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -172623,33 +173601,56 @@ 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, + 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, - anon_sym_QMARK2, - anon_sym_BANG, - [37939] = 4, + [37612] = 17, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1422), 1, + anon_sym_DQUOTE, + ACTIONS(1424), 1, + anon_sym_SQUOTE, + ACTIONS(1426), 1, + anon_sym_BQUOTE, + ACTIONS(1436), 1, + sym_raw_string_begin, + ACTIONS(3769), 1, + aux_sym_cmd_identifier_token1, STATE(1759), 1, sym_comment, - ACTIONS(1539), 4, + STATE(1760), 1, + aux_sym__command_list_body_repeat1, + STATE(2120), 1, + sym__val_number_decimal, + STATE(4722), 1, + sym__command_name, + STATE(5054), 1, + sym_cmd_identifier, + STATE(5055), 1, + sym_val_string, + ACTIONS(3645), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3647), 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(1541), 39, - sym_raw_string_begin, + STATE(3725), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3767), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -172666,6 +173667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -172673,60 +173675,45 @@ 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, - [37993] = 16, + [37693] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4060), 1, + ACTIONS(4046), 1, aux_sym_cmd_identifier_token1, - ACTIONS(4069), 1, + ACTIONS(4055), 1, anon_sym_DQUOTE, - ACTIONS(4072), 1, + ACTIONS(4058), 1, anon_sym_SQUOTE, - ACTIONS(4075), 1, + ACTIONS(4061), 1, anon_sym_BQUOTE, - ACTIONS(4078), 1, + ACTIONS(4064), 1, sym_raw_string_begin, - STATE(2138), 1, + STATE(2120), 1, sym__val_number_decimal, - STATE(4851), 1, + STATE(4977), 1, + sym__command_name, + STATE(5054), 1, sym_cmd_identifier, - STATE(4852), 1, + STATE(5055), 1, sym_val_string, - STATE(4912), 1, - sym__command_name, - ACTIONS(4054), 2, + ACTIONS(4040), 2, anon_sym_export, anon_sym_in, - ACTIONS(4063), 2, + ACTIONS(4049), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(4066), 2, + ACTIONS(4052), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, STATE(1760), 2, sym_comment, aux_sym__command_list_body_repeat1, - STATE(3665), 4, + STATE(3725), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4057), 23, + ACTIONS(4043), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -172743,6 +173730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -172750,24 +173738,136 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [38071] = 8, + [37772] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4081), 1, - anon_sym_DOT2, + ACTIONS(1818), 1, + anon_sym_LPAREN2, + ACTIONS(1828), 1, + sym__unquoted_pattern, + ACTIONS(4067), 1, + anon_sym_DOT_DOT2, + ACTIONS(4071), 1, + sym_filesize_unit, + ACTIONS(4073), 1, + sym_duration_unit, STATE(1761), 1, sym_comment, - STATE(1800), 1, + STATE(5072), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4069), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(847), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(968), 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, + [37841] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4028), 1, + anon_sym_DOT2, + STATE(1762), 1, + sym_comment, + STATE(1782), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(1889), 1, + STATE(1891), 1, sym_path, - STATE(1921), 1, + STATE(1905), 1, sym_cell_path, - ACTIONS(1659), 3, + ACTIONS(1655), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1653), 37, + 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_finally, + 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, + [37904] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4075), 1, + anon_sym_QMARK2, + ACTIONS(4077), 1, + anon_sym_BANG, + STATE(1763), 1, + sym_comment, + STATE(1865), 1, + sym__path_suffix, + ACTIONS(1442), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1657), 36, + anon_sym_DOT2, + ACTIONS(1444), 37, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -172786,6 +173886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -172804,43 +173905,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [38133] = 16, + [37965] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3958), 1, + sym__newline, + ACTIONS(4024), 1, + anon_sym_list, + ACTIONS(4026), 1, + anon_sym_oneof, + STATE(1764), 1, + sym_comment, + STATE(1780), 1, + aux_sym__types_body_repeat1, + STATE(1871), 1, + aux_sym__composite_argument_body_repeat1, + STATE(4703), 1, + sym__all_type, + STATE(5274), 1, + sym__composite_argument_body, + ACTIONS(4022), 2, + anon_sym_table, + anon_sym_record, + STATE(4685), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4020), 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, + [38036] = 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(1800), 1, - anon_sym_DQUOTE, - ACTIONS(1802), 1, - anon_sym_SQUOTE, - ACTIONS(1804), 1, - anon_sym_BQUOTE, - ACTIONS(1806), 1, + ACTIONS(105), 1, sym_raw_string_begin, - ACTIONS(2555), 1, + ACTIONS(2822), 1, aux_sym_cmd_identifier_token2, - ACTIONS(3651), 1, + ACTIONS(3669), 1, aux_sym_cmd_identifier_token1, - STATE(1762), 1, + STATE(1765), 1, sym_comment, - STATE(2133), 1, + STATE(2018), 1, sym__val_number_decimal, - STATE(3713), 1, + STATE(4216), 1, + sym__command_name, + STATE(4376), 1, sym_cmd_identifier, - STATE(3719), 1, + STATE(4379), 1, sym_val_string, - STATE(4225), 1, - sym__command_name, - ACTIONS(3902), 2, + ACTIONS(3800), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3904), 2, + ACTIONS(3802), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2266), 4, + STATE(502), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3647), 25, + ACTIONS(3665), 26, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -172858,6 +174018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_in, anon_sym_true, @@ -172866,32 +174027,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [38211] = 11, + [38115] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3782), 1, + ACTIONS(3958), 1, + sym__newline, + ACTIONS(4024), 1, anon_sym_list, - ACTIONS(3784), 1, + ACTIONS(4026), 1, anon_sym_oneof, - ACTIONS(4052), 1, - anon_sym_AT2, - ACTIONS(4083), 1, - anon_sym_GT2, - STATE(1763), 1, + STATE(1766), 1, sym_comment, - STATE(4690), 1, + STATE(1780), 1, + aux_sym__types_body_repeat1, + STATE(1871), 1, + aux_sym__composite_argument_body_repeat1, + STATE(4703), 1, sym__all_type, - STATE(4983), 1, - sym_param_completer, - ACTIONS(3780), 2, + STATE(5247), 1, + sym__composite_argument_body, + ACTIONS(4022), 2, anon_sym_table, anon_sym_record, - STATE(4869), 4, + STATE(4685), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3778), 31, + ACTIONS(4020), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -172923,26 +174086,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [38279] = 8, - ACTIONS(3), 1, + [38186] = 16, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4081), 1, - anon_sym_DOT2, - STATE(1764), 1, + ACTIONS(1772), 1, + anon_sym_DQUOTE, + ACTIONS(1774), 1, + anon_sym_SQUOTE, + ACTIONS(1776), 1, + anon_sym_BQUOTE, + ACTIONS(1778), 1, + sym_raw_string_begin, + ACTIONS(2822), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3637), 1, + aux_sym_cmd_identifier_token1, + STATE(1767), 1, sym_comment, - STATE(1800), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(1889), 1, - sym_path, - STATE(1935), 1, - sym_cell_path, - ACTIONS(1647), 3, + STATE(2150), 1, + sym__val_number_decimal, + STATE(3755), 1, + sym_cmd_identifier, + STATE(3763), 1, + sym_val_string, + STATE(5473), 1, + sym__command_name, + ACTIONS(3800), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3802), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2274), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3633), 26, anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1645), 36, - sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -172959,61 +174140,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, 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_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, - [38341] = 16, + [38265] = 16, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1800), 1, + ACTIONS(1772), 1, anon_sym_DQUOTE, - ACTIONS(1802), 1, + ACTIONS(1774), 1, anon_sym_SQUOTE, - ACTIONS(1804), 1, + ACTIONS(1776), 1, anon_sym_BQUOTE, - ACTIONS(1806), 1, + ACTIONS(1778), 1, sym_raw_string_begin, - ACTIONS(2555), 1, + ACTIONS(2594), 1, aux_sym_cmd_identifier_token2, - ACTIONS(3651), 1, + ACTIONS(3637), 1, aux_sym_cmd_identifier_token1, - STATE(1765), 1, + STATE(1768), 1, sym_comment, - STATE(2133), 1, + STATE(2150), 1, sym__val_number_decimal, - STATE(3713), 1, + STATE(3755), 1, sym_cmd_identifier, - STATE(3719), 1, + STATE(3763), 1, sym_val_string, - STATE(5011), 1, + STATE(5337), 1, sym__command_name, - ACTIONS(3902), 2, + ACTIONS(3800), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3904), 2, + ACTIONS(3802), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2266), 4, + STATE(2274), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3647), 25, + ACTIONS(3633), 26, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -173031,6 +174203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_in, anon_sym_true, @@ -173039,25 +174212,103 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [38419] = 7, + [38344] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4085), 1, - anon_sym_QMARK2, - ACTIONS(4087), 1, - anon_sym_BANG, - STATE(1766), 1, + ACTIONS(3958), 1, + sym__newline, + ACTIONS(4024), 1, + anon_sym_list, + ACTIONS(4026), 1, + anon_sym_oneof, + STATE(1769), 1, sym_comment, - STATE(1896), 1, - sym__path_suffix, - ACTIONS(1456), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1458), 36, + STATE(1780), 1, + aux_sym__types_body_repeat1, + STATE(1871), 1, + aux_sym__composite_argument_body_repeat1, + STATE(4703), 1, + sym__all_type, + STATE(5466), 1, + sym__composite_argument_body, + ACTIONS(4022), 2, + anon_sym_table, + anon_sym_record, + STATE(4685), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4020), 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, + [38415] = 16, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1772), 1, + anon_sym_DQUOTE, + ACTIONS(1774), 1, + anon_sym_SQUOTE, + ACTIONS(1776), 1, + anon_sym_BQUOTE, + ACTIONS(1778), 1, sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(2594), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3637), 1, + aux_sym_cmd_identifier_token1, + STATE(1770), 1, + sym_comment, + STATE(2150), 1, + sym__val_number_decimal, + STATE(3755), 1, + sym_cmd_identifier, + STATE(3763), 1, + sym_val_string, + STATE(5321), 1, + sym__command_name, + ACTIONS(3800), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3802), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2274), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3633), 26, + anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -173074,62 +174325,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, 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_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, - [38479] = 16, - ACTIONS(91), 1, + [38494] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1422), 1, anon_sym_DQUOTE, - ACTIONS(93), 1, + ACTIONS(1424), 1, anon_sym_SQUOTE, - ACTIONS(95), 1, + ACTIONS(1426), 1, anon_sym_BQUOTE, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(105), 1, + ACTIONS(1436), 1, sym_raw_string_begin, - ACTIONS(2829), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3699), 1, + ACTIONS(3769), 1, aux_sym_cmd_identifier_token1, - STATE(1767), 1, + STATE(1760), 1, + aux_sym__command_list_body_repeat1, + STATE(1771), 1, sym_comment, - STATE(2013), 1, + STATE(2120), 1, sym__val_number_decimal, - STATE(4189), 1, + STATE(4793), 1, sym__command_name, - STATE(4301), 1, + STATE(5054), 1, sym_cmd_identifier, - STATE(4302), 1, + STATE(5055), 1, sym_val_string, - ACTIONS(3902), 2, + ACTIONS(3645), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3904), 2, + ACTIONS(3647), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(502), 4, + ACTIONS(3765), 2, + anon_sym_export, + anon_sym_in, + STATE(3725), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3695), 25, - anon_sym_export, + ACTIONS(3767), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -173146,20 +174390,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, 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, - [38557] = 5, + [38575] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4040), 1, + ACTIONS(4079), 1, + anon_sym_DOT, + ACTIONS(4081), 1, aux_sym__immediate_decimal_token5, - STATE(1768), 1, + STATE(1772), 1, sym_comment, ACTIONS(747), 8, anon_sym_GT2, @@ -173205,43 +174451,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [38613] = 16, + [38634] = 16, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1800), 1, + ACTIONS(1772), 1, anon_sym_DQUOTE, - ACTIONS(1802), 1, + ACTIONS(1774), 1, anon_sym_SQUOTE, - ACTIONS(1804), 1, + ACTIONS(1776), 1, anon_sym_BQUOTE, - ACTIONS(1806), 1, + ACTIONS(1778), 1, sym_raw_string_begin, - ACTIONS(2555), 1, + ACTIONS(2594), 1, aux_sym_cmd_identifier_token2, - ACTIONS(3651), 1, + ACTIONS(3637), 1, aux_sym_cmd_identifier_token1, - STATE(1769), 1, + STATE(1773), 1, sym_comment, - STATE(2133), 1, + STATE(2150), 1, sym__val_number_decimal, - STATE(3713), 1, + STATE(3755), 1, sym_cmd_identifier, - STATE(3719), 1, + STATE(3763), 1, sym_val_string, - STATE(5130), 1, + STATE(5232), 1, sym__command_name, - ACTIONS(3902), 2, + ACTIONS(3800), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3904), 2, + ACTIONS(3802), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2266), 4, + STATE(2274), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3647), 25, + ACTIONS(3633), 26, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -173259,6 +174505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_in, anon_sym_true, @@ -173267,89 +174514,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [38691] = 17, + [38713] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1422), 1, - anon_sym_DQUOTE, - ACTIONS(1424), 1, - anon_sym_SQUOTE, - ACTIONS(1426), 1, - anon_sym_BQUOTE, - ACTIONS(1436), 1, - sym_raw_string_begin, - ACTIONS(3814), 1, - aux_sym_cmd_identifier_token1, - STATE(1760), 1, - aux_sym__command_list_body_repeat1, - STATE(1770), 1, + ACTIONS(4083), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4085), 1, + aux_sym__immediate_decimal_token5, + STATE(1774), 1, sym_comment, - STATE(2138), 1, - sym__val_number_decimal, - STATE(4627), 1, - sym__command_name, - STATE(4851), 1, - sym_cmd_identifier, - STATE(4852), 1, - sym_val_string, - ACTIONS(3659), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3661), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3810), 2, - anon_sym_export, + 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, - STATE(3665), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3812), 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, - [38771] = 8, + 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, + [38772] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4081), 1, + ACTIONS(4087), 1, anon_sym_DOT2, - STATE(1771), 1, + STATE(1834), 1, + sym_path, + STATE(1775), 2, sym_comment, - STATE(1800), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(1889), 1, - sym_path, - STATE(1929), 1, - sym_cell_path, - ACTIONS(1442), 3, + ACTIONS(1532), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1444), 36, + ACTIONS(1534), 38, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -173366,6 +174599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -173376,6 +174610,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, @@ -173384,106 +174620,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [38833] = 16, - ACTIONS(103), 1, + [38831] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1800), 1, - anon_sym_DQUOTE, - ACTIONS(1802), 1, - anon_sym_SQUOTE, - ACTIONS(1804), 1, - anon_sym_BQUOTE, - ACTIONS(1806), 1, - sym_raw_string_begin, - ACTIONS(2829), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3651), 1, - aux_sym_cmd_identifier_token1, - STATE(1772), 1, + ACTIONS(3894), 1, + anon_sym_list, + ACTIONS(3896), 1, + anon_sym_oneof, + ACTIONS(3958), 1, + sym__newline, + STATE(1776), 1, sym_comment, - STATE(2133), 1, - sym__val_number_decimal, - STATE(3713), 1, - sym_cmd_identifier, - STATE(3719), 1, - sym_val_string, - STATE(5317), 1, - sym__command_name, - ACTIONS(3902), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3904), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2266), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3647), 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, - [38911] = 16, - ACTIONS(103), 1, + STATE(1843), 1, + aux_sym__types_body_repeat3, + STATE(1995), 1, + aux_sym__types_body_repeat1, + STATE(4889), 1, + sym__one_type, + STATE(5241), 1, + sym__type_annotation, + ACTIONS(3892), 2, + anon_sym_table, + anon_sym_record, + STATE(2656), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3890), 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, + [38902] = 16, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1800), 1, + ACTIONS(1772), 1, anon_sym_DQUOTE, - ACTIONS(1802), 1, + ACTIONS(1774), 1, anon_sym_SQUOTE, - ACTIONS(1804), 1, + ACTIONS(1776), 1, anon_sym_BQUOTE, - ACTIONS(1806), 1, + ACTIONS(1778), 1, sym_raw_string_begin, - ACTIONS(2555), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3651), 1, + ACTIONS(3637), 1, aux_sym_cmd_identifier_token1, - STATE(1773), 1, + STATE(1777), 1, sym_comment, - STATE(2133), 1, + STATE(2150), 1, sym__val_number_decimal, - STATE(3713), 1, + STATE(3755), 1, sym_cmd_identifier, - STATE(3719), 1, + STATE(3763), 1, sym_val_string, - STATE(3964), 1, + STATE(5158), 1, sym__command_name, - ACTIONS(3902), 2, + ACTIONS(3633), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3645), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3904), 2, + ACTIONS(3647), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2266), 4, + STATE(2274), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3647), 25, - anon_sym_export, + ACTIONS(3635), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -173500,44 +174733,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, 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, - [38989] = 11, + [38980] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1724), 1, - anon_sym_LPAREN2, - ACTIONS(1734), 1, - sym__unquoted_pattern, - ACTIONS(4089), 1, - anon_sym_DOT_DOT2, - ACTIONS(4093), 1, - sym_filesize_unit, - ACTIONS(4095), 1, - sym_duration_unit, - STATE(1774), 1, + ACTIONS(4090), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4092), 1, + aux_sym__immediate_decimal_token5, + STATE(1778), 1, sym_comment, - STATE(4801), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4091), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(866), 5, + ACTIONS(1732), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(886), 30, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1730), 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, @@ -173556,6 +174781,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, @@ -173565,32 +174791,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [39057] = 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [39038] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3782), 1, + ACTIONS(3894), 1, anon_sym_list, - ACTIONS(3784), 1, + ACTIONS(3896), 1, anon_sym_oneof, - ACTIONS(4052), 1, - anon_sym_AT2, - ACTIONS(4097), 1, + ACTIONS(4094), 1, anon_sym_GT2, - STATE(1775), 1, + ACTIONS(4096), 1, + anon_sym_AT2, + STATE(1779), 1, sym_comment, - STATE(4688), 1, + STATE(4693), 1, sym__all_type, - STATE(4948), 1, + STATE(5101), 1, sym_param_completer, - ACTIONS(3780), 2, + ACTIONS(3892), 2, anon_sym_table, anon_sym_record, - STATE(4869), 4, + STATE(4956), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3778), 31, + ACTIONS(3890), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -173622,199 +174850,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [39125] = 6, + [39106] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4099), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4101), 1, - aux_sym__immediate_decimal_token5, - STATE(1776), 1, - sym_comment, - ACTIONS(1772), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1770), 34, - anon_sym_in, + ACTIONS(3958), 1, 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, - [39183] = 7, - ACTIONS(3), 1, - anon_sym_POUND, ACTIONS(4024), 1, - anon_sym_DOT2, - STATE(1777), 1, - sym_comment, + anon_sym_list, + ACTIONS(4026), 1, + anon_sym_oneof, STATE(1780), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(1866), 1, - sym_path, - ACTIONS(1504), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1506), 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, - [39243] = 16, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1800), 1, - anon_sym_DQUOTE, - ACTIONS(1802), 1, - anon_sym_SQUOTE, - ACTIONS(1804), 1, - anon_sym_BQUOTE, - ACTIONS(1806), 1, - sym_raw_string_begin, - ACTIONS(2555), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3651), 1, - aux_sym_cmd_identifier_token1, - STATE(1778), 1, sym_comment, - STATE(2133), 1, - sym__val_number_decimal, - STATE(3713), 1, - sym_cmd_identifier, - STATE(3719), 1, - sym_val_string, - STATE(5172), 1, - sym__command_name, - ACTIONS(3902), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3904), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2266), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3647), 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, - [39321] = 11, + STATE(1873), 1, + aux_sym__composite_argument_body_repeat1, + STATE(1995), 1, + aux_sym__types_body_repeat1, + STATE(4813), 1, + sym__all_type, + ACTIONS(4022), 2, + anon_sym_table, + anon_sym_record, + STATE(4685), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4020), 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, + [39174] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3776), 1, - anon_sym_LBRACK, - ACTIONS(3782), 1, + ACTIONS(3894), 1, anon_sym_list, - ACTIONS(3784), 1, + ACTIONS(3896), 1, anon_sym_oneof, - STATE(1779), 1, + ACTIONS(4096), 1, + anon_sym_AT2, + ACTIONS(4098), 1, + anon_sym_GT2, + STATE(1781), 1, sym_comment, - STATE(5066), 1, - sym__type_annotation, - STATE(5073), 1, - sym__one_type, - STATE(5074), 1, - sym__multiple_types, - ACTIONS(3780), 2, + STATE(4891), 1, + sym__all_type, + STATE(5471), 1, + sym_param_completer, + ACTIONS(3892), 2, anon_sym_table, anon_sym_record, - STATE(2651), 4, + STATE(4956), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3778), 31, + ACTIONS(3890), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -173846,22 +174964,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [39389] = 6, + [39242] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4103), 1, + ACTIONS(4028), 1, anon_sym_DOT2, - STATE(1866), 1, - sym_path, - STATE(1780), 2, + STATE(1782), 1, sym_comment, + STATE(1784), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1508), 3, + STATE(1891), 1, + sym_path, + ACTIONS(1524), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1510), 37, + ACTIONS(1526), 37, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -173878,6 +174998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -173888,8 +175009,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, @@ -173898,44 +175017,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [39447] = 16, - ACTIONS(103), 1, + [39302] = 16, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1800), 1, + ACTIONS(1772), 1, anon_sym_DQUOTE, - ACTIONS(1802), 1, + ACTIONS(1774), 1, anon_sym_SQUOTE, - ACTIONS(1804), 1, + ACTIONS(1776), 1, anon_sym_BQUOTE, - ACTIONS(1806), 1, + ACTIONS(1778), 1, sym_raw_string_begin, - ACTIONS(2555), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3651), 1, + ACTIONS(3637), 1, aux_sym_cmd_identifier_token1, - STATE(1781), 1, + STATE(1783), 1, sym_comment, - STATE(2133), 1, + STATE(2150), 1, sym__val_number_decimal, - STATE(3713), 1, + STATE(3755), 1, sym_cmd_identifier, - STATE(3719), 1, + STATE(3763), 1, sym_val_string, - STATE(5222), 1, + STATE(4480), 1, sym__command_name, - ACTIONS(3902), 2, + ACTIONS(3633), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3645), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3904), 2, + ACTIONS(3647), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2266), 4, + STATE(2274), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3647), 25, - anon_sym_export, + ACTIONS(3635), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -173952,32 +175071,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, 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, - [39525] = 6, + [39380] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4106), 1, - anon_sym_DOT, - ACTIONS(4108), 1, - aux_sym__immediate_decimal_token5, - STATE(1782), 1, + ACTIONS(4100), 1, + anon_sym_DOT2, + STATE(1891), 1, + sym_path, + STATE(1784), 2, sym_comment, - ACTIONS(747), 6, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1532), 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(1534), 37, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -173994,6 +175112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -174001,43 +175120,100 @@ 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_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, - [39583] = 11, + [39438] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1818), 1, + anon_sym_LPAREN2, + ACTIONS(1828), 1, + sym__unquoted_pattern, + ACTIONS(4103), 1, + anon_sym_DOT_DOT2, + ACTIONS(4107), 1, + sym_filesize_unit, + ACTIONS(4109), 1, + sym_duration_unit, + STATE(1785), 1, + sym_comment, + STATE(5072), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4105), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(847), 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, + [39506] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3782), 1, + ACTIONS(3888), 1, + anon_sym_LBRACK, + ACTIONS(3894), 1, anon_sym_list, - ACTIONS(3784), 1, + ACTIONS(3896), 1, anon_sym_oneof, - ACTIONS(4052), 1, - anon_sym_AT2, - ACTIONS(4110), 1, - anon_sym_GT2, - STATE(1783), 1, + STATE(1786), 1, sym_comment, - STATE(4662), 1, - sym__all_type, - STATE(5107), 1, - sym_param_completer, - ACTIONS(3780), 2, + STATE(5124), 1, + sym__one_type, + STATE(5165), 1, + sym__type_annotation, + STATE(5205), 1, + sym__multiple_types, + ACTIONS(3892), 2, anon_sym_table, anon_sym_record, - STATE(4869), 4, + STATE(2656), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3778), 31, + ACTIONS(3890), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -174069,94 +175245,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [39651] = 4, + [39574] = 16, ACTIONS(3), 1, anon_sym_POUND, - STATE(1784), 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), 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, - [39705] = 16, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1800), 1, + ACTIONS(1772), 1, anon_sym_DQUOTE, - ACTIONS(1802), 1, + ACTIONS(1774), 1, anon_sym_SQUOTE, - ACTIONS(1804), 1, + ACTIONS(1776), 1, anon_sym_BQUOTE, - ACTIONS(1806), 1, + ACTIONS(1778), 1, sym_raw_string_begin, - ACTIONS(2555), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3651), 1, + ACTIONS(3637), 1, aux_sym_cmd_identifier_token1, - STATE(1785), 1, + STATE(1787), 1, sym_comment, - STATE(2133), 1, + STATE(2150), 1, sym__val_number_decimal, - STATE(3713), 1, + STATE(3755), 1, sym_cmd_identifier, - STATE(3719), 1, + STATE(3763), 1, sym_val_string, - STATE(5100), 1, + STATE(4531), 1, sym__command_name, - ACTIONS(3902), 2, + ACTIONS(3633), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3645), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3904), 2, + ACTIONS(3647), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2266), 4, + STATE(2274), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3647), 25, - anon_sym_export, + ACTIONS(3635), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -174173,81 +175299,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, 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, - [39783] = 6, + [39652] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4112), 1, - anon_sym_DOT, - ACTIONS(4114), 1, - aux_sym__immediate_decimal_token5, - STATE(1786), 1, + ACTIONS(1772), 1, + anon_sym_DQUOTE, + ACTIONS(1774), 1, + anon_sym_SQUOTE, + ACTIONS(1776), 1, + anon_sym_BQUOTE, + ACTIONS(1778), 1, + sym_raw_string_begin, + ACTIONS(3637), 1, + aux_sym_cmd_identifier_token1, + STATE(1788), 1, sym_comment, - ACTIONS(1746), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1744), 34, + STATE(2150), 1, + sym__val_number_decimal, + STATE(3755), 1, + sym_cmd_identifier, + STATE(3763), 1, + sym_val_string, + STATE(5189), 1, + sym__command_name, + ACTIONS(3633), 2, + anon_sym_export, 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, - [39841] = 4, + ACTIONS(3645), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3647), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2274), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3635), 24, + 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_finally, + 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, + [39730] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1787), 1, + ACTIONS(4111), 1, + anon_sym_DOT, + ACTIONS(4113), 1, + aux_sym__immediate_decimal_token5, + STATE(1789), 1, sym_comment, - ACTIONS(771), 8, + ACTIONS(1792), 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), 35, + ACTIONS(1790), 34, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -174282,13 +175421,12 @@ 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, - [39895] = 4, + [39788] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1788), 1, + STATE(1790), 1, sym_comment, - ACTIONS(860), 8, + ACTIONS(739), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -174297,7 +175435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(862), 35, + ACTIONS(741), 35, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -174333,46 +175471,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [39949] = 17, + [39842] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1422), 1, + STATE(1791), 1, + sym_comment, + ACTIONS(1504), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1506), 39, + 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_finally, + 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(1424), 1, anon_sym_SQUOTE, - ACTIONS(1426), 1, anon_sym_BQUOTE, - ACTIONS(1436), 1, - sym_raw_string_begin, - ACTIONS(3814), 1, - aux_sym_cmd_identifier_token1, - STATE(1760), 1, - aux_sym__command_list_body_repeat1, - STATE(1789), 1, + anon_sym_QMARK2, + anon_sym_BANG, + [39896] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1792), 1, sym_comment, - STATE(2138), 1, - sym__val_number_decimal, - STATE(4635), 1, - sym__command_name, - STATE(4851), 1, - sym_cmd_identifier, - STATE(4852), 1, - sym_val_string, - ACTIONS(3659), 2, + ACTIONS(1508), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1510), 39, + 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_finally, + 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, - ACTIONS(3661), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3810), 2, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_QMARK2, + anon_sym_BANG, + [39950] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1793), 1, + sym_comment, + ACTIONS(1500), 4, anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - STATE(3665), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3812), 23, + anon_sym_DOT2, + ACTIONS(1502), 39, + sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -174389,6 +175600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -174396,68 +175608,80 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [40029] = 5, + 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, + [40004] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4116), 1, - aux_sym__immediate_decimal_token5, - STATE(1790), 1, + STATE(1794), 1, sym_comment, - ACTIONS(771), 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(773), 34, + ACTIONS(1512), 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, - [40085] = 4, + anon_sym_DOT2, + ACTIONS(1514), 39, + 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_finally, + 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, + [40058] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1791), 1, + STATE(1795), 1, sym_comment, - ACTIONS(1531), 4, + ACTIONS(1520), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1533), 38, + ACTIONS(1522), 39, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -174476,6 +175700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -174496,44 +175721,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK2, anon_sym_BANG, - [40138] = 16, + [40112] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1800), 1, + ACTIONS(1772), 1, anon_sym_DQUOTE, - ACTIONS(1802), 1, + ACTIONS(1774), 1, anon_sym_SQUOTE, - ACTIONS(1804), 1, + ACTIONS(1776), 1, anon_sym_BQUOTE, - ACTIONS(1806), 1, + ACTIONS(1778), 1, sym_raw_string_begin, - ACTIONS(3651), 1, + ACTIONS(3637), 1, aux_sym_cmd_identifier_token1, - STATE(1792), 1, + STATE(1796), 1, sym_comment, - STATE(2133), 1, + STATE(2150), 1, sym__val_number_decimal, - STATE(3713), 1, + STATE(3755), 1, sym_cmd_identifier, - STATE(3719), 1, + STATE(3763), 1, sym_val_string, - STATE(4415), 1, + STATE(5327), 1, sym__command_name, - ACTIONS(3647), 2, + ACTIONS(3633), 2, anon_sym_export, anon_sym_in, - ACTIONS(3659), 2, + ACTIONS(3645), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3661), 2, + ACTIONS(3647), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2266), 4, + STATE(2274), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3649), 23, + ACTIONS(3635), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -174550,6 +175775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -174557,44 +175783,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [40215] = 16, + [40190] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(91), 1, + ACTIONS(1772), 1, anon_sym_DQUOTE, - ACTIONS(93), 1, + ACTIONS(1774), 1, anon_sym_SQUOTE, - ACTIONS(95), 1, + ACTIONS(1776), 1, anon_sym_BQUOTE, - ACTIONS(105), 1, + ACTIONS(1778), 1, sym_raw_string_begin, - ACTIONS(3699), 1, + ACTIONS(3637), 1, aux_sym_cmd_identifier_token1, - STATE(1793), 1, + STATE(1797), 1, sym_comment, - STATE(2013), 1, + STATE(2150), 1, sym__val_number_decimal, - STATE(4199), 1, - sym__command_name, - STATE(4301), 1, + STATE(3755), 1, sym_cmd_identifier, - STATE(4302), 1, + STATE(3763), 1, sym_val_string, - ACTIONS(3659), 2, + STATE(4426), 1, + sym__command_name, + ACTIONS(3633), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3645), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3661), 2, + ACTIONS(3647), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3695), 2, - anon_sym_export, - anon_sym_in, - STATE(502), 4, + STATE(2274), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3697), 23, + ACTIONS(3635), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -174611,6 +175837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -174618,343 +175845,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [40292] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4118), 1, - sym__newline, - ACTIONS(4124), 1, - anon_sym_list, - ACTIONS(4126), 1, - anon_sym_oneof, - STATE(1794), 1, - sym_comment, - STATE(2012), 1, - aux_sym__repeat_newline, - STATE(2909), 1, - sym__type_annotation, - ACTIONS(4122), 2, - anon_sym_table, - anon_sym_record, - STATE(3162), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(4120), 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, - [40357] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3782), 1, - anon_sym_list, - ACTIONS(3784), 1, - anon_sym_oneof, - ACTIONS(4118), 1, - sym__newline, - STATE(1795), 1, - sym_comment, - STATE(1831), 1, - aux_sym__repeat_newline, - STATE(4707), 1, - sym__type_annotation, - ACTIONS(3780), 2, - anon_sym_table, - anon_sym_record, - STATE(2651), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3778), 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, - [40422] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4118), 1, - sym__newline, - ACTIONS(4132), 1, - anon_sym_list, - ACTIONS(4134), 1, - anon_sym_oneof, - STATE(1796), 1, - sym_comment, - STATE(2012), 1, - aux_sym__repeat_newline, - STATE(3047), 1, - sym__type_annotation, - ACTIONS(4130), 2, - anon_sym_table, - anon_sym_record, - STATE(3327), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(4128), 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, - [40487] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4136), 1, - anon_sym_DOT, - ACTIONS(4138), 1, - aux_sym__immediate_decimal_token5, - STATE(1797), 1, - sym_comment, - ACTIONS(1746), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1744), 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, - [40544] = 10, + [40268] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4118), 1, - sym__newline, - ACTIONS(4132), 1, - anon_sym_list, - ACTIONS(4134), 1, - anon_sym_oneof, - STATE(1796), 1, - aux_sym__repeat_newline, + ACTIONS(4115), 1, + anon_sym_QMARK2, STATE(1798), 1, sym_comment, - STATE(3060), 1, - sym__type_annotation, - ACTIONS(4130), 2, - anon_sym_table, - anon_sym_record, - STATE(3327), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(4128), 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, - [40609] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1799), 1, - sym_comment, - ACTIONS(4140), 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, - [40660] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4081), 1, - anon_sym_DOT2, - STATE(1800), 1, - sym_comment, - STATE(1803), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(1889), 1, - sym_path, - ACTIONS(1504), 3, + ACTIONS(1460), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1506), 36, + anon_sym_DOT2, + ACTIONS(1462), 38, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -174971,6 +175875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -174981,6 +175886,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, @@ -174989,72 +175896,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [40719] = 10, + [40324] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4118), 1, - sym__newline, - ACTIONS(4124), 1, + ACTIONS(1772), 1, + anon_sym_DQUOTE, + ACTIONS(1774), 1, + anon_sym_SQUOTE, + ACTIONS(1776), 1, + anon_sym_BQUOTE, + ACTIONS(1778), 1, + sym_raw_string_begin, + ACTIONS(3637), 1, + aux_sym_cmd_identifier_token1, + STATE(1799), 1, + sym_comment, + STATE(2150), 1, + sym__val_number_decimal, + STATE(3755), 1, + sym_cmd_identifier, + STATE(3763), 1, + sym_val_string, + STATE(4576), 1, + sym__command_name, + ACTIONS(3633), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3645), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3647), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2274), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3635), 24, + 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_finally, + 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, + [40402] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3894), 1, anon_sym_list, - ACTIONS(4126), 1, + ACTIONS(3896), 1, anon_sym_oneof, - STATE(1801), 1, + ACTIONS(4096), 1, + anon_sym_AT2, + ACTIONS(4117), 1, + anon_sym_GT2, + STATE(1800), 1, sym_comment, - STATE(1828), 1, - aux_sym__repeat_newline, - STATE(2964), 1, - sym__type_annotation, - ACTIONS(4122), 2, + STATE(4702), 1, + sym__all_type, + STATE(5465), 1, + sym_param_completer, + ACTIONS(3892), 2, anon_sym_table, anon_sym_record, - STATE(3162), 4, + STATE(4956), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4120), 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, - [40784] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1802), 1, - sym_comment, - ACTIONS(4142), 42, - sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, + ACTIONS(3890), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -175084,31 +176013,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, - [40835] = 6, + [40470] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4144), 1, - anon_sym_DOT2, - STATE(1889), 1, - sym_path, - STATE(1803), 2, + ACTIONS(1772), 1, + anon_sym_DQUOTE, + ACTIONS(1774), 1, + anon_sym_SQUOTE, + ACTIONS(1776), 1, + anon_sym_BQUOTE, + ACTIONS(1778), 1, + sym_raw_string_begin, + ACTIONS(3637), 1, + aux_sym_cmd_identifier_token1, + STATE(1801), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1508), 3, + STATE(2150), 1, + sym__val_number_decimal, + STATE(3755), 1, + sym_cmd_identifier, + STATE(3763), 1, + sym_val_string, + STATE(4082), 1, + sym__command_name, + ACTIONS(3633), 2, anon_sym_export, - aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1510), 36, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(3645), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3647), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2274), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3635), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -175125,6 +176069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -175132,131 +176077,79 @@ 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, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, + [40548] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1772), 1, anon_sym_DQUOTE, + ACTIONS(1774), 1, anon_sym_SQUOTE, + ACTIONS(1776), 1, anon_sym_BQUOTE, - [40892] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4118), 1, - sym__newline, - ACTIONS(4132), 1, - anon_sym_list, - ACTIONS(4134), 1, - anon_sym_oneof, - STATE(1804), 1, - sym_comment, - STATE(1820), 1, - aux_sym__repeat_newline, - STATE(3087), 1, - sym__type_annotation, - ACTIONS(4130), 2, - anon_sym_table, - anon_sym_record, - STATE(3327), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(4128), 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, - [40957] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1805), 1, + ACTIONS(1778), 1, + sym_raw_string_begin, + ACTIONS(3637), 1, + aux_sym_cmd_identifier_token1, + STATE(1802), 1, sym_comment, - ACTIONS(4147), 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, - [41008] = 4, + STATE(2150), 1, + sym__val_number_decimal, + STATE(3755), 1, + sym_cmd_identifier, + STATE(3763), 1, + sym_val_string, + STATE(5367), 1, + sym__command_name, + ACTIONS(3633), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3645), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3647), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2274), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3635), 24, + 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_finally, + 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, + [40626] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1806), 1, + STATE(1803), 1, sym_comment, - ACTIONS(1519), 4, + ACTIONS(1528), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1521), 38, + ACTIONS(1530), 39, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -175275,6 +176168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -175295,19 +176189,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK2, anon_sym_BANG, - [41061] = 4, + [40680] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1807), 1, + STATE(1804), 1, + sym_comment, + ACTIONS(767), 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(769), 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, + [40734] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4115), 1, + anon_sym_BANG, + STATE(1805), 1, sym_comment, - ACTIONS(1523), 4, + ACTIONS(1460), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1525), 38, + ACTIONS(1462), 38, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -175324,6 +176269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -175334,6 +176280,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, @@ -175342,21 +176290,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [41114] = 4, + [40790] = 16, ACTIONS(3), 1, anon_sym_POUND, - STATE(1808), 1, + ACTIONS(1772), 1, + anon_sym_DQUOTE, + ACTIONS(1774), 1, + anon_sym_SQUOTE, + ACTIONS(1776), 1, + anon_sym_BQUOTE, + ACTIONS(1778), 1, + sym_raw_string_begin, + ACTIONS(3637), 1, + aux_sym_cmd_identifier_token1, + STATE(1806), 1, sym_comment, - ACTIONS(1527), 4, + STATE(2150), 1, + sym__val_number_decimal, + STATE(3755), 1, + sym_cmd_identifier, + STATE(3763), 1, + sym_val_string, + STATE(5370), 1, + sym__command_name, + ACTIONS(3633), 2, anon_sym_export, - aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1529), 38, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(3645), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3647), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2274), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3635), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -175373,6 +176344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -175380,32 +176352,72 @@ 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, + [40868] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4081), 1, + aux_sym__immediate_decimal_token5, + STATE(1807), 1, + sym_comment, + ACTIONS(747), 8, + anon_sym_GT2, anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [41167] = 5, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(749), 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, + [40924] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_QMARK2, - STATE(1809), 1, + ACTIONS(4119), 1, + aux_sym__immediate_decimal_token5, + STATE(1808), 1, sym_comment, - ACTIONS(1448), 4, + ACTIONS(767), 6, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1450), 37, + anon_sym_DOT_DOT2, + sym_duration_unit, + sym__unquoted_pattern, + ACTIONS(769), 36, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -175423,6 +176435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -175430,32 +176443,84 @@ 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, - [41222] = 4, + [40980] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4121), 1, + aux_sym__immediate_decimal_token5, + STATE(1809), 1, + sym_comment, + ACTIONS(767), 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(769), 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, + [41036] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(4032), 1, + aux_sym__immediate_decimal_token5, STATE(1810), 1, sym_comment, - ACTIONS(1535), 4, + ACTIONS(747), 6, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1537), 38, + anon_sym_DOT_DOT2, + sym_duration_unit, + sym__unquoted_pattern, + ACTIONS(749), 36, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -175472,6 +176537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -175479,32 +176545,55 @@ 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, - [41275] = 4, + [41092] = 16, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1772), 1, + anon_sym_DQUOTE, + ACTIONS(1774), 1, + anon_sym_SQUOTE, + ACTIONS(1776), 1, + anon_sym_BQUOTE, + ACTIONS(1778), 1, + sym_raw_string_begin, + ACTIONS(3637), 1, + aux_sym_cmd_identifier_token1, STATE(1811), 1, sym_comment, - ACTIONS(1539), 4, + STATE(2150), 1, + sym__val_number_decimal, + STATE(3755), 1, + sym_cmd_identifier, + STATE(3763), 1, + sym_val_string, + STATE(5243), 1, + sym__command_name, + ACTIONS(3633), 2, anon_sym_export, - aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1541), 38, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(3645), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3647), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2274), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3635), 24, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -175521,6 +176610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -175528,30 +176618,32 @@ 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, - 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, - [41328] = 3, + [41170] = 11, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3894), 1, + anon_sym_list, + ACTIONS(3896), 1, + anon_sym_oneof, + ACTIONS(4096), 1, + anon_sym_AT2, + ACTIONS(4123), 1, + anon_sym_GT2, STATE(1812), 1, sym_comment, - ACTIONS(4151), 42, - sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, + STATE(4887), 1, + sym__all_type, + STATE(5389), 1, + sym_param_completer, + ACTIONS(3892), 2, + anon_sym_table, + anon_sym_record, + STATE(4956), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3890), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -175581,38 +176673,144 @@ 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, + [41238] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1813), 1, + sym_comment, + ACTIONS(863), 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(865), 35, + anon_sym_in, + sym__newline, + anon_sym_DASH2, anon_sym_LBRACE, - anon_sym_RBRACE, - [41379] = 10, + anon_sym_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, + [41292] = 16, + 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, + STATE(1814), 1, + sym_comment, + STATE(2018), 1, + sym__val_number_decimal, + STATE(4297), 1, + sym__command_name, + STATE(4376), 1, + sym_cmd_identifier, + STATE(4379), 1, + sym_val_string, + ACTIONS(3645), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3647), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3665), 2, + anon_sym_export, + anon_sym_in, + STATE(502), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3667), 24, + 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_finally, + 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, + [41370] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3782), 1, + ACTIONS(4125), 1, + sym__newline, + ACTIONS(4131), 1, anon_sym_list, - ACTIONS(3784), 1, + ACTIONS(4133), 1, anon_sym_oneof, - STATE(1813), 1, - sym_comment, STATE(1815), 1, - aux_sym__types_body_repeat3, - STATE(4592), 1, - sym__one_type, - STATE(5109), 1, + sym_comment, + STATE(1863), 1, + aux_sym__repeat_newline, + STATE(2910), 1, sym__type_annotation, - ACTIONS(3780), 2, + ACTIONS(4129), 2, anon_sym_table, anon_sym_record, - STATE(2651), 4, + STATE(3127), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3778), 31, + ACTIONS(4127), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -175644,21 +176842,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [41444] = 5, + [41435] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4108), 1, - aux_sym__immediate_decimal_token5, - STATE(1814), 1, + STATE(1816), 1, sym_comment, - ACTIONS(747), 6, + ACTIONS(863), 6, 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(865), 36, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -175676,6 +176872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -175694,29 +176891,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [41499] = 9, + [41488] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4159), 1, + ACTIONS(4125), 1, + sym__newline, + ACTIONS(4139), 1, anon_sym_list, - ACTIONS(4162), 1, + ACTIONS(4141), 1, anon_sym_oneof, - STATE(4846), 1, - sym__one_type, - STATE(5109), 1, + STATE(1817), 1, + sym_comment, + STATE(2031), 1, + aux_sym__repeat_newline, + STATE(3182), 1, sym__type_annotation, - ACTIONS(4156), 2, + ACTIONS(4137), 2, anon_sym_table, anon_sym_record, - STATE(1815), 2, + STATE(3299), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4135), 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, + [41553] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4125), 1, + sym__newline, + ACTIONS(4139), 1, + anon_sym_list, + ACTIONS(4141), 1, + anon_sym_oneof, + STATE(1818), 1, sym_comment, - aux_sym__types_body_repeat3, - STATE(2651), 4, + STATE(1825), 1, + aux_sym__repeat_newline, + STATE(3204), 1, + sym__type_annotation, + ACTIONS(4137), 2, + anon_sym_table, + anon_sym_record, + STATE(3299), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4153), 31, + ACTIONS(4135), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -175748,72 +177001,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [41562] = 5, + [41618] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_BANG, - STATE(1816), 1, + STATE(1819), 1, sym_comment, - ACTIONS(1448), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1450), 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, + ACTIONS(4143), 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, - 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, - [41617] = 5, + [41669] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4165), 1, - aux_sym__immediate_decimal_token5, - STATE(1817), 1, + ACTIONS(4145), 1, + anon_sym_BANG, + STATE(1820), 1, sym_comment, - ACTIONS(771), 6, + ACTIONS(1460), 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(1462), 37, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -175830,6 +177080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -175837,102 +177088,28 @@ 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_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, - [41672] = 16, + [41724] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1800), 1, - anon_sym_DQUOTE, - ACTIONS(1802), 1, - anon_sym_SQUOTE, - ACTIONS(1804), 1, - anon_sym_BQUOTE, - ACTIONS(1806), 1, - sym_raw_string_begin, - ACTIONS(3651), 1, - aux_sym_cmd_identifier_token1, - STATE(1818), 1, + STATE(1821), 1, sym_comment, - STATE(2133), 1, - sym__val_number_decimal, - STATE(3713), 1, - sym_cmd_identifier, - STATE(3719), 1, - sym_val_string, - STATE(3986), 1, - sym__command_name, - ACTIONS(3647), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3659), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3661), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2266), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3649), 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, - [41749] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3782), 1, - anon_sym_list, - ACTIONS(3784), 1, - anon_sym_oneof, - ACTIONS(4118), 1, + ACTIONS(4147), 42, sym__newline, - STATE(1819), 1, - sym_comment, - STATE(1844), 1, - aux_sym__repeat_newline, - STATE(2899), 1, - sym__type_annotation, - ACTIONS(3780), 2, - anon_sym_table, - anon_sym_record, - STATE(2651), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3778), 31, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -175962,32 +177139,74 @@ 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, - [41814] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4118), 1, - sym__newline, - ACTIONS(4132), 1, + anon_sym_record, anon_sym_list, - ACTIONS(4134), 1, anon_sym_oneof, - STATE(1820), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, + [41775] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1822), 1, sym_comment, - STATE(2012), 1, - aux_sym__repeat_newline, - STATE(3103), 1, - sym__type_annotation, - ACTIONS(4130), 2, - anon_sym_table, - anon_sym_record, - STATE(3327), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(4128), 31, + 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, + [41828] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1823), 1, + sym_comment, + ACTIONS(4149), 42, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -176017,32 +177236,87 @@ 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, - [41879] = 10, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + anon_sym_LBRACE, + anon_sym_RBRACE, + [41879] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1824), 1, + sym_comment, + ACTIONS(767), 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(769), 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, + [41932] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3782), 1, + ACTIONS(4125), 1, + sym__newline, + ACTIONS(4139), 1, anon_sym_list, - ACTIONS(3784), 1, + ACTIONS(4141), 1, anon_sym_oneof, - STATE(1815), 1, - aux_sym__types_body_repeat3, - STATE(1821), 1, + STATE(1825), 1, sym_comment, - STATE(4551), 1, - sym__one_type, - STATE(5109), 1, + STATE(2031), 1, + aux_sym__repeat_newline, + STATE(3205), 1, sym__type_annotation, - ACTIONS(3780), 2, + ACTIONS(4137), 2, anon_sym_table, anon_sym_record, - STATE(2651), 4, + STATE(3299), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3778), 31, + ACTIONS(4135), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -176074,30 +177348,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [41944] = 10, + [41997] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3782), 1, - anon_sym_list, - ACTIONS(3784), 1, - anon_sym_oneof, - ACTIONS(4118), 1, - sym__newline, - STATE(1822), 1, + STATE(1826), 1, sym_comment, - STATE(2012), 1, - aux_sym__repeat_newline, - STATE(4686), 1, - sym__type_annotation, - ACTIONS(3780), 2, - anon_sym_table, - anon_sym_record, - STATE(2651), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3778), 31, + ACTIONS(863), 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(865), 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, + [42050] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1827), 1, + sym_comment, + ACTIONS(4151), 42, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -176127,26 +177437,34 @@ 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, - [42009] = 4, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + anon_sym_LBRACE, + anon_sym_RBRACE, + [42101] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1823), 1, + ACTIONS(4113), 1, + aux_sym__immediate_decimal_token5, + STATE(1828), 1, sym_comment, - ACTIONS(739), 8, + ACTIONS(1792), 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(1790), 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, @@ -176177,22 +177495,74 @@ 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, - [42062] = 4, + [42156] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1824), 1, + ACTIONS(4153), 1, + aux_sym__immediate_decimal_token5, + STATE(1829), 1, sym_comment, - ACTIONS(771), 8, + ACTIONS(1848), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1846), 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, + [42211] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4155), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4157), 1, + aux_sym__immediate_decimal_token5, + STATE(1830), 1, + sym_comment, + ACTIONS(1732), 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), 34, + ACTIONS(1730), 33, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -176226,22 +177596,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [42115] = 4, + [42268] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(1825), 1, + STATE(1831), 1, + sym_comment, + ACTIONS(4159), 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, + [42319] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4161), 1, + anon_sym_DOT, + ACTIONS(4163), 1, + aux_sym__immediate_decimal_token5, + STATE(1832), 1, sym_comment, - ACTIONS(860), 8, + ACTIONS(1792), 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(862), 34, + ACTIONS(1790), 33, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -176275,31 +177695,286 @@ 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, - [42168] = 10, + [42376] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4118), 1, + ACTIONS(4125), 1, sym__newline, - ACTIONS(4124), 1, + ACTIONS(4139), 1, anon_sym_list, - ACTIONS(4126), 1, + ACTIONS(4141), 1, anon_sym_oneof, - STATE(1826), 1, + STATE(1817), 1, + aux_sym__repeat_newline, + STATE(1833), 1, sym_comment, - STATE(2012), 1, + STATE(3175), 1, + sym__type_annotation, + ACTIONS(4137), 2, + anon_sym_table, + anon_sym_record, + STATE(3299), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4135), 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, + [42441] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1834), 1, + sym_comment, + ACTIONS(1543), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1545), 38, + 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_finally, + 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, + [42494] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1835), 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), 36, + 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_finally, + 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, + [42547] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3894), 1, + anon_sym_list, + ACTIONS(3896), 1, + anon_sym_oneof, + ACTIONS(4125), 1, + sym__newline, + STATE(1836), 1, + sym_comment, + STATE(1845), 1, aux_sym__repeat_newline, - STATE(3153), 1, + STATE(4834), 1, + sym__type_annotation, + ACTIONS(3892), 2, + anon_sym_table, + anon_sym_record, + STATE(2656), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3890), 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, + [42612] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1837), 1, + sym_comment, + ACTIONS(4165), 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, + [42663] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3894), 1, + anon_sym_list, + ACTIONS(3896), 1, + anon_sym_oneof, + STATE(1838), 1, + sym_comment, + STATE(1848), 1, + aux_sym__types_body_repeat3, + STATE(4899), 1, + sym__one_type, + STATE(5241), 1, sym__type_annotation, - ACTIONS(4122), 2, + ACTIONS(3892), 2, anon_sym_table, anon_sym_record, - STATE(3162), 4, + STATE(2656), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4120), 31, + ACTIONS(3890), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -176331,80 +178006,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [42233] = 5, + [42728] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4114), 1, - aux_sym__immediate_decimal_token5, - STATE(1827), 1, + ACTIONS(4145), 1, + anon_sym_QMARK2, + STATE(1839), 1, sym_comment, - ACTIONS(1746), 7, - anon_sym_GT2, + ACTIONS(1460), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1462), 37, + 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_finally, + 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, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1744), 34, + 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, + [42783] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1840), 1, + sym_comment, + ACTIONS(1468), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, + anon_sym_DOT2, + ACTIONS(1470), 38, + 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_finally, + 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, + 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, + [42836] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1841), 1, + sym_comment, + ACTIONS(767), 6, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT_DOT2, + sym_duration_unit, + sym__unquoted_pattern, + ACTIONS(769), 36, + 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_finally, + 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, - [42288] = 10, + 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, + [42889] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4118), 1, - sym__newline, - ACTIONS(4124), 1, + ACTIONS(3894), 1, anon_sym_list, - ACTIONS(4126), 1, + ACTIONS(3896), 1, anon_sym_oneof, - STATE(1828), 1, + ACTIONS(4125), 1, + sym__newline, + STATE(1842), 1, sym_comment, - STATE(2012), 1, + STATE(2031), 1, aux_sym__repeat_newline, - STATE(2923), 1, + STATE(4690), 1, sym__type_annotation, - ACTIONS(4122), 2, + ACTIONS(3892), 2, anon_sym_table, anon_sym_record, - STATE(3162), 4, + STATE(2656), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4120), 31, + ACTIONS(3890), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -176436,80 +178209,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [42353] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4167), 1, - aux_sym__immediate_decimal_token5, - STATE(1829), 1, - sym_comment, - ACTIONS(1854), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1852), 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, - [42408] = 10, + [42954] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4118), 1, - sym__newline, - ACTIONS(4124), 1, + ACTIONS(3894), 1, anon_sym_list, - ACTIONS(4126), 1, + ACTIONS(3896), 1, anon_sym_oneof, - STATE(1794), 1, - aux_sym__repeat_newline, - STATE(1830), 1, + STATE(1843), 1, sym_comment, - STATE(2940), 1, + STATE(1848), 1, + aux_sym__types_body_repeat3, + STATE(4818), 1, + sym__one_type, + STATE(5241), 1, sym__type_annotation, - ACTIONS(4122), 2, + ACTIONS(3892), 2, anon_sym_table, anon_sym_record, - STATE(3162), 4, + STATE(2656), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4120), 31, + ACTIONS(3890), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -176541,30 +178264,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [42473] = 10, + [43019] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3782), 1, + ACTIONS(4125), 1, + sym__newline, + ACTIONS(4131), 1, anon_sym_list, - ACTIONS(3784), 1, + ACTIONS(4133), 1, anon_sym_oneof, - ACTIONS(4118), 1, - sym__newline, - STATE(1831), 1, + STATE(1844), 1, sym_comment, - STATE(2012), 1, + STATE(1851), 1, aux_sym__repeat_newline, - STATE(4606), 1, + STATE(3183), 1, sym__type_annotation, - ACTIONS(3780), 2, + ACTIONS(4129), 2, anon_sym_table, anon_sym_record, - STATE(2651), 4, + STATE(3127), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3778), 31, + ACTIONS(4127), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -176596,30 +178319,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [42538] = 10, + [43084] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3782), 1, + ACTIONS(3894), 1, anon_sym_list, - ACTIONS(3784), 1, + ACTIONS(3896), 1, anon_sym_oneof, - ACTIONS(4118), 1, + ACTIONS(4125), 1, sym__newline, - STATE(1822), 1, - aux_sym__repeat_newline, - STATE(1832), 1, + STATE(1845), 1, sym_comment, - STATE(4622), 1, + STATE(2031), 1, + aux_sym__repeat_newline, + STATE(4666), 1, sym__type_annotation, - ACTIONS(3780), 2, + ACTIONS(3892), 2, anon_sym_table, anon_sym_record, - STATE(2651), 4, + STATE(2656), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3778), 31, + ACTIONS(3890), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -176651,17 +178374,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [42603] = 3, + [43149] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(1833), 1, - sym_comment, - ACTIONS(4169), 42, + ACTIONS(3894), 1, + anon_sym_list, + ACTIONS(3896), 1, + anon_sym_oneof, + ACTIONS(4125), 1, sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, + STATE(1842), 1, + aux_sym__repeat_newline, + STATE(1846), 1, + sym_comment, + STATE(4679), 1, + sym__type_annotation, + ACTIONS(3892), 2, + anon_sym_table, + anon_sym_record, + STATE(2656), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3890), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -176691,52 +178427,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_range, anon_sym_signature, anon_sym_string, - anon_sym_table, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_oneof, - anon_sym_LBRACE, - anon_sym_RBRACE, - [42654] = 16, + [43214] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1800), 1, - anon_sym_DQUOTE, - ACTIONS(1802), 1, - anon_sym_SQUOTE, - ACTIONS(1804), 1, - anon_sym_BQUOTE, - ACTIONS(1806), 1, - sym_raw_string_begin, - ACTIONS(3651), 1, - aux_sym_cmd_identifier_token1, - STATE(1834), 1, + STATE(1847), 1, sym_comment, - STATE(2133), 1, - sym__val_number_decimal, - STATE(3713), 1, - sym_cmd_identifier, - STATE(3719), 1, - sym_val_string, - STATE(5186), 1, - sym__command_name, - ACTIONS(3647), 2, + ACTIONS(1551), 4, anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(3659), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3661), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2266), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3649), 23, + anon_sym_DOT2, + ACTIONS(1553), 38, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -176753,6 +178457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -176760,78 +178465,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [42731] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1800), 1, - anon_sym_DQUOTE, - ACTIONS(1802), 1, - anon_sym_SQUOTE, - ACTIONS(1804), 1, - anon_sym_BQUOTE, - ACTIONS(1806), 1, - sym_raw_string_begin, - ACTIONS(3651), 1, - aux_sym_cmd_identifier_token1, - STATE(1835), 1, - sym_comment, - STATE(2133), 1, - sym__val_number_decimal, - STATE(3713), 1, - sym_cmd_identifier, - STATE(3719), 1, - sym_val_string, - STATE(4393), 1, - sym__command_name, - ACTIONS(3647), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3659), 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(3661), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2266), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3649), 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, - [42808] = 3, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [43267] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(1836), 1, + ACTIONS(4173), 1, + anon_sym_list, + ACTIONS(4176), 1, + anon_sym_oneof, + STATE(5024), 1, + sym__one_type, + STATE(5241), 1, + sym__type_annotation, + ACTIONS(4170), 2, + anon_sym_table, + anon_sym_record, + STATE(1848), 2, sym_comment, - ACTIONS(4171), 42, - sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, + aux_sym__types_body_repeat3, + STATE(2656), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4167), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -176861,38 +178530,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_range, anon_sym_signature, anon_sym_string, - anon_sym_table, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_oneof, - anon_sym_LBRACE, - anon_sym_RBRACE, - [42859] = 10, + [43330] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4118), 1, + ACTIONS(4125), 1, sym__newline, - ACTIONS(4124), 1, + ACTIONS(4131), 1, anon_sym_list, - ACTIONS(4126), 1, + ACTIONS(4133), 1, anon_sym_oneof, - STATE(1837), 1, + STATE(1849), 1, sym_comment, - STATE(1839), 1, + STATE(1855), 1, aux_sym__repeat_newline, - STATE(3028), 1, + STATE(2938), 1, sym__type_annotation, - ACTIONS(4122), 2, + ACTIONS(4129), 2, anon_sym_table, anon_sym_record, - STATE(3162), 4, + STATE(3127), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4120), 31, + ACTIONS(4127), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -176924,91 +178587,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [42924] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1800), 1, - anon_sym_DQUOTE, - ACTIONS(1802), 1, - anon_sym_SQUOTE, - ACTIONS(1804), 1, - anon_sym_BQUOTE, - ACTIONS(1806), 1, - sym_raw_string_begin, - ACTIONS(3651), 1, - aux_sym_cmd_identifier_token1, - STATE(1838), 1, - sym_comment, - STATE(2133), 1, - sym__val_number_decimal, - STATE(3713), 1, - sym_cmd_identifier, - STATE(3719), 1, - sym_val_string, - STATE(4319), 1, - sym__command_name, - ACTIONS(3647), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3659), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3661), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2266), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3649), 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, - [43001] = 10, + [43395] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4118), 1, + ACTIONS(4125), 1, sym__newline, - ACTIONS(4124), 1, + ACTIONS(4131), 1, anon_sym_list, - ACTIONS(4126), 1, + ACTIONS(4133), 1, anon_sym_oneof, - STATE(1839), 1, + STATE(1850), 1, sym_comment, - STATE(2012), 1, + STATE(1852), 1, aux_sym__repeat_newline, - STATE(3035), 1, + STATE(3150), 1, sym__type_annotation, - ACTIONS(4122), 2, + ACTIONS(4129), 2, anon_sym_table, anon_sym_record, - STATE(3162), 4, + STATE(3127), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4120), 31, + ACTIONS(4127), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -177040,30 +178642,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [43066] = 10, + [43460] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3782), 1, + ACTIONS(4125), 1, + sym__newline, + ACTIONS(4131), 1, anon_sym_list, - ACTIONS(3784), 1, + ACTIONS(4133), 1, anon_sym_oneof, - ACTIONS(4118), 1, - sym__newline, - STATE(1840), 1, + STATE(1851), 1, sym_comment, - STATE(1848), 1, + STATE(2031), 1, aux_sym__repeat_newline, - STATE(2989), 1, + STATE(3186), 1, sym__type_annotation, - ACTIONS(3780), 2, + ACTIONS(4129), 2, anon_sym_table, anon_sym_record, - STATE(2651), 4, + STATE(3127), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3778), 31, + ACTIONS(4127), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -177095,203 +178697,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [43131] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1800), 1, - anon_sym_DQUOTE, - ACTIONS(1802), 1, - anon_sym_SQUOTE, - ACTIONS(1804), 1, - anon_sym_BQUOTE, - ACTIONS(1806), 1, - sym_raw_string_begin, - ACTIONS(3651), 1, - aux_sym_cmd_identifier_token1, - STATE(1841), 1, - sym_comment, - STATE(2133), 1, - sym__val_number_decimal, - STATE(3713), 1, - sym_cmd_identifier, - STATE(3719), 1, - sym_val_string, - STATE(5232), 1, - sym__command_name, - ACTIONS(3647), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3659), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3661), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2266), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3649), 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, - [43208] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4173), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4175), 1, - aux_sym__immediate_decimal_token5, - STATE(1842), 1, - sym_comment, - ACTIONS(1772), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1770), 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, - [43265] = 16, + [43525] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1800), 1, - anon_sym_DQUOTE, - ACTIONS(1802), 1, - anon_sym_SQUOTE, - ACTIONS(1804), 1, - anon_sym_BQUOTE, - ACTIONS(1806), 1, - sym_raw_string_begin, - ACTIONS(3651), 1, - aux_sym_cmd_identifier_token1, - STATE(1843), 1, + ACTIONS(4125), 1, + sym__newline, + ACTIONS(4131), 1, + anon_sym_list, + ACTIONS(4133), 1, + anon_sym_oneof, + STATE(1852), 1, sym_comment, - STATE(2133), 1, - sym__val_number_decimal, - STATE(3713), 1, - sym_cmd_identifier, - STATE(3719), 1, - sym_val_string, - STATE(5251), 1, - sym__command_name, - ACTIONS(3647), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3659), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3661), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2266), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3649), 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, - [43342] = 10, + STATE(2031), 1, + aux_sym__repeat_newline, + STATE(3157), 1, + sym__type_annotation, + ACTIONS(4129), 2, + anon_sym_table, + anon_sym_record, + STATE(3127), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4127), 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, + [43590] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3782), 1, + ACTIONS(3894), 1, anon_sym_list, - ACTIONS(3784), 1, + ACTIONS(3896), 1, anon_sym_oneof, - ACTIONS(4118), 1, + ACTIONS(4125), 1, sym__newline, - STATE(1844), 1, + STATE(1853), 1, sym_comment, - STATE(2012), 1, + STATE(1856), 1, aux_sym__repeat_newline, - STATE(2900), 1, + STATE(2947), 1, sym__type_annotation, - ACTIONS(3780), 2, + ACTIONS(3892), 2, anon_sym_table, anon_sym_record, - STATE(2651), 4, + STATE(2656), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3778), 31, + ACTIONS(3890), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -177323,44 +178807,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [43407] = 16, + [43655] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1800), 1, - anon_sym_DQUOTE, - ACTIONS(1802), 1, - anon_sym_SQUOTE, - ACTIONS(1804), 1, - anon_sym_BQUOTE, - ACTIONS(1806), 1, - sym_raw_string_begin, - ACTIONS(3651), 1, - aux_sym_cmd_identifier_token1, - STATE(1845), 1, + ACTIONS(4179), 1, + anon_sym_DOT_DOT2, + ACTIONS(4183), 1, + sym_filesize_unit, + ACTIONS(4185), 1, + sym_duration_unit, + ACTIONS(4187), 1, + sym__unquoted_pattern, + STATE(1854), 1, sym_comment, - STATE(2133), 1, - sym__val_number_decimal, - STATE(3713), 1, - sym_cmd_identifier, - STATE(3719), 1, - sym_val_string, - STATE(5136), 1, - sym__command_name, - ACTIONS(3647), 2, + ACTIONS(4181), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(847), 3, anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(3659), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3661), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2266), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3649), 23, + ACTIONS(968), 33, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -177377,6 +178845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -177384,152 +178853,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [43484] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1800), 1, - anon_sym_DQUOTE, - ACTIONS(1802), 1, - anon_sym_SQUOTE, - ACTIONS(1804), 1, - anon_sym_BQUOTE, - ACTIONS(1806), 1, - sym_raw_string_begin, - ACTIONS(3651), 1, - aux_sym_cmd_identifier_token1, - STATE(1846), 1, - sym_comment, - STATE(2133), 1, - sym__val_number_decimal, - STATE(3713), 1, - sym_cmd_identifier, - STATE(3719), 1, - sym_val_string, - STATE(5111), 1, - sym__command_name, - ACTIONS(3647), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3659), 2, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3661), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2266), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3649), 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, - [43561] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1800), 1, anon_sym_DQUOTE, - ACTIONS(1802), 1, anon_sym_SQUOTE, - ACTIONS(1804), 1, anon_sym_BQUOTE, - ACTIONS(1806), 1, - sym_raw_string_begin, - ACTIONS(3651), 1, - aux_sym_cmd_identifier_token1, - STATE(1847), 1, - sym_comment, - STATE(2133), 1, - sym__val_number_decimal, - STATE(3713), 1, - sym_cmd_identifier, - STATE(3719), 1, - sym_val_string, - STATE(4387), 1, - sym__command_name, - ACTIONS(3647), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3659), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3661), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2266), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3649), 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, - [43638] = 10, + [43718] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3782), 1, + ACTIONS(4125), 1, + sym__newline, + ACTIONS(4131), 1, anon_sym_list, - ACTIONS(3784), 1, + ACTIONS(4133), 1, anon_sym_oneof, - ACTIONS(4118), 1, - sym__newline, - STATE(1848), 1, + STATE(1855), 1, sym_comment, - STATE(2012), 1, + STATE(2031), 1, aux_sym__repeat_newline, - STATE(2991), 1, + STATE(2971), 1, sym__type_annotation, - ACTIONS(3780), 2, + ACTIONS(4129), 2, anon_sym_table, anon_sym_record, - STATE(2651), 4, + STATE(3127), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3778), 31, + ACTIONS(4127), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -177561,30 +178916,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [43703] = 10, + [43783] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3782), 1, + ACTIONS(3894), 1, anon_sym_list, - ACTIONS(3784), 1, + ACTIONS(3896), 1, anon_sym_oneof, - ACTIONS(4118), 1, + ACTIONS(4125), 1, sym__newline, - STATE(1849), 1, + STATE(1856), 1, sym_comment, - STATE(1850), 1, + STATE(2031), 1, aux_sym__repeat_newline, - STATE(2992), 1, + STATE(2953), 1, sym__type_annotation, - ACTIONS(3780), 2, + ACTIONS(3892), 2, anon_sym_table, anon_sym_record, - STATE(2651), 4, + STATE(2656), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3778), 31, + ACTIONS(3890), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -177616,30 +178971,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [43768] = 10, + [43848] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3782), 1, + ACTIONS(3894), 1, anon_sym_list, - ACTIONS(3784), 1, + ACTIONS(3896), 1, anon_sym_oneof, - ACTIONS(4118), 1, + ACTIONS(4125), 1, sym__newline, - STATE(1850), 1, + STATE(1857), 1, sym_comment, - STATE(2012), 1, + STATE(1858), 1, aux_sym__repeat_newline, - STATE(2993), 1, + STATE(2954), 1, sym__type_annotation, - ACTIONS(3780), 2, + ACTIONS(3892), 2, anon_sym_table, anon_sym_record, - STATE(2651), 4, + STATE(2656), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3778), 31, + ACTIONS(3890), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -177671,30 +179026,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [43833] = 10, + [43913] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3782), 1, + ACTIONS(3894), 1, anon_sym_list, - ACTIONS(3784), 1, + ACTIONS(3896), 1, anon_sym_oneof, - ACTIONS(4118), 1, + ACTIONS(4125), 1, sym__newline, - STATE(1851), 1, + STATE(1858), 1, sym_comment, - STATE(1853), 1, + STATE(2031), 1, aux_sym__repeat_newline, - STATE(2896), 1, + STATE(2955), 1, sym__type_annotation, - ACTIONS(3780), 2, + ACTIONS(3892), 2, anon_sym_table, anon_sym_record, - STATE(2651), 4, + STATE(2656), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3778), 31, + ACTIONS(3890), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -177726,91 +179081,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [43898] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1800), 1, - anon_sym_DQUOTE, - ACTIONS(1802), 1, - anon_sym_SQUOTE, - ACTIONS(1804), 1, - anon_sym_BQUOTE, - ACTIONS(1806), 1, - sym_raw_string_begin, - ACTIONS(3651), 1, - aux_sym_cmd_identifier_token1, - STATE(1852), 1, - sym_comment, - STATE(2133), 1, - sym__val_number_decimal, - STATE(3713), 1, - sym_cmd_identifier, - STATE(3719), 1, - sym_val_string, - STATE(4953), 1, - sym__command_name, - ACTIONS(3647), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3659), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3661), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2266), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3649), 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, - [43975] = 10, + [43978] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3782), 1, + ACTIONS(3894), 1, anon_sym_list, - ACTIONS(3784), 1, + ACTIONS(3896), 1, anon_sym_oneof, - ACTIONS(4118), 1, + ACTIONS(4125), 1, sym__newline, - STATE(1853), 1, + STATE(1859), 1, sym_comment, - STATE(2012), 1, + STATE(1860), 1, aux_sym__repeat_newline, - STATE(2897), 1, + STATE(2892), 1, sym__type_annotation, - ACTIONS(3780), 2, + ACTIONS(3892), 2, anon_sym_table, anon_sym_record, - STATE(2651), 4, + STATE(2656), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3778), 31, + ACTIONS(3890), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -177842,30 +179136,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [44040] = 10, + [44043] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4118), 1, - sym__newline, - ACTIONS(4124), 1, + ACTIONS(3894), 1, anon_sym_list, - ACTIONS(4126), 1, + ACTIONS(3896), 1, anon_sym_oneof, - STATE(1826), 1, - aux_sym__repeat_newline, - STATE(1854), 1, + ACTIONS(4125), 1, + sym__newline, + STATE(1860), 1, sym_comment, - STATE(3099), 1, + STATE(2031), 1, + aux_sym__repeat_newline, + STATE(2894), 1, sym__type_annotation, - ACTIONS(4122), 2, + ACTIONS(3892), 2, anon_sym_table, anon_sym_record, - STATE(3162), 4, + STATE(2656), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4120), 31, + ACTIONS(3890), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -177897,129 +179191,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [44105] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4177), 1, - aux_sym__immediate_decimal_token5, - STATE(1855), 1, - sym_comment, - ACTIONS(1854), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1852), 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, - [44159] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1635), 1, - sym__unquoted_pattern, - ACTIONS(1960), 1, - anon_sym_LPAREN2, - ACTIONS(4179), 1, - anon_sym_DOT_DOT2, - STATE(1856), 1, - sym_comment, - ACTIONS(4181), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1958), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1956), 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, - [44219] = 9, + [44108] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4020), 1, + ACTIONS(3894), 1, anon_sym_list, - ACTIONS(4022), 1, + ACTIONS(3896), 1, anon_sym_oneof, - STATE(1857), 1, + ACTIONS(4125), 1, + sym__newline, + STATE(1861), 1, sym_comment, - STATE(1859), 1, - aux_sym__composite_argument_body_repeat1, - STATE(4615), 1, - sym__all_type, - ACTIONS(4018), 2, + STATE(1862), 1, + aux_sym__repeat_newline, + STATE(2895), 1, + sym__type_annotation, + ACTIONS(3892), 2, anon_sym_table, anon_sym_record, - STATE(4673), 4, + STATE(2656), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4016), 31, + ACTIONS(3890), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -178051,28 +179246,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [44281] = 9, + [44173] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4020), 1, + ACTIONS(3894), 1, anon_sym_list, - ACTIONS(4022), 1, + ACTIONS(3896), 1, anon_sym_oneof, - STATE(1858), 1, + ACTIONS(4125), 1, + sym__newline, + STATE(1862), 1, sym_comment, - STATE(1859), 1, - aux_sym__composite_argument_body_repeat1, - STATE(4681), 1, - sym__all_type, - ACTIONS(4018), 2, + STATE(2031), 1, + aux_sym__repeat_newline, + STATE(2896), 1, + sym__type_annotation, + ACTIONS(3892), 2, anon_sym_table, anon_sym_record, - STATE(4673), 4, + STATE(2656), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4016), 31, + ACTIONS(3890), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -178104,27 +179301,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [44343] = 8, + [44238] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4189), 1, + ACTIONS(4125), 1, + sym__newline, + ACTIONS(4131), 1, anon_sym_list, - ACTIONS(4192), 1, + ACTIONS(4133), 1, anon_sym_oneof, - STATE(4879), 1, - sym__all_type, - ACTIONS(4186), 2, + STATE(1863), 1, + sym_comment, + STATE(2031), 1, + aux_sym__repeat_newline, + STATE(3027), 1, + sym__type_annotation, + ACTIONS(4129), 2, anon_sym_table, anon_sym_record, - STATE(1859), 2, - sym_comment, - aux_sym__composite_argument_body_repeat1, - STATE(4673), 4, + STATE(3127), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4183), 31, + ACTIONS(4127), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -178156,27 +179356,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [44403] = 8, + [44303] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1977), 1, - anon_sym_LPAREN2, - ACTIONS(1983), 1, - sym__unquoted_pattern, - ACTIONS(4195), 1, - anon_sym_DOT_DOT2, - STATE(1860), 1, + STATE(1864), 1, sym_comment, - ACTIONS(4197), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1975), 5, + ACTIONS(1528), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1530), 38, + 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_finally, + 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, + [44355] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1865), 1, + sym_comment, + ACTIONS(1551), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1553), 37, + 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_finally, + 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, + [44407] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1866), 1, + sym_comment, + ACTIONS(1732), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1973), 31, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1730), 34, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -178199,6 +179488,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, @@ -178208,27 +179498,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [44463] = 8, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [44459] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(874), 1, - anon_sym_DOT_DOT2, - ACTIONS(4199), 1, - sym_filesize_unit, - ACTIONS(4201), 1, - sym_duration_unit, - STATE(1861), 1, + STATE(1867), 1, sym_comment, - ACTIONS(876), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(866), 5, + ACTIONS(1848), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(886), 31, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1846), 34, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -178251,6 +179536,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, @@ -178260,12 +179546,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [44523] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [44511] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1862), 1, + STATE(1868), 1, sym_comment, - ACTIONS(1772), 7, + ACTIONS(1897), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -178273,7 +179561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1770), 34, + ACTIONS(1895), 34, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -178308,65 +179596,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [44575] = 9, + [44563] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4203), 1, + ACTIONS(4163), 1, + aux_sym__immediate_decimal_token5, + STATE(1869), 1, + sym_comment, + ACTIONS(1792), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_DOT_DOT2, - ACTIONS(4207), 1, - sym_filesize_unit, - ACTIONS(4209), 1, - sym_duration_unit, - ACTIONS(4211), 1, sym__unquoted_pattern, - STATE(1863), 1, - sym_comment, - ACTIONS(4205), 2, + ACTIONS(1790), 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, - ACTIONS(866), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(886), 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, - [44637] = 4, + [44617] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1864), 1, + ACTIONS(4189), 1, + aux_sym__immediate_decimal_token5, + STATE(1870), 1, sym_comment, - ACTIONS(1854), 7, + ACTIONS(1848), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -178374,11 +179660,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1852), 34, + ACTIONS(1846), 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, @@ -178409,65 +179694,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [44689] = 4, + [44671] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(1865), 1, + ACTIONS(4024), 1, + anon_sym_list, + ACTIONS(4026), 1, + anon_sym_oneof, + STATE(1871), 1, sym_comment, - ACTIONS(1496), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - 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, - [44741] = 4, + STATE(1874), 1, + aux_sym__composite_argument_body_repeat1, + STATE(4815), 1, + sym__all_type, + ACTIONS(4022), 2, + anon_sym_table, + anon_sym_record, + STATE(4685), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4020), 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, + [44733] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1866), 1, + STATE(1872), 1, sym_comment, - ACTIONS(1547), 4, + ACTIONS(1578), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1549), 37, + ACTIONS(1580), 38, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -178485,6 +179774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -178505,117 +179795,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44793] = 5, + [44785] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4213), 1, - anon_sym_QMARK2, - STATE(1867), 1, + ACTIONS(4024), 1, + anon_sym_list, + ACTIONS(4026), 1, + anon_sym_oneof, + STATE(1873), 1, sym_comment, - ACTIONS(1448), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1450), 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, - [44847] = 4, + STATE(1874), 1, + aux_sym__composite_argument_body_repeat1, + STATE(4716), 1, + sym__all_type, + ACTIONS(4022), 2, + anon_sym_table, + anon_sym_record, + STATE(4685), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4020), 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, + [44847] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1868), 1, + ACTIONS(4197), 1, + anon_sym_list, + ACTIONS(4200), 1, + anon_sym_oneof, + STATE(4980), 1, + sym__all_type, + ACTIONS(4194), 2, + anon_sym_table, + anon_sym_record, + STATE(1874), 2, sym_comment, - ACTIONS(1562), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1564), 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, - [44899] = 4, + aux_sym__composite_argument_body_repeat1, + STATE(4685), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4191), 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, + [44907] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1869), 1, + ACTIONS(1637), 1, + sym__unquoted_pattern, + ACTIONS(1976), 1, + anon_sym_LPAREN2, + ACTIONS(4203), 1, + anon_sym_DOT_DOT2, + STATE(1875), 1, sym_comment, - ACTIONS(1872), 7, + ACTIONS(4205), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1974), 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), 34, + ACTIONS(1972), 31, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -178638,7 +179943,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, @@ -178648,27 +179952,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [44951] = 5, + [44967] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4138), 1, - aux_sym__immediate_decimal_token5, - STATE(1870), 1, + ACTIONS(1986), 1, + anon_sym_LPAREN2, + ACTIONS(1992), 1, + sym__unquoted_pattern, + ACTIONS(4207), 1, + anon_sym_DOT_DOT2, + STATE(1876), 1, sym_comment, - ACTIONS(1746), 7, + ACTIONS(4209), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1984), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1744), 33, + ACTIONS(1982), 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, @@ -178687,7 +179995,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, @@ -178697,211 +180004,16 @@ 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, - [45005] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1871), 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, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [45057] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1872), 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, - 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, - [45109] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1873), 1, - sym_comment, - ACTIONS(860), 6, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT_DOT2, - sym_duration_unit, - sym__unquoted_pattern, - ACTIONS(862), 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, - [45161] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4213), 1, - anon_sym_BANG, - STATE(1874), 1, - sym_comment, - ACTIONS(1448), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1450), 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, - [45215] = 4, + [45027] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1875), 1, + STATE(1877), 1, sym_comment, - ACTIONS(1527), 3, + ACTIONS(2158), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1529), 37, + ACTIONS(2156), 38, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -178919,6 +180031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -178939,67 +180052,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45266] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4020), 1, - anon_sym_list, - ACTIONS(4022), 1, - anon_sym_oneof, - STATE(1876), 1, - sym_comment, - STATE(4495), 1, - sym__all_type, - ACTIONS(4018), 2, - anon_sym_table, - anon_sym_record, - STATE(4673), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(4016), 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, - [45325] = 4, + [45079] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1877), 1, + STATE(1878), 1, sym_comment, - ACTIONS(2296), 3, + ACTIONS(1500), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2294), 37, + ACTIONS(1502), 38, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -179017,6 +180079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -179037,63 +180100,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45376] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1878), 1, - sym_comment, - ACTIONS(1872), 7, - 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, - 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, - [45427] = 4, + [45131] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1879), 1, sym_comment, - ACTIONS(2288), 3, + ACTIONS(1504), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2286), 37, + ACTIONS(1506), 38, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -179111,6 +180127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -179131,16 +180148,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45478] = 4, + [45183] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1880), 1, sym_comment, - ACTIONS(1860), 3, + ACTIONS(2479), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1858), 37, + ACTIONS(2477), 38, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -179158,6 +180175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -179178,185 +180196,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45529] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4215), 1, - sym__entry_separator, - STATE(1881), 2, - sym_comment, - aux_sym__types_body_repeat2, - ACTIONS(3715), 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, - [45580] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4199), 1, - sym_filesize_unit, - ACTIONS(4201), 1, - sym_duration_unit, - ACTIONS(4218), 1, - anon_sym_DOT_DOT2, - STATE(1882), 1, - sym_comment, - ACTIONS(4220), 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(886), 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, - [45639] = 28, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2682), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2684), 1, - anon_sym_COLON2, - ACTIONS(4222), 1, - anon_sym_null, - ACTIONS(4226), 1, - anon_sym_LPAREN, - ACTIONS(4228), 1, - anon_sym_DOLLAR, - ACTIONS(4230), 1, - anon_sym_DOT_DOT, - ACTIONS(4234), 1, - sym_val_date, - 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, - STATE(1883), 1, - sym_comment, - STATE(1895), 1, - sym__inter_single_quotes, - STATE(1897), 1, - sym__inter_double_quotes, - STATE(3902), 1, - sym__val_number_decimal, - STATE(5101), 1, - sym_val_bool, - ACTIONS(3048), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3058), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3060), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(4232), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(5177), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4224), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(1903), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1452), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - [45738] = 4, + [45235] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1884), 1, + STATE(1881), 1, sym_comment, - ACTIONS(1580), 3, + ACTIONS(2479), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1582), 37, + ACTIONS(2477), 38, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -179374,6 +180223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -179394,65 +180244,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45789] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4250), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4252), 1, - aux_sym__immediate_decimal_token5, - STATE(1885), 1, - sym_comment, - ACTIONS(1772), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1770), 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, - [45844] = 4, + [45287] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1886), 1, + STATE(1882), 1, sym_comment, - ACTIONS(1531), 3, + ACTIONS(2328), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1533), 37, + ACTIONS(2326), 38, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -179470,6 +180271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -179485,72 +180287,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - [45895] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4020), 1, - anon_sym_list, - ACTIONS(4022), 1, - anon_sym_oneof, - STATE(1887), 1, - sym_comment, - STATE(4828), 1, - sym__type_annotation, - ACTIONS(4018), 2, - anon_sym_table, - anon_sym_record, - STATE(4882), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(4016), 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, - [45954] = 4, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [45339] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1888), 1, + STATE(1883), 1, sym_comment, - ACTIONS(1535), 3, + ACTIONS(2483), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1537), 37, + ACTIONS(2481), 38, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -179568,6 +180319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -179588,19 +180340,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46005] = 4, + [45391] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1889), 1, + STATE(1884), 1, sym_comment, - ACTIONS(1547), 4, + ACTIONS(2487), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1549), 36, + ACTIONS(2485), 38, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -179617,6 +180367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -179627,6 +180378,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, @@ -179635,16 +180388,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46056] = 4, + [45443] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1890), 1, + STATE(1885), 1, sym_comment, - ACTIONS(1539), 3, + ACTIONS(1649), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1541), 37, + ACTIONS(1647), 38, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -179662,6 +180415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -179682,74 +180436,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46107] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3782), 1, - anon_sym_list, - ACTIONS(3784), 1, - anon_sym_oneof, - STATE(1891), 1, - sym_comment, - STATE(5143), 1, - sym__type_annotation, - ACTIONS(3780), 2, - anon_sym_table, - anon_sym_record, - STATE(2651), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3778), 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, - [46166] = 4, + [45495] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1892), 1, + ACTIONS(855), 1, + anon_sym_DOT_DOT2, + ACTIONS(4211), 1, + sym_filesize_unit, + ACTIONS(4213), 1, + sym_duration_unit, + STATE(1886), 1, sym_comment, - ACTIONS(1772), 7, + ACTIONS(857), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(847), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1770), 33, + ACTIONS(968), 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, @@ -179768,7 +180479,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, @@ -179778,18 +180488,16 @@ 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, - [46217] = 4, + [45555] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1893), 1, + STATE(1887), 1, sym_comment, - ACTIONS(2284), 3, + ACTIONS(2529), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2282), 37, + ACTIONS(2527), 38, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -179807,6 +180515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -179827,63 +180536,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46268] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1894), 1, - sym_comment, - ACTIONS(1854), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1852), 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, - [46319] = 4, + [45607] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1895), 1, + STATE(1888), 1, sym_comment, - ACTIONS(2278), 3, + ACTIONS(2533), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2276), 37, + ACTIONS(2531), 38, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -179901,6 +180563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -179921,19 +180584,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46370] = 4, + [45659] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1896), 1, + STATE(1889), 1, sym_comment, - ACTIONS(1562), 4, + ACTIONS(1844), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1564), 36, + ACTIONS(1842), 38, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -179950,6 +180611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -179960,6 +180622,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, @@ -179968,16 +180632,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46421] = 4, + [45711] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1897), 1, + STATE(1890), 1, sym_comment, - ACTIONS(2278), 3, + ACTIONS(1508), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2276), 37, + ACTIONS(1510), 38, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -179995,6 +180659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -180015,17 +180680,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46472] = 4, + [45763] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1898), 1, + STATE(1891), 1, sym_comment, - ACTIONS(1496), 4, + ACTIONS(1543), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1498), 36, + ACTIONS(1545), 37, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -180044,6 +180709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -180062,16 +180728,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46523] = 4, + [45815] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1899), 1, + STATE(1892), 1, sym_comment, - ACTIONS(1647), 3, + ACTIONS(1512), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1645), 37, + ACTIONS(1514), 38, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -180089,6 +180755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -180109,16 +180776,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46574] = 4, + [45867] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1900), 1, + STATE(1893), 1, sym_comment, - ACTIONS(1523), 3, + ACTIONS(1520), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1525), 37, + ACTIONS(1522), 38, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -180136,6 +180803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -180156,75 +180824,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46625] = 6, + [45919] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4254), 1, - anon_sym_DOT, - ACTIONS(4256), 1, - aux_sym__immediate_decimal_token5, - STATE(1901), 1, + STATE(1894), 1, sym_comment, - ACTIONS(1746), 6, - anon_sym_GT2, + ACTIONS(1468), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1470), 37, + 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_finally, + 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, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1744), 32, + 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, + [45971] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1895), 1, + sym_comment, + ACTIONS(1512), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, + ACTIONS(1514), 37, + 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_finally, + 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, - [46680] = 8, + 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, + [46022] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1896), 1, + sym_comment, + ACTIONS(1528), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1530), 37, + 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_finally, + 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, + [46073] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4020), 1, + ACTIONS(3894), 1, anon_sym_list, - ACTIONS(4022), 1, + ACTIONS(3896), 1, anon_sym_oneof, - STATE(1902), 1, + STATE(1897), 1, sym_comment, - STATE(4646), 1, - sym__all_type, - ACTIONS(4018), 2, + STATE(5503), 1, + sym__type_annotation, + ACTIONS(3892), 2, anon_sym_table, anon_sym_record, - STATE(4673), 4, + STATE(2656), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4016), 31, + ACTIONS(3890), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -180256,17 +181017,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [46739] = 4, + [46132] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1903), 1, + STATE(1898), 1, sym_comment, - ACTIONS(1519), 3, + ACTIONS(2328), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1521), 37, + ACTIONS(2326), 37, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -180283,6 +181045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -180293,8 +181056,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, @@ -180303,17 +181064,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46790] = 4, + [46183] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1904), 1, + STATE(1899), 1, sym_comment, - ACTIONS(2292), 3, + ACTIONS(1500), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2290), 37, + ACTIONS(1502), 37, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -180330,6 +181092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -180340,8 +181103,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, @@ -180350,65 +181111,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46841] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4258), 1, - anon_sym_DOT, - ACTIONS(4260), 1, - aux_sym__immediate_decimal_token5, - STATE(1905), 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, - [46896] = 4, + [46234] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1906), 1, + ACTIONS(4215), 1, + anon_sym_DOT2, + STATE(1900), 1, sym_comment, - ACTIONS(2176), 3, + STATE(1941), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2050), 1, + sym_path, + STATE(2159), 1, + sym_cell_path, + ACTIONS(1893), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2174), 37, + ACTIONS(1891), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -180426,6 +181146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -180433,12 +181154,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, @@ -180446,78 +181162,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46947] = 8, + [46293] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1635), 1, - sym__unquoted_pattern, - ACTIONS(1960), 1, - anon_sym_LPAREN2, - ACTIONS(4262), 1, - anon_sym_DOT_DOT2, - STATE(1907), 1, + ACTIONS(4215), 1, + anon_sym_DOT2, + STATE(1901), 1, sym_comment, - ACTIONS(4264), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1958), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1956), 30, + STATE(1941), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2050), 1, + sym_path, + STATE(2166), 1, + sym_cell_path, + ACTIONS(1909), 3, + 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, - [47006] = 8, + ACTIONS(1907), 33, + 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_finally, + 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, + [46352] = 28, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2754), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2756), 1, + anon_sym_COLON2, + ACTIONS(4217), 1, + anon_sym_null, + ACTIONS(4221), 1, + anon_sym_LPAREN, + ACTIONS(4223), 1, + anon_sym_DOLLAR, + ACTIONS(4225), 1, + anon_sym_DOT_DOT, + ACTIONS(4229), 1, + sym_val_date, + ACTIONS(4231), 1, + anon_sym_DQUOTE, + ACTIONS(4233), 1, + anon_sym_SQUOTE, + ACTIONS(4235), 1, + anon_sym_BQUOTE, + ACTIONS(4237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4239), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4241), 1, + aux_sym_unquoted_token1, + ACTIONS(4243), 1, + sym_raw_string_begin, + STATE(1880), 1, + sym__inter_single_quotes, + STATE(1881), 1, + sym__inter_double_quotes, + STATE(1902), 1, + sym_comment, + STATE(3982), 1, + sym__val_number_decimal, + STATE(5364), 1, + sym_val_bool, + ACTIONS(3068), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3078), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3080), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(4227), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(5477), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4219), 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(1443), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + [46451] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1977), 1, - anon_sym_LPAREN2, - ACTIONS(1983), 1, + ACTIONS(1637), 1, sym__unquoted_pattern, - ACTIONS(4266), 1, + ACTIONS(1976), 1, + anon_sym_LPAREN2, + ACTIONS(4245), 1, anon_sym_DOT_DOT2, - STATE(1908), 1, + STATE(1903), 1, sym_comment, - ACTIONS(4268), 2, + ACTIONS(4247), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1975), 5, + ACTIONS(1974), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1973), 30, + ACTIONS(1972), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -180548,14 +181335,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [47065] = 6, + [46510] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4270), 1, + ACTIONS(4249), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4272), 1, + ACTIONS(4251), 1, aux_sym__immediate_decimal_token5, - STATE(1909), 1, + STATE(1904), 1, sym_comment, ACTIONS(739), 8, anon_sym_STAR, @@ -180597,17 +181384,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [47120] = 4, + [46565] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1910), 1, + STATE(1905), 1, sym_comment, - ACTIONS(2144), 3, + ACTIONS(1649), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2142), 37, + ACTIONS(1647), 37, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -180624,6 +181412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -180634,8 +181423,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, @@ -180644,16 +181431,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47171] = 4, + [46616] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1911), 1, + STATE(1906), 1, sym_comment, - ACTIONS(2278), 3, + ACTIONS(1504), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2276), 36, + ACTIONS(1506), 37, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -180672,6 +181459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -180690,18 +181478,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47221] = 4, + [46667] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1912), 1, + ACTIONS(1986), 1, + anon_sym_LPAREN2, + ACTIONS(1992), 1, + sym__unquoted_pattern, + ACTIONS(4253), 1, + anon_sym_DOT_DOT2, + STATE(1907), 1, + sym_comment, + ACTIONS(4255), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1984), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1982), 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, + [46726] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4215), 1, + anon_sym_DOT2, + STATE(1908), 1, sym_comment, - ACTIONS(2144), 3, + STATE(1941), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2050), 1, + sym_path, + STATE(2169), 1, + sym_cell_path, + ACTIONS(1913), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2142), 36, + ACTIONS(1911), 33, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -180718,6 +181564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -180725,10 +181572,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, @@ -180736,25 +181580,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47271] = 8, + [46785] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4274), 1, - anon_sym_DOT2, - STATE(1913), 1, + ACTIONS(4024), 1, + anon_sym_list, + ACTIONS(4026), 1, + anon_sym_oneof, + STATE(1909), 1, sym_comment, - STATE(1990), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2158), 1, - sym_path, - STATE(2233), 1, - sym_cell_path, - ACTIONS(1864), 3, + STATE(4446), 1, + sym__all_type, + ACTIONS(4022), 2, + anon_sym_table, + anon_sym_record, + STATE(4685), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4020), 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, + [46844] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1910), 1, + sym_comment, + ACTIONS(2158), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1862), 32, + ACTIONS(2156), 37, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -180771,6 +181659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -180778,7 +181667,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, @@ -180786,24 +181678,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47329] = 7, + [46895] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4276), 1, - anon_sym_QMARK2, - ACTIONS(4278), 1, - anon_sym_BANG, - STATE(1914), 1, + STATE(1911), 1, sym_comment, - STATE(2165), 1, - sym__path_suffix, - ACTIONS(1456), 4, + ACTIONS(1897), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1895), 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, + [46946] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1912), 1, + sym_comment, + ACTIONS(2487), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1458), 32, + ACTIONS(2485), 37, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -180820,6 +181753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -180827,7 +181761,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, @@ -180835,14 +181772,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47385] = 4, + [46997] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3756), 1, + ACTIONS(4257), 1, sym__entry_separator, - STATE(1915), 1, + STATE(1913), 2, sym_comment, - ACTIONS(3754), 38, + aux_sym__types_body_repeat2, + ACTIONS(3705), 38, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_any, @@ -180881,24 +181819,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_list, anon_sym_GT2, anon_sym_oneof, - [47435] = 8, + [47048] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4274), 1, + ACTIONS(4215), 1, anon_sym_DOT2, - STATE(1916), 1, + STATE(1914), 1, sym_comment, - STATE(1990), 1, + STATE(1941), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2158), 1, + STATE(2050), 1, sym_path, - STATE(2243), 1, + STATE(2172), 1, sym_cell_path, - ACTIONS(1890), 3, + ACTIONS(1454), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1888), 32, + ACTIONS(1456), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -180916,6 +181854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -180931,25 +181870,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47493] = 8, + [47107] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4274), 1, - anon_sym_DOT2, - STATE(1917), 1, + STATE(1915), 1, sym_comment, - STATE(1990), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2158), 1, - sym_path, - STATE(2166), 1, - sym_cell_path, - ACTIONS(1914), 3, + ACTIONS(1844), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1912), 32, + ACTIONS(1842), 37, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -180966,6 +181898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -180973,7 +181906,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, @@ -180981,182 +181917,216 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47551] = 27, - ACTIONS(103), 1, + [47158] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2555), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(4222), 1, + STATE(1916), 1, + sym_comment, + ACTIONS(1520), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1522), 37, + 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_finally, + anon_sym_match, + anon_sym_true, + anon_sym_false, anon_sym_null, - ACTIONS(4226), 1, - anon_sym_LPAREN, - ACTIONS(4228), 1, - anon_sym_DOLLAR, - ACTIONS(4230), 1, - anon_sym_DOT_DOT, - ACTIONS(4234), 1, - sym_val_date, - ACTIONS(4236), 1, + 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(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, - STATE(1895), 1, - sym__inter_single_quotes, - STATE(1897), 1, - sym__inter_double_quotes, - STATE(1918), 1, + [47209] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1917), 1, sym_comment, - STATE(3902), 1, - sym__val_number_decimal, - STATE(5101), 1, - sym_val_bool, - ACTIONS(3048), 2, + ACTIONS(2483), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2481), 37, + 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_finally, + anon_sym_match, anon_sym_true, anon_sym_false, - ACTIONS(3058), 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_LBRACK, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3060), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(4232), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(5177), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4224), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(1903), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1452), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - [47647] = 6, - ACTIONS(103), 1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [47260] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4280), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4282), 1, - aux_sym__immediate_decimal_token5, - STATE(1919), 1, + STATE(1918), 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, - [47701] = 5, - ACTIONS(103), 1, + ACTIONS(1732), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1730), 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, + [47311] = 7, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(4260), 1, - aux_sym__immediate_decimal_token5, - STATE(1920), 1, + anon_sym_QMARK2, + ACTIONS(4262), 1, + anon_sym_BANG, + STATE(1919), 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, - [47753] = 4, + STATE(2052), 1, + sym__path_suffix, + ACTIONS(1442), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1444), 33, + 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_finally, + 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, + [47368] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1921), 1, + ACTIONS(4215), 1, + anon_sym_DOT2, + STATE(1920), 1, sym_comment, - ACTIONS(1647), 3, + STATE(1941), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2050), 1, + sym_path, + STATE(2192), 1, + sym_cell_path, + ACTIONS(1885), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1645), 36, + ACTIONS(1883), 33, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -181173,6 +182143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -181180,10 +182151,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, @@ -181191,23 +182159,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47803] = 6, + [47427] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4284), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4286), 1, - aux_sym__immediate_decimal_token5, - STATE(1922), 1, + ACTIONS(4211), 1, + sym_filesize_unit, + ACTIONS(4213), 1, + sym_duration_unit, + ACTIONS(4264), 1, + anon_sym_DOT_DOT2, + STATE(1921), 1, sym_comment, - ACTIONS(1772), 6, + ACTIONS(4266), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(847), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1770), 31, + ACTIONS(968), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -181229,7 +182201,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, @@ -181239,72 +182210,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [47857] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4288), 1, - aux_sym__immediate_decimal_token5, - STATE(1923), 1, - sym_comment, - ACTIONS(771), 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(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, - [47909] = 8, + [47486] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4274), 1, - anon_sym_DOT2, - STATE(1924), 1, + STATE(1922), 1, sym_comment, - STATE(1990), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2158), 1, - sym_path, - STATE(2207), 1, - sym_cell_path, - ACTIONS(1898), 3, + ACTIONS(2529), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1896), 32, + ACTIONS(2527), 37, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -181321,6 +182238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -181328,7 +182246,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, @@ -181336,26 +182257,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47967] = 6, + [47537] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4290), 1, - anon_sym_DOT, - ACTIONS(4292), 1, + ACTIONS(4268), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4270), 1, aux_sym__immediate_decimal_token5, - STATE(1925), 1, + STATE(1923), 1, sym_comment, - ACTIONS(1746), 6, + ACTIONS(1732), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1744), 31, + ACTIONS(1730), 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, @@ -181384,16 +182306,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [48021] = 4, + [47592] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1926), 1, + STATE(1924), 1, sym_comment, - ACTIONS(1531), 3, + ACTIONS(1508), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1533), 36, + ACTIONS(1510), 37, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -181412,6 +182334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -181430,16 +182353,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [48071] = 4, + [47643] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1927), 1, + ACTIONS(4215), 1, + anon_sym_DOT2, + STATE(1925), 1, + sym_comment, + STATE(1941), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2050), 1, + sym_path, + STATE(2179), 1, + sym_cell_path, + ACTIONS(1889), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1887), 33, + 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_finally, + 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, + [47702] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1926), 1, sym_comment, - ACTIONS(1519), 3, + ACTIONS(2479), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1521), 36, + ACTIONS(2477), 37, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -181458,6 +182432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -181476,16 +182451,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [48121] = 4, + [47753] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1928), 1, + STATE(1927), 1, sym_comment, - ACTIONS(2284), 3, + ACTIONS(1578), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2282), 36, + ACTIONS(1580), 37, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -181504,6 +182479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -181522,16 +182498,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [48171] = 4, + [47804] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4272), 1, + anon_sym_DOT, + ACTIONS(4274), 1, + aux_sym__immediate_decimal_token5, + STATE(1928), 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, + [47859] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1929), 1, sym_comment, - ACTIONS(1580), 3, + ACTIONS(2479), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1582), 36, + ACTIONS(2477), 37, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -181550,6 +182575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -181568,18 +182594,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [48221] = 4, + [47910] = 8, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(4215), 1, + anon_sym_DOT2, STATE(1930), 1, sym_comment, - ACTIONS(2176), 3, + STATE(1941), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2050), 1, + sym_path, + STATE(2180), 1, + sym_cell_path, + ACTIONS(1874), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2174), 36, + ACTIONS(1871), 33, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -181596,6 +182629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -181603,10 +182637,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, @@ -181614,25 +182645,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [48271] = 5, + [47969] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4256), 1, - aux_sym__immediate_decimal_token5, STATE(1931), 1, sym_comment, - ACTIONS(1746), 6, + ACTIONS(1848), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1744), 32, + ACTIONS(1846), 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, @@ -181661,85 +182690,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [48323] = 27, - ACTIONS(103), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [48020] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2829), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(4222), 1, - anon_sym_null, - ACTIONS(4234), 1, - sym_val_date, - ACTIONS(4296), 1, - anon_sym_LPAREN, - ACTIONS(4298), 1, - anon_sym_DOLLAR, - ACTIONS(4300), 1, - anon_sym_DOT_DOT, - ACTIONS(4304), 1, - anon_sym_DQUOTE, - ACTIONS(4306), 1, - anon_sym_SQUOTE, - ACTIONS(4308), 1, - anon_sym_BQUOTE, - ACTIONS(4310), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4312), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4314), 1, - aux_sym_unquoted_token1, - ACTIONS(4316), 1, - sym_raw_string_begin, - STATE(1911), 1, - sym__inter_double_quotes, + ACTIONS(4024), 1, + anon_sym_list, + ACTIONS(4026), 1, + anon_sym_oneof, STATE(1932), 1, sym_comment, - STATE(1944), 1, - sym__inter_single_quotes, - STATE(3923), 1, - sym__val_number_decimal, - STATE(5101), 1, - sym_val_bool, - ACTIONS(3048), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3058), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3060), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(4302), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(4991), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4294), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(1927), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1467), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - [48419] = 4, + STATE(4797), 1, + sym__all_type, + ACTIONS(4022), 2, + anon_sym_table, + anon_sym_record, + STATE(4685), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4020), 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, + [48079] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(4276), 1, + anon_sym_DOT, + ACTIONS(4278), 1, + aux_sym__immediate_decimal_token5, STATE(1933), 1, sym_comment, - ACTIONS(1523), 3, + ACTIONS(1792), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1790), 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, + [48134] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1934), 1, + sym_comment, + ACTIONS(2533), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1525), 36, + ACTIONS(2531), 37, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -181758,6 +182820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -181776,66 +182839,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [48469] = 6, - ACTIONS(103), 1, + [48185] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4318), 1, - anon_sym_DOT, - ACTIONS(4320), 1, - aux_sym__immediate_decimal_token5, - STATE(1934), 1, + ACTIONS(4024), 1, + anon_sym_list, + ACTIONS(4026), 1, + anon_sym_oneof, + STATE(1935), 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, - [48523] = 4, + STATE(4943), 1, + sym__type_annotation, + ACTIONS(4022), 2, + anon_sym_table, + anon_sym_record, + STATE(5079), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4020), 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, + [48244] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1935), 1, + STATE(1936), 1, sym_comment, - ACTIONS(1860), 3, + ACTIONS(1512), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1858), 36, + anon_sym_DOT2, + ACTIONS(1514), 35, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -181852,6 +182918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -181859,10 +182926,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, @@ -181870,22 +182934,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [48573] = 4, + anon_sym_QMARK2, + anon_sym_BANG, + [48294] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1936), 1, + ACTIONS(4284), 1, + sym_long_flag_identifier, + ACTIONS(4286), 1, + anon_sym_EQ2, + STATE(1937), 1, sym_comment, - ACTIONS(2288), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2286), 36, + STATE(2207), 1, + sym__flag_equals_value, + ACTIONS(4282), 9, sym_raw_string_begin, - ts_builtin_sym_end, + 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), 27, + 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, @@ -181898,42 +182976,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, 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_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, - [48623] = 8, + [48350] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4274), 1, - anon_sym_DOT2, - STATE(1937), 1, + STATE(1938), 1, sym_comment, - STATE(1990), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2158), 1, - sym_path, - STATE(2236), 1, - sym_cell_path, - ACTIONS(1885), 3, + ACTIONS(1520), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1882), 32, + anon_sym_DOT2, + ACTIONS(1522), 35, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -181951,6 +183013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -181966,21 +183029,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [48681] = 5, + anon_sym_QMARK2, + anon_sym_BANG, + [48400] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4322), 1, + ACTIONS(4288), 1, aux_sym__immediate_decimal_token5, - STATE(1938), 1, + STATE(1939), 1, sym_comment, - ACTIONS(1854), 6, + ACTIONS(1848), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1852), 32, + ACTIONS(1846), 32, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -182013,18 +183078,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [48733] = 4, + [48452] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1939), 1, + STATE(1940), 1, sym_comment, - ACTIONS(2292), 3, + ACTIONS(1508), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2290), 36, + anon_sym_DOT2, + ACTIONS(1510), 35, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -182041,6 +183106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -182048,10 +183114,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, @@ -182059,24 +183122,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [48783] = 8, + anon_sym_QMARK2, + anon_sym_BANG, + [48502] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4274), 1, + ACTIONS(4215), 1, anon_sym_DOT2, - STATE(1940), 1, + STATE(1941), 1, sym_comment, - STATE(1990), 1, + STATE(1950), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2158), 1, + STATE(2050), 1, sym_path, - STATE(2220), 1, - sym_cell_path, - ACTIONS(1902), 3, + ACTIONS(1524), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1900), 32, + ACTIONS(1526), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -182094,6 +183157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -182109,64 +183173,230 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [48841] = 4, + [48558] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1941), 1, + ACTIONS(4290), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4292), 1, + aux_sym__immediate_decimal_token5, + STATE(1942), 1, sym_comment, - ACTIONS(2296), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, + ACTIONS(1732), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1730), 31, anon_sym_in, - ACTIONS(2294), 36, + 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, + [48612] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4274), 1, + aux_sym__immediate_decimal_token5, + STATE(1943), 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, + [48664] = 27, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2594), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(4217), 1, + anon_sym_null, + ACTIONS(4221), 1, + anon_sym_LPAREN, + ACTIONS(4223), 1, + anon_sym_DOLLAR, + ACTIONS(4225), 1, + anon_sym_DOT_DOT, + ACTIONS(4229), 1, + sym_val_date, + ACTIONS(4231), 1, + anon_sym_DQUOTE, + ACTIONS(4233), 1, + anon_sym_SQUOTE, + ACTIONS(4235), 1, + anon_sym_BQUOTE, + ACTIONS(4237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4239), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4241), 1, + aux_sym_unquoted_token1, + ACTIONS(4243), 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(1880), 1, + sym__inter_single_quotes, + STATE(1881), 1, + sym__inter_double_quotes, + STATE(1944), 1, + sym_comment, + STATE(3982), 1, + sym__val_number_decimal, + STATE(5364), 1, + sym_val_bool, + ACTIONS(3068), 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(3078), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, + ACTIONS(3080), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [48891] = 4, + ACTIONS(4227), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(5477), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4219), 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(1443), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + [48760] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4294), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4296), 1, + aux_sym__immediate_decimal_token5, + STATE(1945), 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, + [48814] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1942), 1, + STATE(1946), 1, sym_comment, - ACTIONS(1535), 3, + ACTIONS(1528), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1537), 36, + anon_sym_DOT2, + ACTIONS(1530), 35, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -182183,6 +183413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -182190,10 +183421,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, @@ -182201,24 +183429,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [48941] = 8, + anon_sym_QMARK2, + anon_sym_BANG, + [48864] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4298), 1, + aux_sym__immediate_decimal_token5, + STATE(1947), 1, + sym_comment, + ACTIONS(767), 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(769), 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, + [48916] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4274), 1, - anon_sym_DOT2, - STATE(1943), 1, + STATE(1948), 1, sym_comment, - STATE(1990), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2158), 1, - sym_path, - STATE(2209), 1, - sym_cell_path, - ACTIONS(1442), 3, + ACTIONS(1504), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1444), 32, + anon_sym_DOT2, + ACTIONS(1506), 35, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -182236,6 +183506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -182251,18 +183522,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [48999] = 4, + anon_sym_QMARK2, + anon_sym_BANG, + [48966] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3756), 1, + sym__entry_separator, + STATE(1949), 1, + sym_comment, + ACTIONS(3754), 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, + [49016] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1944), 1, + ACTIONS(4300), 1, + anon_sym_DOT2, + STATE(2050), 1, + sym_path, + STATE(1950), 2, sym_comment, - ACTIONS(2278), 3, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1532), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2276), 36, + ACTIONS(1534), 33, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -182279,6 +183602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -182286,10 +183610,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, @@ -182297,64 +183618,230 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [49049] = 4, + [49070] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1945), 1, + ACTIONS(4278), 1, + aux_sym__immediate_decimal_token5, + STATE(1951), 1, sym_comment, - ACTIONS(1539), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, + ACTIONS(1792), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1790), 32, anon_sym_in, - ACTIONS(1541), 36, + 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, + [49122] = 27, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2822), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(4217), 1, + anon_sym_null, + ACTIONS(4229), 1, + sym_val_date, + ACTIONS(4305), 1, + anon_sym_LPAREN, + ACTIONS(4307), 1, + anon_sym_DOLLAR, + ACTIONS(4309), 1, + anon_sym_DOT_DOT, + ACTIONS(4313), 1, + anon_sym_DQUOTE, + ACTIONS(4315), 1, + anon_sym_SQUOTE, + ACTIONS(4317), 1, + anon_sym_BQUOTE, + ACTIONS(4319), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4321), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4323), 1, + aux_sym_unquoted_token1, + ACTIONS(4325), 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(1926), 1, + sym__inter_single_quotes, + STATE(1929), 1, + sym__inter_double_quotes, + STATE(1952), 1, + sym_comment, + STATE(4173), 1, + sym__val_number_decimal, + STATE(5364), 1, + sym_val_bool, + ACTIONS(3068), 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(3078), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, + ACTIONS(3080), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [49099] = 4, + ACTIONS(4311), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(5299), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4303), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(1924), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1452), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + [49218] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4327), 1, + anon_sym_DOT, + ACTIONS(4329), 1, + aux_sym__immediate_decimal_token5, + STATE(1953), 1, + sym_comment, + ACTIONS(1792), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1790), 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, + [49272] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4331), 1, + anon_sym_DOT, + ACTIONS(4333), 1, + aux_sym__immediate_decimal_token5, + STATE(1954), 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, + [49326] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1946), 1, + STATE(1955), 1, sym_comment, - ACTIONS(1527), 3, + ACTIONS(1500), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1529), 36, + anon_sym_DOT2, + ACTIONS(1502), 35, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -182371,6 +183858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -182378,10 +183866,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, @@ -182389,68 +183874,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [49149] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4326), 1, - anon_sym_GT2, - ACTIONS(4328), 1, - sym__entry_separator, - STATE(1881), 1, - aux_sym__types_body_repeat2, - STATE(1947), 1, - sym_comment, - ACTIONS(4324), 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, - [49202] = 5, + anon_sym_QMARK2, + anon_sym_BANG, + [49376] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4330), 1, - aux_sym__immediate_decimal_token5, - STATE(1948), 1, + ACTIONS(4335), 1, + anon_sym_DOT_DOT2, + STATE(1956), 1, sym_comment, - ACTIONS(1854), 6, + ACTIONS(4337), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2106), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1852), 31, + ACTIONS(2104), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -182472,7 +183914,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, @@ -182482,22 +183923,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [49253] = 6, + [49429] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1977), 1, - anon_sym_LPAREN2, - ACTIONS(1983), 1, + ACTIONS(1637), 1, sym__unquoted_pattern, - STATE(1949), 1, + ACTIONS(1976), 1, + anon_sym_LPAREN2, + STATE(1957), 1, sym_comment, - ACTIONS(1975), 5, + ACTIONS(1974), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1973), 31, + ACTIONS(1972), 31, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -182529,63 +183970,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [49306] = 6, - ACTIONS(3), 1, + [49482] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4332), 1, - anon_sym_DOT_DOT2, - STATE(1950), 1, + ACTIONS(4341), 1, + anon_sym_GT2, + ACTIONS(4343), 1, + sym__entry_separator, + STATE(1913), 1, + aux_sym__types_body_repeat2, + STATE(1958), 1, sym_comment, - ACTIONS(4334), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1614), 5, + ACTIONS(4339), 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, + [49535] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4343), 1, + sym__entry_separator, + ACTIONS(4345), 1, anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1713), 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, - [49359] = 4, - ACTIONS(3), 1, + STATE(1913), 1, + aux_sym__types_body_repeat2, + STATE(1959), 1, + sym_comment, + ACTIONS(4339), 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, + [49588] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4336), 1, - sym__newline, - STATE(1951), 2, + ACTIONS(4343), 1, + sym__entry_separator, + ACTIONS(4347), 1, + anon_sym_RBRACK, + STATE(1913), 1, + aux_sym__types_body_repeat2, + STATE(1960), 1, sym_comment, - aux_sym__types_body_repeat1, - ACTIONS(3760), 36, - anon_sym_LBRACK, + ACTIONS(4349), 35, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -182621,10 +184111,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, anon_sym_list, anon_sym_oneof, - [49408] = 4, + [49641] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(1952), 1, + STATE(1961), 1, sym_comment, ACTIONS(739), 8, anon_sym_STAR, @@ -182666,17 +184156,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [49457] = 4, + [49690] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1953), 1, + ACTIONS(4286), 1, + anon_sym_EQ2, + STATE(1962), 1, sym_comment, - ACTIONS(1519), 4, + STATE(2186), 1, + sym__flag_equals_value, + ACTIONS(4351), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1521), 34, + ACTIONS(4353), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -182694,6 +184187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -182709,16 +184203,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [49506] = 5, + [49743] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2620), 1, + anon_sym_LPAREN2, + ACTIONS(2622), 1, + sym__unquoted_pattern, + STATE(1963), 1, + sym_comment, + ACTIONS(2618), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2616), 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, + [49796] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4343), 1, + sym__entry_separator, + ACTIONS(4355), 1, + anon_sym_GT2, + STATE(1913), 1, + aux_sym__types_body_repeat2, + STATE(1964), 1, + sym_comment, + ACTIONS(4339), 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, + [49849] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2672), 1, + anon_sym_LPAREN2, + ACTIONS(2674), 1, + sym__unquoted_pattern, + STATE(1965), 1, + sym_comment, + ACTIONS(1615), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1699), 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, + [49902] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4339), 1, + ACTIONS(4357), 1, aux_sym__immediate_decimal_token5, - STATE(1954), 1, + STATE(1966), 1, sym_comment, - ACTIONS(771), 7, + ACTIONS(767), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -182726,7 +184359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, aux_sym_cmd_identifier_token6, sym_filesize_unit, - ACTIONS(773), 30, + ACTIONS(769), 30, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -182757,22 +184390,211 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [49557] = 4, + [49953] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1955), 1, + ACTIONS(4359), 1, + anon_sym_DOT_DOT2, + STATE(1967), 1, + sym_comment, + ACTIONS(4361), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1615), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1699), 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, + [50006] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3710), 1, + sym_raw_string_begin, + ACTIONS(4363), 1, + sym__entry_separator, + STATE(1968), 2, sym_comment, - ACTIONS(1523), 4, + aux_sym__types_body_repeat2, + ACTIONS(3705), 35, 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_finally, + anon_sym_match, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1525), 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_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, + [50057] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1986), 1, + anon_sym_LPAREN2, + ACTIONS(1992), 1, + sym__unquoted_pattern, + STATE(1969), 1, + sym_comment, + ACTIONS(2654), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2652), 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, + [50110] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1970), 1, + sym_comment, + ACTIONS(2362), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(2360), 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, + [50159] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4368), 1, + anon_sym_RBRACK, + ACTIONS(4370), 1, + sym__entry_separator, + ACTIONS(4372), 1, sym_raw_string_begin, + STATE(1968), 1, + aux_sym__types_body_repeat2, + STATE(1971), 1, + sym_comment, + ACTIONS(4366), 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, @@ -182785,14 +184607,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, 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, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -182800,20 +184623,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [49606] = 6, + [50214] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1986), 1, + anon_sym_LPAREN2, + ACTIONS(1992), 1, + sym__unquoted_pattern, + STATE(1972), 1, + sym_comment, + ACTIONS(1984), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1982), 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, + [50267] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4328), 1, + ACTIONS(4343), 1, sym__entry_separator, - ACTIONS(4341), 1, - anon_sym_RBRACK, - STATE(1881), 1, + ACTIONS(4374), 1, + anon_sym_GT2, + STATE(1913), 1, aux_sym__types_body_repeat2, - STATE(1956), 1, + STATE(1973), 1, sym_comment, - ACTIONS(4343), 35, + ACTIONS(4339), 35, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -182849,25 +184717,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, anon_sym_list, anon_sym_oneof, - [49659] = 7, + [50320] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2166), 1, + ACTIONS(2245), 1, anon_sym_EQ_GT, - ACTIONS(4332), 1, + ACTIONS(4359), 1, anon_sym_DOT_DOT2, - STATE(1957), 1, + STATE(1974), 1, sym_comment, - ACTIONS(4334), 2, + ACTIONS(4361), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2164), 5, + ACTIONS(2134), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2162), 29, + ACTIONS(2132), 29, anon_sym_in, anon_sym_DASH2, anon_sym_and2, @@ -182897,23 +184765,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [49714] = 6, + [50375] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4345), 1, + ACTIONS(4376), 1, anon_sym_DOT_DOT2, - STATE(1958), 1, + STATE(1975), 1, sym_comment, - ACTIONS(4347), 2, + ACTIONS(4378), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1958), 5, + ACTIONS(1974), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1956), 30, + ACTIONS(1972), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -182944,23 +184812,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [49767] = 6, + [50428] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2632), 1, + anon_sym_LPAREN2, + ACTIONS(2634), 1, + sym__unquoted_pattern, + STATE(1976), 1, + sym_comment, + ACTIONS(1012), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1226), 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, + [50481] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4349), 1, + ACTIONS(4380), 1, anon_sym_DOT_DOT2, - STATE(1959), 1, + STATE(1977), 1, sym_comment, - ACTIONS(4351), 2, + ACTIONS(4382), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1975), 5, + ACTIONS(1984), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1973), 30, + ACTIONS(1982), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -182991,68 +184906,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [49820] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4320), 1, - aux_sym__immediate_decimal_token5, - STATE(1960), 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, - [49871] = 6, + [50534] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1679), 1, - sym__unquoted_pattern, - ACTIONS(2642), 1, + ACTIONS(2632), 1, anon_sym_LPAREN2, - STATE(1961), 1, + ACTIONS(2634), 1, + sym__unquoted_pattern, + STATE(1978), 1, sym_comment, - ACTIONS(2543), 5, + ACTIONS(1020), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2541), 31, + ACTIONS(1234), 31, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -183084,65 +184953,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [49924] = 7, - ACTIONS(3), 1, + [50587] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4357), 1, - sym_long_flag_identifier, - ACTIONS(4359), 1, - anon_sym_EQ2, - STATE(1962), 1, + STATE(1979), 1, sym_comment, - STATE(2203), 1, - sym__flag_equals_value, - ACTIONS(4355), 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(4353), 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, - [49979] = 4, + ACTIONS(863), 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(865), 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, + [50636] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1963), 1, + ACTIONS(4384), 1, + anon_sym_QMARK2, + STATE(1980), 1, sym_comment, - ACTIONS(1527), 4, + ACTIONS(1460), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1529), 34, + ACTIONS(1462), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -183160,6 +185028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -183175,186 +185044,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [50028] = 27, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3058), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4226), 1, - anon_sym_LPAREN, - ACTIONS(4228), 1, - anon_sym_DOLLAR, - ACTIONS(4230), 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, - ACTIONS(4363), 1, - anon_sym_null, - ACTIONS(4367), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4371), 1, - sym_val_date, - STATE(1895), 1, - sym__inter_single_quotes, - STATE(1897), 1, - sym__inter_double_quotes, - STATE(1964), 1, - sym_comment, - STATE(3902), 1, - sym__val_number_decimal, - STATE(5101), 1, - sym_val_bool, - ACTIONS(4232), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4361), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4369), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(5177), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4365), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(1903), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1454), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - [50123] = 4, + [50687] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1965), 1, + STATE(1981), 1, sym_comment, - ACTIONS(1531), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, + ACTIONS(1848), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1846), 32, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1533), 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, - [50172] = 4, + 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, + [50736] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1966), 1, + ACTIONS(4386), 1, + aux_sym__immediate_decimal_token5, + STATE(1982), 1, sym_comment, - ACTIONS(1535), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, + ACTIONS(1848), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1846), 31, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1537), 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, - [50221] = 6, + 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, + [50787] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2644), 1, - anon_sym_LPAREN2, - ACTIONS(2646), 1, - sym__unquoted_pattern, - STATE(1967), 1, + ACTIONS(4388), 1, + anon_sym_DOT_DOT2, + STATE(1983), 1, sym_comment, - ACTIONS(2591), 5, + ACTIONS(4390), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2172), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2589), 31, + ACTIONS(2170), 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, @@ -183382,17 +185182,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50274] = 4, + [50840] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1968), 1, + ACTIONS(4396), 1, + anon_sym_DASH_DASH, + STATE(2188), 1, + sym_long_flag, + STATE(1984), 2, sym_comment, - ACTIONS(1539), 4, + aux_sym_decl_def_repeat1, + ACTIONS(4392), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1541), 34, + ACTIONS(4394), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -183410,6 +185214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -183417,7 +185222,6 @@ 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, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -183425,25 +185229,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [50323] = 6, + [50893] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4373), 1, + ACTIONS(4399), 1, anon_sym_DOT_DOT2, - STATE(1969), 1, + STATE(1985), 1, sym_comment, - ACTIONS(4375), 2, + ACTIONS(4401), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2156), 5, + ACTIONS(2114), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2154), 30, + ACTIONS(2112), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -183474,23 +185276,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50376] = 6, + [50946] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4377), 1, + ACTIONS(4403), 1, anon_sym_DOT_DOT2, - STATE(1970), 1, + STATE(1986), 1, sym_comment, - ACTIONS(4379), 2, + ACTIONS(4405), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2104), 5, + ACTIONS(2122), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2102), 30, + ACTIONS(2120), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -183521,70 +185323,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50429] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4328), 1, - sym__entry_separator, - ACTIONS(4381), 1, - anon_sym_GT2, - STATE(1881), 1, - aux_sym__types_body_repeat2, - STATE(1971), 1, - sym_comment, - ACTIONS(4324), 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, - [50482] = 6, + [50999] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4383), 1, + ACTIONS(4359), 1, anon_sym_DOT_DOT2, - STATE(1972), 1, + STATE(1987), 1, sym_comment, - ACTIONS(4385), 2, + ACTIONS(4361), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2120), 5, + ACTIONS(2134), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2118), 30, + ACTIONS(2132), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -183615,64 +185370,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50535] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(1973), 1, - sym_comment, - ACTIONS(771), 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(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, - [50584] = 4, + [51052] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1974), 1, + STATE(1988), 1, sym_comment, - ACTIONS(1772), 6, + ACTIONS(1897), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1770), 32, + ACTIONS(1895), 32, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -183705,86 +185415,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50633] = 27, + [51101] = 27, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3058), 1, + ACTIONS(3078), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4296), 1, + ACTIONS(4221), 1, anon_sym_LPAREN, - ACTIONS(4298), 1, + ACTIONS(4223), 1, anon_sym_DOLLAR, - ACTIONS(4300), 1, + ACTIONS(4225), 1, anon_sym_DOT_DOT, - ACTIONS(4304), 1, + ACTIONS(4231), 1, anon_sym_DQUOTE, - ACTIONS(4306), 1, + ACTIONS(4233), 1, anon_sym_SQUOTE, - ACTIONS(4308), 1, + ACTIONS(4235), 1, anon_sym_BQUOTE, - ACTIONS(4310), 1, + ACTIONS(4237), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4312), 1, + ACTIONS(4239), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4314), 1, + ACTIONS(4241), 1, aux_sym_unquoted_token1, - ACTIONS(4316), 1, + ACTIONS(4243), 1, sym_raw_string_begin, - ACTIONS(4363), 1, + ACTIONS(4409), 1, anon_sym_null, - ACTIONS(4367), 1, + ACTIONS(4413), 1, aux_sym__val_number_decimal_token2, - ACTIONS(4371), 1, + ACTIONS(4417), 1, sym_val_date, - STATE(1911), 1, - sym__inter_double_quotes, - STATE(1944), 1, + STATE(1880), 1, sym__inter_single_quotes, - STATE(1975), 1, + STATE(1881), 1, + sym__inter_double_quotes, + STATE(1989), 1, sym_comment, - STATE(3923), 1, + STATE(3982), 1, sym__val_number_decimal, - STATE(5101), 1, + STATE(5364), 1, sym_val_bool, - ACTIONS(4302), 2, + ACTIONS(4227), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(4361), 2, + ACTIONS(4407), 2, anon_sym_true, anon_sym_false, - ACTIONS(4369), 2, + ACTIONS(4415), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4991), 2, + STATE(5477), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(4387), 3, + ACTIONS(4411), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(1927), 4, + STATE(1890), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(1463), 5, + STATE(1442), 5, sym_expr_parenthesized, sym_val_variable, sym_val_string, sym_val_interpolated, sym_unquoted, - [50728] = 6, + [51196] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4328), 1, + ACTIONS(4343), 1, sym__entry_separator, - ACTIONS(4389), 1, - anon_sym_GT2, - STATE(1881), 1, + ACTIONS(4419), 1, + anon_sym_RBRACK, + STATE(1913), 1, aux_sym__types_body_repeat2, - STATE(1976), 1, + STATE(1990), 1, sym_comment, - ACTIONS(4324), 35, + ACTIONS(4349), 35, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -183820,18 +185530,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, anon_sym_list, anon_sym_oneof, - [50781] = 6, + [51249] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4328), 1, + ACTIONS(4343), 1, sym__entry_separator, - ACTIONS(4391), 1, + ACTIONS(4421), 1, anon_sym_RBRACK, - STATE(1881), 1, + STATE(1913), 1, aux_sym__types_body_repeat2, - STATE(1977), 1, + STATE(1991), 1, sym_comment, - ACTIONS(4343), 35, + ACTIONS(4349), 35, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -183867,66 +185577,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, anon_sym_list, anon_sym_oneof, - [50834] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1635), 1, - sym__unquoted_pattern, - ACTIONS(1960), 1, - anon_sym_LPAREN2, - STATE(1978), 1, - sym_comment, - ACTIONS(1958), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1956), 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, - [50887] = 4, + [51302] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1979), 1, + STATE(1992), 1, sym_comment, - ACTIONS(2527), 6, + ACTIONS(1732), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(2525), 32, + ACTIONS(1730), 32, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -183959,63 +185622,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50936] = 4, + [51351] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1980), 1, + ACTIONS(4384), 1, + anon_sym_BANG, + STATE(1993), 1, sym_comment, - ACTIONS(1854), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1852), 32, + ACTIONS(1460), 4, + 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, - [50985] = 6, + anon_sym_DOT2, + ACTIONS(1462), 33, + 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_finally, + 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, + [51402] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4328), 1, - sym__entry_separator, - ACTIONS(4393), 1, - anon_sym_RBRACK, - STATE(1881), 1, - aux_sym__types_body_repeat2, - STATE(1981), 1, + ACTIONS(4333), 1, + aux_sym__immediate_decimal_token5, + STATE(1994), 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, + [51453] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4423), 1, + sym__newline, + STATE(1995), 2, sym_comment, - ACTIONS(4343), 35, + aux_sym__types_body_repeat1, + ACTIONS(3760), 36, + anon_sym_LBRACK, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -184051,22 +185759,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, anon_sym_list, anon_sym_oneof, - [51038] = 6, + [51502] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2652), 1, - anon_sym_LPAREN2, - ACTIONS(2654), 1, + ACTIONS(1695), 1, sym__unquoted_pattern, - STATE(1982), 1, + ACTIONS(2576), 1, + anon_sym_LPAREN2, + STATE(1996), 1, sym_comment, - ACTIONS(2650), 5, + ACTIONS(2574), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2648), 31, + ACTIONS(2572), 31, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -184098,73 +185806,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [51091] = 6, - ACTIONS(3), 1, + [51555] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2612), 1, - anon_sym_LPAREN2, - ACTIONS(2614), 1, - sym__unquoted_pattern, - STATE(1983), 1, + ACTIONS(4370), 1, + sym__entry_separator, + ACTIONS(4372), 1, + sym_raw_string_begin, + ACTIONS(4426), 1, + anon_sym_RBRACK, + STATE(1968), 1, + aux_sym__types_body_repeat2, + STATE(1997), 1, sym_comment, - ACTIONS(1614), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1713), 31, + ACTIONS(4366), 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_finally, + anon_sym_match, 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, - [51144] = 8, + 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, + [51610] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(866), 1, + ACTIONS(847), 1, anon_sym_COLON2, - ACTIONS(872), 1, + ACTIONS(853), 1, aux_sym_cmd_identifier_token6, - ACTIONS(4395), 1, + ACTIONS(4428), 1, sym_filesize_unit, - ACTIONS(4397), 1, + ACTIONS(4430), 1, sym_duration_unit, - STATE(1984), 1, + STATE(1998), 1, sym_comment, - ACTIONS(870), 5, + ACTIONS(851), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(868), 29, + ACTIONS(849), 29, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -184194,59 +185903,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [51201] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4328), 1, - sym__entry_separator, - ACTIONS(4399), 1, - anon_sym_GT2, - STATE(1881), 1, - aux_sym__types_body_repeat2, - STATE(1985), 1, - sym_comment, - ACTIONS(4324), 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, - [51254] = 4, + [51667] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(1986), 1, + STATE(1999), 1, sym_comment, - ACTIONS(860), 8, + ACTIONS(767), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -184255,7 +185917,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, sym_filesize_unit, anon_sym_COLON2, - ACTIONS(862), 30, + ACTIONS(769), 30, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -184286,18 +185948,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [51303] = 6, + [51716] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2612), 1, + anon_sym_LPAREN2, + ACTIONS(2614), 1, + sym__unquoted_pattern, + STATE(2000), 1, + sym_comment, + ACTIONS(2610), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2608), 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, + [51769] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4328), 1, + ACTIONS(4343), 1, sym__entry_separator, - ACTIONS(4401), 1, + ACTIONS(4432), 1, anon_sym_RBRACK, - STATE(1881), 1, + STATE(1913), 1, aux_sym__types_body_repeat2, - STATE(1987), 1, + STATE(2001), 1, sym_comment, - ACTIONS(4343), 35, + ACTIONS(4349), 35, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -184333,70 +186042,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, anon_sym_list, anon_sym_oneof, - [51356] = 6, + [51822] = 27, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4332), 1, - anon_sym_DOT_DOT2, - STATE(1988), 1, + ACTIONS(3078), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4305), 1, + anon_sym_LPAREN, + ACTIONS(4307), 1, + anon_sym_DOLLAR, + ACTIONS(4309), 1, + anon_sym_DOT_DOT, + ACTIONS(4313), 1, + anon_sym_DQUOTE, + ACTIONS(4315), 1, + anon_sym_SQUOTE, + ACTIONS(4317), 1, + anon_sym_BQUOTE, + ACTIONS(4319), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4321), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4323), 1, + aux_sym_unquoted_token1, + ACTIONS(4325), 1, + sym_raw_string_begin, + ACTIONS(4409), 1, + anon_sym_null, + ACTIONS(4413), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4417), 1, + sym_val_date, + STATE(1926), 1, + sym__inter_single_quotes, + STATE(1929), 1, + sym__inter_double_quotes, + STATE(2002), 1, sym_comment, - ACTIONS(4334), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2164), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2162), 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, - [51409] = 4, + STATE(4173), 1, + sym__val_number_decimal, + STATE(5364), 1, + sym_val_bool, + ACTIONS(4311), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4407), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4415), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(5299), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4434), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(1924), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1456), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + [51917] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1989), 1, + ACTIONS(4329), 1, + aux_sym__immediate_decimal_token5, + STATE(2003), 1, sym_comment, - ACTIONS(1872), 6, + ACTIONS(1792), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1870), 32, + ACTIONS(1790), 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, @@ -184425,27 +186156,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [51458] = 7, - ACTIONS(3), 1, + [51968] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4274), 1, - anon_sym_DOT2, - STATE(1990), 1, + ACTIONS(4370), 1, + sym__entry_separator, + ACTIONS(4372), 1, + sym_raw_string_begin, + ACTIONS(4436), 1, + anon_sym_RBRACK, + STATE(1968), 1, + aux_sym__types_body_repeat2, + STATE(2004), 1, sym_comment, - STATE(1993), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2158), 1, - sym_path, - ACTIONS(1504), 3, + ACTIONS(4366), 34, anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1506), 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, @@ -184458,14 +186188,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, 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, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -184473,119 +186204,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [51513] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2656), 1, - anon_sym_LPAREN2, - ACTIONS(2658), 1, - sym__unquoted_pattern, - STATE(1991), 1, - sym_comment, - ACTIONS(994), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1030), 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, - [51566] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4292), 1, - aux_sym__immediate_decimal_token5, - STATE(1992), 1, - sym_comment, - ACTIONS(1746), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1744), 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, - [51617] = 6, - ACTIONS(3), 1, + [52023] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4403), 1, - anon_sym_DOT2, - STATE(2158), 1, - sym_path, - STATE(1993), 2, + ACTIONS(4370), 1, + sym__entry_separator, + ACTIONS(4372), 1, + sym_raw_string_begin, + ACTIONS(4438), 1, + anon_sym_RBRACK, + STATE(1968), 1, + aux_sym__types_body_repeat2, + STATE(2005), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1508), 3, + ACTIONS(4366), 34, anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1510), 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, @@ -184598,14 +186236,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, 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, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -184613,25 +186252,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [51670] = 6, + [52078] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2656), 1, - anon_sym_LPAREN2, - ACTIONS(2658), 1, - sym__unquoted_pattern, - STATE(1994), 1, + ACTIONS(4440), 1, + anon_sym_DASH2, + ACTIONS(4448), 1, + anon_sym_PLUS2, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(2006), 1, sym_comment, - ACTIONS(1020), 5, + ACTIONS(2786), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(4442), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1022), 31, + ACTIONS(4444), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4446), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2784), 26, anon_sym_in, sym__newline, - anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -184651,35 +186297,27 @@ 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, - [51723] = 6, + [52138] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1977), 1, - anon_sym_LPAREN2, - ACTIONS(1983), 1, - sym__unquoted_pattern, - STATE(1995), 1, + STATE(2007), 1, sym_comment, - ACTIONS(2599), 5, + ACTIONS(1848), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2597), 31, + sym__unquoted_pattern, + ACTIONS(1846), 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, @@ -184698,6 +186336,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, @@ -184707,23 +186346,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [51776] = 6, + [52186] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4406), 1, - anon_sym_DOT_DOT2, - STATE(1996), 1, + STATE(2008), 1, sym_comment, - ACTIONS(4408), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2112), 5, + ACTIONS(1897), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2110), 30, + sym__unquoted_pattern, + ACTIONS(1895), 31, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -184745,6 +186380,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, @@ -184754,71 +186390,200 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [51829] = 9, + [52234] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2804), 1, + STATE(2009), 1, + sym_comment, + ACTIONS(2774), 37, sym__newline, - STATE(1997), 1, + 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, + [52280] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2010), 1, sym_comment, - STATE(2072), 1, - aux_sym__repeat_newline, - ACTIONS(4410), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4412), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4414), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2722), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2720), 26, + 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, + [52328] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(974), 1, + aux_sym_cmd_identifier_token6, + ACTIONS(4450), 1, + sym_filesize_unit, + ACTIONS(4452), 1, + sym_duration_unit, + STATE(2011), 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, + [52382] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2012), 1, + sym_comment, + ACTIONS(3756), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(3754), 35, + 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_finally, + anon_sym_match, 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, - [51887] = 6, + 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, + [52430] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1977), 1, + ACTIONS(2672), 1, anon_sym_LPAREN2, - ACTIONS(1983), 1, + ACTIONS(2674), 1, sym__unquoted_pattern, - STATE(1998), 1, + STATE(2013), 1, sym_comment, - ACTIONS(2599), 5, + ACTIONS(1615), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2597), 30, + ACTIONS(1699), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -184849,24 +186614,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [51939] = 6, + [52482] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1977), 1, - anon_sym_LPAREN2, - ACTIONS(1983), 1, - sym__unquoted_pattern, - STATE(1999), 1, + ACTIONS(4454), 1, + sym__newline, + STATE(2014), 2, + sym_comment, + aux_sym__types_body_repeat1, + ACTIONS(3758), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(3760), 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_finally, + 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, + [52532] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2015), 1, sym_comment, - ACTIONS(1975), 5, + ACTIONS(2618), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1973), 30, + ACTIONS(2616), 32, anon_sym_in, + sym__newline, anon_sym_DASH2, + anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, @@ -184895,22 +186703,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [51991] = 6, + [52580] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4457), 1, + sym__newline, + ACTIONS(4461), 1, + anon_sym_LBRACK, + STATE(2016), 1, + sym_comment, + ACTIONS(4464), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(2772), 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(2774), 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, + [52634] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1679), 1, + ACTIONS(1637), 1, sym__unquoted_pattern, - ACTIONS(2642), 1, + ACTIONS(1976), 1, anon_sym_LPAREN2, - STATE(2000), 1, + STATE(2017), 1, sym_comment, - ACTIONS(2543), 5, + ACTIONS(1974), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2541), 30, + ACTIONS(1972), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -184941,25 +186796,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [52043] = 6, + [52686] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4470), 1, + aux_sym_cmd_identifier_token6, + ACTIONS(4472), 1, + sym_filesize_unit, + ACTIONS(4474), 1, + sym_duration_unit, + STATE(2018), 1, + sym_comment, + ACTIONS(4468), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4466), 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, + [52740] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2644), 1, - anon_sym_LPAREN2, - ACTIONS(2646), 1, - sym__unquoted_pattern, - STATE(2001), 1, + ACTIONS(2358), 1, + anon_sym_DOT2, + STATE(432), 1, + sym_cell_path, + STATE(526), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(715), 1, + sym_path, + STATE(2019), 1, sym_comment, - ACTIONS(2591), 5, + ACTIONS(1454), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2589), 30, + ACTIONS(1456), 31, + ts_builtin_sym_end, anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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, @@ -184978,28 +186891,67 @@ 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, - [52095] = 4, + [52796] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3710), 1, + sym_raw_string_begin, + ACTIONS(4476), 1, + sym__entry_separator, + STATE(2020), 2, + sym_comment, + aux_sym__types_body_repeat2, + ACTIONS(3705), 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, + [52846] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2002), 1, + ACTIONS(1986), 1, + anon_sym_LPAREN2, + ACTIONS(1992), 1, + sym__unquoted_pattern, + STATE(2021), 1, sym_comment, - ACTIONS(2527), 6, + ACTIONS(2654), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(2525), 31, + ACTIONS(2652), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -185021,7 +186973,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, @@ -185031,22 +186982,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [52143] = 4, + [52898] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2003), 1, + ACTIONS(1986), 1, + anon_sym_LPAREN2, + ACTIONS(1992), 1, + sym__unquoted_pattern, + STATE(2022), 1, sym_comment, - ACTIONS(2650), 5, + ACTIONS(1984), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2648), 32, + ACTIONS(1982), 30, anon_sym_in, - sym__newline, anon_sym_DASH2, - anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, @@ -185075,22 +187028,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [52191] = 6, + [52950] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2652), 1, - anon_sym_LPAREN2, - ACTIONS(2654), 1, + ACTIONS(1695), 1, sym__unquoted_pattern, - STATE(2004), 1, + ACTIONS(2576), 1, + anon_sym_LPAREN2, + STATE(2023), 1, sym_comment, - ACTIONS(2650), 5, + ACTIONS(2574), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2648), 30, + ACTIONS(2572), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -185121,22 +187074,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [52243] = 6, + [53002] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2656), 1, + ACTIONS(2612), 1, anon_sym_LPAREN2, - ACTIONS(2658), 1, + ACTIONS(2614), 1, sym__unquoted_pattern, - STATE(2005), 1, + STATE(2024), 1, sym_comment, - ACTIONS(1020), 5, + ACTIONS(2610), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1022), 30, + ACTIONS(2608), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -185167,22 +187120,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [52295] = 6, + [53054] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2656), 1, - anon_sym_LPAREN2, - ACTIONS(2658), 1, - sym__unquoted_pattern, - STATE(2006), 1, + STATE(2025), 1, sym_comment, - ACTIONS(994), 5, + ACTIONS(2362), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1030), 30, + sym__unquoted_pattern, + ACTIONS(2360), 31, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -185204,6 +187154,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, @@ -185213,26 +187164,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [52347] = 7, - ACTIONS(103), 1, + [53102] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4418), 1, - anon_sym_RBRACK, - ACTIONS(4420), 1, - sym__entry_separator, - ACTIONS(4422), 1, - sym_raw_string_begin, - STATE(2007), 1, + ACTIONS(4187), 1, + sym__unquoted_pattern, + STATE(2026), 1, sym_comment, - STATE(2123), 1, - aux_sym__types_body_repeat2, - ACTIONS(4416), 33, + ACTIONS(847), 3, anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(968), 33, + 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, @@ -185245,43 +187193,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, 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, + [53152] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2027), 1, + sym_comment, + ACTIONS(2362), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, + sym__unquoted_pattern, + ACTIONS(2360), 33, + 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_finally, + 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, + [53200] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4481), 1, + anon_sym_RBRACK, + ACTIONS(4483), 1, + sym__entry_separator, + ACTIONS(4485), 1, + sym_raw_string_begin, + STATE(2020), 1, + aux_sym__types_body_repeat2, + STATE(2028), 1, + sym_comment, + ACTIONS(4479), 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, + [53254] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4483), 1, + sym__entry_separator, + ACTIONS(4485), 1, + sym_raw_string_begin, + ACTIONS(4487), 1, + anon_sym_RBRACK, + STATE(2020), 1, + aux_sym__types_body_repeat2, + STATE(2029), 1, + sym_comment, + ACTIONS(4479), 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, - [52401] = 8, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + aux_sym__unquoted_in_list_token1, + [53308] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4424), 1, + ACTIONS(4457), 1, sym__newline, - ACTIONS(4428), 1, + ACTIONS(4461), 1, anon_sym_LBRACK, - ACTIONS(4433), 1, + ACTIONS(4489), 1, anon_sym_DOT_DOT, - STATE(2008), 1, + STATE(2030), 1, sym_comment, - ACTIONS(4431), 2, + ACTIONS(4464), 2, anon_sym_RBRACK, anon_sym_COMMA, - ACTIONS(2958), 6, + ACTIONS(2772), 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(2960), 26, + ACTIONS(2774), 26, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -185308,19 +187395,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACK, - [52457] = 4, + [53364] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2009), 1, + ACTIONS(4492), 1, + sym__newline, + STATE(2031), 2, + aux_sym__repeat_newline, + sym_comment, + ACTIONS(1862), 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, + [53412] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2620), 1, + anon_sym_LPAREN2, + ACTIONS(2622), 1, + sym__unquoted_pattern, + STATE(2032), 1, sym_comment, - ACTIONS(1772), 6, + ACTIONS(2618), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1770), 31, + ACTIONS(2616), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -185342,7 +187476,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, @@ -185352,19 +187485,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [52505] = 4, + [53464] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2010), 1, + ACTIONS(2632), 1, + anon_sym_LPAREN2, + ACTIONS(2634), 1, + sym__unquoted_pattern, + STATE(2033), 1, sym_comment, - ACTIONS(1854), 6, + ACTIONS(1012), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1852), 31, + ACTIONS(1226), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -185386,7 +187522,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, @@ -185396,22 +187531,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [52553] = 4, + [53516] = 13, ACTIONS(3), 1, anon_sym_POUND, - STATE(2011), 1, + ACTIONS(2850), 1, + sym__newline, + ACTIONS(4497), 1, + anon_sym_DASH2, + ACTIONS(4507), 1, + anon_sym_PLUS2, + STATE(2034), 1, sym_comment, - ACTIONS(1872), 6, + STATE(2055), 1, + aux_sym__repeat_newline, + ACTIONS(4495), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(4499), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1870), 31, + ACTIONS(4503), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4505), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4509), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4501), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2798), 19, anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -185422,86 +187577,27 @@ 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_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, - [52601] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4436), 1, - sym__newline, - STATE(2012), 2, - aux_sym__repeat_newline, - sym_comment, - ACTIONS(1966), 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, - [52649] = 7, + [53582] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4443), 1, - aux_sym_cmd_identifier_token6, - ACTIONS(4445), 1, - sym_filesize_unit, - ACTIONS(4447), 1, - sym_duration_unit, - STATE(2013), 1, + STATE(2035), 1, sym_comment, - ACTIONS(4441), 5, + ACTIONS(767), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(4439), 29, + aux_sym_cmd_identifier_token6, + sym_filesize_unit, + ACTIONS(769), 30, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -185531,272 +187627,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [52703] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2280), 1, - anon_sym_DOT2, - STATE(428), 1, - sym_cell_path, - STATE(622), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(720), 1, - sym_path, - STATE(2014), 1, - sym_comment, - ACTIONS(1442), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(1444), 31, - 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, - [52759] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4328), 1, - sym__entry_separator, - STATE(1881), 1, - aux_sym__types_body_repeat2, - STATE(2015), 1, - sym_comment, - ACTIONS(4343), 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, - [52809] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(3720), 1, - sym_raw_string_begin, - ACTIONS(4449), 1, - sym__entry_separator, - STATE(2016), 2, - sym_comment, - aux_sym__types_body_repeat2, - ACTIONS(3715), 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, - [52859] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4454), 1, - anon_sym_RBRACK, - ACTIONS(4456), 1, - sym__entry_separator, - ACTIONS(4458), 1, - sym_raw_string_begin, - STATE(2016), 1, - aux_sym__types_body_repeat2, - STATE(2017), 1, - sym_comment, - ACTIONS(4452), 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, - [52913] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4456), 1, - sym__entry_separator, - ACTIONS(4458), 1, - sym_raw_string_begin, - ACTIONS(4460), 1, - anon_sym_RBRACK, - STATE(2016), 1, - aux_sym__types_body_repeat2, - STATE(2018), 1, - sym_comment, - ACTIONS(4452), 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, - [52967] = 13, + sym_duration_unit, + [53630] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2860), 1, + ACTIONS(2850), 1, sym__newline, - ACTIONS(4464), 1, + ACTIONS(4497), 1, anon_sym_DASH2, - ACTIONS(4468), 1, + ACTIONS(4507), 1, anon_sym_PLUS2, - STATE(2019), 1, + STATE(2036), 1, sym_comment, - STATE(2035), 1, + STATE(2057), 1, aux_sym__repeat_newline, - ACTIONS(4410), 2, + ACTIONS(2800), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4499), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4412), 2, + ACTIONS(4503), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4414), 2, + ACTIONS(4505), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4462), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4470), 2, + ACTIONS(4509), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4466), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2754), 19, + ACTIONS(2798), 23, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -185809,6 +187669,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, @@ -185816,36 +187680,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53033] = 12, + [53694] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2860), 1, + ACTIONS(2850), 1, sym__newline, - ACTIONS(4464), 1, - anon_sym_DASH2, - ACTIONS(4468), 1, - anon_sym_PLUS2, - STATE(2020), 1, - sym_comment, STATE(2037), 1, + sym_comment, + STATE(2059), 1, aux_sym__repeat_newline, - ACTIONS(2756), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4410), 2, + ACTIONS(4499), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4412), 2, + ACTIONS(4503), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4414), 2, + ACTIONS(4505), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4470), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2754), 23, + ACTIONS(2800), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2798), 26, anon_sym_in, + anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -185865,35 +187724,30 @@ 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, - [53097] = 9, + [53752] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2860), 1, - sym__newline, - STATE(2021), 1, - sym_comment, + ACTIONS(2632), 1, + anon_sym_LPAREN2, + ACTIONS(2634), 1, + sym__unquoted_pattern, STATE(2038), 1, - aux_sym__repeat_newline, - ACTIONS(4410), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4412), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4414), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2756), 3, + sym_comment, + ACTIONS(1020), 5, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2754), 26, + ACTIONS(1234), 30, anon_sym_in, anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -185912,30 +187766,34 @@ 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, - [53155] = 7, + [53804] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2860), 1, + ACTIONS(2850), 1, sym__newline, - STATE(2022), 1, + STATE(2039), 1, sym_comment, - STATE(2040), 1, + STATE(2061), 1, aux_sym__repeat_newline, - ACTIONS(4412), 2, + ACTIONS(4503), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2756), 5, + ACTIONS(2800), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2754), 28, + ACTIONS(2798), 28, anon_sym_in, anon_sym_DASH2, anon_sym_LBRACE, @@ -185964,26 +187822,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53209] = 7, - ACTIONS(103), 1, + [53858] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4420), 1, - sym__entry_separator, - ACTIONS(4422), 1, - sym_raw_string_begin, - ACTIONS(4472), 1, - anon_sym_RBRACK, - STATE(2023), 1, + STATE(2040), 1, sym_comment, - STATE(2123), 1, - aux_sym__types_body_repeat2, - ACTIONS(4416), 33, + ACTIONS(1468), 4, anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1470), 33, + 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, @@ -185996,14 +187850,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, 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, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -186011,56 +187866,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [53263] = 18, + [53906] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2860), 1, + ACTIONS(2850), 1, sym__newline, - ACTIONS(4464), 1, + ACTIONS(4497), 1, anon_sym_DASH2, - ACTIONS(4468), 1, + ACTIONS(4507), 1, anon_sym_PLUS2, - ACTIONS(4478), 1, + ACTIONS(4515), 1, anon_sym_bit_DASHand2, - ACTIONS(4480), 1, + ACTIONS(4517), 1, anon_sym_bit_DASHxor2, - ACTIONS(4482), 1, + ACTIONS(4519), 1, anon_sym_bit_DASHor2, - STATE(2024), 1, + STATE(2041), 1, sym_comment, - STATE(2042), 1, + STATE(2063), 1, aux_sym__repeat_newline, - ACTIONS(4410), 2, + ACTIONS(4495), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4499), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4412), 2, + ACTIONS(4503), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4414), 2, + ACTIONS(4505), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4462), 2, + ACTIONS(4509), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2798), 4, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(4501), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4513), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4511), 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, + [53982] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2850), 1, + sym__newline, + ACTIONS(4497), 1, + anon_sym_DASH2, + ACTIONS(4507), 1, + anon_sym_PLUS2, + ACTIONS(4515), 1, + anon_sym_bit_DASHand2, + ACTIONS(4517), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4519), 1, + anon_sym_bit_DASHor2, + ACTIONS(4521), 1, + anon_sym_and2, + STATE(2042), 1, + sym_comment, + STATE(2065), 1, + aux_sym__repeat_newline, + ACTIONS(4495), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4470), 2, + ACTIONS(4499), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4503), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4505), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4509), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2754), 4, + ACTIONS(2798), 3, anon_sym_LBRACE, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4466), 4, + ACTIONS(4501), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4476), 4, + ACTIONS(4513), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4474), 8, + ACTIONS(4511), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -186069,16 +187983,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [53339] = 5, + [54060] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4328), 1, + ACTIONS(4343), 1, sym__entry_separator, - STATE(1881), 1, + STATE(1913), 1, aux_sym__types_body_repeat2, - STATE(2025), 1, + STATE(2043), 1, sym_comment, - ACTIONS(4324), 35, + ACTIONS(4349), 35, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -186114,117 +188028,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, anon_sym_list, anon_sym_oneof, - [53389] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2860), 1, - sym__newline, - ACTIONS(4464), 1, - anon_sym_DASH2, - ACTIONS(4468), 1, - anon_sym_PLUS2, - ACTIONS(4478), 1, - anon_sym_bit_DASHand2, - ACTIONS(4480), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4482), 1, - anon_sym_bit_DASHor2, - ACTIONS(4484), 1, - anon_sym_and2, - STATE(2026), 1, - sym_comment, - STATE(2044), 1, - aux_sym__repeat_newline, - ACTIONS(4410), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4412), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4414), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4462), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4470), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2754), 3, - anon_sym_LBRACE, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4466), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4476), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4474), 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, - [53467] = 20, + [54110] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2907), 1, + ACTIONS(2922), 1, sym__newline, - ACTIONS(4464), 1, + ACTIONS(4497), 1, anon_sym_DASH2, - ACTIONS(4468), 1, + ACTIONS(4507), 1, anon_sym_PLUS2, - ACTIONS(4478), 1, + ACTIONS(4515), 1, anon_sym_bit_DASHand2, - ACTIONS(4480), 1, + ACTIONS(4517), 1, anon_sym_bit_DASHxor2, - ACTIONS(4482), 1, + ACTIONS(4519), 1, anon_sym_bit_DASHor2, - ACTIONS(4484), 1, + ACTIONS(4521), 1, anon_sym_and2, - ACTIONS(4486), 1, + ACTIONS(4523), 1, anon_sym_xor2, - STATE(2027), 1, + STATE(2044), 1, sym_comment, - STATE(2046), 1, + STATE(2067), 1, aux_sym__repeat_newline, - ACTIONS(2754), 2, + ACTIONS(2798), 2, anon_sym_LBRACE, anon_sym_or2, - ACTIONS(4410), 2, + ACTIONS(4495), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4499), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4412), 2, + ACTIONS(4503), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4414), 2, + ACTIONS(4505), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4462), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4470), 2, + ACTIONS(4509), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4466), 4, + ACTIONS(4501), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4476), 4, + ACTIONS(4513), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4474), 8, + ACTIONS(4511), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -186233,40 +188088,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [53547] = 14, + [54190] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2860), 1, + ACTIONS(2850), 1, sym__newline, - ACTIONS(4464), 1, + ACTIONS(4497), 1, anon_sym_DASH2, - ACTIONS(4468), 1, + ACTIONS(4507), 1, anon_sym_PLUS2, - STATE(2028), 1, + STATE(2045), 1, sym_comment, - STATE(2048), 1, + STATE(2069), 1, aux_sym__repeat_newline, - ACTIONS(4410), 2, + ACTIONS(4495), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4499), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4412), 2, + ACTIONS(4503), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4414), 2, + ACTIONS(4505), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4462), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4470), 2, + ACTIONS(4509), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4466), 4, + ACTIONS(4501), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4474), 8, + ACTIONS(4511), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -186275,7 +188130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2754), 11, + ACTIONS(2798), 11, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -186287,32 +188142,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53615] = 11, + [54258] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2860), 1, + ACTIONS(2850), 1, sym__newline, - ACTIONS(4464), 1, + ACTIONS(4497), 1, anon_sym_DASH2, - ACTIONS(4468), 1, + ACTIONS(4507), 1, anon_sym_PLUS2, - STATE(2029), 1, + STATE(2046), 1, sym_comment, - STATE(2050), 1, + STATE(2071), 1, aux_sym__repeat_newline, - ACTIONS(2756), 2, + ACTIONS(2800), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4410), 2, + ACTIONS(4499), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4412), 2, + ACTIONS(4503), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4414), 2, + ACTIONS(4505), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2754), 25, + ACTIONS(2798), 25, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -186338,45 +188193,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53677] = 15, + [54320] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2860), 1, + ACTIONS(2850), 1, sym__newline, - ACTIONS(4464), 1, + ACTIONS(4497), 1, anon_sym_DASH2, - ACTIONS(4468), 1, + ACTIONS(4507), 1, anon_sym_PLUS2, - STATE(2030), 1, + STATE(2047), 1, sym_comment, - STATE(2052), 1, + STATE(2073), 1, aux_sym__repeat_newline, - ACTIONS(4410), 2, + ACTIONS(4495), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4499), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4412), 2, + ACTIONS(4503), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4414), 2, + ACTIONS(4505), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4462), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4470), 2, + ACTIONS(4509), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4466), 4, + ACTIONS(4501), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4476), 4, + ACTIONS(4513), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2754), 7, + ACTIONS(2798), 7, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -186384,7 +188239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4474), 8, + ACTIONS(4511), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -186393,54 +188248,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [53747] = 16, + [54390] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2860), 1, + ACTIONS(2850), 1, sym__newline, - ACTIONS(4464), 1, + ACTIONS(4497), 1, anon_sym_DASH2, - ACTIONS(4468), 1, + ACTIONS(4507), 1, anon_sym_PLUS2, - ACTIONS(4478), 1, + ACTIONS(4515), 1, anon_sym_bit_DASHand2, - STATE(2031), 1, + STATE(2048), 1, sym_comment, - STATE(2054), 1, + STATE(2075), 1, aux_sym__repeat_newline, - ACTIONS(4410), 2, + ACTIONS(4495), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4499), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4412), 2, + ACTIONS(4503), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4414), 2, + ACTIONS(4505), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4462), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4470), 2, + ACTIONS(4509), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4466), 4, + ACTIONS(4501), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4476), 4, + ACTIONS(4513), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2754), 6, + ACTIONS(2798), 6, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4474), 8, + ACTIONS(4511), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -186449,55 +188304,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [53819] = 17, + [54462] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2860), 1, + ACTIONS(2850), 1, sym__newline, - ACTIONS(4464), 1, + ACTIONS(4497), 1, anon_sym_DASH2, - ACTIONS(4468), 1, + ACTIONS(4507), 1, anon_sym_PLUS2, - ACTIONS(4478), 1, + ACTIONS(4515), 1, anon_sym_bit_DASHand2, - ACTIONS(4480), 1, + ACTIONS(4517), 1, anon_sym_bit_DASHxor2, - STATE(2032), 1, + STATE(2049), 1, sym_comment, - STATE(2056), 1, + STATE(2077), 1, aux_sym__repeat_newline, - ACTIONS(4410), 2, + ACTIONS(4495), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4499), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4412), 2, + ACTIONS(4503), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4414), 2, + ACTIONS(4505), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4462), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4470), 2, + ACTIONS(4509), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4466), 4, + ACTIONS(4501), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4476), 4, + ACTIONS(4513), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2754), 5, + ACTIONS(2798), 5, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - ACTIONS(4474), 8, + ACTIONS(4511), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -186506,20 +188361,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [53893] = 7, + [54536] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2050), 1, + sym_comment, + ACTIONS(1543), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1545), 33, + 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_finally, + 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, + [54584] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4525), 1, + anon_sym_LBRACK2, + STATE(2051), 1, + sym_comment, + ACTIONS(2166), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2164), 33, + 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_finally, + 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, + [54634] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2052), 1, + sym_comment, + ACTIONS(1551), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1553), 33, + 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_finally, + 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, + [54682] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4420), 1, + ACTIONS(4370), 1, sym__entry_separator, - ACTIONS(4422), 1, + ACTIONS(4372), 1, sym_raw_string_begin, - ACTIONS(4488), 1, - anon_sym_RBRACK, - STATE(2033), 1, - sym_comment, - STATE(2123), 1, + STATE(1968), 1, aux_sym__types_body_repeat2, - ACTIONS(4416), 33, + STATE(2053), 1, + sym_comment, + ACTIONS(4366), 34, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -186538,6 +188524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_in, anon_sym_true, @@ -186553,40 +188540,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [53947] = 13, + [54734] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2804), 1, + ACTIONS(2874), 1, sym__newline, - ACTIONS(4464), 1, + ACTIONS(4497), 1, anon_sym_DASH2, - ACTIONS(4468), 1, + ACTIONS(4507), 1, anon_sym_PLUS2, - STATE(2034), 1, + STATE(2054), 1, sym_comment, - STATE(2070), 1, + STATE(2094), 1, aux_sym__repeat_newline, - ACTIONS(4410), 2, + ACTIONS(4495), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4499), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4412), 2, + ACTIONS(4503), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4414), 2, + ACTIONS(4505), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4462), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4470), 2, + ACTIONS(4509), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4466), 4, + ACTIONS(4501), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2720), 19, + ACTIONS(2788), 19, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -186606,38 +188593,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [54013] = 12, + [54800] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4492), 1, + ACTIONS(4440), 1, anon_sym_DASH2, - ACTIONS(4502), 1, + ACTIONS(4448), 1, anon_sym_PLUS2, - STATE(527), 1, + STATE(485), 1, aux_sym__repeat_newline, - STATE(2035), 1, + STATE(2055), 1, sym_comment, - ACTIONS(4490), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4494), 2, + ACTIONS(4442), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4498), 2, + ACTIONS(4444), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4500), 2, + ACTIONS(4446), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4504), 2, + ACTIONS(4527), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4531), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4496), 4, + ACTIONS(4529), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2724), 20, + ACTIONS(2794), 20, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -186658,36 +188645,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [54077] = 12, + [54864] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4483), 1, + sym__entry_separator, + ACTIONS(4485), 1, + sym_raw_string_begin, + ACTIONS(4533), 1, + anon_sym_RBRACK, + STATE(2020), 1, + aux_sym__types_body_repeat2, + STATE(2056), 1, + sym_comment, + ACTIONS(4479), 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, + [54918] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2804), 1, - sym__newline, - ACTIONS(4464), 1, + ACTIONS(4440), 1, anon_sym_DASH2, - ACTIONS(4468), 1, + ACTIONS(4448), 1, anon_sym_PLUS2, - STATE(2036), 1, - sym_comment, - STATE(2071), 1, + STATE(485), 1, aux_sym__repeat_newline, - ACTIONS(2722), 2, + STATE(2057), 1, + sym_comment, + ACTIONS(2796), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4410), 2, + ACTIONS(4442), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4412), 2, + ACTIONS(4444), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4414), 2, + ACTIONS(4446), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4470), 2, + ACTIONS(4531), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2720), 23, + ACTIONS(2794), 24, anon_sym_in, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -186710,35 +188743,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [54141] = 11, + [54980] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4492), 1, - anon_sym_DASH2, - ACTIONS(4502), 1, - anon_sym_PLUS2, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(2037), 1, + ACTIONS(2874), 1, + sym__newline, + STATE(2058), 1, sym_comment, - ACTIONS(2726), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4494), 2, + STATE(2096), 1, + aux_sym__repeat_newline, + ACTIONS(4499), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4498), 2, + ACTIONS(4503), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4500), 2, + ACTIONS(4505), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4504), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2724), 24, + ACTIONS(2790), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2788), 26, anon_sym_in, - sym__newline, + anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -186758,30 +188787,32 @@ 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, - [54203] = 8, + [55038] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(527), 1, + STATE(485), 1, aux_sym__repeat_newline, - STATE(2038), 1, + STATE(2059), 1, sym_comment, - ACTIONS(4494), 2, + ACTIONS(4442), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4498), 2, + ACTIONS(4444), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4500), 2, + ACTIONS(4446), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2726), 3, + ACTIONS(2796), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2724), 27, + ACTIONS(2794), 27, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -186809,25 +188840,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [54259] = 7, + [55094] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2804), 1, + ACTIONS(2874), 1, sym__newline, - STATE(2039), 1, + STATE(2060), 1, sym_comment, - STATE(2073), 1, + STATE(2097), 1, aux_sym__repeat_newline, - ACTIONS(4412), 2, + ACTIONS(4503), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2722), 5, + ACTIONS(2790), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2720), 28, + ACTIONS(2788), 28, anon_sym_in, anon_sym_DASH2, anon_sym_LBRACE, @@ -186856,23 +188887,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [54313] = 6, + [55148] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(527), 1, + STATE(485), 1, aux_sym__repeat_newline, - STATE(2040), 1, + STATE(2061), 1, sym_comment, - ACTIONS(4498), 2, + ACTIONS(4444), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2726), 5, + ACTIONS(2796), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2724), 29, + ACTIONS(2794), 29, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -186902,56 +188933,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [54365] = 18, + [55200] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2804), 1, + ACTIONS(2874), 1, sym__newline, - ACTIONS(4464), 1, + ACTIONS(4497), 1, anon_sym_DASH2, - ACTIONS(4468), 1, + ACTIONS(4507), 1, anon_sym_PLUS2, - ACTIONS(4478), 1, + ACTIONS(4515), 1, anon_sym_bit_DASHand2, - ACTIONS(4480), 1, + ACTIONS(4517), 1, anon_sym_bit_DASHxor2, - ACTIONS(4482), 1, + ACTIONS(4519), 1, anon_sym_bit_DASHor2, - STATE(2041), 1, + STATE(2062), 1, sym_comment, - STATE(2074), 1, + STATE(2098), 1, aux_sym__repeat_newline, - ACTIONS(4410), 2, + ACTIONS(4495), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4499), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4412), 2, + ACTIONS(4503), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4414), 2, + ACTIONS(4505), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4462), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4470), 2, + ACTIONS(4509), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2720), 4, + ACTIONS(2788), 4, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4466), 4, + ACTIONS(4501), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4476), 4, + ACTIONS(4513), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4474), 8, + ACTIONS(4511), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -186960,55 +188991,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [54441] = 17, + [55276] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4492), 1, + ACTIONS(4440), 1, anon_sym_DASH2, - ACTIONS(4502), 1, + ACTIONS(4448), 1, anon_sym_PLUS2, - ACTIONS(4510), 1, + ACTIONS(4539), 1, anon_sym_bit_DASHand2, - ACTIONS(4512), 1, + ACTIONS(4541), 1, anon_sym_bit_DASHxor2, - ACTIONS(4514), 1, + ACTIONS(4543), 1, anon_sym_bit_DASHor2, - STATE(527), 1, + STATE(485), 1, aux_sym__repeat_newline, - STATE(2042), 1, + STATE(2063), 1, sym_comment, - ACTIONS(4490), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4494), 2, + ACTIONS(4442), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4498), 2, + ACTIONS(4444), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4500), 2, + ACTIONS(4446), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4504), 2, + ACTIONS(4527), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4531), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4496), 4, + ACTIONS(4529), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4508), 4, + ACTIONS(4537), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2724), 5, + ACTIONS(2794), 5, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4506), 8, + ACTIONS(4535), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187017,57 +189048,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [54515] = 19, + [55350] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2804), 1, + ACTIONS(2874), 1, sym__newline, - ACTIONS(4464), 1, + ACTIONS(4497), 1, anon_sym_DASH2, - ACTIONS(4468), 1, + ACTIONS(4507), 1, anon_sym_PLUS2, - ACTIONS(4478), 1, + ACTIONS(4515), 1, anon_sym_bit_DASHand2, - ACTIONS(4480), 1, + ACTIONS(4517), 1, anon_sym_bit_DASHxor2, - ACTIONS(4482), 1, + ACTIONS(4519), 1, anon_sym_bit_DASHor2, - ACTIONS(4484), 1, + ACTIONS(4521), 1, anon_sym_and2, - STATE(2043), 1, + STATE(2064), 1, sym_comment, - STATE(2075), 1, + STATE(2100), 1, aux_sym__repeat_newline, - ACTIONS(4410), 2, + ACTIONS(4495), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4499), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4412), 2, + ACTIONS(4503), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4414), 2, + ACTIONS(4505), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4462), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4470), 2, + ACTIONS(4509), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2720), 3, + ACTIONS(2788), 3, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(4466), 4, + ACTIONS(4501), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4476), 4, + ACTIONS(4513), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4474), 8, + ACTIONS(4511), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187076,56 +189107,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [54593] = 18, + [55428] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4492), 1, + ACTIONS(4440), 1, anon_sym_DASH2, - ACTIONS(4502), 1, + ACTIONS(4448), 1, anon_sym_PLUS2, - ACTIONS(4510), 1, + ACTIONS(4539), 1, anon_sym_bit_DASHand2, - ACTIONS(4512), 1, + ACTIONS(4541), 1, anon_sym_bit_DASHxor2, - ACTIONS(4514), 1, + ACTIONS(4543), 1, anon_sym_bit_DASHor2, - ACTIONS(4516), 1, + ACTIONS(4545), 1, anon_sym_and2, - STATE(527), 1, + STATE(485), 1, aux_sym__repeat_newline, - STATE(2044), 1, + STATE(2065), 1, sym_comment, - ACTIONS(4490), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4494), 2, + ACTIONS(4442), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4498), 2, + ACTIONS(4444), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4500), 2, + ACTIONS(4446), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4504), 2, + ACTIONS(4527), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4531), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2724), 4, + ACTIONS(2794), 4, sym__newline, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(4496), 4, + ACTIONS(4529), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4508), 4, + ACTIONS(4537), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4506), 8, + ACTIONS(4535), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187134,58 +189165,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [54669] = 20, + [55504] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2907), 1, + ACTIONS(2922), 1, sym__newline, - ACTIONS(4464), 1, + ACTIONS(4497), 1, anon_sym_DASH2, - ACTIONS(4468), 1, + ACTIONS(4507), 1, anon_sym_PLUS2, - ACTIONS(4478), 1, + ACTIONS(4515), 1, anon_sym_bit_DASHand2, - ACTIONS(4480), 1, + ACTIONS(4517), 1, anon_sym_bit_DASHxor2, - ACTIONS(4482), 1, + ACTIONS(4519), 1, anon_sym_bit_DASHor2, - ACTIONS(4484), 1, + ACTIONS(4521), 1, anon_sym_and2, - ACTIONS(4486), 1, + ACTIONS(4523), 1, anon_sym_xor2, - STATE(2045), 1, + STATE(2066), 1, sym_comment, - STATE(2076), 1, + STATE(2101), 1, aux_sym__repeat_newline, - ACTIONS(2720), 2, + ACTIONS(2788), 2, anon_sym_LBRACE, anon_sym_or2, - ACTIONS(4410), 2, + ACTIONS(4495), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4499), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4412), 2, + ACTIONS(4503), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4414), 2, + ACTIONS(4505), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4462), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4470), 2, + ACTIONS(4509), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4466), 4, + ACTIONS(4501), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4476), 4, + ACTIONS(4513), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4474), 8, + ACTIONS(4511), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187194,57 +189225,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [54749] = 19, + [55584] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4492), 1, + ACTIONS(4440), 1, anon_sym_DASH2, - ACTIONS(4502), 1, + ACTIONS(4448), 1, anon_sym_PLUS2, - ACTIONS(4510), 1, + ACTIONS(4539), 1, anon_sym_bit_DASHand2, - ACTIONS(4512), 1, + ACTIONS(4541), 1, anon_sym_bit_DASHxor2, - ACTIONS(4514), 1, + ACTIONS(4543), 1, anon_sym_bit_DASHor2, - ACTIONS(4516), 1, + ACTIONS(4545), 1, anon_sym_and2, - ACTIONS(4518), 1, + ACTIONS(4547), 1, anon_sym_xor2, - STATE(527), 1, + STATE(485), 1, aux_sym__repeat_newline, - STATE(2046), 1, + STATE(2067), 1, sym_comment, - ACTIONS(4490), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4494), 2, + ACTIONS(4442), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4498), 2, + ACTIONS(4444), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4500), 2, + ACTIONS(4446), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4504), 2, + ACTIONS(4527), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4531), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2724), 3, + ACTIONS(2794), 3, sym__newline, anon_sym_LBRACE, anon_sym_or2, - ACTIONS(4496), 4, + ACTIONS(4529), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4508), 4, + ACTIONS(4537), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4506), 8, + ACTIONS(4535), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187253,40 +189284,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [54827] = 14, + [55662] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2804), 1, + ACTIONS(2874), 1, sym__newline, - ACTIONS(4464), 1, + ACTIONS(4497), 1, anon_sym_DASH2, - ACTIONS(4468), 1, + ACTIONS(4507), 1, anon_sym_PLUS2, - STATE(2047), 1, + STATE(2068), 1, sym_comment, - STATE(2077), 1, + STATE(2102), 1, aux_sym__repeat_newline, - ACTIONS(4410), 2, + ACTIONS(4495), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4499), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4412), 2, + ACTIONS(4503), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4414), 2, + ACTIONS(4505), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4462), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4470), 2, + ACTIONS(4509), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4466), 4, + ACTIONS(4501), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4474), 8, + ACTIONS(4511), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187295,7 +189326,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), 11, + ACTIONS(2788), 11, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -187307,38 +189338,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [54895] = 13, + [55730] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4492), 1, + ACTIONS(4440), 1, anon_sym_DASH2, - ACTIONS(4502), 1, + ACTIONS(4448), 1, anon_sym_PLUS2, - STATE(527), 1, + STATE(485), 1, aux_sym__repeat_newline, - STATE(2048), 1, + STATE(2069), 1, sym_comment, - ACTIONS(4490), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4494), 2, + ACTIONS(4442), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4498), 2, + ACTIONS(4444), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4500), 2, + ACTIONS(4446), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4504), 2, + ACTIONS(4527), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4531), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4496), 4, + ACTIONS(4529), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4506), 8, + ACTIONS(4535), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187347,7 +189378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2724), 12, + ACTIONS(2794), 12, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -187360,32 +189391,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [54961] = 11, + [55796] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2804), 1, + ACTIONS(2874), 1, sym__newline, - ACTIONS(4464), 1, + ACTIONS(4497), 1, anon_sym_DASH2, - ACTIONS(4468), 1, + ACTIONS(4507), 1, anon_sym_PLUS2, - STATE(2049), 1, - sym_comment, - STATE(2078), 1, + STATE(2006), 1, aux_sym__repeat_newline, - ACTIONS(2722), 2, + STATE(2070), 1, + sym_comment, + ACTIONS(2790), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4410), 2, + ACTIONS(4499), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4412), 2, + ACTIONS(4503), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4414), 2, + ACTIONS(4505), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2720), 25, + ACTIONS(2788), 25, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -187411,30 +189442,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [55023] = 10, + [55858] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4492), 1, + ACTIONS(4440), 1, anon_sym_DASH2, - ACTIONS(4502), 1, + ACTIONS(4448), 1, anon_sym_PLUS2, - STATE(527), 1, + STATE(485), 1, aux_sym__repeat_newline, - STATE(2050), 1, + STATE(2071), 1, sym_comment, - ACTIONS(2726), 2, + ACTIONS(2796), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4494), 2, + ACTIONS(4442), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4498), 2, + ACTIONS(4444), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4500), 2, + ACTIONS(4446), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2724), 26, + ACTIONS(2794), 26, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -187461,45 +189492,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [55083] = 15, + [55918] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2804), 1, + ACTIONS(2874), 1, sym__newline, - ACTIONS(4464), 1, + ACTIONS(4497), 1, anon_sym_DASH2, - ACTIONS(4468), 1, + ACTIONS(4507), 1, anon_sym_PLUS2, - STATE(2051), 1, + STATE(2072), 1, sym_comment, - STATE(2079), 1, + STATE(2104), 1, aux_sym__repeat_newline, - ACTIONS(4410), 2, + ACTIONS(4495), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4499), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4412), 2, + ACTIONS(4503), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4414), 2, + ACTIONS(4505), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4462), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4470), 2, + ACTIONS(4509), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4466), 4, + ACTIONS(4501), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4476), 4, + ACTIONS(4513), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2720), 7, + ACTIONS(2788), 7, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -187507,7 +189538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4474), 8, + ACTIONS(4511), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187516,43 +189547,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [55153] = 14, + [55988] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4492), 1, + ACTIONS(4440), 1, anon_sym_DASH2, - ACTIONS(4502), 1, + ACTIONS(4448), 1, anon_sym_PLUS2, - STATE(527), 1, + STATE(485), 1, aux_sym__repeat_newline, - STATE(2052), 1, + STATE(2073), 1, sym_comment, - ACTIONS(4490), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4494), 2, + ACTIONS(4442), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4498), 2, + ACTIONS(4444), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4500), 2, + ACTIONS(4446), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4504), 2, + ACTIONS(4527), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4531), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4496), 4, + ACTIONS(4529), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4508), 4, + ACTIONS(4537), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2724), 8, + ACTIONS(2794), 8, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -187561,7 +189592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4506), 8, + ACTIONS(4535), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187570,54 +189601,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [55221] = 16, + [56056] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2804), 1, + ACTIONS(2874), 1, sym__newline, - ACTIONS(4464), 1, + ACTIONS(4497), 1, anon_sym_DASH2, - ACTIONS(4468), 1, + ACTIONS(4507), 1, anon_sym_PLUS2, - ACTIONS(4478), 1, + ACTIONS(4515), 1, anon_sym_bit_DASHand2, - STATE(2053), 1, + STATE(2074), 1, sym_comment, - STATE(2080), 1, + STATE(2105), 1, aux_sym__repeat_newline, - ACTIONS(4410), 2, + ACTIONS(4495), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4499), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4412), 2, + ACTIONS(4503), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4414), 2, + ACTIONS(4505), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4462), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4470), 2, + ACTIONS(4509), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4466), 4, + ACTIONS(4501), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4476), 4, + ACTIONS(4513), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2720), 6, + ACTIONS(2788), 6, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4474), 8, + ACTIONS(4511), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187626,45 +189657,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [55293] = 15, + [56128] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4492), 1, + ACTIONS(4440), 1, anon_sym_DASH2, - ACTIONS(4502), 1, + ACTIONS(4448), 1, anon_sym_PLUS2, - ACTIONS(4510), 1, + ACTIONS(4539), 1, anon_sym_bit_DASHand2, - STATE(527), 1, + STATE(485), 1, aux_sym__repeat_newline, - STATE(2054), 1, + STATE(2075), 1, sym_comment, - ACTIONS(4490), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4494), 2, + ACTIONS(4442), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4498), 2, + ACTIONS(4444), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4500), 2, + ACTIONS(4446), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4504), 2, + ACTIONS(4527), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4531), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4496), 4, + ACTIONS(4529), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4508), 4, + ACTIONS(4537), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2724), 7, + ACTIONS(2794), 7, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -187672,7 +189703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4506), 8, + ACTIONS(4535), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187681,55 +189712,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [55363] = 17, + [56198] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2804), 1, + ACTIONS(2874), 1, sym__newline, - ACTIONS(4464), 1, + ACTIONS(4497), 1, anon_sym_DASH2, - ACTIONS(4468), 1, + ACTIONS(4507), 1, anon_sym_PLUS2, - ACTIONS(4478), 1, + ACTIONS(4515), 1, anon_sym_bit_DASHand2, - ACTIONS(4480), 1, + ACTIONS(4517), 1, anon_sym_bit_DASHxor2, - STATE(2055), 1, + STATE(2076), 1, sym_comment, - STATE(2081), 1, + STATE(2106), 1, aux_sym__repeat_newline, - ACTIONS(4410), 2, + ACTIONS(4495), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4499), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4412), 2, + ACTIONS(4503), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4414), 2, + ACTIONS(4505), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4462), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4470), 2, + ACTIONS(4509), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4466), 4, + ACTIONS(4501), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4476), 4, + ACTIONS(4513), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2720), 5, + ACTIONS(2788), 5, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - ACTIONS(4474), 8, + ACTIONS(4511), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187738,54 +189769,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [55437] = 16, + [56272] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4492), 1, + ACTIONS(4440), 1, anon_sym_DASH2, - ACTIONS(4502), 1, + ACTIONS(4448), 1, anon_sym_PLUS2, - ACTIONS(4510), 1, + ACTIONS(4539), 1, anon_sym_bit_DASHand2, - ACTIONS(4512), 1, + ACTIONS(4541), 1, anon_sym_bit_DASHxor2, - STATE(527), 1, + STATE(485), 1, aux_sym__repeat_newline, - STATE(2056), 1, + STATE(2077), 1, sym_comment, - ACTIONS(4490), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4494), 2, + ACTIONS(4442), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4498), 2, + ACTIONS(4444), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4500), 2, + ACTIONS(4446), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4504), 2, + ACTIONS(4527), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4531), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4496), 4, + ACTIONS(4529), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4508), 4, + ACTIONS(4537), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2724), 6, + ACTIONS(2794), 6, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - ACTIONS(4506), 8, + ACTIONS(4535), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187794,40 +189825,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [55509] = 13, + [56344] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2831), 1, + ACTIONS(2887), 1, sym__newline, - ACTIONS(4464), 1, + ACTIONS(4497), 1, anon_sym_DASH2, - ACTIONS(4468), 1, + ACTIONS(4507), 1, anon_sym_PLUS2, - STATE(2057), 1, + STATE(2078), 1, sym_comment, - STATE(2083), 1, + STATE(2108), 1, aux_sym__repeat_newline, - ACTIONS(4410), 2, + ACTIONS(4495), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4499), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4412), 2, + ACTIONS(4503), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4414), 2, + ACTIONS(4505), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4462), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4470), 2, + ACTIONS(4509), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4466), 4, + ACTIONS(4501), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2730), 19, + ACTIONS(2776), 19, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -187847,35 +189878,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [55575] = 12, + [56410] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2831), 1, + ACTIONS(2887), 1, sym__newline, - ACTIONS(4464), 1, + ACTIONS(4497), 1, anon_sym_DASH2, - ACTIONS(4468), 1, + ACTIONS(4507), 1, anon_sym_PLUS2, - STATE(2058), 1, + STATE(2079), 1, sym_comment, - STATE(2141), 1, + STATE(2110), 1, aux_sym__repeat_newline, - ACTIONS(2732), 2, + ACTIONS(2778), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4410), 2, + ACTIONS(4499), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4412), 2, + ACTIONS(4503), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4414), 2, + ACTIONS(4505), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4470), 2, + ACTIONS(4509), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2730), 23, + ACTIONS(2776), 23, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -187899,29 +189930,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [55639] = 9, + [56474] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2831), 1, + ACTIONS(2887), 1, sym__newline, - STATE(2059), 1, + STATE(2080), 1, sym_comment, - STATE(2087), 1, + STATE(2112), 1, aux_sym__repeat_newline, - ACTIONS(4410), 2, + ACTIONS(4499), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4412), 2, + ACTIONS(4503), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4414), 2, + ACTIONS(4505), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2732), 3, + ACTIONS(2778), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2730), 26, + ACTIONS(2776), 26, anon_sym_in, anon_sym_DASH2, anon_sym_LBRACE, @@ -187948,25 +189979,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [55697] = 7, + [56532] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2831), 1, + ACTIONS(2887), 1, sym__newline, - STATE(2060), 1, + STATE(2081), 1, sym_comment, - STATE(2089), 1, + STATE(2115), 1, aux_sym__repeat_newline, - ACTIONS(4412), 2, + ACTIONS(4503), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2732), 5, + ACTIONS(2778), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2730), 28, + ACTIONS(2776), 28, anon_sym_in, anon_sym_DASH2, anon_sym_LBRACE, @@ -187995,56 +190026,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [55751] = 18, + [56586] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2831), 1, + ACTIONS(2887), 1, sym__newline, - ACTIONS(4464), 1, + ACTIONS(4497), 1, anon_sym_DASH2, - ACTIONS(4468), 1, + ACTIONS(4507), 1, anon_sym_PLUS2, - ACTIONS(4478), 1, + ACTIONS(4515), 1, anon_sym_bit_DASHand2, - ACTIONS(4480), 1, + ACTIONS(4517), 1, anon_sym_bit_DASHxor2, - ACTIONS(4482), 1, + ACTIONS(4519), 1, anon_sym_bit_DASHor2, - STATE(2061), 1, + STATE(2082), 1, sym_comment, - STATE(2091), 1, + STATE(2117), 1, aux_sym__repeat_newline, - ACTIONS(4410), 2, + ACTIONS(4495), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4499), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4412), 2, + ACTIONS(4503), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4414), 2, + ACTIONS(4505), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4462), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4470), 2, + ACTIONS(4509), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2730), 4, + ACTIONS(2776), 4, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4466), 4, + ACTIONS(4501), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4476), 4, + ACTIONS(4513), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4474), 8, + ACTIONS(4511), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -188053,57 +190084,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [55827] = 19, + [56662] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4343), 1, + sym__entry_separator, + STATE(1913), 1, + aux_sym__types_body_repeat2, + STATE(2083), 1, + sym_comment, + ACTIONS(4339), 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, + [56712] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2831), 1, + ACTIONS(2887), 1, sym__newline, - ACTIONS(4464), 1, + ACTIONS(4497), 1, anon_sym_DASH2, - ACTIONS(4468), 1, + ACTIONS(4507), 1, anon_sym_PLUS2, - ACTIONS(4478), 1, + ACTIONS(4515), 1, anon_sym_bit_DASHand2, - ACTIONS(4480), 1, + ACTIONS(4517), 1, anon_sym_bit_DASHxor2, - ACTIONS(4482), 1, + ACTIONS(4519), 1, anon_sym_bit_DASHor2, - ACTIONS(4484), 1, + ACTIONS(4521), 1, anon_sym_and2, - STATE(2062), 1, + STATE(2084), 1, sym_comment, - STATE(2093), 1, + STATE(2119), 1, aux_sym__repeat_newline, - ACTIONS(4410), 2, + ACTIONS(4495), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4499), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4412), 2, + ACTIONS(4503), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4414), 2, + ACTIONS(4505), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4462), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4470), 2, + ACTIONS(4509), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2730), 3, + ACTIONS(2776), 3, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(4466), 4, + ACTIONS(4501), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4476), 4, + ACTIONS(4513), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4474), 8, + ACTIONS(4511), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -188112,59 +190188,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [55905] = 20, + [56790] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2907), 1, + ACTIONS(2622), 1, + sym__unquoted_pattern, + STATE(2085), 1, + sym_comment, + ACTIONS(2618), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2616), 33, + 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_finally, + 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, + [56840] = 20, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2922), 1, sym__newline, - ACTIONS(4464), 1, + ACTIONS(4497), 1, anon_sym_DASH2, - ACTIONS(4468), 1, + ACTIONS(4507), 1, anon_sym_PLUS2, - ACTIONS(4478), 1, + ACTIONS(4515), 1, anon_sym_bit_DASHand2, - ACTIONS(4480), 1, + ACTIONS(4517), 1, anon_sym_bit_DASHxor2, - ACTIONS(4482), 1, + ACTIONS(4519), 1, anon_sym_bit_DASHor2, - ACTIONS(4484), 1, + ACTIONS(4521), 1, anon_sym_and2, - ACTIONS(4486), 1, + ACTIONS(4523), 1, anon_sym_xor2, - STATE(2063), 1, + STATE(2086), 1, sym_comment, - STATE(2095), 1, + STATE(2122), 1, aux_sym__repeat_newline, - ACTIONS(2730), 2, + ACTIONS(2776), 2, anon_sym_LBRACE, anon_sym_or2, - ACTIONS(4410), 2, + ACTIONS(4495), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4499), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4412), 2, + ACTIONS(4503), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4414), 2, + ACTIONS(4505), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4462), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4470), 2, + ACTIONS(4509), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4466), 4, + ACTIONS(4501), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4476), 4, + ACTIONS(4513), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4474), 8, + ACTIONS(4511), 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, + [56920] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1828), 1, + sym__unquoted_pattern, + STATE(2087), 1, + sym_comment, + ACTIONS(847), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(968), 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, @@ -188172,40 +190321,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [55985] = 14, + anon_sym_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, + [56970] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2831), 1, + ACTIONS(2887), 1, sym__newline, - ACTIONS(4464), 1, + ACTIONS(4497), 1, anon_sym_DASH2, - ACTIONS(4468), 1, + ACTIONS(4507), 1, anon_sym_PLUS2, - STATE(2064), 1, + STATE(2088), 1, sym_comment, - STATE(2097), 1, + STATE(2124), 1, aux_sym__repeat_newline, - ACTIONS(4410), 2, + ACTIONS(4495), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4499), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4412), 2, + ACTIONS(4503), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4414), 2, + ACTIONS(4505), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4462), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4470), 2, + ACTIONS(4509), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4466), 4, + ACTIONS(4501), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4474), 8, + ACTIONS(4511), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -188214,7 +190380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2730), 11, + ACTIONS(2776), 11, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -188226,32 +190392,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [56053] = 11, + [57038] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2831), 1, + ACTIONS(2887), 1, sym__newline, - ACTIONS(4464), 1, + ACTIONS(4497), 1, anon_sym_DASH2, - ACTIONS(4468), 1, + ACTIONS(4507), 1, anon_sym_PLUS2, - STATE(2065), 1, + STATE(2089), 1, sym_comment, - STATE(2099), 1, + STATE(2126), 1, aux_sym__repeat_newline, - ACTIONS(2732), 2, + ACTIONS(2778), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4410), 2, + ACTIONS(4499), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4412), 2, + ACTIONS(4503), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4414), 2, + ACTIONS(4505), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2730), 25, + ACTIONS(2776), 25, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -188277,45 +190443,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [56115] = 15, + [57100] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2831), 1, + ACTIONS(2887), 1, sym__newline, - ACTIONS(4464), 1, + ACTIONS(4497), 1, anon_sym_DASH2, - ACTIONS(4468), 1, + ACTIONS(4507), 1, anon_sym_PLUS2, - STATE(2066), 1, + STATE(2090), 1, sym_comment, - STATE(2101), 1, + STATE(2129), 1, aux_sym__repeat_newline, - ACTIONS(4410), 2, + ACTIONS(4495), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4499), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4412), 2, + ACTIONS(4503), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4414), 2, + ACTIONS(4505), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4462), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4470), 2, + ACTIONS(4509), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4466), 4, + ACTIONS(4501), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4476), 4, + ACTIONS(4513), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2730), 7, + ACTIONS(2776), 7, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -188323,7 +190489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4474), 8, + ACTIONS(4511), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -188332,54 +190498,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [56185] = 16, + [57170] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2831), 1, + ACTIONS(2887), 1, sym__newline, - ACTIONS(4464), 1, + ACTIONS(4497), 1, anon_sym_DASH2, - ACTIONS(4468), 1, + ACTIONS(4507), 1, anon_sym_PLUS2, - ACTIONS(4478), 1, + ACTIONS(4515), 1, anon_sym_bit_DASHand2, - STATE(2067), 1, + STATE(2091), 1, sym_comment, - STATE(2103), 1, + STATE(2131), 1, aux_sym__repeat_newline, - ACTIONS(4410), 2, + ACTIONS(4495), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4499), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4412), 2, + ACTIONS(4503), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4414), 2, + ACTIONS(4505), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4462), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4470), 2, + ACTIONS(4509), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4466), 4, + ACTIONS(4501), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4476), 4, + ACTIONS(4513), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2730), 6, + ACTIONS(2776), 6, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4474), 8, + ACTIONS(4511), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -188388,55 +190554,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [56257] = 17, + [57242] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2831), 1, + ACTIONS(2887), 1, sym__newline, - ACTIONS(4464), 1, + ACTIONS(4497), 1, anon_sym_DASH2, - ACTIONS(4468), 1, + ACTIONS(4507), 1, anon_sym_PLUS2, - ACTIONS(4478), 1, + ACTIONS(4515), 1, anon_sym_bit_DASHand2, - ACTIONS(4480), 1, + ACTIONS(4517), 1, anon_sym_bit_DASHxor2, - STATE(2068), 1, + STATE(2092), 1, sym_comment, - STATE(2105), 1, + STATE(2133), 1, aux_sym__repeat_newline, - ACTIONS(4410), 2, + ACTIONS(4495), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4499), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4412), 2, + ACTIONS(4503), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4414), 2, + ACTIONS(4505), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4462), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4470), 2, + ACTIONS(4509), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4466), 4, + ACTIONS(4501), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4476), 4, + ACTIONS(4513), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2730), 5, + ACTIONS(2776), 5, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - ACTIONS(4474), 8, + ACTIONS(4511), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -188445,26 +190611,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [56331] = 7, - ACTIONS(103), 1, + [57316] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4420), 1, - sym__entry_separator, - ACTIONS(4422), 1, - sym_raw_string_begin, - ACTIONS(4520), 1, - anon_sym_RBRACK, - STATE(2069), 1, + ACTIONS(2674), 1, + sym__unquoted_pattern, + STATE(2093), 1, sym_comment, - STATE(2123), 1, - aux_sym__types_body_repeat2, - ACTIONS(4416), 33, + ACTIONS(1615), 3, anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1699), 33, + 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, @@ -188477,14 +190640,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, 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, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -188492,38 +190656,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [56385] = 12, + [57366] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4492), 1, + ACTIONS(4440), 1, anon_sym_DASH2, - ACTIONS(4502), 1, + ACTIONS(4448), 1, anon_sym_PLUS2, - STATE(527), 1, + STATE(485), 1, aux_sym__repeat_newline, - STATE(2070), 1, + STATE(2094), 1, sym_comment, - ACTIONS(4490), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4494), 2, + ACTIONS(4442), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4498), 2, + ACTIONS(4444), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4500), 2, + ACTIONS(4446), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4504), 2, + ACTIONS(4527), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4531), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4496), 4, + ACTIONS(4529), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2738), 20, + ACTIONS(2784), 20, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -188544,33 +190708,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [56449] = 11, + [57430] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4492), 1, + ACTIONS(4440), 1, anon_sym_DASH2, - ACTIONS(4502), 1, + ACTIONS(4448), 1, anon_sym_PLUS2, - STATE(527), 1, + STATE(485), 1, aux_sym__repeat_newline, - STATE(2071), 1, + STATE(2095), 1, sym_comment, - ACTIONS(2740), 2, + ACTIONS(2786), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4494), 2, + ACTIONS(4442), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4498), 2, + ACTIONS(4444), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4500), 2, + ACTIONS(4446), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4504), 2, + ACTIONS(4531), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2738), 24, + ACTIONS(2784), 24, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -188595,27 +190759,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [56511] = 8, + [57492] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(527), 1, + STATE(485), 1, aux_sym__repeat_newline, - STATE(2072), 1, + STATE(2096), 1, sym_comment, - ACTIONS(4494), 2, + ACTIONS(4442), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4498), 2, + ACTIONS(4444), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4500), 2, + ACTIONS(4446), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2740), 3, + ACTIONS(2786), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2738), 27, + ACTIONS(2784), 27, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -188643,23 +190807,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [56567] = 6, + [57548] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(527), 1, + STATE(485), 1, aux_sym__repeat_newline, - STATE(2073), 1, + STATE(2097), 1, sym_comment, - ACTIONS(4498), 2, + ACTIONS(4444), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2740), 5, + ACTIONS(2786), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2738), 29, + ACTIONS(2784), 29, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -188689,55 +190853,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [56619] = 17, + [57600] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4492), 1, + ACTIONS(4440), 1, anon_sym_DASH2, - ACTIONS(4502), 1, + ACTIONS(4448), 1, anon_sym_PLUS2, - ACTIONS(4510), 1, + ACTIONS(4539), 1, anon_sym_bit_DASHand2, - ACTIONS(4512), 1, + ACTIONS(4541), 1, anon_sym_bit_DASHxor2, - ACTIONS(4514), 1, + ACTIONS(4543), 1, anon_sym_bit_DASHor2, - STATE(527), 1, + STATE(485), 1, aux_sym__repeat_newline, - STATE(2074), 1, + STATE(2098), 1, sym_comment, - ACTIONS(4490), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4494), 2, + ACTIONS(4442), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4498), 2, + ACTIONS(4444), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4500), 2, + ACTIONS(4446), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4504), 2, + ACTIONS(4527), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4531), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4496), 4, + ACTIONS(4529), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4508), 4, + ACTIONS(4537), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2738), 5, + ACTIONS(2784), 5, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4506), 8, + ACTIONS(4535), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -188746,56 +190910,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [56693] = 18, + [57674] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(888), 1, + aux_sym_cmd_identifier_token6, + ACTIONS(4549), 1, + sym_filesize_unit, + ACTIONS(4551), 1, + sym_duration_unit, + STATE(2099), 1, + sym_comment, + ACTIONS(886), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(884), 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, + [57728] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4492), 1, + ACTIONS(4440), 1, anon_sym_DASH2, - ACTIONS(4502), 1, + ACTIONS(4448), 1, anon_sym_PLUS2, - ACTIONS(4510), 1, + ACTIONS(4539), 1, anon_sym_bit_DASHand2, - ACTIONS(4512), 1, + ACTIONS(4541), 1, anon_sym_bit_DASHxor2, - ACTIONS(4514), 1, + ACTIONS(4543), 1, anon_sym_bit_DASHor2, - ACTIONS(4516), 1, + ACTIONS(4545), 1, anon_sym_and2, - STATE(527), 1, + STATE(485), 1, aux_sym__repeat_newline, - STATE(2075), 1, + STATE(2100), 1, sym_comment, - ACTIONS(4490), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4494), 2, + ACTIONS(4442), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4498), 2, + ACTIONS(4444), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4500), 2, + ACTIONS(4446), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4504), 2, + ACTIONS(4527), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4531), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2738), 4, + ACTIONS(2784), 4, sym__newline, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(4496), 4, + ACTIONS(4529), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4508), 4, + ACTIONS(4537), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4506), 8, + ACTIONS(4535), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -188804,57 +191015,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [56769] = 19, + [57804] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4492), 1, + ACTIONS(4440), 1, anon_sym_DASH2, - ACTIONS(4502), 1, + ACTIONS(4448), 1, anon_sym_PLUS2, - ACTIONS(4510), 1, + ACTIONS(4539), 1, anon_sym_bit_DASHand2, - ACTIONS(4512), 1, + ACTIONS(4541), 1, anon_sym_bit_DASHxor2, - ACTIONS(4514), 1, + ACTIONS(4543), 1, anon_sym_bit_DASHor2, - ACTIONS(4516), 1, + ACTIONS(4545), 1, anon_sym_and2, - ACTIONS(4518), 1, + ACTIONS(4547), 1, anon_sym_xor2, - STATE(527), 1, + STATE(485), 1, aux_sym__repeat_newline, - STATE(2076), 1, + STATE(2101), 1, sym_comment, - ACTIONS(4490), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4494), 2, + ACTIONS(4442), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4498), 2, + ACTIONS(4444), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4500), 2, + ACTIONS(4446), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4504), 2, + ACTIONS(4527), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4531), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2738), 3, + ACTIONS(2784), 3, sym__newline, anon_sym_LBRACE, anon_sym_or2, - ACTIONS(4496), 4, + ACTIONS(4529), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4508), 4, + ACTIONS(4537), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4506), 8, + ACTIONS(4535), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -188863,38 +191074,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [56847] = 13, + [57882] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4492), 1, + ACTIONS(4440), 1, anon_sym_DASH2, - ACTIONS(4502), 1, + ACTIONS(4448), 1, anon_sym_PLUS2, - STATE(527), 1, + STATE(485), 1, aux_sym__repeat_newline, - STATE(2077), 1, + STATE(2102), 1, sym_comment, - ACTIONS(4490), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4494), 2, + ACTIONS(4442), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4498), 2, + ACTIONS(4444), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4500), 2, + ACTIONS(4446), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4504), 2, + ACTIONS(4527), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4531), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4496), 4, + ACTIONS(4529), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4506), 8, + ACTIONS(4535), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -188903,7 +191114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2738), 12, + ACTIONS(2784), 12, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -188916,93 +191127,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [56913] = 10, + [57948] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2103), 1, + sym_comment, + ACTIONS(863), 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(865), 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, + [57996] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4492), 1, + ACTIONS(4440), 1, anon_sym_DASH2, - ACTIONS(4502), 1, + ACTIONS(4448), 1, anon_sym_PLUS2, - STATE(527), 1, + STATE(485), 1, aux_sym__repeat_newline, - STATE(2078), 1, + STATE(2104), 1, sym_comment, - ACTIONS(2740), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4494), 2, + ACTIONS(4442), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4498), 2, + ACTIONS(4444), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4500), 2, + ACTIONS(4446), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2738), 26, - 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_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [56973] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4492), 1, - anon_sym_DASH2, - ACTIONS(4502), 1, - anon_sym_PLUS2, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(2079), 1, - sym_comment, - ACTIONS(4490), 2, + ACTIONS(4527), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4494), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4498), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4500), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4504), 2, + ACTIONS(4531), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4496), 4, + ACTIONS(4529), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4508), 4, + ACTIONS(4537), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2738), 8, + ACTIONS(2784), 8, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -189011,7 +191216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4506), 8, + ACTIONS(4535), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -189020,45 +191225,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [57041] = 15, + [58064] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4492), 1, + ACTIONS(4440), 1, anon_sym_DASH2, - ACTIONS(4502), 1, + ACTIONS(4448), 1, anon_sym_PLUS2, - ACTIONS(4510), 1, + ACTIONS(4539), 1, anon_sym_bit_DASHand2, - STATE(527), 1, + STATE(485), 1, aux_sym__repeat_newline, - STATE(2080), 1, + STATE(2105), 1, sym_comment, - ACTIONS(4490), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4494), 2, + ACTIONS(4442), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4498), 2, + ACTIONS(4444), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4500), 2, + ACTIONS(4446), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4504), 2, + ACTIONS(4527), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4531), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4496), 4, + ACTIONS(4529), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4508), 4, + ACTIONS(4537), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2738), 7, + ACTIONS(2784), 7, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -189066,7 +191271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4506), 8, + ACTIONS(4535), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -189075,54 +191280,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [57111] = 16, + [58134] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4492), 1, + ACTIONS(4440), 1, anon_sym_DASH2, - ACTIONS(4502), 1, + ACTIONS(4448), 1, anon_sym_PLUS2, - ACTIONS(4510), 1, + ACTIONS(4539), 1, anon_sym_bit_DASHand2, - ACTIONS(4512), 1, + ACTIONS(4541), 1, anon_sym_bit_DASHxor2, - STATE(527), 1, + STATE(485), 1, aux_sym__repeat_newline, - STATE(2081), 1, + STATE(2106), 1, sym_comment, - ACTIONS(4490), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4494), 2, + ACTIONS(4442), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4498), 2, + ACTIONS(4444), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4500), 2, + ACTIONS(4446), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4504), 2, + ACTIONS(4527), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4531), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4496), 4, + ACTIONS(4529), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4508), 4, + ACTIONS(4537), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2738), 6, + ACTIONS(2784), 6, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - ACTIONS(4506), 8, + ACTIONS(4535), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -189131,40 +191336,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [57183] = 13, + [58206] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2941), 1, + ACTIONS(2869), 1, sym__newline, - ACTIONS(4464), 1, + ACTIONS(4497), 1, anon_sym_DASH2, - ACTIONS(4468), 1, + ACTIONS(4507), 1, anon_sym_PLUS2, - STATE(2082), 1, - sym_comment, STATE(2107), 1, + sym_comment, + STATE(2136), 1, aux_sym__repeat_newline, - ACTIONS(4410), 2, + ACTIONS(4495), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4499), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4412), 2, + ACTIONS(4503), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4414), 2, + ACTIONS(4505), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4462), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4470), 2, + ACTIONS(4509), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4466), 4, + ACTIONS(4501), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2746), 19, + ACTIONS(2806), 19, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -189184,38 +191389,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [57249] = 12, + [58272] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4492), 1, + ACTIONS(4440), 1, anon_sym_DASH2, - ACTIONS(4502), 1, + ACTIONS(4448), 1, anon_sym_PLUS2, - STATE(527), 1, + STATE(485), 1, aux_sym__repeat_newline, - STATE(2083), 1, + STATE(2108), 1, sym_comment, - ACTIONS(4490), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4494), 2, + ACTIONS(4442), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4498), 2, + ACTIONS(4444), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4500), 2, + ACTIONS(4446), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4504), 2, + ACTIONS(4527), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4531), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4496), 4, + ACTIONS(4529), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2750), 20, + ACTIONS(2810), 20, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -189236,35 +191441,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [57313] = 12, + [58336] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2941), 1, + ACTIONS(2869), 1, sym__newline, - ACTIONS(4464), 1, + ACTIONS(4497), 1, anon_sym_DASH2, - ACTIONS(4468), 1, + ACTIONS(4507), 1, anon_sym_PLUS2, - STATE(2084), 1, + STATE(2109), 1, sym_comment, - STATE(2108), 1, + STATE(2137), 1, aux_sym__repeat_newline, - ACTIONS(2748), 2, + ACTIONS(2808), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4410), 2, + ACTIONS(4499), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4412), 2, + ACTIONS(4503), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4414), 2, + ACTIONS(4505), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4470), 2, + ACTIONS(4509), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2746), 23, + ACTIONS(2806), 23, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -189288,25 +191493,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [57377] = 6, + [58400] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1635), 1, - sym__unquoted_pattern, - ACTIONS(1960), 1, - anon_sym_LPAREN2, - STATE(2085), 1, + ACTIONS(4440), 1, + anon_sym_DASH2, + ACTIONS(4448), 1, + anon_sym_PLUS2, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(2110), 1, sym_comment, - ACTIONS(1958), 5, + ACTIONS(2812), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(4442), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1956), 30, + ACTIONS(4444), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4446), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4531), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2810), 24, anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, + sym__newline, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -189325,38 +191541,32 @@ 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, - [57429] = 9, + [58462] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2941), 1, + ACTIONS(2869), 1, sym__newline, - STATE(2086), 1, + STATE(2111), 1, sym_comment, - STATE(2109), 1, + STATE(2138), 1, aux_sym__repeat_newline, - ACTIONS(4410), 2, + ACTIONS(4499), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4412), 2, + ACTIONS(4503), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4414), 2, + ACTIONS(4505), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2748), 3, + ACTIONS(2808), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2746), 26, + ACTIONS(2806), 26, anon_sym_in, anon_sym_DASH2, anon_sym_LBRACE, @@ -189383,27 +191593,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [57487] = 8, + [58520] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(527), 1, + STATE(485), 1, aux_sym__repeat_newline, - STATE(2087), 1, + STATE(2112), 1, sym_comment, - ACTIONS(4494), 2, + ACTIONS(4442), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4498), 2, + ACTIONS(4444), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4500), 2, + ACTIONS(4446), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2752), 3, + ACTIONS(2812), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2750), 27, + ACTIONS(2810), 27, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -189431,25 +191641,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [57543] = 7, + [58576] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4557), 1, + aux_sym_cmd_identifier_token6, + ACTIONS(4559), 1, + sym_filesize_unit, + ACTIONS(4561), 1, + sym_duration_unit, + STATE(2113), 1, + sym_comment, + ACTIONS(4555), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4553), 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, + [58630] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2941), 1, + ACTIONS(2869), 1, sym__newline, - STATE(2088), 1, + STATE(2114), 1, sym_comment, - STATE(2110), 1, + STATE(2139), 1, aux_sym__repeat_newline, - ACTIONS(4412), 2, + ACTIONS(4503), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2748), 5, + ACTIONS(2808), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2746), 28, + ACTIONS(2806), 28, anon_sym_in, anon_sym_DASH2, anon_sym_LBRACE, @@ -189478,23 +191735,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [57597] = 6, + [58684] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(527), 1, + STATE(485), 1, aux_sym__repeat_newline, - STATE(2089), 1, + STATE(2115), 1, sym_comment, - ACTIONS(4498), 2, + ACTIONS(4444), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2752), 5, + ACTIONS(2812), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2750), 29, + ACTIONS(2810), 29, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -189524,56 +191781,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [57649] = 18, + [58736] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2941), 1, + ACTIONS(2869), 1, sym__newline, - ACTIONS(4464), 1, + ACTIONS(4497), 1, anon_sym_DASH2, - ACTIONS(4468), 1, + ACTIONS(4507), 1, anon_sym_PLUS2, - ACTIONS(4478), 1, + ACTIONS(4515), 1, anon_sym_bit_DASHand2, - ACTIONS(4480), 1, + ACTIONS(4517), 1, anon_sym_bit_DASHxor2, - ACTIONS(4482), 1, + ACTIONS(4519), 1, anon_sym_bit_DASHor2, - STATE(2090), 1, + STATE(2116), 1, sym_comment, - STATE(2111), 1, + STATE(2140), 1, aux_sym__repeat_newline, - ACTIONS(4410), 2, + ACTIONS(4495), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4499), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4412), 2, + ACTIONS(4503), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4414), 2, + ACTIONS(4505), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4462), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4470), 2, + ACTIONS(4509), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2746), 4, + ACTIONS(2806), 4, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4466), 4, + ACTIONS(4501), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4476), 4, + ACTIONS(4513), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4474), 8, + ACTIONS(4511), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -189582,55 +191839,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [57725] = 17, + [58812] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4492), 1, + ACTIONS(4440), 1, anon_sym_DASH2, - ACTIONS(4502), 1, + ACTIONS(4448), 1, anon_sym_PLUS2, - ACTIONS(4510), 1, + ACTIONS(4539), 1, anon_sym_bit_DASHand2, - ACTIONS(4512), 1, + ACTIONS(4541), 1, anon_sym_bit_DASHxor2, - ACTIONS(4514), 1, + ACTIONS(4543), 1, anon_sym_bit_DASHor2, - STATE(527), 1, + STATE(485), 1, aux_sym__repeat_newline, - STATE(2091), 1, + STATE(2117), 1, sym_comment, - ACTIONS(4490), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4494), 2, + ACTIONS(4442), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4498), 2, + ACTIONS(4444), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4500), 2, + ACTIONS(4446), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4504), 2, + ACTIONS(4527), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4531), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4496), 4, + ACTIONS(4529), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4508), 4, + ACTIONS(4537), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2750), 5, + ACTIONS(2810), 5, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4506), 8, + ACTIONS(4535), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -189639,57 +191896,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [57799] = 19, + [58886] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2941), 1, + ACTIONS(2869), 1, sym__newline, - ACTIONS(4464), 1, + ACTIONS(4497), 1, anon_sym_DASH2, - ACTIONS(4468), 1, + ACTIONS(4507), 1, anon_sym_PLUS2, - ACTIONS(4478), 1, + ACTIONS(4515), 1, anon_sym_bit_DASHand2, - ACTIONS(4480), 1, + ACTIONS(4517), 1, anon_sym_bit_DASHxor2, - ACTIONS(4482), 1, + ACTIONS(4519), 1, anon_sym_bit_DASHor2, - ACTIONS(4484), 1, + ACTIONS(4521), 1, anon_sym_and2, - STATE(2092), 1, + STATE(2118), 1, sym_comment, - STATE(2112), 1, + STATE(2141), 1, aux_sym__repeat_newline, - ACTIONS(4410), 2, + ACTIONS(4495), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4499), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4412), 2, + ACTIONS(4503), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4414), 2, + ACTIONS(4505), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4462), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4470), 2, + ACTIONS(4509), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2746), 3, + ACTIONS(2806), 3, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(4466), 4, + ACTIONS(4501), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4476), 4, + ACTIONS(4513), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4474), 8, + ACTIONS(4511), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -189698,56 +191955,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [57877] = 18, + [58964] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4492), 1, + ACTIONS(4440), 1, anon_sym_DASH2, - ACTIONS(4502), 1, + ACTIONS(4448), 1, anon_sym_PLUS2, - ACTIONS(4510), 1, + ACTIONS(4539), 1, anon_sym_bit_DASHand2, - ACTIONS(4512), 1, + ACTIONS(4541), 1, anon_sym_bit_DASHxor2, - ACTIONS(4514), 1, + ACTIONS(4543), 1, anon_sym_bit_DASHor2, - ACTIONS(4516), 1, + ACTIONS(4545), 1, anon_sym_and2, - STATE(527), 1, + STATE(485), 1, aux_sym__repeat_newline, - STATE(2093), 1, + STATE(2119), 1, sym_comment, - ACTIONS(4490), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4494), 2, + ACTIONS(4442), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4498), 2, + ACTIONS(4444), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4500), 2, + ACTIONS(4446), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4504), 2, + ACTIONS(4527), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4531), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2750), 4, + ACTIONS(2810), 4, sym__newline, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(4496), 4, + ACTIONS(4529), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4508), 4, + ACTIONS(4537), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4506), 8, + ACTIONS(4535), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -189756,58 +192013,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [57953] = 20, + [59040] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4567), 1, + aux_sym_cmd_identifier_token6, + ACTIONS(4569), 1, + sym_filesize_unit, + ACTIONS(4571), 1, + sym_duration_unit, + STATE(2120), 1, + sym_comment, + ACTIONS(4565), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4563), 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, + [59094] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2907), 1, + ACTIONS(2922), 1, sym__newline, - ACTIONS(4464), 1, + ACTIONS(4497), 1, anon_sym_DASH2, - ACTIONS(4468), 1, + ACTIONS(4507), 1, anon_sym_PLUS2, - ACTIONS(4478), 1, + ACTIONS(4515), 1, anon_sym_bit_DASHand2, - ACTIONS(4480), 1, + ACTIONS(4517), 1, anon_sym_bit_DASHxor2, - ACTIONS(4482), 1, + ACTIONS(4519), 1, anon_sym_bit_DASHor2, - ACTIONS(4484), 1, + ACTIONS(4521), 1, anon_sym_and2, - ACTIONS(4486), 1, + ACTIONS(4523), 1, anon_sym_xor2, - STATE(2094), 1, + STATE(2121), 1, sym_comment, - STATE(2113), 1, + STATE(2142), 1, aux_sym__repeat_newline, - ACTIONS(2746), 2, + ACTIONS(2806), 2, anon_sym_LBRACE, anon_sym_or2, - ACTIONS(4410), 2, + ACTIONS(4495), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4499), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4412), 2, + ACTIONS(4503), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4414), 2, + ACTIONS(4505), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4462), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4470), 2, + ACTIONS(4509), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4466), 4, + ACTIONS(4501), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4476), 4, + ACTIONS(4513), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4474), 8, + ACTIONS(4511), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -189816,57 +192120,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [58033] = 19, + [59174] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4492), 1, + ACTIONS(4440), 1, anon_sym_DASH2, - ACTIONS(4502), 1, + ACTIONS(4448), 1, anon_sym_PLUS2, - ACTIONS(4510), 1, + ACTIONS(4539), 1, anon_sym_bit_DASHand2, - ACTIONS(4512), 1, + ACTIONS(4541), 1, anon_sym_bit_DASHxor2, - ACTIONS(4514), 1, + ACTIONS(4543), 1, anon_sym_bit_DASHor2, - ACTIONS(4516), 1, + ACTIONS(4545), 1, anon_sym_and2, - ACTIONS(4518), 1, + ACTIONS(4547), 1, anon_sym_xor2, - STATE(527), 1, + STATE(485), 1, aux_sym__repeat_newline, - STATE(2095), 1, + STATE(2122), 1, sym_comment, - ACTIONS(4490), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4494), 2, + ACTIONS(4442), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4498), 2, + ACTIONS(4444), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4500), 2, + ACTIONS(4446), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4504), 2, + ACTIONS(4527), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4531), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2750), 3, + ACTIONS(2810), 3, sym__newline, anon_sym_LBRACE, anon_sym_or2, - ACTIONS(4496), 4, + ACTIONS(4529), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4508), 4, + ACTIONS(4537), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4506), 8, + ACTIONS(4535), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -189875,40 +192179,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [58111] = 14, + [59252] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2941), 1, + ACTIONS(2869), 1, sym__newline, - ACTIONS(4464), 1, + ACTIONS(4497), 1, anon_sym_DASH2, - ACTIONS(4468), 1, + ACTIONS(4507), 1, anon_sym_PLUS2, - STATE(2096), 1, + STATE(2123), 1, sym_comment, - STATE(2114), 1, + STATE(2143), 1, aux_sym__repeat_newline, - ACTIONS(4410), 2, + ACTIONS(4495), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4499), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4412), 2, + ACTIONS(4503), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4414), 2, + ACTIONS(4505), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4462), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4470), 2, + ACTIONS(4509), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4466), 4, + ACTIONS(4501), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4474), 8, + ACTIONS(4511), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -189917,7 +192221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2746), 11, + ACTIONS(2806), 11, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -189929,38 +192233,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [58179] = 13, + [59320] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4492), 1, + ACTIONS(4440), 1, anon_sym_DASH2, - ACTIONS(4502), 1, + ACTIONS(4448), 1, anon_sym_PLUS2, - STATE(527), 1, + STATE(485), 1, aux_sym__repeat_newline, - STATE(2097), 1, + STATE(2124), 1, sym_comment, - ACTIONS(4490), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4494), 2, + ACTIONS(4442), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4498), 2, + ACTIONS(4444), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4500), 2, + ACTIONS(4446), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4504), 2, + ACTIONS(4527), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4531), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4496), 4, + ACTIONS(4529), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4506), 8, + ACTIONS(4535), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -189969,7 +192273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2750), 12, + ACTIONS(2810), 12, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -189982,32 +192286,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [58245] = 11, + [59386] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2941), 1, + ACTIONS(2869), 1, sym__newline, - ACTIONS(4464), 1, + ACTIONS(4497), 1, anon_sym_DASH2, - ACTIONS(4468), 1, + ACTIONS(4507), 1, anon_sym_PLUS2, - STATE(2098), 1, + STATE(2125), 1, sym_comment, - STATE(2115), 1, + STATE(2144), 1, aux_sym__repeat_newline, - ACTIONS(2748), 2, + ACTIONS(2808), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4410), 2, + ACTIONS(4499), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4412), 2, + ACTIONS(4503), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4414), 2, + ACTIONS(4505), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2746), 25, + ACTIONS(2806), 25, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -190033,30 +192337,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [58307] = 10, + [59448] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4492), 1, + ACTIONS(4440), 1, anon_sym_DASH2, - ACTIONS(4502), 1, + ACTIONS(4448), 1, anon_sym_PLUS2, - STATE(527), 1, + STATE(485), 1, aux_sym__repeat_newline, - STATE(2099), 1, + STATE(2126), 1, sym_comment, - ACTIONS(2752), 2, + ACTIONS(2812), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4494), 2, + ACTIONS(4442), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4498), 2, + ACTIONS(4444), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4500), 2, + ACTIONS(4446), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2750), 26, + ACTIONS(2810), 26, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -190083,45 +192387,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [58367] = 15, + [59508] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4577), 1, + aux_sym_cmd_identifier_token6, + ACTIONS(4579), 1, + sym_filesize_unit, + ACTIONS(4581), 1, + sym_duration_unit, + STATE(2127), 1, + sym_comment, + ACTIONS(4575), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4573), 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, + [59562] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2941), 1, + ACTIONS(2869), 1, sym__newline, - ACTIONS(4464), 1, + ACTIONS(4497), 1, anon_sym_DASH2, - ACTIONS(4468), 1, + ACTIONS(4507), 1, anon_sym_PLUS2, - STATE(2100), 1, + STATE(2128), 1, sym_comment, - STATE(2116), 1, + STATE(2145), 1, aux_sym__repeat_newline, - ACTIONS(4410), 2, + ACTIONS(4495), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4499), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4412), 2, + ACTIONS(4503), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4414), 2, + ACTIONS(4505), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4462), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4470), 2, + ACTIONS(4509), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4466), 4, + ACTIONS(4501), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4476), 4, + ACTIONS(4513), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2746), 7, + ACTIONS(2806), 7, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -190129,7 +192480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4474), 8, + ACTIONS(4511), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -190138,43 +192489,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [58437] = 14, + [59632] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4492), 1, + ACTIONS(4440), 1, anon_sym_DASH2, - ACTIONS(4502), 1, + ACTIONS(4448), 1, anon_sym_PLUS2, - STATE(527), 1, + STATE(485), 1, aux_sym__repeat_newline, - STATE(2101), 1, + STATE(2129), 1, sym_comment, - ACTIONS(4490), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4494), 2, + ACTIONS(4442), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4498), 2, + ACTIONS(4444), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4500), 2, + ACTIONS(4446), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4504), 2, + ACTIONS(4527), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4531), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4496), 4, + ACTIONS(4529), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4508), 4, + ACTIONS(4537), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2750), 8, + ACTIONS(2810), 8, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -190183,7 +192534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4506), 8, + ACTIONS(4535), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -190192,54 +192543,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [58505] = 16, + [59700] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2941), 1, + ACTIONS(2869), 1, sym__newline, - ACTIONS(4464), 1, + ACTIONS(4497), 1, anon_sym_DASH2, - ACTIONS(4468), 1, + ACTIONS(4507), 1, anon_sym_PLUS2, - ACTIONS(4478), 1, + ACTIONS(4515), 1, anon_sym_bit_DASHand2, - STATE(2102), 1, + STATE(2130), 1, sym_comment, - STATE(2117), 1, + STATE(2146), 1, aux_sym__repeat_newline, - ACTIONS(4410), 2, + ACTIONS(4495), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4499), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4412), 2, + ACTIONS(4503), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4414), 2, + ACTIONS(4505), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4462), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4470), 2, + ACTIONS(4509), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4466), 4, + ACTIONS(4501), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4476), 4, + ACTIONS(4513), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2746), 6, + ACTIONS(2806), 6, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4474), 8, + ACTIONS(4511), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -190248,45 +192599,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [58577] = 15, + [59772] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4492), 1, + ACTIONS(4440), 1, anon_sym_DASH2, - ACTIONS(4502), 1, + ACTIONS(4448), 1, anon_sym_PLUS2, - ACTIONS(4510), 1, + ACTIONS(4539), 1, anon_sym_bit_DASHand2, - STATE(527), 1, + STATE(485), 1, aux_sym__repeat_newline, - STATE(2103), 1, + STATE(2131), 1, sym_comment, - ACTIONS(4490), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4494), 2, + ACTIONS(4442), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4498), 2, + ACTIONS(4444), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4500), 2, + ACTIONS(4446), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4504), 2, + ACTIONS(4527), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4531), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4496), 4, + ACTIONS(4529), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4508), 4, + ACTIONS(4537), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2750), 7, + ACTIONS(2810), 7, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -190294,7 +192645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4506), 8, + ACTIONS(4535), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -190303,55 +192654,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [58647] = 17, + [59842] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2941), 1, + ACTIONS(2869), 1, sym__newline, - ACTIONS(4464), 1, + ACTIONS(4497), 1, anon_sym_DASH2, - ACTIONS(4468), 1, + ACTIONS(4507), 1, anon_sym_PLUS2, - ACTIONS(4478), 1, + ACTIONS(4515), 1, anon_sym_bit_DASHand2, - ACTIONS(4480), 1, + ACTIONS(4517), 1, anon_sym_bit_DASHxor2, - STATE(2104), 1, + STATE(2132), 1, sym_comment, - STATE(2118), 1, + STATE(2147), 1, aux_sym__repeat_newline, - ACTIONS(4410), 2, + ACTIONS(4495), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4499), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4412), 2, + ACTIONS(4503), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4414), 2, + ACTIONS(4505), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4462), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4470), 2, + ACTIONS(4509), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4466), 4, + ACTIONS(4501), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4476), 4, + ACTIONS(4513), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2746), 5, + ACTIONS(2806), 5, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - ACTIONS(4474), 8, + ACTIONS(4511), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -190360,54 +192711,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [58721] = 16, + [59916] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4492), 1, + ACTIONS(4440), 1, anon_sym_DASH2, - ACTIONS(4502), 1, + ACTIONS(4448), 1, anon_sym_PLUS2, - ACTIONS(4510), 1, + ACTIONS(4539), 1, anon_sym_bit_DASHand2, - ACTIONS(4512), 1, + ACTIONS(4541), 1, anon_sym_bit_DASHxor2, - STATE(527), 1, + STATE(485), 1, aux_sym__repeat_newline, - STATE(2105), 1, + STATE(2133), 1, sym_comment, - ACTIONS(4490), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4494), 2, + ACTIONS(4442), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4498), 2, + ACTIONS(4444), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4500), 2, + ACTIONS(4446), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4504), 2, + ACTIONS(4527), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4531), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4496), 4, + ACTIONS(4529), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4508), 4, + ACTIONS(4537), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2750), 6, + ACTIONS(2810), 6, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - ACTIONS(4506), 8, + ACTIONS(4535), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -190416,85 +192767,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [58793] = 7, + [59988] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4424), 1, - sym__newline, - ACTIONS(4428), 1, - anon_sym_LBRACK, - STATE(2106), 1, + ACTIONS(2634), 1, + sym__unquoted_pattern, + STATE(2134), 1, sym_comment, - ACTIONS(4431), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(2958), 7, - anon_sym_DOLLAR, - anon_sym_DOT_DOT, + ACTIONS(1012), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1226), 33, + 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_finally, + 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_in_list_token1, - ACTIONS(2960), 26, + 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, + [60038] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2634), 1, + sym__unquoted_pattern, + STATE(2135), 1, + sym_comment, + ACTIONS(1020), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1234), 33, 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_finally, + 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_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, - [58847] = 12, + [60088] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4492), 1, + ACTIONS(4440), 1, anon_sym_DASH2, - ACTIONS(4502), 1, + ACTIONS(4448), 1, anon_sym_PLUS2, - STATE(527), 1, + STATE(485), 1, aux_sym__repeat_newline, - STATE(2107), 1, + STATE(2136), 1, sym_comment, - ACTIONS(4490), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4494), 2, + ACTIONS(4442), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4498), 2, + ACTIONS(4444), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4500), 2, + ACTIONS(4446), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4504), 2, + ACTIONS(4527), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4531), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4496), 4, + ACTIONS(4529), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2762), 20, + ACTIONS(2818), 20, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -190515,33 +192909,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [58911] = 11, + [60152] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4492), 1, + ACTIONS(4440), 1, anon_sym_DASH2, - ACTIONS(4502), 1, + ACTIONS(4448), 1, anon_sym_PLUS2, - STATE(527), 1, + STATE(485), 1, aux_sym__repeat_newline, - STATE(2108), 1, + STATE(2137), 1, sym_comment, - ACTIONS(2764), 2, + ACTIONS(2820), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4494), 2, + ACTIONS(4442), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4498), 2, + ACTIONS(4444), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4500), 2, + ACTIONS(4446), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4504), 2, + ACTIONS(4531), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2762), 24, + ACTIONS(2818), 24, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -190566,27 +192960,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [58973] = 8, + [60214] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(527), 1, + STATE(485), 1, aux_sym__repeat_newline, - STATE(2109), 1, + STATE(2138), 1, sym_comment, - ACTIONS(4494), 2, + ACTIONS(4442), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4498), 2, + ACTIONS(4444), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4500), 2, + ACTIONS(4446), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2764), 3, + ACTIONS(2820), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2762), 27, + ACTIONS(2818), 27, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -190614,23 +193008,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [59029] = 6, + [60270] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(527), 1, + STATE(485), 1, aux_sym__repeat_newline, - STATE(2110), 1, + STATE(2139), 1, sym_comment, - ACTIONS(4498), 2, + ACTIONS(4444), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2764), 5, + ACTIONS(2820), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2762), 29, + ACTIONS(2818), 29, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -190660,55 +193054,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [59081] = 17, + [60322] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4492), 1, + ACTIONS(4440), 1, anon_sym_DASH2, - ACTIONS(4502), 1, + ACTIONS(4448), 1, anon_sym_PLUS2, - ACTIONS(4510), 1, + ACTIONS(4539), 1, anon_sym_bit_DASHand2, - ACTIONS(4512), 1, + ACTIONS(4541), 1, anon_sym_bit_DASHxor2, - ACTIONS(4514), 1, + ACTIONS(4543), 1, anon_sym_bit_DASHor2, - STATE(527), 1, + STATE(485), 1, aux_sym__repeat_newline, - STATE(2111), 1, + STATE(2140), 1, sym_comment, - ACTIONS(4490), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4494), 2, + ACTIONS(4442), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4498), 2, + ACTIONS(4444), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4500), 2, + ACTIONS(4446), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4504), 2, + ACTIONS(4527), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4531), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4496), 4, + ACTIONS(4529), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4508), 4, + ACTIONS(4537), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2762), 5, + ACTIONS(2818), 5, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4506), 8, + ACTIONS(4535), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -190717,56 +193111,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [59155] = 18, + [60396] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4492), 1, + ACTIONS(4440), 1, anon_sym_DASH2, - ACTIONS(4502), 1, + ACTIONS(4448), 1, anon_sym_PLUS2, - ACTIONS(4510), 1, + ACTIONS(4539), 1, anon_sym_bit_DASHand2, - ACTIONS(4512), 1, + ACTIONS(4541), 1, anon_sym_bit_DASHxor2, - ACTIONS(4514), 1, + ACTIONS(4543), 1, anon_sym_bit_DASHor2, - ACTIONS(4516), 1, + ACTIONS(4545), 1, anon_sym_and2, - STATE(527), 1, + STATE(485), 1, aux_sym__repeat_newline, - STATE(2112), 1, + STATE(2141), 1, sym_comment, - ACTIONS(4490), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4494), 2, + ACTIONS(4442), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4498), 2, + ACTIONS(4444), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4500), 2, + ACTIONS(4446), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4504), 2, + ACTIONS(4527), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4531), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2762), 4, + ACTIONS(2818), 4, sym__newline, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(4496), 4, + ACTIONS(4529), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4508), 4, + ACTIONS(4537), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4506), 8, + ACTIONS(4535), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -190775,57 +193169,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [59231] = 19, + [60472] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4492), 1, + ACTIONS(4440), 1, anon_sym_DASH2, - ACTIONS(4502), 1, + ACTIONS(4448), 1, anon_sym_PLUS2, - ACTIONS(4510), 1, + ACTIONS(4539), 1, anon_sym_bit_DASHand2, - ACTIONS(4512), 1, + ACTIONS(4541), 1, anon_sym_bit_DASHxor2, - ACTIONS(4514), 1, + ACTIONS(4543), 1, anon_sym_bit_DASHor2, - ACTIONS(4516), 1, + ACTIONS(4545), 1, anon_sym_and2, - ACTIONS(4518), 1, + ACTIONS(4547), 1, anon_sym_xor2, - STATE(527), 1, + STATE(485), 1, aux_sym__repeat_newline, - STATE(2113), 1, + STATE(2142), 1, sym_comment, - ACTIONS(4490), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4494), 2, + ACTIONS(4442), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4498), 2, + ACTIONS(4444), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4500), 2, + ACTIONS(4446), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4504), 2, + ACTIONS(4527), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4531), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2762), 3, + ACTIONS(2818), 3, sym__newline, anon_sym_LBRACE, anon_sym_or2, - ACTIONS(4496), 4, + ACTIONS(4529), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4508), 4, + ACTIONS(4537), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4506), 8, + ACTIONS(4535), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -190834,38 +193228,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [59309] = 13, + [60550] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4492), 1, + ACTIONS(4440), 1, anon_sym_DASH2, - ACTIONS(4502), 1, + ACTIONS(4448), 1, anon_sym_PLUS2, - STATE(527), 1, + STATE(485), 1, aux_sym__repeat_newline, - STATE(2114), 1, + STATE(2143), 1, sym_comment, - ACTIONS(4490), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4494), 2, + ACTIONS(4442), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4498), 2, + ACTIONS(4444), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4500), 2, + ACTIONS(4446), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4504), 2, + ACTIONS(4527), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4531), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4496), 4, + ACTIONS(4529), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4506), 8, + ACTIONS(4535), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -190874,7 +193268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2762), 12, + ACTIONS(2818), 12, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -190887,30 +193281,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [59375] = 10, + [60616] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4492), 1, + ACTIONS(4440), 1, anon_sym_DASH2, - ACTIONS(4502), 1, + ACTIONS(4448), 1, anon_sym_PLUS2, - STATE(527), 1, + STATE(485), 1, aux_sym__repeat_newline, - STATE(2115), 1, + STATE(2144), 1, sym_comment, - ACTIONS(2764), 2, + ACTIONS(2820), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4494), 2, + ACTIONS(4442), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4498), 2, + ACTIONS(4444), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4500), 2, + ACTIONS(4446), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2762), 26, + ACTIONS(2818), 26, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -190937,163 +193331,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [59435] = 14, + [60676] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4492), 1, + ACTIONS(4440), 1, anon_sym_DASH2, - ACTIONS(4502), 1, + ACTIONS(4448), 1, anon_sym_PLUS2, - STATE(527), 1, + STATE(485), 1, aux_sym__repeat_newline, - STATE(2116), 1, + STATE(2145), 1, sym_comment, - ACTIONS(4490), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4494), 2, + ACTIONS(4442), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4498), 2, + ACTIONS(4444), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4500), 2, + ACTIONS(4446), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4504), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4496), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4508), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2762), 8, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4506), 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, - [59503] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4492), 1, - anon_sym_DASH2, - ACTIONS(4502), 1, - anon_sym_PLUS2, - ACTIONS(4510), 1, - anon_sym_bit_DASHand2, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(2117), 1, - sym_comment, - ACTIONS(4490), 2, + ACTIONS(4527), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4494), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4498), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4500), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4504), 2, + ACTIONS(4531), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4496), 4, + ACTIONS(4529), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4508), 4, + ACTIONS(4537), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2762), 7, + ACTIONS(2818), 8, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4506), 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, - [59573] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4492), 1, - anon_sym_DASH2, - ACTIONS(4502), 1, - anon_sym_PLUS2, - ACTIONS(4510), 1, anon_sym_bit_DASHand2, - ACTIONS(4512), 1, anon_sym_bit_DASHxor2, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(2118), 1, - sym_comment, - ACTIONS(4490), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4494), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4498), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4500), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4504), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4496), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4508), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2762), 6, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_bit_DASHor2, - ACTIONS(4506), 8, + ACTIONS(4535), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -191102,480 +193385,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [59645] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4456), 1, - sym__entry_separator, - ACTIONS(4458), 1, - sym_raw_string_begin, - ACTIONS(4522), 1, - anon_sym_RBRACK, - STATE(2016), 1, - aux_sym__types_body_repeat2, - STATE(2119), 1, - sym_comment, - ACTIONS(4452), 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, - [59699] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2120), 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, - [59747] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(892), 1, - aux_sym_cmd_identifier_token6, - ACTIONS(4524), 1, - sym_filesize_unit, - ACTIONS(4526), 1, - sym_duration_unit, - STATE(2121), 1, - sym_comment, - ACTIONS(890), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(888), 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, - [59801] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4359), 1, - anon_sym_EQ2, - STATE(2122), 1, - sym_comment, - STATE(2229), 1, - sym__flag_equals_value, - ACTIONS(4528), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(4530), 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, - [59853] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(3720), 1, - sym_raw_string_begin, - ACTIONS(4532), 1, - sym__entry_separator, - STATE(2123), 2, - sym_comment, - aux_sym__types_body_repeat2, - ACTIONS(3715), 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, - [59903] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2124), 1, - sym_comment, - ACTIONS(860), 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(862), 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, - [59951] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4535), 1, - anon_sym_QMARK2, - STATE(2125), 1, - sym_comment, - ACTIONS(1448), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1450), 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, - [60001] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4541), 1, - anon_sym_DASH_DASH, - STATE(2168), 1, - sym_long_flag, - STATE(2126), 2, - sym_comment, - aux_sym_decl_def_repeat1, - ACTIONS(4537), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(4539), 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, - [60053] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2127), 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, - [60101] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4535), 1, - anon_sym_BANG, - STATE(2128), 1, - sym_comment, - ACTIONS(1448), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1450), 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, - [60151] = 5, + [60744] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1734), 1, - sym__unquoted_pattern, - STATE(2129), 1, + ACTIONS(4440), 1, + anon_sym_DASH2, + ACTIONS(4448), 1, + anon_sym_PLUS2, + ACTIONS(4539), 1, + anon_sym_bit_DASHand2, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(2146), 1, sym_comment, - ACTIONS(866), 5, - anon_sym_GT2, + ACTIONS(4442), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(886), 31, - anon_sym_in, + ACTIONS(4444), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4446), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4527), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4531), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4529), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4537), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2818), 7, sym__newline, - anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(4535), 8, + anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -191583,35 +193440,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + [60814] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4440), 1, + anon_sym_DASH2, + ACTIONS(4448), 1, + anon_sym_PLUS2, + ACTIONS(4539), 1, + anon_sym_bit_DASHand2, + ACTIONS(4541), 1, + anon_sym_bit_DASHxor2, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(2147), 1, + sym_comment, + ACTIONS(4442), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4444), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4446), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4527), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4531), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4529), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(4537), 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, + ACTIONS(2818), 6, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_bit_DASHor2, - [60201] = 4, + ACTIONS(4535), 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, + [60886] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2130), 1, + STATE(2148), 1, sym_comment, - ACTIONS(1020), 5, + ACTIONS(1012), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1022), 32, + ACTIONS(1226), 32, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -191644,18 +193540,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [60249] = 4, + [60934] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2131), 1, + STATE(2149), 1, sym_comment, - ACTIONS(994), 5, + ACTIONS(1020), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1030), 32, + ACTIONS(1234), 32, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -191688,70 +193584,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [60297] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4544), 1, - sym__newline, - STATE(2132), 1, - sym_comment, - ACTIONS(4431), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(2958), 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(2960), 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_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, - [60349] = 7, + [60982] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4551), 1, + ACTIONS(4587), 1, aux_sym_cmd_identifier_token6, - ACTIONS(4553), 1, + ACTIONS(4589), 1, sym_filesize_unit, - ACTIONS(4555), 1, + ACTIONS(4591), 1, sym_duration_unit, - STATE(2133), 1, + STATE(2150), 1, sym_comment, - ACTIONS(4549), 5, + ACTIONS(4585), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(4547), 29, + ACTIONS(4583), 29, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -191781,20 +193631,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [60403] = 7, - ACTIONS(103), 1, + [61036] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4456), 1, - sym__entry_separator, - ACTIONS(4458), 1, - sym_raw_string_begin, - ACTIONS(4557), 1, - anon_sym_RBRACK, - STATE(2016), 1, - aux_sym__types_body_repeat2, - STATE(2134), 1, + ACTIONS(4593), 1, + sym__newline, + STATE(2151), 1, sym_comment, - ACTIONS(4452), 33, + ACTIONS(4464), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(2772), 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(2774), 27, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -191803,23 +193659,17 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -191827,254 +193677,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACK, - aux_sym__unquoted_in_list_token1, - [60457] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2135), 1, - sym_comment, - ACTIONS(2960), 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, - [60503] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(906), 1, - aux_sym_cmd_identifier_token6, - ACTIONS(4559), 1, - sym_filesize_unit, - ACTIONS(4561), 1, - sym_duration_unit, - STATE(2136), 1, - sym_comment, - ACTIONS(904), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(902), 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, - [60557] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4567), 1, - aux_sym_cmd_identifier_token6, - ACTIONS(4569), 1, - sym_filesize_unit, - ACTIONS(4571), 1, - sym_duration_unit, - STATE(2137), 1, - sym_comment, - ACTIONS(4565), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4563), 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, - [60611] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4577), 1, - aux_sym_cmd_identifier_token6, - ACTIONS(4579), 1, - sym_filesize_unit, - ACTIONS(4581), 1, - sym_duration_unit, - STATE(2138), 1, - sym_comment, - ACTIONS(4575), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4573), 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, - [60665] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4587), 1, - aux_sym_cmd_identifier_token6, - ACTIONS(4589), 1, - sym_filesize_unit, - ACTIONS(4591), 1, - sym_duration_unit, - STATE(2139), 1, - sym_comment, - ACTIONS(4585), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4583), 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, - [60719] = 6, + [61088] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2612), 1, - anon_sym_LPAREN2, - ACTIONS(2614), 1, - sym__unquoted_pattern, - STATE(2140), 1, + STATE(2152), 1, sym_comment, - ACTIONS(1614), 5, + ACTIONS(1732), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1713), 30, + sym__unquoted_pattern, + ACTIONS(1730), 31, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -192096,6 +193711,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, @@ -192105,35 +193721,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [60771] = 11, + [61136] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4483), 1, + sym__entry_separator, + ACTIONS(4485), 1, + sym_raw_string_begin, + ACTIONS(4596), 1, + anon_sym_RBRACK, + STATE(2020), 1, + aux_sym__types_body_repeat2, + STATE(2153), 1, + sym_comment, + ACTIONS(4479), 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, + [61190] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4492), 1, + ACTIONS(2874), 1, + sym__newline, + ACTIONS(4497), 1, anon_sym_DASH2, - ACTIONS(4502), 1, + ACTIONS(4507), 1, anon_sym_PLUS2, - STATE(527), 1, + STATE(2095), 1, aux_sym__repeat_newline, - STATE(2141), 1, + STATE(2154), 1, sym_comment, - ACTIONS(2752), 2, + ACTIONS(2790), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4494), 2, + ACTIONS(4499), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4498), 2, + ACTIONS(4503), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4500), 2, + ACTIONS(4505), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4504), 2, + ACTIONS(4509), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2750), 24, + ACTIONS(2788), 23, anon_sym_in, - sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -192156,106 +193820,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [60833] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2654), 1, - sym__unquoted_pattern, - STATE(2142), 1, - sym_comment, - ACTIONS(2650), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2648), 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, - [60882] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4211), 1, - sym__unquoted_pattern, - STATE(2143), 1, - sym_comment, - ACTIONS(866), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(886), 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, - [60931] = 5, + [61254] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2614), 1, - sym__unquoted_pattern, - STATE(2144), 1, + STATE(2155), 1, sym_comment, - ACTIONS(1614), 3, + ACTIONS(4598), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1713), 32, + ACTIONS(4600), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192273,6 +193847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -192288,57 +193863,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [60980] = 20, + [61301] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2907), 1, - sym__newline, - ACTIONS(2913), 1, + ACTIONS(2855), 1, anon_sym_DASH2, - ACTIONS(2923), 1, + ACTIONS(2865), 1, anon_sym_PLUS2, - ACTIONS(2931), 1, + ACTIONS(2877), 1, + anon_sym_and2, + ACTIONS(2881), 1, anon_sym_bit_DASHand2, - ACTIONS(2933), 1, + ACTIONS(2883), 1, anon_sym_bit_DASHxor2, - ACTIONS(2935), 1, + ACTIONS(2885), 1, anon_sym_bit_DASHor2, - ACTIONS(2937), 1, - anon_sym_and2, - ACTIONS(2939), 1, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(2924), 1, anon_sym_xor2, - ACTIONS(4593), 1, + ACTIONS(4602), 1, anon_sym_or2, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(2145), 1, + STATE(2156), 1, sym_comment, - ACTIONS(2911), 2, + STATE(2174), 1, + aux_sym__repeat_newline, + ACTIONS(2853), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(2915), 2, + ACTIONS(2857), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(2919), 2, + ACTIONS(2861), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2921), 2, + ACTIONS(2863), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2925), 2, + ACTIONS(2867), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2917), 4, + ACTIONS(2859), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2929), 4, + ACTIONS(2879), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2927), 8, + ACTIONS(2872), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -192347,24 +193922,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [61059] = 6, - ACTIONS(103), 1, + [61380] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4420), 1, - sym__entry_separator, - ACTIONS(4422), 1, - sym_raw_string_begin, - STATE(2123), 1, - aux_sym__types_body_repeat2, - STATE(2146), 1, + STATE(2157), 1, sym_comment, - ACTIONS(4416), 33, + ACTIONS(2772), 3, anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2774), 33, + 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, @@ -192377,81 +193949,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, 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, - [61110] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4456), 1, - sym__entry_separator, - ACTIONS(4458), 1, - sym_raw_string_begin, - STATE(2016), 1, - aux_sym__types_body_repeat2, - STATE(2147), 1, - sym_comment, - ACTIONS(4452), 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, + sym__newline, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - 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, - [61161] = 4, - ACTIONS(103), 1, + [61427] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2148), 1, + STATE(2158), 1, sym_comment, - ACTIONS(3756), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(3754), 34, + ACTIONS(1520), 3, anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1522), 33, + 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, @@ -192464,77 +193992,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, 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, - [61208] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2149), 1, - sym_comment, - ACTIONS(3756), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(3754), 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, + 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, - 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, - [61255] = 5, + [61474] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4595), 1, - anon_sym_LBRACK2, - STATE(2150), 1, + STATE(2159), 1, sym_comment, - ACTIONS(2090), 3, + ACTIONS(2411), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2088), 32, + ACTIONS(2409), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192552,6 +194035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -192567,17 +194051,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61304] = 4, + [61521] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2151), 1, + STATE(2160), 1, sym_comment, - ACTIONS(1496), 4, + ACTIONS(2415), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1498), 32, + ACTIONS(2413), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192595,6 +194078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -192610,104 +194094,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61351] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2152), 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, - [61396] = 5, + [61568] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4597), 1, - sym__newline, - STATE(2153), 2, + STATE(2161), 1, sym_comment, - aux_sym__types_body_repeat1, - ACTIONS(3758), 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(3760), 27, + ACTIONS(2419), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2417), 33, 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_finally, + 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, - 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, - [61445] = 5, + [61615] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2658), 1, - sym__unquoted_pattern, - STATE(2154), 1, + STATE(2162), 1, sym_comment, - ACTIONS(1020), 3, + ACTIONS(2423), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1022), 32, + ACTIONS(2421), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192725,6 +194164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -192740,18 +194180,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61494] = 5, + [61662] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2658), 1, - sym__unquoted_pattern, - STATE(2155), 1, + STATE(2163), 1, sym_comment, - ACTIONS(994), 3, + ACTIONS(1528), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1030), 32, + ACTIONS(1530), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192769,6 +194207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -192784,17 +194223,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61543] = 4, + [61709] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2156), 1, + STATE(2164), 1, sym_comment, - ACTIONS(2527), 4, + ACTIONS(1500), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - sym__unquoted_pattern, - ACTIONS(2525), 32, + ACTIONS(1502), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192812,6 +194250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -192827,76 +194266,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61590] = 20, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2809), 1, - anon_sym_DASH2, - ACTIONS(2819), 1, - anon_sym_PLUS2, - ACTIONS(2899), 1, - anon_sym_bit_DASHand2, - ACTIONS(2901), 1, - anon_sym_bit_DASHxor2, - ACTIONS(2903), 1, - anon_sym_bit_DASHor2, - ACTIONS(2905), 1, - anon_sym_and2, - ACTIONS(2907), 1, - sym__newline, - ACTIONS(2909), 1, - anon_sym_xor2, - ACTIONS(4600), 1, - anon_sym_or2, - STATE(2145), 1, - aux_sym__repeat_newline, - STATE(2157), 1, - sym_comment, - ACTIONS(2807), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2811), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(2815), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2817), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2821), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2813), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2897), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2895), 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, - [61669] = 4, + [61756] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2158), 1, + STATE(2165), 1, sym_comment, - ACTIONS(1547), 4, + ACTIONS(1504), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1549), 32, + ACTIONS(1506), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192914,6 +194293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -192929,19 +194309,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61716] = 5, + [61803] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4602), 1, - sym__newline, - STATE(2159), 2, + STATE(2166), 1, sym_comment, - aux_sym__types_body_repeat1, - ACTIONS(3758), 3, + ACTIONS(2580), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(3760), 31, + ACTIONS(2578), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192959,311 +194336,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, 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, - [61765] = 20, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2907), 1, - sym__newline, - ACTIONS(4464), 1, - anon_sym_DASH2, - ACTIONS(4468), 1, - anon_sym_PLUS2, - ACTIONS(4478), 1, - anon_sym_bit_DASHand2, - ACTIONS(4480), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4482), 1, - anon_sym_bit_DASHor2, - ACTIONS(4484), 1, - anon_sym_and2, - ACTIONS(4486), 1, - anon_sym_xor2, - ACTIONS(4605), 1, - anon_sym_or2, - STATE(2160), 1, - sym_comment, - STATE(2161), 1, - aux_sym__repeat_newline, - ACTIONS(4410), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4412), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4414), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4462), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4470), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4466), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4476), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4474), 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, - [61844] = 20, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2907), 1, - sym__newline, - ACTIONS(4492), 1, - anon_sym_DASH2, - ACTIONS(4502), 1, - anon_sym_PLUS2, - ACTIONS(4510), 1, - anon_sym_bit_DASHand2, - ACTIONS(4512), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4514), 1, - anon_sym_bit_DASHor2, - ACTIONS(4516), 1, - anon_sym_and2, - ACTIONS(4518), 1, - anon_sym_xor2, - ACTIONS(4607), 1, - anon_sym_or2, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(2161), 1, - sym_comment, - ACTIONS(4490), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4494), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4498), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4500), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4504), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4496), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4508), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4506), 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, - [61923] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1734), 1, - sym__unquoted_pattern, - STATE(2162), 1, - sym_comment, - ACTIONS(866), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(886), 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, - [61972] = 20, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2907), 1, - sym__newline, - ACTIONS(3828), 1, - anon_sym_DASH2, - ACTIONS(3832), 1, - anon_sym_PLUS2, - ACTIONS(3840), 1, - anon_sym_bit_DASHand2, - ACTIONS(3842), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3844), 1, - anon_sym_bit_DASHor2, - ACTIONS(3846), 1, - anon_sym_and2, - ACTIONS(3848), 1, - anon_sym_xor2, - ACTIONS(4609), 1, - anon_sym_or2, - STATE(2163), 1, - sym_comment, - STATE(2164), 1, - aux_sym__repeat_newline, - ACTIONS(3765), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3767), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3769), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3826), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3834), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3830), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3838), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3836), 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, - [62051] = 20, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2907), 1, - sym__newline, - ACTIONS(3864), 1, - anon_sym_DASH2, - ACTIONS(3874), 1, - anon_sym_PLUS2, - ACTIONS(3882), 1, - anon_sym_bit_DASHand2, - ACTIONS(3884), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3886), 1, - anon_sym_bit_DASHor2, - ACTIONS(3888), 1, - anon_sym_and2, - ACTIONS(3890), 1, - anon_sym_xor2, - ACTIONS(4611), 1, - anon_sym_or2, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(2164), 1, - sym_comment, - ACTIONS(3862), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3866), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3870), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3872), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3876), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3868), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3880), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3878), 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, - [62130] = 4, + 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, + [61850] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2165), 1, + STATE(2167), 1, sym_comment, - ACTIONS(1562), 4, + ACTIONS(1905), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1564), 32, + ACTIONS(1903), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -193281,6 +194379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -193296,16 +194395,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62177] = 4, + [61897] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2166), 1, + STATE(2168), 1, sym_comment, - ACTIONS(2539), 3, + ACTIONS(2439), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2537), 32, + ACTIONS(2437), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -193323,6 +194422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -193338,16 +194438,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62223] = 4, + [61944] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2167), 1, + STATE(2169), 1, sym_comment, - ACTIONS(2610), 3, + ACTIONS(2443), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2608), 32, + ACTIONS(2441), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -193365,6 +194465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -193380,16 +194481,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62269] = 4, + [61991] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2168), 1, + STATE(2170), 1, sym_comment, - ACTIONS(4613), 3, + ACTIONS(2547), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(4615), 32, + ACTIONS(2545), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -193407,6 +194508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -193422,16 +194524,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62315] = 4, + [62038] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2169), 1, + STATE(2171), 1, sym_comment, - ACTIONS(2575), 3, + ACTIONS(2626), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2573), 32, + ACTIONS(2624), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -193449,6 +194551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -193464,16 +194567,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62361] = 4, + [62085] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2170), 1, + STATE(2172), 1, sym_comment, - ACTIONS(2242), 3, + ACTIONS(1578), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2240), 32, + ACTIONS(1580), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -193491,6 +194594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -193506,16 +194610,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62407] = 4, + [62132] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2171), 1, + STATE(2173), 1, + sym_comment, + ACTIONS(1966), 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, + [62177] = 20, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2828), 1, + anon_sym_DASH2, + ACTIONS(2840), 1, + anon_sym_PLUS2, + ACTIONS(2844), 1, + anon_sym_bit_DASHand2, + ACTIONS(2846), 1, + anon_sym_bit_DASHxor2, + ACTIONS(2848), 1, + anon_sym_bit_DASHor2, + ACTIONS(2906), 1, + anon_sym_and2, + ACTIONS(2908), 1, + anon_sym_xor2, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(4604), 1, + anon_sym_or2, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(2174), 1, + sym_comment, + ACTIONS(2826), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(2830), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(2836), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2838), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2842), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2832), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2834), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2824), 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, + [62256] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2175), 1, sym_comment, - ACTIONS(2535), 3, + ACTIONS(2529), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2533), 32, + ACTIONS(2527), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -193533,6 +194738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -193548,16 +194754,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62453] = 4, + [62303] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2172), 1, + STATE(2176), 1, sym_comment, - ACTIONS(2278), 3, + ACTIONS(2447), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2276), 32, + ACTIONS(2445), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -193575,6 +194781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -193590,16 +194797,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62499] = 4, + [62350] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2173), 1, + STATE(2177), 1, sym_comment, - ACTIONS(2278), 3, + ACTIONS(2533), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2276), 32, + ACTIONS(2531), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -193617,6 +194824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -193632,16 +194840,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62545] = 4, + [62397] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2174), 1, + STATE(2178), 1, sym_comment, - ACTIONS(2292), 3, + ACTIONS(2158), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2290), 32, + ACTIONS(2156), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -193659,6 +194867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -193674,16 +194883,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62591] = 4, + [62444] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2175), 1, + STATE(2179), 1, sym_comment, - ACTIONS(2296), 3, + ACTIONS(2666), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2294), 32, + ACTIONS(2664), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -193701,6 +194910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -193716,81 +194926,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62637] = 27, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1422), 1, - anon_sym_DQUOTE, - ACTIONS(1424), 1, - anon_sym_SQUOTE, - ACTIONS(1426), 1, - anon_sym_BQUOTE, - ACTIONS(1436), 1, - sym_raw_string_begin, - ACTIONS(3092), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(4619), 1, - anon_sym_null, - ACTIONS(4623), 1, - sym__newline, - ACTIONS(4625), 1, - anon_sym_GT2, - ACTIONS(4627), 1, - anon_sym_DOT_DOT, - ACTIONS(4631), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4633), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4637), 1, - sym_val_date, - STATE(2176), 1, - sym_comment, - STATE(2254), 1, - aux_sym__types_body_repeat1, - STATE(2280), 1, - aux_sym__collection_body_repeat1, - STATE(3961), 1, - sym__val_number_decimal, - STATE(4752), 1, - sym__collection_entry, - STATE(5086), 1, - sym__collection_body, - STATE(5170), 1, - sym_val_bool, - ACTIONS(4617), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4629), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4635), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4292), 2, - sym_val_string, - sym__unquoted_in_record, - STATE(5033), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4621), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(3665), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [62729] = 4, + [62491] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2177), 1, + STATE(2180), 1, sym_comment, - ACTIONS(2284), 3, + ACTIONS(1909), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2282), 32, + ACTIONS(1907), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -193808,6 +194953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -193823,16 +194969,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62775] = 4, + [62538] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2178), 1, + STATE(2181), 1, sym_comment, - ACTIONS(1519), 3, + ACTIONS(2553), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1521), 32, + ACTIONS(2551), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -193850,6 +194996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -193865,619 +195012,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62821] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4641), 1, - anon_sym_DASH2, - ACTIONS(4651), 1, - anon_sym_PLUS2, - STATE(2179), 1, - sym_comment, - ACTIONS(4639), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4643), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4647), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4649), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4653), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4645), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2551), 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, - [62881] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4641), 1, - anon_sym_DASH2, - ACTIONS(4651), 1, - anon_sym_PLUS2, - STATE(2180), 1, - sym_comment, - ACTIONS(2553), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4643), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4647), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4649), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4653), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2551), 23, - 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_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [62939] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2181), 1, - sym_comment, - ACTIONS(4643), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4647), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4649), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2553), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2551), 26, - 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_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [62991] = 5, + [62585] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2182), 1, sym_comment, - ACTIONS(4647), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2553), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2551), 28, - 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_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [63039] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4641), 1, - anon_sym_DASH2, - ACTIONS(4651), 1, - anon_sym_PLUS2, - ACTIONS(4659), 1, - anon_sym_bit_DASHand2, - ACTIONS(4661), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4663), 1, - anon_sym_bit_DASHor2, - STATE(2183), 1, - sym_comment, - ACTIONS(4639), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4643), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4647), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4649), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4653), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2551), 4, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4645), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4657), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4655), 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, - [63109] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4641), 1, - anon_sym_DASH2, - ACTIONS(4651), 1, - anon_sym_PLUS2, - ACTIONS(4659), 1, - anon_sym_bit_DASHand2, - ACTIONS(4661), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4663), 1, - anon_sym_bit_DASHor2, - ACTIONS(4665), 1, - anon_sym_and2, - STATE(2184), 1, - sym_comment, - ACTIONS(4639), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4643), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4647), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4649), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4653), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2551), 3, - anon_sym_EQ_GT, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4645), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4657), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4655), 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, - [63181] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4641), 1, - anon_sym_DASH2, - ACTIONS(4651), 1, - anon_sym_PLUS2, - ACTIONS(4659), 1, - anon_sym_bit_DASHand2, - ACTIONS(4661), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4663), 1, - anon_sym_bit_DASHor2, - ACTIONS(4665), 1, - anon_sym_and2, - ACTIONS(4667), 1, - anon_sym_xor2, - STATE(2185), 1, - sym_comment, - ACTIONS(2551), 2, - anon_sym_EQ_GT, - anon_sym_or2, - ACTIONS(4639), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4643), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4647), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4649), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4653), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4645), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4657), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4655), 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, - [63255] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4641), 1, - anon_sym_DASH2, - ACTIONS(4651), 1, - anon_sym_PLUS2, - STATE(2186), 1, - sym_comment, - ACTIONS(4639), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4643), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4647), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4649), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4653), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4645), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4655), 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(2551), 11, - anon_sym_EQ_GT, - 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, - [63317] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4641), 1, - anon_sym_DASH2, - ACTIONS(4651), 1, - anon_sym_PLUS2, - STATE(2187), 1, - sym_comment, - ACTIONS(2553), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4643), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4647), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4649), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2551), 25, - 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_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [63373] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4641), 1, - anon_sym_DASH2, - ACTIONS(4651), 1, - anon_sym_PLUS2, - STATE(2188), 1, - sym_comment, - ACTIONS(4639), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4643), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4647), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4649), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4653), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4645), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4657), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2551), 7, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4655), 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, - [63437] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4641), 1, - anon_sym_DASH2, - ACTIONS(4651), 1, - anon_sym_PLUS2, - ACTIONS(4659), 1, - anon_sym_bit_DASHand2, - STATE(2189), 1, - sym_comment, - ACTIONS(4639), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4643), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4647), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4649), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4653), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4645), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4657), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2551), 6, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4655), 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, - [63503] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4641), 1, - anon_sym_DASH2, - ACTIONS(4651), 1, - anon_sym_PLUS2, - ACTIONS(4659), 1, - anon_sym_bit_DASHand2, - ACTIONS(4661), 1, - anon_sym_bit_DASHxor2, - STATE(2190), 1, - sym_comment, - ACTIONS(4639), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4643), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4647), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4649), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4653), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4645), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4657), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2551), 5, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - ACTIONS(4655), 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, - [63571] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2191), 1, - sym_comment, - ACTIONS(2288), 3, + ACTIONS(2560), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2286), 32, + ACTIONS(2558), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -194495,6 +195039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -194510,16 +195055,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63617] = 4, + [62632] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2192), 1, + STATE(2183), 1, sym_comment, - ACTIONS(2958), 3, + ACTIONS(2328), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2960), 32, + ACTIONS(2326), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -194537,6 +195082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -194544,7 +195090,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, @@ -194552,24 +195098,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63663] = 5, + [62679] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4669), 1, + ACTIONS(1828), 1, + sym__unquoted_pattern, + STATE(2184), 1, + sym_comment, + ACTIONS(847), 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, + [62728] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4606), 1, sym__newline, - STATE(2193), 2, - aux_sym__repeat_newline, + STATE(2185), 2, sym_comment, - ACTIONS(1971), 8, + aux_sym__types_body_repeat1, + ACTIONS(3758), 7, 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(1966), 25, + aux_sym__unquoted_in_list_token1, + ACTIONS(3760), 27, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -194580,9 +195169,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, - aux_sym_expr_unary_token1, + 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, @@ -194595,59 +195185,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [63711] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1028), 1, - aux_sym_cmd_identifier_token6, - STATE(2194), 1, - sym_comment, - ACTIONS(1026), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1024), 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, - [63759] = 4, + anon_sym_DOT_DOT_DOT_LBRACK, + [62777] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2195), 1, + STATE(2186), 1, sym_comment, - ACTIONS(1523), 3, + ACTIONS(4609), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1525), 32, + ACTIONS(4611), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -194665,6 +195213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -194680,16 +195229,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63805] = 4, + [62824] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2196), 1, + STATE(2187), 1, sym_comment, - ACTIONS(1527), 3, + ACTIONS(1508), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1529), 32, + ACTIONS(1510), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -194707,6 +195256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -194722,16 +195272,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63851] = 4, + [62871] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2197), 1, + STATE(2188), 1, sym_comment, - ACTIONS(1531), 3, + ACTIONS(4613), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1533), 32, + ACTIONS(4615), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -194749,6 +195299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -194764,59 +195315,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63897] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4676), 1, - aux_sym_cmd_identifier_token6, - STATE(2198), 1, - sym_comment, - ACTIONS(4674), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4672), 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, - [63945] = 4, + [62918] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2199), 1, + STATE(2189), 1, sym_comment, - ACTIONS(1535), 3, + ACTIONS(1917), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1537), 32, + ACTIONS(1915), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -194834,6 +195342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -194849,123 +195358,220 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63991] = 4, + [62965] = 20, ACTIONS(3), 1, anon_sym_POUND, - STATE(2200), 1, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(4497), 1, + anon_sym_DASH2, + ACTIONS(4507), 1, + anon_sym_PLUS2, + ACTIONS(4515), 1, + anon_sym_bit_DASHand2, + ACTIONS(4517), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4519), 1, + anon_sym_bit_DASHor2, + ACTIONS(4521), 1, + anon_sym_and2, + ACTIONS(4523), 1, + anon_sym_xor2, + ACTIONS(4617), 1, + anon_sym_or2, + STATE(2190), 1, sym_comment, - ACTIONS(2958), 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(2960), 28, + STATE(2191), 1, + aux_sym__repeat_newline, + ACTIONS(4495), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4499), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4503), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4505), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4509), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4501), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4513), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4511), 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, + [63044] = 20, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(4440), 1, + anon_sym_DASH2, + ACTIONS(4448), 1, + anon_sym_PLUS2, + ACTIONS(4539), 1, + anon_sym_bit_DASHand2, + ACTIONS(4541), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4543), 1, + anon_sym_bit_DASHor2, + ACTIONS(4545), 1, + anon_sym_and2, + ACTIONS(4547), 1, + anon_sym_xor2, + ACTIONS(4619), 1, + anon_sym_or2, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(2191), 1, + sym_comment, + ACTIONS(4442), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4444), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4446), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4527), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4531), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4529), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4537), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4535), 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, + [63123] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2192), 1, + sym_comment, + ACTIONS(1889), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1887), 33, 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_finally, + 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, - [64037] = 27, + [63170] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1422), 1, - anon_sym_DQUOTE, - ACTIONS(1424), 1, - anon_sym_SQUOTE, - ACTIONS(1426), 1, - anon_sym_BQUOTE, - ACTIONS(1436), 1, - sym_raw_string_begin, - ACTIONS(3092), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(4619), 1, - anon_sym_null, - ACTIONS(4623), 1, - sym__newline, - ACTIONS(4627), 1, - anon_sym_DOT_DOT, - ACTIONS(4631), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4633), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4637), 1, - sym_val_date, - ACTIONS(4678), 1, - anon_sym_GT2, - STATE(2201), 1, + STATE(2193), 1, sym_comment, - STATE(2254), 1, - aux_sym__types_body_repeat1, - STATE(2280), 1, - aux_sym__collection_body_repeat1, - STATE(3961), 1, - sym__val_number_decimal, - STATE(4752), 1, - sym__collection_entry, - STATE(4974), 1, - sym__collection_body, - STATE(5170), 1, - sym_val_bool, - ACTIONS(4617), 2, + ACTIONS(2564), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2562), 33, + 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_finally, + anon_sym_match, anon_sym_true, anon_sym_false, - ACTIONS(4629), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4635), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4292), 2, - sym_val_string, - sym__unquoted_in_record, - STATE(5033), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4621), 3, + anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(3665), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [64129] = 4, + 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, + [63217] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2202), 1, + STATE(2194), 1, sym_comment, - ACTIONS(1539), 3, + ACTIONS(4621), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1541), 32, + ACTIONS(4623), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -194983,6 +195589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -194998,16 +195605,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [64175] = 4, + [63264] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2203), 1, + STATE(2195), 1, sym_comment, - ACTIONS(4680), 3, + ACTIONS(847), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(4682), 32, + ACTIONS(968), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -195025,6 +195632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -195040,16 +195648,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [64221] = 4, + [63311] = 20, ACTIONS(3), 1, anon_sym_POUND, - STATE(2204), 1, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(3866), 1, + anon_sym_DASH2, + ACTIONS(3878), 1, + anon_sym_PLUS2, + ACTIONS(3882), 1, + anon_sym_bit_DASHand2, + ACTIONS(3884), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3908), 1, + anon_sym_bit_DASHor2, + ACTIONS(3918), 1, + anon_sym_and2, + ACTIONS(3922), 1, + anon_sym_xor2, + ACTIONS(4625), 1, + anon_sym_or2, + STATE(2196), 1, + sym_comment, + STATE(2197), 1, + aux_sym__repeat_newline, + ACTIONS(3864), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3868), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3874), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3876), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3880), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3870), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3872), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3862), 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, + [63390] = 20, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(3848), 1, + anon_sym_DASH2, + ACTIONS(3858), 1, + anon_sym_PLUS2, + ACTIONS(3912), 1, + anon_sym_bit_DASHand2, + ACTIONS(3914), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3916), 1, + anon_sym_bit_DASHor2, + ACTIONS(3920), 1, + anon_sym_and2, + ACTIONS(3924), 1, + anon_sym_xor2, + ACTIONS(4627), 1, + anon_sym_or2, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(2197), 1, + sym_comment, + ACTIONS(3846), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3850), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3854), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3856), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3860), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3852), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3910), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3844), 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, + [63469] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2198), 1, sym_comment, - ACTIONS(866), 3, + ACTIONS(2479), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(886), 32, + ACTIONS(2477), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -195067,6 +195793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -195082,16 +195809,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [64267] = 4, + [63516] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2205), 1, + STATE(2199), 1, sym_comment, - ACTIONS(2176), 3, + ACTIONS(2479), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2174), 32, + ACTIONS(2477), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -195109,6 +195836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -195124,16 +195852,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [64313] = 4, + [63563] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2206), 1, + STATE(2200), 1, sym_comment, - ACTIONS(1614), 3, + ACTIONS(2483), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1713), 32, + ACTIONS(2481), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -195151,6 +195879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -195166,16 +195895,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [64359] = 4, + [63610] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2207), 1, + STATE(2201), 1, sym_comment, - ACTIONS(2246), 3, + ACTIONS(2487), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2244), 32, + ACTIONS(2485), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -195193,6 +195922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -195208,16 +195938,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [64405] = 4, + [63657] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2202), 1, + sym_comment, + ACTIONS(3756), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(3754), 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, + [63704] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2208), 1, + STATE(2203), 1, sym_comment, - ACTIONS(2172), 3, + ACTIONS(1512), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2170), 32, + ACTIONS(1514), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -195235,6 +196008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -195250,16 +196024,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [64451] = 4, + [63751] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2209), 1, + STATE(2204), 1, sym_comment, - ACTIONS(1580), 3, + ACTIONS(1615), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1582), 32, + ACTIONS(1699), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -195277,6 +196051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -195292,16 +196067,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [64497] = 4, + [63798] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4483), 1, + sym__entry_separator, + ACTIONS(4485), 1, + sym_raw_string_begin, + STATE(2020), 1, + aux_sym__types_body_repeat2, + STATE(2205), 1, + sym_comment, + ACTIONS(4479), 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, + [63849] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2210), 1, + STATE(2206), 1, sym_comment, - ACTIONS(2531), 3, + ACTIONS(2150), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2529), 32, + ACTIONS(2148), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -195319,6 +196139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -195334,16 +196155,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [64543] = 4, + [63896] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2211), 1, + STATE(2207), 1, sym_comment, - ACTIONS(2634), 3, + ACTIONS(4629), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2632), 32, + ACTIONS(4631), 33, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -195361,6 +196182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_try, anon_sym_catch, + anon_sym_finally, anon_sym_match, anon_sym_true, anon_sym_false, @@ -195376,36 +196198,872 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [64589] = 11, + [63943] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1018), 1, + aux_sym_cmd_identifier_token6, + STATE(2208), 1, + sym_comment, + ACTIONS(1016), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1014), 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, + [63991] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4633), 1, + anon_sym_DASH2, + ACTIONS(4641), 1, + anon_sym_PLUS2, + STATE(2209), 1, + sym_comment, + ACTIONS(2650), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4635), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4637), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4639), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2648), 25, + 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_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [64047] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4647), 1, + anon_sym_DASH2, + ACTIONS(4651), 1, + anon_sym_and2, + ACTIONS(4661), 1, + anon_sym_PLUS2, + ACTIONS(4665), 1, + anon_sym_bit_DASHand2, + ACTIONS(4667), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4669), 1, + anon_sym_bit_DASHor2, + STATE(2210), 1, + sym_comment, + ACTIONS(4645), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4649), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4657), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4659), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4663), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2648), 3, + anon_sym_LBRACE, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(4653), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4655), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4643), 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, + [64119] = 27, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1422), 1, + anon_sym_DQUOTE, + ACTIONS(1424), 1, + anon_sym_SQUOTE, + ACTIONS(1426), 1, + anon_sym_BQUOTE, + ACTIONS(1436), 1, + sym_raw_string_begin, + ACTIONS(3112), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4673), 1, + anon_sym_null, + ACTIONS(4677), 1, + sym__newline, + ACTIONS(4679), 1, + anon_sym_GT2, + ACTIONS(4681), 1, + anon_sym_DOT_DOT, + ACTIONS(4685), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4687), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4691), 1, + sym_val_date, + STATE(2211), 1, + sym_comment, + STATE(2257), 1, + aux_sym__types_body_repeat1, + STATE(2281), 1, + aux_sym__collection_body_repeat1, + STATE(3989), 1, + sym__val_number_decimal, + STATE(4809), 1, + sym__collection_entry, + STATE(5355), 1, + sym_val_bool, + STATE(5468), 1, + sym__collection_body, + ACTIONS(4671), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4683), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4689), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(4389), 2, + sym_val_string, + sym__unquoted_in_record, + STATE(5238), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4675), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(3725), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [64211] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4686), 1, + ACTIONS(4633), 1, anon_sym_DASH2, - ACTIONS(4696), 1, + ACTIONS(4641), 1, anon_sym_PLUS2, STATE(2212), 1, sym_comment, - ACTIONS(4684), 2, + ACTIONS(4635), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4637), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4639), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4693), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4697), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4695), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2648), 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, + [64271] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2213), 1, + sym_comment, + ACTIONS(4637), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2650), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2648), 28, + 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_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [64319] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4647), 1, + anon_sym_DASH2, + ACTIONS(4651), 1, + anon_sym_and2, + ACTIONS(4661), 1, + anon_sym_PLUS2, + ACTIONS(4665), 1, + anon_sym_bit_DASHand2, + ACTIONS(4667), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4669), 1, + anon_sym_bit_DASHor2, + ACTIONS(4699), 1, + anon_sym_xor2, + STATE(2214), 1, + sym_comment, + ACTIONS(2648), 2, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(4645), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4649), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4657), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4659), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4663), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4653), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4655), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4643), 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, + [64393] = 27, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1422), 1, + anon_sym_DQUOTE, + ACTIONS(1424), 1, + anon_sym_SQUOTE, + ACTIONS(1426), 1, + anon_sym_BQUOTE, + ACTIONS(1436), 1, + sym_raw_string_begin, + ACTIONS(3112), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4673), 1, + anon_sym_null, + ACTIONS(4677), 1, + sym__newline, + ACTIONS(4681), 1, + anon_sym_DOT_DOT, + ACTIONS(4685), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4687), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4691), 1, + sym_val_date, + ACTIONS(4701), 1, + anon_sym_GT2, + STATE(2215), 1, + sym_comment, + STATE(2257), 1, + aux_sym__types_body_repeat1, + STATE(2281), 1, + aux_sym__collection_body_repeat1, + STATE(3989), 1, + sym__val_number_decimal, + STATE(4809), 1, + sym__collection_entry, + STATE(5355), 1, + sym_val_bool, + STATE(5457), 1, + sym__collection_body, + ACTIONS(4671), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4683), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4689), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(4389), 2, + sym_val_string, + sym__unquoted_in_record, + STATE(5238), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4675), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(3725), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [64485] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1232), 1, + aux_sym_cmd_identifier_token6, + STATE(2216), 1, + sym_comment, + ACTIONS(1230), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1228), 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, + [64533] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1224), 1, + aux_sym_cmd_identifier_token6, + STATE(2217), 1, + sym_comment, + ACTIONS(1222), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1220), 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, + [64581] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4647), 1, + anon_sym_DASH2, + ACTIONS(4661), 1, + anon_sym_PLUS2, + STATE(2218), 1, + sym_comment, + ACTIONS(4645), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4649), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4657), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4659), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4663), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4653), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4643), 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(2648), 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, + [64643] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4633), 1, + anon_sym_DASH2, + ACTIONS(4641), 1, + anon_sym_PLUS2, + STATE(2219), 1, + sym_comment, + ACTIONS(4635), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4637), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4639), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4693), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4697), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4695), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4705), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2648), 7, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(4703), 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, + [64707] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4633), 1, + anon_sym_DASH2, + ACTIONS(4641), 1, + anon_sym_PLUS2, + ACTIONS(4707), 1, + anon_sym_bit_DASHand2, + STATE(2220), 1, + sym_comment, + ACTIONS(4635), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4637), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4639), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4693), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4688), 2, + ACTIONS(4697), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4695), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4705), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2648), 6, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(4703), 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, + [64773] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4713), 1, + aux_sym_cmd_identifier_token6, + STATE(2221), 1, + sym_comment, + ACTIONS(4711), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4709), 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, + [64821] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4719), 1, + aux_sym_cmd_identifier_token6, + STATE(2222), 1, + sym_comment, + ACTIONS(4717), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4715), 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, + [64869] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4633), 1, + anon_sym_DASH2, + ACTIONS(4641), 1, + anon_sym_PLUS2, + ACTIONS(4707), 1, + anon_sym_bit_DASHand2, + ACTIONS(4721), 1, + anon_sym_bit_DASHxor2, + STATE(2223), 1, + sym_comment, + ACTIONS(4635), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4692), 2, + ACTIONS(4637), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4694), 2, + ACTIONS(4639), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4698), 2, + ACTIONS(4693), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4697), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4690), 4, + ACTIONS(4695), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2551), 19, + ACTIONS(4705), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2648), 5, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + ACTIONS(4703), 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, + [64937] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4727), 1, + aux_sym_cmd_identifier_token6, + STATE(2224), 1, + sym_comment, + ACTIONS(4725), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4723), 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, + [64985] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4647), 1, + anon_sym_DASH2, + ACTIONS(4661), 1, + anon_sym_PLUS2, + STATE(2225), 1, + sym_comment, + ACTIONS(2650), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4649), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4657), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4659), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2648), 25, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -195418,40 +197076,140 @@ 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, + [65041] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4733), 1, + aux_sym_cmd_identifier_token6, + STATE(2226), 1, + sym_comment, + ACTIONS(4731), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4729), 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, + [65089] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4647), 1, + anon_sym_DASH2, + ACTIONS(4661), 1, + anon_sym_PLUS2, + STATE(2227), 1, + sym_comment, + ACTIONS(4645), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4649), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4657), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4659), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4663), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4653), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4655), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + ACTIONS(2648), 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, - [64649] = 10, + ACTIONS(4643), 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, + [65153] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4686), 1, + ACTIONS(4633), 1, anon_sym_DASH2, - ACTIONS(4696), 1, + ACTIONS(4641), 1, anon_sym_PLUS2, - STATE(2213), 1, + STATE(2228), 1, sym_comment, - ACTIONS(2553), 2, + ACTIONS(2650), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4688), 2, + ACTIONS(4635), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4692), 2, + ACTIONS(4637), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4694), 2, + ACTIONS(4639), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4698), 2, + ACTIONS(4697), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2551), 23, + ACTIONS(2648), 23, anon_sym_in, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -195473,27 +197231,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [64707] = 7, + [65211] = 11, ACTIONS(3), 1, anon_sym_POUND, - STATE(2214), 1, + ACTIONS(4647), 1, + anon_sym_DASH2, + ACTIONS(4661), 1, + anon_sym_PLUS2, + STATE(2229), 1, sym_comment, - ACTIONS(4688), 2, + ACTIONS(4645), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4649), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4692), 2, + ACTIONS(4657), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4694), 2, + ACTIONS(4659), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2553), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2551), 26, + ACTIONS(4663), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4653), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2648), 19, anon_sym_in, - anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -195505,34 +197273,32 @@ 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, - [64759] = 5, + [65271] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2215), 1, + STATE(2230), 1, sym_comment, - ACTIONS(4692), 2, + ACTIONS(4649), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4657), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2553), 5, + ACTIONS(4659), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2650), 3, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2551), 28, + ACTIONS(2648), 26, anon_sym_in, anon_sym_DASH2, anon_sym_LBRACE, @@ -195554,156 +197320,99 @@ static const uint16_t ts_small_parse_table[] = { 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, - [64807] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4686), 1, - anon_sym_DASH2, - ACTIONS(4696), 1, - anon_sym_PLUS2, - ACTIONS(4704), 1, - anon_sym_bit_DASHand2, - ACTIONS(4706), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4708), 1, - anon_sym_bit_DASHor2, - STATE(2216), 1, - sym_comment, - ACTIONS(4684), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4688), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4692), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4694), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4698), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2551), 4, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4690), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4702), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4700), 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, - [64877] = 4, + [65323] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2217), 1, + STATE(2231), 1, sym_comment, - ACTIONS(2144), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2142), 32, + ACTIONS(2772), 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(2774), 28, 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, + 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, - [64923] = 17, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + [65369] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4686), 1, + ACTIONS(4633), 1, anon_sym_DASH2, - ACTIONS(4696), 1, + ACTIONS(4641), 1, anon_sym_PLUS2, - ACTIONS(4704), 1, + ACTIONS(4707), 1, anon_sym_bit_DASHand2, - ACTIONS(4706), 1, + ACTIONS(4721), 1, anon_sym_bit_DASHxor2, - ACTIONS(4708), 1, + ACTIONS(4735), 1, anon_sym_bit_DASHor2, - ACTIONS(4710), 1, - anon_sym_and2, - STATE(2218), 1, + STATE(2232), 1, sym_comment, - ACTIONS(4684), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4688), 2, + ACTIONS(4635), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4692), 2, + ACTIONS(4637), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4694), 2, + ACTIONS(4639), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4698), 2, + ACTIONS(4693), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4697), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2551), 3, - anon_sym_LBRACE, + ACTIONS(2648), 4, + anon_sym_EQ_GT, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4690), 4, + ACTIONS(4695), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4702), 4, + ACTIONS(4705), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4700), 8, + ACTIONS(4703), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -195712,54 +197421,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [64995] = 18, + [65439] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4686), 1, + ACTIONS(4633), 1, anon_sym_DASH2, - ACTIONS(4696), 1, + ACTIONS(4641), 1, anon_sym_PLUS2, - ACTIONS(4704), 1, + ACTIONS(4707), 1, anon_sym_bit_DASHand2, - ACTIONS(4706), 1, + ACTIONS(4721), 1, anon_sym_bit_DASHxor2, - ACTIONS(4708), 1, + ACTIONS(4735), 1, anon_sym_bit_DASHor2, - ACTIONS(4710), 1, + ACTIONS(4737), 1, anon_sym_and2, - ACTIONS(4712), 1, - anon_sym_xor2, - STATE(2219), 1, + STATE(2233), 1, sym_comment, - ACTIONS(2551), 2, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(4684), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4688), 2, + ACTIONS(4635), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4692), 2, + ACTIONS(4637), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4694), 2, + ACTIONS(4639), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4698), 2, + ACTIONS(4693), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4697), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4690), 4, + ACTIONS(2648), 3, + anon_sym_EQ_GT, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(4695), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4702), 4, + ACTIONS(4705), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4700), 8, + ACTIONS(4703), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -195768,79 +197476,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [65069] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2220), 1, - sym_comment, - ACTIONS(1864), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1862), 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, - [65115] = 12, + [65511] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4686), 1, - anon_sym_DASH2, - ACTIONS(4696), 1, - anon_sym_PLUS2, - STATE(2221), 1, + STATE(2234), 1, sym_comment, - ACTIONS(4684), 2, + ACTIONS(4657), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2650), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4688), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(4692), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4694), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4698), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4690), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4700), 8, + anon_sym_PLUS2, + ACTIONS(2648), 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, @@ -195848,45 +197504,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2551), 11, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_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, - [65177] = 9, + [65559] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4686), 1, + ACTIONS(4647), 1, anon_sym_DASH2, - ACTIONS(4696), 1, + ACTIONS(4661), 1, anon_sym_PLUS2, - STATE(2222), 1, + ACTIONS(4665), 1, + anon_sym_bit_DASHand2, + STATE(2235), 1, sym_comment, - ACTIONS(2553), 2, + ACTIONS(4645), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4688), 2, + ACTIONS(4649), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4692), 2, + ACTIONS(4657), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4694), 2, + ACTIONS(4659), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2551), 25, - anon_sym_in, + ACTIONS(4663), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4653), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4655), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2648), 6, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(4643), 8, + anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -195894,105 +197571,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + [65625] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4633), 1, + anon_sym_DASH2, + ACTIONS(4641), 1, + anon_sym_PLUS2, + ACTIONS(4707), 1, + anon_sym_bit_DASHand2, + ACTIONS(4721), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4735), 1, + anon_sym_bit_DASHor2, + ACTIONS(4737), 1, + anon_sym_and2, + ACTIONS(4739), 1, + anon_sym_xor2, + STATE(2236), 1, + sym_comment, + ACTIONS(2648), 2, + anon_sym_EQ_GT, + anon_sym_or2, + ACTIONS(4635), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4637), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4639), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4693), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4697), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4695), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(4705), 4, 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, - [65233] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1000), 1, - aux_sym_cmd_identifier_token6, - STATE(2223), 1, - sym_comment, - ACTIONS(998), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(996), 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, - [65281] = 13, + ACTIONS(4703), 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, + [65699] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4686), 1, + ACTIONS(4633), 1, anon_sym_DASH2, - ACTIONS(4696), 1, + ACTIONS(4641), 1, anon_sym_PLUS2, - STATE(2224), 1, + STATE(2237), 1, sym_comment, - ACTIONS(4684), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4688), 2, + ACTIONS(4635), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4692), 2, + ACTIONS(4637), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4694), 2, + ACTIONS(4639), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4698), 2, + ACTIONS(4693), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4697), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4690), 4, + ACTIONS(4695), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4702), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2551), 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(4700), 8, + ACTIONS(4703), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -196001,7 +197665,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [65345] = 27, + ACTIONS(2648), 11, + anon_sym_EQ_GT, + 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, + [65761] = 27, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1422), 1, @@ -196012,104 +197688,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(1436), 1, sym_raw_string_begin, - ACTIONS(3092), 1, + ACTIONS(3112), 1, aux_sym__unquoted_in_record_token1, - ACTIONS(4619), 1, + ACTIONS(4673), 1, anon_sym_null, - ACTIONS(4623), 1, + ACTIONS(4677), 1, sym__newline, - ACTIONS(4627), 1, + ACTIONS(4681), 1, anon_sym_DOT_DOT, - ACTIONS(4631), 1, + ACTIONS(4685), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4633), 1, + ACTIONS(4687), 1, aux_sym__val_number_decimal_token2, - ACTIONS(4637), 1, + ACTIONS(4691), 1, sym_val_date, - ACTIONS(4714), 1, + ACTIONS(4741), 1, anon_sym_GT2, - STATE(2225), 1, + STATE(2238), 1, sym_comment, - STATE(2254), 1, + STATE(2257), 1, aux_sym__types_body_repeat1, - STATE(2280), 1, + STATE(2281), 1, aux_sym__collection_body_repeat1, - STATE(3961), 1, + STATE(3989), 1, sym__val_number_decimal, - STATE(4752), 1, + STATE(4809), 1, sym__collection_entry, - STATE(5170), 1, + STATE(5355), 1, sym_val_bool, - STATE(5343), 1, + STATE(5463), 1, sym__collection_body, - ACTIONS(4617), 2, + ACTIONS(4671), 2, anon_sym_true, anon_sym_false, - ACTIONS(4629), 2, + ACTIONS(4683), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(4635), 2, + ACTIONS(4689), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4292), 2, + STATE(4389), 2, sym_val_string, sym__unquoted_in_record, - STATE(5033), 2, + STATE(5238), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(4621), 3, + ACTIONS(4675), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(3665), 4, + STATE(3725), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [65437] = 14, + [65853] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4686), 1, + ACTIONS(4647), 1, anon_sym_DASH2, - ACTIONS(4696), 1, + ACTIONS(4661), 1, anon_sym_PLUS2, - ACTIONS(4704), 1, + ACTIONS(4665), 1, anon_sym_bit_DASHand2, - STATE(2226), 1, + ACTIONS(4667), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4669), 1, + anon_sym_bit_DASHor2, + STATE(2239), 1, sym_comment, - ACTIONS(4684), 2, + ACTIONS(4645), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4688), 2, + ACTIONS(4649), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4692), 2, + ACTIONS(4657), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4694), 2, + ACTIONS(4659), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4698), 2, + ACTIONS(4663), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4690), 4, + ACTIONS(2648), 4, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(4653), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4702), 4, + ACTIONS(4655), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2551), 6, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4700), 8, + ACTIONS(4643), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -196118,52 +197796,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [65503] = 15, + [65923] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4686), 1, + ACTIONS(4647), 1, anon_sym_DASH2, - ACTIONS(4696), 1, + ACTIONS(4661), 1, anon_sym_PLUS2, - ACTIONS(4704), 1, - anon_sym_bit_DASHand2, - ACTIONS(4706), 1, - anon_sym_bit_DASHxor2, - STATE(2227), 1, + STATE(2240), 1, sym_comment, - ACTIONS(4684), 2, + ACTIONS(2650), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4688), 2, + ACTIONS(4649), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4692), 2, + ACTIONS(4657), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4694), 2, + ACTIONS(4659), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4698), 2, + ACTIONS(4663), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4690), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4702), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2551), 5, + ACTIONS(2648), 23, + anon_sym_in, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHor2, - ACTIONS(4700), 8, - anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -196171,748 +197833,224 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [65571] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1036), 1, - aux_sym_cmd_identifier_token6, - STATE(2228), 1, - sym_comment, - ACTIONS(1034), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1032), 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, - [65619] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2229), 1, - sym_comment, - ACTIONS(4716), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(4718), 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, - [65665] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2230), 1, - sym_comment, - ACTIONS(4720), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(4722), 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, - [65711] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4728), 1, - aux_sym_cmd_identifier_token6, - STATE(2231), 1, - sym_comment, - ACTIONS(4726), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4724), 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, - [65759] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2232), 1, - sym_comment, - ACTIONS(4730), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(4732), 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, - [65805] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2233), 1, - sym_comment, - ACTIONS(2622), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2620), 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, - [65851] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4738), 1, - aux_sym_cmd_identifier_token6, - STATE(2234), 1, - sym_comment, - ACTIONS(4736), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4734), 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, - [65899] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4744), 1, - aux_sym_cmd_identifier_token6, - STATE(2235), 1, - sym_comment, - ACTIONS(4742), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4740), 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, - [65947] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2236), 1, - sym_comment, - ACTIONS(1914), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1912), 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, - [65993] = 27, + anon_sym_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, + [65981] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1422), 1, - anon_sym_DQUOTE, - ACTIONS(1424), 1, - anon_sym_SQUOTE, - ACTIONS(1426), 1, - anon_sym_BQUOTE, - ACTIONS(1436), 1, - sym_raw_string_begin, - ACTIONS(3092), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(4619), 1, - anon_sym_null, - ACTIONS(4623), 1, + ACTIONS(4743), 1, sym__newline, - ACTIONS(4627), 1, - anon_sym_DOT_DOT, - ACTIONS(4631), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4633), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4637), 1, - sym_val_date, - ACTIONS(4746), 1, - anon_sym_GT2, - STATE(2237), 1, - sym_comment, - STATE(2254), 1, - aux_sym__types_body_repeat1, - STATE(2280), 1, - aux_sym__collection_body_repeat1, - STATE(3961), 1, - sym__val_number_decimal, - STATE(4752), 1, - sym__collection_entry, - STATE(5067), 1, - sym__collection_body, - STATE(5170), 1, - sym_val_bool, - ACTIONS(4617), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4629), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4635), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4292), 2, - sym_val_string, - sym__unquoted_in_record, - STATE(5033), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4621), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(3665), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [66085] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2238), 1, - sym_comment, - ACTIONS(2583), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2581), 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, - [66131] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2239), 1, - sym_comment, - ACTIONS(1880), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1878), 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, - [66177] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2240), 1, - sym_comment, - ACTIONS(2595), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2593), 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, - [66223] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2241), 1, - sym_comment, - ACTIONS(1894), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1892), 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, - [66269] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2242), 1, + STATE(2241), 2, + aux_sym__repeat_newline, sym_comment, - ACTIONS(2198), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2196), 32, + ACTIONS(1867), 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(1862), 25, 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_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, - [66315] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [66029] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4647), 1, + anon_sym_DASH2, + ACTIONS(4661), 1, + anon_sym_PLUS2, + ACTIONS(4665), 1, + anon_sym_bit_DASHand2, + ACTIONS(4667), 1, + anon_sym_bit_DASHxor2, + STATE(2242), 1, + sym_comment, + ACTIONS(4645), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4649), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4657), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4659), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4663), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4653), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4655), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2648), 5, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + ACTIONS(4643), 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, + [66097] = 7, ACTIONS(3), 1, anon_sym_POUND, STATE(2243), 1, sym_comment, - ACTIONS(2206), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, + ACTIONS(4635), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4637), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4639), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2650), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2648), 26, anon_sym_in, - ACTIONS(2204), 32, + 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_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [66149] = 27, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1422), 1, + anon_sym_DQUOTE, + ACTIONS(1424), 1, + anon_sym_SQUOTE, + ACTIONS(1426), 1, + anon_sym_BQUOTE, + ACTIONS(1436), 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(3112), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4673), 1, anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, + ACTIONS(4677), 1, + sym__newline, + ACTIONS(4681), 1, + anon_sym_DOT_DOT, + ACTIONS(4685), 1, aux_sym__val_number_decimal_token1, + ACTIONS(4687), 1, 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, - [66361] = 4, - ACTIONS(3), 1, - anon_sym_POUND, + ACTIONS(4691), 1, + sym_val_date, + ACTIONS(4746), 1, + anon_sym_GT2, STATE(2244), 1, sym_comment, - ACTIONS(2666), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2664), 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, + STATE(2257), 1, + aux_sym__types_body_repeat1, + STATE(2281), 1, + aux_sym__collection_body_repeat1, + STATE(3989), 1, + sym__val_number_decimal, + STATE(4809), 1, + sym__collection_entry, + STATE(5355), 1, + sym_val_bool, + STATE(5375), 1, + sym__collection_body, + ACTIONS(4671), 2, anon_sym_true, anon_sym_false, - anon_sym_null, + ACTIONS(4683), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4689), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(4389), 2, + sym_val_string, + sym__unquoted_in_record, + STATE(5238), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4675), 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, - [66407] = 5, + STATE(3725), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [66241] = 5, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(4752), 1, @@ -196955,121 +198093,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [66455] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2246), 1, - sym_comment, - ACTIONS(2148), 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(2146), 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, - sym__newline, - 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, - [66500] = 18, + [66289] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2840), 1, + ACTIONS(4647), 1, anon_sym_DASH2, - ACTIONS(2846), 1, + ACTIONS(4651), 1, + anon_sym_and2, + ACTIONS(4661), 1, anon_sym_PLUS2, - ACTIONS(2850), 1, + ACTIONS(4665), 1, anon_sym_bit_DASHand2, - ACTIONS(2852), 1, + ACTIONS(4667), 1, anon_sym_bit_DASHxor2, - ACTIONS(2854), 1, + ACTIONS(4669), 1, anon_sym_bit_DASHor2, - ACTIONS(2856), 1, - anon_sym_and2, - ACTIONS(2858), 1, + ACTIONS(4699), 1, anon_sym_xor2, ACTIONS(4754), 1, anon_sym_or2, - STATE(2247), 1, + STATE(2246), 1, sym_comment, - ACTIONS(2823), 2, + ACTIONS(4645), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4649), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(2825), 2, + ACTIONS(4657), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2827), 2, + ACTIONS(4659), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2838), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2848), 2, + ACTIONS(4663), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2842), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2844), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2836), 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, - [66573] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2248), 1, - sym_comment, - ACTIONS(4760), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4762), 4, + ACTIONS(4653), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4764), 4, + ACTIONS(4655), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4756), 8, + ACTIONS(4643), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -197078,70 +198148,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(4758), 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, - [66624] = 18, + [66362] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3908), 1, + ACTIONS(2892), 1, anon_sym_DASH2, - ACTIONS(3918), 1, + ACTIONS(2902), 1, anon_sym_PLUS2, - ACTIONS(3926), 1, + ACTIONS(2914), 1, anon_sym_bit_DASHand2, - ACTIONS(3928), 1, + ACTIONS(2916), 1, anon_sym_bit_DASHxor2, - ACTIONS(3930), 1, + ACTIONS(2918), 1, anon_sym_bit_DASHor2, - ACTIONS(3932), 1, + ACTIONS(2920), 1, anon_sym_and2, - ACTIONS(3934), 1, + ACTIONS(2926), 1, anon_sym_xor2, - ACTIONS(4766), 1, + ACTIONS(4756), 1, anon_sym_or2, - STATE(2249), 1, + STATE(2247), 1, sym_comment, - ACTIONS(3906), 2, + ACTIONS(2890), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3910), 2, + ACTIONS(2894), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3914), 2, + ACTIONS(2898), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3916), 2, + ACTIONS(2900), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3920), 2, + ACTIONS(2904), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3912), 4, + ACTIONS(2896), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3924), 4, + ACTIONS(2912), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3922), 8, + ACTIONS(2910), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -197150,53 +198203,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [66697] = 18, + [66435] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4641), 1, + ACTIONS(3020), 1, anon_sym_DASH2, - ACTIONS(4651), 1, + ACTIONS(3030), 1, anon_sym_PLUS2, - ACTIONS(4659), 1, + ACTIONS(3038), 1, anon_sym_bit_DASHand2, - ACTIONS(4661), 1, + ACTIONS(3040), 1, anon_sym_bit_DASHxor2, - ACTIONS(4663), 1, + ACTIONS(3042), 1, anon_sym_bit_DASHor2, - ACTIONS(4665), 1, + ACTIONS(3044), 1, anon_sym_and2, - ACTIONS(4667), 1, + ACTIONS(3046), 1, anon_sym_xor2, - ACTIONS(4768), 1, + ACTIONS(4758), 1, anon_sym_or2, - STATE(2250), 1, + STATE(2248), 1, sym_comment, - ACTIONS(4639), 2, + ACTIONS(3018), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4643), 2, + ACTIONS(3022), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4647), 2, + ACTIONS(3026), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4649), 2, + ACTIONS(3028), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4653), 2, + ACTIONS(3032), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4645), 4, + ACTIONS(3024), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4657), 4, + ACTIONS(3036), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4655), 8, + ACTIONS(3034), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -197205,53 +198258,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [66770] = 18, + [66508] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3962), 1, + ACTIONS(3928), 1, anon_sym_DASH2, - ACTIONS(3972), 1, + ACTIONS(3938), 1, anon_sym_PLUS2, - ACTIONS(3980), 1, + ACTIONS(3946), 1, anon_sym_bit_DASHand2, - ACTIONS(3982), 1, + ACTIONS(3948), 1, anon_sym_bit_DASHxor2, - ACTIONS(3984), 1, + ACTIONS(3950), 1, anon_sym_bit_DASHor2, - ACTIONS(3986), 1, + ACTIONS(3952), 1, anon_sym_and2, - ACTIONS(3988), 1, + ACTIONS(3954), 1, anon_sym_xor2, - ACTIONS(4770), 1, + ACTIONS(4760), 1, anon_sym_or2, - STATE(2251), 1, + STATE(2249), 1, sym_comment, - ACTIONS(3960), 2, + ACTIONS(3926), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3964), 2, + ACTIONS(3930), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3968), 2, + ACTIONS(3934), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3970), 2, + ACTIONS(3936), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3974), 2, + ACTIONS(3940), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3966), 4, + ACTIONS(3932), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3978), 4, + ACTIONS(3944), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3976), 8, + ACTIONS(3942), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -197260,53 +198313,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [66843] = 18, + [66581] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3018), 1, + ACTIONS(4633), 1, anon_sym_DASH2, - ACTIONS(3030), 1, + ACTIONS(4641), 1, anon_sym_PLUS2, - ACTIONS(3034), 1, + ACTIONS(4707), 1, anon_sym_bit_DASHand2, - ACTIONS(3036), 1, - anon_sym_and2, - ACTIONS(3038), 1, + ACTIONS(4721), 1, anon_sym_bit_DASHxor2, - ACTIONS(3040), 1, + ACTIONS(4735), 1, anon_sym_bit_DASHor2, - ACTIONS(3046), 1, + ACTIONS(4737), 1, + anon_sym_and2, + ACTIONS(4739), 1, anon_sym_xor2, - ACTIONS(4772), 1, + ACTIONS(4762), 1, anon_sym_or2, - STATE(2252), 1, + STATE(2250), 1, sym_comment, - ACTIONS(3016), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3020), 2, + ACTIONS(4635), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3026), 2, + ACTIONS(4637), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3028), 2, + ACTIONS(4639), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3032), 2, + ACTIONS(4693), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4697), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3022), 4, + ACTIONS(4695), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3024), 4, + ACTIONS(4705), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3014), 8, + ACTIONS(4703), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -197315,53 +198368,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [66916] = 18, + [66654] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4686), 1, + ACTIONS(3974), 1, anon_sym_DASH2, - ACTIONS(4696), 1, + ACTIONS(3984), 1, anon_sym_PLUS2, - ACTIONS(4704), 1, + ACTIONS(3992), 1, anon_sym_bit_DASHand2, - ACTIONS(4706), 1, + ACTIONS(3994), 1, anon_sym_bit_DASHxor2, - ACTIONS(4708), 1, + ACTIONS(3996), 1, anon_sym_bit_DASHor2, - ACTIONS(4710), 1, + ACTIONS(3998), 1, anon_sym_and2, - ACTIONS(4712), 1, + ACTIONS(4000), 1, anon_sym_xor2, - ACTIONS(4774), 1, + ACTIONS(4764), 1, anon_sym_or2, - STATE(2253), 1, + STATE(2251), 1, sym_comment, - ACTIONS(4684), 2, + ACTIONS(3972), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4688), 2, + ACTIONS(3976), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4692), 2, + ACTIONS(3980), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4694), 2, + ACTIONS(3982), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4698), 2, + ACTIONS(3986), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4690), 4, + ACTIONS(3978), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4702), 4, + ACTIONS(3990), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4700), 8, + ACTIONS(3988), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -197370,68 +198423,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [66989] = 25, + [66727] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1422), 1, - anon_sym_DQUOTE, - ACTIONS(1424), 1, - anon_sym_SQUOTE, - ACTIONS(1426), 1, - anon_sym_BQUOTE, - ACTIONS(1436), 1, - sym_raw_string_begin, - ACTIONS(3092), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(4619), 1, - anon_sym_null, - ACTIONS(4623), 1, - sym__newline, - ACTIONS(4627), 1, + STATE(2252), 1, + sym_comment, + ACTIONS(1968), 8, + anon_sym_DOLLAR, + anon_sym_DASH2, anon_sym_DOT_DOT, - ACTIONS(4631), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4633), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4637), 1, - sym_val_date, - STATE(2254), 1, - sym_comment, - STATE(2282), 1, - aux_sym__collection_body_repeat1, - STATE(2438), 1, - aux_sym__types_body_repeat1, - STATE(3961), 1, - sym__val_number_decimal, - STATE(4544), 1, - sym__collection_entry, - STATE(5170), 1, - sym_val_bool, - ACTIONS(4617), 2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1966), 26, + sym_raw_string_begin, anon_sym_true, anon_sym_false, - ACTIONS(4629), 2, + 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, + aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(4635), 2, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4292), 2, - sym_val_string, - sym__unquoted_in_record, - STATE(5033), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4621), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(3665), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [67075] = 7, + 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, + [66772] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2253), 1, + sym_comment, + ACTIONS(4770), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4772), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4774), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4766), 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(4768), 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, + [66823] = 7, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(4778), 1, @@ -197440,9 +198517,9 @@ static const uint16_t ts_small_parse_table[] = { sym__entry_separator, ACTIONS(4782), 1, sym_raw_string_begin, - STATE(2255), 1, + STATE(2254), 1, sym_comment, - STATE(2260), 1, + STATE(2255), 1, aux_sym__types_body_repeat2, ACTIONS(4776), 29, anon_sym_true, @@ -197474,20 +198551,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym_unquoted_token1, - [67125] = 7, + [66873] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4780), 1, - sym__entry_separator, - ACTIONS(4782), 1, + ACTIONS(3710), 1, sym_raw_string_begin, ACTIONS(4784), 1, - anon_sym_RBRACE, - STATE(2256), 1, + sym__entry_separator, + STATE(2255), 2, sym_comment, - STATE(2260), 1, aux_sym__types_body_repeat2, - ACTIONS(4776), 29, + ACTIONS(3705), 30, anon_sym_true, anon_sym_false, anon_sym_null, @@ -197498,6 +198572,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, @@ -197517,20 +198592,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym_unquoted_token1, - [67175] = 7, - ACTIONS(103), 1, + [66919] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4780), 1, - sym__entry_separator, - ACTIONS(4782), 1, - sym_raw_string_begin, - ACTIONS(4786), 1, - anon_sym_RBRACE, - STATE(2257), 1, + ACTIONS(4787), 1, + sym__newline, + STATE(2256), 2, + aux_sym__repeat_newline, sym_comment, - STATE(2260), 1, - aux_sym__types_body_repeat2, - ACTIONS(4776), 29, + ACTIONS(1867), 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(1862), 24, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -197539,46 +198618,101 @@ static const uint16_t ts_small_parse_table[] = { 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, - [67225] = 7, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [66965] = 25, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1422), 1, + anon_sym_DQUOTE, + ACTIONS(1424), 1, + anon_sym_SQUOTE, + ACTIONS(1426), 1, + anon_sym_BQUOTE, + ACTIONS(1436), 1, + sym_raw_string_begin, + ACTIONS(3112), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4673), 1, + anon_sym_null, + ACTIONS(4677), 1, + sym__newline, + ACTIONS(4681), 1, + anon_sym_DOT_DOT, + ACTIONS(4685), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4687), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4691), 1, + sym_val_date, + STATE(2257), 1, + sym_comment, + STATE(2285), 1, + aux_sym__collection_body_repeat1, + STATE(2452), 1, + aux_sym__types_body_repeat1, + STATE(3989), 1, + sym__val_number_decimal, + STATE(4786), 1, + sym__collection_entry, + STATE(5355), 1, + sym_val_bool, + ACTIONS(4671), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4683), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4689), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(4389), 2, + sym_val_string, + sym__unquoted_in_record, + STATE(5238), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4675), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(3725), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [67051] = 7, ACTIONS(3), 1, anon_sym_POUND, STATE(2258), 1, sym_comment, - ACTIONS(4790), 2, + ACTIONS(4792), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4792), 4, + ACTIONS(4794), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4794), 4, + ACTIONS(4796), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4788), 8, + ACTIONS(4790), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -197587,7 +198721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(4758), 15, + ACTIONS(4768), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -197603,24 +198737,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [67275] = 5, - ACTIONS(3), 1, + [67101] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4796), 1, - sym__newline, - STATE(2259), 2, - aux_sym__repeat_newline, - sym_comment, - ACTIONS(1971), 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(1966), 24, + ACTIONS(4780), 1, + sym__entry_separator, + ACTIONS(4782), 1, sym_raw_string_begin, + ACTIONS(4798), 1, + anon_sym_RBRACE, + STATE(2255), 1, + aux_sym__types_body_repeat2, + STATE(2259), 1, + sym_comment, + ACTIONS(4776), 29, anon_sym_true, anon_sym_false, anon_sym_null, @@ -197629,32 +198759,41 @@ static const uint16_t ts_small_parse_table[] = { 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, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [67321] = 5, + aux_sym_unquoted_token1, + [67151] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3720), 1, - sym_raw_string_begin, - ACTIONS(4799), 1, + ACTIONS(4780), 1, sym__entry_separator, - STATE(2260), 2, - sym_comment, + ACTIONS(4782), 1, + sym_raw_string_begin, + ACTIONS(4800), 1, + anon_sym_RBRACE, + STATE(2255), 1, aux_sym__types_body_repeat2, - ACTIONS(3715), 30, + STATE(2260), 1, + sym_comment, + ACTIONS(4776), 29, anon_sym_true, anon_sym_false, anon_sym_null, @@ -197665,7 +198804,6 @@ 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, @@ -197685,16 +198823,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym_unquoted_token1, - [67367] = 7, + [67201] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2261), 1, + sym_comment, + ACTIONS(1512), 3, + anon_sym_EQ, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1514), 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, + [67244] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2262), 1, + sym_comment, + ACTIONS(1528), 3, + anon_sym_EQ, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1530), 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, + [67287] = 7, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(4806), 1, sym__entry_separator, ACTIONS(4808), 1, sym_raw_string_begin, - STATE(2261), 1, + STATE(2263), 1, sym_comment, - STATE(2276), 1, + STATE(2278), 1, aux_sym__types_body_repeat2, ACTIONS(4804), 2, anon_sym_RBRACK, @@ -197727,18 +198943,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [67416] = 7, + [67336] = 7, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(4806), 1, sym__entry_separator, ACTIONS(4808), 1, sym_raw_string_begin, - STATE(2262), 1, + STATE(2264), 1, sym_comment, - STATE(2276), 1, + STATE(2278), 1, aux_sym__types_body_repeat2, - ACTIONS(4810), 2, + ACTIONS(4804), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, ACTIONS(4802), 27, @@ -197769,18 +198985,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [67465] = 7, + [67385] = 7, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(4806), 1, sym__entry_separator, ACTIONS(4808), 1, sym_raw_string_begin, - STATE(2263), 1, + STATE(2265), 1, sym_comment, - STATE(2276), 1, + STATE(2278), 1, aux_sym__types_body_repeat2, - ACTIONS(4812), 2, + ACTIONS(4810), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, ACTIONS(4802), 27, @@ -197811,18 +199027,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [67514] = 6, + [67434] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2266), 1, + sym_comment, + ACTIONS(1504), 3, + anon_sym_EQ, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1506), 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, + [67477] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4780), 1, + ACTIONS(4806), 1, sym__entry_separator, - ACTIONS(4782), 1, + ACTIONS(4808), 1, sym_raw_string_begin, - STATE(2260), 1, - aux_sym__types_body_repeat2, - STATE(2264), 1, + STATE(2267), 1, sym_comment, - ACTIONS(4776), 29, + STATE(2278), 1, + aux_sym__types_body_repeat2, + ACTIONS(4810), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(4802), 27, anon_sym_true, anon_sym_false, anon_sym_null, @@ -197833,8 +199091,6 @@ 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, @@ -197851,60 +199107,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - aux_sym_unquoted_token1, - [67561] = 8, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + [67526] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4424), 1, - sym__newline, - ACTIONS(4428), 1, - anon_sym_LBRACK, - ACTIONS(4433), 1, - anon_sym_DOT_DOT, - STATE(2265), 1, + STATE(2268), 1, sym_comment, - ACTIONS(4431), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(2958), 5, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2960), 22, + ACTIONS(3756), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(3754), 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, - [67612] = 4, + aux_sym_unquoted_token1, + [67569] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2266), 1, + STATE(2269), 1, sym_comment, - ACTIONS(1519), 3, + ACTIONS(1520), 3, anon_sym_EQ, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1521), 29, + ACTIONS(1522), 29, anon_sym_if, anon_sym_in, sym__newline, @@ -197934,55 +199186,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON2, anon_sym_QMARK2, anon_sym_BANG, - [67655] = 4, - ACTIONS(103), 1, + [67612] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2267), 1, + STATE(2270), 1, sym_comment, - ACTIONS(3756), 2, + ACTIONS(1968), 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(1966), 25, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(3754), 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_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, - [67698] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [67655] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2268), 1, + STATE(2271), 1, sym_comment, - ACTIONS(1523), 3, + ACTIONS(1500), 3, anon_sym_EQ, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1525), 29, + ACTIONS(1502), 29, anon_sym_if, anon_sym_in, sym__newline, @@ -198012,18 +199264,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON2, anon_sym_QMARK2, anon_sym_BANG, - [67741] = 7, + [67698] = 7, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(4806), 1, sym__entry_separator, ACTIONS(4808), 1, sym_raw_string_begin, - STATE(2269), 1, + STATE(2272), 1, sym_comment, - STATE(2276), 1, + STATE(2278), 1, aux_sym__types_body_repeat2, - ACTIONS(4814), 2, + ACTIONS(4812), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, ACTIONS(4802), 27, @@ -198054,12 +199306,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [67790] = 5, + [67747] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4816), 1, + ACTIONS(4814), 1, sym__newline, - STATE(2270), 2, + STATE(2273), 2, sym_comment, aux_sym__types_body_repeat1, ACTIONS(3758), 7, @@ -198094,63 +199346,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [67835] = 7, - ACTIONS(103), 1, + [67792] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4806), 1, - sym__entry_separator, - ACTIONS(4808), 1, - sym_raw_string_begin, - STATE(2271), 1, + STATE(2274), 1, sym_comment, - STATE(2276), 1, - aux_sym__types_body_repeat2, - ACTIONS(4804), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(4802), 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, + ACTIONS(1508), 3, + anon_sym_EQ, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1510), 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_DOLLAR, + anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, 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, - aux_sym__unquoted_in_list_token1, - [67884] = 7, + 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, + [67835] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4806), 1, + ACTIONS(4780), 1, sym__entry_separator, - ACTIONS(4808), 1, + ACTIONS(4782), 1, sym_raw_string_begin, - STATE(2272), 1, - sym_comment, - STATE(2276), 1, + STATE(2255), 1, aux_sym__types_body_repeat2, - ACTIONS(4814), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(4802), 27, + STATE(2275), 1, + sym_comment, + ACTIONS(4776), 29, anon_sym_true, anon_sym_false, anon_sym_null, @@ -198161,6 +199407,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, @@ -198177,21 +199425,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - aux_sym__unquoted_in_list_token1, - [67933] = 4, + aux_sym_unquoted_token1, + [67882] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(2273), 1, - sym_comment, - ACTIONS(2148), 7, - anon_sym_DOLLAR, + ACTIONS(4457), 1, + sym__newline, + ACTIONS(4461), 1, + anon_sym_LBRACK, + ACTIONS(4489), 1, anon_sym_DOT_DOT, + STATE(2276), 1, + sym_comment, + ACTIONS(4464), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(2772), 5, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_record_token1, - ACTIONS(2146), 25, + aux_sym__unquoted_in_list_token1, + ACTIONS(2774), 22, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -198199,9 +199454,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_LBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -198215,97 +199469,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [67976] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2274), 1, - sym_comment, - ACTIONS(1531), 3, - anon_sym_EQ, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1533), 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, - [68019] = 4, - ACTIONS(3), 1, + [67933] = 7, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2275), 1, + ACTIONS(4806), 1, + sym__entry_separator, + ACTIONS(4808), 1, + sym_raw_string_begin, + STATE(2277), 1, sym_comment, - ACTIONS(1535), 3, - anon_sym_EQ, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1537), 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, - [68062] = 5, + STATE(2278), 1, + aux_sym__types_body_repeat2, + ACTIONS(4817), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(4802), 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, + aux_sym__val_number_decimal_token2, + aux_sym__val_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, + [67982] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3720), 1, + ACTIONS(3710), 1, sym_raw_string_begin, ACTIONS(4819), 1, sym__entry_separator, - STATE(2276), 2, + STATE(2278), 2, sym_comment, aux_sym__types_body_repeat2, - ACTIONS(3715), 29, + ACTIONS(3705), 29, anon_sym_true, anon_sym_false, anon_sym_null, @@ -198335,123 +199551,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [68107] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2277), 1, - sym_comment, - ACTIONS(1539), 3, - anon_sym_EQ, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1541), 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, - [68150] = 4, - ACTIONS(3), 1, + [68027] = 6, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(4806), 1, + sym__entry_separator, + ACTIONS(4808), 1, + sym_raw_string_begin, STATE(2278), 1, + aux_sym__types_body_repeat2, + STATE(2279), 1, sym_comment, - ACTIONS(1527), 3, - anon_sym_EQ, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1529), 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, + ACTIONS(4802), 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_RPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, + anon_sym_DOLLAR, 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, - [68193] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2279), 1, - sym_comment, - ACTIONS(2958), 7, - 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, - aux_sym_unquoted_token1, - ACTIONS(2960), 24, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + aux_sym__unquoted_in_list_token1, + [68073] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2280), 1, + sym_comment, + ACTIONS(3756), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(3754), 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, - sym__newline, 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, aux_sym__val_number_decimal_token2, aux_sym__val_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, - [68235] = 23, + aux_sym__unquoted_in_list_token1, + [68115] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1422), 1, @@ -198462,58 +199640,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(1436), 1, sym_raw_string_begin, - ACTIONS(3092), 1, + ACTIONS(3112), 1, aux_sym__unquoted_in_record_token1, - ACTIONS(4619), 1, + ACTIONS(4673), 1, anon_sym_null, - ACTIONS(4627), 1, + ACTIONS(4681), 1, anon_sym_DOT_DOT, - ACTIONS(4631), 1, + ACTIONS(4685), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4633), 1, + ACTIONS(4687), 1, aux_sym__val_number_decimal_token2, - ACTIONS(4637), 1, + ACTIONS(4691), 1, sym_val_date, - STATE(2280), 1, + STATE(2281), 1, sym_comment, - STATE(2285), 1, + STATE(2284), 1, aux_sym__collection_body_repeat1, - STATE(3961), 1, + STATE(3989), 1, sym__val_number_decimal, - STATE(4545), 1, + STATE(4787), 1, sym__collection_entry, - STATE(5170), 1, + STATE(5355), 1, sym_val_bool, - ACTIONS(4617), 2, + ACTIONS(4671), 2, anon_sym_true, anon_sym_false, - ACTIONS(4629), 2, + ACTIONS(4683), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(4635), 2, + ACTIONS(4689), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4292), 2, + STATE(4389), 2, sym_val_string, sym__unquoted_in_record, - STATE(5033), 2, + STATE(5238), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(4621), 3, + ACTIONS(4675), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(3665), 4, + STATE(3725), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68315] = 5, + [68195] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(4822), 1, sym__newline, - STATE(2281), 2, + STATE(2282), 2, sym_comment, aux_sym__types_body_repeat1, ACTIONS(3758), 6, @@ -198547,142 +199725,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [68359] = 23, + [68239] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1422), 1, - anon_sym_DQUOTE, - ACTIONS(1424), 1, - anon_sym_SQUOTE, - ACTIONS(1426), 1, - anon_sym_BQUOTE, - ACTIONS(1436), 1, - sym_raw_string_begin, - ACTIONS(3092), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(4619), 1, - anon_sym_null, - ACTIONS(4627), 1, - anon_sym_DOT_DOT, - ACTIONS(4631), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4633), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4637), 1, - sym_val_date, - STATE(2282), 1, - sym_comment, - STATE(2285), 1, - aux_sym__collection_body_repeat1, - STATE(3961), 1, - sym__val_number_decimal, - STATE(4756), 1, - sym__collection_entry, - STATE(5170), 1, - sym_val_bool, - ACTIONS(4617), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4629), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4635), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4292), 2, - sym_val_string, - sym__unquoted_in_record, - STATE(5033), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4621), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(3665), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [68439] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4806), 1, - sym__entry_separator, - ACTIONS(4808), 1, - sym_raw_string_begin, - STATE(2276), 1, - aux_sym__types_body_repeat2, STATE(2283), 1, sym_comment, - ACTIONS(4802), 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, + ACTIONS(2772), 7, + 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_in_list_token1, - [68485] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2284), 1, - sym_comment, - ACTIONS(3756), 2, + aux_sym_unquoted_token1, + ACTIONS(2774), 24, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(3754), 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, + sym__newline, 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, aux_sym__val_number_decimal_token2, aux_sym__val_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, - [68527] = 22, + [68281] = 22, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(4828), 1, @@ -198705,11 +199786,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__unquoted_in_record_token1, ACTIONS(4864), 1, sym_raw_string_begin, - STATE(3961), 1, + STATE(3989), 1, sym__val_number_decimal, - STATE(4859), 1, + STATE(5074), 1, sym__collection_entry, - STATE(5170), 1, + STATE(5355), 1, sym_val_bool, ACTIONS(4825), 2, anon_sym_true, @@ -198720,30 +199801,124 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4846), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2285), 2, + STATE(2284), 2, sym_comment, aux_sym__collection_body_repeat1, - STATE(4773), 2, + STATE(4907), 2, sym_val_string, sym__unquoted_in_record, - STATE(5033), 2, + STATE(5238), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(4831), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(3665), 4, + STATE(3725), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [68359] = 23, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1422), 1, + anon_sym_DQUOTE, + ACTIONS(1424), 1, + anon_sym_SQUOTE, + ACTIONS(1426), 1, + anon_sym_BQUOTE, + ACTIONS(1436), 1, + sym_raw_string_begin, + ACTIONS(3112), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4673), 1, + anon_sym_null, + ACTIONS(4681), 1, + anon_sym_DOT_DOT, + ACTIONS(4685), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4687), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4691), 1, + sym_val_date, + STATE(2284), 1, + aux_sym__collection_body_repeat1, + STATE(2285), 1, + sym_comment, + STATE(3989), 1, + sym__val_number_decimal, + STATE(4856), 1, + sym__collection_entry, + STATE(5355), 1, + sym_val_bool, + ACTIONS(4671), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4683), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4689), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(4389), 2, + sym_val_string, + sym__unquoted_in_record, + STATE(5238), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4675), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(3725), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68605] = 6, + [68439] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2286), 1, sym_comment, - STATE(3278), 1, + ACTIONS(2772), 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(2774), 24, + 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_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, + [68480] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2287), 1, + sym_comment, + STATE(3257), 1, sym_redirection, ACTIONS(4869), 8, anon_sym_err_GT, @@ -198777,49 +199952,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [68650] = 4, + [68525] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2287), 1, + STATE(2288), 1, sym_comment, - ACTIONS(2958), 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(2960), 24, - 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, + STATE(3355), 1, + sym_redirection, + ACTIONS(4869), 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(4871), 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(4873), 13, 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, - [68691] = 6, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_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, + [68570] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2288), 1, + STATE(2289), 1, sym_comment, - STATE(3255), 1, + STATE(3501), 1, sym_redirection, ACTIONS(4869), 8, anon_sym_err_GT, @@ -198839,7 +200016,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(4873), 13, + ACTIONS(4875), 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, + [68614] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2290), 1, + sym_comment, + STATE(3527), 1, + sym_redirection, + ACTIONS(4877), 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(4879), 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(4867), 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, + [68658] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2291), 1, + sym_comment, + ACTIONS(1578), 2, + anon_sym_EQ, + anon_sym_DOT_DOT2, + ACTIONS(1580), 27, + anon_sym_if, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -198851,9 +200089,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_COLON, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, - [68736] = 25, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [68698] = 25, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -198864,60 +200114,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1600), 1, + ACTIONS(1601), 1, anon_sym_DOLLAR, - ACTIONS(2702), 1, + ACTIONS(2696), 1, aux_sym_expr_unary_token1, - ACTIONS(4875), 1, + ACTIONS(4881), 1, sym__newline, - ACTIONS(4877), 1, + ACTIONS(4883), 1, anon_sym_LPAREN, - ACTIONS(4879), 1, + ACTIONS(4885), 1, anon_sym_DASH2, - ACTIONS(4881), 1, + ACTIONS(4887), 1, anon_sym_LBRACE, - ACTIONS(4883), 1, + ACTIONS(4889), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(948), 1, + STATE(959), 1, sym__expr_unary_minus, - STATE(2289), 1, + STATE(2292), 1, sym_comment, - STATE(2417), 1, + STATE(2293), 1, + aux_sym__repeat_newline, + STATE(2407), 1, sym_val_string, - STATE(2427), 1, + STATE(2430), 1, sym__where_predicate_lhs_path_head, - STATE(2606), 1, + STATE(2617), 1, sym__where_predicate_lhs, - STATE(2808), 1, + STATE(2785), 1, sym__binary_predicate_parenthesized, - STATE(2811), 1, + STATE(2786), 1, sym_where_predicate, - STATE(3036), 1, + STATE(3275), 1, + sym_val_closure, + ACTIONS(1945), 2, + anon_sym_true, + anon_sym_false, + STATE(2253), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2882), 2, + sym_expr_unary, + sym_val_bool, + STATE(418), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [68780] = 25, + 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(1601), 1, + anon_sym_DOLLAR, + ACTIONS(2696), 1, + aux_sym_expr_unary_token1, + ACTIONS(4881), 1, + sym__newline, + ACTIONS(4883), 1, + anon_sym_LPAREN, + ACTIONS(4885), 1, + anon_sym_DASH2, + ACTIONS(4887), 1, + anon_sym_LBRACE, + ACTIONS(4889), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(959), 1, + sym__expr_unary_minus, + STATE(2293), 1, + sym_comment, + STATE(2407), 1, + sym_val_string, + STATE(2430), 1, + sym__where_predicate_lhs_path_head, + STATE(2617), 1, + sym__where_predicate_lhs, + STATE(2736), 1, + sym_where_predicate, + STATE(2809), 1, + sym__binary_predicate_parenthesized, + STATE(3190), 1, aux_sym__repeat_newline, - STATE(3238), 1, + STATE(3371), 1, sym_val_closure, - ACTIONS(1938), 2, + ACTIONS(1945), 2, anon_sym_true, anon_sym_false, - STATE(2248), 2, + STATE(2253), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2828), 2, + STATE(2882), 2, sym_expr_unary, sym_val_bool, - STATE(426), 4, + STATE(418), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68818] = 6, + [68862] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2290), 1, + STATE(2294), 1, sym_comment, - STATE(3477), 1, + STATE(3506), 1, sym_redirection, - ACTIONS(4869), 8, + ACTIONS(4877), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -198926,7 +200233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4871), 8, + ACTIONS(4879), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -198935,7 +200242,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(4885), 12, + ACTIONS(4873), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -198947,13 +200255,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, - [68862] = 6, + [68906] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2291), 1, + STATE(2295), 1, sym_comment, - STATE(3506), 1, + STATE(3511), 1, sym_redirection, ACTIONS(4869), 8, anon_sym_err_GT, @@ -198973,7 +200280,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(4887), 12, + ACTIONS(4891), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -198986,53 +200293,580 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [68906] = 6, + [68950] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2292), 1, + ACTIONS(4893), 1, + anon_sym_QMARK2, + ACTIONS(4895), 1, + anon_sym_BANG, + STATE(443), 1, + sym__path_suffix, + STATE(2296), 1, sym_comment, - STATE(3429), 1, - sym_redirection, - ACTIONS(4889), 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(4891), 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(4867), 12, - ts_builtin_sym_end, + ACTIONS(1442), 2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1444), 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, + [68995] = 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(1601), 1, + anon_sym_DOLLAR, + ACTIONS(2696), 1, + aux_sym_expr_unary_token1, + ACTIONS(4881), 1, + sym__newline, + ACTIONS(4883), 1, + anon_sym_LPAREN, + ACTIONS(4885), 1, + anon_sym_DASH2, + ACTIONS(4889), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(959), 1, + sym__expr_unary_minus, + STATE(2297), 1, + sym_comment, + STATE(2327), 1, + aux_sym__repeat_newline, + STATE(2407), 1, + sym_val_string, + STATE(2430), 1, + sym__where_predicate_lhs_path_head, + STATE(2617), 1, + sym__where_predicate_lhs, + STATE(2791), 1, + sym__binary_predicate_parenthesized, + STATE(2803), 1, + sym_where_predicate, + ACTIONS(1945), 2, + anon_sym_true, + anon_sym_false, + STATE(2253), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2882), 2, + sym_expr_unary, + sym_val_bool, + STATE(418), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [69071] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1524), 1, + anon_sym_DOT_DOT2, + ACTIONS(4897), 1, + anon_sym_DOT2, + STATE(458), 1, + sym_path, + STATE(2298), 1, + sym_comment, + STATE(2299), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1526), 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, + [69115] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1532), 1, + anon_sym_DOT_DOT2, + ACTIONS(4899), 1, + anon_sym_DOT2, + STATE(458), 1, + sym_path, + STATE(2299), 2, + sym_comment, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1534), 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, + [69157] = 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(1601), 1, + anon_sym_DOLLAR, + ACTIONS(2696), 1, + aux_sym_expr_unary_token1, + ACTIONS(4881), 1, + sym__newline, + ACTIONS(4883), 1, + anon_sym_LPAREN, + ACTIONS(4885), 1, + anon_sym_DASH2, + ACTIONS(4889), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(959), 1, + sym__expr_unary_minus, + STATE(2300), 1, + sym_comment, + STATE(2305), 1, + aux_sym__repeat_newline, + STATE(2407), 1, + sym_val_string, + STATE(2430), 1, + sym__where_predicate_lhs_path_head, + STATE(2617), 1, + sym__where_predicate_lhs, + STATE(2777), 1, + sym__binary_predicate_parenthesized, + STATE(2782), 1, + sym_where_predicate, + ACTIONS(1945), 2, + anon_sym_true, + anon_sym_false, + STATE(2253), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2882), 2, + sym_expr_unary, + sym_val_bool, + STATE(418), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [69233] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1655), 1, + anon_sym_DOT_DOT2, + ACTIONS(4897), 1, + anon_sym_DOT2, + STATE(458), 1, + sym_path, + STATE(478), 1, + sym_cell_path, + STATE(2298), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2301), 1, + sym_comment, + ACTIONS(1653), 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, + [69279] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1649), 1, + anon_sym_DOT_DOT2, + ACTIONS(4897), 1, + anon_sym_DOT2, + STATE(458), 1, + sym_path, + STATE(472), 1, + sym_cell_path, + STATE(2298), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2302), 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, + [69325] = 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(1601), 1, + anon_sym_DOLLAR, + ACTIONS(2696), 1, + aux_sym_expr_unary_token1, + ACTIONS(4881), 1, + sym__newline, + ACTIONS(4883), 1, + anon_sym_LPAREN, + ACTIONS(4885), 1, + anon_sym_DASH2, + ACTIONS(4889), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(959), 1, + sym__expr_unary_minus, + STATE(2303), 1, + sym_comment, + STATE(2310), 1, + aux_sym__repeat_newline, + STATE(2407), 1, + sym_val_string, + STATE(2430), 1, + sym__where_predicate_lhs_path_head, + STATE(2617), 1, + sym__where_predicate_lhs, + STATE(2793), 1, + sym__binary_predicate_parenthesized, + STATE(2794), 1, + sym_where_predicate, + ACTIONS(1945), 2, + anon_sym_true, + anon_sym_false, + STATE(2253), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2882), 2, + sym_expr_unary, + sym_val_bool, + STATE(418), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [69401] = 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(1601), 1, + anon_sym_DOLLAR, + ACTIONS(2696), 1, + aux_sym_expr_unary_token1, + ACTIONS(4881), 1, + sym__newline, + ACTIONS(4883), 1, + anon_sym_LPAREN, + ACTIONS(4885), 1, + anon_sym_DASH2, + ACTIONS(4889), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(959), 1, + sym__expr_unary_minus, + STATE(2304), 1, + sym_comment, + STATE(2314), 1, + aux_sym__repeat_newline, + STATE(2407), 1, + sym_val_string, + STATE(2430), 1, + sym__where_predicate_lhs_path_head, + STATE(2617), 1, + sym__where_predicate_lhs, + STATE(2743), 1, + sym__binary_predicate_parenthesized, + STATE(2744), 1, + sym_where_predicate, + ACTIONS(1945), 2, + anon_sym_true, + anon_sym_false, + STATE(2253), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2882), 2, + sym_expr_unary, + sym_val_bool, + STATE(418), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [69477] = 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(1601), 1, + anon_sym_DOLLAR, + ACTIONS(2696), 1, + aux_sym_expr_unary_token1, + ACTIONS(4881), 1, + sym__newline, + ACTIONS(4883), 1, + anon_sym_LPAREN, + ACTIONS(4885), 1, + anon_sym_DASH2, + ACTIONS(4889), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(959), 1, + sym__expr_unary_minus, + STATE(2305), 1, + sym_comment, + STATE(2407), 1, + sym_val_string, + STATE(2430), 1, + sym__where_predicate_lhs_path_head, + STATE(2617), 1, + sym__where_predicate_lhs, + STATE(2853), 1, + sym__binary_predicate_parenthesized, + STATE(2854), 1, + sym_where_predicate, + STATE(3190), 1, + aux_sym__repeat_newline, + ACTIONS(1945), 2, + anon_sym_true, + anon_sym_false, + STATE(2253), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2882), 2, + sym_expr_unary, + sym_val_bool, + STATE(418), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [69553] = 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(1601), 1, + anon_sym_DOLLAR, + ACTIONS(2696), 1, + aux_sym_expr_unary_token1, + ACTIONS(4881), 1, + sym__newline, + ACTIONS(4883), 1, + anon_sym_LPAREN, + ACTIONS(4885), 1, + anon_sym_DASH2, + ACTIONS(4889), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(959), 1, + sym__expr_unary_minus, + STATE(2306), 1, + sym_comment, + STATE(2407), 1, + sym_val_string, + STATE(2430), 1, + sym__where_predicate_lhs_path_head, + STATE(2617), 1, + sym__where_predicate_lhs, + STATE(2811), 1, + sym__binary_predicate_parenthesized, + STATE(2869), 1, + sym_where_predicate, + STATE(3190), 1, + aux_sym__repeat_newline, + ACTIONS(1945), 2, + anon_sym_true, + anon_sym_false, + STATE(2253), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2882), 2, + sym_expr_unary, + sym_val_bool, + STATE(418), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [69629] = 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(1601), 1, + anon_sym_DOLLAR, + ACTIONS(2696), 1, + aux_sym_expr_unary_token1, + ACTIONS(4881), 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, - [68950] = 4, + ACTIONS(4883), 1, + anon_sym_LPAREN, + ACTIONS(4885), 1, + anon_sym_DASH2, + ACTIONS(4889), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(959), 1, + sym__expr_unary_minus, + STATE(2307), 1, + sym_comment, + STATE(2322), 1, + aux_sym__repeat_newline, + STATE(2407), 1, + sym_val_string, + STATE(2430), 1, + sym__where_predicate_lhs_path_head, + STATE(2617), 1, + sym__where_predicate_lhs, + STATE(2756), 1, + sym__binary_predicate_parenthesized, + STATE(2759), 1, + sym_where_predicate, + ACTIONS(1945), 2, + anon_sym_true, + anon_sym_false, + STATE(2253), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2882), 2, + sym_expr_unary, + sym_val_bool, + STATE(418), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [69705] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(2293), 1, - sym_comment, - ACTIONS(1580), 2, - anon_sym_EQ, + ACTIONS(1454), 1, anon_sym_DOT_DOT2, - ACTIONS(1582), 27, + ACTIONS(4897), 1, + anon_sym_DOT2, + STATE(458), 1, + sym_path, + STATE(2291), 1, + sym_cell_path, + STATE(2298), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2308), 1, + sym_comment, + ACTIONS(1456), 22, anon_sym_if, anon_sym_in, sym__newline, @@ -199046,12 +200880,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_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, @@ -199060,33 +200889,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [68990] = 6, + [69751] = 11, ACTIONS(3), 1, anon_sym_POUND, - STATE(2294), 1, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + ACTIONS(1637), 1, + sym__unquoted_pattern, + ACTIONS(2938), 1, + anon_sym_DOLLAR, + ACTIONS(4902), 1, + anon_sym_DOT, + STATE(2309), 1, sym_comment, - STATE(3403), 1, - sym_redirection, - ACTIONS(4889), 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(4891), 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(4873), 12, - ts_builtin_sym_end, + STATE(2458), 1, + sym__immediate_decimal, + ACTIONS(4904), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4906), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2559), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1631), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199098,7 +200925,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, - [69034] = 25, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [69803] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -199109,91 +200941,208 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1600), 1, + ACTIONS(1601), 1, anon_sym_DOLLAR, - ACTIONS(2702), 1, + ACTIONS(2696), 1, aux_sym_expr_unary_token1, - ACTIONS(4875), 1, + ACTIONS(4881), 1, sym__newline, - ACTIONS(4877), 1, + ACTIONS(4883), 1, anon_sym_LPAREN, - ACTIONS(4879), 1, + ACTIONS(4885), 1, anon_sym_DASH2, + ACTIONS(4889), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(959), 1, + sym__expr_unary_minus, + STATE(2310), 1, + sym_comment, + STATE(2407), 1, + sym_val_string, + STATE(2430), 1, + sym__where_predicate_lhs_path_head, + STATE(2617), 1, + sym__where_predicate_lhs, + STATE(2768), 1, + sym__binary_predicate_parenthesized, + STATE(2846), 1, + sym_where_predicate, + STATE(3190), 1, + aux_sym__repeat_newline, + ACTIONS(1945), 2, + anon_sym_true, + anon_sym_false, + STATE(2253), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2882), 2, + sym_expr_unary, + sym_val_bool, + STATE(418), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [69879] = 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(1601), 1, + anon_sym_DOLLAR, + ACTIONS(2696), 1, + aux_sym_expr_unary_token1, ACTIONS(4881), 1, - anon_sym_LBRACE, + sym__newline, ACTIONS(4883), 1, + anon_sym_LPAREN, + ACTIONS(4885), 1, + anon_sym_DASH2, + ACTIONS(4889), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(948), 1, + STATE(959), 1, sym__expr_unary_minus, - STATE(2289), 1, + STATE(2311), 1, + sym_comment, + STATE(2315), 1, aux_sym__repeat_newline, - STATE(2295), 1, + STATE(2407), 1, + sym_val_string, + STATE(2430), 1, + sym__where_predicate_lhs_path_head, + STATE(2617), 1, + sym__where_predicate_lhs, + STATE(2815), 1, + sym_where_predicate, + STATE(2859), 1, + sym__binary_predicate_parenthesized, + ACTIONS(1945), 2, + anon_sym_true, + anon_sym_false, + STATE(2253), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2882), 2, + sym_expr_unary, + sym_val_bool, + STATE(418), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [69955] = 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(1601), 1, + anon_sym_DOLLAR, + ACTIONS(2696), 1, + aux_sym_expr_unary_token1, + ACTIONS(4881), 1, + sym__newline, + ACTIONS(4883), 1, + anon_sym_LPAREN, + ACTIONS(4885), 1, + anon_sym_DASH2, + ACTIONS(4889), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(959), 1, + sym__expr_unary_minus, + STATE(2312), 1, sym_comment, - STATE(2417), 1, + STATE(2318), 1, + aux_sym__repeat_newline, + STATE(2407), 1, sym_val_string, - STATE(2427), 1, + STATE(2430), 1, sym__where_predicate_lhs_path_head, - STATE(2606), 1, + STATE(2617), 1, sym__where_predicate_lhs, - STATE(2882), 1, + STATE(2799), 1, sym__binary_predicate_parenthesized, - STATE(2891), 1, + STATE(2804), 1, sym_where_predicate, - STATE(3345), 1, - sym_val_closure, - ACTIONS(1938), 2, + ACTIONS(1945), 2, anon_sym_true, anon_sym_false, - STATE(2248), 2, + STATE(2253), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2828), 2, + STATE(2882), 2, sym_expr_unary, sym_val_bool, - STATE(426), 4, + STATE(418), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69116] = 7, + [70031] = 23, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4893), 1, - anon_sym_QMARK2, - ACTIONS(4895), 1, - anon_sym_BANG, - STATE(444), 1, - sym__path_suffix, - STATE(2296), 1, - sym_comment, - ACTIONS(1456), 2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1458), 23, - anon_sym_if, - anon_sym_in, + 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(1601), 1, + anon_sym_DOLLAR, + ACTIONS(2696), 1, + aux_sym_expr_unary_token1, + ACTIONS(4881), 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_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, - [69161] = 23, + ACTIONS(4883), 1, + anon_sym_LPAREN, + ACTIONS(4885), 1, + anon_sym_DASH2, + ACTIONS(4889), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(959), 1, + sym__expr_unary_minus, + STATE(2306), 1, + aux_sym__repeat_newline, + STATE(2313), 1, + sym_comment, + STATE(2407), 1, + sym_val_string, + STATE(2430), 1, + sym__where_predicate_lhs_path_head, + STATE(2617), 1, + sym__where_predicate_lhs, + STATE(2764), 1, + sym__binary_predicate_parenthesized, + STATE(2765), 1, + sym_where_predicate, + ACTIONS(1945), 2, + anon_sym_true, + anon_sym_false, + STATE(2253), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2882), 2, + sym_expr_unary, + sym_val_bool, + STATE(418), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [70107] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -199204,49 +201153,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1600), 1, + ACTIONS(1601), 1, anon_sym_DOLLAR, - ACTIONS(2702), 1, + ACTIONS(2696), 1, aux_sym_expr_unary_token1, - ACTIONS(4877), 1, + ACTIONS(4881), 1, + sym__newline, + ACTIONS(4883), 1, anon_sym_LPAREN, - ACTIONS(4879), 1, + ACTIONS(4885), 1, anon_sym_DASH2, + ACTIONS(4889), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(959), 1, + sym__expr_unary_minus, + STATE(2314), 1, + sym_comment, + STATE(2407), 1, + sym_val_string, + STATE(2430), 1, + sym__where_predicate_lhs_path_head, + STATE(2617), 1, + sym__where_predicate_lhs, + STATE(2857), 1, + sym__binary_predicate_parenthesized, + STATE(2883), 1, + sym_where_predicate, + STATE(3190), 1, + aux_sym__repeat_newline, + ACTIONS(1945), 2, + anon_sym_true, + anon_sym_false, + STATE(2253), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2882), 2, + sym_expr_unary, + sym_val_bool, + STATE(418), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [70183] = 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(1601), 1, + anon_sym_DOLLAR, + ACTIONS(2696), 1, + aux_sym_expr_unary_token1, ACTIONS(4881), 1, - anon_sym_LBRACE, + sym__newline, ACTIONS(4883), 1, + anon_sym_LPAREN, + ACTIONS(4885), 1, + anon_sym_DASH2, + ACTIONS(4889), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(948), 1, + STATE(959), 1, sym__expr_unary_minus, - STATE(2297), 1, + STATE(2315), 1, sym_comment, - STATE(2417), 1, + STATE(2407), 1, sym_val_string, - STATE(2427), 1, + STATE(2430), 1, sym__where_predicate_lhs_path_head, - STATE(2606), 1, + STATE(2617), 1, sym__where_predicate_lhs, - STATE(2826), 1, - sym__binary_predicate, - STATE(2827), 1, + STATE(2808), 1, + sym__binary_predicate_parenthesized, + STATE(2812), 1, sym_where_predicate, - STATE(3361), 1, - sym_val_closure, - ACTIONS(1938), 2, + STATE(3190), 1, + aux_sym__repeat_newline, + ACTIONS(1945), 2, anon_sym_true, anon_sym_false, - STATE(2248), 2, + STATE(2253), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2828), 2, + STATE(2882), 2, sym_expr_unary, sym_val_bool, - STATE(426), 4, + STATE(418), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69237] = 23, + [70259] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -199257,49 +201259,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(2786), 1, + ACTIONS(1601), 1, + anon_sym_DOLLAR, + ACTIONS(2696), 1, aux_sym_expr_unary_token1, + ACTIONS(4881), 1, + sym__newline, ACTIONS(4883), 1, + anon_sym_LPAREN, + ACTIONS(4885), 1, + anon_sym_DASH2, + ACTIONS(4889), 1, aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4897), 1, + STATE(959), 1, + sym__expr_unary_minus, + STATE(2316), 1, + sym_comment, + STATE(2324), 1, + aux_sym__repeat_newline, + STATE(2407), 1, + sym_val_string, + STATE(2430), 1, + sym__where_predicate_lhs_path_head, + STATE(2617), 1, + sym__where_predicate_lhs, + STATE(2770), 1, + sym__binary_predicate_parenthesized, + STATE(2784), 1, + sym_where_predicate, + ACTIONS(1945), 2, + anon_sym_true, + anon_sym_false, + STATE(2253), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2882), 2, + sym_expr_unary, + sym_val_bool, + STATE(418), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [70335] = 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(2742), 1, + aux_sym_expr_unary_token1, + ACTIONS(4889), 1, + aux_sym__where_predicate_lhs_path_head_token1, + ACTIONS(4908), 1, anon_sym_LPAREN, - ACTIONS(4899), 1, + ACTIONS(4910), 1, anon_sym_DOLLAR, - ACTIONS(4901), 1, + ACTIONS(4912), 1, anon_sym_DASH2, - ACTIONS(4903), 1, + ACTIONS(4914), 1, anon_sym_LBRACE, - STATE(1290), 1, + STATE(1296), 1, sym__expr_unary_minus, - STATE(2298), 1, + STATE(2317), 1, sym_comment, - STATE(2417), 1, + STATE(2407), 1, sym_val_string, - STATE(2427), 1, + STATE(2430), 1, sym__where_predicate_lhs_path_head, - STATE(2596), 1, + STATE(2614), 1, sym__where_predicate_lhs, - STATE(2968), 1, + STATE(3000), 1, sym__binary_predicate, - STATE(2970), 1, + STATE(3017), 1, sym_where_predicate, - STATE(3439), 1, + STATE(3518), 1, sym_val_closure, - ACTIONS(2208), 2, + ACTIONS(2489), 2, anon_sym_true, anon_sym_false, STATE(2258), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2999), 2, + STATE(2925), 2, sym_expr_unary, sym_val_bool, - STATE(426), 4, + STATE(418), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69313] = 23, + [70411] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -199310,49 +201365,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1600), 1, + ACTIONS(1601), 1, anon_sym_DOLLAR, - ACTIONS(2702), 1, + ACTIONS(2696), 1, aux_sym_expr_unary_token1, - ACTIONS(4875), 1, + ACTIONS(4881), 1, sym__newline, - ACTIONS(4877), 1, + ACTIONS(4883), 1, anon_sym_LPAREN, - ACTIONS(4879), 1, + ACTIONS(4885), 1, anon_sym_DASH2, - ACTIONS(4883), 1, + ACTIONS(4889), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(948), 1, + STATE(959), 1, sym__expr_unary_minus, - STATE(2299), 1, + STATE(2318), 1, sym_comment, - STATE(2305), 1, - aux_sym__repeat_newline, - STATE(2417), 1, + STATE(2407), 1, sym_val_string, - STATE(2427), 1, + STATE(2430), 1, sym__where_predicate_lhs_path_head, - STATE(2606), 1, + STATE(2617), 1, sym__where_predicate_lhs, - STATE(2839), 1, + STATE(2771), 1, sym__binary_predicate_parenthesized, - STATE(2841), 1, + STATE(2864), 1, sym_where_predicate, - ACTIONS(1938), 2, + STATE(3190), 1, + aux_sym__repeat_newline, + ACTIONS(1945), 2, anon_sym_true, anon_sym_false, - STATE(2248), 2, + STATE(2253), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2828), 2, + STATE(2882), 2, sym_expr_unary, sym_val_bool, - STATE(426), 4, + STATE(418), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69389] = 23, + [70487] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -199363,49 +201418,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1600), 1, + ACTIONS(1601), 1, anon_sym_DOLLAR, - ACTIONS(2702), 1, + ACTIONS(2696), 1, aux_sym_expr_unary_token1, - ACTIONS(4875), 1, + ACTIONS(4881), 1, sym__newline, - ACTIONS(4877), 1, + ACTIONS(4883), 1, anon_sym_LPAREN, - ACTIONS(4879), 1, + ACTIONS(4885), 1, anon_sym_DASH2, - ACTIONS(4883), 1, + ACTIONS(4889), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(948), 1, + STATE(959), 1, sym__expr_unary_minus, - STATE(2300), 1, + STATE(2319), 1, sym_comment, - STATE(2417), 1, + STATE(2325), 1, + aux_sym__repeat_newline, + STATE(2407), 1, sym_val_string, - STATE(2427), 1, + STATE(2430), 1, sym__where_predicate_lhs_path_head, - STATE(2606), 1, + STATE(2617), 1, sym__where_predicate_lhs, - STATE(2730), 1, - sym__binary_predicate_parenthesized, - STATE(2731), 1, + STATE(2739), 1, sym_where_predicate, - STATE(3036), 1, - aux_sym__repeat_newline, - ACTIONS(1938), 2, + STATE(2800), 1, + sym__binary_predicate_parenthesized, + ACTIONS(1945), 2, anon_sym_true, anon_sym_false, - STATE(2248), 2, + STATE(2253), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2828), 2, + STATE(2882), 2, sym_expr_unary, sym_val_bool, - STATE(426), 4, + STATE(418), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69465] = 23, + [70563] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -199416,128 +201471,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1600), 1, + ACTIONS(1601), 1, anon_sym_DOLLAR, - ACTIONS(2702), 1, + ACTIONS(2696), 1, aux_sym_expr_unary_token1, - ACTIONS(4875), 1, + ACTIONS(4881), 1, sym__newline, - ACTIONS(4877), 1, + ACTIONS(4883), 1, anon_sym_LPAREN, - ACTIONS(4879), 1, + ACTIONS(4885), 1, anon_sym_DASH2, - ACTIONS(4883), 1, + ACTIONS(4889), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(948), 1, + STATE(959), 1, sym__expr_unary_minus, - STATE(2301), 1, + STATE(2320), 1, sym_comment, - STATE(2417), 1, + STATE(2407), 1, sym_val_string, - STATE(2427), 1, + STATE(2430), 1, sym__where_predicate_lhs_path_head, - STATE(2606), 1, + STATE(2617), 1, sym__where_predicate_lhs, - STATE(2738), 1, + STATE(2836), 1, sym__binary_predicate_parenthesized, - STATE(2739), 1, + STATE(2837), 1, sym_where_predicate, - STATE(3036), 1, + STATE(3190), 1, aux_sym__repeat_newline, - ACTIONS(1938), 2, + ACTIONS(1945), 2, anon_sym_true, anon_sym_false, - STATE(2248), 2, + STATE(2253), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2828), 2, + STATE(2882), 2, sym_expr_unary, sym_val_bool, - STATE(426), 4, + STATE(418), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69541] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1442), 1, - anon_sym_DOT_DOT2, - ACTIONS(4905), 1, - anon_sym_DOT2, - STATE(458), 1, - sym_path, - STATE(2293), 1, - sym_cell_path, - STATE(2302), 1, - sym_comment, - STATE(2323), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1444), 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, - [69587] = 11, + [70639] = 23, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1604), 1, - anon_sym_LPAREN2, - ACTIONS(1635), 1, - sym__unquoted_pattern, - ACTIONS(2873), 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(1601), 1, anon_sym_DOLLAR, - ACTIONS(4907), 1, - anon_sym_DOT, - STATE(2303), 1, + ACTIONS(2696), 1, + aux_sym_expr_unary_token1, + ACTIONS(4881), 1, + sym__newline, + ACTIONS(4883), 1, + anon_sym_LPAREN, + ACTIONS(4885), 1, + anon_sym_DASH2, + ACTIONS(4889), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(959), 1, + sym__expr_unary_minus, + STATE(2320), 1, + aux_sym__repeat_newline, + STATE(2321), 1, sym_comment, - STATE(2446), 1, - sym__immediate_decimal, - ACTIONS(4909), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(4911), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2555), 2, - sym__expr_parenthesized_immediate, + STATE(2407), 1, + sym_val_string, + STATE(2430), 1, + sym__where_predicate_lhs_path_head, + STATE(2617), 1, + sym__where_predicate_lhs, + STATE(2729), 1, + sym_where_predicate, + STATE(2867), 1, + sym__binary_predicate_parenthesized, + ACTIONS(1945), 2, + anon_sym_true, + anon_sym_false, + STATE(2253), 2, + sym_expr_parenthesized, sym_val_variable, - ACTIONS(1598), 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, - [69639] = 23, + STATE(2882), 2, + sym_expr_unary, + sym_val_bool, + STATE(418), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [70715] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -199548,49 +201577,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1600), 1, + ACTIONS(1601), 1, anon_sym_DOLLAR, - ACTIONS(2702), 1, + ACTIONS(2696), 1, aux_sym_expr_unary_token1, - ACTIONS(4875), 1, + ACTIONS(4881), 1, sym__newline, - ACTIONS(4877), 1, + ACTIONS(4883), 1, anon_sym_LPAREN, - ACTIONS(4879), 1, + ACTIONS(4885), 1, anon_sym_DASH2, - ACTIONS(4883), 1, + ACTIONS(4889), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(948), 1, + STATE(959), 1, sym__expr_unary_minus, - STATE(2304), 1, + STATE(2322), 1, sym_comment, - STATE(2306), 1, - aux_sym__repeat_newline, - STATE(2417), 1, + STATE(2407), 1, sym_val_string, - STATE(2427), 1, + STATE(2430), 1, sym__where_predicate_lhs_path_head, - STATE(2606), 1, + STATE(2617), 1, sym__where_predicate_lhs, - STATE(2843), 1, + STATE(2866), 1, sym__binary_predicate_parenthesized, - STATE(2844), 1, + STATE(2868), 1, sym_where_predicate, - ACTIONS(1938), 2, + STATE(3190), 1, + aux_sym__repeat_newline, + ACTIONS(1945), 2, anon_sym_true, anon_sym_false, - STATE(2248), 2, + STATE(2253), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2828), 2, + STATE(2882), 2, sym_expr_unary, sym_val_bool, - STATE(426), 4, + STATE(418), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69715] = 23, + [70791] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -199601,49 +201630,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1600), 1, + ACTIONS(1601), 1, anon_sym_DOLLAR, - ACTIONS(2702), 1, + ACTIONS(2696), 1, aux_sym_expr_unary_token1, - ACTIONS(4875), 1, + ACTIONS(4881), 1, sym__newline, - ACTIONS(4877), 1, + ACTIONS(4883), 1, anon_sym_LPAREN, - ACTIONS(4879), 1, + ACTIONS(4885), 1, anon_sym_DASH2, - ACTIONS(4883), 1, + ACTIONS(4889), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(948), 1, + STATE(959), 1, sym__expr_unary_minus, - STATE(2305), 1, + STATE(2323), 1, sym_comment, - STATE(2417), 1, + STATE(2407), 1, sym_val_string, - STATE(2427), 1, + STATE(2430), 1, sym__where_predicate_lhs_path_head, - STATE(2606), 1, + STATE(2617), 1, sym__where_predicate_lhs, - STATE(2861), 1, + STATE(2826), 1, sym__binary_predicate_parenthesized, - STATE(2862), 1, + STATE(2827), 1, sym_where_predicate, - STATE(3036), 1, + STATE(3190), 1, aux_sym__repeat_newline, - ACTIONS(1938), 2, + ACTIONS(1945), 2, anon_sym_true, anon_sym_false, - STATE(2248), 2, + STATE(2253), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2828), 2, + STATE(2882), 2, sym_expr_unary, sym_val_bool, - STATE(426), 4, + STATE(418), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69791] = 23, + [70867] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -199654,49 +201683,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1600), 1, + ACTIONS(1601), 1, anon_sym_DOLLAR, - ACTIONS(2702), 1, + ACTIONS(2696), 1, aux_sym_expr_unary_token1, - ACTIONS(4875), 1, + ACTIONS(4881), 1, sym__newline, - ACTIONS(4877), 1, + ACTIONS(4883), 1, anon_sym_LPAREN, - ACTIONS(4879), 1, + ACTIONS(4885), 1, anon_sym_DASH2, - ACTIONS(4883), 1, + ACTIONS(4889), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(948), 1, + STATE(959), 1, sym__expr_unary_minus, - STATE(2306), 1, + STATE(2324), 1, sym_comment, - STATE(2417), 1, + STATE(2407), 1, sym_val_string, - STATE(2427), 1, + STATE(2430), 1, sym__where_predicate_lhs_path_head, - STATE(2606), 1, + STATE(2617), 1, sym__where_predicate_lhs, - STATE(2869), 1, + STATE(2752), 1, sym__binary_predicate_parenthesized, - STATE(2887), 1, + STATE(2753), 1, sym_where_predicate, - STATE(3036), 1, + STATE(3190), 1, aux_sym__repeat_newline, - ACTIONS(1938), 2, + ACTIONS(1945), 2, anon_sym_true, anon_sym_false, - STATE(2248), 2, + STATE(2253), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2828), 2, + STATE(2882), 2, sym_expr_unary, sym_val_bool, - STATE(426), 4, + STATE(418), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69867] = 23, + [70943] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -199707,49 +201736,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1600), 1, + ACTIONS(1601), 1, anon_sym_DOLLAR, - ACTIONS(2702), 1, + ACTIONS(2696), 1, aux_sym_expr_unary_token1, - ACTIONS(4875), 1, + ACTIONS(4881), 1, sym__newline, - ACTIONS(4877), 1, + ACTIONS(4883), 1, anon_sym_LPAREN, - ACTIONS(4879), 1, + ACTIONS(4885), 1, anon_sym_DASH2, - ACTIONS(4883), 1, + ACTIONS(4889), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(948), 1, + STATE(959), 1, sym__expr_unary_minus, - STATE(2307), 1, + STATE(2325), 1, sym_comment, - STATE(2417), 1, + STATE(2407), 1, sym_val_string, - STATE(2427), 1, + STATE(2430), 1, sym__where_predicate_lhs_path_head, - STATE(2606), 1, + STATE(2617), 1, sym__where_predicate_lhs, - STATE(2893), 1, + STATE(2757), 1, sym__binary_predicate_parenthesized, - STATE(2894), 1, + STATE(2758), 1, sym_where_predicate, - STATE(3036), 1, + STATE(3190), 1, aux_sym__repeat_newline, - ACTIONS(1938), 2, + ACTIONS(1945), 2, anon_sym_true, anon_sym_false, - STATE(2248), 2, + STATE(2253), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2828), 2, + STATE(2882), 2, sym_expr_unary, sym_val_bool, - STATE(426), 4, + STATE(418), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69943] = 23, + [71019] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -199760,49 +201789,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1600), 1, + ACTIONS(1601), 1, anon_sym_DOLLAR, - ACTIONS(2702), 1, + ACTIONS(2696), 1, aux_sym_expr_unary_token1, - ACTIONS(4875), 1, + ACTIONS(4881), 1, sym__newline, - ACTIONS(4877), 1, + ACTIONS(4883), 1, anon_sym_LPAREN, - ACTIONS(4879), 1, + ACTIONS(4885), 1, anon_sym_DASH2, - ACTIONS(4883), 1, + ACTIONS(4889), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(948), 1, + STATE(959), 1, sym__expr_unary_minus, - STATE(2300), 1, + STATE(2323), 1, aux_sym__repeat_newline, - STATE(2308), 1, + STATE(2326), 1, sym_comment, - STATE(2417), 1, + STATE(2407), 1, sym_val_string, - STATE(2427), 1, + STATE(2430), 1, sym__where_predicate_lhs_path_head, - STATE(2606), 1, + STATE(2617), 1, sym__where_predicate_lhs, - STATE(2716), 1, + STATE(2717), 1, sym__binary_predicate_parenthesized, STATE(2720), 1, sym_where_predicate, - ACTIONS(1938), 2, + ACTIONS(1945), 2, anon_sym_true, anon_sym_false, - STATE(2248), 2, + STATE(2253), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2828), 2, + STATE(2882), 2, sym_expr_unary, sym_val_bool, - STATE(426), 4, + STATE(418), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [70019] = 23, + [71095] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -199813,49 +201842,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1600), 1, + ACTIONS(1601), 1, anon_sym_DOLLAR, - ACTIONS(2702), 1, + ACTIONS(2696), 1, aux_sym_expr_unary_token1, - ACTIONS(4875), 1, + ACTIONS(4881), 1, sym__newline, - ACTIONS(4877), 1, + ACTIONS(4883), 1, anon_sym_LPAREN, - ACTIONS(4879), 1, + ACTIONS(4885), 1, anon_sym_DASH2, - ACTIONS(4883), 1, + ACTIONS(4889), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(948), 1, + STATE(959), 1, sym__expr_unary_minus, - STATE(2309), 1, + STATE(2327), 1, sym_comment, - STATE(2315), 1, - aux_sym__repeat_newline, - STATE(2417), 1, + STATE(2407), 1, sym_val_string, - STATE(2427), 1, + STATE(2430), 1, sym__where_predicate_lhs_path_head, - STATE(2606), 1, + STATE(2617), 1, sym__where_predicate_lhs, - STATE(2721), 1, + STATE(2831), 1, sym__binary_predicate_parenthesized, - STATE(2751), 1, + STATE(2832), 1, sym_where_predicate, - ACTIONS(1938), 2, + STATE(3190), 1, + aux_sym__repeat_newline, + ACTIONS(1945), 2, anon_sym_true, anon_sym_false, - STATE(2248), 2, + STATE(2253), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2828), 2, + STATE(2882), 2, sym_expr_unary, sym_val_bool, - STATE(426), 4, + STATE(418), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [70095] = 23, + [71171] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -199866,49 +201895,451 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1600), 1, + ACTIONS(1601), 1, anon_sym_DOLLAR, - ACTIONS(2702), 1, + ACTIONS(2696), 1, aux_sym_expr_unary_token1, - ACTIONS(4875), 1, + ACTIONS(4883), 1, + anon_sym_LPAREN, + ACTIONS(4885), 1, + anon_sym_DASH2, + ACTIONS(4887), 1, + anon_sym_LBRACE, + ACTIONS(4889), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(959), 1, + sym__expr_unary_minus, + STATE(2328), 1, + sym_comment, + STATE(2407), 1, + sym_val_string, + STATE(2430), 1, + sym__where_predicate_lhs_path_head, + STATE(2617), 1, + sym__where_predicate_lhs, + STATE(2860), 1, + sym__binary_predicate, + STATE(2861), 1, + sym_where_predicate, + STATE(3348), 1, + sym_val_closure, + ACTIONS(1945), 2, + anon_sym_true, + anon_sym_false, + STATE(2253), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2882), 2, + sym_expr_unary, + sym_val_bool, + STATE(418), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [71247] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + ACTIONS(1607), 1, + anon_sym_DOT, + ACTIONS(2938), 1, + anon_sym_DOLLAR, + STATE(2329), 1, + sym_comment, + STATE(2501), 1, + sym__immediate_decimal, + ACTIONS(1609), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(1611), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2558), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1599), 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, + [71296] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1637), 1, + sym__unquoted_pattern, + ACTIONS(1687), 1, + anon_sym_LPAREN2, + ACTIONS(3806), 1, + anon_sym_DOLLAR, + ACTIONS(4916), 1, + anon_sym_DOT, + STATE(2330), 1, + sym_comment, + STATE(2474), 1, + sym__immediate_decimal, + ACTIONS(4918), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4920), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2640), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1631), 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, + [71347] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + ACTIONS(1637), 1, + sym__unquoted_pattern, + ACTIONS(2938), 1, + anon_sym_DOLLAR, + STATE(2331), 1, + sym_comment, + STATE(2613), 1, + sym__immediate_decimal, + ACTIONS(4922), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4924), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(788), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1631), 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, + [71396] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + ACTIONS(1695), 1, + sym__unquoted_pattern, + ACTIONS(2938), 1, + anon_sym_DOLLAR, + STATE(2332), 1, + sym_comment, + STATE(2620), 1, + sym__immediate_decimal, + ACTIONS(4922), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4924), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(807), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1681), 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, + [71445] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1707), 1, + anon_sym_BANG, + STATE(2333), 1, + sym_comment, + ACTIONS(1460), 2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1462), 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, + [71484] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + ACTIONS(2938), 1, + anon_sym_DOLLAR, + STATE(784), 1, + sym__immediate_decimal, + STATE(2334), 1, + sym_comment, + ACTIONS(1611), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(1645), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(783), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1599), 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, + [71530] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1637), 1, + sym__unquoted_pattern, + ACTIONS(1687), 1, + anon_sym_LPAREN2, + ACTIONS(3806), 1, + anon_sym_DOLLAR, + STATE(2335), 1, + sym_comment, + STATE(2675), 1, + sym__immediate_decimal, + ACTIONS(4926), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4928), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(1351), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1631), 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, + [71578] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1687), 1, + anon_sym_LPAREN2, + ACTIONS(1695), 1, + sym__unquoted_pattern, + ACTIONS(3806), 1, + anon_sym_DOLLAR, + STATE(2336), 1, + sym_comment, + STATE(2693), 1, + sym__immediate_decimal, + ACTIONS(4926), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4928), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(1288), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1681), 15, + ts_builtin_sym_end, sym__newline, - ACTIONS(4877), 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_and2, + anon_sym_xor2, + anon_sym_or2, + [71626] = 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(2742), 1, + aux_sym_expr_unary_token1, + ACTIONS(4889), 1, + aux_sym__where_predicate_lhs_path_head_token1, + ACTIONS(4908), 1, anon_sym_LPAREN, - ACTIONS(4879), 1, + ACTIONS(4910), 1, + anon_sym_DOLLAR, + ACTIONS(4912), 1, anon_sym_DASH2, - ACTIONS(4883), 1, + STATE(1296), 1, + sym__expr_unary_minus, + STATE(2337), 1, + sym_comment, + STATE(2407), 1, + sym_val_string, + STATE(2430), 1, + sym__where_predicate_lhs_path_head, + STATE(2614), 1, + sym__where_predicate_lhs, + STATE(2942), 1, + sym__binary_predicate, + STATE(2946), 1, + sym_where_predicate, + ACTIONS(2489), 2, + anon_sym_true, + anon_sym_false, + STATE(2258), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2925), 2, + sym_expr_unary, + sym_val_bool, + STATE(418), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [71696] = 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(2742), 1, + aux_sym_expr_unary_token1, + ACTIONS(4889), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(948), 1, + ACTIONS(4908), 1, + anon_sym_LPAREN, + ACTIONS(4910), 1, + anon_sym_DOLLAR, + ACTIONS(4912), 1, + anon_sym_DASH2, + STATE(1296), 1, sym__expr_unary_minus, - STATE(2310), 1, + STATE(2338), 1, sym_comment, - STATE(2417), 1, + STATE(2407), 1, sym_val_string, - STATE(2427), 1, + STATE(2430), 1, sym__where_predicate_lhs_path_head, - STATE(2606), 1, + STATE(2614), 1, sym__where_predicate_lhs, - STATE(2752), 1, - sym__binary_predicate_parenthesized, - STATE(2753), 1, + STATE(2957), 1, + sym__binary_predicate, + STATE(2973), 1, sym_where_predicate, - STATE(3036), 1, - aux_sym__repeat_newline, - ACTIONS(1938), 2, + ACTIONS(2489), 2, anon_sym_true, anon_sym_false, - STATE(2248), 2, + STATE(2258), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2828), 2, + STATE(2925), 2, sym_expr_unary, sym_val_bool, - STATE(426), 4, + STATE(418), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [70171] = 23, + [71766] = 21, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -199919,49 +202350,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1600), 1, - anon_sym_DOLLAR, - ACTIONS(2702), 1, + ACTIONS(2742), 1, aux_sym_expr_unary_token1, - ACTIONS(4875), 1, - sym__newline, - ACTIONS(4877), 1, + ACTIONS(4889), 1, + aux_sym__where_predicate_lhs_path_head_token1, + ACTIONS(4908), 1, anon_sym_LPAREN, - ACTIONS(4879), 1, + ACTIONS(4910), 1, + anon_sym_DOLLAR, + ACTIONS(4912), 1, anon_sym_DASH2, - ACTIONS(4883), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(948), 1, + STATE(1296), 1, sym__expr_unary_minus, - STATE(2311), 1, + STATE(2339), 1, sym_comment, - STATE(2417), 1, + STATE(2407), 1, sym_val_string, - STATE(2427), 1, + STATE(2430), 1, sym__where_predicate_lhs_path_head, - STATE(2606), 1, + STATE(2614), 1, sym__where_predicate_lhs, - STATE(2764), 1, - sym__binary_predicate_parenthesized, - STATE(2765), 1, + STATE(2975), 1, + sym__binary_predicate, + STATE(2977), 1, sym_where_predicate, - STATE(3036), 1, - aux_sym__repeat_newline, - ACTIONS(1938), 2, + ACTIONS(2489), 2, anon_sym_true, anon_sym_false, - STATE(2248), 2, + STATE(2258), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2828), 2, + STATE(2925), 2, sym_expr_unary, sym_val_bool, - STATE(426), 4, + STATE(418), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [70247] = 23, + [71836] = 21, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -199972,49 +202399,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1600), 1, - anon_sym_DOLLAR, - ACTIONS(2702), 1, + ACTIONS(2742), 1, aux_sym_expr_unary_token1, - ACTIONS(4875), 1, - sym__newline, - ACTIONS(4877), 1, + ACTIONS(4889), 1, + aux_sym__where_predicate_lhs_path_head_token1, + ACTIONS(4908), 1, anon_sym_LPAREN, - ACTIONS(4879), 1, + ACTIONS(4910), 1, + anon_sym_DOLLAR, + ACTIONS(4912), 1, anon_sym_DASH2, - ACTIONS(4883), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(948), 1, + STATE(1296), 1, sym__expr_unary_minus, - STATE(2312), 1, + STATE(2340), 1, sym_comment, - STATE(2417), 1, + STATE(2407), 1, sym_val_string, - STATE(2427), 1, + STATE(2430), 1, sym__where_predicate_lhs_path_head, - STATE(2606), 1, + STATE(2614), 1, sym__where_predicate_lhs, - STATE(2768), 1, - sym__binary_predicate_parenthesized, - STATE(2769), 1, + STATE(2978), 1, + sym__binary_predicate, + STATE(2979), 1, sym_where_predicate, - STATE(3036), 1, - aux_sym__repeat_newline, - ACTIONS(1938), 2, + ACTIONS(2489), 2, anon_sym_true, anon_sym_false, - STATE(2248), 2, + STATE(2258), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2828), 2, + STATE(2925), 2, sym_expr_unary, sym_val_bool, - STATE(426), 4, + STATE(418), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [70323] = 23, + [71906] = 21, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -200025,49 +202448,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1600), 1, - anon_sym_DOLLAR, - ACTIONS(2702), 1, + ACTIONS(2742), 1, aux_sym_expr_unary_token1, - ACTIONS(4875), 1, - sym__newline, - ACTIONS(4877), 1, + ACTIONS(4889), 1, + aux_sym__where_predicate_lhs_path_head_token1, + ACTIONS(4908), 1, anon_sym_LPAREN, - ACTIONS(4879), 1, + ACTIONS(4910), 1, + anon_sym_DOLLAR, + ACTIONS(4912), 1, anon_sym_DASH2, - ACTIONS(4883), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(948), 1, + STATE(1296), 1, sym__expr_unary_minus, - STATE(2307), 1, - aux_sym__repeat_newline, - STATE(2313), 1, + STATE(2341), 1, sym_comment, - STATE(2417), 1, + STATE(2407), 1, sym_val_string, - STATE(2427), 1, + STATE(2430), 1, sym__where_predicate_lhs_path_head, - STATE(2606), 1, + STATE(2614), 1, sym__where_predicate_lhs, - STATE(2846), 1, - sym__binary_predicate_parenthesized, - STATE(2847), 1, + STATE(2980), 1, + sym__binary_predicate, + STATE(2983), 1, sym_where_predicate, - ACTIONS(1938), 2, + ACTIONS(2489), 2, anon_sym_true, anon_sym_false, - STATE(2248), 2, + STATE(2258), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2828), 2, + STATE(2925), 2, sym_expr_unary, sym_val_bool, - STATE(426), 4, + STATE(418), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [70399] = 23, + [71976] = 21, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -200078,49 +202497,303 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1600), 1, - anon_sym_DOLLAR, - ACTIONS(2702), 1, + ACTIONS(2742), 1, aux_sym_expr_unary_token1, - ACTIONS(4875), 1, - sym__newline, - ACTIONS(4877), 1, + ACTIONS(4889), 1, + aux_sym__where_predicate_lhs_path_head_token1, + ACTIONS(4908), 1, anon_sym_LPAREN, - ACTIONS(4879), 1, + ACTIONS(4910), 1, + anon_sym_DOLLAR, + ACTIONS(4912), 1, anon_sym_DASH2, - ACTIONS(4883), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(948), 1, + STATE(1296), 1, sym__expr_unary_minus, - STATE(2314), 1, + STATE(2342), 1, sym_comment, - STATE(2417), 1, + STATE(2407), 1, sym_val_string, - STATE(2427), 1, + STATE(2430), 1, sym__where_predicate_lhs_path_head, - STATE(2606), 1, + STATE(2614), 1, sym__where_predicate_lhs, - STATE(2777), 1, - sym__binary_predicate_parenthesized, - STATE(2783), 1, + STATE(2984), 1, + sym__binary_predicate, + STATE(2985), 1, sym_where_predicate, - STATE(3036), 1, - aux_sym__repeat_newline, - ACTIONS(1938), 2, + ACTIONS(2489), 2, anon_sym_true, anon_sym_false, - STATE(2248), 2, + STATE(2258), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2828), 2, + STATE(2925), 2, sym_expr_unary, sym_val_bool, - STATE(426), 4, + STATE(418), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [70475] = 23, + [72046] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4930), 1, + anon_sym_DOT, + ACTIONS(4932), 1, + aux_sym__immediate_decimal_token5, + STATE(2343), 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, + [72086] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4934), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4936), 1, + aux_sym__immediate_decimal_token5, + STATE(2344), 1, + sym_comment, + ACTIONS(739), 2, + anon_sym_DOT_DOT2, + 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, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [72126] = 13, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1631), 1, + sym__space, + ACTIONS(1637), 1, + sym__unquoted_pattern, + ACTIONS(3347), 1, + anon_sym_LPAREN2, + ACTIONS(3663), 1, + anon_sym_DOLLAR, + ACTIONS(4938), 1, + anon_sym_DOT, + ACTIONS(4940), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4942), 1, + aux_sym__immediate_decimal_token2, + STATE(2345), 1, + sym_comment, + STATE(2532), 1, + sym__immediate_decimal, + ACTIONS(4944), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2690), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1633), 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, + [72180] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1687), 1, + anon_sym_LPAREN2, + ACTIONS(1722), 1, + anon_sym_DOT, + ACTIONS(3806), 1, + anon_sym_DOLLAR, + STATE(2346), 1, + sym_comment, + STATE(2639), 1, + sym__immediate_decimal, + ACTIONS(1691), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(1693), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2638), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1599), 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, + [72228] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + ACTIONS(2938), 1, + anon_sym_DOLLAR, + STATE(802), 1, + sym__immediate_decimal, + STATE(2347), 1, + sym_comment, + ACTIONS(1611), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(1645), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(801), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1677), 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, + [72274] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + ACTIONS(2938), 1, + anon_sym_DOLLAR, + STATE(804), 1, + sym__immediate_decimal, + STATE(2348), 1, + sym_comment, + ACTIONS(1611), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(1645), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(803), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1659), 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, + [72320] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + ACTIONS(2938), 1, + anon_sym_DOLLAR, + STATE(806), 1, + sym__immediate_decimal, + STATE(2349), 1, + sym_comment, + ACTIONS(1611), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(1645), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(805), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1669), 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, + [72366] = 21, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -200131,49 +202804,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1600), 1, + ACTIONS(1601), 1, anon_sym_DOLLAR, - ACTIONS(2702), 1, + ACTIONS(2696), 1, aux_sym_expr_unary_token1, - ACTIONS(4875), 1, - sym__newline, - ACTIONS(4877), 1, + ACTIONS(4883), 1, anon_sym_LPAREN, - ACTIONS(4879), 1, + ACTIONS(4885), 1, anon_sym_DASH2, - ACTIONS(4883), 1, + ACTIONS(4889), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(948), 1, + STATE(959), 1, sym__expr_unary_minus, - STATE(2315), 1, + STATE(2350), 1, sym_comment, - STATE(2417), 1, + STATE(2407), 1, sym_val_string, - STATE(2427), 1, + STATE(2430), 1, sym__where_predicate_lhs_path_head, - STATE(2606), 1, + STATE(2617), 1, sym__where_predicate_lhs, - STATE(2734), 1, - sym__binary_predicate_parenthesized, - STATE(2735), 1, + STATE(2876), 1, + sym__binary_predicate, + STATE(2877), 1, sym_where_predicate, - STATE(3036), 1, - aux_sym__repeat_newline, - ACTIONS(1938), 2, + ACTIONS(1945), 2, anon_sym_true, anon_sym_false, - STATE(2248), 2, + STATE(2253), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2828), 2, + STATE(2882), 2, sym_expr_unary, sym_val_bool, - STATE(426), 4, + STATE(418), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [70551] = 23, + [72436] = 21, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -200184,49 +202853,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1600), 1, + ACTIONS(1601), 1, anon_sym_DOLLAR, - ACTIONS(2702), 1, + ACTIONS(2696), 1, aux_sym_expr_unary_token1, - ACTIONS(4875), 1, - sym__newline, - ACTIONS(4877), 1, + ACTIONS(4883), 1, anon_sym_LPAREN, - ACTIONS(4879), 1, + ACTIONS(4885), 1, anon_sym_DASH2, - ACTIONS(4883), 1, + ACTIONS(4889), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(948), 1, + STATE(959), 1, sym__expr_unary_minus, - STATE(2311), 1, - aux_sym__repeat_newline, - STATE(2316), 1, + STATE(2351), 1, sym_comment, - STATE(2417), 1, + STATE(2407), 1, sym_val_string, - STATE(2427), 1, + STATE(2430), 1, sym__where_predicate_lhs_path_head, - STATE(2606), 1, + STATE(2617), 1, sym__where_predicate_lhs, - STATE(2848), 1, - sym__binary_predicate_parenthesized, - STATE(2849), 1, + STATE(2878), 1, + sym__binary_predicate, + STATE(2880), 1, sym_where_predicate, - ACTIONS(1938), 2, + ACTIONS(1945), 2, anon_sym_true, anon_sym_false, - STATE(2248), 2, + STATE(2253), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2828), 2, + STATE(2882), 2, sym_expr_unary, sym_val_bool, - STATE(426), 4, + STATE(418), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [70627] = 23, + [72506] = 21, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -200237,49 +202902,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1600), 1, + ACTIONS(1601), 1, anon_sym_DOLLAR, - ACTIONS(2702), 1, + ACTIONS(2696), 1, aux_sym_expr_unary_token1, - ACTIONS(4875), 1, - sym__newline, - ACTIONS(4877), 1, + ACTIONS(4883), 1, anon_sym_LPAREN, - ACTIONS(4879), 1, + ACTIONS(4885), 1, anon_sym_DASH2, - ACTIONS(4883), 1, + ACTIONS(4889), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(948), 1, + STATE(959), 1, sym__expr_unary_minus, - STATE(2317), 1, + STATE(2352), 1, sym_comment, - STATE(2322), 1, - aux_sym__repeat_newline, - STATE(2417), 1, + STATE(2407), 1, sym_val_string, - STATE(2427), 1, + STATE(2430), 1, sym__where_predicate_lhs_path_head, - STATE(2606), 1, + STATE(2617), 1, sym__where_predicate_lhs, - STATE(2795), 1, - sym__binary_predicate_parenthesized, - STATE(2797), 1, + STATE(2881), 1, + sym__binary_predicate, + STATE(2897), 1, sym_where_predicate, - ACTIONS(1938), 2, + ACTIONS(1945), 2, anon_sym_true, anon_sym_false, - STATE(2248), 2, + STATE(2253), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2828), 2, + STATE(2882), 2, sym_expr_unary, sym_val_bool, - STATE(426), 4, + STATE(418), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [70703] = 23, + [72576] = 21, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -200290,49 +202951,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1600), 1, + ACTIONS(1601), 1, anon_sym_DOLLAR, - ACTIONS(2702), 1, + ACTIONS(2696), 1, aux_sym_expr_unary_token1, - ACTIONS(4875), 1, - sym__newline, - ACTIONS(4877), 1, + ACTIONS(4883), 1, anon_sym_LPAREN, - ACTIONS(4879), 1, + ACTIONS(4885), 1, anon_sym_DASH2, - ACTIONS(4883), 1, + ACTIONS(4889), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(948), 1, + STATE(959), 1, sym__expr_unary_minus, - STATE(2312), 1, - aux_sym__repeat_newline, - STATE(2318), 1, + STATE(2353), 1, sym_comment, - STATE(2417), 1, + STATE(2407), 1, sym_val_string, - STATE(2427), 1, + STATE(2430), 1, sym__where_predicate_lhs_path_head, - STATE(2606), 1, + STATE(2617), 1, sym__where_predicate_lhs, - STATE(2850), 1, - sym__binary_predicate_parenthesized, - STATE(2851), 1, + STATE(2898), 1, + sym__binary_predicate, + STATE(2899), 1, sym_where_predicate, - ACTIONS(1938), 2, + ACTIONS(1945), 2, anon_sym_true, anon_sym_false, - STATE(2248), 2, + STATE(2253), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2828), 2, + STATE(2882), 2, sym_expr_unary, sym_val_bool, - STATE(426), 4, + STATE(418), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [70779] = 23, + [72646] = 21, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -200343,49 +203000,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1600), 1, + ACTIONS(1601), 1, anon_sym_DOLLAR, - ACTIONS(2702), 1, + ACTIONS(2696), 1, aux_sym_expr_unary_token1, - ACTIONS(4875), 1, - sym__newline, - ACTIONS(4877), 1, + ACTIONS(4883), 1, anon_sym_LPAREN, - ACTIONS(4879), 1, + ACTIONS(4885), 1, anon_sym_DASH2, - ACTIONS(4883), 1, + ACTIONS(4889), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(948), 1, + STATE(959), 1, sym__expr_unary_minus, - STATE(2310), 1, - aux_sym__repeat_newline, - STATE(2319), 1, + STATE(2354), 1, sym_comment, - STATE(2417), 1, + STATE(2407), 1, sym_val_string, - STATE(2427), 1, + STATE(2430), 1, sym__where_predicate_lhs_path_head, - STATE(2606), 1, + STATE(2617), 1, sym__where_predicate_lhs, - STATE(2798), 1, - sym__binary_predicate_parenthesized, - STATE(2800), 1, + STATE(2900), 1, + sym__binary_predicate, + STATE(2901), 1, sym_where_predicate, - ACTIONS(1938), 2, + ACTIONS(1945), 2, anon_sym_true, anon_sym_false, - STATE(2248), 2, + STATE(2253), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2828), 2, + STATE(2882), 2, sym_expr_unary, sym_val_bool, - STATE(426), 4, + STATE(418), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [70855] = 23, + [72716] = 21, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -200396,170 +203049,807 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1600), 1, + ACTIONS(1601), 1, anon_sym_DOLLAR, - ACTIONS(2702), 1, + ACTIONS(2696), 1, aux_sym_expr_unary_token1, - ACTIONS(4875), 1, - sym__newline, - ACTIONS(4877), 1, + ACTIONS(4883), 1, anon_sym_LPAREN, - ACTIONS(4879), 1, + ACTIONS(4885), 1, anon_sym_DASH2, - ACTIONS(4883), 1, + ACTIONS(4889), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(948), 1, + STATE(959), 1, sym__expr_unary_minus, - STATE(2320), 1, + STATE(2355), 1, sym_comment, - STATE(2321), 1, - aux_sym__repeat_newline, - STATE(2417), 1, + STATE(2407), 1, sym_val_string, - STATE(2427), 1, + STATE(2430), 1, sym__where_predicate_lhs_path_head, - STATE(2606), 1, + STATE(2617), 1, sym__where_predicate_lhs, - STATE(2802), 1, - sym__binary_predicate_parenthesized, - STATE(2803), 1, + STATE(2904), 1, + sym__binary_predicate, + STATE(2905), 1, sym_where_predicate, - ACTIONS(1938), 2, + ACTIONS(1945), 2, anon_sym_true, anon_sym_false, - STATE(2248), 2, + STATE(2253), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2828), 2, - sym_expr_unary, - sym_val_bool, - STATE(426), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [70931] = 23, - ACTIONS(3), 1, + STATE(2882), 2, + sym_expr_unary, + sym_val_bool, + STATE(418), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [72786] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4946), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4948), 1, + aux_sym__immediate_decimal_token5, + STATE(2356), 1, + sym_comment, + ACTIONS(739), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(741), 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, + [72825] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1687), 1, + anon_sym_LPAREN2, + ACTIONS(3806), 1, + anon_sym_DOLLAR, + STATE(1349), 1, + sym__immediate_decimal, + STATE(2357), 1, + sym_comment, + ACTIONS(1693), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(1728), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(1348), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1599), 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, + [72870] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1687), 1, + anon_sym_LPAREN2, + ACTIONS(3806), 1, + anon_sym_DOLLAR, + STATE(1283), 1, + sym__immediate_decimal, + STATE(2358), 1, + sym_comment, + ACTIONS(1693), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(1728), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(1282), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1677), 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, + [72915] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1687), 1, + anon_sym_LPAREN2, + ACTIONS(3806), 1, + anon_sym_DOLLAR, + STATE(1285), 1, + sym__immediate_decimal, + STATE(2359), 1, + sym_comment, + ACTIONS(1693), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(1728), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(1284), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1659), 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, + [72960] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1687), 1, + anon_sym_LPAREN2, + ACTIONS(3806), 1, + anon_sym_DOLLAR, + STATE(1287), 1, + sym__immediate_decimal, + STATE(2360), 1, + sym_comment, + ACTIONS(1693), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(1728), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(1286), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1669), 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, + [73005] = 12, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1599), 1, + sym__space, + ACTIONS(3347), 1, + anon_sym_LPAREN2, + ACTIONS(3663), 1, + anon_sym_DOLLAR, + ACTIONS(4940), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4942), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(4950), 1, + anon_sym_DOT, + STATE(2361), 1, + sym_comment, + STATE(2689), 1, + sym__immediate_decimal, + ACTIONS(4944), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2688), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1603), 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, + [73056] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4932), 1, + aux_sym__immediate_decimal_token5, + STATE(2362), 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, + [73093] = 13, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1637), 1, + sym__unquoted_pattern, + ACTIONS(3141), 1, + anon_sym_LPAREN2, + ACTIONS(3689), 1, + anon_sym_DOLLAR, + ACTIONS(4952), 1, + anon_sym_DOT, + ACTIONS(4954), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4956), 1, + aux_sym__immediate_decimal_token2, + STATE(2363), 1, + sym_comment, + STATE(2562), 1, + sym__immediate_decimal, + ACTIONS(1631), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4958), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2718), 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, + [73146] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4960), 1, + aux_sym__immediate_decimal_token5, + STATE(2364), 1, + sym_comment, + ACTIONS(767), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(769), 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, + [73183] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4962), 1, + anon_sym_DOT, + ACTIONS(4964), 1, + aux_sym__immediate_decimal_token5, + STATE(2365), 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, + [73222] = 12, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1631), 1, + sym__space, + ACTIONS(1637), 1, + sym__unquoted_pattern, + ACTIONS(3347), 1, + anon_sym_LPAREN2, + ACTIONS(3663), 1, + anon_sym_DOLLAR, + ACTIONS(4966), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4968), 1, + aux_sym__immediate_decimal_token2, + STATE(2366), 1, + sym_comment, + STATE(2763), 1, + sym__immediate_decimal, + ACTIONS(4970), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3212), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1633), 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, + [73273] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1818), 1, + anon_sym_LPAREN2, + ACTIONS(1828), 1, + sym__unquoted_pattern, + ACTIONS(4972), 1, + anon_sym_DOT_DOT2, + ACTIONS(4976), 1, + sym_filesize_unit, + ACTIONS(4978), 1, + sym_duration_unit, + STATE(2367), 1, + sym_comment, + STATE(5072), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4974), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(968), 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, + [73320] = 12, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1681), 1, + sym__space, + ACTIONS(1695), 1, + sym__unquoted_pattern, + ACTIONS(3347), 1, + anon_sym_LPAREN2, + ACTIONS(3663), 1, + anon_sym_DOLLAR, + ACTIONS(4966), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4968), 1, + aux_sym__immediate_decimal_token2, + STATE(2368), 1, + sym_comment, + STATE(2769), 1, + sym__immediate_decimal, + ACTIONS(4970), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3224), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1683), 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, + [73371] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2369), 1, + sym_comment, + ACTIONS(1512), 2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1514), 21, + ts_builtin_sym_end, + 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_QMARK2, + anon_sym_BANG, + [73405] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4980), 1, + anon_sym_QMARK2, + ACTIONS(4982), 1, + anon_sym_BANG, + STATE(2370), 1, + sym_comment, + STATE(2484), 1, + sym__path_suffix, + ACTIONS(1444), 20, + anon_sym_EQ, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_DOT2, + [73443] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2371), 1, + sym_comment, + ACTIONS(1520), 2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1522), 21, + ts_builtin_sym_end, + 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_QMARK2, + anon_sym_BANG, + [73477] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1599), 1, + sym__space, + ACTIONS(3347), 1, + anon_sym_LPAREN2, + ACTIONS(3663), 1, + anon_sym_DOLLAR, + ACTIONS(4984), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4986), 1, + aux_sym__immediate_decimal_token2, + STATE(2372), 1, + sym_comment, + STATE(3211), 1, + sym__immediate_decimal, + ACTIONS(4944), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3210), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1603), 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, + [73525] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1677), 1, + sym__space, + ACTIONS(3347), 1, + anon_sym_LPAREN2, + ACTIONS(3663), 1, + anon_sym_DOLLAR, + ACTIONS(4984), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4986), 1, + aux_sym__immediate_decimal_token2, + STATE(2373), 1, + sym_comment, + STATE(3219), 1, + sym__immediate_decimal, + ACTIONS(4944), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3218), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1679), 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, + [73573] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1659), 1, + sym__space, + ACTIONS(3347), 1, + anon_sym_LPAREN2, + ACTIONS(3663), 1, + anon_sym_DOLLAR, + ACTIONS(4984), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4986), 1, + aux_sym__immediate_decimal_token2, + STATE(2374), 1, + sym_comment, + STATE(3221), 1, + sym__immediate_decimal, + ACTIONS(4944), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3220), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1661), 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, + [73621] = 11, + ACTIONS(103), 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(1600), 1, + ACTIONS(1669), 1, + sym__space, + ACTIONS(3347), 1, + anon_sym_LPAREN2, + ACTIONS(3663), 1, anon_sym_DOLLAR, - ACTIONS(2702), 1, - aux_sym_expr_unary_token1, - ACTIONS(4875), 1, - sym__newline, - ACTIONS(4877), 1, - anon_sym_LPAREN, - ACTIONS(4879), 1, - anon_sym_DASH2, - ACTIONS(4883), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(948), 1, - sym__expr_unary_minus, - STATE(2321), 1, + ACTIONS(4984), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4986), 1, + aux_sym__immediate_decimal_token2, + STATE(2375), 1, sym_comment, - STATE(2417), 1, - sym_val_string, - STATE(2427), 1, - sym__where_predicate_lhs_path_head, - STATE(2606), 1, - sym__where_predicate_lhs, - STATE(2756), 1, - sym__binary_predicate_parenthesized, - STATE(2757), 1, - sym_where_predicate, - STATE(3036), 1, - aux_sym__repeat_newline, - ACTIONS(1938), 2, - anon_sym_true, - anon_sym_false, - STATE(2248), 2, - sym_expr_parenthesized, + STATE(3223), 1, + sym__immediate_decimal, + ACTIONS(4944), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3222), 2, + sym__expr_parenthesized_immediate, sym_val_variable, - STATE(2828), 2, - sym_expr_unary, - sym_val_bool, - STATE(426), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [71007] = 23, - ACTIONS(3), 1, + ACTIONS(1671), 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, + [73669] = 12, + ACTIONS(103), 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(1600), 1, + ACTIONS(1695), 1, + sym__unquoted_pattern, + ACTIONS(3141), 1, + anon_sym_LPAREN2, + ACTIONS(3689), 1, anon_sym_DOLLAR, - ACTIONS(2702), 1, - aux_sym_expr_unary_token1, - ACTIONS(4875), 1, - sym__newline, - ACTIONS(4877), 1, - anon_sym_LPAREN, - ACTIONS(4879), 1, - anon_sym_DASH2, - ACTIONS(4883), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(948), 1, - sym__expr_unary_minus, - STATE(2322), 1, + ACTIONS(4988), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4990), 1, + aux_sym__immediate_decimal_token2, + STATE(2376), 1, sym_comment, - STATE(2417), 1, - sym_val_string, - STATE(2427), 1, - sym__where_predicate_lhs_path_head, - STATE(2606), 1, - sym__where_predicate_lhs, - STATE(2748), 1, - sym__binary_predicate_parenthesized, - STATE(2749), 1, - sym_where_predicate, - STATE(3036), 1, - aux_sym__repeat_newline, - ACTIONS(1938), 2, - anon_sym_true, - anon_sym_false, - STATE(2248), 2, - sym_expr_parenthesized, + STATE(2939), 1, + sym__immediate_decimal, + ACTIONS(1681), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4992), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3322), 2, + sym__expr_parenthesized_immediate, sym_val_variable, - STATE(2828), 2, - sym_expr_unary, - sym_val_bool, - STATE(426), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [71083] = 7, + ACTIONS(1683), 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, + [73719] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1504), 1, + ACTIONS(1454), 1, anon_sym_DOT_DOT2, - ACTIONS(4905), 1, + ACTIONS(4994), 1, anon_sym_DOT2, - STATE(458), 1, + STATE(432), 1, + sym_cell_path, + STATE(715), 1, sym_path, - STATE(2323), 1, + STATE(2377), 1, sym_comment, - STATE(2324), 1, + STATE(2409), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1506), 23, - anon_sym_if, - anon_sym_in, + ACTIONS(1456), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200571,31 +203861,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_COLON, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_COLON2, - [71127] = 6, + [73761] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1508), 1, + ACTIONS(1818), 1, + anon_sym_LPAREN2, + ACTIONS(1840), 1, + sym__unquoted_pattern, + ACTIONS(4996), 1, anon_sym_DOT_DOT2, - ACTIONS(4913), 1, - anon_sym_DOT2, - STATE(458), 1, - sym_path, - STATE(2324), 2, + ACTIONS(5000), 1, + sym_filesize_unit, + ACTIONS(5002), 1, + sym_duration_unit, + STATE(2378), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1510), 23, - anon_sym_if, - anon_sym_in, + STATE(4972), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4998), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(968), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200607,33 +203900,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_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, - [71169] = 8, + [73807] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1659), 1, + STATE(2379), 1, + sym_comment, + ACTIONS(1528), 2, anon_sym_DOT_DOT2, - ACTIONS(4905), 1, anon_sym_DOT2, - STATE(458), 1, - sym_path, - STATE(471), 1, - sym_cell_path, - STATE(2323), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2325), 1, - sym_comment, - ACTIONS(1657), 22, - anon_sym_if, + ACTIONS(1530), 21, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200645,33 +203925,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_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_COLON, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_COLON2, - [71215] = 8, + anon_sym_QMARK2, + anon_sym_BANG, + [73841] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1647), 1, + STATE(2380), 1, + sym_comment, + ACTIONS(1500), 2, anon_sym_DOT_DOT2, - ACTIONS(4905), 1, anon_sym_DOT2, - STATE(458), 1, - sym_path, - STATE(483), 1, - sym_cell_path, - STATE(2323), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2326), 1, - sym_comment, - ACTIONS(1645), 22, - anon_sym_if, + ACTIONS(1502), 21, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200683,147 +203955,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_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_COLON, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_COLON2, - [71261] = 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(1600), 1, - anon_sym_DOLLAR, - ACTIONS(2702), 1, - aux_sym_expr_unary_token1, - ACTIONS(4875), 1, - sym__newline, - ACTIONS(4877), 1, - anon_sym_LPAREN, - ACTIONS(4879), 1, - anon_sym_DASH2, - ACTIONS(4883), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(948), 1, - sym__expr_unary_minus, - STATE(2314), 1, - aux_sym__repeat_newline, - STATE(2327), 1, - sym_comment, - STATE(2417), 1, - sym_val_string, - STATE(2427), 1, - sym__where_predicate_lhs_path_head, - STATE(2606), 1, - sym__where_predicate_lhs, - STATE(2852), 1, - sym__binary_predicate_parenthesized, - STATE(2853), 1, - sym_where_predicate, - ACTIONS(1938), 2, - anon_sym_true, - anon_sym_false, - STATE(2248), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2828), 2, - sym_expr_unary, - sym_val_bool, - STATE(426), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [71337] = 23, + anon_sym_QMARK2, + anon_sym_BANG, + [73875] = 5, 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(1600), 1, - anon_sym_DOLLAR, - ACTIONS(2702), 1, - aux_sym_expr_unary_token1, - ACTIONS(4875), 1, - sym__newline, - ACTIONS(4877), 1, - anon_sym_LPAREN, - ACTIONS(4879), 1, - anon_sym_DASH2, - ACTIONS(4883), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(948), 1, - sym__expr_unary_minus, - STATE(2301), 1, - aux_sym__repeat_newline, - STATE(2328), 1, + ACTIONS(4964), 1, + aux_sym__immediate_decimal_token5, + STATE(2381), 1, sym_comment, - STATE(2417), 1, - sym_val_string, - STATE(2427), 1, - sym__where_predicate_lhs_path_head, - STATE(2606), 1, - sym__where_predicate_lhs, - STATE(2762), 1, - sym__binary_predicate_parenthesized, - STATE(2763), 1, - sym_where_predicate, - ACTIONS(1938), 2, - anon_sym_true, - anon_sym_false, - STATE(2248), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2828), 2, - sym_expr_unary, - sym_val_bool, - STATE(426), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [71413] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1635), 1, + ACTIONS(747), 2, + anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1687), 1, - anon_sym_LPAREN2, - ACTIONS(3894), 1, - anon_sym_DOLLAR, - ACTIONS(4916), 1, - anon_sym_DOT, - STATE(2329), 1, - sym_comment, - STATE(2465), 1, - sym__immediate_decimal, - ACTIONS(4918), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(4920), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2633), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1598), 15, + ACTIONS(749), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -200839,19 +203989,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [71464] = 5, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [73911] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1717), 1, - anon_sym_BANG, - STATE(2330), 1, + STATE(2382), 1, sym_comment, - ACTIONS(1448), 2, + ACTIONS(1504), 2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1450), 23, - anon_sym_if, - anon_sym_in, + ACTIONS(1506), 21, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200863,39 +204016,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_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_COLON, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_COLON2, - [71503] = 10, - ACTIONS(3), 1, + anon_sym_QMARK2, + anon_sym_BANG, + [73945] = 12, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1604), 1, - anon_sym_LPAREN2, - ACTIONS(1679), 1, + ACTIONS(1637), 1, sym__unquoted_pattern, - ACTIONS(2873), 1, + ACTIONS(3141), 1, + anon_sym_LPAREN2, + ACTIONS(3689), 1, anon_sym_DOLLAR, - STATE(2331), 1, - sym_comment, - STATE(2567), 1, - sym__immediate_decimal, - ACTIONS(4922), 2, + ACTIONS(4988), 1, aux_sym__immediate_decimal_token1, + ACTIONS(4990), 1, aux_sym__immediate_decimal_token2, - ACTIONS(4924), 2, + STATE(2383), 1, + sym_comment, + STATE(2959), 1, + sym__immediate_decimal, + ACTIONS(1631), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4992), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(748), 2, + STATE(3295), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1651), 16, + ACTIONS(1633), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200907,34 +204062,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_and2, - anon_sym_xor2, - anon_sym_or2, - [71552] = 10, + [73995] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1604), 1, - anon_sym_LPAREN2, - ACTIONS(1643), 1, - anon_sym_DOT, - ACTIONS(2873), 1, - anon_sym_DOLLAR, - STATE(2332), 1, + ACTIONS(5004), 1, + aux_sym__immediate_decimal_token5, + STATE(2384), 1, sym_comment, - STATE(2501), 1, - sym__immediate_decimal, - ACTIONS(1608), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(1610), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2553), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1639), 16, + ACTIONS(767), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(769), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200946,34 +204085,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, - [71601] = 10, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [74031] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1604), 1, - anon_sym_LPAREN2, - ACTIONS(1635), 1, - sym__unquoted_pattern, - ACTIONS(2873), 1, - anon_sym_DOLLAR, - STATE(2333), 1, + STATE(2385), 1, sym_comment, - STATE(2562), 1, - sym__immediate_decimal, - ACTIONS(4922), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(4924), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(730), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1598), 16, + ACTIONS(739), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(741), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200990,27 +204118,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [71650] = 9, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [74065] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1604), 1, - anon_sym_LPAREN2, - ACTIONS(2873), 1, - anon_sym_DOLLAR, - STATE(743), 1, - sym__immediate_decimal, - STATE(2334), 1, + STATE(2386), 1, sym_comment, - ACTIONS(1610), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1655), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(742), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1667), 16, + ACTIONS(767), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(769), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201027,68 +204148,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [71696] = 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(2786), 1, - aux_sym_expr_unary_token1, - ACTIONS(4883), 1, - aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4897), 1, - anon_sym_LPAREN, - ACTIONS(4899), 1, - anon_sym_DOLLAR, - ACTIONS(4901), 1, - anon_sym_DASH2, - STATE(1290), 1, - sym__expr_unary_minus, - STATE(2335), 1, - sym_comment, - STATE(2417), 1, - sym_val_string, - STATE(2427), 1, - sym__where_predicate_lhs_path_head, - STATE(2596), 1, - sym__where_predicate_lhs, - STATE(2973), 1, - sym__binary_predicate, - STATE(3014), 1, - sym_where_predicate, - ACTIONS(2208), 2, - anon_sym_true, - anon_sym_false, - STATE(2258), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2999), 2, - sym_expr_unary, - sym_val_bool, - STATE(426), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [71766] = 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [74099] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4926), 1, - anon_sym_DOT, - ACTIONS(4928), 1, - aux_sym__immediate_decimal_token5, - STATE(2336), 1, + STATE(2387), 1, sym_comment, - ACTIONS(747), 2, + ACTIONS(863), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(749), 21, + ACTIONS(865), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201110,166 +204183,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [71806] = 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(2786), 1, - aux_sym_expr_unary_token1, - ACTIONS(4883), 1, - aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4897), 1, - anon_sym_LPAREN, - ACTIONS(4899), 1, - anon_sym_DOLLAR, - ACTIONS(4901), 1, - anon_sym_DASH2, - STATE(1290), 1, - sym__expr_unary_minus, - STATE(2337), 1, - sym_comment, - STATE(2417), 1, - sym_val_string, - STATE(2427), 1, - sym__where_predicate_lhs_path_head, - STATE(2596), 1, - sym__where_predicate_lhs, - STATE(2906), 1, - sym_where_predicate, - STATE(2965), 1, - sym__binary_predicate, - ACTIONS(2208), 2, - anon_sym_true, - anon_sym_false, - STATE(2258), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2999), 2, - sym_expr_unary, - sym_val_bool, - STATE(426), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [71876] = 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(2786), 1, - aux_sym_expr_unary_token1, - ACTIONS(4883), 1, - aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4897), 1, - anon_sym_LPAREN, - ACTIONS(4899), 1, - anon_sym_DOLLAR, - ACTIONS(4901), 1, - anon_sym_DASH2, - STATE(1290), 1, - sym__expr_unary_minus, - STATE(2338), 1, - sym_comment, - STATE(2417), 1, - sym_val_string, - STATE(2427), 1, - sym__where_predicate_lhs_path_head, - STATE(2596), 1, - sym__where_predicate_lhs, - STATE(2985), 1, - sym__binary_predicate, - STATE(2997), 1, - sym_where_predicate, - ACTIONS(2208), 2, - anon_sym_true, - anon_sym_false, - STATE(2258), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2999), 2, - sym_expr_unary, - sym_val_bool, - STATE(426), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [71946] = 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(2786), 1, - aux_sym_expr_unary_token1, - ACTIONS(4883), 1, - aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4897), 1, - anon_sym_LPAREN, - ACTIONS(4899), 1, - anon_sym_DOLLAR, - ACTIONS(4901), 1, - anon_sym_DASH2, - STATE(1290), 1, - sym__expr_unary_minus, - STATE(2339), 1, - sym_comment, - STATE(2417), 1, - sym_val_string, - STATE(2427), 1, - sym__where_predicate_lhs_path_head, - STATE(2596), 1, - sym__where_predicate_lhs, - STATE(2998), 1, - sym__binary_predicate, - STATE(3008), 1, - sym_where_predicate, - ACTIONS(2208), 2, - anon_sym_true, - anon_sym_false, - STATE(2258), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2999), 2, - sym_expr_unary, - sym_val_bool, - STATE(426), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [72016] = 6, + [74133] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4930), 1, + ACTIONS(5006), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4932), 1, + ACTIONS(5008), 1, aux_sym__immediate_decimal_token5, - STATE(2340), 1, + STATE(2388), 1, sym_comment, - ACTIONS(739), 2, + ACTIONS(1732), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(741), 21, + ACTIONS(1730), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201289,81 +204215,33 @@ 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, - [72056] = 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(1600), 1, - anon_sym_DOLLAR, - ACTIONS(2702), 1, - aux_sym_expr_unary_token1, - ACTIONS(4877), 1, - anon_sym_LPAREN, - ACTIONS(4879), 1, - anon_sym_DASH2, - ACTIONS(4883), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(948), 1, - sym__expr_unary_minus, - STATE(2341), 1, - sym_comment, - STATE(2417), 1, - sym_val_string, - STATE(2427), 1, - sym__where_predicate_lhs_path_head, - STATE(2606), 1, - sym__where_predicate_lhs, - STATE(2770), 1, - sym__binary_predicate, - STATE(2771), 1, - sym_where_predicate, - ACTIONS(1938), 2, - anon_sym_true, - anon_sym_false, - STATE(2248), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2828), 2, - sym_expr_unary, - sym_val_bool, - STATE(426), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [72126] = 10, - ACTIONS(3), 1, + [74171] = 12, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1635), 1, - sym__unquoted_pattern, - ACTIONS(1687), 1, + ACTIONS(3141), 1, anon_sym_LPAREN2, - ACTIONS(3894), 1, + ACTIONS(3689), 1, anon_sym_DOLLAR, - STATE(2342), 1, - sym_comment, - STATE(2661), 1, - sym__immediate_decimal, - ACTIONS(4934), 2, + ACTIONS(4954), 1, aux_sym__immediate_decimal_token1, + ACTIONS(4956), 1, aux_sym__immediate_decimal_token2, - ACTIONS(4936), 2, + ACTIONS(5010), 1, + anon_sym_DOT, + STATE(2389), 1, + sym_comment, + STATE(2716), 1, + sym__immediate_decimal, + ACTIONS(1599), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4958), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1299), 2, + STATE(2887), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1598), 15, - ts_builtin_sym_end, + ACTIONS(1603), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201375,82 +204253,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, - [72174] = 21, + [74221] = 6, 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(1600), 1, - anon_sym_DOLLAR, - ACTIONS(2702), 1, - aux_sym_expr_unary_token1, - ACTIONS(4877), 1, - anon_sym_LPAREN, - ACTIONS(4879), 1, - anon_sym_DASH2, - ACTIONS(4883), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(948), 1, - sym__expr_unary_minus, - STATE(2343), 1, + ACTIONS(5012), 1, + anon_sym_DOT, + ACTIONS(5014), 1, + aux_sym__immediate_decimal_token5, + STATE(2390), 1, sym_comment, - STATE(2417), 1, - sym_val_string, - STATE(2427), 1, - sym__where_predicate_lhs_path_head, - STATE(2606), 1, - sym__where_predicate_lhs, - STATE(2773), 1, - sym__binary_predicate, - STATE(2774), 1, - sym_where_predicate, - ACTIONS(1938), 2, - anon_sym_true, - anon_sym_false, - STATE(2248), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2828), 2, - sym_expr_unary, - sym_val_bool, - STATE(426), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [72244] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1679), 1, + ACTIONS(1792), 2, + anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1687), 1, - anon_sym_LPAREN2, - ACTIONS(3894), 1, - anon_sym_DOLLAR, - STATE(2344), 1, - sym_comment, - STATE(2693), 1, - sym__immediate_decimal, - ACTIONS(4934), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(4936), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(1279), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1651), 15, - ts_builtin_sym_end, + ACTIONS(1790), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201462,33 +204277,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_and2, anon_sym_xor2, anon_sym_or2, - [72292] = 10, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [74259] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1687), 1, - anon_sym_LPAREN2, - ACTIONS(1701), 1, - anon_sym_DOT, - ACTIONS(3894), 1, - anon_sym_DOLLAR, - STATE(2345), 1, + ACTIONS(5016), 1, + anon_sym_DOT2, + STATE(458), 1, + sym_path, + STATE(790), 1, + sym_cell_path, + STATE(2298), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2391), 1, sym_comment, - STATE(2632), 1, - sym__immediate_decimal, - ACTIONS(1691), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(1693), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2631), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1639), 15, - ts_builtin_sym_end, + ACTIONS(1891), 19, + anon_sym_if, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201500,79 +204311,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_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [72340] = 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(1600), 1, - anon_sym_DOLLAR, - ACTIONS(2702), 1, - aux_sym_expr_unary_token1, - ACTIONS(4877), 1, - anon_sym_LPAREN, - ACTIONS(4879), 1, - anon_sym_DASH2, - ACTIONS(4883), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(948), 1, - sym__expr_unary_minus, - STATE(2346), 1, - sym_comment, - STATE(2417), 1, - sym_val_string, - STATE(2427), 1, - sym__where_predicate_lhs_path_head, - STATE(2606), 1, - sym__where_predicate_lhs, - STATE(2877), 1, - sym__binary_predicate, - STATE(2881), 1, - sym_where_predicate, - ACTIONS(1938), 2, - anon_sym_true, - anon_sym_false, - STATE(2248), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2828), 2, - sym_expr_unary, - sym_val_bool, - STATE(426), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [72410] = 9, + [74299] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1604), 1, - anon_sym_LPAREN2, - ACTIONS(2873), 1, - anon_sym_DOLLAR, - STATE(729), 1, - sym__immediate_decimal, - STATE(2347), 1, + ACTIONS(5016), 1, + anon_sym_DOT2, + STATE(458), 1, + sym_path, + STATE(799), 1, + sym_cell_path, + STATE(2298), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2392), 1, sym_comment, - ACTIONS(1610), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1655), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(728), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1639), 16, + ACTIONS(1911), 19, + anon_sym_if, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201585,80 +204345,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [72456] = 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(1600), 1, - anon_sym_DOLLAR, - ACTIONS(2702), 1, - aux_sym_expr_unary_token1, - ACTIONS(4877), 1, - anon_sym_LPAREN, - ACTIONS(4879), 1, - anon_sym_DASH2, - ACTIONS(4883), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(948), 1, - sym__expr_unary_minus, - STATE(2348), 1, - sym_comment, - STATE(2417), 1, - sym_val_string, - STATE(2427), 1, - sym__where_predicate_lhs_path_head, - STATE(2606), 1, - sym__where_predicate_lhs, - STATE(2886), 1, - sym__binary_predicate, - STATE(2892), 1, - sym_where_predicate, - ACTIONS(1938), 2, - anon_sym_true, - anon_sym_false, - STATE(2248), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2828), 2, - sym_expr_unary, - sym_val_bool, - STATE(426), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [72526] = 9, + [74339] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1604), 1, - anon_sym_LPAREN2, - ACTIONS(2873), 1, - anon_sym_DOLLAR, - STATE(745), 1, - sym__immediate_decimal, - STATE(2349), 1, + ACTIONS(5018), 1, + anon_sym_QMARK2, + ACTIONS(5020), 1, + anon_sym_BANG, + STATE(692), 1, + sym__path_suffix, + STATE(2393), 1, sym_comment, - ACTIONS(1610), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1655), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(744), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1681), 16, + ACTIONS(1442), 2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1444), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201670,32 +204378,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_COLON, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [72572] = 9, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [74379] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1604), 1, - anon_sym_LPAREN2, - ACTIONS(2873), 1, - anon_sym_DOLLAR, - STATE(747), 1, - sym__immediate_decimal, - STATE(2350), 1, + STATE(2394), 1, sym_comment, - ACTIONS(1610), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1655), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(746), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1663), 16, + ACTIONS(1508), 2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1510), 21, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201707,88 +204406,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_COLON, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [72618] = 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(1600), 1, - anon_sym_DOLLAR, - ACTIONS(2702), 1, - aux_sym_expr_unary_token1, - ACTIONS(4877), 1, - anon_sym_LPAREN, - ACTIONS(4879), 1, - anon_sym_DASH2, - ACTIONS(4883), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(948), 1, - sym__expr_unary_minus, - STATE(2351), 1, - sym_comment, - STATE(2417), 1, - sym_val_string, - STATE(2427), 1, - sym__where_predicate_lhs_path_head, - STATE(2606), 1, - sym__where_predicate_lhs, - STATE(2898), 1, - sym__binary_predicate, - STATE(2901), 1, - sym_where_predicate, - ACTIONS(1938), 2, - anon_sym_true, - anon_sym_false, - STATE(2248), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2828), 2, - sym_expr_unary, - sym_val_bool, - STATE(426), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [72688] = 13, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_QMARK2, + anon_sym_BANG, + [74413] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1598), 1, - sym__space, - ACTIONS(1635), 1, - sym__unquoted_pattern, - ACTIONS(3118), 1, - anon_sym_LPAREN2, - ACTIONS(3683), 1, - anon_sym_DOLLAR, - ACTIONS(4938), 1, + ACTIONS(5022), 1, anon_sym_DOT, - ACTIONS(4940), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4942), 1, - aux_sym__immediate_decimal_token2, - STATE(2352), 1, + ACTIONS(5024), 1, + aux_sym__immediate_decimal_token5, + STATE(2395), 1, sym_comment, - STATE(2540), 1, - sym__immediate_decimal, - ACTIONS(4944), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2658), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1602), 13, + 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, @@ -201802,174 +204444,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [72742] = 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(1600), 1, - anon_sym_DOLLAR, - ACTIONS(2702), 1, - aux_sym_expr_unary_token1, - ACTIONS(4877), 1, - anon_sym_LPAREN, - ACTIONS(4879), 1, - anon_sym_DASH2, - ACTIONS(4883), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(948), 1, - sym__expr_unary_minus, - STATE(2353), 1, - sym_comment, - STATE(2417), 1, - sym_val_string, - STATE(2427), 1, - sym__where_predicate_lhs_path_head, - STATE(2606), 1, - sym__where_predicate_lhs, - STATE(2717), 1, - sym_where_predicate, - STATE(2830), 1, - sym__binary_predicate, - ACTIONS(1938), 2, - anon_sym_true, - anon_sym_false, - STATE(2248), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2828), 2, - sym_expr_unary, - sym_val_bool, - STATE(426), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [72812] = 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(2786), 1, - aux_sym_expr_unary_token1, - ACTIONS(4883), 1, - aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4897), 1, - anon_sym_LPAREN, - ACTIONS(4899), 1, - anon_sym_DOLLAR, - ACTIONS(4901), 1, - anon_sym_DASH2, - STATE(1290), 1, - sym__expr_unary_minus, - STATE(2354), 1, - sym_comment, - STATE(2417), 1, - sym_val_string, - STATE(2427), 1, - sym__where_predicate_lhs_path_head, - STATE(2596), 1, - sym__where_predicate_lhs, - STATE(3015), 1, - sym__binary_predicate, - STATE(3017), 1, - sym_where_predicate, - ACTIONS(2208), 2, - anon_sym_true, - anon_sym_false, - STATE(2258), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2999), 2, - sym_expr_unary, - sym_val_bool, - STATE(426), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [72882] = 21, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [74451] = 6, + ACTIONS(103), 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(2786), 1, - aux_sym_expr_unary_token1, - ACTIONS(4883), 1, - aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4897), 1, - anon_sym_LPAREN, - ACTIONS(4899), 1, - anon_sym_DOLLAR, - ACTIONS(4901), 1, - anon_sym_DASH2, - STATE(1290), 1, - sym__expr_unary_minus, - STATE(2355), 1, + ACTIONS(5026), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5028), 1, + aux_sym__immediate_decimal_token5, + STATE(2396), 1, sym_comment, - STATE(2417), 1, - sym_val_string, - STATE(2427), 1, - sym__where_predicate_lhs_path_head, - STATE(2596), 1, - sym__where_predicate_lhs, - STATE(2954), 1, - sym__binary_predicate, - STATE(2967), 1, - sym_where_predicate, - ACTIONS(2208), 2, - anon_sym_true, - anon_sym_false, - STATE(2258), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2999), 2, - sym_expr_unary, - sym_val_bool, - STATE(426), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [72952] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1724), 1, + ACTIONS(741), 6, + sym__space, anon_sym_LPAREN2, - ACTIONS(1734), 1, - sym__unquoted_pattern, - ACTIONS(4946), 1, - anon_sym_DOT_DOT2, - ACTIONS(4950), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym_filesize_unit, - ACTIONS(4952), 1, sym_duration_unit, - STATE(2356), 1, + ACTIONS(739), 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, + [74489] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5030), 1, + aux_sym__immediate_decimal_token5, + STATE(2397), 1, sym_comment, - STATE(4801), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4948), 2, + ACTIONS(769), 6, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(886), 16, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(767), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201983,23 +204506,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, - [72999] = 6, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [74524] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4954), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4956), 1, + ACTIONS(5014), 1, aux_sym__immediate_decimal_token5, - STATE(2357), 1, + STATE(2398), 1, sym_comment, - ACTIONS(739), 2, + ACTIONS(1792), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(741), 20, - ts_builtin_sym_end, + ACTIONS(1790), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202011,25 +204530,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_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, - [73038] = 5, + [74559] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3710), 1, + sym_raw_string_begin, + ACTIONS(5032), 1, + sym__entry_separator, + STATE(2399), 2, + sym_comment, + aux_sym__types_body_repeat2, + ACTIONS(3705), 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, + [74594] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4958), 1, + ACTIONS(5035), 1, aux_sym__immediate_decimal_token5, - STATE(2358), 1, + STATE(2400), 1, sym_comment, - ACTIONS(771), 2, + ACTIONS(1848), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(773), 21, + ACTIONS(1846), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202049,21 +204598,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [73075] = 6, + [74629] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4960), 1, + ACTIONS(5037), 1, anon_sym_DOT, - ACTIONS(4962), 1, + ACTIONS(5039), 1, aux_sym__immediate_decimal_token5, - STATE(2359), 1, + STATE(2401), 1, sym_comment, - ACTIONS(747), 2, + ACTIONS(1792), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(749), 20, + ACTIONS(1790), 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, + [74666] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2402), 1, + sym_comment, + ACTIONS(767), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(769), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -202084,17 +204658,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [73114] = 5, + [74699] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4928), 1, - aux_sym__immediate_decimal_token5, - STATE(2360), 1, + STATE(2403), 1, sym_comment, - ACTIONS(747), 2, + ACTIONS(863), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(749), 21, + ACTIONS(865), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202106,8 +204679,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, @@ -202116,32 +204687,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [73151] = 12, + [74732] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1598), 1, - sym__space, - ACTIONS(1635), 1, - sym__unquoted_pattern, - ACTIONS(3118), 1, + ACTIONS(3141), 1, anon_sym_LPAREN2, - ACTIONS(3683), 1, + ACTIONS(3689), 1, anon_sym_DOLLAR, - ACTIONS(4964), 1, + ACTIONS(5041), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4966), 1, + ACTIONS(5043), 1, aux_sym__immediate_decimal_token2, - STATE(2361), 1, + STATE(2404), 1, sym_comment, - STATE(2806), 1, + STATE(3293), 1, sym__immediate_decimal, - ACTIONS(4968), 2, + ACTIONS(1599), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4958), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3155), 2, + STATE(3292), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1602), 13, + ACTIONS(1603), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202153,34 +204723,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [73202] = 12, - ACTIONS(103), 1, + [74779] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__space, - ACTIONS(3118), 1, + ACTIONS(1637), 1, + sym__unquoted_pattern_in_record, + ACTIONS(3179), 1, anon_sym_LPAREN2, - ACTIONS(3683), 1, + ACTIONS(3789), 1, anon_sym_DOLLAR, - ACTIONS(4940), 1, + ACTIONS(5045), 1, + anon_sym_DOT, + ACTIONS(5047), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4942), 1, + ACTIONS(5049), 1, aux_sym__immediate_decimal_token2, - ACTIONS(4970), 1, - anon_sym_DOT, - STATE(2362), 1, + STATE(2405), 1, sym_comment, - STATE(2657), 1, + STATE(2703), 1, sym__immediate_decimal, - ACTIONS(4944), 2, + ACTIONS(1633), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(5051), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2656), 2, + STATE(2999), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1641), 13, + 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, + [74830] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(968), 1, + sym__space, + ACTIONS(1818), 1, + anon_sym_LPAREN2, + ACTIONS(5053), 1, + anon_sym_DOT_DOT2, + ACTIONS(5057), 1, + sym_filesize_unit, + ACTIONS(5059), 1, + sym_duration_unit, + ACTIONS(5061), 1, + sym__unquoted_pattern, + STATE(2406), 1, + sym_comment, + STATE(5056), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5055), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(847), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202194,28 +204797,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [73253] = 9, + [74877] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1687), 1, - anon_sym_LPAREN2, - ACTIONS(3894), 1, - anon_sym_DOLLAR, - STATE(1340), 1, - sym__immediate_decimal, - STATE(2363), 1, + ACTIONS(1673), 1, + anon_sym_QMARK2, + ACTIONS(1675), 1, + anon_sym_BANG, + STATE(2407), 1, sym_comment, - ACTIONS(1693), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1758), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(1315), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1639), 15, + STATE(2553), 1, + sym__path_suffix, + ACTIONS(5065), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5063), 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, + [74916] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5067), 1, + anon_sym_DOT, + ACTIONS(5069), 1, + aux_sym__immediate_decimal_token5, + STATE(2408), 1, + sym_comment, + 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, @@ -202227,38 +204858,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [73298] = 13, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1635), 1, + anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(3323), 1, - anon_sym_LPAREN2, - ACTIONS(3707), 1, - anon_sym_DOLLAR, - ACTIONS(4972), 1, - anon_sym_DOT, - ACTIONS(4974), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4976), 1, - aux_sym__immediate_decimal_token2, - STATE(2364), 1, + [74953] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1524), 1, + anon_sym_DOT_DOT2, + ACTIONS(4994), 1, + anon_sym_DOT2, + STATE(715), 1, + sym_path, + STATE(2409), 1, sym_comment, - STATE(2623), 1, - sym__immediate_decimal, - ACTIONS(1598), 2, + STATE(2419), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1526), 18, ts_builtin_sym_end, - sym__space, - ACTIONS(4978), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2821), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1602), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202270,32 +204886,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, - [73351] = 12, - ACTIONS(103), 1, + anon_sym_COLON, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [74992] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1651), 1, - sym__space, - ACTIONS(1679), 1, - sym__unquoted_pattern, - ACTIONS(3118), 1, - anon_sym_LPAREN2, - ACTIONS(3683), 1, - anon_sym_DOLLAR, - ACTIONS(4964), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4966), 1, - aux_sym__immediate_decimal_token2, - STATE(2365), 1, + ACTIONS(1655), 1, + anon_sym_DOT_DOT2, + ACTIONS(4994), 1, + anon_sym_DOT2, + STATE(715), 1, + sym_path, + STATE(969), 1, + sym_cell_path, + STATE(2409), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2410), 1, sym_comment, - STATE(2810), 1, - sym__immediate_decimal, - ACTIONS(4968), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3188), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1653), 13, + ACTIONS(1653), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202307,29 +204920,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, - [73402] = 9, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [75033] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1687), 1, - anon_sym_LPAREN2, - ACTIONS(3894), 1, - anon_sym_DOLLAR, - STATE(1339), 1, - sym__immediate_decimal, - STATE(2366), 1, - sym_comment, - ACTIONS(1693), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1758), 2, + ACTIONS(5071), 1, aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(1337), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1667), 15, + ACTIONS(5073), 1, + aux_sym__immediate_decimal_token5, + STATE(2411), 1, + sym_comment, + ACTIONS(1732), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1730), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -202345,28 +204953,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [73447] = 9, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [75070] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5077), 1, + anon_sym_GT2, + ACTIONS(5079), 1, + sym__entry_separator, + ACTIONS(5081), 1, + sym_raw_string_begin, + STATE(2399), 1, + aux_sym__types_body_repeat2, + STATE(2412), 1, + sym_comment, + ACTIONS(5075), 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, + [75109] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5079), 1, + sym__entry_separator, + ACTIONS(5081), 1, + sym_raw_string_begin, + ACTIONS(5083), 1, + anon_sym_GT2, + STATE(2399), 1, + aux_sym__types_body_repeat2, + STATE(2413), 1, + sym_comment, + ACTIONS(5075), 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, + [75148] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5079), 1, + sym__entry_separator, + ACTIONS(5081), 1, + sym_raw_string_begin, + ACTIONS(5085), 1, + anon_sym_GT2, + STATE(2399), 1, + aux_sym__types_body_repeat2, + STATE(2414), 1, + sym_comment, + ACTIONS(5075), 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, + [75187] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5079), 1, + sym__entry_separator, + ACTIONS(5081), 1, + sym_raw_string_begin, + ACTIONS(5087), 1, + anon_sym_GT2, + STATE(2399), 1, + aux_sym__types_body_repeat2, + STATE(2415), 1, + sym_comment, + ACTIONS(5075), 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, + [75226] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1687), 1, - anon_sym_LPAREN2, - ACTIONS(3894), 1, - anon_sym_DOLLAR, - STATE(1350), 1, - sym__immediate_decimal, - STATE(2367), 1, + ACTIONS(5089), 1, + anon_sym_DOT2, + STATE(2291), 1, + sym_cell_path, + STATE(2416), 1, sym_comment, - ACTIONS(1693), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1758), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(1342), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1681), 15, - ts_builtin_sym_end, + STATE(2450), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2500), 1, + sym_path, + ACTIONS(1456), 18, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202378,30 +205110,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_and2, - anon_sym_xor2, - anon_sym_or2, - [73492] = 9, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + [75265] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1687), 1, - anon_sym_LPAREN2, - ACTIONS(3894), 1, - anon_sym_DOLLAR, - STATE(1278), 1, - sym__immediate_decimal, - STATE(2368), 1, + ACTIONS(1649), 1, + anon_sym_DOT_DOT2, + ACTIONS(4994), 1, + anon_sym_DOT2, + STATE(715), 1, + sym_path, + STATE(937), 1, + sym_cell_path, + STATE(2409), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2417), 1, sym_comment, - ACTIONS(1693), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1758), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(1352), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1663), 15, + ACTIONS(1647), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -202417,23 +205147,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [73537] = 6, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [75306] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4980), 1, - anon_sym_DOT, - ACTIONS(4982), 1, - aux_sym__immediate_decimal_token5, - STATE(2369), 1, + ACTIONS(3141), 1, + anon_sym_LPAREN2, + ACTIONS(3689), 1, + anon_sym_DOLLAR, + ACTIONS(5041), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5043), 1, + aux_sym__immediate_decimal_token2, + STATE(2418), 1, sym_comment, - ACTIONS(749), 6, + STATE(3319), 1, + sym__immediate_decimal, + ACTIONS(1659), 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(747), 15, + ACTIONS(4958), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3318), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1661), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202445,19 +205185,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, - [73575] = 4, + [75353] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2370), 1, - sym_comment, - ACTIONS(860), 2, + ACTIONS(1532), 1, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(862), 21, + ACTIONS(5091), 1, + anon_sym_DOT2, + STATE(715), 1, + sym_path, + STATE(2419), 2, + sym_comment, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1534), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202469,40 +205210,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, - anon_sym_RBRACE, + anon_sym_COLON, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [75390] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5094), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5096), 1, + aux_sym__immediate_decimal_token5, + STATE(2420), 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, sym_filesize_unit, sym_duration_unit, - [73609] = 11, + 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, + [75427] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__space, - ACTIONS(3118), 1, + ACTIONS(3141), 1, anon_sym_LPAREN2, - ACTIONS(3683), 1, + ACTIONS(3689), 1, anon_sym_DOLLAR, - ACTIONS(4984), 1, + ACTIONS(5041), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4986), 1, + ACTIONS(5043), 1, aux_sym__immediate_decimal_token2, - STATE(2371), 1, + STATE(2421), 1, sym_comment, - STATE(3152), 1, + STATE(3321), 1, sym__immediate_decimal, - ACTIONS(4944), 2, + ACTIONS(1669), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4958), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3148), 2, + STATE(3320), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1641), 13, + ACTIONS(1671), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202514,19 +205283,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, - [73657] = 5, + [75474] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4962), 1, - aux_sym__immediate_decimal_token5, - STATE(2372), 1, + STATE(2422), 1, sym_comment, - ACTIONS(747), 2, + ACTIONS(739), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(749), 20, + ACTIONS(741), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -202547,33 +205312,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [73693] = 12, + [75507] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1679), 1, - sym__unquoted_pattern, - ACTIONS(3323), 1, - anon_sym_LPAREN2, - ACTIONS(3707), 1, - anon_sym_DOLLAR, - ACTIONS(4988), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4990), 1, - aux_sym__immediate_decimal_token2, - STATE(2373), 1, + ACTIONS(5024), 1, + aux_sym__immediate_decimal_token5, + STATE(2423), 1, sym_comment, - STATE(2920), 1, - sym__immediate_decimal, - ACTIONS(1651), 2, - ts_builtin_sym_end, + ACTIONS(749), 6, sym__space, - ACTIONS(4992), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3298), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1653), 11, + 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, @@ -202585,33 +205338,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, - [73743] = 12, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [75542] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1635), 1, - sym__unquoted_pattern, - ACTIONS(3323), 1, + ACTIONS(3141), 1, anon_sym_LPAREN2, - ACTIONS(3707), 1, + ACTIONS(3689), 1, anon_sym_DOLLAR, - ACTIONS(4988), 1, + ACTIONS(5041), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4990), 1, + ACTIONS(5043), 1, aux_sym__immediate_decimal_token2, - STATE(2374), 1, + STATE(2424), 1, sym_comment, - STATE(2916), 1, + STATE(3317), 1, sym__immediate_decimal, - ACTIONS(1598), 2, + ACTIONS(1677), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4992), 2, + ACTIONS(4958), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3305), 2, + STATE(3316), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1602), 11, + ACTIONS(1679), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202623,28 +205378,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [73793] = 10, + [75589] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1724), 1, - anon_sym_LPAREN2, - ACTIONS(1820), 1, - sym__unquoted_pattern, - ACTIONS(4994), 1, - anon_sym_DOT_DOT2, - ACTIONS(4998), 1, - sym_filesize_unit, - ACTIONS(5000), 1, - sym_duration_unit, - STATE(2375), 1, + ACTIONS(1877), 1, + anon_sym_DOT2, + STATE(431), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(458), 1, + sym_path, + STATE(2425), 1, sym_comment, - STATE(4881), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4996), 2, + ACTIONS(5100), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5098), 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, + [75627] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5102), 1, + anon_sym_QMARK2, + STATE(2426), 1, + sym_comment, + ACTIONS(1462), 20, + anon_sym_EQ, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_DOT2, + [75659] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5104), 1, + anon_sym_DOT2, + STATE(2427), 1, + sym_comment, + STATE(2482), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2642), 1, + sym_path, + STATE(2666), 1, + sym_cell_path, + ACTIONS(1647), 3, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(886), 15, - ts_builtin_sym_end, + ACTIONS(1649), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202656,22 +205466,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, - [73839] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [75699] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5079), 1, + sym__entry_separator, + ACTIONS(5081), 1, + sym_raw_string_begin, + STATE(2399), 1, + aux_sym__types_body_repeat2, + STATE(2428), 1, + sym_comment, + ACTIONS(5075), 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, + [75735] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5002), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5004), 1, - aux_sym__immediate_decimal_token5, - STATE(2376), 1, + ACTIONS(5102), 1, + anon_sym_BANG, + STATE(2429), 1, sym_comment, - ACTIONS(1772), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1770), 19, + ACTIONS(1462), 20, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202683,31 +205519,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, 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, - [73877] = 8, + anon_sym_DOT2, + [75767] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1442), 1, - anon_sym_DOT_DOT2, - ACTIONS(5006), 1, + ACTIONS(1877), 1, anon_sym_DOT2, - STATE(428), 1, - sym_cell_path, - STATE(720), 1, + STATE(458), 1, sym_path, - STATE(2377), 1, - sym_comment, - STATE(2414), 1, + STATE(2425), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1444), 18, + STATE(2430), 1, + sym_comment, + ACTIONS(5108), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5106), 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, + [75805] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1818), 1, + anon_sym_LPAREN2, + ACTIONS(5110), 1, + anon_sym_DOT_DOT2, + ACTIONS(5114), 1, + sym_filesize_unit, + ACTIONS(5116), 1, + sym_duration_unit, + ACTIONS(5118), 1, + sym__unquoted_pattern, + STATE(2431), 1, + sym_comment, + STATE(5065), 1, + sym__expr_parenthesized_immediate, + ACTIONS(968), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(5112), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(847), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202719,24 +205593,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_COLON, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [73919] = 5, - ACTIONS(3), 1, + [75851] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5008), 1, + ACTIONS(5069), 1, aux_sym__immediate_decimal_token5, - STATE(2378), 1, + STATE(2432), 1, sym_comment, - ACTIONS(771), 2, + 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, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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, - ACTIONS(773), 20, - ts_builtin_sym_end, + [75885] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1637), 1, + sym__unquoted_pattern, + ACTIONS(1976), 1, + anon_sym_LPAREN2, + ACTIONS(5120), 1, + anon_sym_DOT_DOT2, + STATE(2433), 1, + sym_comment, + ACTIONS(5122), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1972), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202748,25 +205648,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, + [75923] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2434), 1, + sym_comment, + ACTIONS(865), 6, + sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [73955] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2379), 1, - sym_comment, - ACTIONS(1519), 2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1521), 21, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(863), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202778,112 +205677,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_COLON, - 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, - [73989] = 11, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [75955] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1667), 1, - sym__space, - ACTIONS(3118), 1, + ACTIONS(1637), 1, + sym__unquoted_pattern_in_record, + ACTIONS(3179), 1, anon_sym_LPAREN2, - ACTIONS(3683), 1, + ACTIONS(3789), 1, anon_sym_DOLLAR, - ACTIONS(4984), 1, + ACTIONS(5124), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4986), 1, + ACTIONS(5126), 1, aux_sym__immediate_decimal_token2, - STATE(2380), 1, + STATE(2435), 1, sym_comment, - STATE(3181), 1, + STATE(3113), 1, sym__immediate_decimal, - ACTIONS(4944), 2, + ACTIONS(1633), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(5128), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3179), 2, + STATE(3581), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1669), 13, + ACTIONS(1631), 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, - [74037] = 11, - ACTIONS(103), 1, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [76003] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1681), 1, - sym__space, - ACTIONS(3118), 1, + ACTIONS(1695), 1, + sym__unquoted_pattern_in_record, + ACTIONS(3179), 1, anon_sym_LPAREN2, - ACTIONS(3683), 1, + ACTIONS(3789), 1, anon_sym_DOLLAR, - ACTIONS(4984), 1, + ACTIONS(5124), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4986), 1, + ACTIONS(5126), 1, aux_sym__immediate_decimal_token2, - STATE(2381), 1, + STATE(2436), 1, sym_comment, - STATE(3183), 1, + STATE(3115), 1, sym__immediate_decimal, - ACTIONS(4944), 2, + ACTIONS(1683), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(5128), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3182), 2, + STATE(3397), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1683), 13, + ACTIONS(1681), 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, - [74085] = 11, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [76051] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1663), 1, - sym__space, - ACTIONS(3118), 1, - anon_sym_LPAREN2, - ACTIONS(3683), 1, - anon_sym_DOLLAR, - ACTIONS(4984), 1, + ACTIONS(5130), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4986), 1, - aux_sym__immediate_decimal_token2, - STATE(2382), 1, + ACTIONS(5132), 1, + aux_sym__immediate_decimal_token5, + STATE(2437), 1, sym_comment, - STATE(3186), 1, - sym__immediate_decimal, - ACTIONS(4944), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3185), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1665), 13, + ACTIONS(1730), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1732), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202897,17 +205781,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [74133] = 4, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [76087] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2383), 1, + ACTIONS(1970), 1, + anon_sym_BANG, + STATE(2438), 1, sym_comment, - ACTIONS(1523), 2, + ACTIONS(1460), 2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1525), 21, + ACTIONS(1462), 18, ts_builtin_sym_end, - anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202925,23 +205812,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_QMARK2, - anon_sym_BANG, - [74167] = 7, - ACTIONS(3), 1, + [76121] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5010), 1, + ACTIONS(5104), 1, anon_sym_DOT2, - STATE(458), 1, + STATE(2439), 1, + sym_comment, + STATE(2482), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2642), 1, sym_path, - STATE(731), 1, + STATE(2702), 1, sym_cell_path, - STATE(2323), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2384), 1, - sym_comment, - ACTIONS(1888), 19, - anon_sym_if, + ACTIONS(1653), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1655), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202954,57 +205842,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_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [74207] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2385), 1, - sym_comment, - ACTIONS(1527), 2, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1529), 21, - ts_builtin_sym_end, - 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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_QMARK2, - anon_sym_BANG, - [74241] = 7, + [76161] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5010), 1, + ACTIONS(5016), 1, anon_sym_DOT2, STATE(458), 1, sym_path, - STATE(741), 1, + STATE(914), 1, sym_cell_path, - STATE(2323), 1, + STATE(2298), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2386), 1, + STATE(2440), 1, sym_comment, - ACTIONS(1896), 19, - anon_sym_if, + ACTIONS(1883), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203019,23 +205872,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [74281] = 6, - ACTIONS(3), 1, + [76199] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5012), 1, - anon_sym_DOT, - ACTIONS(5014), 1, + ACTIONS(5134), 1, aux_sym__immediate_decimal_token5, - STATE(2387), 1, + STATE(2441), 1, sym_comment, - ACTIONS(1746), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1744), 19, + ACTIONS(769), 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(767), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203047,27 +205902,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, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [74319] = 6, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [76233] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5016), 1, - anon_sym_QMARK2, - ACTIONS(5018), 1, - anon_sym_BANG, - STATE(2388), 1, + anon_sym_DOT2, + STATE(458), 1, + sym_path, + STATE(967), 1, + sym_cell_path, + STATE(2298), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2442), 1, sym_comment, - STATE(2497), 1, - sym__path_suffix, - ACTIONS(1458), 20, - anon_sym_EQ, + ACTIONS(1887), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203079,41 +205929,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_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_DOT2, - [74357] = 12, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [76271] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3323), 1, - anon_sym_LPAREN2, - ACTIONS(3707), 1, - anon_sym_DOLLAR, - ACTIONS(4974), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4976), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(5020), 1, - anon_sym_DOT, - STATE(2389), 1, + STATE(2443), 1, sym_comment, - STATE(2820), 1, - sym__immediate_decimal, - ACTIONS(1639), 2, - ts_builtin_sym_end, + ACTIONS(741), 6, sym__space, - ACTIONS(4978), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2818), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1641), 11, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(739), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203125,17 +205959,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, - [74407] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [76303] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2390), 1, - sym_comment, - ACTIONS(1531), 2, - anon_sym_DOT_DOT2, + ACTIONS(5016), 1, anon_sym_DOT2, - ACTIONS(1533), 21, - ts_builtin_sym_end, - anon_sym_EQ, + STATE(458), 1, + sym_path, + STATE(918), 1, + sym_cell_path, + STATE(2298), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2444), 1, + sym_comment, + ACTIONS(1907), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203147,56 +205988,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_COLON, + 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, - [74441] = 7, + [76341] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5022), 1, - anon_sym_QMARK2, - ACTIONS(5024), 1, - anon_sym_BANG, - STATE(712), 1, - sym__path_suffix, - STATE(2391), 1, + ACTIONS(5136), 1, + anon_sym_DOT, + ACTIONS(5138), 1, + aux_sym__immediate_decimal_token5, + STATE(2445), 1, sym_comment, - ACTIONS(1456), 2, + ACTIONS(747), 6, + sym_identifier, + anon_sym_DASH2, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1458), 18, - ts_builtin_sym_end, + sym_filesize_unit, + sym_duration_unit, + sym__unquoted_pattern_in_record, + ACTIONS(749), 13, + 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_and2, - anon_sym_xor2, - anon_sym_or2, + 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, - [74481] = 4, - ACTIONS(3), 1, + [76377] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2392), 1, + ACTIONS(5140), 1, + anon_sym_DOT, + ACTIONS(5142), 1, + aux_sym__immediate_decimal_token5, + STATE(2446), 1, sym_comment, - ACTIONS(739), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(741), 21, + ACTIONS(1790), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1792), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203210,55 +206052,50 @@ 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, - [74515] = 4, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [76413] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2393), 1, + ACTIONS(5144), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5146), 1, + aux_sym__immediate_decimal_token5, + STATE(2447), 1, sym_comment, - ACTIONS(1535), 2, + ACTIONS(739), 6, + sym_identifier, + anon_sym_DASH2, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1537), 21, - ts_builtin_sym_end, + sym_filesize_unit, + sym_duration_unit, + sym__unquoted_pattern_in_record, + ACTIONS(741), 13, 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_and2, - anon_sym_xor2, - anon_sym_or2, + 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, - anon_sym_QMARK2, - anon_sym_BANG, - [74549] = 4, + [76449] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2394), 1, + ACTIONS(5039), 1, + aux_sym__immediate_decimal_token5, + STATE(2448), 1, sym_comment, - ACTIONS(1539), 2, + ACTIONS(1792), 2, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1541), 21, + sym__unquoted_pattern, + ACTIONS(1790), 18, ts_builtin_sym_end, - anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203270,55 +206107,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_COLON, 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, - [74583] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5026), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5028), 1, - aux_sym__immediate_decimal_token5, - STATE(2395), 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, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_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, - [74621] = 4, + [76483] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2396), 1, + STATE(2449), 1, sym_comment, - ACTIONS(771), 2, + ACTIONS(1732), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(773), 21, + ACTIONS(1730), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203338,22 +206141,18 @@ 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, - [74655] = 7, + [76515] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5030), 1, + ACTIONS(5089), 1, anon_sym_DOT2, - STATE(2293), 1, - sym_cell_path, - STATE(2397), 1, + STATE(2450), 1, sym_comment, - STATE(2459), 1, + STATE(2451), 1, aux_sym__where_predicate_lhs_repeat1, STATE(2500), 1, sym_path, - ACTIONS(1444), 18, + ACTIONS(1526), 18, anon_sym_EQ, sym__newline, anon_sym_SEMI, @@ -203372,17 +206171,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_DASH_DASH, anon_sym_RBRACE, - [74694] = 5, + [76551] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5014), 1, - aux_sym__immediate_decimal_token5, - STATE(2398), 1, + ACTIONS(5148), 1, + anon_sym_DOT2, + STATE(2500), 1, + sym_path, + STATE(2451), 2, sym_comment, - ACTIONS(1746), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1744), 19, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1534), 18, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203394,101 +206194,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, 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, - [74729] = 8, + [76585] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1659), 1, - anon_sym_DOT_DOT2, - ACTIONS(5006), 1, - anon_sym_DOT2, - STATE(720), 1, - sym_path, - STATE(963), 1, - sym_cell_path, - STATE(2399), 1, - sym_comment, - STATE(2414), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1657), 17, - ts_builtin_sym_end, + ACTIONS(5151), 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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [74770] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5034), 1, - anon_sym_GT2, - ACTIONS(5036), 1, - sym__entry_separator, - ACTIONS(5038), 1, - sym_raw_string_begin, - STATE(2400), 1, + STATE(2452), 2, sym_comment, - STATE(2401), 1, - aux_sym__types_body_repeat2, - ACTIONS(5032), 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, + aux_sym__types_body_repeat1, + ACTIONS(3758), 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, - [74809] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(3720), 1, + ACTIONS(3760), 16, sym_raw_string_begin, - ACTIONS(5040), 1, - sym__entry_separator, - STATE(2401), 2, - sym_comment, - aux_sym__types_body_repeat2, - ACTIONS(3715), 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, @@ -203496,60 +206229,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - aux_sym__unquoted_in_record_token1, - [74844] = 13, + [76619] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1635), 1, - sym__unquoted_pattern_in_record, - ACTIONS(3166), 1, - anon_sym_LPAREN2, - ACTIONS(3858), 1, - anon_sym_DOLLAR, - ACTIONS(5043), 1, - anon_sym_DOT, - ACTIONS(5045), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5047), 1, - aux_sym__immediate_decimal_token2, - STATE(2402), 1, - sym_comment, - STATE(2669), 1, - sym__immediate_decimal, - ACTIONS(1602), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(5049), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2951), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1598), 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, - [74895] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5051), 1, - aux_sym__immediate_decimal_token5, - STATE(2403), 1, + STATE(2453), 1, sym_comment, - ACTIONS(773), 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(1848), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1846), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203563,50 +206251,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, - sym__unquoted_pattern, - [74930] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5036), 1, - sym__entry_separator, - ACTIONS(5038), 1, - sym_raw_string_begin, - ACTIONS(5053), 1, - anon_sym_GT2, - STATE(2401), 1, - aux_sym__types_body_repeat2, - STATE(2404), 1, - sym_comment, - ACTIONS(5032), 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, - [74969] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [76651] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2405), 1, + STATE(2454), 1, sym_comment, - ACTIONS(739), 2, + ACTIONS(1897), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(741), 20, - ts_builtin_sym_end, + ACTIONS(1895), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203618,27 +206277,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [75002] = 6, + [76683] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5055), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5057), 1, + ACTIONS(5154), 1, aux_sym__immediate_decimal_token5, - STATE(2406), 1, + STATE(2455), 1, sym_comment, - ACTIONS(1772), 2, + ACTIONS(1848), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1770), 18, + ACTIONS(1846), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -203657,31 +206314,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [75039] = 11, + [76717] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3323), 1, - anon_sym_LPAREN2, - ACTIONS(3707), 1, - anon_sym_DOLLAR, - ACTIONS(5059), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5061), 1, - aux_sym__immediate_decimal_token2, - STATE(2407), 1, + ACTIONS(5156), 1, + anon_sym_QMARK2, + ACTIONS(5158), 1, + anon_sym_BANG, + STATE(2456), 1, sym_comment, - STATE(3276), 1, - sym__immediate_decimal, - ACTIONS(1667), 2, - ts_builtin_sym_end, + STATE(2574), 1, + sym__path_suffix, + ACTIONS(1444), 3, sym__space, - ACTIONS(4978), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3273), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1669), 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1442), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203693,31 +206341,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, - [75086] = 11, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [76755] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3323), 1, - anon_sym_LPAREN2, - ACTIONS(3707), 1, - anon_sym_DOLLAR, - ACTIONS(5059), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5061), 1, - aux_sym__immediate_decimal_token2, - STATE(2408), 1, + ACTIONS(5104), 1, + anon_sym_DOT2, + STATE(2457), 1, sym_comment, - STATE(3284), 1, - sym__immediate_decimal, - ACTIONS(1681), 2, - ts_builtin_sym_end, + STATE(2482), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2642), 1, + sym_path, + STATE(2651), 1, + sym_cell_path, + ACTIONS(1456), 3, sym__space, - ACTIONS(4978), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3279), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1683), 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1454), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203729,29 +206374,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, - [75133] = 11, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [76795] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(886), 1, - sym__space, - ACTIONS(1724), 1, + ACTIONS(1986), 1, anon_sym_LPAREN2, - ACTIONS(5063), 1, - anon_sym_DOT_DOT2, - ACTIONS(5067), 1, - sym_filesize_unit, - ACTIONS(5069), 1, - sym_duration_unit, - ACTIONS(5071), 1, + ACTIONS(1992), 1, sym__unquoted_pattern, - STATE(2409), 1, + ACTIONS(5160), 1, + anon_sym_DOT_DOT2, + STATE(2458), 1, sym_comment, - STATE(4929), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5065), 2, + ACTIONS(5162), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(866), 13, + ACTIONS(1982), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203765,55 +206405,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [75180] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5073), 1, - anon_sym_DOT, - ACTIONS(5075), 1, - aux_sym__immediate_decimal_token5, - STATE(2410), 1, - sym_comment, - ACTIONS(1746), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1744), 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, - [75217] = 6, + [76833] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5077), 1, - anon_sym_DOT, - ACTIONS(5079), 1, - aux_sym__immediate_decimal_token5, - STATE(2411), 1, + STATE(2459), 1, sym_comment, - ACTIONS(749), 7, - ts_builtin_sym_end, + ACTIONS(769), 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(767), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203825,28 +206432,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [75254] = 7, + [76865] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5036), 1, - sym__entry_separator, - ACTIONS(5038), 1, - sym_raw_string_begin, - ACTIONS(5081), 1, - anon_sym_GT2, - STATE(2401), 1, - aux_sym__types_body_repeat2, - STATE(2412), 1, + STATE(2460), 1, sym_comment, - ACTIONS(5032), 18, + ACTIONS(3756), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(3754), 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, @@ -203859,17 +206464,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_record_token1, - [75293] = 5, + [76897] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5083), 1, - aux_sym__immediate_decimal_token5, - STATE(2413), 1, + ACTIONS(3179), 1, + anon_sym_LPAREN2, + ACTIONS(3789), 1, + anon_sym_DOLLAR, + ACTIONS(5047), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5049), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(5164), 1, + anon_sym_DOT, + STATE(2461), 1, sym_comment, - ACTIONS(1854), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1852), 19, + STATE(2998), 1, + sym__immediate_decimal, + ACTIONS(1603), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(5051), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2992), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1599), 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, + [76945] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5016), 1, + anon_sym_DOT2, + STATE(458), 1, + sym_path, + STATE(927), 1, + sym_cell_path, + STATE(2298), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2462), 1, + sym_comment, + ACTIONS(1871), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203882,27 +206526,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_LBRACE, anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [75328] = 7, + [76983] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1504), 1, - anon_sym_DOT_DOT2, - ACTIONS(5006), 1, - anon_sym_DOT2, - STATE(720), 1, - sym_path, - STATE(2414), 1, + STATE(2463), 1, sym_comment, - STATE(2424), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1506), 18, + ACTIONS(1732), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1730), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -203915,29 +206552,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_COLON, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [75367] = 8, - ACTIONS(3), 1, + [77014] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1647), 1, - anon_sym_DOT_DOT2, - ACTIONS(5006), 1, - anon_sym_DOT2, - STATE(720), 1, - sym_path, - STATE(938), 1, - sym_cell_path, - STATE(2414), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2415), 1, + STATE(2464), 1, sym_comment, - ACTIONS(1645), 17, + ACTIONS(769), 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(767), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203949,21 +206583,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [75408] = 4, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [77045] = 9, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2416), 1, - sym_comment, - ACTIONS(771), 2, + ACTIONS(968), 1, + sym__space, + ACTIONS(4179), 1, anon_sym_DOT_DOT2, + ACTIONS(5057), 1, + sym_filesize_unit, + ACTIONS(5059), 1, + sym_duration_unit, + ACTIONS(5061), 1, sym__unquoted_pattern, - ACTIONS(773), 20, - ts_builtin_sym_end, + STATE(2465), 1, + sym_comment, + ACTIONS(4181), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(847), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203975,70 +206615,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, + anon_sym_RPAREN, + anon_sym_RBRACE, + [77086] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5166), 1, + aux_sym__immediate_decimal_token5, + STATE(2466), 1, + sym_comment, + ACTIONS(1846), 4, + sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [75441] = 7, + ACTIONS(1848), 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, + [77119] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1671), 1, - anon_sym_QMARK2, - ACTIONS(1673), 1, - anon_sym_BANG, - STATE(2417), 1, + STATE(2467), 1, sym_comment, - STATE(2518), 1, - sym__path_suffix, - ACTIONS(5087), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5085), 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, - [75480] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5036), 1, - sym__entry_separator, - ACTIONS(5038), 1, + ACTIONS(2772), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(2774), 17, sym_raw_string_begin, - ACTIONS(5089), 1, - anon_sym_GT2, - STATE(2401), 1, - aux_sym__types_body_repeat2, - STATE(2418), 1, - sym_comment, - ACTIONS(5032), 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, + sym__newline, 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, @@ -204046,83 +206672,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - aux_sym__unquoted_in_record_token1, - [75519] = 11, - ACTIONS(103), 1, + [77150] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3323), 1, + ACTIONS(3179), 1, anon_sym_LPAREN2, - ACTIONS(3707), 1, + ACTIONS(3789), 1, anon_sym_DOLLAR, - ACTIONS(5059), 1, + ACTIONS(5168), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5061), 1, + ACTIONS(5170), 1, aux_sym__immediate_decimal_token2, - STATE(2419), 1, + STATE(2468), 1, sym_comment, - STATE(3286), 1, + STATE(3499), 1, sym__immediate_decimal, - ACTIONS(1639), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4978), 2, + ACTIONS(1679), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(5051), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3285), 2, + STATE(3498), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1641), 11, + ACTIONS(1677), 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, - [75566] = 5, - ACTIONS(103), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [77195] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4982), 1, - aux_sym__immediate_decimal_token5, - STATE(2420), 1, + ACTIONS(3179), 1, + anon_sym_LPAREN2, + ACTIONS(3789), 1, + anon_sym_DOLLAR, + ACTIONS(5168), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5170), 1, + aux_sym__immediate_decimal_token2, + STATE(2469), 1, sym_comment, - ACTIONS(749), 6, - sym__space, + STATE(3520), 1, + sym__immediate_decimal, + ACTIONS(1661), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(5051), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3508), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1659), 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, + [77240] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3179), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(3789), 1, + anon_sym_DOLLAR, + ACTIONS(5168), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5170), 1, + aux_sym__immediate_decimal_token2, + STATE(2470), 1, + sym_comment, + STATE(3535), 1, + sym__immediate_decimal, + ACTIONS(1671), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(5051), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3533), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1669), 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, + [77285] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5172), 1, + anon_sym_LPAREN2, + ACTIONS(5174), 1, + anon_sym_DOT_DOT2, + ACTIONS(5178), 1, sym_filesize_unit, + ACTIONS(5180), 1, sym_duration_unit, - ACTIONS(747), 15, + ACTIONS(5182), 1, + sym__unquoted_pattern_in_record, + STATE(2471), 1, + sym_comment, + STATE(5078), 1, + sym__expr_parenthesized_immediate, + ACTIONS(847), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(5176), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(968), 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_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [75601] = 6, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [77330] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5091), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5093), 1, - aux_sym__immediate_decimal_token5, - STATE(2421), 1, + STATE(2472), 1, sym_comment, - ACTIONS(741), 7, + ACTIONS(865), 7, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, @@ -204130,7 +206821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(739), 13, + ACTIONS(863), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204144,60 +206835,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [75638] = 4, + [77361] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2422), 1, - sym_comment, - ACTIONS(860), 2, - anon_sym_DOT_DOT2, + ACTIONS(1637), 1, sym__unquoted_pattern, - ACTIONS(862), 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, + ACTIONS(1976), 1, anon_sym_LPAREN2, + ACTIONS(5184), 1, + anon_sym_DOT_DOT2, + STATE(2473), 1, + sym_comment, + ACTIONS(5186), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [75671] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(3323), 1, - anon_sym_LPAREN2, - ACTIONS(3707), 1, - anon_sym_DOLLAR, - ACTIONS(5059), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5061), 1, - aux_sym__immediate_decimal_token2, - STATE(2423), 1, - sym_comment, - STATE(3297), 1, - sym__immediate_decimal, - ACTIONS(1663), 2, + ACTIONS(1972), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(4978), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3290), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1665), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204209,19 +206862,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, - [75718] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [77398] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1508), 1, + ACTIONS(1986), 1, + anon_sym_LPAREN2, + ACTIONS(1992), 1, + sym__unquoted_pattern, + ACTIONS(5188), 1, anon_sym_DOT_DOT2, - ACTIONS(5095), 1, - anon_sym_DOT2, - STATE(720), 1, - sym_path, - STATE(2424), 2, + STATE(2474), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1510), 18, + ACTIONS(5190), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1982), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -204234,27 +206892,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_COLON, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [75755] = 6, + [77435] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5098), 1, + ACTIONS(5192), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5100), 1, + ACTIONS(5194), 1, aux_sym__immediate_decimal_token5, - STATE(2425), 1, + STATE(2475), 1, sym_comment, - ACTIONS(1770), 4, + ACTIONS(1730), 5, + ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1772), 15, + ACTIONS(1732), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204266,18 +206922,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_DOT_DOT2, sym__unquoted_pattern, - [75791] = 6, + [77470] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5102), 1, - anon_sym_DOT, - ACTIONS(5104), 1, + ACTIONS(5138), 1, aux_sym__immediate_decimal_token5, - STATE(2426), 1, + STATE(2476), 1, sym_comment, ACTIONS(747), 6, sym_identifier, @@ -204300,83 +206952,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [75827] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1866), 1, - anon_sym_DOT2, - STATE(458), 1, - sym_path, - STATE(2427), 1, - sym_comment, - STATE(2431), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(5108), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5106), 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, - [75865] = 6, - ACTIONS(3), 1, + [77503] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5110), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5112), 1, - aux_sym__immediate_decimal_token5, - STATE(2428), 1, + STATE(2477), 1, sym_comment, - ACTIONS(739), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - sym__unquoted_pattern_in_record, - ACTIONS(741), 13, - anon_sym_EQ, + ACTIONS(1510), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1508), 17, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [75901] = 5, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [77534] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5079), 1, + ACTIONS(5196), 1, + anon_sym_DOT, + ACTIONS(5198), 1, aux_sym__immediate_decimal_token5, - STATE(2429), 1, + STATE(2478), 1, sym_comment, - ACTIONS(749), 7, + ACTIONS(1790), 5, 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, + ACTIONS(1792), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204390,24 +207008,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [75935] = 8, + [77569] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5114), 1, + ACTIONS(5200), 1, anon_sym_DOT2, - STATE(2430), 1, + STATE(2479), 1, sym_comment, - STATE(2466), 1, + STATE(2554), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2583), 1, + STATE(2676), 1, sym_path, - STATE(2674), 1, + STATE(2903), 1, sym_cell_path, - ACTIONS(1657), 3, + ACTIONS(1647), 4, + ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1659), 14, + ACTIONS(1649), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204419,49 +207038,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, - [75975] = 7, + [77608] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1866), 1, - anon_sym_DOT2, - STATE(437), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(458), 1, - sym_path, - STATE(2431), 1, + ACTIONS(3179), 1, + anon_sym_LPAREN2, + ACTIONS(3789), 1, + anon_sym_DOLLAR, + ACTIONS(5168), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5170), 1, + aux_sym__immediate_decimal_token2, + STATE(2480), 1, sym_comment, - ACTIONS(5118), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5116), 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, - [76013] = 4, + STATE(3580), 1, + sym__immediate_decimal, + ACTIONS(1603), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(5051), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3579), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1599), 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, + [77653] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2432), 1, + ACTIONS(5202), 1, + aux_sym__immediate_decimal_token5, + STATE(2481), 1, sym_comment, - ACTIONS(1772), 2, + ACTIONS(767), 6, + sym_identifier, + anon_sym_DASH2, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1770), 19, + sym_filesize_unit, + sym_duration_unit, + sym__unquoted_pattern_in_record, + ACTIONS(769), 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, + [77686] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5104), 1, + anon_sym_DOT2, + STATE(2482), 1, + sym_comment, + STATE(2483), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2642), 1, + sym_path, + ACTIONS(1526), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1524), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204475,28 +207130,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [76045] = 5, + anon_sym_DOT_DOT2, + [77723] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5120), 1, - aux_sym__immediate_decimal_token5, - STATE(2433), 1, + ACTIONS(5204), 1, + anon_sym_DOT2, + STATE(2642), 1, + sym_path, + STATE(2483), 2, sym_comment, - ACTIONS(773), 7, - ts_builtin_sym_end, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1534), 3, 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(1532), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204508,17 +207157,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, - sym__unquoted_pattern, - [76079] = 4, + [77758] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2434), 1, + STATE(2484), 1, sym_comment, - ACTIONS(1854), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1852), 19, + ACTIONS(1553), 20, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204530,51 +207178,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_COLON, + anon_sym_LBRACK, + anon_sym_LPAREN, 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, - [76111] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2435), 1, - sym_comment, - ACTIONS(3756), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(3754), 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, - [76143] = 4, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_DOT2, + [77787] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2436), 1, + STATE(2485), 1, sym_comment, - ACTIONS(1872), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1870), 19, + ACTIONS(1470), 20, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204586,32 +207204,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_COLON, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, 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, - [76175] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5114), 1, anon_sym_DOT2, - STATE(2437), 1, + [77816] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1732), 1, + sym__unquoted_pattern, + ACTIONS(5207), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5209), 1, + aux_sym__immediate_decimal_token5, + STATE(2486), 1, sym_comment, - STATE(2466), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2583), 1, - sym_path, - STATE(2663), 1, - sym_cell_path, - ACTIONS(1444), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1442), 14, + ACTIONS(1730), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204625,54 +207237,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [76215] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5122), 1, - sym__newline, - STATE(2438), 2, - sym_comment, - aux_sym__types_body_repeat1, - ACTIONS(3758), 3, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__unquoted_in_record_token1, - ACTIONS(3760), 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, - [76249] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [77851] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5114), 1, - anon_sym_DOT2, - STATE(2439), 1, + STATE(2487), 1, sym_comment, - STATE(2466), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2583), 1, - sym_path, - STATE(2667), 1, - sym_cell_path, - ACTIONS(1645), 3, + ACTIONS(1522), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1647), 14, + ACTIONS(1520), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204687,15 +207265,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - [76289] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5125), 1, + anon_sym_QMARK2, anon_sym_BANG, - STATE(2440), 1, + anon_sym_DOT2, + [77882] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2488), 1, sym_comment, - ACTIONS(1450), 20, - anon_sym_EQ, + ACTIONS(741), 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(739), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204707,27 +207293,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_COLON, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_DOT2, - [76321] = 4, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [77913] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(2441), 1, + ACTIONS(5142), 1, + aux_sym__immediate_decimal_token5, + STATE(2489), 1, sym_comment, - ACTIONS(741), 6, + ACTIONS(1790), 4, 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(1792), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204743,17 +207323,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [76353] = 5, + [77946] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5075), 1, - aux_sym__immediate_decimal_token5, - STATE(2442), 1, + STATE(2490), 1, sym_comment, - ACTIONS(1746), 2, + ACTIONS(1848), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1744), 18, + ACTIONS(1846), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -204772,21 +207350,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [76387] = 7, - ACTIONS(3), 1, + [77977] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1635), 1, - sym__unquoted_pattern, - ACTIONS(1960), 1, - anon_sym_LPAREN2, - ACTIONS(5127), 1, - anon_sym_DOT_DOT2, - STATE(2443), 1, + STATE(2491), 1, sym_comment, - ACTIONS(5129), 2, + ACTIONS(1530), 3, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1956), 16, + ACTIONS(1528), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204800,55 +207373,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, - [76425] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5036), 1, - sym__entry_separator, - ACTIONS(5038), 1, - sym_raw_string_begin, - STATE(2401), 1, - aux_sym__types_body_repeat2, - STATE(2444), 1, - sym_comment, - ACTIONS(5032), 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, - [76461] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5131), 1, + anon_sym_DOT_DOT2, anon_sym_QMARK2, - ACTIONS(5133), 1, anon_sym_BANG, - STATE(2445), 1, + anon_sym_DOT2, + [78008] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2492), 1, sym_comment, - STATE(2603), 1, - sym__path_suffix, - ACTIONS(1458), 3, + ACTIONS(1502), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1456), 15, + ACTIONS(1500), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204863,22 +207401,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, + anon_sym_QMARK2, + anon_sym_BANG, anon_sym_DOT2, - [76499] = 7, + [78039] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1977), 1, - anon_sym_LPAREN2, - ACTIONS(1983), 1, - sym__unquoted_pattern, - ACTIONS(5135), 1, - anon_sym_DOT_DOT2, - STATE(2446), 1, + STATE(2493), 1, sym_comment, - ACTIONS(5137), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1973), 16, + ACTIONS(1897), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1895), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204890,23 +207425,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, - [76537] = 5, - ACTIONS(3), 1, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [78070] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5139), 1, - aux_sym__immediate_decimal_token5, - STATE(2447), 1, + STATE(2494), 1, sym_comment, - ACTIONS(1854), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1852), 18, - ts_builtin_sym_end, + ACTIONS(1506), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1504), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204918,25 +207452,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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [76571] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [78101] = 7, ACTIONS(103), 1, anon_sym_POUND, - STATE(2448), 1, + ACTIONS(5211), 1, + anon_sym_QMARK2, + ACTIONS(5213), 1, + anon_sym_BANG, + STATE(2495), 1, sym_comment, - ACTIONS(862), 6, + STATE(2680), 1, + sym__path_suffix, + ACTIONS(1444), 4, + ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(860), 15, + ACTIONS(1442), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204948,23 +207486,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, - sym__unquoted_pattern, - [76603] = 4, + anon_sym_DOT2, + [78138] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2449), 1, + STATE(2496), 1, sym_comment, - ACTIONS(773), 6, + ACTIONS(1514), 3, 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(1512), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204979,129 +207512,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [76635] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1635), 1, - sym__unquoted_pattern_in_record, - ACTIONS(3166), 1, - anon_sym_LPAREN2, - ACTIONS(3858), 1, - anon_sym_DOLLAR, - ACTIONS(5141), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5143), 1, - aux_sym__immediate_decimal_token2, - STATE(2450), 1, - sym_comment, - STATE(3134), 1, - sym__immediate_decimal, - ACTIONS(1602), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(5145), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3399), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1598), 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, - [76683] = 12, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [78169] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3166), 1, - anon_sym_LPAREN2, - ACTIONS(3858), 1, - anon_sym_DOLLAR, - ACTIONS(5045), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5047), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(5147), 1, + ACTIONS(1792), 1, + sym__unquoted_pattern, + ACTIONS(5215), 1, anon_sym_DOT, - STATE(2451), 1, + ACTIONS(5217), 1, + aux_sym__immediate_decimal_token5, + STATE(2497), 1, sym_comment, - STATE(2922), 1, - sym__immediate_decimal, - ACTIONS(1641), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(5049), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2921), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1639), 9, - anon_sym_EQ, + ACTIONS(1790), 17, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [76731] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1679), 1, - sym__unquoted_pattern_in_record, - ACTIONS(3166), 1, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_LPAREN2, - ACTIONS(3858), 1, - anon_sym_DOLLAR, - ACTIONS(5141), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5143), 1, - aux_sym__immediate_decimal_token2, - STATE(2452), 1, - sym_comment, - STATE(3136), 1, - sym__immediate_decimal, - ACTIONS(1653), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(5145), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3479), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1651), 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, - [76779] = 7, - ACTIONS(3), 1, + [78204] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5010), 1, + ACTIONS(5200), 1, anon_sym_DOT2, - STATE(458), 1, + STATE(2498), 1, + sym_comment, + STATE(2554), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2676), 1, sym_path, - STATE(939), 1, + STATE(2781), 1, sym_cell_path, - STATE(2323), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2453), 1, - sym_comment, - ACTIONS(1900), 17, + ACTIONS(1653), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1655), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205113,26 +207574,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, - [76817] = 7, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + [78243] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5010), 1, + ACTIONS(5200), 1, anon_sym_DOT2, - STATE(458), 1, + STATE(2499), 1, + sym_comment, + STATE(2554), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2676), 1, sym_path, - STATE(932), 1, + STATE(2792), 1, sym_cell_path, - STATE(2323), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2454), 1, - sym_comment, - ACTIONS(1882), 17, + ACTIONS(1456), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1454), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205144,20 +207605,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [76855] = 4, + anon_sym_DOT_DOT2, + [78282] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5125), 1, - anon_sym_QMARK2, - STATE(2455), 1, + STATE(2500), 1, sym_comment, - ACTIONS(1450), 20, + ACTIONS(1545), 20, anon_sym_EQ, sym__newline, anon_sym_SEMI, @@ -205178,20 +207632,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_DOT2, - [76887] = 7, + [78311] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5010), 1, - anon_sym_DOT2, - STATE(458), 1, - sym_path, - STATE(949), 1, - sym_cell_path, - STATE(2323), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2456), 1, + ACTIONS(5219), 1, + anon_sym_DOT_DOT2, + STATE(2501), 1, sym_comment, - ACTIONS(1862), 17, + ACTIONS(5221), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2112), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205204,25 +207655,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [76925] = 7, - ACTIONS(3), 1, + [78343] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5010), 1, - anon_sym_DOT2, - STATE(458), 1, - sym_path, - STATE(906), 1, - sym_cell_path, - STATE(2323), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2457), 1, + STATE(2502), 1, sym_comment, - ACTIONS(1912), 17, + ACTIONS(1730), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1732), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205235,23 +207682,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_LBRACE, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [76963] = 5, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [78373] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2081), 1, - anon_sym_BANG, - STATE(2458), 1, + STATE(2503), 1, sym_comment, - ACTIONS(1448), 2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1450), 18, - ts_builtin_sym_end, + ACTIONS(1846), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1848), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205263,25 +207707,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_COLON, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [76997] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [78403] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5030), 1, - anon_sym_DOT2, - STATE(2459), 1, + STATE(2504), 1, sym_comment, - STATE(2460), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2500), 1, - sym_path, - ACTIONS(1506), 18, - anon_sym_EQ, + ACTIONS(1895), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1897), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205293,24 +207733,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, anon_sym_RBRACE, - [77033] = 5, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [78433] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5149), 1, - anon_sym_DOT2, - STATE(2500), 1, - sym_path, - STATE(2460), 2, + ACTIONS(5198), 1, + aux_sym__immediate_decimal_token5, + STATE(2505), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1510), 18, - anon_sym_EQ, + ACTIONS(1790), 5, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1792), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205322,36 +207762,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_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - [77067] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1724), 1, - anon_sym_LPAREN2, - ACTIONS(5152), 1, anon_sym_DOT_DOT2, - ACTIONS(5156), 1, - sym_filesize_unit, - ACTIONS(5158), 1, - sym_duration_unit, - ACTIONS(5160), 1, sym__unquoted_pattern, - STATE(2461), 1, + [78465] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2506), 1, sym_comment, - STATE(4806), 1, - sym__expr_parenthesized_immediate, - ACTIONS(886), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5154), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(866), 11, + ACTIONS(5223), 19, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205363,21 +207782,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, - [77113] = 6, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [78493] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5162), 1, - anon_sym_DOT, - ACTIONS(5164), 1, - aux_sym__immediate_decimal_token5, - STATE(2462), 1, + ACTIONS(5225), 1, + anon_sym_QMARK2, + STATE(2507), 1, sym_comment, - ACTIONS(1744), 4, + ACTIONS(1462), 3, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1746), 15, + ACTIONS(1460), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205392,51 +207815,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [77149] = 4, + anon_sym_DOT2, + [78525] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2463), 1, + ACTIONS(5227), 1, + anon_sym_QMARK2, + ACTIONS(5229), 1, + anon_sym_BANG, + STATE(2508), 1, sym_comment, - ACTIONS(1872), 2, + STATE(2810), 1, + sym__path_suffix, + ACTIONS(1442), 3, + anon_sym_DASH2, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1870), 18, - ts_builtin_sym_end, + anon_sym_DOT2, + ACTIONS(1444), 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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, + 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, - [77180] = 7, + [78561] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5166), 1, - anon_sym_QMARK2, - ACTIONS(5168), 1, - anon_sym_BANG, - STATE(2464), 1, + ACTIONS(4179), 1, + anon_sym_DOT_DOT2, + ACTIONS(5114), 1, + sym_filesize_unit, + ACTIONS(5116), 1, + sym_duration_unit, + ACTIONS(5118), 1, + sym__unquoted_pattern, + STATE(2509), 1, sym_comment, - STATE(2647), 1, - sym__path_suffix, - ACTIONS(1458), 4, + ACTIONS(968), 2, ts_builtin_sym_end, sym__space, + ACTIONS(4181), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1456), 13, + ACTIONS(847), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205448,23 +207876,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [77217] = 7, + [78601] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1977), 1, - anon_sym_LPAREN2, - ACTIONS(1983), 1, - sym__unquoted_pattern, - ACTIONS(5170), 1, - anon_sym_DOT_DOT2, - STATE(2465), 1, + ACTIONS(5231), 1, + anon_sym_DOT2, + STATE(715), 1, + sym_path, + STATE(1313), 1, + sym_cell_path, + STATE(2409), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2510), 1, sym_comment, - ACTIONS(5172), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1973), 15, + ACTIONS(1911), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -205480,22 +207905,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [77254] = 7, + [78637] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1484), 1, + anon_sym_COMMA, + ACTIONS(5235), 1, + anon_sym_EQ, + ACTIONS(5237), 1, + sym__newline, + ACTIONS(5239), 1, + anon_sym_COLON, + ACTIONS(5241), 1, + anon_sym_LPAREN, + ACTIONS(5243), 1, + anon_sym_DASH2, + STATE(2511), 1, + sym_comment, + STATE(2648), 1, + sym_flag_capsule, + STATE(2662), 1, + aux_sym_parameter_repeat1, + STATE(3607), 1, + aux_sym_parameter_repeat2, + STATE(4491), 1, + aux_sym__repeat_newline, + STATE(3534), 2, + sym_param_type, + sym_param_value, + ACTIONS(5233), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [78687] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5114), 1, - anon_sym_DOT2, - STATE(2466), 1, + ACTIONS(5245), 1, + aux_sym__immediate_decimal_token5, + STATE(2512), 1, sym_comment, - STATE(2469), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2583), 1, - sym_path, - ACTIONS(1506), 3, + ACTIONS(1846), 5, + ts_builtin_sym_end, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1504), 14, + ACTIONS(1848), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205507,25 +207966,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_DOT_DOT2, - [77291] = 6, - ACTIONS(103), 1, + sym__unquoted_pattern, + [78719] = 15, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5174), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5176), 1, - aux_sym__immediate_decimal_token5, - STATE(2467), 1, + ACTIONS(962), 1, + sym_raw_string_begin, + ACTIONS(3153), 1, + anon_sym_DQUOTE, + ACTIONS(3155), 1, + anon_sym_SQUOTE, + ACTIONS(3157), 1, + anon_sym_BQUOTE, + ACTIONS(3159), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3161), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3687), 1, + anon_sym_LPAREN, + ACTIONS(3689), 1, + anon_sym_DOLLAR, + ACTIONS(5247), 1, + sym__unquoted_naive, + STATE(2513), 1, sym_comment, - ACTIONS(1770), 5, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1772), 13, + STATE(3334), 1, + sym__inter_single_quotes, + STATE(3335), 1, + sym__inter_double_quotes, + STATE(2547), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3261), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [78771] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2514), 1, + sym_comment, + ACTIONS(5249), 19, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205537,27 +208023,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [77326] = 8, - ACTIONS(103), 1, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [78799] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5178), 1, + ACTIONS(5251), 1, anon_sym_DOT2, - STATE(2468), 1, + STATE(2515), 1, sym_comment, - STATE(2516), 1, + STATE(2586), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2689), 1, + STATE(2851), 1, sym_path, - STATE(2863), 1, + STATE(2917), 1, sym_cell_path, - ACTIONS(1657), 4, + ACTIONS(1655), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(1653), 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, + [78837] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2516), 1, + sym_comment, + ACTIONS(1514), 4, ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1659), 12, + ACTIONS(1512), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205570,21 +208083,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, - [77365] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5180), 1, + anon_sym_QMARK2, + anon_sym_BANG, anon_sym_DOT2, - STATE(2583), 1, - sym_path, - STATE(2469), 2, + [78867] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1732), 1, + sym__unquoted_pattern, + ACTIONS(5253), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5255), 1, + aux_sym__immediate_decimal_token5, + STATE(2517), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1510), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1508), 14, + ACTIONS(1730), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205596,19 +208110,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, - [77400] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [78901] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(2470), 1, + ACTIONS(5225), 1, + anon_sym_BANG, + STATE(2518), 1, sym_comment, - ACTIONS(1533), 3, + ACTIONS(1462), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1531), 17, + ACTIONS(1460), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205623,19 +208140,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, anon_sym_DOT2, - [77431] = 4, + [78933] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2471), 1, + STATE(2519), 1, sym_comment, - ACTIONS(1537), 3, + ACTIONS(1522), 4, + ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1535), 17, + ACTIONS(1520), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205647,54 +208163,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_DOT_DOT2, anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [77462] = 4, - ACTIONS(103), 1, + [78963] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2472), 1, + STATE(2520), 1, sym_comment, - ACTIONS(1541), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1539), 17, + ACTIONS(739), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + sym__unquoted_pattern_in_record, + ACTIONS(741), 13, + 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_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [77493] = 5, + 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, + [78993] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5104), 1, - aux_sym__immediate_decimal_token5, - STATE(2473), 1, + STATE(2521), 1, sym_comment, - ACTIONS(747), 6, + ACTIONS(767), 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(769), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -205708,21 +208219,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [77526] = 5, + [79023] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5183), 1, - aux_sym__immediate_decimal_token5, - STATE(2474), 1, + STATE(2522), 1, sym_comment, - ACTIONS(771), 6, + ACTIONS(863), 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(865), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -205736,18 +208245,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [77559] = 6, + [79053] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1746), 1, + ACTIONS(1792), 1, sym__unquoted_pattern, - ACTIONS(5185), 1, - anon_sym_DOT, - ACTIONS(5187), 1, + ACTIONS(5217), 1, aux_sym__immediate_decimal_token5, - STATE(2475), 1, + STATE(2523), 1, sym_comment, - ACTIONS(1744), 17, + ACTIONS(1790), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205765,20 +208272,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, - [77594] = 4, - ACTIONS(103), 1, + [79085] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2476), 1, + STATE(2524), 1, sym_comment, - ACTIONS(773), 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(771), 13, + ACTIONS(5257), 19, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205790,17 +208290,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_DOT_DOT2, - sym__unquoted_pattern, - [77625] = 4, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [79113] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2477), 1, + ACTIONS(1848), 1, + sym__unquoted_pattern, + ACTIONS(5259), 1, + aux_sym__immediate_decimal_token5, + STATE(2525), 1, sym_comment, - ACTIONS(1772), 2, - anon_sym_DOT_DOT2, + ACTIONS(1846), 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, + [79145] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1792), 1, sym__unquoted_pattern, - ACTIONS(1770), 18, + ACTIONS(5261), 1, + anon_sym_DOT, + ACTIONS(5263), 1, + aux_sym__immediate_decimal_token5, + STATE(2526), 1, + sym_comment, + ACTIONS(1790), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -205817,33 +208352,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [77656] = 11, + [79179] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3166), 1, - anon_sym_LPAREN2, - ACTIONS(3858), 1, - anon_sym_DOLLAR, - ACTIONS(5189), 1, + ACTIONS(5265), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5191), 1, - aux_sym__immediate_decimal_token2, - STATE(2478), 1, + ACTIONS(5267), 1, + aux_sym__immediate_decimal_token5, + STATE(2527), 1, sym_comment, - STATE(3421), 1, - sym__immediate_decimal, - ACTIONS(1669), 2, + ACTIONS(1732), 4, sym_identifier, anon_sym_DASH2, - ACTIONS(5049), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3413), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1667), 9, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1730), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -205851,24 +208374,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [77701] = 7, - ACTIONS(3), 1, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [79213] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1635), 1, + ACTIONS(1637), 1, sym__unquoted_pattern, - ACTIONS(1960), 1, + ACTIONS(1972), 1, + sym__space, + ACTIONS(1976), 1, anon_sym_LPAREN2, - ACTIONS(5193), 1, + ACTIONS(5269), 1, anon_sym_DOT_DOT2, - STATE(2479), 1, + STATE(2528), 1, sym_comment, - ACTIONS(5195), 2, + ACTIONS(5271), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1956), 15, - ts_builtin_sym_end, + ACTIONS(1974), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205880,87 +208408,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [77738] = 11, + anon_sym_RPAREN, + anon_sym_RBRACE, + [79251] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3166), 1, - anon_sym_LPAREN2, - ACTIONS(3858), 1, + ACTIONS(203), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(205), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1760), 1, + anon_sym_LPAREN, + ACTIONS(1772), 1, + anon_sym_DQUOTE, + ACTIONS(1774), 1, + anon_sym_SQUOTE, + ACTIONS(1776), 1, + anon_sym_BQUOTE, + ACTIONS(1778), 1, + sym_raw_string_begin, + ACTIONS(5273), 1, anon_sym_DOLLAR, - ACTIONS(5189), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5191), 1, - aux_sym__immediate_decimal_token2, - STATE(2480), 1, + ACTIONS(5275), 1, + sym__unquoted_naive, + STATE(808), 1, + sym__inter_single_quotes, + STATE(809), 1, + sym__inter_double_quotes, + STATE(2529), 1, sym_comment, - STATE(3427), 1, - sym__immediate_decimal, - ACTIONS(1683), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(5049), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3425), 2, - sym__expr_parenthesized_immediate, + STATE(2274), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3294), 4, + sym_expr_parenthesized, sym_val_variable, - ACTIONS(1681), 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, - [77783] = 11, + sym_val_string, + sym_val_interpolated, + [79303] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3166), 1, - anon_sym_LPAREN2, - ACTIONS(3858), 1, + 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(5277), 1, + anon_sym_LPAREN, + ACTIONS(5279), 1, anon_sym_DOLLAR, - ACTIONS(5189), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5191), 1, - aux_sym__immediate_decimal_token2, - STATE(2481), 1, + ACTIONS(5281), 1, + sym__unquoted_naive, + STATE(1277), 1, + sym__inter_single_quotes, + STATE(1311), 1, + sym__inter_double_quotes, + STATE(2530), 1, sym_comment, - STATE(3478), 1, - sym__immediate_decimal, - ACTIONS(1665), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(5049), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3434), 2, - sym__expr_parenthesized_immediate, + STATE(502), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3412), 4, + sym_expr_parenthesized, sym_val_variable, - ACTIONS(1663), 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, - [77828] = 4, + sym_val_string, + sym_val_interpolated, + [79355] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2482), 1, + STATE(2531), 1, sym_comment, - ACTIONS(1854), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1852), 18, - ts_builtin_sym_end, + ACTIONS(5283), 19, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205972,22 +208502,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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [77859] = 4, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [79383] = 8, ACTIONS(103), 1, anon_sym_POUND, - STATE(2483), 1, - sym_comment, - ACTIONS(1521), 3, + ACTIONS(1982), 1, sym__space, + ACTIONS(1986), 1, + anon_sym_LPAREN2, + ACTIONS(1992), 1, + sym__unquoted_pattern, + ACTIONS(5285), 1, + anon_sym_DOT_DOT2, + STATE(2532), 1, + sym_comment, + ACTIONS(5287), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1519), 17, + ACTIONS(1984), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206001,20 +208539,22 @@ 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, - [77890] = 4, + [79421] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(2484), 1, + ACTIONS(5289), 1, + anon_sym_DOT2, + STATE(2676), 1, + sym_path, + STATE(2533), 2, sym_comment, - ACTIONS(1525), 3, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1534), 4, + ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1523), 17, + ACTIONS(1532), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206026,37 +208566,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, - [77921] = 11, + [79455] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3166), 1, - anon_sym_LPAREN2, - ACTIONS(3858), 1, - anon_sym_DOLLAR, - ACTIONS(5189), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5191), 1, - aux_sym__immediate_decimal_token2, - STATE(2485), 1, + ACTIONS(5292), 1, + anon_sym_DOT, + ACTIONS(5294), 1, + aux_sym__immediate_decimal_token5, + STATE(2534), 1, sym_comment, - STATE(3393), 1, - sym__immediate_decimal, - ACTIONS(1641), 2, + ACTIONS(1792), 4, sym_identifier, anon_sym_DASH2, - ACTIONS(5049), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3369), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1639), 9, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1790), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -206064,22 +208589,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [77966] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2486), 1, - sym_comment, - ACTIONS(862), 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(860), 13, + [79489] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(843), 1, + sym_raw_string_begin, + ACTIONS(3359), 1, + anon_sym_DQUOTE, + ACTIONS(3361), 1, + anon_sym_SQUOTE, + ACTIONS(3363), 1, + anon_sym_BQUOTE, + ACTIONS(3365), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3367), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3661), 1, + anon_sym_LPAREN, + ACTIONS(3663), 1, + anon_sym_DOLLAR, + ACTIONS(5296), 1, + sym__unquoted_naive, + STATE(2535), 1, + sym_comment, + STATE(3047), 1, + sym__inter_single_quotes, + STATE(3048), 1, + sym__inter_double_quotes, + STATE(2477), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3203), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [79541] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2536), 1, + sym_comment, + ACTIONS(5298), 19, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206091,27 +208650,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [77997] = 8, - ACTIONS(103), 1, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [79569] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(2487), 1, + STATE(2537), 1, sym_comment, - STATE(2516), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2689), 1, - sym_path, - STATE(2875), 1, - sym_cell_path, - ACTIONS(1645), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1647), 12, + ACTIONS(5300), 19, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206123,26 +208675,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, - [78036] = 8, - ACTIONS(103), 1, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [79597] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(2488), 1, + ACTIONS(5304), 1, + anon_sym_LT, + STATE(2538), 1, sym_comment, - STATE(2516), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2689), 1, - sym_path, - STATE(2817), 1, - sym_cell_path, - ACTIONS(1444), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1442), 12, + ACTIONS(5302), 18, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206154,47 +208702,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - [78075] = 4, + anon_sym_DASH_GT, + anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [79627] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2489), 1, + ACTIONS(5306), 1, + anon_sym_LT, + STATE(2539), 1, sym_comment, - ACTIONS(2958), 3, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__unquoted_in_record_token1, - ACTIONS(2960), 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, + ACTIONS(5302), 18, + anon_sym_EQ, 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, - [78106] = 5, - ACTIONS(103), 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_DASH_GT, + anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [79657] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5164), 1, - aux_sym__immediate_decimal_token5, - STATE(2490), 1, + ACTIONS(5231), 1, + anon_sym_DOT2, + STATE(715), 1, + sym_path, + STATE(1298), 1, + sym_cell_path, + STATE(2409), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2540), 1, sym_comment, - ACTIONS(1744), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1746), 15, + ACTIONS(1871), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206206,24 +208760,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, - sym__unquoted_pattern, - [78139] = 4, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [79693] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2491), 1, + ACTIONS(5231), 1, + anon_sym_DOT2, + STATE(715), 1, + sym_path, + STATE(1291), 1, + sym_cell_path, + STATE(2409), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2541), 1, sym_comment, - ACTIONS(741), 7, + ACTIONS(1883), 15, 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, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206235,33 +208789,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [78170] = 11, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [79729] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5197), 1, - anon_sym_LPAREN2, - ACTIONS(5199), 1, + ACTIONS(5310), 1, anon_sym_DOT_DOT2, - ACTIONS(5203), 1, - sym_filesize_unit, - ACTIONS(5205), 1, - sym_duration_unit, - ACTIONS(5207), 1, - sym__unquoted_pattern_in_record, - STATE(2492), 1, + STATE(2542), 1, sym_comment, - STATE(4854), 1, - sym__expr_parenthesized_immediate, - ACTIONS(866), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(5201), 2, + ACTIONS(5312), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(886), 10, + ACTIONS(5308), 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, + [79761] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5251), 1, + anon_sym_DOT2, + STATE(2543), 1, + sym_comment, + STATE(2586), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2851), 1, + sym_path, + STATE(2987), 1, + sym_cell_path, + ACTIONS(1454), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(1456), 13, anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -206271,25 +208847,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [78215] = 9, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [79799] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(886), 1, + STATE(2544), 1, + sym_comment, + ACTIONS(1530), 4, + ts_builtin_sym_end, sym__space, - ACTIONS(4203), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1528), 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, - ACTIONS(5067), 1, - sym_filesize_unit, - ACTIONS(5069), 1, - sym_duration_unit, - ACTIONS(5071), 1, - sym__unquoted_pattern, - STATE(2493), 1, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [79829] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2545), 1, sym_comment, - ACTIONS(4205), 2, + ACTIONS(1502), 4, + ts_builtin_sym_end, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(866), 13, + ACTIONS(1500), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206301,21 +208897,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, - [78256] = 5, + anon_sym_DOT_DOT2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [79859] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5209), 1, - aux_sym__immediate_decimal_token5, - STATE(2494), 1, + STATE(2546), 1, sym_comment, - ACTIONS(1852), 4, + ACTIONS(1506), 4, + ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1854), 15, + ACTIONS(1504), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206327,26 +208923,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, - sym__unquoted_pattern, - [78289] = 6, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [79889] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5211), 1, - anon_sym_DOT, - ACTIONS(5213), 1, - aux_sym__immediate_decimal_token5, - STATE(2495), 1, + STATE(2547), 1, sym_comment, - ACTIONS(1744), 5, + ACTIONS(1510), 4, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1746), 13, + ACTIONS(1508), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206359,19 +208950,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, - sym__unquoted_pattern, - [78324] = 6, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [79919] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1772), 1, - sym__unquoted_pattern, - ACTIONS(5215), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5217), 1, - aux_sym__immediate_decimal_token5, - STATE(2496), 1, + ACTIONS(5314), 1, + anon_sym_DOT2, + STATE(2291), 1, + sym_cell_path, + STATE(2500), 1, + sym_path, + STATE(2548), 1, sym_comment, - ACTIONS(1770), 17, + STATE(2631), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1456), 15, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206383,19 +208979,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, anon_sym_RPAREN, anon_sym_RBRACE, + [79955] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5231), 1, + anon_sym_DOT2, + STATE(715), 1, + sym_path, + STATE(1279), 1, + sym_cell_path, + STATE(2409), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2549), 1, + sym_comment, + ACTIONS(1887), 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, - anon_sym_LPAREN2, - [78359] = 3, + [79991] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2497), 1, + ACTIONS(5231), 1, + anon_sym_DOT2, + STATE(715), 1, + sym_path, + STATE(1353), 1, + sym_cell_path, + STATE(2409), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2550), 1, sym_comment, - ACTIONS(1564), 20, - anon_sym_EQ, + ACTIONS(1891), 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, + [80027] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5310), 1, + anon_sym_DOT_DOT2, + STATE(2551), 1, + sym_comment, + ACTIONS(5312), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5308), 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, + [80059] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5310), 1, + anon_sym_DOT_DOT2, + STATE(2552), 1, + sym_comment, + ACTIONS(5312), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5308), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206407,24 +209089,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [80091] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2553), 1, + sym_comment, + ACTIONS(5318), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5316), 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, - [78388] = 4, + [80121] = 7, ACTIONS(103), 1, anon_sym_POUND, - STATE(2498), 1, + ACTIONS(5200), 1, + anon_sym_DOT2, + STATE(2533), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2554), 1, sym_comment, - ACTIONS(1529), 3, + STATE(2676), 1, + sym_path, + ACTIONS(1526), 4, + ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1527), 17, + ACTIONS(1524), 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_DOT_DOT2, + [80157] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5310), 1, + anon_sym_DOT_DOT2, + STATE(2555), 1, + sym_comment, + ACTIONS(5312), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1699), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206438,17 +209173,49 @@ 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_and2, + anon_sym_xor2, + anon_sym_or2, + [80189] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5231), 1, anon_sym_DOT2, - [78419] = 3, + STATE(715), 1, + sym_path, + STATE(1303), 1, + sym_cell_path, + STATE(2409), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2556), 1, + sym_comment, + ACTIONS(1907), 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, + [80225] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2499), 1, + ACTIONS(5320), 1, + anon_sym_DOT_DOT2, + STATE(2557), 1, sym_comment, - ACTIONS(1498), 20, - anon_sym_EQ, + ACTIONS(5322), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2170), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206460,21 +209227,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_COLON, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, anon_sym_RBRACE, - anon_sym_DOT2, - [78448] = 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [80257] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2500), 1, + ACTIONS(5324), 1, + anon_sym_DOT_DOT2, + STATE(2558), 1, sym_comment, - ACTIONS(1549), 20, - anon_sym_EQ, + ACTIONS(5326), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2104), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206486,25 +209254,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_COLON, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, anon_sym_RBRACE, - anon_sym_DOT2, - [78477] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [80289] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5219), 1, + ACTIONS(5328), 1, anon_sym_DOT_DOT2, - STATE(2501), 1, + STATE(2559), 1, sym_comment, - ACTIONS(5221), 2, + ACTIONS(5330), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2110), 16, + ACTIONS(2120), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206521,23 +209286,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [78509] = 8, + [80321] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5223), 1, + ACTIONS(5251), 1, anon_sym_DOT2, - STATE(2502), 1, + STATE(2560), 1, sym_comment, - STATE(2622), 1, + STATE(2586), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2871), 1, + STATE(2851), 1, sym_path, - STATE(2943), 1, + STATE(2948), 1, sym_cell_path, - ACTIONS(1442), 2, + ACTIONS(1649), 2, anon_sym_DASH2, anon_sym_DOT_DOT2, - ACTIONS(1444), 13, + ACTIONS(1647), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -206551,17 +209316,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [78547] = 5, + [80359] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5227), 1, + ACTIONS(5332), 1, + aux_sym__immediate_decimal_token5, + STATE(2561), 1, + sym_comment, + ACTIONS(1848), 4, + sym_identifier, + anon_sym_DASH2, anon_sym_DOT_DOT2, - STATE(2503), 1, + sym__unquoted_pattern_in_record, + ACTIONS(1846), 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, + [80390] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1986), 1, + anon_sym_LPAREN2, + ACTIONS(1992), 1, + sym__unquoted_pattern, + ACTIONS(5334), 1, + anon_sym_DOT_DOT2, + STATE(2562), 1, sym_comment, - ACTIONS(5229), 2, + ACTIONS(1982), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5336), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5225), 16, + ACTIONS(1984), 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, + [80427] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2563), 1, + sym_comment, + ACTIONS(1510), 18, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206573,25 +209389,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_COLON, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [78579] = 5, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [80454] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5213), 1, + ACTIONS(5338), 1, + anon_sym_DOT, + ACTIONS(5340), 1, aux_sym__immediate_decimal_token5, - STATE(2504), 1, + STATE(2564), 1, sym_comment, - ACTIONS(1744), 5, - ts_builtin_sym_end, + ACTIONS(1790), 2, sym__space, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1746), 13, + ACTIONS(1792), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206603,43 +209419,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_DOT_DOT2, + anon_sym_RPAREN, + anon_sym_RBRACE, sym__unquoted_pattern, - [78611] = 6, + [80487] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5231), 1, - anon_sym_DOT, - ACTIONS(5233), 1, + ACTIONS(1792), 1, + sym__unquoted_pattern, + ACTIONS(5263), 1, aux_sym__immediate_decimal_token5, - STATE(2505), 1, + STATE(2565), 1, sym_comment, - ACTIONS(1746), 4, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1744), 13, - anon_sym_EQ, + ACTIONS(1790), 16, + 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_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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, - [78645] = 3, - ACTIONS(3), 1, + [80518] = 8, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2506), 1, + ACTIONS(5104), 1, + anon_sym_DOT2, + ACTIONS(5344), 1, + sym__space, + STATE(2482), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2566), 1, sym_comment, - ACTIONS(5235), 19, - anon_sym_EQ, + STATE(2642), 1, + sym_path, + STATE(3184), 1, + sym_cell_path, + ACTIONS(5342), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206651,28 +209475,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, anon_sym_RBRACE, - [78673] = 7, + [80555] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5237), 1, - anon_sym_DOT2, - STATE(720), 1, - sym_path, - STATE(1296), 1, - sym_cell_path, - STATE(2414), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2507), 1, + STATE(2567), 1, + sym_comment, + ACTIONS(1514), 18, + anon_sym_EQ, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [80582] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2568), 1, sym_comment, - ACTIONS(1896), 15, - ts_builtin_sym_end, + ACTIONS(1522), 18, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206684,45 +209519,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [78709] = 8, - ACTIONS(3), 1, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [80609] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5223), 1, + ACTIONS(5104), 1, anon_sym_DOT2, - STATE(2508), 1, - sym_comment, - STATE(2622), 1, + ACTIONS(5348), 1, + sym__space, + STATE(2482), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2871), 1, + STATE(2569), 1, + sym_comment, + STATE(2642), 1, sym_path, - STATE(2915), 1, + STATE(3178), 1, sym_cell_path, - ACTIONS(1659), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1657), 13, - anon_sym_EQ, - sym_identifier, + ACTIONS(5346), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [78747] = 3, + anon_sym_RBRACE, + [80646] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2509), 1, + STATE(2570), 1, sym_comment, - ACTIONS(5239), 19, + ACTIONS(1530), 18, anon_sym_EQ, sym__newline, anon_sym_SEMI, @@ -206735,26 +209572,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_LBRACK, - anon_sym_LPAREN, + anon_sym_COLON, anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, anon_sym_RBRACE, - [78775] = 6, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [80673] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1746), 1, - sym__unquoted_pattern, - ACTIONS(5241), 1, - anon_sym_DOT, - ACTIONS(5243), 1, - aux_sym__immediate_decimal_token5, - STATE(2510), 1, + STATE(2571), 1, sym_comment, - ACTIONS(1744), 16, - ts_builtin_sym_end, + ACTIONS(1502), 18, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206766,18 +209596,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [78809] = 4, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [80700] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5247), 1, - anon_sym_LT, - STATE(2511), 1, + STATE(2572), 1, sym_comment, - ACTIONS(5245), 18, + ACTIONS(1506), 18, anon_sym_EQ, sym__newline, anon_sym_SEMI, @@ -206790,21 +209620,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_GT, + anon_sym_COLON, anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, anon_sym_RBRACE, - [78839] = 4, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [80727] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5249), 1, - anon_sym_LT, - STATE(2512), 1, + ACTIONS(1848), 1, + sym__unquoted_pattern, + ACTIONS(5350), 1, + aux_sym__immediate_decimal_token5, + STATE(2573), 1, sym_comment, - ACTIONS(5245), 18, - anon_sym_EQ, + ACTIONS(1846), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206816,23 +209648,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [78869] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [80758] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2513), 1, + STATE(2574), 1, sym_comment, - ACTIONS(1529), 4, - ts_builtin_sym_end, + ACTIONS(1553), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1527), 15, + ACTIONS(1551), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206844,82 +209673,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [78899] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2514), 1, - sym_comment, - ACTIONS(860), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - sym__unquoted_pattern_in_record, - ACTIONS(862), 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, - [78929] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5251), 1, - anon_sym_QMARK2, - ACTIONS(5253), 1, - anon_sym_BANG, - STATE(2515), 1, - sym_comment, - STATE(2876), 1, - sym__path_suffix, - ACTIONS(1456), 3, - anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1458), 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, - [78965] = 7, - ACTIONS(103), 1, + [80787] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5178), 1, + ACTIONS(5352), 1, anon_sym_DOT2, - STATE(2516), 1, + STATE(2575), 1, sym_comment, - STATE(2541), 1, + STATE(2654), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2689), 1, + STATE(2921), 1, sym_path, - ACTIONS(1506), 4, + STATE(3128), 1, + sym_cell_path, + ACTIONS(1456), 14, ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1504), 12, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206931,14 +209704,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - [79001] = 3, + anon_sym_COLON, + [80822] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2517), 1, + ACTIONS(2362), 1, + sym__unquoted_pattern, + STATE(2576), 1, sym_comment, - ACTIONS(5255), 19, - anon_sym_EQ, + ACTIONS(2360), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206950,51 +209724,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_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, anon_sym_RBRACE, - [79029] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [80851] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2518), 1, - sym_comment, - ACTIONS(5259), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5257), 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, + ACTIONS(5089), 1, anon_sym_DOT2, - [79059] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5261), 1, - anon_sym_QMARK2, - STATE(2519), 1, + STATE(2450), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2500), 1, + sym_path, + STATE(2577), 1, sym_comment, - ACTIONS(1450), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1448), 15, + STATE(3092), 1, + sym_cell_path, + ACTIONS(1887), 14, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207008,23 +209758,16 @@ 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, - [79091] = 7, + [80886] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5237), 1, - anon_sym_DOT2, - STATE(720), 1, - sym_path, - STATE(1338), 1, - sym_cell_path, - STATE(2414), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2520), 1, + ACTIONS(2672), 1, + anon_sym_LPAREN2, + ACTIONS(2674), 1, + sym__unquoted_pattern, + STATE(2578), 1, sym_comment, - ACTIONS(1900), 15, - ts_builtin_sym_end, + ACTIONS(1699), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207036,22 +209779,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, - [79127] = 6, - ACTIONS(3), 1, + [80917] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1772), 1, - sym__unquoted_pattern, - ACTIONS(5263), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5265), 1, - aux_sym__immediate_decimal_token5, - STATE(2521), 1, + ACTIONS(5104), 1, + anon_sym_DOT2, + ACTIONS(5356), 1, + sym__space, + STATE(2482), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2579), 1, sym_comment, - ACTIONS(1770), 16, - ts_builtin_sym_end, + STATE(2642), 1, + sym_path, + STATE(3185), 1, + sym_cell_path, + ACTIONS(5354), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207063,25 +209811,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, - anon_sym_LPAREN2, - [79161] = 7, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [80954] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5237), 1, + ACTIONS(1887), 1, + sym__space, + ACTIONS(5104), 1, anon_sym_DOT2, - STATE(720), 1, - sym_path, - STATE(1275), 1, - sym_cell_path, - STATE(2414), 1, + STATE(2482), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2522), 1, + STATE(2580), 1, sym_comment, - ACTIONS(1862), 15, - ts_builtin_sym_end, + STATE(2642), 1, + sym_path, + STATE(3062), 1, + sym_cell_path, + ACTIONS(1889), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207093,47 +209840,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [79197] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [80991] = 8, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2523), 1, + ACTIONS(1883), 1, + sym__space, + ACTIONS(5104), 1, + anon_sym_DOT2, + STATE(2482), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2581), 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, + STATE(2642), 1, + sym_path, + STATE(3056), 1, + sym_cell_path, + ACTIONS(1885), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [79227] = 5, - ACTIONS(103), 1, + anon_sym_RBRACE, + [81028] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5261), 1, - anon_sym_BANG, - STATE(2524), 1, + ACTIONS(1732), 1, + sym__unquoted_pattern, + STATE(2582), 1, sym_comment, - ACTIONS(1450), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1448), 15, + ACTIONS(1730), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207147,23 +209892,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, - anon_sym_DOT2, - [79259] = 7, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [81057] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5237), 1, - anon_sym_DOT2, - STATE(720), 1, - sym_path, - STATE(1316), 1, - sym_cell_path, - STATE(2414), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2525), 1, + ACTIONS(1848), 1, + sym__unquoted_pattern, + STATE(2583), 1, sym_comment, - ACTIONS(1888), 15, - ts_builtin_sym_end, + ACTIONS(1846), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207175,24 +209915,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, - [79295] = 7, + anon_sym_LPAREN2, + [81086] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5237), 1, - anon_sym_DOT2, - STATE(720), 1, - sym_path, - STATE(1273), 1, - sym_cell_path, - STATE(2414), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2526), 1, + ACTIONS(1897), 1, + sym__unquoted_pattern, + STATE(2584), 1, sym_comment, - ACTIONS(1882), 15, - ts_builtin_sym_end, + ACTIONS(1895), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207204,26 +209940,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [79331] = 8, + anon_sym_LPAREN2, + [81115] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5223), 1, + ACTIONS(5294), 1, + aux_sym__immediate_decimal_token5, + STATE(2585), 1, + sym_comment, + ACTIONS(1792), 4, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1790), 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, + [81146] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5251), 1, anon_sym_DOT2, - STATE(2527), 1, + STATE(2586), 1, sym_comment, - STATE(2622), 1, + STATE(2609), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2871), 1, + STATE(2851), 1, sym_path, - STATE(2927), 1, - sym_cell_path, - ACTIONS(1647), 2, + ACTIONS(1524), 2, anon_sym_DASH2, anon_sym_DOT_DOT2, - ACTIONS(1645), 13, + ACTIONS(1526), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -207237,26 +210000,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [79369] = 9, - ACTIONS(103), 1, + [81181] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4203), 1, - anon_sym_DOT_DOT2, - ACTIONS(5156), 1, - sym_filesize_unit, - ACTIONS(5158), 1, - sym_duration_unit, - ACTIONS(5160), 1, - sym__unquoted_pattern, - STATE(2528), 1, + STATE(2587), 1, sym_comment, - ACTIONS(886), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4205), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(866), 11, + ACTIONS(5358), 18, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207268,16 +210018,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, - [79409] = 5, + anon_sym_DASH_GT, + anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [81208] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1854), 1, - sym__unquoted_pattern, - ACTIONS(5267), 1, - aux_sym__immediate_decimal_token5, - STATE(2529), 1, + ACTIONS(5089), 1, + anon_sym_DOT2, + STATE(2450), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2500), 1, + sym_path, + STATE(2588), 1, sym_comment, - ACTIONS(1852), 17, + STATE(3082), 1, + sym_cell_path, + ACTIONS(5360), 14, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207291,58 +210052,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [79441] = 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(5269), 1, - anon_sym_LPAREN, - ACTIONS(5271), 1, - anon_sym_DOLLAR, - ACTIONS(5273), 1, - sym__unquoted_naive, - STATE(1306), 1, - sym__inter_single_quotes, - STATE(1317), 1, - sym__inter_double_quotes, - STATE(2530), 1, - sym_comment, - STATE(502), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3502), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [79493] = 4, + [81243] = 8, ACTIONS(103), 1, anon_sym_POUND, - STATE(2531), 1, - sym_comment, - ACTIONS(1537), 4, - ts_builtin_sym_end, + ACTIONS(1891), 1, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1535), 15, + ACTIONS(5104), 1, + anon_sym_DOT2, + STATE(2482), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2589), 1, + sym_comment, + STATE(2642), 1, + sym_path, + STATE(3239), 1, + sym_cell_path, + ACTIONS(1893), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207354,21 +210079,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [79523] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [81280] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2532), 1, + STATE(2590), 1, sym_comment, - ACTIONS(1541), 4, + ACTIONS(1730), 5, ts_builtin_sym_end, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1539), 15, + ACTIONS(1732), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207381,49 +210105,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, - [79553] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2533), 1, - sym_comment, - ACTIONS(5275), 19, - anon_sym_EQ, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [79581] = 7, + sym__unquoted_pattern, + [81309] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5277), 1, - anon_sym_DOT2, - STATE(2293), 1, - sym_cell_path, - STATE(2500), 1, - sym_path, - STATE(2534), 1, + ACTIONS(1637), 1, + sym__unquoted_pattern, + ACTIONS(1976), 1, + anon_sym_LPAREN2, + STATE(2591), 1, sym_comment, - STATE(2608), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1444), 15, - anon_sym_EQ, + ACTIONS(1972), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207435,57 +210127,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_COLON, anon_sym_RPAREN, anon_sym_RBRACE, - [79617] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(974), 1, - sym_raw_string_begin, - ACTIONS(3335), 1, - anon_sym_DQUOTE, - ACTIONS(3337), 1, - anon_sym_SQUOTE, - ACTIONS(3339), 1, - anon_sym_BQUOTE, - ACTIONS(3341), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3343), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3705), 1, - anon_sym_LPAREN, - ACTIONS(3707), 1, - anon_sym_DOLLAR, - ACTIONS(5279), 1, - sym__unquoted_naive, - STATE(2535), 1, - sym_comment, - STATE(3340), 1, - sym__inter_single_quotes, - STATE(3342), 1, - sym__inter_double_quotes, - STATE(2554), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3320), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [79669] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [81340] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5227), 1, + ACTIONS(5362), 1, anon_sym_DOT_DOT2, - STATE(2536), 1, + STATE(2592), 1, sym_comment, - ACTIONS(5229), 2, + ACTIONS(5364), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5225), 16, + ACTIONS(5308), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207497,22 +210155,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [79701] = 4, - ACTIONS(103), 1, + [81371] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2537), 1, + ACTIONS(5362), 1, + anon_sym_DOT_DOT2, + STATE(2593), 1, sym_comment, - ACTIONS(1770), 4, - sym__space, - anon_sym_LPAREN2, + ACTIONS(5364), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1772), 15, + ACTIONS(5308), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207524,25 +210181,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, - sym__unquoted_pattern, - [79731] = 7, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [81402] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5237), 1, - anon_sym_DOT2, - STATE(720), 1, - sym_path, - STATE(1307), 1, - sym_cell_path, - STATE(2414), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2538), 1, + ACTIONS(2632), 1, + anon_sym_LPAREN2, + ACTIONS(2634), 1, + sym__unquoted_pattern, + STATE(2594), 1, sym_comment, - ACTIONS(1912), 15, - ts_builtin_sym_end, + ACTIONS(1234), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207554,16 +210205,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, - [79767] = 3, - ACTIONS(3), 1, + [81433] = 8, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2539), 1, + ACTIONS(5104), 1, + anon_sym_DOT2, + ACTIONS(5368), 1, + sym__space, + STATE(2482), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2595), 1, sym_comment, - ACTIONS(5281), 19, - anon_sym_EQ, + STATE(2642), 1, + sym_path, + STATE(3179), 1, + sym_cell_path, + ACTIONS(5366), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207575,30 +210237,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, anon_sym_RBRACE, - [79795] = 8, + [81470] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1973), 1, + ACTIONS(5104), 1, + anon_sym_DOT2, + ACTIONS(5372), 1, sym__space, - ACTIONS(1977), 1, - anon_sym_LPAREN2, - ACTIONS(1983), 1, - sym__unquoted_pattern, - ACTIONS(5283), 1, - anon_sym_DOT_DOT2, - STATE(2540), 1, + STATE(2482), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2596), 1, sym_comment, - ACTIONS(5285), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1975), 13, + STATE(2642), 1, + sym_path, + STATE(3180), 1, + sym_cell_path, + ACTIONS(5370), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207612,22 +210268,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [79833] = 6, - ACTIONS(103), 1, + [81507] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5287), 1, - anon_sym_DOT2, - STATE(2689), 1, - sym_path, - STATE(2541), 2, + ACTIONS(5374), 1, + anon_sym_QMARK2, + ACTIONS(5376), 1, + anon_sym_BANG, + STATE(2597), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1510), 4, + STATE(3013), 1, + sym__path_suffix, + ACTIONS(1444), 15, ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1508), 12, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207639,18 +210293,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - [79867] = 4, + anon_sym_COLON, + anon_sym_DOT2, + [81540] = 8, ACTIONS(103), 1, anon_sym_POUND, - STATE(2542), 1, + ACTIONS(1637), 1, + sym__unquoted_pattern, + ACTIONS(1976), 1, + anon_sym_LPAREN2, + ACTIONS(5378), 1, + anon_sym_DOT_DOT2, + STATE(2598), 1, sym_comment, - ACTIONS(1852), 4, + ACTIONS(1972), 2, + ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, + ACTIONS(5380), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1854), 15, + ACTIONS(1974), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207662,21 +210324,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [79897] = 4, - ACTIONS(103), 1, + [81577] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2543), 1, + STATE(2599), 1, sym_comment, - ACTIONS(1870), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1872), 15, + ACTIONS(5382), 18, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207688,21 +210342,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_GT, anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [79927] = 5, + [81604] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5227), 1, - anon_sym_DOT_DOT2, - STATE(2544), 1, + ACTIONS(5089), 1, + anon_sym_DOT2, + STATE(2450), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2500), 1, + sym_path, + STATE(2600), 1, sym_comment, - ACTIONS(5229), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5225), 16, + STATE(3088), 1, + sym_cell_path, + ACTIONS(1907), 14, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207716,19 +210376,13 @@ 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, - [79959] = 5, + [81639] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1746), 1, - sym__unquoted_pattern, - ACTIONS(5187), 1, - aux_sym__immediate_decimal_token5, - STATE(2545), 1, + STATE(2601), 1, sym_comment, - ACTIONS(1744), 17, + ACTIONS(5384), 18, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207740,46 +210394,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_GT, anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [79991] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5290), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5292), 1, - aux_sym__immediate_decimal_token5, - STATE(2546), 1, - sym_comment, - ACTIONS(1772), 4, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1770), 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, - [80025] = 3, + [81666] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2547), 1, + STATE(2602), 1, sym_comment, - ACTIONS(5294), 19, + ACTIONS(5386), 18, anon_sym_EQ, sym__newline, anon_sym_SEMI, @@ -207792,24 +210418,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_LBRACK, - anon_sym_LPAREN, + anon_sym_DASH_GT, anon_sym_RPAREN, anon_sym_GT2, - anon_sym_DASH_DASH, + anon_sym_AT2, anon_sym_LBRACE, anon_sym_RBRACE, - [80053] = 4, + [81693] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(2548), 1, + ACTIONS(5388), 1, + anon_sym_QMARK2, + STATE(2603), 1, sym_comment, - ACTIONS(1525), 4, + ACTIONS(1462), 4, ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1523), 15, + ACTIONS(1460), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207822,20 +210449,14 @@ 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, - [80083] = 5, + [81724] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5227), 1, - anon_sym_DOT_DOT2, - STATE(2549), 1, + STATE(2604), 1, sym_comment, - ACTIONS(5229), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1713), 16, + ACTIONS(5390), 18, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207847,95 +210468,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_DASH_GT, anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [80115] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1480), 1, - anon_sym_COMMA, - ACTIONS(5298), 1, - anon_sym_EQ, - ACTIONS(5300), 1, - sym__newline, - ACTIONS(5302), 1, - anon_sym_COLON, - ACTIONS(5304), 1, - anon_sym_LPAREN, - ACTIONS(5306), 1, - anon_sym_DASH2, - STATE(2550), 1, - sym_comment, - STATE(2707), 1, - sym_flag_capsule, - STATE(2709), 1, - aux_sym_parameter_repeat1, - STATE(3541), 1, - aux_sym_parameter_repeat2, - STATE(4242), 1, - aux_sym__repeat_newline, - STATE(3398), 2, - sym_param_type, - sym_param_value, - ACTIONS(5296), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [80165] = 15, + [81751] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(856), 1, - sym_raw_string_begin, - ACTIONS(3130), 1, - anon_sym_DQUOTE, - ACTIONS(3132), 1, - anon_sym_SQUOTE, - ACTIONS(3134), 1, - anon_sym_BQUOTE, - ACTIONS(3136), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3138), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3681), 1, - anon_sym_LPAREN, - ACTIONS(3683), 1, - anon_sym_DOLLAR, - ACTIONS(5308), 1, - sym__unquoted_naive, - STATE(2551), 1, - sym_comment, - STATE(3094), 1, - sym__inter_single_quotes, - STATE(3095), 1, - sym__inter_double_quotes, - STATE(2483), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3085), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [80217] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5310), 1, - anon_sym_DOT_DOT2, - STATE(2552), 1, + ACTIONS(2620), 1, + anon_sym_LPAREN2, + ACTIONS(2622), 1, + sym__unquoted_pattern, + STATE(2605), 1, sym_comment, - ACTIONS(5312), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2154), 16, + ACTIONS(2616), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207952,17 +210500,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [80249] = 5, + [81782] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5314), 1, - anon_sym_DOT_DOT2, - STATE(2553), 1, + STATE(2606), 1, sym_comment, - ACTIONS(5316), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2102), 16, + ACTIONS(5392), 18, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207974,22 +210518,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_DASH_GT, anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [80281] = 4, + [81809] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2554), 1, + STATE(2607), 1, sym_comment, - ACTIONS(1521), 4, - ts_builtin_sym_end, + ACTIONS(1470), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1519), 15, + ACTIONS(1468), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208001,21 +210545,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_QMARK2, - anon_sym_BANG, anon_sym_DOT2, - [80311] = 5, + [81838] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5318), 1, - anon_sym_DOT_DOT2, - STATE(2555), 1, + ACTIONS(1986), 1, + anon_sym_LPAREN2, + ACTIONS(1992), 1, + sym__unquoted_pattern, + STATE(2608), 1, sym_comment, - ACTIONS(5320), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2118), 16, + ACTIONS(2652), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208032,57 +210575,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [80343] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(203), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1788), 1, - anon_sym_LPAREN, - ACTIONS(1800), 1, - anon_sym_DQUOTE, - ACTIONS(1802), 1, - anon_sym_SQUOTE, - ACTIONS(1804), 1, - anon_sym_BQUOTE, - ACTIONS(1806), 1, - sym_raw_string_begin, - ACTIONS(5322), 1, - anon_sym_DOLLAR, - ACTIONS(5324), 1, - sym__unquoted_naive, - STATE(749), 1, - sym__inter_single_quotes, - STATE(750), 1, - sym__inter_double_quotes, - STATE(2556), 1, - sym_comment, - STATE(2266), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3277), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [80395] = 4, + [81869] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2557), 1, - sym_comment, - ACTIONS(739), 6, - sym_identifier, + ACTIONS(5394), 1, + anon_sym_DOT2, + STATE(2851), 1, + sym_path, + ACTIONS(1532), 2, anon_sym_DASH2, anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - sym__unquoted_pattern_in_record, - ACTIONS(741), 13, + STATE(2609), 2, + sym_comment, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1534), 13, anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -208092,23 +210600,15 @@ 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, - [80425] = 5, - ACTIONS(103), 1, + [81902] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5326), 1, - aux_sym__immediate_decimal_token5, - STATE(2558), 1, + STATE(2610), 1, sym_comment, - ACTIONS(1852), 5, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1854), 13, + ACTIONS(5302), 18, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208120,49 +210620,72 @@ static const uint16_t 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, - [80457] = 8, - ACTIONS(103), 1, + anon_sym_DASH_GT, + anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [81929] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1635), 1, - sym__unquoted_pattern, - ACTIONS(1956), 1, - sym__space, - ACTIONS(1960), 1, - anon_sym_LPAREN2, - ACTIONS(5328), 1, - anon_sym_DOT_DOT2, - STATE(2559), 1, + STATE(2611), 1, sym_comment, - ACTIONS(5330), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1958), 13, + ACTIONS(1512), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1514), 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, - [80495] = 4, - ACTIONS(103), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_QMARK2, + anon_sym_BANG, + [81958] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2560), 1, + STATE(2612), 1, sym_comment, - ACTIONS(1533), 4, - ts_builtin_sym_end, - sym__space, + ACTIONS(1520), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1522), 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, - ACTIONS(1531), 15, + anon_sym_QMARK2, + anon_sym_BANG, + [81987] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1986), 1, + anon_sym_LPAREN2, + ACTIONS(1992), 1, + sym__unquoted_pattern, + STATE(2613), 1, + sym_comment, + ACTIONS(1982), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208174,26 +210697,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [80525] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [82018] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2614), 1, + sym_comment, + ACTIONS(4792), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4794), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4796), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4790), 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, + [82051] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1896), 1, + ACTIONS(1907), 1, sym__space, - ACTIONS(5114), 1, + ACTIONS(5104), 1, anon_sym_DOT2, - STATE(2466), 1, + STATE(2482), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2561), 1, + STATE(2615), 1, sym_comment, - STATE(2583), 1, + STATE(2642), 1, sym_path, - STATE(3065), 1, + STATE(3038), 1, sym_cell_path, - ACTIONS(1898), 13, + ACTIONS(1909), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208207,16 +210758,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [80562] = 5, + [82088] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1977), 1, - anon_sym_LPAREN2, - ACTIONS(1983), 1, + ACTIONS(1695), 1, sym__unquoted_pattern, - STATE(2562), 1, + ACTIONS(2576), 1, + anon_sym_LPAREN2, + STATE(2616), 1, sym_comment, - ACTIONS(1973), 16, + ACTIONS(2572), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208233,16 +210784,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [80593] = 5, + [82119] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1679), 1, - sym__unquoted_pattern, - ACTIONS(2642), 1, - anon_sym_LPAREN2, - STATE(2563), 1, + STATE(2617), 1, + sym_comment, + ACTIONS(4770), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4772), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4774), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4766), 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, + [82152] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5397), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5399), 1, + aux_sym__immediate_decimal_token5, + STATE(2618), 1, sym_comment, - ACTIONS(2541), 16, + ACTIONS(1730), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1732), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208256,19 +210837,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [80624] = 5, + sym__unquoted_pattern, + [82185] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1724), 1, + ACTIONS(1818), 1, anon_sym_LPAREN2, - STATE(2564), 1, + STATE(2619), 1, sym_comment, - STATE(4802), 1, + STATE(5073), 1, sym__expr_parenthesized_immediate, - ACTIONS(5332), 16, + ACTIONS(5401), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208285,13 +210864,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [80655] = 3, + [82216] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2565), 1, + ACTIONS(2612), 1, + anon_sym_LPAREN2, + ACTIONS(2614), 1, + sym__unquoted_pattern, + STATE(2620), 1, sym_comment, - ACTIONS(5334), 18, - anon_sym_EQ, + ACTIONS(2608), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208303,20 +210885,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_GT, anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, anon_sym_RBRACE, - [80682] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [82247] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1854), 1, - sym__unquoted_pattern, - STATE(2566), 1, + ACTIONS(5362), 1, + anon_sym_DOT_DOT2, + STATE(2621), 1, sym_comment, - ACTIONS(1852), 17, + ACTIONS(5364), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5308), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208328,22 +210913,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [80711] = 5, - ACTIONS(3), 1, + [82278] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2644), 1, - anon_sym_LPAREN2, - ACTIONS(2646), 1, - sym__unquoted_pattern, - STATE(2567), 1, + STATE(2622), 1, sym_comment, - ACTIONS(2589), 16, + ACTIONS(1846), 5, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1848), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208355,21 +210939,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_and2, - anon_sym_xor2, - anon_sym_or2, - [80742] = 4, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [82307] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2568), 1, + STATE(2623), 1, sym_comment, - ACTIONS(1519), 3, + ACTIONS(1528), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1521), 15, + ACTIONS(1530), 15, anon_sym_EQ, sym_identifier, sym__newline, @@ -208385,22 +210966,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, anon_sym_QMARK2, anon_sym_BANG, - [80771] = 8, - ACTIONS(103), 1, + [82336] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1882), 1, - sym__space, - ACTIONS(5114), 1, + ACTIONS(5089), 1, anon_sym_DOT2, - STATE(2466), 1, + STATE(2450), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2569), 1, - sym_comment, - STATE(2583), 1, + STATE(2500), 1, sym_path, - STATE(3033), 1, + STATE(2624), 1, + sym_comment, + STATE(3090), 1, sym_cell_path, - ACTIONS(1885), 13, + ACTIONS(1883), 14, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208414,14 +210994,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [80808] = 4, - ACTIONS(3), 1, + [82371] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1872), 1, - sym__unquoted_pattern, - STATE(2570), 1, + ACTIONS(5388), 1, + anon_sym_BANG, + STATE(2625), 1, sym_comment, - ACTIONS(1870), 17, + ACTIONS(1462), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1460), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208433,28 +211018,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [82402] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2626), 1, + sym_comment, + ACTIONS(1500), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1502), 15, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_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, - [80837] = 7, + 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, + [82431] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5336), 1, + STATE(2627), 1, + sym_comment, + ACTIONS(1504), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, anon_sym_DOT2, - STATE(2571), 1, + ACTIONS(1506), 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, + [82460] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5362), 1, + anon_sym_DOT_DOT2, + STATE(2628), 1, sym_comment, - STATE(2710), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2936), 1, - sym_path, - STATE(3106), 1, - sym_cell_path, - ACTIONS(1444), 14, + ACTIONS(5364), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1699), 15, ts_builtin_sym_end, - anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208466,13 +211093,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_COLON, - [80872] = 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [82491] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2572), 1, + STATE(2629), 1, sym_comment, - ACTIONS(5338), 18, + ACTIONS(5403), 18, anon_sym_EQ, sym__newline, anon_sym_SEMI, @@ -208491,22 +211120,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_LBRACE, anon_sym_RBRACE, - [80899] = 8, + [82518] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5114), 1, - anon_sym_DOT2, - ACTIONS(5342), 1, - sym__space, - STATE(2466), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2573), 1, + STATE(2630), 1, sym_comment, - STATE(2583), 1, - sym_path, - STATE(3165), 1, - sym_cell_path, - ACTIONS(5340), 13, + ACTIONS(1895), 5, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1897), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208518,20 +211143,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, - [80936] = 4, - ACTIONS(103), 1, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [82547] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2574), 1, + ACTIONS(5314), 1, + anon_sym_DOT2, + STATE(2500), 1, + sym_path, + STATE(2631), 1, sym_comment, - ACTIONS(1870), 5, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1872), 13, + STATE(2632), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1526), 15, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208543,18 +211169,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, - sym__unquoted_pattern, - [80965] = 4, - ACTIONS(103), 1, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_RBRACE, + [82580] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2575), 1, + ACTIONS(5405), 1, + anon_sym_DOT2, + STATE(2500), 1, + sym_path, + STATE(2632), 2, sym_comment, - ACTIONS(1498), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1496), 15, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1534), 15, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208566,17 +211195,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [80994] = 3, + [82611] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2576), 1, + ACTIONS(1818), 1, + anon_sym_LPAREN2, + STATE(2633), 1, sym_comment, - ACTIONS(1521), 18, - anon_sym_EQ, + STATE(5073), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5401), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208588,25 +211219,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_COLON, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [81021] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [82642] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5344), 1, - anon_sym_DOT, - ACTIONS(5346), 1, - aux_sym__immediate_decimal_token5, - STATE(2577), 1, - sym_comment, - ACTIONS(1744), 2, + ACTIONS(1871), 1, sym__space, - anon_sym_LPAREN2, - ACTIONS(1746), 14, + ACTIONS(5104), 1, + anon_sym_DOT2, + STATE(2482), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2634), 1, + sym_comment, + STATE(2642), 1, + sym_path, + STATE(3233), 1, + sym_cell_path, + ACTIONS(1874), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208620,18 +211253,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - sym__unquoted_pattern, - [81054] = 5, + [82679] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1746), 1, - sym__unquoted_pattern, - ACTIONS(5243), 1, - aux_sym__immediate_decimal_token5, - STATE(2578), 1, + ACTIONS(1818), 1, + anon_sym_LPAREN2, + STATE(2635), 1, sym_comment, - ACTIONS(1744), 16, - ts_builtin_sym_end, + STATE(5073), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5401), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208643,43 +211274,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [81085] = 5, + [82710] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5233), 1, - aux_sym__immediate_decimal_token5, - STATE(2579), 1, - sym_comment, - ACTIONS(1746), 4, - sym_identifier, - anon_sym_DASH2, + ACTIONS(5408), 1, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1744), 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(2636), 1, + sym_comment, + ACTIONS(5410), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [81116] = 3, + ACTIONS(2170), 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, + [82741] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2580), 1, + ACTIONS(2632), 1, + anon_sym_LPAREN2, + ACTIONS(2634), 1, + sym__unquoted_pattern, + STATE(2637), 1, sym_comment, - ACTIONS(5348), 18, - anon_sym_EQ, + ACTIONS(1226), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208691,23 +211326,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_DASH_GT, anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, anon_sym_RBRACE, - [81143] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [82772] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5350), 1, + ACTIONS(5412), 1, anon_sym_DOT_DOT2, - STATE(2581), 1, + STATE(2638), 1, sym_comment, - ACTIONS(5352), 2, + ACTIONS(5414), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5225), 15, + ACTIONS(2104), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -208723,13 +211357,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [81174] = 3, + [82803] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2582), 1, + ACTIONS(5416), 1, + anon_sym_DOT_DOT2, + STATE(2639), 1, sym_comment, - ACTIONS(5245), 18, - anon_sym_EQ, + ACTIONS(5418), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2112), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208741,22 +211380,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_DASH_GT, - anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [81201] = 4, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [82834] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2583), 1, + ACTIONS(5420), 1, + anon_sym_DOT_DOT2, + STATE(2640), 1, sym_comment, - ACTIONS(1549), 3, - sym__space, + ACTIONS(5422), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1547), 15, + ACTIONS(2120), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208768,17 +211406,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [81230] = 3, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [82865] = 8, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2584), 1, + ACTIONS(1911), 1, + sym__space, + ACTIONS(5104), 1, + anon_sym_DOT2, + STATE(2482), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2641), 1, sym_comment, - ACTIONS(1525), 18, - anon_sym_EQ, + STATE(2642), 1, + sym_path, + STATE(3041), 1, + sym_cell_path, + ACTIONS(1913), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208790,24 +211436,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_COLON, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [81257] = 4, + [82902] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2585), 1, + STATE(2642), 1, sym_comment, - ACTIONS(1770), 5, - ts_builtin_sym_end, + ACTIONS(1545), 3, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1772), 13, + ACTIONS(1543), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208819,47 +211459,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [81286] = 3, + anon_sym_DOT2, + [82931] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2586), 1, + STATE(2643), 1, sym_comment, - ACTIONS(1529), 18, + ACTIONS(1508), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1510), 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_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, - anon_sym_DOT2, - [81313] = 7, - ACTIONS(3), 1, + [82960] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5030), 1, + ACTIONS(5200), 1, anon_sym_DOT2, - STATE(2459), 1, + STATE(2554), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2500), 1, - sym_path, - STATE(2587), 1, + STATE(2644), 1, sym_comment, - STATE(3055), 1, + STATE(2676), 1, + sym_path, + STATE(3272), 1, sym_cell_path, - ACTIONS(5354), 14, - anon_sym_EQ, + ACTIONS(5368), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5366), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208871,20 +211516,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, - [81348] = 5, - ACTIONS(3), 1, + [82996] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5350), 1, - anon_sym_DOT_DOT2, - STATE(2588), 1, + ACTIONS(5200), 1, + anon_sym_DOT2, + STATE(2554), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2645), 1, sym_comment, - ACTIONS(5352), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5225), 15, + STATE(2676), 1, + sym_path, + STATE(3286), 1, + sym_cell_path, + ACTIONS(1871), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(1874), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208896,28 +211544,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, - [81379] = 8, - ACTIONS(103), 1, + [83032] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1635), 1, - sym__unquoted_pattern, - ACTIONS(1960), 1, - anon_sym_LPAREN2, - ACTIONS(5356), 1, - anon_sym_DOT_DOT2, - STATE(2589), 1, + STATE(2646), 1, sym_comment, - ACTIONS(1956), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5358), 2, + ACTIONS(1897), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1895), 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, - ACTIONS(1958), 11, + [83060] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5424), 1, sym__newline, + ACTIONS(5426), 1, + sym__space, + ACTIONS(5430), 1, + anon_sym_COLON2, + ACTIONS(5432), 1, + anon_sym_EQ2, + STATE(2647), 1, + sym_comment, + STATE(2929), 1, + aux_sym_attribute_repeat1, + STATE(4548), 1, + aux_sym_pipe_element_parenthesized_repeat1, + ACTIONS(5428), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -208928,16 +211596,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, - [81416] = 5, + anon_sym_RBRACE, + [83098] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2652), 1, - anon_sym_LPAREN2, - ACTIONS(2654), 1, - sym__unquoted_pattern, - STATE(2590), 1, + ACTIONS(1484), 1, + anon_sym_COMMA, + ACTIONS(5235), 1, + anon_sym_EQ, + ACTIONS(5237), 1, + sym__newline, + ACTIONS(5239), 1, + anon_sym_COLON, + ACTIONS(5436), 1, + anon_sym_DASH2, + STATE(2648), 1, sym_comment, - ACTIONS(2648), 16, + STATE(2672), 1, + aux_sym_parameter_repeat1, + STATE(3583), 1, + aux_sym_parameter_repeat2, + STATE(4491), 1, + aux_sym__repeat_newline, + STATE(3534), 2, + sym_param_type, + sym_param_value, + ACTIONS(5434), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [83142] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2649), 1, + sym_comment, + ACTIONS(1903), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1905), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208951,19 +211652,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, - [81447] = 5, + anon_sym_DOT_DOT2, + [83170] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1724), 1, - anon_sym_LPAREN2, - STATE(2591), 1, + ACTIONS(1732), 1, + sym__unquoted_pattern, + STATE(2650), 1, sym_comment, - STATE(4802), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5332), 16, + ACTIONS(1730), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208975,27 +211673,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, - [81478] = 8, + anon_sym_LPAREN2, + [83198] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1888), 1, - sym__space, - ACTIONS(5114), 1, - anon_sym_DOT2, - STATE(2466), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2583), 1, - sym_path, - STATE(2592), 1, + STATE(2651), 1, sym_comment, - STATE(3077), 1, - sym_cell_path, - ACTIONS(1890), 13, + ACTIONS(1580), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1578), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209009,38 +211700,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [81515] = 4, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + [83226] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2593), 1, + STATE(2652), 1, sym_comment, - ACTIONS(1531), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1533), 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, + ACTIONS(1470), 4, + ts_builtin_sym_end, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_QMARK2, - anon_sym_BANG, - [81544] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2594), 1, - sym_comment, - ACTIONS(1533), 18, - anon_sym_EQ, + ACTIONS(1468), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209052,19 +211723,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_COLON, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_BANG, + anon_sym_DOT_DOT2, anon_sym_DOT2, - [81571] = 3, - ACTIONS(3), 1, + [83254] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2595), 1, + ACTIONS(5438), 1, + anon_sym_DOT, + ACTIONS(5440), 1, + aux_sym__immediate_decimal_token5, + STATE(2653), 1, sym_comment, - ACTIONS(1537), 18, - anon_sym_EQ, + ACTIONS(1790), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1792), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209076,51 +211750,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [81598] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2596), 1, - sym_comment, - ACTIONS(4790), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4792), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4794), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4788), 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, - [81631] = 6, + sym__unquoted_pattern, + [83286] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5360), 1, - anon_sym_QMARK2, - ACTIONS(5362), 1, - anon_sym_BANG, - STATE(2597), 1, + ACTIONS(5352), 1, + anon_sym_DOT2, + STATE(2654), 1, sym_comment, - STATE(2969), 1, - sym__path_suffix, - ACTIONS(1458), 15, + STATE(2701), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2921), 1, + sym_path, + ACTIONS(1526), 14, ts_builtin_sym_end, anon_sym_EQ, sym__newline, @@ -209135,23 +211777,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_COLON, - anon_sym_DOT2, - [81664] = 8, - ACTIONS(103), 1, + [83318] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1862), 1, - sym__space, - ACTIONS(5114), 1, + ACTIONS(5352), 1, anon_sym_DOT2, - STATE(2466), 1, + STATE(2654), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2583), 1, - sym_path, - STATE(2598), 1, + STATE(2655), 1, sym_comment, - STATE(3204), 1, + STATE(2921), 1, + sym_path, + STATE(3263), 1, sym_cell_path, - ACTIONS(1864), 13, + ACTIONS(1907), 13, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209163,14 +211804,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, - [81701] = 3, + [83352] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2599), 1, + STATE(2656), 1, sym_comment, - ACTIONS(5364), 18, + ACTIONS(5442), 17, anon_sym_EQ, sym__newline, anon_sym_SEMI, @@ -209185,72 +211824,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DASH_GT, anon_sym_RPAREN, - anon_sym_GT2, anon_sym_AT2, anon_sym_LBRACE, anon_sym_RBRACE, - [81728] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1912), 1, - sym__space, - ACTIONS(5114), 1, - anon_sym_DOT2, - STATE(2466), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2583), 1, - sym_path, - STATE(2600), 1, - sym_comment, - STATE(3132), 1, - sym_cell_path, - ACTIONS(1914), 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, - [81765] = 5, + [83378] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5366), 1, - aux_sym__immediate_decimal_token5, - STATE(2601), 1, + STATE(2657), 1, sym_comment, - ACTIONS(1854), 4, - sym_identifier, + ACTIONS(1917), 2, anon_sym_DASH2, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1852), 13, + ACTIONS(1915), 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_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [81796] = 3, - ACTIONS(3), 1, + [83406] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2602), 1, + ACTIONS(5444), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5446), 1, + aux_sym__immediate_decimal_token5, + STATE(2658), 1, sym_comment, - ACTIONS(1541), 18, - anon_sym_EQ, + ACTIONS(1730), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1732), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209262,22 +211876,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_COLON, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [81823] = 4, + sym__unquoted_pattern, + [83438] = 8, ACTIONS(103), 1, anon_sym_POUND, - STATE(2603), 1, + ACTIONS(5200), 1, + anon_sym_DOT2, + STATE(2554), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2659), 1, sym_comment, - ACTIONS(1564), 3, + STATE(2676), 1, + sym_path, + STATE(3345), 1, + sym_cell_path, + ACTIONS(5344), 2, + ts_builtin_sym_end, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1562), 15, + ACTIONS(5342), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209289,20 +211905,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_DOT_DOT2, + [83474] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5200), 1, anon_sym_DOT2, - [81852] = 5, + STATE(2554), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2660), 1, + sym_comment, + STATE(2676), 1, + sym_path, + STATE(3346), 1, + sym_cell_path, + ACTIONS(5356), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5354), 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, + [83510] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1854), 1, + ACTIONS(2632), 1, + anon_sym_LPAREN2, + ACTIONS(2634), 1, sym__unquoted_pattern, - ACTIONS(5368), 1, - aux_sym__immediate_decimal_token5, - STATE(2604), 1, + STATE(2661), 1, sym_comment, - ACTIONS(1852), 16, + ACTIONS(1226), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -209318,18 +211958,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [81883] = 5, + [83540] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5350), 1, - anon_sym_DOT_DOT2, - STATE(2605), 1, + ACTIONS(1484), 1, + anon_sym_COMMA, + ACTIONS(5235), 1, + anon_sym_EQ, + ACTIONS(5237), 1, + sym__newline, + ACTIONS(5239), 1, + anon_sym_COLON, + ACTIONS(5450), 1, + anon_sym_DASH2, + STATE(2662), 1, sym_comment, - ACTIONS(5352), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1713), 15, + STATE(2797), 1, + aux_sym_parameter_repeat1, + STATE(3586), 1, + aux_sym_parameter_repeat2, + STATE(4491), 1, + aux_sym__repeat_newline, + STATE(3534), 2, + sym_param_type, + sym_param_value, + ACTIONS(5448), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [83584] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2632), 1, + anon_sym_LPAREN2, + ACTIONS(2634), 1, + sym__unquoted_pattern, + STATE(2663), 1, + sym_comment, + ACTIONS(1234), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -209345,41 +212015,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [81914] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2606), 1, - sym_comment, - ACTIONS(4760), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4762), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4764), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4756), 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, - [81947] = 4, + [83614] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2527), 1, + ACTIONS(1695), 1, sym__unquoted_pattern, - STATE(2607), 1, + ACTIONS(2576), 1, + anon_sym_LPAREN2, + STATE(2664), 1, sym_comment, - ACTIONS(2525), 17, + ACTIONS(2572), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209391,25 +212037,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, - anon_sym_LPAREN2, - [81976] = 6, - ACTIONS(3), 1, + [83644] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5277), 1, - anon_sym_DOT2, - STATE(2500), 1, - sym_path, - STATE(2608), 1, + ACTIONS(5340), 1, + aux_sym__immediate_decimal_token5, + STATE(2665), 1, sym_comment, - STATE(2609), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1506), 15, - anon_sym_EQ, + ACTIONS(1790), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1792), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209421,21 +212062,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_COLON, anon_sym_RPAREN, anon_sym_RBRACE, - [82009] = 5, - ACTIONS(3), 1, + sym__unquoted_pattern, + [83674] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5370), 1, - anon_sym_DOT2, - STATE(2500), 1, - sym_path, - STATE(2609), 2, + STATE(2666), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1510), 15, - anon_sym_EQ, + ACTIONS(1842), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1844), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209447,19 +212086,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_COLON, anon_sym_RPAREN, anon_sym_RBRACE, - [82040] = 5, + anon_sym_DOT_DOT2, + [83702] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2656), 1, + ACTIONS(1818), 1, anon_sym_LPAREN2, - ACTIONS(2658), 1, - sym__unquoted_pattern, - STATE(2610), 1, + STATE(2667), 1, sym_comment, - ACTIONS(1022), 16, + STATE(4973), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5401), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209471,21 +212111,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_and2, anon_sym_xor2, anon_sym_or2, - [82071] = 5, + [83732] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5200), 1, + anon_sym_DOT2, + STATE(2554), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2668), 1, + sym_comment, + STATE(2676), 1, + sym_path, + STATE(3340), 1, + sym_cell_path, + ACTIONS(1883), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1885), 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, + [83768] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2656), 1, + ACTIONS(1818), 1, anon_sym_LPAREN2, - ACTIONS(2658), 1, - sym__unquoted_pattern, - STATE(2611), 1, + STATE(2669), 1, sym_comment, - ACTIONS(1030), 16, + STATE(4973), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5401), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209497,26 +212164,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, - [82102] = 7, + [83798] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5030), 1, - anon_sym_DOT2, - STATE(2459), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2500), 1, - sym_path, - STATE(2612), 1, + ACTIONS(1986), 1, + anon_sym_LPAREN2, + ACTIONS(1992), 1, + sym__unquoted_pattern, + STATE(2670), 1, sym_comment, - STATE(3084), 1, - sym_cell_path, - ACTIONS(1862), 14, - anon_sym_EQ, + ACTIONS(2652), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209528,18 +212189,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, - [82137] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [83828] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2612), 1, + ACTIONS(1818), 1, anon_sym_LPAREN2, - ACTIONS(2614), 1, - sym__unquoted_pattern, - STATE(2613), 1, + STATE(2671), 1, sym_comment, - ACTIONS(1713), 16, + STATE(4973), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5401), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209551,46 +212214,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [82168] = 4, + [83858] = 12, ACTIONS(3), 1, anon_sym_POUND, - STATE(2614), 1, - sym_comment, - ACTIONS(1535), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1537), 15, + ACTIONS(1484), 1, + anon_sym_COMMA, + ACTIONS(5235), 1, anon_sym_EQ, - sym_identifier, + ACTIONS(5237), 1, sym__newline, - anon_sym_PIPE, + ACTIONS(5239), 1, anon_sym_COLON, + ACTIONS(5454), 1, + anon_sym_DASH2, + STATE(2672), 1, + sym_comment, + STATE(2797), 1, + aux_sym_parameter_repeat1, + STATE(3609), 1, + aux_sym_parameter_repeat2, + STATE(4491), 1, + aux_sym__repeat_newline, + STATE(3534), 2, + sym_param_type, + sym_param_value, + ACTIONS(5452), 7, + sym_identifier, + anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_QMARK2, - anon_sym_BANG, - [82197] = 4, + [83902] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5200), 1, + anon_sym_DOT2, + STATE(2554), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2673), 1, + sym_comment, + STATE(2676), 1, + sym_path, + STATE(3314), 1, + sym_cell_path, + ACTIONS(1911), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1913), 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, + [83938] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2615), 1, + ACTIONS(5456), 1, + anon_sym_QMARK2, + STATE(2674), 1, sym_comment, - ACTIONS(1539), 3, + ACTIONS(1460), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1541), 15, + ACTIONS(1462), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -209604,18 +212302,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_QMARK2, - anon_sym_BANG, - [82226] = 5, + [83968] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1724), 1, + ACTIONS(1986), 1, anon_sym_LPAREN2, - STATE(2616), 1, + ACTIONS(1992), 1, + sym__unquoted_pattern, + STATE(2675), 1, sym_comment, - STATE(4802), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5332), 16, + ACTIONS(1982), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209627,27 +212324,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, - [82257] = 8, + [83998] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5114), 1, - anon_sym_DOT2, - ACTIONS(5375), 1, - sym__space, - STATE(2466), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2583), 1, - sym_path, - STATE(2617), 1, + STATE(2676), 1, sym_comment, - STATE(3154), 1, - sym_cell_path, - ACTIONS(5373), 13, + ACTIONS(1545), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1543), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209659,44 +212349,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, - [82294] = 3, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [84026] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2618), 1, + STATE(2677), 1, sym_comment, - ACTIONS(5377), 18, + ACTIONS(1905), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(1903), 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_DASH_GT, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [82321] = 4, - ACTIONS(103), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [84054] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2619), 1, + ACTIONS(1848), 1, + sym__unquoted_pattern, + STATE(2678), 1, sym_comment, - ACTIONS(1852), 5, + ACTIONS(1846), 16, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1854), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209708,15 +212395,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [82350] = 3, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [84082] = 7, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2620), 1, + ACTIONS(5460), 1, + sym__space, + ACTIONS(5462), 1, + anon_sym_EQ2, + ACTIONS(5464), 1, + sym_short_flag_identifier, + STATE(2679), 1, sym_comment, - ACTIONS(5379), 18, - anon_sym_EQ, + STATE(3146), 1, + sym__flag_equals_value, + ACTIONS(5458), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209728,28 +212424,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_GT, anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, anon_sym_RBRACE, - [82377] = 8, + [84116] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5114), 1, - anon_sym_DOT2, - ACTIONS(5383), 1, - sym__space, - STATE(2466), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2583), 1, - sym_path, - STATE(2621), 1, + STATE(2680), 1, sym_comment, - STATE(3167), 1, - sym_cell_path, - ACTIONS(5381), 13, + ACTIONS(1553), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1551), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209761,23 +212448,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, - [82414] = 7, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [84144] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5223), 1, - anon_sym_DOT2, - STATE(2622), 1, - sym_comment, - STATE(2626), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2871), 1, - sym_path, - ACTIONS(1504), 2, + ACTIONS(1637), 1, + sym__unquoted_pattern_in_record, + ACTIONS(1974), 1, anon_sym_DASH2, + ACTIONS(1976), 1, + anon_sym_LPAREN2, + ACTIONS(5466), 1, anon_sym_DOT_DOT2, - ACTIONS(1506), 13, + STATE(2681), 1, + sym_comment, + ACTIONS(5468), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1972), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -209789,26 +212478,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [82449] = 8, - ACTIONS(103), 1, + [84180] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1977), 1, - anon_sym_LPAREN2, - ACTIONS(1983), 1, + ACTIONS(1897), 1, sym__unquoted_pattern, - ACTIONS(5385), 1, - anon_sym_DOT_DOT2, - STATE(2623), 1, + STATE(2682), 1, sym_comment, - ACTIONS(1973), 2, + ACTIONS(1895), 16, ts_builtin_sym_end, - sym__space, - ACTIONS(5387), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1975), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209820,96 +212498,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, - [82486] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [84208] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2624), 1, - sym_comment, - ACTIONS(1523), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, + ACTIONS(5352), 1, anon_sym_DOT2, - ACTIONS(1525), 15, + STATE(2654), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2683), 1, + sym_comment, + STATE(2921), 1, + sym_path, + STATE(3247), 1, + sym_cell_path, + ACTIONS(1883), 13, + ts_builtin_sym_end, anon_sym_EQ, - sym_identifier, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_QMARK2, - anon_sym_BANG, - [82515] = 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, + [84242] = 12, ACTIONS(3), 1, anon_sym_POUND, - STATE(2625), 1, - sym_comment, - ACTIONS(1527), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1529), 15, + ACTIONS(1484), 1, + anon_sym_COMMA, + ACTIONS(5235), 1, anon_sym_EQ, - sym_identifier, + ACTIONS(5237), 1, sym__newline, - anon_sym_PIPE, + ACTIONS(5239), 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_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_QMARK2, - anon_sym_BANG, - [82544] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5389), 1, - anon_sym_DOT2, - STATE(2871), 1, - sym_path, - ACTIONS(1508), 2, + ACTIONS(5472), 1, anon_sym_DASH2, - anon_sym_DOT_DOT2, - STATE(2626), 2, + STATE(2684), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1510), 13, - anon_sym_EQ, + STATE(2692), 1, + aux_sym_parameter_repeat1, + STATE(3606), 1, + aux_sym_parameter_repeat2, + STATE(4491), 1, + aux_sym__repeat_newline, + STATE(3534), 2, + sym_param_type, + sym_param_value, + ACTIONS(5470), 7, sym_identifier, - sym__newline, anon_sym_PIPE, - anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [82577] = 6, + [84286] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5392), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5394), 1, - aux_sym__immediate_decimal_token5, - STATE(2627), 1, + ACTIONS(5200), 1, + anon_sym_DOT2, + STATE(2554), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2676), 1, + sym_path, + STATE(2685), 1, sym_comment, - ACTIONS(1770), 2, + STATE(3349), 1, + sym_cell_path, + ACTIONS(1887), 2, + ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(1772), 14, + ACTIONS(1889), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209921,22 +212589,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, - [82610] = 5, + [84322] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5396), 1, - anon_sym_BANG, - STATE(2628), 1, - sym_comment, - ACTIONS(1450), 4, - ts_builtin_sym_end, + ACTIONS(1699), 1, sym__space, + ACTIONS(5474), 1, + anon_sym_DOT_DOT2, + STATE(2686), 1, + sym_comment, + ACTIONS(5476), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1448), 13, + ACTIONS(1615), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209948,20 +212613,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [82641] = 5, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [84354] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5398), 1, + ACTIONS(2170), 1, + sym__space, + ACTIONS(5478), 1, anon_sym_DOT_DOT2, - STATE(2629), 1, + STATE(2687), 1, sym_comment, - ACTIONS(5400), 2, + ACTIONS(5480), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2154), 15, - ts_builtin_sym_end, + ACTIONS(2172), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209973,25 +212639,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, - [82672] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + [84386] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1900), 1, + ACTIONS(2104), 1, sym__space, - ACTIONS(5114), 1, - anon_sym_DOT2, - STATE(2466), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2583), 1, - sym_path, - STATE(2630), 1, + ACTIONS(5482), 1, + anon_sym_DOT_DOT2, + STATE(2688), 1, sym_comment, - STATE(3159), 1, - sym_cell_path, - ACTIONS(1902), 13, + ACTIONS(5484), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2106), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210005,18 +212667,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [82709] = 5, - ACTIONS(3), 1, + [84418] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5402), 1, + ACTIONS(2112), 1, + sym__space, + ACTIONS(5486), 1, anon_sym_DOT_DOT2, - STATE(2631), 1, + STATE(2689), 1, sym_comment, - ACTIONS(5404), 2, + ACTIONS(5488), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2102), 15, - ts_builtin_sym_end, + ACTIONS(2114), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210028,21 +212691,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, - [82740] = 5, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [84450] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5406), 1, + ACTIONS(2120), 1, + sym__space, + ACTIONS(5490), 1, anon_sym_DOT_DOT2, - STATE(2632), 1, + STATE(2690), 1, sym_comment, - ACTIONS(5408), 2, + ACTIONS(5492), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2110), 15, - ts_builtin_sym_end, + ACTIONS(2122), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210054,21 +212717,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, - [82771] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [84482] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5410), 1, - anon_sym_DOT_DOT2, - STATE(2633), 1, + ACTIONS(5352), 1, + anon_sym_DOT2, + STATE(2654), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2691), 1, sym_comment, - ACTIONS(5412), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2118), 15, + STATE(2921), 1, + sym_path, + STATE(3245), 1, + sym_cell_path, + ACTIONS(5360), 13, ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210080,19 +212746,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [82802] = 5, + [84516] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1635), 1, - sym__unquoted_pattern, - ACTIONS(1960), 1, + ACTIONS(1484), 1, + anon_sym_COMMA, + ACTIONS(5235), 1, + anon_sym_EQ, + ACTIONS(5237), 1, + sym__newline, + ACTIONS(5239), 1, + anon_sym_COLON, + ACTIONS(5496), 1, + anon_sym_DASH2, + STATE(2692), 1, + sym_comment, + STATE(2797), 1, + aux_sym_parameter_repeat1, + STATE(3627), 1, + aux_sym_parameter_repeat2, + STATE(4491), 1, + aux_sym__repeat_newline, + STATE(3534), 2, + sym_param_type, + sym_param_value, + ACTIONS(5494), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [84560] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2612), 1, anon_sym_LPAREN2, - STATE(2634), 1, + ACTIONS(2614), 1, + sym__unquoted_pattern, + STATE(2693), 1, sym_comment, - ACTIONS(1956), 16, + ACTIONS(2608), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210104,19 +212800,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, - [82833] = 4, - ACTIONS(3), 1, + [84590] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1772), 1, - sym__unquoted_pattern, - STATE(2635), 1, + ACTIONS(4282), 1, + sym__space, + ACTIONS(5462), 1, + anon_sym_EQ2, + ACTIONS(5498), 1, + sym_long_flag_identifier, + STATE(2694), 1, sym_comment, - ACTIONS(1770), 17, + STATE(3193), 1, + sym__flag_equals_value, + ACTIONS(4280), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210130,26 +212830,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [82862] = 8, - ACTIONS(103), 1, + [84624] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5114), 1, + ACTIONS(5016), 1, anon_sym_DOT2, - ACTIONS(5416), 1, - sym__space, - STATE(2466), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2583), 1, + STATE(458), 1, sym_path, - STATE(2636), 1, - sym_comment, - STATE(3109), 1, + STATE(927), 1, sym_cell_path, - ACTIONS(5414), 13, + STATE(2298), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2695), 1, + sym_comment, + ACTIONS(5360), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210163,21 +212857,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [82899] = 7, - ACTIONS(3), 1, + [84658] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5030), 1, + ACTIONS(5200), 1, anon_sym_DOT2, - STATE(2459), 1, + STATE(2554), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2500), 1, + STATE(2676), 1, sym_path, - STATE(2637), 1, + STATE(2696), 1, sym_comment, - STATE(3081), 1, + STATE(3307), 1, sym_cell_path, - ACTIONS(1900), 14, - anon_sym_EQ, + ACTIONS(1907), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1909), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210189,24 +212885,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, - [82934] = 8, - ACTIONS(103), 1, + [84694] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5114), 1, + ACTIONS(5352), 1, anon_sym_DOT2, - ACTIONS(5420), 1, - sym__space, - STATE(2466), 1, + STATE(2654), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2583), 1, - sym_path, - STATE(2638), 1, + STATE(2697), 1, sym_comment, - STATE(3113), 1, + STATE(2921), 1, + sym_path, + STATE(3354), 1, sym_cell_path, - ACTIONS(5418), 13, + ACTIONS(1887), 13, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210218,19 +212912,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, - [82971] = 5, + [84728] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5350), 1, - anon_sym_DOT_DOT2, - STATE(2639), 1, + ACTIONS(2620), 1, + anon_sym_LPAREN2, + ACTIONS(2622), 1, + sym__unquoted_pattern, + STATE(2698), 1, sym_comment, - ACTIONS(5352), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5225), 15, + ACTIONS(2616), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -210246,21 +212937,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [83002] = 7, + [84758] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5030), 1, + ACTIONS(1828), 1, + sym__unquoted_pattern, + STATE(2699), 1, + sym_comment, + ACTIONS(968), 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, + [84786] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5200), 1, anon_sym_DOT2, - STATE(2459), 1, + STATE(2554), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2500), 1, + STATE(2676), 1, sym_path, - STATE(2640), 1, + STATE(2700), 1, sym_comment, - STATE(3063), 1, + STATE(3267), 1, sym_cell_path, - ACTIONS(1912), 14, - anon_sym_EQ, + ACTIONS(5348), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5346), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210272,18 +212989,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, - [83037] = 5, + [84822] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1977), 1, - anon_sym_LPAREN2, - ACTIONS(1983), 1, - sym__unquoted_pattern, - STATE(2641), 1, + ACTIONS(5500), 1, + anon_sym_DOT2, + STATE(2921), 1, + sym_path, + STATE(2701), 2, sym_comment, - ACTIONS(2597), 16, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1534), 14, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210295,24 +213013,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, - [83068] = 5, + anon_sym_COLON, + [84852] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5396), 1, - anon_sym_QMARK2, - STATE(2642), 1, + STATE(2702), 1, sym_comment, - ACTIONS(1450), 4, - ts_builtin_sym_end, + ACTIONS(1647), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1448), 13, + ACTIONS(1649), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210324,15 +213035,72 @@ static const uint16_t ts_small_parse_table[] = { 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, - [83099] = 3, + [84880] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(2643), 1, + ACTIONS(1984), 1, + anon_sym_DASH2, + ACTIONS(1986), 1, + anon_sym_LPAREN2, + ACTIONS(1992), 1, + sym__unquoted_pattern_in_record, + ACTIONS(5503), 1, + anon_sym_DOT_DOT2, + STATE(2703), 1, sym_comment, - ACTIONS(5422), 18, + ACTIONS(5505), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1982), 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, + [84916] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2704), 1, + sym_comment, + ACTIONS(1915), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1917), 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, + [84944] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5507), 1, + aux_sym__immediate_decimal_token5, + STATE(2705), 1, + sym_comment, + ACTIONS(1846), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1848), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210344,20 +213112,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_GT, anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, anon_sym_RBRACE, - [83126] = 4, + sym__unquoted_pattern, + [84974] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1772), 1, + ACTIONS(1637), 1, sym__unquoted_pattern, - STATE(2644), 1, + ACTIONS(1976), 1, + anon_sym_LPAREN2, + STATE(2706), 1, sym_comment, - ACTIONS(1770), 16, + ACTIONS(1972), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -210373,17 +213140,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + [85004] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2707), 1, + sym_comment, + ACTIONS(1732), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1730), 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, - [83154] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [85032] = 8, ACTIONS(103), 1, anon_sym_POUND, - STATE(2645), 1, + ACTIONS(5200), 1, + anon_sym_DOT2, + STATE(2554), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2676), 1, + sym_path, + STATE(2708), 1, sym_comment, - ACTIONS(1878), 3, + STATE(3276), 1, + sym_cell_path, + ACTIONS(5372), 2, + ts_builtin_sym_end, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1880), 14, + ACTIONS(5370), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210395,19 +213192,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, - [83182] = 4, + [85068] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2646), 1, + ACTIONS(5456), 1, + anon_sym_BANG, + STATE(2709), 1, sym_comment, - ACTIONS(1872), 3, + ACTIONS(1460), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1870), 14, + anon_sym_DOT2, + ACTIONS(1462), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -210419,20 +213215,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, - [83210] = 4, + [85098] = 8, ACTIONS(103), 1, anon_sym_POUND, - STATE(2647), 1, + ACTIONS(5200), 1, + anon_sym_DOT2, + STATE(2554), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2676), 1, + sym_path, + STATE(2710), 1, sym_comment, - ACTIONS(1564), 4, + STATE(3303), 1, + sym_cell_path, + ACTIONS(1891), 2, ts_builtin_sym_end, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1562), 13, + ACTIONS(1893), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210444,16 +213245,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, + [85134] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2711), 1, + sym_comment, + ACTIONS(1848), 3, + anon_sym_DASH2, anon_sym_DOT_DOT2, - anon_sym_DOT2, - [83238] = 4, + sym__unquoted_pattern_in_record, + ACTIONS(1846), 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, + [85162] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1854), 1, + ACTIONS(2672), 1, + anon_sym_LPAREN2, + ACTIONS(2674), 1, sym__unquoted_pattern, - STATE(2648), 1, + STATE(2712), 1, sym_comment, - ACTIONS(1852), 16, + ACTIONS(1699), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -210469,17 +213294,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [83266] = 5, + [85192] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1724), 1, - anon_sym_LPAREN2, - STATE(2649), 1, + ACTIONS(2362), 1, + sym__unquoted_pattern, + STATE(2713), 1, sym_comment, - STATE(4884), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5332), 15, + ACTIONS(2360), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -210495,23 +213317,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [83296] = 8, + anon_sym_LPAREN2, + [85220] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(2516), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2650), 1, - sym_comment, - STATE(2689), 1, - sym_path, - STATE(3228), 1, - sym_cell_path, - ACTIONS(1912), 2, - ts_builtin_sym_end, + ACTIONS(5474), 1, + anon_sym_DOT_DOT2, + ACTIONS(5511), 1, sym__space, - ACTIONS(1914), 11, + STATE(2714), 1, + sym_comment, + ACTIONS(5476), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5509), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210523,13 +213342,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, - [83332] = 3, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [85252] = 5, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2651), 1, + ACTIONS(5513), 1, + aux_sym__immediate_decimal_token5, + STATE(2715), 1, sym_comment, - ACTIONS(5424), 17, - anon_sym_EQ, + ACTIONS(1846), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1848), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210541,25 +213367,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_DASH_GT, - anon_sym_RPAREN, - anon_sym_AT2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [83358] = 6, + sym__unquoted_pattern, + [85281] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5426), 1, - anon_sym_DOT, - ACTIONS(5428), 1, - aux_sym__immediate_decimal_token5, - STATE(2652), 1, + ACTIONS(5515), 1, + anon_sym_DOT_DOT2, + STATE(2716), 1, sym_comment, - ACTIONS(1744), 3, + ACTIONS(2112), 2, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(1746), 12, + ACTIONS(5517), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2114), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210571,16 +213393,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, - sym__unquoted_pattern, - [83390] = 4, + [85312] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1872), 1, - sym__unquoted_pattern, - STATE(2653), 1, + STATE(2717), 1, sym_comment, - ACTIONS(1870), 16, - ts_builtin_sym_end, + STATE(2828), 1, + aux_sym__repeat_newline, + ACTIONS(5519), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210592,23 +213412,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_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [83418] = 6, + [85339] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1713), 1, - sym__space, - ACTIONS(5430), 1, + ACTIONS(5521), 1, anon_sym_DOT_DOT2, - STATE(2654), 1, + STATE(2718), 1, sym_comment, - ACTIONS(5432), 2, + ACTIONS(2120), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5523), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1614), 13, + ACTIONS(2122), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210620,21 +213441,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, - [83450] = 6, + [85370] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2154), 1, + ACTIONS(5525), 1, + sym_long_flag_identifier, + ACTIONS(5527), 1, + anon_sym_EQ2, + STATE(2719), 1, + sym_comment, + STATE(3386), 1, + sym__flag_equals_value, + ACTIONS(4282), 2, + ts_builtin_sym_end, sym__space, - ACTIONS(5434), 1, - anon_sym_DOT_DOT2, - STATE(2655), 1, + ACTIONS(4280), 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, + [85403] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2720), 1, sym_comment, - ACTIONS(5436), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2156), 13, + STATE(2829), 1, + aux_sym__repeat_newline, + ACTIONS(5529), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210647,20 +213487,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, - [83482] = 6, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [85430] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2102), 1, - sym__space, - ACTIONS(5438), 1, - anon_sym_DOT_DOT2, - STATE(2656), 1, + ACTIONS(5533), 1, + anon_sym_and2, + ACTIONS(5535), 1, + anon_sym_xor2, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(2721), 1, sym_comment, - ACTIONS(5440), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2104), 13, + ACTIONS(5531), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210673,20 +213514,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [83514] = 6, + anon_sym_or2, + [85461] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1874), 1, + anon_sym_DASH2, + ACTIONS(5251), 1, + anon_sym_DOT2, + STATE(2586), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2722), 1, + sym_comment, + STATE(2851), 1, + sym_path, + STATE(3004), 1, + sym_cell_path, + ACTIONS(1871), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [85496] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1893), 1, + anon_sym_DASH2, + ACTIONS(5251), 1, + anon_sym_DOT2, + STATE(2586), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2723), 1, + sym_comment, + STATE(2851), 1, + sym_path, + STATE(3063), 1, + sym_cell_path, + ACTIONS(1891), 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, + [85531] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1909), 1, + anon_sym_DASH2, + ACTIONS(5251), 1, + anon_sym_DOT2, + STATE(2586), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2724), 1, + sym_comment, + STATE(2851), 1, + sym_path, + STATE(2981), 1, + sym_cell_path, + ACTIONS(1907), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [85566] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1913), 1, + anon_sym_DASH2, + ACTIONS(5251), 1, + anon_sym_DOT2, + STATE(2586), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2725), 1, + sym_comment, + STATE(2851), 1, + sym_path, + STATE(3068), 1, + sym_cell_path, + ACTIONS(1911), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [85601] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1885), 1, + anon_sym_DASH2, + ACTIONS(5251), 1, + anon_sym_DOT2, + STATE(2586), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2726), 1, + sym_comment, + STATE(2851), 1, + sym_path, + STATE(2914), 1, + sym_cell_path, + ACTIONS(1883), 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, + [85636] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1889), 1, + anon_sym_DASH2, + ACTIONS(5251), 1, + anon_sym_DOT2, + STATE(2586), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2727), 1, + sym_comment, + STATE(2851), 1, + sym_path, + STATE(2941), 1, + sym_cell_path, + ACTIONS(1887), 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, + [85671] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2110), 1, - sym__space, - ACTIONS(5442), 1, - anon_sym_DOT_DOT2, - STATE(2657), 1, + STATE(2728), 1, sym_comment, - ACTIONS(5444), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2112), 13, + ACTIONS(1730), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1732), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210700,19 +213699,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [83546] = 6, + sym__unquoted_pattern, + [85698] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(5537), 1, + anon_sym_and2, + ACTIONS(5539), 1, + anon_sym_xor2, + STATE(2729), 1, + sym_comment, + STATE(2839), 1, + aux_sym__repeat_newline, + ACTIONS(5529), 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, + [85731] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2118), 1, + ACTIONS(5432), 1, + anon_sym_EQ2, + ACTIONS(5541), 1, sym__space, - ACTIONS(5446), 1, - anon_sym_DOT_DOT2, - STATE(2658), 1, + STATE(2730), 1, sym_comment, - ACTIONS(5448), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2120), 13, + STATE(2929), 1, + aux_sym_attribute_repeat1, + ACTIONS(5428), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210726,23 +213751,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [83578] = 8, - ACTIONS(103), 1, + [85762] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(2516), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2659), 1, + ACTIONS(5545), 1, + anon_sym_EQ, + ACTIONS(5547), 1, + anon_sym_COLON, + STATE(2731), 1, sym_comment, - STATE(2689), 1, - sym_path, - STATE(3274), 1, - sym_cell_path, - ACTIONS(1862), 2, + STATE(3360), 1, + sym_param_type, + STATE(4821), 1, + aux_sym__repeat_newline, + ACTIONS(5543), 12, ts_builtin_sym_end, - sym__space, - ACTIONS(1864), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210754,49 +213777,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [83614] = 12, + [85795] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1480), 1, - anon_sym_COMMA, - ACTIONS(5298), 1, - anon_sym_EQ, - ACTIONS(5300), 1, + ACTIONS(5533), 1, + anon_sym_and2, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(2732), 1, + sym_comment, + ACTIONS(5549), 14, sym__newline, - ACTIONS(5302), 1, - anon_sym_COLON, - ACTIONS(5452), 1, - anon_sym_DASH2, - STATE(2660), 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_xor2, + anon_sym_or2, + [85824] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5551), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5553), 1, + aux_sym__immediate_decimal_token5, + STATE(2733), 1, sym_comment, - STATE(2860), 1, - aux_sym_parameter_repeat1, - STATE(3561), 1, - aux_sym_parameter_repeat2, - STATE(4242), 1, - aux_sym__repeat_newline, - STATE(3398), 2, - sym_param_type, - sym_param_value, - ACTIONS(5450), 7, + ACTIONS(1732), 3, sym_identifier, + anon_sym_DASH2, + sym__unquoted_pattern_in_record, + ACTIONS(1730), 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, - [83658] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1977), 1, anon_sym_LPAREN2, - ACTIONS(1983), 1, + [85855] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1637), 1, sym__unquoted_pattern, - STATE(2661), 1, + ACTIONS(1972), 1, + sym__space, + ACTIONS(1976), 1, + anon_sym_LPAREN2, + STATE(2734), 1, + sym_comment, + ACTIONS(1974), 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, + [85886] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5557), 1, + anon_sym_and2, + ACTIONS(5559), 1, + anon_sym_xor2, + ACTIONS(5561), 1, + anon_sym_or2, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(2735), 1, sym_comment, - ACTIONS(1973), 15, - ts_builtin_sym_end, + ACTIONS(5555), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210808,27 +213876,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, + [85919] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(5537), 1, anon_sym_and2, + ACTIONS(5539), 1, anon_sym_xor2, + ACTIONS(5565), 1, anon_sym_or2, - [83688] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(2516), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2662), 1, + STATE(2736), 1, sym_comment, - STATE(2689), 1, - sym_path, - STATE(3245), 1, - sym_cell_path, - ACTIONS(5416), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5414), 11, - sym__newline, + STATE(2741), 1, + aux_sym__repeat_newline, + ACTIONS(5563), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210839,16 +213903,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, - [83724] = 4, + anon_sym_RPAREN, + [85954] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(2663), 1, - sym_comment, - ACTIONS(1582), 3, + ACTIONS(1818), 1, + anon_sym_LPAREN2, + ACTIONS(2342), 1, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1580), 14, + STATE(2737), 1, + sym_comment, + STATE(5483), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2344), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210862,24 +213929,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, - [83752] = 8, - ACTIONS(103), 1, + [85985] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(2516), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2664), 1, + ACTIONS(5557), 1, + anon_sym_and2, + ACTIONS(5559), 1, + anon_sym_xor2, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(2738), 1, sym_comment, - STATE(2689), 1, - sym_path, - STATE(3259), 1, - sym_cell_path, - ACTIONS(1896), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1898), 11, + ACTIONS(5567), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210891,18 +213952,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, - [83788] = 5, + anon_sym_RPAREN, + anon_sym_or2, + [86016] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2612), 1, - anon_sym_LPAREN2, - ACTIONS(2614), 1, - sym__unquoted_pattern, - STATE(2665), 1, - sym_comment, - ACTIONS(1713), 15, - ts_builtin_sym_end, + ACTIONS(5537), 1, + anon_sym_and2, + ACTIONS(5569), 1, sym__newline, + STATE(2739), 1, + sym_comment, + STATE(2807), 1, + aux_sym__repeat_newline, + ACTIONS(5572), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210913,20 +213976,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_RPAREN, anon_sym_xor2, anon_sym_or2, - [83818] = 4, + [86047] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(2666), 1, - sym_comment, - ACTIONS(1498), 4, - ts_builtin_sym_end, + ACTIONS(1818), 1, + anon_sym_LPAREN2, + ACTIONS(2136), 1, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1496), 13, + STATE(2740), 1, + sym_comment, + STATE(5483), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2138), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210938,18 +214002,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [83846] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [86078] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2667), 1, + ACTIONS(5533), 1, + anon_sym_and2, + ACTIONS(5535), 1, + anon_sym_xor2, + ACTIONS(5576), 1, + anon_sym_or2, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(2741), 1, sym_comment, - ACTIONS(1858), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1860), 14, + ACTIONS(5574), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210962,21 +214030,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_DOT_DOT2, - [83874] = 5, - ACTIONS(3), 1, + [86111] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5454), 1, - anon_sym_DOT2, - STATE(2936), 1, - sym_path, - STATE(2668), 2, + ACTIONS(1818), 1, + anon_sym_LPAREN2, + ACTIONS(5580), 1, + sym__space, + STATE(2742), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1510), 14, - ts_builtin_sym_end, - anon_sym_EQ, + STATE(5057), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5578), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210988,76 +214053,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_COLON, - [83904] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1975), 1, - anon_sym_DASH2, - ACTIONS(1977), 1, - anon_sym_LPAREN2, - ACTIONS(1983), 1, - sym__unquoted_pattern_in_record, - ACTIONS(5457), 1, - anon_sym_DOT_DOT2, - STATE(2669), 1, - sym_comment, - ACTIONS(5459), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1973), 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, - [83940] = 4, + anon_sym_RBRACE, + [86142] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2670), 1, - sym_comment, - ACTIONS(1772), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1770), 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, - [83968] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(2516), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2671), 1, + STATE(2743), 1, sym_comment, - STATE(2689), 1, - sym_path, - STATE(3221), 1, - sym_cell_path, - ACTIONS(1900), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1902), 11, + STATE(2884), 1, + aux_sym__repeat_newline, + ACTIONS(5582), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211069,17 +214074,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, - [84004] = 5, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [86169] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2656), 1, - anon_sym_LPAREN2, - ACTIONS(2658), 1, - sym__unquoted_pattern, - STATE(2672), 1, + STATE(2744), 1, sym_comment, - ACTIONS(1022), 15, - ts_builtin_sym_end, + STATE(2865), 1, + aux_sym__repeat_newline, + ACTIONS(5584), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211091,26 +214097,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, - [84034] = 8, - ACTIONS(103), 1, + [86196] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(2516), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2673), 1, + ACTIONS(5557), 1, + anon_sym_and2, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(2745), 1, sym_comment, - STATE(2689), 1, - sym_path, - STATE(3294), 1, - sym_cell_path, - ACTIONS(5342), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5340), 11, + ACTIONS(5567), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211122,16 +214122,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, - [84070] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [86225] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2674), 1, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(2746), 1, sym_comment, - ACTIONS(1645), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1647), 14, + ACTIONS(5586), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211144,24 +214145,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_DOT_DOT2, - [84098] = 7, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [86252] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5336), 1, - anon_sym_DOT2, - STATE(2675), 1, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(2747), 1, sym_comment, - STATE(2710), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2936), 1, - sym_path, - STATE(3283), 1, - sym_cell_path, - ACTIONS(1912), 13, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(5588), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211173,23 +214167,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, - [84132] = 8, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [86279] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(2516), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2676), 1, + ACTIONS(5557), 1, + anon_sym_and2, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(2748), 1, sym_comment, - STATE(2689), 1, - sym_path, - STATE(3249), 1, - sym_cell_path, - ACTIONS(5420), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5418), 11, + ACTIONS(5586), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211201,17 +214192,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, - [84168] = 5, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [86308] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2656), 1, - anon_sym_LPAREN2, - ACTIONS(2658), 1, - sym__unquoted_pattern, - STATE(2677), 1, + ACTIONS(5533), 1, + anon_sym_and2, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(2749), 1, sym_comment, - ACTIONS(1030), 15, - ts_builtin_sym_end, + ACTIONS(5588), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211223,51 +214216,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, + anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [84198] = 4, + [86337] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2678), 1, + ACTIONS(5557), 1, + anon_sym_and2, + ACTIONS(5559), 1, + anon_sym_xor2, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(2750), 1, sym_comment, - ACTIONS(1894), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1892), 15, - anon_sym_EQ, - sym_identifier, + ACTIONS(5586), 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, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [84226] = 9, - ACTIONS(103), 1, + anon_sym_or2, + [86368] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5461), 1, - sym__newline, - ACTIONS(5463), 1, - sym__space, - ACTIONS(5467), 1, - anon_sym_COLON2, - ACTIONS(5469), 1, - anon_sym_EQ2, - STATE(2679), 1, + ACTIONS(5533), 1, + anon_sym_and2, + ACTIONS(5535), 1, + anon_sym_xor2, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(2751), 1, sym_comment, - STATE(3020), 1, - aux_sym_attribute_repeat1, - STATE(4344), 1, - aux_sym_pipe_element_parenthesized_repeat1, - ACTIONS(5465), 11, + ACTIONS(5588), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211278,20 +214267,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - [84264] = 6, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_or2, + [86399] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5430), 1, - anon_sym_DOT_DOT2, - ACTIONS(5473), 1, - sym__space, - STATE(2680), 1, + STATE(2752), 1, sym_comment, - ACTIONS(5432), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5471), 13, + STATE(2872), 1, + aux_sym__repeat_newline, + ACTIONS(5590), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211304,24 +214289,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, - [84296] = 8, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [86426] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(2516), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2681), 1, + STATE(2753), 1, sym_comment, - STATE(2689), 1, - sym_path, - STATE(3216), 1, - sym_cell_path, - ACTIONS(1888), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1890), 11, + STATE(2873), 1, + aux_sym__repeat_newline, + ACTIONS(5592), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211333,20 +214311,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, - [84332] = 7, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [86453] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5010), 1, - anon_sym_DOT2, - STATE(458), 1, - sym_path, - STATE(932), 1, - sym_cell_path, - STATE(2323), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2682), 1, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(2754), 1, sym_comment, - ACTIONS(5354), 13, + ACTIONS(5594), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211359,23 +214335,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, - [84366] = 7, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [86480] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5336), 1, - anon_sym_DOT2, - STATE(2683), 1, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(2755), 1, sym_comment, - STATE(2710), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2936), 1, - sym_path, - STATE(3240), 1, - sym_cell_path, - ACTIONS(1900), 13, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(5596), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211387,82 +214357,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [84400] = 12, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [86507] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1480), 1, - anon_sym_COMMA, - ACTIONS(5298), 1, - anon_sym_EQ, - ACTIONS(5300), 1, + ACTIONS(5598), 1, sym__newline, - ACTIONS(5302), 1, - anon_sym_COLON, - ACTIONS(5477), 1, - anon_sym_DASH2, - STATE(2684), 1, - sym_comment, - STATE(2685), 1, - aux_sym_parameter_repeat1, - STATE(3522), 1, - aux_sym_parameter_repeat2, - STATE(4242), 1, + ACTIONS(5601), 1, + anon_sym_and2, + STATE(2745), 1, aux_sym__repeat_newline, - STATE(3398), 2, - sym_param_type, - sym_param_value, - ACTIONS(5475), 7, - sym_identifier, + STATE(2756), 1, + sym_comment, + ACTIONS(5582), 13, + 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, - [84444] = 12, + anon_sym_xor2, + anon_sym_or2, + [86538] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1480), 1, - anon_sym_COMMA, - ACTIONS(5298), 1, - anon_sym_EQ, - ACTIONS(5300), 1, + ACTIONS(5601), 1, + anon_sym_and2, + ACTIONS(5603), 1, sym__newline, - ACTIONS(5302), 1, - anon_sym_COLON, - ACTIONS(5481), 1, - anon_sym_DASH2, - STATE(2685), 1, + STATE(2757), 1, sym_comment, - STATE(2860), 1, - aux_sym_parameter_repeat1, - STATE(3526), 1, - aux_sym_parameter_repeat2, - STATE(4242), 1, + STATE(2875), 1, aux_sym__repeat_newline, - STATE(3398), 2, - sym_param_type, - sym_param_value, - ACTIONS(5479), 7, - sym_identifier, + ACTIONS(5590), 13, + 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, - [84488] = 5, + anon_sym_xor2, + anon_sym_or2, + [86569] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1724), 1, - anon_sym_LPAREN2, - STATE(2686), 1, - sym_comment, - STATE(4884), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5332), 15, - ts_builtin_sym_end, + ACTIONS(5537), 1, + anon_sym_and2, + ACTIONS(5606), 1, sym__newline, + STATE(2758), 1, + sym_comment, + STATE(2885), 1, + aux_sym__repeat_newline, + ACTIONS(5592), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211473,21 +214433,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_RPAREN, anon_sym_xor2, anon_sym_or2, - [84518] = 5, + [86600] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1679), 1, - sym__unquoted_pattern, - ACTIONS(2642), 1, - anon_sym_LPAREN2, - STATE(2687), 1, - sym_comment, - ACTIONS(2541), 15, - ts_builtin_sym_end, + ACTIONS(5537), 1, + anon_sym_and2, + ACTIONS(5609), 1, sym__newline, + STATE(2732), 1, + aux_sym__repeat_newline, + STATE(2759), 1, + sym_comment, + ACTIONS(5584), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211498,26 +214458,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_RPAREN, anon_sym_xor2, anon_sym_or2, - [84548] = 8, + [86631] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(2516), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2688), 1, - sym_comment, - STATE(2689), 1, - sym_path, - STATE(3214), 1, - sym_cell_path, - ACTIONS(1882), 2, - ts_builtin_sym_end, + ACTIONS(1986), 1, + anon_sym_LPAREN2, + ACTIONS(1992), 1, + sym__unquoted_pattern, + ACTIONS(2652), 1, sym__space, - ACTIONS(1885), 11, + STATE(2760), 1, + sym_comment, + ACTIONS(2654), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211529,17 +214484,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, - [84584] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [86662] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2689), 1, + ACTIONS(5557), 1, + anon_sym_and2, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(2761), 1, sym_comment, - ACTIONS(1549), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1547), 13, + ACTIONS(5594), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211551,49 +214507,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [84612] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5483), 1, - anon_sym_BANG, - STATE(2690), 1, - sym_comment, - ACTIONS(1448), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1450), 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, - [84642] = 7, + anon_sym_xor2, + anon_sym_or2, + [86691] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5336), 1, - anon_sym_DOT2, - STATE(2691), 1, + ACTIONS(5533), 1, + anon_sym_and2, + ACTIONS(5535), 1, + anon_sym_xor2, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(2762), 1, sym_comment, - STATE(2710), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2936), 1, - sym_path, - STATE(3246), 1, - sym_cell_path, - ACTIONS(5354), 13, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(5612), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211605,42 +214533,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, - [84676] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5483), 1, - anon_sym_QMARK2, - STATE(2692), 1, - sym_comment, - ACTIONS(1448), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1450), 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, - [84706] = 5, - ACTIONS(3), 1, + anon_sym_or2, + [86722] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2644), 1, + ACTIONS(1982), 1, + sym__space, + ACTIONS(1986), 1, anon_sym_LPAREN2, - ACTIONS(2646), 1, + ACTIONS(1992), 1, sym__unquoted_pattern, - STATE(2693), 1, + STATE(2763), 1, sym_comment, - ACTIONS(2589), 15, - ts_builtin_sym_end, + ACTIONS(1984), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211652,26 +214558,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, - [84736] = 7, + anon_sym_RPAREN, + anon_sym_RBRACE, + [86753] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5336), 1, - anon_sym_DOT2, - STATE(2694), 1, - sym_comment, - STATE(2710), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2936), 1, - sym_path, - STATE(3269), 1, - sym_cell_path, - ACTIONS(1862), 13, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(2922), 1, sym__newline, + ACTIONS(5601), 1, + anon_sym_and2, + ACTIONS(5614), 1, + anon_sym_xor2, + STATE(2738), 1, + aux_sym__repeat_newline, + STATE(2764), 1, + sym_comment, + ACTIONS(5582), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211682,16 +214584,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, - [84770] = 4, + anon_sym_RPAREN, + anon_sym_or2, + [86786] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2527), 1, - sym__unquoted_pattern, - STATE(2695), 1, - sym_comment, - ACTIONS(2525), 16, - ts_builtin_sym_end, + ACTIONS(2922), 1, sym__newline, + ACTIONS(5537), 1, + anon_sym_and2, + ACTIONS(5539), 1, + anon_sym_xor2, + STATE(2765), 1, + sym_comment, + STATE(2766), 1, + aux_sym__repeat_newline, + ACTIONS(5584), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211702,51 +214610,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, + anon_sym_RPAREN, anon_sym_or2, - anon_sym_LPAREN2, - [84798] = 4, + [86819] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2696), 1, + ACTIONS(5533), 1, + anon_sym_and2, + ACTIONS(5535), 1, + anon_sym_xor2, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(2766), 1, sym_comment, - ACTIONS(1880), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1878), 15, - anon_sym_EQ, - sym_identifier, + ACTIONS(5549), 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, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [84826] = 8, + anon_sym_or2, + [86850] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(2516), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2689), 1, - sym_path, - STATE(2697), 1, - sym_comment, - STATE(3293), 1, - sym_cell_path, - ACTIONS(5375), 2, - ts_builtin_sym_end, + ACTIONS(1695), 1, + sym__unquoted_pattern, + ACTIONS(2572), 1, sym__space, - ACTIONS(5373), 11, + ACTIONS(2576), 1, + anon_sym_LPAREN2, + STATE(2767), 1, + sym_comment, + ACTIONS(2574), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211758,24 +214660,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, - [84862] = 8, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [86881] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(2516), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2689), 1, - sym_path, - STATE(2698), 1, - sym_comment, - STATE(3212), 1, - sym_cell_path, - ACTIONS(5383), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5381), 11, + ACTIONS(5601), 1, + anon_sym_and2, + ACTIONS(5616), 1, sym__newline, + STATE(2768), 1, + sym_comment, + STATE(2821), 1, + aux_sym__repeat_newline, + ACTIONS(5619), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211786,17 +214684,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, - [84898] = 5, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [86912] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5485), 1, - aux_sym__immediate_decimal_token5, - STATE(2699), 1, - sym_comment, - ACTIONS(1852), 2, + ACTIONS(2608), 1, sym__space, + ACTIONS(2612), 1, anon_sym_LPAREN2, - ACTIONS(1854), 14, + ACTIONS(2614), 1, + sym__unquoted_pattern, + STATE(2769), 1, + sym_comment, + ACTIONS(2610), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211810,18 +214712,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - sym__unquoted_pattern, - [84928] = 5, + [86943] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1977), 1, - anon_sym_LPAREN2, - ACTIONS(1983), 1, - sym__unquoted_pattern, - STATE(2700), 1, + STATE(2754), 1, + aux_sym__repeat_newline, + STATE(2770), 1, sym_comment, - ACTIONS(2597), 15, - ts_builtin_sym_end, + ACTIONS(5621), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211833,21 +214731,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_and2, anon_sym_xor2, anon_sym_or2, - [84958] = 5, + [86970] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2652), 1, - anon_sym_LPAREN2, - ACTIONS(2654), 1, - sym__unquoted_pattern, - STATE(2701), 1, - sym_comment, - ACTIONS(2648), 15, - ts_builtin_sym_end, + ACTIONS(2922), 1, sym__newline, + ACTIONS(5601), 1, + anon_sym_and2, + ACTIONS(5614), 1, + anon_sym_xor2, + STATE(2771), 1, + sym_comment, + STATE(2823), 1, + aux_sym__repeat_newline, + ACTIONS(5619), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211858,51 +214759,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [84988] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1635), 1, - sym__unquoted_pattern_in_record, - ACTIONS(1958), 1, - anon_sym_DASH2, - ACTIONS(1960), 1, - anon_sym_LPAREN2, - ACTIONS(5487), 1, - anon_sym_DOT_DOT2, - STATE(2702), 1, - sym_comment, - ACTIONS(5489), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1956), 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, - [85024] = 7, + anon_sym_or2, + [87003] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4355), 1, + ACTIONS(1790), 1, sym__space, - ACTIONS(5491), 1, - sym_long_flag_identifier, - ACTIONS(5493), 1, - anon_sym_EQ2, - STATE(2703), 1, + ACTIONS(5142), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(5623), 1, + anon_sym_DOT, + STATE(2772), 1, sym_comment, - STATE(3040), 1, - sym__flag_equals_value, - ACTIONS(4353), 13, + ACTIONS(1792), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211916,20 +214786,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [85058] = 6, + [87034] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5495), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5497), 1, - aux_sym__immediate_decimal_token5, - STATE(2704), 1, + STATE(2773), 1, sym_comment, - ACTIONS(1770), 3, - ts_builtin_sym_end, + ACTIONS(2360), 2, sym__space, anon_sym_LPAREN2, - ACTIONS(1772), 12, + ACTIONS(2362), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211941,18 +214806,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, sym__unquoted_pattern, - [85090] = 5, - ACTIONS(3), 1, + [87061] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1724), 1, + ACTIONS(2616), 1, + sym__space, + ACTIONS(2620), 1, anon_sym_LPAREN2, - STATE(2705), 1, + ACTIONS(2622), 1, + sym__unquoted_pattern, + STATE(2774), 1, sym_comment, - STATE(4884), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5332), 15, - ts_builtin_sym_end, + ACTIONS(2618), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211964,17 +214832,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [85120] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [87092] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1734), 1, - sym__unquoted_pattern, - STATE(2706), 1, + ACTIONS(5557), 1, + anon_sym_and2, + ACTIONS(5559), 1, + anon_sym_xor2, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(2775), 1, sym_comment, - ACTIONS(886), 16, + ACTIONS(5625), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211987,52 +214858,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, - [85148] = 12, + [87123] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1480), 1, - anon_sym_COMMA, - ACTIONS(5298), 1, + ACTIONS(5627), 1, anon_sym_EQ, - ACTIONS(5300), 1, - sym__newline, - ACTIONS(5302), 1, + ACTIONS(5629), 1, anon_sym_COLON, - ACTIONS(5501), 1, - anon_sym_DASH2, - STATE(2660), 1, - aux_sym_parameter_repeat1, - STATE(2707), 1, + STATE(2776), 1, sym_comment, - STATE(3560), 1, - aux_sym_parameter_repeat2, - STATE(4242), 1, - aux_sym__repeat_newline, - STATE(3398), 2, + STATE(3350), 1, sym_param_type, - sym_param_value, - ACTIONS(5499), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [85192] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2708), 1, - sym_comment, - ACTIONS(1892), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1894), 14, + STATE(4909), 1, + aux_sym__repeat_newline, + ACTIONS(5543), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212045,54 +214885,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [85220] = 12, + [87156] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1480), 1, - anon_sym_COMMA, - ACTIONS(5298), 1, - anon_sym_EQ, - ACTIONS(5300), 1, - sym__newline, - ACTIONS(5302), 1, - anon_sym_COLON, - ACTIONS(5505), 1, - anon_sym_DASH2, - STATE(2709), 1, + STATE(2777), 1, sym_comment, - STATE(2860), 1, - aux_sym_parameter_repeat1, - STATE(3539), 1, - aux_sym_parameter_repeat2, - STATE(4242), 1, + STATE(2889), 1, aux_sym__repeat_newline, - STATE(3398), 2, - sym_param_type, - sym_param_value, - ACTIONS(5503), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [85264] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5336), 1, - anon_sym_DOT2, - STATE(2668), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2710), 1, - sym_comment, - STATE(2936), 1, - sym_path, - ACTIONS(1506), 14, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(5631), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212104,42 +214904,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_COLON, - [85296] = 4, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [87183] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2711), 1, + STATE(2778), 1, sym_comment, - ACTIONS(1854), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1852), 14, + ACTIONS(5633), 16, anon_sym_EQ, - sym_identifier, + 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_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, - [85324] = 5, + anon_sym_RBRACE, + [87208] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1635), 1, - sym__unquoted_pattern, - ACTIONS(1960), 1, - anon_sym_LPAREN2, - STATE(2712), 1, + ACTIONS(5557), 1, + anon_sym_and2, + ACTIONS(5559), 1, + anon_sym_xor2, + ACTIONS(5561), 1, + anon_sym_or2, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(2779), 1, sym_comment, - ACTIONS(1956), 15, - ts_builtin_sym_end, + ACTIONS(5635), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212151,23 +214955,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, - [85354] = 7, + anon_sym_RPAREN, + [87241] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5493), 1, - anon_sym_EQ2, - ACTIONS(5509), 1, - sym__space, - ACTIONS(5511), 1, - sym_short_flag_identifier, - STATE(2713), 1, + ACTIONS(5637), 1, + anon_sym_DOT_DOT2, + STATE(2780), 1, sym_comment, - STATE(3032), 1, - sym__flag_equals_value, - ACTIONS(5507), 13, + ACTIONS(1699), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5639), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1615), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212179,19 +214981,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, - [85388] = 5, + [87272] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5346), 1, - aux_sym__immediate_decimal_token5, - STATE(2714), 1, + STATE(2781), 1, sym_comment, - ACTIONS(1744), 2, + ACTIONS(1647), 4, + ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(1746), 14, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1649), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212203,17 +215003,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, - sym__unquoted_pattern, - [85418] = 4, + anon_sym_DOT_DOT2, + [87299] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(2715), 1, + STATE(2782), 1, sym_comment, - ACTIONS(5513), 15, + STATE(2891), 1, + aux_sym__repeat_newline, + ACTIONS(5641), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212229,14 +215027,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [85445] = 4, + [87326] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2716), 1, + ACTIONS(5643), 1, + anon_sym_DOT, + ACTIONS(5645), 1, + aux_sym__immediate_decimal_token5, + STATE(2783), 1, sym_comment, - STATE(2732), 1, + ACTIONS(1792), 3, + sym_identifier, + anon_sym_DASH2, + sym__unquoted_pattern_in_record, + ACTIONS(1790), 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, + [87357] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2755), 1, aux_sym__repeat_newline, - ACTIONS(5515), 15, + STATE(2784), 1, + sym_comment, + ACTIONS(5572), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212252,13 +215075,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [85472] = 3, + [87384] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(2717), 1, - sym_comment, - ACTIONS(5517), 16, + ACTIONS(2922), 1, sym__newline, + ACTIONS(5601), 1, + anon_sym_and2, + ACTIONS(5614), 1, + anon_sym_xor2, + ACTIONS(5649), 1, + anon_sym_or2, + STATE(2779), 1, + aux_sym__repeat_newline, + STATE(2785), 1, + sym_comment, + ACTIONS(5647), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212270,21 +215102,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, + [87419] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(5537), 1, anon_sym_and2, + ACTIONS(5539), 1, anon_sym_xor2, + ACTIONS(5565), 1, anon_sym_or2, - [85497] = 4, - ACTIONS(103), 1, + STATE(2786), 1, + sym_comment, + STATE(2856), 1, + aux_sym__repeat_newline, + ACTIONS(5651), 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, + [87454] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2718), 1, + ACTIONS(5629), 1, + anon_sym_COLON, + ACTIONS(5653), 1, + anon_sym_EQ, + STATE(2787), 1, sym_comment, - ACTIONS(1892), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1894), 12, + STATE(3361), 1, + sym_param_type, + STATE(4909), 1, + aux_sym__repeat_newline, + ACTIONS(5543), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212296,17 +215154,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - [85524] = 4, + anon_sym_RBRACE, + [87487] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5519), 1, - anon_sym_BANG, - STATE(2719), 1, + STATE(2788), 1, sym_comment, - ACTIONS(1450), 15, - ts_builtin_sym_end, + ACTIONS(5655), 16, anon_sym_EQ, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212319,15 +215175,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_COLON, - anon_sym_DOT2, - [85551] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [87512] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2720), 1, + ACTIONS(1226), 1, + sym__space, + ACTIONS(2632), 1, + anon_sym_LPAREN2, + ACTIONS(2634), 1, + sym__unquoted_pattern, + STATE(2789), 1, + sym_comment, + ACTIONS(1012), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [87543] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1234), 1, + sym__space, + ACTIONS(2632), 1, + anon_sym_LPAREN2, + ACTIONS(2634), 1, + sym__unquoted_pattern, + STATE(2790), 1, sym_comment, - STATE(2733), 1, - aux_sym__repeat_newline, - ACTIONS(5521), 15, + ACTIONS(1020), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212340,21 +215226,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, - [85578] = 6, + anon_sym_RBRACE, + [87574] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5523), 1, - sym__newline, - ACTIONS(5526), 1, + ACTIONS(5601), 1, anon_sym_and2, - STATE(2721), 1, + ACTIONS(5657), 1, + sym__newline, + STATE(2791), 1, sym_comment, - STATE(2736), 1, + STATE(2833), 1, aux_sym__repeat_newline, - ACTIONS(5515), 13, + ACTIONS(5519), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212368,17 +215252,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [85609] = 4, + [87605] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2722), 1, + STATE(2792), 1, sym_comment, - ACTIONS(1878), 4, + ACTIONS(1580), 4, ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1880), 12, + ACTIONS(1578), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212391,40 +215275,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, - [85636] = 6, + [87632] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5528), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5530), 1, - aux_sym__immediate_decimal_token5, - STATE(2723), 1, - sym_comment, - ACTIONS(1772), 3, - sym_identifier, - anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(1770), 11, - anon_sym_EQ, + ACTIONS(5601), 1, + anon_sym_and2, + ACTIONS(5660), 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, - [85667] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(2724), 1, + STATE(2793), 1, sym_comment, - ACTIONS(5532), 15, - sym__newline, + STATE(2847), 1, + aux_sym__repeat_newline, + ACTIONS(5631), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212436,18 +215298,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, - [85694] = 4, + [87663] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(2725), 1, - sym_comment, - ACTIONS(5534), 15, + ACTIONS(5537), 1, + anon_sym_and2, + ACTIONS(5663), 1, sym__newline, + STATE(2794), 1, + sym_comment, + STATE(2879), 1, + aux_sym__repeat_newline, + ACTIONS(5641), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212459,19 +215323,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, - [85721] = 5, + [87694] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5536), 1, - anon_sym_and2, - STATE(527), 1, + STATE(485), 1, aux_sym__repeat_newline, - STATE(2726), 1, + STATE(2795), 1, sym_comment, - ACTIONS(5532), 14, + ACTIONS(5666), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212484,18 +215345,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, - [85750] = 5, + [87721] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5538), 1, - anon_sym_and2, - STATE(527), 1, + STATE(485), 1, aux_sym__repeat_newline, - STATE(2727), 1, + STATE(2796), 1, sym_comment, - ACTIONS(5534), 14, + ACTIONS(5668), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212508,45 +215368,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [85779] = 6, + [87748] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5536), 1, - anon_sym_and2, - ACTIONS(5540), 1, - anon_sym_xor2, - STATE(527), 1, + ACTIONS(5672), 1, + anon_sym_EQ, + ACTIONS(5675), 1, + sym__newline, + ACTIONS(5678), 1, + anon_sym_COLON, + ACTIONS(5681), 1, + anon_sym_DASH2, + STATE(4491), 1, aux_sym__repeat_newline, - STATE(2728), 1, + STATE(2797), 2, sym_comment, - ACTIONS(5532), 13, - sym__newline, - anon_sym_SEMI, + aux_sym_parameter_repeat1, + STATE(3534), 2, + sym_param_type, + sym_param_value, + ACTIONS(5670), 8, + sym_identifier, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_or2, - [85810] = 6, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [87785] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5538), 1, + ACTIONS(5557), 1, anon_sym_and2, - ACTIONS(5542), 1, - anon_sym_xor2, - STATE(527), 1, + STATE(485), 1, aux_sym__repeat_newline, - STATE(2729), 1, + STATE(2798), 1, sym_comment, - ACTIONS(5534), 13, + ACTIONS(5666), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212559,16 +215421,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, - [85841] = 4, + [87814] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2730), 1, - sym_comment, - STATE(2778), 1, - aux_sym__repeat_newline, - ACTIONS(5544), 15, + ACTIONS(2922), 1, sym__newline, + ACTIONS(5601), 1, + anon_sym_and2, + ACTIONS(5614), 1, + anon_sym_xor2, + STATE(2775), 1, + aux_sym__repeat_newline, + STATE(2799), 1, + sym_comment, + ACTIONS(5631), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212580,18 +215448,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, - [85868] = 4, + [87847] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2731), 1, - sym_comment, - STATE(2779), 1, - aux_sym__repeat_newline, - ACTIONS(5546), 15, + ACTIONS(5601), 1, + anon_sym_and2, + ACTIONS(5683), 1, sym__newline, + STATE(2761), 1, + aux_sym__repeat_newline, + STATE(2800), 1, + sym_comment, + ACTIONS(5621), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212603,17 +215472,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, - [85895] = 4, + [87878] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(2732), 1, + ACTIONS(5686), 1, + anon_sym_QMARK2, + STATE(2801), 1, sym_comment, - ACTIONS(5548), 15, + ACTIONS(1462), 15, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212625,18 +215495,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, - [85922] = 4, + anon_sym_COLON, + anon_sym_DOT2, + [87905] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(527), 1, + ACTIONS(5533), 1, + anon_sym_and2, + STATE(485), 1, aux_sym__repeat_newline, - STATE(2733), 1, + STATE(2802), 1, sym_comment, - ACTIONS(5550), 15, + ACTIONS(5668), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212649,21 +215519,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, - [85949] = 6, + [87934] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5526), 1, + ACTIONS(5537), 1, anon_sym_and2, - ACTIONS(5552), 1, + ACTIONS(5688), 1, sym__newline, - STATE(2734), 1, + STATE(2803), 1, sym_comment, - STATE(2780), 1, + STATE(2834), 1, aux_sym__repeat_newline, - ACTIONS(5544), 13, + ACTIONS(5529), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212677,18 +215546,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [85980] = 6, + [87965] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5555), 1, + ACTIONS(2922), 1, sym__newline, - ACTIONS(5558), 1, + ACTIONS(5537), 1, anon_sym_and2, - STATE(2735), 1, - sym_comment, - STATE(2781), 1, + ACTIONS(5539), 1, + anon_sym_xor2, + STATE(2721), 1, aux_sym__repeat_newline, - ACTIONS(5546), 13, + STATE(2804), 1, + sym_comment, + ACTIONS(5641), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212700,18 +215571,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, - [86011] = 5, - ACTIONS(3), 1, + [87998] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5536), 1, - anon_sym_and2, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(2736), 1, + ACTIONS(5691), 1, + anon_sym_DOT_DOT2, + STATE(2805), 1, sym_comment, - ACTIONS(5548), 14, + ACTIONS(2170), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5693), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2172), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212723,19 +215597,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_xor2, - anon_sym_or2, - [86040] = 5, + [88029] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5538), 1, - anon_sym_and2, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(2737), 1, + ACTIONS(5695), 1, + anon_sym_COLON, + STATE(2806), 1, sym_comment, - ACTIONS(5550), 14, + STATE(3298), 1, + sym_param_type, + STATE(4898), 1, + aux_sym__repeat_newline, + ACTIONS(5543), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212748,22 +215621,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, - [86069] = 7, + anon_sym_RBRACE, + [88060] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2907), 1, - sym__newline, - ACTIONS(5526), 1, + ACTIONS(5533), 1, anon_sym_and2, - ACTIONS(5560), 1, - anon_sym_xor2, - STATE(2738), 1, - sym_comment, - STATE(2782), 1, + STATE(485), 1, aux_sym__repeat_newline, - ACTIONS(5544), 12, + STATE(2807), 1, + sym_comment, + ACTIONS(5596), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212775,21 +215644,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, - [86102] = 7, + [88089] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2907), 1, + ACTIONS(2922), 1, sym__newline, - ACTIONS(5558), 1, + ACTIONS(5601), 1, anon_sym_and2, - ACTIONS(5562), 1, + ACTIONS(5614), 1, anon_sym_xor2, - STATE(2739), 1, + STATE(2808), 1, sym_comment, - STATE(2785), 1, + STATE(2886), 1, aux_sym__repeat_newline, - ACTIONS(5546), 12, + ACTIONS(5590), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212802,19 +215672,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [86135] = 6, + [88122] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5536), 1, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(5601), 1, anon_sym_and2, - ACTIONS(5540), 1, + ACTIONS(5614), 1, anon_sym_xor2, - STATE(527), 1, + ACTIONS(5649), 1, + anon_sym_or2, + STATE(2735), 1, aux_sym__repeat_newline, - STATE(2740), 1, + STATE(2809), 1, sym_comment, - ACTIONS(5548), 13, - sym__newline, + ACTIONS(5697), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212826,64 +215699,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_or2, - [86166] = 6, + [88157] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5538), 1, - anon_sym_and2, - ACTIONS(5542), 1, - anon_sym_xor2, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(2741), 1, + STATE(2810), 1, sym_comment, - ACTIONS(5550), 13, + ACTIONS(1551), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1553), 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_or2, - [86197] = 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, + [88184] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(2742), 1, - sym_comment, - ACTIONS(5564), 15, + ACTIONS(2922), 1, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + ACTIONS(5601), 1, anon_sym_and2, + ACTIONS(5614), 1, anon_sym_xor2, - anon_sym_or2, - [86224] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(527), 1, + STATE(2750), 1, aux_sym__repeat_newline, - STATE(2743), 1, + STATE(2811), 1, sym_comment, - ACTIONS(5566), 15, - sym__newline, + ACTIONS(5699), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212895,20 +215747,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, - [86251] = 5, + [88217] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5536), 1, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(5537), 1, anon_sym_and2, - STATE(527), 1, + ACTIONS(5539), 1, + anon_sym_xor2, + STATE(2762), 1, aux_sym__repeat_newline, - STATE(2744), 1, + STATE(2812), 1, sym_comment, - ACTIONS(5564), 14, - sym__newline, + ACTIONS(5592), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212920,18 +215773,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, - [86280] = 5, + [88250] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5538), 1, + ACTIONS(5557), 1, anon_sym_and2, - STATE(527), 1, + ACTIONS(5559), 1, + anon_sym_xor2, + STATE(485), 1, aux_sym__repeat_newline, - STATE(2745), 1, + STATE(2813), 1, sym_comment, - ACTIONS(5566), 14, + ACTIONS(5594), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212944,20 +215798,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, - [86309] = 6, + [88281] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5536), 1, + ACTIONS(5533), 1, anon_sym_and2, - ACTIONS(5540), 1, + ACTIONS(5535), 1, anon_sym_xor2, - STATE(527), 1, + STATE(485), 1, aux_sym__repeat_newline, - STATE(2746), 1, + STATE(2814), 1, sym_comment, - ACTIONS(5564), 13, + ACTIONS(5596), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212971,19 +215824,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [86340] = 6, + [88312] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5538), 1, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(5537), 1, anon_sym_and2, - ACTIONS(5542), 1, + ACTIONS(5539), 1, anon_sym_xor2, - STATE(527), 1, + STATE(2814), 1, aux_sym__repeat_newline, - STATE(2747), 1, + STATE(2815), 1, sym_comment, - ACTIONS(5566), 13, - sym__newline, + ACTIONS(5572), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212996,14 +215850,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [86371] = 4, + [88345] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2748), 1, + STATE(2816), 1, sym_comment, - STATE(2786), 1, - aux_sym__repeat_newline, - ACTIONS(5568), 15, + ACTIONS(5701), 16, + anon_sym_else, + anon_sym_catch, + anon_sym_finally, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213016,17 +215871,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, - [86398] = 4, + anon_sym_RBRACE, + [88370] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2749), 1, + STATE(2817), 1, sym_comment, - STATE(2787), 1, - aux_sym__repeat_newline, - ACTIONS(5570), 15, + ACTIONS(5703), 16, + anon_sym_else, + anon_sym_catch, + anon_sym_finally, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213039,17 +215893,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, - [86425] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [88395] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(2750), 1, + STATE(2818), 1, sym_comment, - ACTIONS(5572), 15, + ACTIONS(1846), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1848), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213062,21 +215915,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, - [86452] = 6, + anon_sym_RBRACE, + sym__unquoted_pattern, + [88422] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5558), 1, + ACTIONS(5533), 1, anon_sym_and2, - ACTIONS(5574), 1, - sym__newline, - STATE(2737), 1, + ACTIONS(5535), 1, + anon_sym_xor2, + STATE(485), 1, aux_sym__repeat_newline, - STATE(2751), 1, + STATE(2819), 1, sym_comment, - ACTIONS(5521), 13, + ACTIONS(5668), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -213088,20 +215941,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, - [86483] = 6, + [88453] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5526), 1, - anon_sym_and2, - ACTIONS(5577), 1, - sym__newline, - STATE(2752), 1, - sym_comment, - STATE(2788), 1, + STATE(485), 1, aux_sym__repeat_newline, - ACTIONS(5568), 13, + STATE(2820), 1, + sym_comment, + ACTIONS(5705), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -213113,20 +215962,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, - [86514] = 6, + [88480] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5558), 1, + ACTIONS(5557), 1, anon_sym_and2, - ACTIONS(5580), 1, - sym__newline, - STATE(2753), 1, - sym_comment, - STATE(2789), 1, + STATE(485), 1, aux_sym__repeat_newline, - ACTIONS(5570), 13, + STATE(2821), 1, + sym_comment, + ACTIONS(5707), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -213140,16 +215989,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [86545] = 5, + [88509] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5536), 1, + ACTIONS(5533), 1, anon_sym_and2, - STATE(527), 1, + STATE(485), 1, aux_sym__repeat_newline, - STATE(2754), 1, + STATE(2822), 1, sym_comment, - ACTIONS(5572), 14, + ACTIONS(5705), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213164,16 +216013,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [86574] = 5, + [88538] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5538), 1, + ACTIONS(5557), 1, anon_sym_and2, - STATE(527), 1, + ACTIONS(5559), 1, + anon_sym_xor2, + STATE(485), 1, aux_sym__repeat_newline, - STATE(2755), 1, + STATE(2823), 1, sym_comment, - ACTIONS(5513), 14, + ACTIONS(5707), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213186,22 +216037,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, - [86603] = 7, + [88569] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2907), 1, - sym__newline, - ACTIONS(5526), 1, + ACTIONS(5533), 1, anon_sym_and2, - ACTIONS(5560), 1, + ACTIONS(5535), 1, anon_sym_xor2, - STATE(2756), 1, - sym_comment, - STATE(2790), 1, + STATE(485), 1, aux_sym__repeat_newline, - ACTIONS(5568), 12, + STATE(2824), 1, + sym_comment, + ACTIONS(5705), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -213214,20 +216063,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [86636] = 7, + [88600] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2907), 1, - sym__newline, - ACTIONS(5558), 1, - anon_sym_and2, - ACTIONS(5562), 1, - anon_sym_xor2, - STATE(2757), 1, + STATE(2825), 1, sym_comment, - STATE(2792), 1, + ACTIONS(1468), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1470), 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, + [88627] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2795), 1, aux_sym__repeat_newline, - ACTIONS(5570), 12, + STATE(2826), 1, + sym_comment, + ACTIONS(5709), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -213239,19 +216106,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, - [86669] = 6, + [88654] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5536), 1, - anon_sym_and2, - ACTIONS(5540), 1, - anon_sym_xor2, - STATE(527), 1, + STATE(2796), 1, aux_sym__repeat_newline, - STATE(2758), 1, + STATE(2827), 1, sym_comment, - ACTIONS(5572), 13, + ACTIONS(5711), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213264,19 +216129,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, - [86700] = 6, - ACTIONS(103), 1, + [88681] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1744), 1, - sym__space, - ACTIONS(5164), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(5583), 1, - anon_sym_DOT, - STATE(2759), 1, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(2828), 1, sym_comment, - ACTIONS(1746), 13, + ACTIONS(5713), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213289,19 +216152,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, - [86731] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5538), 1, anon_sym_and2, - ACTIONS(5542), 1, anon_sym_xor2, - STATE(527), 1, + anon_sym_or2, + [88708] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(485), 1, aux_sym__repeat_newline, - STATE(2760), 1, + STATE(2829), 1, sym_comment, - ACTIONS(5513), 13, + ACTIONS(5715), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213314,46 +216175,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, - [86762] = 6, - ACTIONS(3), 1, + [88735] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5585), 1, - anon_sym_DOT, - ACTIONS(5587), 1, - aux_sym__immediate_decimal_token5, - STATE(2761), 1, - sym_comment, - ACTIONS(1746), 3, - sym_identifier, - anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(1744), 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(1818), 1, anon_sym_LPAREN2, - [86793] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2907), 1, - sym__newline, - ACTIONS(5526), 1, - anon_sym_and2, - ACTIONS(5560), 1, - anon_sym_xor2, - STATE(2740), 1, - aux_sym__repeat_newline, - STATE(2762), 1, + ACTIONS(2140), 1, + sym__space, + STATE(2830), 1, sym_comment, - ACTIONS(5515), 12, + STATE(5483), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2142), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -213365,21 +216202,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_or2, - [86826] = 7, + anon_sym_RBRACE, + [88766] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2907), 1, - sym__newline, - ACTIONS(5558), 1, + ACTIONS(5601), 1, anon_sym_and2, - ACTIONS(5562), 1, - anon_sym_xor2, - STATE(2741), 1, + ACTIONS(5717), 1, + sym__newline, + STATE(2798), 1, aux_sym__repeat_newline, - STATE(2763), 1, + STATE(2831), 1, sym_comment, - ACTIONS(5521), 12, + ACTIONS(5709), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -213391,16 +216226,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, - [86859] = 4, + [88797] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2742), 1, + ACTIONS(5537), 1, + anon_sym_and2, + ACTIONS(5720), 1, + sym__newline, + STATE(2802), 1, aux_sym__repeat_newline, - STATE(2764), 1, + STATE(2832), 1, sym_comment, - ACTIONS(5589), 15, - sym__newline, + ACTIONS(5711), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -213412,17 +216251,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, - [86886] = 4, + [88828] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2743), 1, + ACTIONS(5557), 1, + anon_sym_and2, + STATE(485), 1, aux_sym__repeat_newline, - STATE(2765), 1, + STATE(2833), 1, sym_comment, - ACTIONS(5591), 15, + ACTIONS(5713), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213435,17 +216275,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, - [86913] = 4, + [88857] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(527), 1, + ACTIONS(5533), 1, + anon_sym_and2, + STATE(485), 1, aux_sym__repeat_newline, - STATE(2766), 1, + STATE(2834), 1, sym_comment, - ACTIONS(5593), 15, + ACTIONS(5715), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213458,17 +216299,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [86940] = 4, + [88886] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(2767), 1, + STATE(2835), 1, sym_comment, - ACTIONS(5595), 15, + ACTIONS(5308), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213481,21 +216319,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [86967] = 6, + [88911] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5526), 1, - anon_sym_and2, - ACTIONS(5597), 1, + ACTIONS(2922), 1, sym__newline, - STATE(2744), 1, - aux_sym__repeat_newline, - STATE(2768), 1, + ACTIONS(5601), 1, + anon_sym_and2, + ACTIONS(5614), 1, + anon_sym_xor2, + STATE(2836), 1, sym_comment, - ACTIONS(5589), 13, + STATE(2893), 1, + aux_sym__repeat_newline, + ACTIONS(5709), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -213507,20 +216348,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, - [86998] = 6, + [88944] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5558), 1, - anon_sym_and2, - ACTIONS(5600), 1, + ACTIONS(2922), 1, sym__newline, - STATE(2745), 1, + ACTIONS(5537), 1, + anon_sym_and2, + ACTIONS(5539), 1, + anon_sym_xor2, + STATE(2819), 1, aux_sym__repeat_newline, - STATE(2769), 1, + STATE(2837), 1, sym_comment, - ACTIONS(5591), 13, + ACTIONS(5711), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -213532,16 +216374,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, - [87029] = 4, + [88977] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5605), 1, + ACTIONS(5557), 1, anon_sym_and2, - STATE(2770), 1, + ACTIONS(5559), 1, + anon_sym_xor2, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(2838), 1, sym_comment, - ACTIONS(5603), 15, + ACTIONS(5713), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213554,17 +216399,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_xor2, anon_sym_or2, - [87056] = 4, + [89008] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5607), 1, + ACTIONS(5533), 1, anon_sym_and2, - STATE(2771), 1, + ACTIONS(5535), 1, + anon_sym_xor2, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(2839), 1, sym_comment, - ACTIONS(5517), 15, + ACTIONS(5715), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213577,19 +216424,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, - [87083] = 5, - ACTIONS(3), 1, + [89039] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5536), 1, - anon_sym_and2, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(2772), 1, + STATE(2840), 1, sym_comment, - ACTIONS(5593), 14, + ACTIONS(1915), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1917), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213601,19 +216447,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_xor2, - anon_sym_or2, - [87112] = 5, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + [89066] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5605), 1, - anon_sym_and2, - ACTIONS(5609), 1, - anon_sym_xor2, - STATE(2773), 1, + ACTIONS(1699), 1, + sym__space, + ACTIONS(2672), 1, + anon_sym_LPAREN2, + ACTIONS(2674), 1, + sym__unquoted_pattern, + STATE(2841), 1, sym_comment, - ACTIONS(5603), 14, + ACTIONS(1615), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213627,17 +216473,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_or2, - [87141] = 5, + [89097] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5607), 1, - anon_sym_and2, - ACTIONS(5611), 1, - anon_sym_xor2, - STATE(2774), 1, + STATE(2842), 1, sym_comment, - ACTIONS(5517), 14, + ACTIONS(5401), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213651,13 +216492,21 @@ 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, - [87170] = 3, - ACTIONS(3), 1, + [89122] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2775), 1, + ACTIONS(1818), 1, + anon_sym_LPAREN2, + ACTIONS(2144), 1, + sym__space, + STATE(2843), 1, sym_comment, - ACTIONS(5225), 16, + STATE(5483), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2146), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213671,19 +216520,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, - [87195] = 5, + [89153] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5538), 1, - anon_sym_and2, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(2776), 1, + ACTIONS(5686), 1, + anon_sym_BANG, + STATE(2844), 1, sym_comment, - ACTIONS(5595), 14, + ACTIONS(1462), 15, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213695,23 +216541,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_xor2, - anon_sym_or2, - [87224] = 7, - ACTIONS(3), 1, + anon_sym_COLON, + anon_sym_DOT2, + [89180] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2907), 1, - sym__newline, - ACTIONS(5526), 1, - anon_sym_and2, - ACTIONS(5560), 1, - anon_sym_xor2, - STATE(2746), 1, - aux_sym__repeat_newline, - STATE(2777), 1, + STATE(2845), 1, sym_comment, - ACTIONS(5589), 12, + ACTIONS(1895), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1897), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -213723,16 +216564,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or2, - [87257] = 4, + anon_sym_RBRACE, + sym__unquoted_pattern, + [89207] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(527), 1, + ACTIONS(5537), 1, + anon_sym_and2, + ACTIONS(5723), 1, + sym__newline, + STATE(2822), 1, aux_sym__repeat_newline, - STATE(2778), 1, + STATE(2846), 1, sym_comment, - ACTIONS(5613), 15, - sym__newline, + ACTIONS(5726), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -213744,17 +216589,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, - [87284] = 4, + [89238] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(527), 1, + ACTIONS(5557), 1, + anon_sym_and2, + STATE(485), 1, aux_sym__repeat_newline, - STATE(2779), 1, + STATE(2847), 1, sym_comment, - ACTIONS(5615), 15, + ACTIONS(5625), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213767,19 +216613,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, - [87311] = 5, + [89267] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5536), 1, - anon_sym_and2, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(2780), 1, + ACTIONS(1840), 1, + sym__unquoted_pattern, + STATE(2848), 1, sym_comment, - ACTIONS(5613), 14, + ACTIONS(968), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213791,19 +216635,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, - [87340] = 5, + [89294] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5538), 1, - anon_sym_and2, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(2781), 1, + STATE(2849), 1, sym_comment, - ACTIONS(5615), 14, + ACTIONS(5308), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213816,20 +216656,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [87369] = 6, + [89319] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5536), 1, - anon_sym_and2, - ACTIONS(5540), 1, - anon_sym_xor2, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(2782), 1, + ACTIONS(5629), 1, + anon_sym_COLON, + ACTIONS(5728), 1, + anon_sym_EQ, + STATE(2850), 1, sym_comment, - ACTIONS(5613), 13, + STATE(3362), 1, + sym_param_type, + STATE(4909), 1, + aux_sym__repeat_newline, + ACTIONS(5543), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213842,47 +216686,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_or2, - [87400] = 7, + [89352] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2907), 1, - sym__newline, - ACTIONS(5558), 1, - anon_sym_and2, - ACTIONS(5562), 1, - anon_sym_xor2, - STATE(2747), 1, - aux_sym__repeat_newline, - STATE(2783), 1, + STATE(2851), 1, sym_comment, - ACTIONS(5591), 12, - anon_sym_SEMI, + ACTIONS(1543), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1545), 13, + 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_or2, - [87433] = 6, + 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, + [89379] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5617), 1, - anon_sym_DOT_DOT2, - STATE(2784), 1, + ACTIONS(5440), 1, + aux_sym__immediate_decimal_token5, + STATE(2852), 1, sym_comment, - ACTIONS(1713), 2, + ACTIONS(1790), 3, ts_builtin_sym_end, sym__space, - ACTIONS(5619), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1614), 11, + anon_sym_LPAREN2, + ACTIONS(1792), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213894,18 +216732,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, - [87464] = 6, + sym__unquoted_pattern, + [89408] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5538), 1, - anon_sym_and2, - ACTIONS(5542), 1, - anon_sym_xor2, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(2785), 1, + STATE(2853), 1, sym_comment, - ACTIONS(5615), 13, + STATE(2906), 1, + aux_sym__repeat_newline, + ACTIONS(5619), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213918,15 +216753,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, - [87495] = 4, + [89435] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(527), 1, + STATE(2820), 1, aux_sym__repeat_newline, - STATE(2786), 1, + STATE(2854), 1, sym_comment, - ACTIONS(5621), 15, + ACTIONS(5726), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213942,14 +216779,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [87522] = 4, + [89462] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(2787), 1, + ACTIONS(5231), 1, + anon_sym_DOT2, + STATE(715), 1, + sym_path, + STATE(1298), 1, + sym_cell_path, + STATE(2409), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2855), 1, sym_comment, - ACTIONS(5623), 15, + ACTIONS(5360), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213961,20 +216805,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, - [87549] = 5, + [89495] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5536), 1, + ACTIONS(5533), 1, anon_sym_and2, - STATE(527), 1, + ACTIONS(5535), 1, + anon_sym_xor2, + ACTIONS(5576), 1, + anon_sym_or2, + STATE(485), 1, aux_sym__repeat_newline, - STATE(2788), 1, + STATE(2856), 1, sym_comment, - ACTIONS(5621), 14, + ACTIONS(5730), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213987,18 +216831,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_xor2, - anon_sym_or2, - [87578] = 5, + [89528] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5538), 1, - anon_sym_and2, - STATE(527), 1, + STATE(2746), 1, aux_sym__repeat_newline, - STATE(2789), 1, + STATE(2857), 1, sym_comment, - ACTIONS(5623), 14, + ACTIONS(5699), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214011,20 +216851,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, - [87607] = 6, - ACTIONS(3), 1, + [89555] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5536), 1, - anon_sym_and2, - ACTIONS(5540), 1, - anon_sym_xor2, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(2790), 1, + ACTIONS(5462), 1, + anon_sym_EQ2, + ACTIONS(5734), 1, + sym__space, + STATE(2858), 1, sym_comment, - ACTIONS(5621), 13, + STATE(3149), 1, + sym__flag_equals_value, + ACTIONS(5732), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214037,20 +216878,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or2, - [87638] = 6, + anon_sym_RBRACE, + [89586] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5536), 1, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(5601), 1, anon_sym_and2, - ACTIONS(5540), 1, + ACTIONS(5614), 1, anon_sym_xor2, - STATE(527), 1, + STATE(2813), 1, aux_sym__repeat_newline, - STATE(2791), 1, + STATE(2859), 1, sym_comment, - ACTIONS(5593), 13, - sym__newline, + ACTIONS(5621), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -214063,18 +216905,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [87669] = 6, + [89619] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5538), 1, + ACTIONS(5738), 1, anon_sym_and2, - ACTIONS(5542), 1, + ACTIONS(5740), 1, anon_sym_xor2, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(2792), 1, + ACTIONS(5742), 1, + anon_sym_or2, + STATE(2860), 1, sym_comment, - ACTIONS(5623), 13, + ACTIONS(5736), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214087,19 +216929,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_or2, - [87700] = 6, + anon_sym_RBRACE, + [89650] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5538), 1, + ACTIONS(5746), 1, anon_sym_and2, - ACTIONS(5542), 1, + ACTIONS(5748), 1, anon_sym_xor2, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(2793), 1, + ACTIONS(5750), 1, + anon_sym_or2, + STATE(2861), 1, sym_comment, - ACTIONS(5595), 13, + ACTIONS(5744), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214112,19 +216954,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or2, - [87731] = 6, + anon_sym_RBRACE, + [89681] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5251), 1, + anon_sym_DOT2, + ACTIONS(5752), 1, + anon_sym_DASH2, + STATE(2586), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2851), 1, + sym_path, + STATE(2862), 1, + sym_comment, + STATE(3004), 1, + sym_cell_path, + ACTIONS(5360), 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, + [89716] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1713), 1, + ACTIONS(4353), 1, sym__space, - ACTIONS(2612), 1, - anon_sym_LPAREN2, - ACTIONS(2614), 1, - sym__unquoted_pattern, - STATE(2794), 1, + ACTIONS(5462), 1, + anon_sym_EQ2, + STATE(2863), 1, sym_comment, - ACTIONS(1614), 13, + STATE(3200), 1, + sym__flag_equals_value, + ACTIONS(4351), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214138,15 +217007,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [87762] = 4, + [89747] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2750), 1, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(5537), 1, + anon_sym_and2, + ACTIONS(5539), 1, + anon_sym_xor2, + STATE(2824), 1, aux_sym__repeat_newline, - STATE(2795), 1, + STATE(2864), 1, sym_comment, - ACTIONS(5625), 15, - sym__newline, + ACTIONS(5726), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -214158,21 +217032,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, - [87789] = 5, - ACTIONS(103), 1, + [89780] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5428), 1, - aux_sym__immediate_decimal_token5, - STATE(2796), 1, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(2865), 1, sym_comment, - ACTIONS(1744), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1746), 12, + ACTIONS(5549), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214184,16 +217052,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, - [87818] = 4, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [89807] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2715), 1, + ACTIONS(5601), 1, + anon_sym_and2, + ACTIONS(5754), 1, + sym__newline, + STATE(2748), 1, aux_sym__repeat_newline, - STATE(2797), 1, + STATE(2866), 1, sym_comment, - ACTIONS(5627), 15, - sym__newline, + ACTIONS(5699), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -214205,21 +217079,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, - [87845] = 6, + [89838] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5526), 1, - anon_sym_and2, - ACTIONS(5629), 1, + ACTIONS(2922), 1, sym__newline, - STATE(2754), 1, + ACTIONS(5601), 1, + anon_sym_and2, + ACTIONS(5614), 1, + anon_sym_xor2, + STATE(2838), 1, aux_sym__repeat_newline, - STATE(2798), 1, + STATE(2867), 1, sym_comment, - ACTIONS(5625), 13, + ACTIONS(5519), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -214231,23 +217106,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, - [87876] = 6, - ACTIONS(103), 1, + [89871] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5632), 1, - anon_sym_DOT_DOT2, - STATE(2799), 1, - sym_comment, - ACTIONS(2154), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5634), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2156), 11, + ACTIONS(5537), 1, + anon_sym_and2, + ACTIONS(5757), 1, sym__newline, + STATE(2749), 1, + aux_sym__repeat_newline, + STATE(2868), 1, + sym_comment, + ACTIONS(5760), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -214258,18 +217129,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, - [87907] = 6, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [89902] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5558), 1, - anon_sym_and2, - ACTIONS(5636), 1, + ACTIONS(2922), 1, sym__newline, - STATE(2755), 1, + ACTIONS(5537), 1, + anon_sym_and2, + ACTIONS(5539), 1, + anon_sym_xor2, + STATE(2751), 1, aux_sym__repeat_newline, - STATE(2800), 1, + STATE(2869), 1, sym_comment, - ACTIONS(5627), 13, + ACTIONS(5760), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -214281,20 +217157,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, - [87938] = 6, - ACTIONS(103), 1, + [89935] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1635), 1, - sym__unquoted_pattern, - ACTIONS(1956), 1, - sym__space, - ACTIONS(1960), 1, - anon_sym_LPAREN2, - STATE(2801), 1, + STATE(2870), 1, sym_comment, - ACTIONS(1958), 13, + ACTIONS(5401), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214308,20 +217177,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [87969] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2907), 1, - sym__newline, - ACTIONS(5526), 1, anon_sym_and2, - ACTIONS(5560), 1, anon_sym_xor2, - STATE(2758), 1, - aux_sym__repeat_newline, - STATE(2802), 1, + anon_sym_or2, + [89960] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2871), 1, sym_comment, - ACTIONS(5625), 12, + ACTIONS(5308), 16, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -214333,21 +217198,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, - [88002] = 7, + [89985] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2907), 1, - sym__newline, - ACTIONS(5558), 1, - anon_sym_and2, - ACTIONS(5562), 1, - anon_sym_xor2, - STATE(2760), 1, + STATE(485), 1, aux_sym__repeat_newline, - STATE(2803), 1, + STATE(2872), 1, sym_comment, - ACTIONS(5627), 12, + ACTIONS(5762), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -214359,22 +217222,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, - [88035] = 7, - ACTIONS(103), 1, + [90012] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5639), 1, - sym_long_flag_identifier, - ACTIONS(5641), 1, - anon_sym_EQ2, - STATE(2804), 1, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(2873), 1, sym_comment, - STATE(3224), 1, - sym__flag_equals_value, - ACTIONS(4355), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4353), 11, + ACTIONS(5612), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214386,18 +217244,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, - [88068] = 6, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [90039] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1977), 1, - anon_sym_LPAREN2, - ACTIONS(1983), 1, - sym__unquoted_pattern, - ACTIONS(2597), 1, - sym__space, - STATE(2805), 1, + STATE(2874), 1, sym_comment, - ACTIONS(2599), 13, + ACTIONS(5401), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214411,18 +217267,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [88099] = 6, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [90064] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1973), 1, - sym__space, - ACTIONS(1977), 1, - anon_sym_LPAREN2, - ACTIONS(1983), 1, - sym__unquoted_pattern, - STATE(2806), 1, + ACTIONS(5557), 1, + anon_sym_and2, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(2875), 1, sym_comment, - ACTIONS(1975), 13, + ACTIONS(5762), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214435,19 +217292,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, - [88130] = 5, - ACTIONS(103), 1, + anon_sym_xor2, + anon_sym_or2, + [90093] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5643), 1, - aux_sym__immediate_decimal_token5, - STATE(2807), 1, + STATE(2876), 1, sym_comment, - ACTIONS(1852), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1854), 12, + ACTIONS(5764), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214459,23 +217311,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, - sym__unquoted_pattern, - [88159] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2907), 1, - sym__newline, - ACTIONS(5526), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, - ACTIONS(5560), 1, anon_sym_xor2, - ACTIONS(5647), 1, anon_sym_or2, - STATE(2808), 1, + [90118] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2877), 1, sym_comment, - STATE(2837), 1, - aux_sym__repeat_newline, - ACTIONS(5645), 11, + ACTIONS(5766), 16, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -214487,18 +217334,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [88194] = 6, - ACTIONS(103), 1, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [90143] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1679), 1, - sym__unquoted_pattern, - ACTIONS(2541), 1, - sym__space, - ACTIONS(2642), 1, - anon_sym_LPAREN2, - STATE(2809), 1, + ACTIONS(5738), 1, + anon_sym_and2, + STATE(2878), 1, sym_comment, - ACTIONS(2543), 13, + ACTIONS(5764), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214512,18 +217359,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [88225] = 6, - ACTIONS(103), 1, + anon_sym_xor2, + anon_sym_or2, + [90170] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2589), 1, - sym__space, - ACTIONS(2644), 1, - anon_sym_LPAREN2, - ACTIONS(2646), 1, - sym__unquoted_pattern, - STATE(2810), 1, + ACTIONS(5533), 1, + anon_sym_and2, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(2879), 1, sym_comment, - ACTIONS(2591), 13, + ACTIONS(5531), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214536,23 +217383,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, - [88256] = 8, + anon_sym_xor2, + anon_sym_or2, + [90199] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2907), 1, - sym__newline, - ACTIONS(5558), 1, + ACTIONS(5746), 1, anon_sym_and2, - ACTIONS(5562), 1, - anon_sym_xor2, - ACTIONS(5651), 1, - anon_sym_or2, - STATE(2811), 1, + STATE(2880), 1, sym_comment, - STATE(2838), 1, - aux_sym__repeat_newline, - ACTIONS(5649), 11, + ACTIONS(5766), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -214564,18 +217405,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [88291] = 6, - ACTIONS(103), 1, + anon_sym_RBRACE, + anon_sym_xor2, + anon_sym_or2, + [90226] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5469), 1, - anon_sym_EQ2, - ACTIONS(5653), 1, - sym__space, - STATE(2812), 1, + ACTIONS(5738), 1, + anon_sym_and2, + ACTIONS(5740), 1, + anon_sym_xor2, + STATE(2881), 1, sym_comment, - STATE(3020), 1, - aux_sym_attribute_repeat1, - ACTIONS(5465), 13, + ACTIONS(5764), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214589,15 +217431,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [88322] = 4, - ACTIONS(103), 1, + anon_sym_or2, + [90255] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2813), 1, + STATE(2882), 1, sym_comment, - ACTIONS(2525), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(2527), 14, + ACTIONS(4768), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214611,19 +217451,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - sym__unquoted_pattern, - [88349] = 6, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [90280] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2648), 1, - sym__space, - ACTIONS(2652), 1, - anon_sym_LPAREN2, - ACTIONS(2654), 1, - sym__unquoted_pattern, - STATE(2814), 1, + STATE(2747), 1, + aux_sym__repeat_newline, + STATE(2883), 1, sym_comment, - ACTIONS(2650), 13, + ACTIONS(5760), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214636,19 +217474,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, - [88380] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5538), 1, anon_sym_and2, - ACTIONS(5542), 1, anon_sym_xor2, - STATE(527), 1, + anon_sym_or2, + [90307] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(485), 1, aux_sym__repeat_newline, - STATE(2815), 1, + STATE(2884), 1, sym_comment, - ACTIONS(5655), 13, + ACTIONS(5567), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214661,19 +217497,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, - [88411] = 6, - ACTIONS(103), 1, + [90334] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1030), 1, - sym__space, - ACTIONS(2656), 1, - anon_sym_LPAREN2, - ACTIONS(2658), 1, - sym__unquoted_pattern, - STATE(2816), 1, + ACTIONS(5533), 1, + anon_sym_and2, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(2885), 1, sym_comment, - ACTIONS(994), 13, + ACTIONS(5612), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214686,18 +217522,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, - [88442] = 4, - ACTIONS(103), 1, + anon_sym_xor2, + anon_sym_or2, + [90363] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2817), 1, + ACTIONS(5557), 1, + anon_sym_and2, + ACTIONS(5559), 1, + anon_sym_xor2, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(2886), 1, sym_comment, - ACTIONS(1582), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1580), 12, + ACTIONS(5762), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214709,21 +217547,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, - [88469] = 6, + anon_sym_RPAREN, + anon_sym_or2, + [90394] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5657), 1, + ACTIONS(5768), 1, anon_sym_DOT_DOT2, - STATE(2818), 1, + STATE(2887), 1, sym_comment, - ACTIONS(2102), 2, + ACTIONS(2104), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5659), 2, + ACTIONS(5770), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2104), 11, + ACTIONS(2106), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214735,21 +217574,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, - [88500] = 7, - ACTIONS(3), 1, + [90425] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5237), 1, - anon_sym_DOT2, - STATE(720), 1, - sym_path, - STATE(1273), 1, - sym_cell_path, - STATE(2414), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2819), 1, + ACTIONS(5527), 1, + anon_sym_EQ2, + ACTIONS(5772), 1, + sym_short_flag_identifier, + STATE(2888), 1, sym_comment, - ACTIONS(5354), 12, + STATE(3390), 1, + sym__flag_equals_value, + ACTIONS(5460), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(5458), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214761,20 +217600,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, - [88533] = 6, - ACTIONS(103), 1, + [90458] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5661), 1, - anon_sym_DOT_DOT2, - STATE(2820), 1, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(2889), 1, sym_comment, - ACTIONS(2110), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5663), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2112), 11, + ACTIONS(5625), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214786,20 +217619,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, - [88564] = 6, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [90485] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5665), 1, + ACTIONS(5637), 1, anon_sym_DOT_DOT2, - STATE(2821), 1, + STATE(2890), 1, sym_comment, - ACTIONS(2118), 2, + ACTIONS(5511), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5667), 2, + ACTIONS(5639), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2120), 11, + ACTIONS(5509), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214811,15 +217648,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, - [88595] = 4, + [90516] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1820), 1, - sym__unquoted_pattern, - STATE(2822), 1, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(2891), 1, sym_comment, - ACTIONS(886), 15, - ts_builtin_sym_end, + ACTIONS(5531), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214831,17 +217667,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_and2, anon_sym_xor2, anon_sym_or2, - [88622] = 3, + [90543] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2823), 1, + ACTIONS(5776), 1, + anon_sym_AT2, + STATE(2892), 1, sym_comment, - ACTIONS(5669), 16, + STATE(3147), 1, + sym_param_completer, + ACTIONS(5774), 14, anon_sym_EQ, - anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214853,23 +217693,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_COLON, anon_sym_RPAREN, anon_sym_RBRACE, - [88647] = 7, + [90572] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5671), 1, - anon_sym_EQ, - ACTIONS(5675), 1, - anon_sym_COLON, - STATE(2824), 1, - sym_comment, - STATE(3304), 1, - sym_param_type, - STATE(4776), 1, + ACTIONS(5557), 1, + anon_sym_and2, + ACTIONS(5559), 1, + anon_sym_xor2, + STATE(485), 1, aux_sym__repeat_newline, - ACTIONS(5673), 12, + STATE(2893), 1, + sym_comment, + ACTIONS(5666), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214881,15 +217718,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_RBRACE, - [88680] = 3, + anon_sym_RPAREN, + anon_sym_or2, + [90603] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2825), 1, + ACTIONS(5776), 1, + anon_sym_AT2, + STATE(2894), 1, sym_comment, - ACTIONS(5677), 16, + STATE(3151), 1, + sym_param_completer, + ACTIONS(5778), 14, anon_sym_EQ, - anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214901,21 +217742,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_COLON, anon_sym_RPAREN, anon_sym_RBRACE, - [88705] = 6, + [90632] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5605), 1, - anon_sym_and2, - ACTIONS(5609), 1, - anon_sym_xor2, - ACTIONS(5681), 1, - anon_sym_or2, - STATE(2826), 1, + ACTIONS(5776), 1, + anon_sym_AT2, + STATE(2895), 1, sym_comment, - ACTIONS(5679), 13, + STATE(3152), 1, + sym_param_completer, + ACTIONS(5778), 14, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214929,18 +217768,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [88736] = 6, + [90661] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5607), 1, - anon_sym_and2, - ACTIONS(5611), 1, - anon_sym_xor2, - ACTIONS(5685), 1, - anon_sym_or2, - STATE(2827), 1, + ACTIONS(5776), 1, + anon_sym_AT2, + STATE(2896), 1, sym_comment, - ACTIONS(5683), 13, + STATE(3156), 1, + sym_param_completer, + ACTIONS(5780), 14, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214954,12 +217792,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [88767] = 3, + [90690] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2828), 1, + ACTIONS(5746), 1, + anon_sym_and2, + ACTIONS(5748), 1, + anon_sym_xor2, + STATE(2897), 1, sym_comment, - ACTIONS(4758), 16, + ACTIONS(5766), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214973,15 +217815,13 @@ 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, - [88792] = 3, + [90719] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2829), 1, + STATE(2898), 1, sym_comment, - ACTIONS(5225), 16, + ACTIONS(5782), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214998,12 +217838,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [88817] = 3, + [90744] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2830), 1, + STATE(2899), 1, sym_comment, - ACTIONS(5603), 16, + ACTIONS(5784), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215020,182 +217860,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [88842] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1885), 1, - anon_sym_DASH2, - ACTIONS(5223), 1, - anon_sym_DOT2, - STATE(2622), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2831), 1, - sym_comment, - STATE(2871), 1, - sym_path, - STATE(2937), 1, - sym_cell_path, - ACTIONS(1882), 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, - [88877] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1890), 1, - anon_sym_DASH2, - ACTIONS(5223), 1, - anon_sym_DOT2, - STATE(2622), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2832), 1, - sym_comment, - STATE(2871), 1, - sym_path, - STATE(3206), 1, - sym_cell_path, - ACTIONS(1888), 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, - [88912] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1914), 1, - anon_sym_DASH2, - ACTIONS(5223), 1, - anon_sym_DOT2, - STATE(2622), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2833), 1, - sym_comment, - STATE(2871), 1, - sym_path, - STATE(2990), 1, - sym_cell_path, - ACTIONS(1912), 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, - [88947] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1898), 1, - anon_sym_DASH2, - ACTIONS(5223), 1, - anon_sym_DOT2, - STATE(2622), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2834), 1, - sym_comment, - STATE(2871), 1, - sym_path, - STATE(3029), 1, - sym_cell_path, - ACTIONS(1896), 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, - [88982] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1902), 1, - anon_sym_DASH2, - ACTIONS(5223), 1, - anon_sym_DOT2, - STATE(2622), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2835), 1, - sym_comment, - STATE(2871), 1, - sym_path, - STATE(2914), 1, - sym_cell_path, - ACTIONS(1900), 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, - [89017] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1864), 1, - anon_sym_DASH2, - ACTIONS(5223), 1, - anon_sym_DOT2, - STATE(2622), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2836), 1, - sym_comment, - STATE(2871), 1, - sym_path, - STATE(2925), 1, - sym_cell_path, - ACTIONS(1862), 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, - [89052] = 7, + [90769] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5536), 1, + ACTIONS(5738), 1, anon_sym_and2, - ACTIONS(5540), 1, - anon_sym_xor2, - ACTIONS(5689), 1, - anon_sym_or2, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(2837), 1, + STATE(2900), 1, sym_comment, - ACTIONS(5687), 12, + ACTIONS(5782), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215208,20 +217880,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [89085] = 7, + anon_sym_RBRACE, + anon_sym_xor2, + anon_sym_or2, + [90796] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5538), 1, + ACTIONS(5746), 1, anon_sym_and2, - ACTIONS(5542), 1, - anon_sym_xor2, - ACTIONS(5693), 1, - anon_sym_or2, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(2838), 1, + STATE(2901), 1, sym_comment, - ACTIONS(5691), 12, + ACTIONS(5784), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215234,14 +217903,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [89118] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + anon_sym_xor2, + anon_sym_or2, + [90823] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2839), 1, + STATE(2902), 1, sym_comment, - STATE(2865), 1, - aux_sym__repeat_newline, - ACTIONS(5695), 15, + ACTIONS(1903), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1905), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215253,24 +217928,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, - [89145] = 7, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + [90850] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5536), 1, - anon_sym_and2, - ACTIONS(5540), 1, - anon_sym_xor2, - ACTIONS(5689), 1, - anon_sym_or2, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(2840), 1, + STATE(2903), 1, sym_comment, - ACTIONS(5697), 12, + ACTIONS(1842), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1844), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215282,15 +217951,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, - [89178] = 4, + anon_sym_DOT_DOT2, + [90877] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2841), 1, + ACTIONS(5738), 1, + anon_sym_and2, + ACTIONS(5740), 1, + anon_sym_xor2, + STATE(2904), 1, sym_comment, - STATE(2866), 1, - aux_sym__repeat_newline, - ACTIONS(5699), 15, + ACTIONS(5782), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215303,21 +217974,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, - [89205] = 6, - ACTIONS(103), 1, + [90906] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1724), 1, - anon_sym_LPAREN2, - ACTIONS(2188), 1, - sym__space, - STATE(2842), 1, + ACTIONS(5746), 1, + anon_sym_and2, + ACTIONS(5748), 1, + anon_sym_xor2, + STATE(2905), 1, sym_comment, - STATE(5171), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2190), 13, + ACTIONS(5784), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215331,18 +217999,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [89236] = 6, + anon_sym_or2, + [90935] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5526), 1, - anon_sym_and2, - ACTIONS(5701), 1, - sym__newline, - STATE(2843), 1, - sym_comment, - STATE(2888), 1, + STATE(485), 1, aux_sym__repeat_newline, - ACTIONS(5695), 13, + STATE(2906), 1, + sym_comment, + ACTIONS(5707), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215354,20 +218020,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [89267] = 6, - ACTIONS(3), 1, + [90962] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5558), 1, - anon_sym_and2, - ACTIONS(5704), 1, + ACTIONS(5432), 1, + anon_sym_EQ2, + ACTIONS(5786), 1, sym__newline, - STATE(2844), 1, + ACTIONS(5788), 1, + sym__space, + STATE(2907), 1, sym_comment, - STATE(2890), 1, - aux_sym__repeat_newline, - ACTIONS(5699), 13, + STATE(3191), 1, + aux_sym__command_parenthesized_repeat1, + ACTIONS(5790), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215379,22 +218048,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [89298] = 6, - ACTIONS(103), 1, + [90994] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1724), 1, - anon_sym_LPAREN2, - ACTIONS(2178), 1, - sym__space, - STATE(2845), 1, + ACTIONS(5792), 1, + aux_sym__immediate_decimal_token5, + STATE(2908), 1, sym_comment, - STATE(5171), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2180), 13, + ACTIONS(1848), 3, + sym_identifier, + anon_sym_DASH2, + sym__unquoted_pattern_in_record, + ACTIONS(1846), 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, + [91022] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5794), 1, sym__newline, + STATE(728), 1, + aux_sym__pipe_separator, + STATE(2909), 1, + sym_comment, + STATE(3592), 1, + aux_sym__repeat_newline, + ACTIONS(5797), 3, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(2318), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -215404,22 +218096,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, - [89329] = 7, + [91054] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2907), 1, - sym__newline, - ACTIONS(5526), 1, - anon_sym_and2, - ACTIONS(5560), 1, - anon_sym_xor2, - STATE(2846), 1, + ACTIONS(5799), 1, + anon_sym_AT2, + STATE(2910), 1, sym_comment, - STATE(2895), 1, - aux_sym__repeat_newline, - ACTIONS(5695), 12, + STATE(3312), 1, + sym_param_completer, + ACTIONS(5778), 13, + ts_builtin_sym_end, + anon_sym_EQ, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215430,22 +218119,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, - [89362] = 7, - ACTIONS(3), 1, + [91082] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2907), 1, - sym__newline, - ACTIONS(5558), 1, - anon_sym_and2, - ACTIONS(5562), 1, - anon_sym_xor2, - STATE(2815), 1, - aux_sym__repeat_newline, - STATE(2847), 1, + ACTIONS(5527), 1, + anon_sym_EQ2, + STATE(2911), 1, sym_comment, - ACTIONS(5699), 12, + STATE(3250), 1, + sym__flag_equals_value, + ACTIONS(4353), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4351), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215456,16 +218143,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_or2, - [89395] = 4, + [91112] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2766), 1, - aux_sym__repeat_newline, - STATE(2848), 1, + STATE(2912), 1, sym_comment, - ACTIONS(5707), 15, + ACTIONS(5401), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215477,18 +218161,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [89422] = 4, + [91136] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2767), 1, - aux_sym__repeat_newline, - STATE(2849), 1, + ACTIONS(2172), 1, + anon_sym_DASH2, + ACTIONS(5801), 1, + anon_sym_DOT_DOT2, + STATE(2913), 1, sym_comment, - ACTIONS(5709), 15, + ACTIONS(5803), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2170), 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, + [91166] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1889), 1, + anon_sym_DASH2, + STATE(2914), 1, + sym_comment, + ACTIONS(1887), 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, + [91192] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2915), 1, + sym_comment, + ACTIONS(5308), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215500,22 +218228,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, - [89449] = 6, - ACTIONS(3), 1, + [91216] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5526), 1, - anon_sym_and2, - ACTIONS(5711), 1, - sym__newline, - STATE(2772), 1, - aux_sym__repeat_newline, - STATE(2850), 1, + ACTIONS(968), 1, + sym__space, + ACTIONS(5061), 1, + sym__unquoted_pattern, + STATE(2916), 1, sym_comment, - ACTIONS(5707), 13, + ACTIONS(847), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215527,20 +218253,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, - [89480] = 6, + anon_sym_RBRACE, + [91244] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5558), 1, - anon_sym_and2, - ACTIONS(5714), 1, + STATE(2917), 1, + sym_comment, + ACTIONS(1649), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(1647), 13, + anon_sym_EQ, + sym_identifier, sym__newline, - STATE(2776), 1, - aux_sym__repeat_newline, - STATE(2851), 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_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [91270] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_catch, + ACTIONS(5808), 1, + anon_sym_finally, + ACTIONS(5811), 1, + sym__newline, + STATE(2918), 1, sym_comment, - ACTIONS(5709), 13, + STATE(2943), 1, + aux_sym__repeat_newline, + ACTIONS(5815), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215552,22 +218301,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, - [89511] = 7, - ACTIONS(3), 1, + [91302] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2907), 1, - sym__newline, - ACTIONS(5526), 1, - anon_sym_and2, - ACTIONS(5560), 1, - anon_sym_xor2, - STATE(2791), 1, - aux_sym__repeat_newline, - STATE(2852), 1, + ACTIONS(5249), 1, + anon_sym_EQ2, + STATE(2919), 1, sym_comment, - ACTIONS(5707), 12, + ACTIONS(5818), 14, + sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215578,22 +218321,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_or2, - [89544] = 7, - ACTIONS(3), 1, + anon_sym_RBRACE, + anon_sym_COLON2, + [91328] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2907), 1, - sym__newline, - ACTIONS(5558), 1, - anon_sym_and2, - ACTIONS(5562), 1, - anon_sym_xor2, - STATE(2793), 1, - aux_sym__repeat_newline, - STATE(2853), 1, + ACTIONS(5223), 1, + anon_sym_EQ2, + STATE(2920), 1, sym_comment, - ACTIONS(5709), 12, + ACTIONS(5820), 14, + sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215604,20 +218343,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_or2, - [89577] = 6, - ACTIONS(103), 1, + anon_sym_RBRACE, + anon_sym_COLON2, + [91354] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1724), 1, - anon_sym_LPAREN2, - ACTIONS(2130), 1, - sym__space, - STATE(2854), 1, + STATE(2921), 1, sym_comment, - STATE(5171), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2132), 13, + ACTIONS(1545), 15, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215629,20 +218364,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, - [89608] = 6, + anon_sym_COLON, + anon_sym_DOT2, + [91378] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1724), 1, - anon_sym_LPAREN2, - ACTIONS(2184), 1, - sym__space, - STATE(2855), 1, + STATE(2922), 1, sym_comment, - STATE(5171), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2186), 13, + ACTIONS(2326), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(2328), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215656,39 +218388,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [89639] = 8, + [91404] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5223), 1, - anon_sym_DOT2, - ACTIONS(5717), 1, - anon_sym_DASH2, - STATE(2622), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2856), 1, - sym_comment, - STATE(2871), 1, - sym_path, - STATE(2937), 1, - sym_cell_path, - ACTIONS(5354), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, + ACTIONS(5629), 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, - [89674] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2857), 1, + ACTIONS(5822), 1, + anon_sym_EQ, + STATE(2923), 1, sym_comment, - ACTIONS(5332), 16, + STATE(3546), 1, + sym_param_type, + STATE(4909), 1, + aux_sym__repeat_newline, + ACTIONS(5543), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215700,17 +218413,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [89699] = 3, + [91436] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2858), 1, + STATE(2924), 1, sym_comment, - ACTIONS(5332), 16, + ACTIONS(5401), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215722,25 +218431,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_and2, anon_sym_xor2, anon_sym_or2, - [89724] = 7, + [91460] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5538), 1, - anon_sym_and2, - ACTIONS(5542), 1, - anon_sym_xor2, - ACTIONS(5693), 1, - anon_sym_or2, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(2859), 1, + STATE(2925), 1, sym_comment, - ACTIONS(5719), 12, + ACTIONS(4768), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215752,43 +218452,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [89757] = 9, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [91484] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5723), 1, - anon_sym_EQ, - ACTIONS(5726), 1, - sym__newline, - ACTIONS(5729), 1, - anon_sym_COLON, - ACTIONS(5732), 1, - anon_sym_DASH2, - STATE(4242), 1, - aux_sym__repeat_newline, - STATE(2860), 2, - sym_comment, - aux_sym_parameter_repeat1, - STATE(3398), 2, - sym_param_type, - sym_param_value, - ACTIONS(5721), 8, + ACTIONS(5824), 1, sym_identifier, + ACTIONS(5826), 1, + sym__newline, + ACTIONS(5828), 1, anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5830), 1, anon_sym_DOLLAR, + ACTIONS(5832), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(5834), 1, anon_sym_DASH_DASH, - [89794] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2724), 1, + ACTIONS(5836), 1, + anon_sym_DASH2, + STATE(2511), 1, + sym_param_long_flag, + STATE(2684), 1, + sym__param_name, + STATE(2926), 1, + sym_comment, + STATE(2962), 1, aux_sym__repeat_newline, - STATE(2861), 1, + STATE(3341), 1, + aux_sym_parameter_parens_repeat1, + STATE(3538), 1, + sym_param_rest, + STATE(3539), 1, + sym_param_opt, + STATE(3540), 1, + sym_param_short_flag, + STATE(3803), 1, + sym_parameter, + [91536] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2164), 1, + sym__space, + ACTIONS(5838), 1, + anon_sym_LBRACK2, + STATE(2927), 1, sym_comment, - ACTIONS(5734), 15, + ACTIONS(2166), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215801,17 +218512,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, - [89821] = 4, + anon_sym_RBRACE, + [91564] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2725), 1, - aux_sym__repeat_newline, - STATE(2862), 1, + STATE(2928), 1, sym_comment, - ACTIONS(5736), 15, + ACTIONS(5703), 15, + ts_builtin_sym_end, + anon_sym_else, + anon_sym_catch, + anon_sym_finally, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215823,21 +218534,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_and2, - anon_sym_xor2, - anon_sym_or2, - [89848] = 4, + [91588] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(2863), 1, - sym_comment, - ACTIONS(1645), 4, - ts_builtin_sym_end, + ACTIONS(5541), 1, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1647), 12, + STATE(2929), 1, + sym_comment, + STATE(2960), 1, + aux_sym_attribute_repeat1, + ACTIONS(5840), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215849,22 +218555,91 @@ static const uint16_t 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, - [89875] = 7, + anon_sym_RPAREN, + anon_sym_RBRACE, + [91616] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5824), 1, + sym_identifier, + ACTIONS(5826), 1, + sym__newline, + ACTIONS(5830), 1, + anon_sym_DOLLAR, + ACTIONS(5832), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5834), 1, + anon_sym_DASH_DASH, + ACTIONS(5836), 1, + anon_sym_DASH2, + ACTIONS(5842), 1, + anon_sym_RPAREN, + STATE(2511), 1, + sym_param_long_flag, + STATE(2684), 1, + sym__param_name, + STATE(2930), 1, + sym_comment, + STATE(3365), 1, + aux_sym_parameter_parens_repeat1, + STATE(3537), 1, + aux_sym__repeat_newline, + STATE(3538), 1, + sym_param_rest, + STATE(3539), 1, + sym_param_opt, + STATE(3540), 1, + sym_param_short_flag, + STATE(3803), 1, + sym_parameter, + [91668] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5824), 1, + sym_identifier, + ACTIONS(5826), 1, + sym__newline, + ACTIONS(5830), 1, + anon_sym_DOLLAR, + ACTIONS(5832), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5834), 1, + anon_sym_DASH_DASH, + ACTIONS(5836), 1, + anon_sym_DASH2, + ACTIONS(5844), 1, + anon_sym_RBRACK, + STATE(2511), 1, + sym_param_long_flag, + STATE(2684), 1, + sym__param_name, + STATE(2931), 1, + sym_comment, + STATE(3023), 1, + aux_sym__repeat_newline, + STATE(3352), 1, + aux_sym_parameter_parens_repeat1, + STATE(3538), 1, + sym_param_rest, + STATE(3539), 1, + sym_param_opt, + STATE(3540), 1, + sym_param_short_flag, + STATE(3803), 1, + sym_parameter, + [91720] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5641), 1, - anon_sym_EQ2, - ACTIONS(5738), 1, - sym_short_flag_identifier, - STATE(2864), 1, + ACTIONS(1986), 1, + anon_sym_LPAREN2, + ACTIONS(1992), 1, + sym__unquoted_pattern, + STATE(2932), 1, sym_comment, - STATE(3243), 1, - sym__flag_equals_value, - ACTIONS(5509), 2, + ACTIONS(2652), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5507), 11, + ACTIONS(2654), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215876,14 +218651,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, - [89908] = 4, + [91750] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(2865), 1, + ACTIONS(5846), 1, + anon_sym_LBRACK2, + STATE(2933), 1, + sym_comment, + ACTIONS(2166), 2, + anon_sym_LBRACK, + anon_sym_DASH2, + ACTIONS(2164), 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, + [91778] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2934), 1, sym_comment, - ACTIONS(5740), 15, + ACTIONS(5701), 15, + ts_builtin_sym_end, + anon_sym_else, + anon_sym_catch, + anon_sym_finally, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215895,18 +218695,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_and2, - anon_sym_xor2, - anon_sym_or2, - [89935] = 4, + [91802] = 17, ACTIONS(3), 1, anon_sym_POUND, - STATE(527), 1, + ACTIONS(5824), 1, + sym_identifier, + ACTIONS(5826), 1, + sym__newline, + ACTIONS(5830), 1, + anon_sym_DOLLAR, + ACTIONS(5832), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5834), 1, + anon_sym_DASH_DASH, + ACTIONS(5836), 1, + anon_sym_DASH2, + ACTIONS(5848), 1, + anon_sym_RPAREN, + STATE(2511), 1, + sym_param_long_flag, + STATE(2684), 1, + sym__param_name, + STATE(2930), 1, aux_sym__repeat_newline, - STATE(2866), 1, + STATE(2935), 1, sym_comment, - ACTIONS(5655), 15, + STATE(3353), 1, + aux_sym_parameter_parens_repeat1, + STATE(3538), 1, + sym_param_rest, + STATE(3539), 1, + sym_param_opt, + STATE(3540), 1, + sym_param_short_flag, + STATE(3803), 1, + sym_parameter, + [91854] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2936), 1, + sym_comment, + ACTIONS(1730), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1732), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215918,22 +218751,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_and2, - anon_sym_xor2, - anon_sym_or2, - [89962] = 6, + sym__unquoted_pattern, + [91880] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1724), 1, - anon_sym_LPAREN2, - ACTIONS(5744), 1, - sym__space, - STATE(2867), 1, + STATE(2937), 1, sym_comment, - STATE(4930), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5742), 13, + ACTIONS(5283), 2, + sym__space, + anon_sym_EQ2, + ACTIONS(5850), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215947,20 +218774,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [89993] = 6, - ACTIONS(103), 1, + [91906] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5617), 1, - anon_sym_DOT_DOT2, - STATE(2868), 1, + ACTIONS(5799), 1, + anon_sym_AT2, + STATE(2938), 1, sym_comment, - ACTIONS(5473), 2, + STATE(3302), 1, + sym_param_completer, + ACTIONS(5774), 13, ts_builtin_sym_end, - sym__space, - ACTIONS(5619), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5471), 11, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215972,18 +218797,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, - [90024] = 6, - ACTIONS(3), 1, + [91934] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5526), 1, - anon_sym_and2, - ACTIONS(5746), 1, - sym__newline, - STATE(2726), 1, - aux_sym__repeat_newline, - STATE(2869), 1, + ACTIONS(2612), 1, + anon_sym_LPAREN2, + ACTIONS(2614), 1, + sym__unquoted_pattern, + STATE(2939), 1, sym_comment, - ACTIONS(5734), 13, + ACTIONS(2608), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2610), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215994,19 +218821,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_xor2, - anon_sym_or2, - [90055] = 4, - ACTIONS(3), 1, + [91964] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5519), 1, - anon_sym_QMARK2, - STATE(2870), 1, + ACTIONS(1818), 1, + anon_sym_LPAREN2, + STATE(2940), 1, sym_comment, - ACTIONS(1450), 15, + STATE(5483), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2342), 2, ts_builtin_sym_end, - anon_sym_EQ, + sym__space, + ACTIONS(2344), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216018,45 +218845,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_COLON, - anon_sym_DOT2, - [90082] = 4, + [91994] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2871), 1, - sym_comment, - ACTIONS(1547), 3, + ACTIONS(2666), 1, anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1549), 13, + STATE(2941), 1, + sym_comment, + ACTIONS(2664), 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, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [90109] = 7, + [92020] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5749), 1, - anon_sym_EQ, - ACTIONS(5751), 1, - anon_sym_COLON, - STATE(2872), 1, + STATE(2942), 1, sym_comment, - STATE(3315), 1, - sym_param_type, - STATE(4602), 1, - aux_sym__repeat_newline, - ACTIONS(5673), 12, + ACTIONS(5764), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -216069,16 +218885,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, - [90142] = 4, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [92044] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2873), 1, - sym_comment, - ACTIONS(1770), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1772), 14, + ACTIONS(1864), 1, sym__newline, + ACTIONS(5852), 1, + anon_sym_finally, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(2943), 1, + sym_comment, + ACTIONS(1862), 12, + anon_sym_catch, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216090,22 +218912,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, + [92074] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + ACTIONS(1637), 1, sym__unquoted_pattern, - [90169] = 6, + ACTIONS(2938), 1, + anon_sym_DOLLAR, + ACTIONS(5855), 1, + anon_sym_DOT, + STATE(2944), 1, + sym_comment, + STATE(3848), 1, + sym__immediate_decimal, + ACTIONS(5857), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(5859), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3899), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1631), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [92114] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5753), 1, - anon_sym_COLON, - STATE(2874), 1, + ACTIONS(5861), 1, + sym__newline, + STATE(728), 1, + aux_sym__pipe_separator, + STATE(2945), 1, sym_comment, - STATE(3219), 1, - sym_param_type, - STATE(4764), 1, + STATE(3592), 1, aux_sym__repeat_newline, - ACTIONS(5673), 13, - sym__newline, + ACTIONS(5864), 3, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(2318), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -216115,19 +218966,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [90200] = 4, - ACTIONS(103), 1, + [92146] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2875), 1, + STATE(2946), 1, sym_comment, - ACTIONS(1858), 4, + ACTIONS(5766), 15, 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, @@ -216139,17 +218984,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, - [90227] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [92170] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2876), 1, + ACTIONS(5866), 1, + anon_sym_AT2, + STATE(2947), 1, + sym_comment, + STATE(3147), 1, + sym_param_completer, + ACTIONS(5774), 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, + [92198] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2948), 1, sym_comment, - ACTIONS(1562), 3, + ACTIONS(1844), 2, anon_sym_DASH2, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1564), 13, + ACTIONS(1842), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -216163,13 +219032,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [90254] = 3, + [92224] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2877), 1, - sym_comment, - ACTIONS(5755), 16, + ACTIONS(5868), 1, + anon_sym_catch, + ACTIONS(5871), 1, + anon_sym_finally, + ACTIONS(5874), 1, sym__newline, + STATE(2949), 1, + sym_comment, + STATE(3024), 1, + aux_sym__repeat_newline, + ACTIONS(5878), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216181,65 +219057,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [90279] = 4, + [92256] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(2878), 1, + ACTIONS(2620), 1, + anon_sym_LPAREN2, + ACTIONS(2622), 1, + sym__unquoted_pattern, + STATE(2950), 1, sym_comment, - ACTIONS(1852), 2, + ACTIONS(2616), 2, + ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(1854), 14, + ACTIONS(2618), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - sym__unquoted_pattern, - [90306] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2879), 1, - sym_comment, - ACTIONS(1496), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1498), 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, - [90333] = 4, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [92286] = 7, ACTIONS(103), 1, anon_sym_POUND, - STATE(2880), 1, - sym_comment, - ACTIONS(1870), 2, + ACTIONS(5432), 1, + anon_sym_EQ2, + ACTIONS(5881), 1, + ts_builtin_sym_end, + ACTIONS(5883), 1, sym__space, - anon_sym_LPAREN2, - ACTIONS(1872), 14, + STATE(2951), 1, + sym_comment, + STATE(3108), 1, + aux_sym_attribute_repeat1, + ACTIONS(5428), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216251,16 +219106,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, - sym__unquoted_pattern, - [90360] = 3, - ACTIONS(3), 1, + [92318] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2881), 1, + ACTIONS(5298), 1, + anon_sym_EQ2, + STATE(2952), 1, sym_comment, - ACTIONS(5757), 16, + ACTIONS(5885), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216271,27 +219126,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, - [90385] = 8, + anon_sym_COLON2, + [92344] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2907), 1, - sym__newline, - ACTIONS(5526), 1, - anon_sym_and2, - ACTIONS(5560), 1, - anon_sym_xor2, - ACTIONS(5647), 1, - anon_sym_or2, - STATE(2840), 1, - aux_sym__repeat_newline, - STATE(2882), 1, + ACTIONS(5866), 1, + anon_sym_AT2, + STATE(2953), 1, sym_comment, - ACTIONS(5759), 11, + STATE(3151), 1, + sym_param_completer, + ACTIONS(5778), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216303,20 +219150,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [90420] = 7, + anon_sym_RBRACE, + [92372] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5675), 1, - anon_sym_COLON, - ACTIONS(5761), 1, - anon_sym_EQ, - STATE(2883), 1, + ACTIONS(5866), 1, + anon_sym_AT2, + STATE(2954), 1, sym_comment, - STATE(3311), 1, - sym_param_type, - STATE(4776), 1, - aux_sym__repeat_newline, - ACTIONS(5673), 12, + STATE(3152), 1, + sym_param_completer, + ACTIONS(5778), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216329,18 +219173,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [90453] = 6, - ACTIONS(103), 1, + anon_sym_RBRACE, + [92400] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5493), 1, - anon_sym_EQ2, - ACTIONS(5765), 1, - sym__space, - STATE(2884), 1, + ACTIONS(5866), 1, + anon_sym_AT2, + STATE(2955), 1, sym_comment, - STATE(3164), 1, - sym__flag_equals_value, - ACTIONS(5763), 13, + STATE(3156), 1, + sym_param_completer, + ACTIONS(5780), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216354,19 +219197,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [90484] = 6, + [92428] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4530), 1, - sym__space, - ACTIONS(5493), 1, + ACTIONS(5300), 1, anon_sym_EQ2, - STATE(2885), 1, + STATE(2956), 1, sym_comment, - STATE(3070), 1, - sym__flag_equals_value, - ACTIONS(4528), 13, + ACTIONS(5887), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216377,16 +219217,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, - [90515] = 4, + anon_sym_COLON2, + [92454] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5605), 1, + ACTIONS(5889), 1, anon_sym_and2, - STATE(2886), 1, + STATE(2957), 1, sym_comment, - ACTIONS(5755), 15, + ACTIONS(5764), 14, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216398,22 +219239,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_xor2, anon_sym_or2, - [90542] = 6, + [92480] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5558), 1, - anon_sym_and2, - ACTIONS(5767), 1, + ACTIONS(5893), 1, + anon_sym_DASH2, + ACTIONS(5895), 1, + anon_sym_DOT_DOT2, + STATE(2958), 1, + sym_comment, + ACTIONS(5897), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5891), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - STATE(2727), 1, - aux_sym__repeat_newline, - STATE(2887), 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, + [92510] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1986), 1, + anon_sym_LPAREN2, + ACTIONS(1992), 1, + sym__unquoted_pattern, + STATE(2959), 1, sym_comment, - ACTIONS(5736), 13, + ACTIONS(1982), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1984), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216424,19 +219289,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, - [90573] = 5, - ACTIONS(3), 1, + [92540] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5536), 1, - anon_sym_and2, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(2888), 1, + ACTIONS(5901), 1, + sym__space, + STATE(2960), 2, sym_comment, - ACTIONS(5740), 14, + aux_sym_attribute_repeat1, + ACTIONS(5899), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216449,14 +219310,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, - [90602] = 3, - ACTIONS(3), 1, + anon_sym_RBRACE, + [92566] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2889), 1, + STATE(2961), 1, sym_comment, - ACTIONS(5332), 16, + ACTIONS(1846), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1848), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216468,21 +219332,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [90627] = 5, + sym__unquoted_pattern, + [92592] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5538), 1, - anon_sym_and2, - STATE(527), 1, + ACTIONS(5824), 1, + sym_identifier, + ACTIONS(5826), 1, + sym__newline, + ACTIONS(5830), 1, + anon_sym_DOLLAR, + ACTIONS(5832), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5834), 1, + anon_sym_DASH_DASH, + ACTIONS(5836), 1, + anon_sym_DASH2, + ACTIONS(5904), 1, + anon_sym_PIPE, + STATE(2511), 1, + sym_param_long_flag, + STATE(2684), 1, + sym__param_name, + STATE(2962), 1, + sym_comment, + STATE(3332), 1, + aux_sym_parameter_parens_repeat1, + STATE(3537), 1, aux_sym__repeat_newline, - STATE(2890), 1, + STATE(3538), 1, + sym_param_rest, + STATE(3539), 1, + sym_param_opt, + STATE(3540), 1, + sym_param_short_flag, + STATE(3803), 1, + sym_parameter, + [92644] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5906), 1, + anon_sym_catch, + ACTIONS(5908), 1, + anon_sym_finally, + STATE(2963), 1, sym_comment, - ACTIONS(5655), 14, + ACTIONS(5910), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216495,24 +219390,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [90656] = 8, - ACTIONS(3), 1, + anon_sym_RBRACE, + [92672] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2907), 1, + ACTIONS(2632), 1, + anon_sym_LPAREN2, + ACTIONS(2634), 1, + sym__unquoted_pattern, + STATE(2964), 1, + sym_comment, + ACTIONS(1234), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1020), 11, sym__newline, - ACTIONS(5558), 1, - anon_sym_and2, - ACTIONS(5562), 1, - anon_sym_xor2, - ACTIONS(5651), 1, - anon_sym_or2, - STATE(2859), 1, - aux_sym__repeat_newline, - STATE(2891), 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, + [92702] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1637), 1, + sym__unquoted_pattern, + ACTIONS(1976), 1, + anon_sym_LPAREN2, + STATE(2965), 1, sym_comment, - ACTIONS(5770), 11, + ACTIONS(1972), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1974), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216523,16 +219439,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, - [90691] = 4, - ACTIONS(3), 1, + [92732] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5607), 1, - anon_sym_and2, - STATE(2892), 1, + ACTIONS(5257), 1, + anon_sym_EQ2, + STATE(2966), 1, sym_comment, - ACTIONS(5757), 15, + ACTIONS(5912), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216543,24 +219459,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_xor2, - anon_sym_or2, - [90718] = 7, - ACTIONS(3), 1, + anon_sym_COLON2, + [92758] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2907), 1, - sym__newline, - ACTIONS(5526), 1, - anon_sym_and2, - ACTIONS(5560), 1, - anon_sym_xor2, - STATE(2728), 1, - aux_sym__repeat_newline, - STATE(2893), 1, + STATE(2967), 1, sym_comment, - ACTIONS(5734), 12, + ACTIONS(2360), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(2362), 12, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216571,22 +219482,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_or2, - [90751] = 7, + sym__unquoted_pattern, + [92784] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2907), 1, + ACTIONS(5824), 1, + sym_identifier, + ACTIONS(5826), 1, sym__newline, - ACTIONS(5558), 1, - anon_sym_and2, - ACTIONS(5562), 1, - anon_sym_xor2, - STATE(2729), 1, + ACTIONS(5830), 1, + anon_sym_DOLLAR, + ACTIONS(5832), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5834), 1, + anon_sym_DASH_DASH, + ACTIONS(5836), 1, + anon_sym_DASH2, + ACTIONS(5914), 1, + anon_sym_RPAREN, + STATE(2511), 1, + sym_param_long_flag, + STATE(2684), 1, + sym__param_name, + STATE(2968), 1, + sym_comment, + STATE(3290), 1, + aux_sym_parameter_parens_repeat1, + STATE(3537), 1, aux_sym__repeat_newline, - STATE(2894), 1, + STATE(3538), 1, + sym_param_rest, + STATE(3539), 1, + sym_param_opt, + STATE(3540), 1, + sym_param_short_flag, + STATE(3803), 1, + sym_parameter, + [92836] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1695), 1, + sym__unquoted_pattern, + ACTIONS(2576), 1, + anon_sym_LPAREN2, + STATE(2969), 1, sym_comment, - ACTIONS(5736), 12, + ACTIONS(2572), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2574), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216597,21 +219542,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, - [90784] = 6, + [92866] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5536), 1, - anon_sym_and2, - ACTIONS(5540), 1, - anon_sym_xor2, - STATE(527), 1, + ACTIONS(5916), 1, + anon_sym_catch, + ACTIONS(5918), 1, + anon_sym_finally, + ACTIONS(5920), 1, + sym__newline, + STATE(2949), 1, aux_sym__repeat_newline, - STATE(2895), 1, + STATE(2970), 1, sym_comment, - ACTIONS(5740), 13, - sym__newline, + ACTIONS(5923), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216623,17 +219567,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, - [90815] = 5, + [92898] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5774), 1, + ACTIONS(5799), 1, anon_sym_AT2, - STATE(2896), 1, + STATE(2971), 1, sym_comment, - STATE(3107), 1, + STATE(3297), 1, sym_param_completer, - ACTIONS(5772), 14, + ACTIONS(5778), 13, + ts_builtin_sym_end, anon_sym_EQ, sym__newline, anon_sym_SEMI, @@ -216646,20 +219590,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, - [90844] = 5, + [92926] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5774), 1, - anon_sym_AT2, - STATE(2897), 1, - sym_comment, - STATE(3168), 1, - sym_param_completer, - ACTIONS(5776), 14, - anon_sym_EQ, + ACTIONS(5925), 1, + anon_sym_catch, + ACTIONS(5927), 1, + anon_sym_finally, + ACTIONS(5929), 1, sym__newline, + STATE(2970), 1, + aux_sym__repeat_newline, + STATE(2972), 1, + sym_comment, + ACTIONS(5932), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216671,17 +219615,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, - [90873] = 5, + [92958] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5605), 1, + ACTIONS(5934), 1, anon_sym_and2, - ACTIONS(5609), 1, - anon_sym_xor2, - STATE(2898), 1, + STATE(2973), 1, sym_comment, - ACTIONS(5755), 14, + ACTIONS(5766), 14, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216693,20 +219635,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_xor2, anon_sym_or2, - [90902] = 5, - ACTIONS(3), 1, + [92984] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5774), 1, - anon_sym_AT2, - STATE(2899), 1, + STATE(2974), 1, sym_comment, - STATE(3163), 1, - sym_param_completer, - ACTIONS(5776), 14, - anon_sym_EQ, + ACTIONS(1895), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1897), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216718,19 +219658,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, - [90931] = 5, + sym__unquoted_pattern, + [93010] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5774), 1, - anon_sym_AT2, - STATE(2900), 1, + ACTIONS(5889), 1, + anon_sym_and2, + ACTIONS(5936), 1, + anon_sym_xor2, + STATE(2975), 1, sym_comment, - STATE(3195), 1, - sym_param_completer, - ACTIONS(5778), 14, - anon_sym_EQ, + ACTIONS(5764), 13, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216742,18 +219681,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, - [90960] = 5, - ACTIONS(3), 1, + anon_sym_or2, + [93038] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5607), 1, - anon_sym_and2, - ACTIONS(5611), 1, - anon_sym_xor2, - STATE(2901), 1, + STATE(2976), 1, sym_comment, - ACTIONS(5757), 14, + ACTIONS(5257), 2, + sym__space, + anon_sym_EQ2, + ACTIONS(5912), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216767,21 +219704,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_or2, - [90989] = 7, + [93064] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5675), 1, - anon_sym_COLON, - ACTIONS(5780), 1, - anon_sym_EQ, - STATE(2902), 1, + ACTIONS(5934), 1, + anon_sym_and2, + ACTIONS(5938), 1, + anon_sym_xor2, + STATE(2977), 1, sym_comment, - STATE(3318), 1, - sym_param_type, - STATE(4776), 1, - aux_sym__repeat_newline, - ACTIONS(5673), 12, + ACTIONS(5766), 13, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216793,13 +219726,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, - [91022] = 3, + anon_sym_or2, + [93092] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2903), 1, + STATE(2978), 1, sym_comment, - ACTIONS(5225), 16, + ACTIONS(5782), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216811,23 +219745,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_and2, anon_sym_xor2, anon_sym_or2, - [91047] = 6, - ACTIONS(103), 1, + [93116] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1022), 1, - sym__space, - ACTIONS(2656), 1, - anon_sym_LPAREN2, - ACTIONS(2658), 1, - sym__unquoted_pattern, - STATE(2904), 1, + STATE(2979), 1, sym_comment, - ACTIONS(1020), 13, + ACTIONS(5784), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216839,18 +219766,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, - [91078] = 5, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [93140] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5653), 1, - sym__space, - STATE(2905), 1, + ACTIONS(5889), 1, + anon_sym_and2, + STATE(2980), 1, sym_comment, - STATE(2944), 1, - aux_sym_attribute_repeat1, - ACTIONS(5782), 13, + ACTIONS(5782), 14, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216862,15 +219789,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, + [93166] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2580), 1, + anon_sym_DASH2, + STATE(2981), 1, + sym_comment, + ACTIONS(2578), 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, - [91106] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [93192] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2906), 1, + ACTIONS(5629), 1, + anon_sym_COLON, + ACTIONS(5940), 1, + anon_sym_EQ, + STATE(2982), 1, sym_comment, - ACTIONS(5517), 15, - ts_builtin_sym_end, + STATE(3567), 1, + sym_param_type, + STATE(4909), 1, + aux_sym__repeat_newline, + ACTIONS(5543), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216882,15 +219838,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, - [91130] = 3, + [93224] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2907), 1, + ACTIONS(5934), 1, + anon_sym_and2, + STATE(2983), 1, sym_comment, - ACTIONS(5332), 15, + ACTIONS(5784), 14, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -216903,16 +219858,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, - [91154] = 3, + [93250] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2908), 1, + ACTIONS(5889), 1, + anon_sym_and2, + ACTIONS(5936), 1, + anon_sym_xor2, + STATE(2984), 1, sym_comment, - ACTIONS(5784), 15, - anon_sym_EQ, + ACTIONS(5782), 13, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216924,21 +219882,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_GT2, - anon_sym_RBRACE, - [91178] = 5, + anon_sym_or2, + [93278] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5786), 1, - anon_sym_AT2, - STATE(2909), 1, + ACTIONS(5934), 1, + anon_sym_and2, + ACTIONS(5938), 1, + anon_sym_xor2, + STATE(2985), 1, sym_comment, - STATE(3351), 1, - sym_param_completer, - ACTIONS(5778), 13, + ACTIONS(5784), 13, ts_builtin_sym_end, - anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216950,19 +219905,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, - [91206] = 6, + anon_sym_or2, + [93306] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1977), 1, - anon_sym_LPAREN2, - ACTIONS(1983), 1, - sym__unquoted_pattern, - STATE(2910), 1, - sym_comment, - ACTIONS(2597), 2, - ts_builtin_sym_end, + ACTIONS(5541), 1, sym__space, - ACTIONS(2599), 11, + STATE(2960), 1, + aux_sym_attribute_repeat1, + STATE(2986), 1, + sym_comment, + ACTIONS(5942), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216974,19 +219927,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, - [91236] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [93334] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5790), 1, + STATE(2987), 1, + sym_comment, + ACTIONS(1578), 2, anon_sym_DASH2, - ACTIONS(5792), 1, anon_sym_DOT_DOT2, - STATE(2911), 1, - sym_comment, - ACTIONS(5794), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5788), 11, + ACTIONS(1580), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -216998,36 +219949,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [91266] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2912), 1, - sym_comment, - ACTIONS(5796), 15, - 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_RPAREN, - anon_sym_GT2, - anon_sym_RBRACE, - [91290] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [93360] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(2913), 1, + ACTIONS(1818), 1, + anon_sym_LPAREN2, + STATE(2988), 1, sym_comment, - ACTIONS(2142), 2, + STATE(5483), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2140), 2, + ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(2144), 13, + ACTIONS(2142), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217039,39 +219975,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [91316] = 4, + [93390] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1864), 1, + ACTIONS(5895), 1, + anon_sym_DOT_DOT2, + ACTIONS(5946), 1, anon_sym_DASH2, - STATE(2914), 1, + STATE(2989), 1, sym_comment, - ACTIONS(1862), 14, + ACTIONS(5897), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5944), 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, - [91342] = 4, + [93420] = 17, ACTIONS(3), 1, anon_sym_POUND, - STATE(2915), 1, + ACTIONS(5824), 1, + sym_identifier, + ACTIONS(5826), 1, + sym__newline, + ACTIONS(5830), 1, + anon_sym_DOLLAR, + ACTIONS(5832), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5834), 1, + anon_sym_DASH_DASH, + ACTIONS(5836), 1, + anon_sym_DASH2, + ACTIONS(5948), 1, + anon_sym_RBRACK, + STATE(2511), 1, + sym_param_long_flag, + STATE(2684), 1, + sym__param_name, + STATE(2990), 1, sym_comment, - ACTIONS(1647), 2, + STATE(3244), 1, + aux_sym_parameter_parens_repeat1, + STATE(3537), 1, + aux_sym__repeat_newline, + STATE(3538), 1, + sym_param_rest, + STATE(3539), 1, + sym_param_opt, + STATE(3540), 1, + sym_param_short_flag, + STATE(3803), 1, + sym_parameter, + [93472] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2991), 1, + sym_comment, + ACTIONS(5298), 2, + sym__space, + anon_sym_EQ2, + ACTIONS(5885), 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, + [93498] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2106), 1, anon_sym_DASH2, + ACTIONS(5950), 1, anon_sym_DOT_DOT2, - ACTIONS(1645), 13, + STATE(2992), 1, + sym_comment, + ACTIONS(5952), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2104), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -217083,22 +220080,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [91368] = 6, + [93528] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1977), 1, - anon_sym_LPAREN2, - ACTIONS(1983), 1, - sym__unquoted_pattern, - STATE(2916), 1, + ACTIONS(5283), 1, + anon_sym_EQ2, + STATE(2993), 1, sym_comment, - ACTIONS(1973), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1975), 11, + ACTIONS(5850), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217109,15 +220100,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, - [91398] = 4, + anon_sym_RBRACE, + anon_sym_COLON2, + [93554] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(2917), 1, + ACTIONS(5527), 1, + anon_sym_EQ2, + STATE(2994), 1, sym_comment, - ACTIONS(5275), 2, + STATE(3269), 1, + sym__flag_equals_value, + ACTIONS(5734), 2, + ts_builtin_sym_end, sym__space, - anon_sym_EQ2, - ACTIONS(5798), 13, + ACTIONS(5732), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217129,18 +220126,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, - [91424] = 4, + [93584] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2918), 1, + STATE(2995), 1, sym_comment, - ACTIONS(1770), 3, - ts_builtin_sym_end, + ACTIONS(5249), 2, sym__space, - anon_sym_LPAREN2, - ACTIONS(1772), 12, + anon_sym_EQ2, + ACTIONS(5818), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217152,23 +220146,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, - sym__unquoted_pattern, - [91450] = 7, + anon_sym_RPAREN, + anon_sym_RBRACE, + [93610] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5800), 1, - sym__newline, - STATE(882), 1, - aux_sym__pipe_separator, - STATE(2919), 1, + STATE(2996), 1, sym_comment, - STATE(3546), 1, - aux_sym__repeat_newline, - ACTIONS(5803), 3, + ACTIONS(1470), 15, + ts_builtin_sym_end, + anon_sym_EQ, + sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2325), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -217178,19 +220167,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, - [91482] = 6, + anon_sym_COLON, + anon_sym_DOT2, + [93634] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2644), 1, - anon_sym_LPAREN2, - ACTIONS(2646), 1, - sym__unquoted_pattern, - STATE(2920), 1, + STATE(2997), 1, sym_comment, - ACTIONS(2589), 2, - ts_builtin_sym_end, + ACTIONS(2156), 2, sym__space, - ACTIONS(2591), 11, + anon_sym_LPAREN2, + ACTIONS(2158), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217202,19 +220189,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, - [91512] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [93660] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2104), 1, + ACTIONS(2114), 1, anon_sym_DASH2, - ACTIONS(5805), 1, + ACTIONS(5954), 1, anon_sym_DOT_DOT2, - STATE(2921), 1, + STATE(2998), 1, sym_comment, - ACTIONS(5807), 2, + ACTIONS(5956), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2102), 11, + ACTIONS(2112), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -217226,19 +220215,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [91542] = 6, + [93690] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2112), 1, + ACTIONS(2122), 1, anon_sym_DASH2, - ACTIONS(5809), 1, + ACTIONS(5958), 1, anon_sym_DOT_DOT2, - STATE(2922), 1, + STATE(2999), 1, sym_comment, - ACTIONS(5811), 2, + ACTIONS(5960), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2110), 11, + ACTIONS(2120), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -217250,37 +220239,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [91572] = 5, + [93720] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5786), 1, - anon_sym_AT2, - STATE(2923), 1, + ACTIONS(5889), 1, + anon_sym_and2, + ACTIONS(5936), 1, + anon_sym_xor2, + ACTIONS(5962), 1, + anon_sym_or2, + STATE(3000), 1, sym_comment, - STATE(3268), 1, - sym_param_completer, - ACTIONS(5776), 13, + ACTIONS(5736), 12, ts_builtin_sym_end, - 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, - [91600] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2924), 1, - sym_comment, - ACTIONS(5813), 15, - anon_sym_else, - anon_sym_catch, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217292,40 +220263,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, - [91624] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2622), 1, - anon_sym_DASH2, - STATE(2925), 1, - sym_comment, - ACTIONS(2620), 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, - [91650] = 4, + [93750] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5255), 1, - anon_sym_EQ2, - STATE(2926), 1, + ACTIONS(1818), 1, + anon_sym_LPAREN2, + STATE(3001), 1, sym_comment, - ACTIONS(5815), 14, - sym__newline, + STATE(5483), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2144), 2, + ts_builtin_sym_end, sym__space, + ACTIONS(2146), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217336,40 +220287,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - anon_sym_COLON2, - [91676] = 4, + [93780] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2927), 1, - sym_comment, - ACTIONS(1860), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1858), 13, - anon_sym_EQ, - sym_identifier, + ACTIONS(5964), 1, + anon_sym_catch, + ACTIONS(5966), 1, + anon_sym_finally, + ACTIONS(5968), 1, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [91702] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2928), 1, + STATE(2918), 1, + aux_sym__repeat_newline, + STATE(3002), 1, sym_comment, - ACTIONS(5255), 2, - sym__space, - anon_sym_EQ2, - ACTIONS(5815), 13, - sym__newline, + ACTIONS(5971), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217381,17 +220312,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, - [91728] = 4, + [93812] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(2929), 1, + ACTIONS(2632), 1, + anon_sym_LPAREN2, + ACTIONS(2634), 1, + sym__unquoted_pattern, + STATE(3003), 1, sym_comment, - ACTIONS(1852), 3, + ACTIONS(1226), 2, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(1854), 12, + ACTIONS(1012), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217403,61 +220336,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, - sym__unquoted_pattern, - [91754] = 4, - ACTIONS(103), 1, + [93842] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5281), 1, - anon_sym_EQ2, - STATE(2930), 1, + ACTIONS(1909), 1, + anon_sym_DASH2, + STATE(3004), 1, sym_comment, - ACTIONS(5817), 14, + ACTIONS(1907), 14, + 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, - [91780] = 4, - ACTIONS(103), 1, + 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, + [93868] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2931), 1, + STATE(3005), 1, sym_comment, - ACTIONS(2525), 3, + ACTIONS(5401), 15, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(2527), 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, - [91806] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5653), 1, - sym__space, - STATE(2932), 1, - sym_comment, - STATE(3020), 1, - aux_sym_attribute_repeat1, - ACTIONS(5465), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217469,91 +220376,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_RPAREN, - anon_sym_RBRACE, - [91834] = 17, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [93892] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5819), 1, + ACTIONS(5824), 1, sym_identifier, - ACTIONS(5821), 1, + ACTIONS(5826), 1, sym__newline, - ACTIONS(5823), 1, - anon_sym_RBRACK, - ACTIONS(5825), 1, + ACTIONS(5830), 1, anon_sym_DOLLAR, - ACTIONS(5827), 1, + ACTIONS(5832), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5829), 1, + ACTIONS(5834), 1, anon_sym_DASH_DASH, - ACTIONS(5831), 1, + ACTIONS(5836), 1, anon_sym_DASH2, - STATE(2550), 1, + ACTIONS(5973), 1, + anon_sym_RBRACK, + STATE(2511), 1, sym_param_long_flag, STATE(2684), 1, sym__param_name, - STATE(2933), 1, - sym_comment, - STATE(2976), 1, + STATE(2990), 1, aux_sym__repeat_newline, - STATE(3299), 1, + STATE(3006), 1, + sym_comment, + STATE(3388), 1, aux_sym_parameter_parens_repeat1, - STATE(3374), 1, + STATE(3538), 1, sym_param_rest, - STATE(3375), 1, + STATE(3539), 1, sym_param_opt, - STATE(3385), 1, + STATE(3540), 1, sym_param_short_flag, - STATE(3761), 1, + STATE(3803), 1, sym_parameter, - [91886] = 17, + [93944] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5819), 1, + ACTIONS(5824), 1, sym_identifier, - ACTIONS(5821), 1, + ACTIONS(5826), 1, sym__newline, - ACTIONS(5825), 1, + ACTIONS(5830), 1, anon_sym_DOLLAR, - ACTIONS(5827), 1, + ACTIONS(5832), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5829), 1, + ACTIONS(5834), 1, anon_sym_DASH_DASH, - ACTIONS(5831), 1, + ACTIONS(5836), 1, anon_sym_DASH2, - ACTIONS(5833), 1, + ACTIONS(5975), 1, anon_sym_RPAREN, - STATE(2550), 1, + STATE(2511), 1, sym_param_long_flag, STATE(2684), 1, sym__param_name, - STATE(2934), 1, - sym_comment, - STATE(2982), 1, + STATE(2968), 1, aux_sym__repeat_newline, - STATE(3307), 1, + STATE(3007), 1, + sym_comment, + STATE(3389), 1, aux_sym_parameter_parens_repeat1, - STATE(3374), 1, + STATE(3538), 1, sym_param_rest, - STATE(3375), 1, + STATE(3539), 1, sym_param_opt, - STATE(3385), 1, + STATE(3540), 1, sym_param_short_flag, - STATE(3761), 1, + STATE(3803), 1, sym_parameter, - [91938] = 6, + [93996] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5792), 1, - anon_sym_DOT_DOT2, - ACTIONS(5837), 1, + ACTIONS(1615), 1, anon_sym_DASH2, - STATE(2935), 1, + ACTIONS(5895), 1, + anon_sym_DOT_DOT2, + STATE(3008), 1, sym_comment, - ACTIONS(5794), 2, + ACTIONS(5897), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5835), 11, + ACTIONS(1699), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -217565,14 +220473,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [91968] = 3, + [94026] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2936), 1, + STATE(3009), 1, sym_comment, - ACTIONS(1549), 15, + ACTIONS(5308), 15, ts_builtin_sym_end, - anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217584,40 +220491,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_COLON, - anon_sym_DOT2, - [91992] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [94050] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5541), 1, + sym__space, + STATE(2929), 1, + aux_sym_attribute_repeat1, + STATE(3010), 1, + sym_comment, + ACTIONS(5428), 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, + [94078] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1914), 1, + ACTIONS(5895), 1, + anon_sym_DOT_DOT2, + ACTIONS(5979), 1, anon_sym_DASH2, - STATE(2937), 1, + STATE(3011), 1, sym_comment, - ACTIONS(1912), 14, + ACTIONS(5897), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5977), 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, - [92018] = 4, - ACTIONS(103), 1, + [94108] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5275), 1, - anon_sym_EQ2, - STATE(2938), 1, + ACTIONS(843), 1, + sym_raw_string_begin, + ACTIONS(3359), 1, + anon_sym_DQUOTE, + ACTIONS(3361), 1, + anon_sym_SQUOTE, + ACTIONS(3363), 1, + anon_sym_BQUOTE, + ACTIONS(3365), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3367), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5981), 1, + aux_sym_env_var_token1, + STATE(3012), 1, + sym_comment, + STATE(3047), 1, + sym__inter_single_quotes, + STATE(3048), 1, + sym__inter_double_quotes, + STATE(5016), 2, + sym_val_string, + sym_val_interpolated, + STATE(2477), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [94152] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3013), 1, sym_comment, - ACTIONS(5798), 14, + ACTIONS(1553), 15, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, - sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217628,52 +220591,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - anon_sym_COLON2, - [92044] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5839), 1, - sym_identifier, - ACTIONS(5844), 1, - anon_sym_DOLLAR, - ACTIONS(5847), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5850), 1, - anon_sym_DASH_DASH, - ACTIONS(5853), 1, - anon_sym_DASH2, - STATE(2550), 1, - sym_param_long_flag, - STATE(2684), 1, - sym__param_name, - STATE(3374), 1, - sym_param_rest, - STATE(3375), 1, - sym_param_opt, - STATE(3385), 1, - sym_param_short_flag, - STATE(3761), 1, - sym_parameter, - STATE(2939), 2, - sym_comment, - aux_sym_parameter_parens_repeat1, - ACTIONS(5842), 3, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - [92090] = 5, - ACTIONS(3), 1, + anon_sym_COLON, + anon_sym_DOT2, + [94176] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5786), 1, - anon_sym_AT2, - STATE(2940), 1, + ACTIONS(5541), 1, + sym__space, + STATE(2986), 1, + aux_sym_attribute_repeat1, + STATE(3014), 1, sym_comment, - STATE(3263), 1, - sym_param_completer, - ACTIONS(5776), 13, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(5983), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217685,19 +220614,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, - [92118] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [94204] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2652), 1, + ACTIONS(2672), 1, anon_sym_LPAREN2, - ACTIONS(2654), 1, + ACTIONS(2674), 1, sym__unquoted_pattern, - STATE(2941), 1, + STATE(3015), 1, sym_comment, - ACTIONS(2648), 2, + ACTIONS(1699), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2650), 11, + ACTIONS(1615), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217709,19 +220640,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, - [92148] = 6, - ACTIONS(103), 1, + [94234] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5641), 1, - anon_sym_EQ2, - STATE(2942), 1, + ACTIONS(5985), 1, + anon_sym_LT, + STATE(3016), 1, sym_comment, - STATE(3364), 1, - sym__flag_equals_value, - ACTIONS(4530), 2, + ACTIONS(5302), 14, ts_builtin_sym_end, - sym__space, - ACTIONS(4528), 11, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217733,38 +220661,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [92178] = 4, + anon_sym_AT2, + [94260] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2943), 1, + ACTIONS(5934), 1, + anon_sym_and2, + ACTIONS(5938), 1, + anon_sym_xor2, + ACTIONS(5987), 1, + anon_sym_or2, + STATE(3017), 1, sym_comment, - ACTIONS(1580), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1582), 13, - anon_sym_EQ, - sym_identifier, + ACTIONS(5744), 12, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [94290] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5989), 1, + sym_identifier, + ACTIONS(5994), 1, anon_sym_DOLLAR, + ACTIONS(5997), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(6000), 1, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [92204] = 5, + ACTIONS(6003), 1, + anon_sym_DASH2, + STATE(2511), 1, + sym_param_long_flag, + STATE(2684), 1, + sym__param_name, + STATE(3538), 1, + sym_param_rest, + STATE(3539), 1, + sym_param_opt, + STATE(3540), 1, + sym_param_short_flag, + STATE(3803), 1, + sym_parameter, + STATE(3018), 2, + sym_comment, + aux_sym_parameter_parens_repeat1, + ACTIONS(5992), 3, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + [94336] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5653), 1, - sym__space, - STATE(2944), 1, + ACTIONS(1818), 1, + anon_sym_LPAREN2, + STATE(3019), 1, sym_comment, - STATE(3004), 1, - aux_sym_attribute_repeat1, - ACTIONS(5856), 13, + STATE(5066), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5580), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5578), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217776,18 +220742,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, - [92232] = 4, + [94366] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(2945), 1, + ACTIONS(5198), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6006), 1, + anon_sym_DOT, + STATE(3020), 1, sym_comment, - ACTIONS(1870), 3, + ACTIONS(1790), 2, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(1872), 12, + ACTIONS(1792), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217799,20 +220766,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, - [92258] = 6, - ACTIONS(103), 1, + [94396] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1635), 1, - sym__unquoted_pattern, - ACTIONS(1960), 1, - anon_sym_LPAREN2, - STATE(2946), 1, + STATE(3021), 1, sym_comment, - ACTIONS(1956), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1958), 11, + ACTIONS(6008), 15, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217824,20 +220784,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, - [92288] = 7, + anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_RBRACE, + [94420] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5469), 1, - anon_sym_EQ2, - ACTIONS(5858), 1, - ts_builtin_sym_end, - ACTIONS(5860), 1, - sym__space, - STATE(2947), 1, + STATE(3022), 1, sym_comment, - STATE(3064), 1, - aux_sym_attribute_repeat1, - ACTIONS(5465), 11, + ACTIONS(5223), 2, + sym__space, + anon_sym_EQ2, + ACTIONS(5820), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217849,90 +220807,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, - [92320] = 17, + anon_sym_RPAREN, + anon_sym_RBRACE, + [94446] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5819), 1, + ACTIONS(5824), 1, sym_identifier, - ACTIONS(5821), 1, + ACTIONS(5826), 1, sym__newline, - ACTIONS(5825), 1, + ACTIONS(5830), 1, anon_sym_DOLLAR, - ACTIONS(5827), 1, + ACTIONS(5832), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5829), 1, + ACTIONS(5834), 1, anon_sym_DASH_DASH, - ACTIONS(5831), 1, + ACTIONS(5836), 1, anon_sym_DASH2, - ACTIONS(5862), 1, + ACTIONS(6010), 1, anon_sym_RBRACK, - STATE(2550), 1, + STATE(2511), 1, sym_param_long_flag, STATE(2684), 1, sym__param_name, - STATE(2948), 1, + STATE(3023), 1, sym_comment, - STATE(3001), 1, - aux_sym__repeat_newline, - STATE(3272), 1, + STATE(3364), 1, aux_sym_parameter_parens_repeat1, - STATE(3374), 1, + STATE(3537), 1, + aux_sym__repeat_newline, + STATE(3538), 1, sym_param_rest, - STATE(3375), 1, + STATE(3539), 1, sym_param_opt, - STATE(3385), 1, + STATE(3540), 1, sym_param_short_flag, - STATE(3761), 1, + STATE(3803), 1, sym_parameter, - [92372] = 17, + [94498] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5819), 1, - sym_identifier, - ACTIONS(5821), 1, + ACTIONS(1864), 1, sym__newline, - ACTIONS(5825), 1, - anon_sym_DOLLAR, - ACTIONS(5827), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5829), 1, - anon_sym_DASH_DASH, - ACTIONS(5831), 1, - anon_sym_DASH2, - ACTIONS(5864), 1, - anon_sym_RPAREN, - STATE(2550), 1, - sym_param_long_flag, - STATE(2684), 1, - sym__param_name, - STATE(2949), 1, - sym_comment, - STATE(3002), 1, + ACTIONS(6012), 1, + anon_sym_finally, + STATE(485), 1, aux_sym__repeat_newline, - STATE(3353), 1, - aux_sym_parameter_parens_repeat1, - STATE(3374), 1, - sym_param_rest, - STATE(3375), 1, - sym_param_opt, - STATE(3385), 1, - sym_param_short_flag, - STATE(3761), 1, - sym_parameter, - [92424] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2612), 1, - anon_sym_LPAREN2, - ACTIONS(2614), 1, - sym__unquoted_pattern, - STATE(2950), 1, + STATE(3024), 1, sym_comment, - ACTIONS(1713), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1614), 11, - sym__newline, + ACTIONS(1862), 12, + anon_sym_catch, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217943,21 +220867,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, - [92454] = 6, + anon_sym_RPAREN, + [94528] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2120), 1, - anon_sym_DASH2, - ACTIONS(5866), 1, - anon_sym_DOT_DOT2, - STATE(2951), 1, + ACTIONS(5645), 1, + aux_sym__immediate_decimal_token5, + STATE(3025), 1, sym_comment, - ACTIONS(5868), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2118), 11, - anon_sym_EQ, + ACTIONS(1792), 3, sym_identifier, + anon_sym_DASH2, + sym__unquoted_pattern_in_record, + ACTIONS(1790), 11, + anon_sym_EQ, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -217967,19 +220890,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [92484] = 6, + anon_sym_LPAREN2, + [94556] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2656), 1, + ACTIONS(1818), 1, anon_sym_LPAREN2, - ACTIONS(2658), 1, - sym__unquoted_pattern, - STATE(2952), 1, + STATE(3026), 1, sym_comment, - ACTIONS(1022), 2, + STATE(5483), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2136), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1020), 11, + ACTIONS(2138), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217991,19 +220915,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, - [92514] = 6, - ACTIONS(103), 1, + [94586] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2656), 1, - anon_sym_LPAREN2, - ACTIONS(2658), 1, - sym__unquoted_pattern, - STATE(2953), 1, + ACTIONS(5799), 1, + anon_sym_AT2, + STATE(3027), 1, sym_comment, - ACTIONS(1030), 2, + STATE(3369), 1, + sym_param_completer, + ACTIONS(5780), 13, ts_builtin_sym_end, - sym__space, - ACTIONS(994), 11, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218015,12 +220938,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, - [92544] = 3, + [94614] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2954), 1, + ACTIONS(6015), 1, + anon_sym_COLON, + STATE(3028), 1, sym_comment, - ACTIONS(5755), 15, + STATE(3560), 1, + sym_param_type, + STATE(4774), 1, + aux_sym__repeat_newline, + ACTIONS(5543), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -218033,16 +220962,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, - [92568] = 3, + [94644] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2955), 1, + ACTIONS(6017), 1, + anon_sym_LT, + STATE(3029), 1, sym_comment, - ACTIONS(5225), 15, + ACTIONS(5302), 14, ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218054,25 +220983,64 @@ static const uint16_t 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, - [92592] = 7, + anon_sym_AT2, + [94670] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5870), 1, + ACTIONS(6019), 1, + anon_sym_catch, + ACTIONS(6021), 1, + anon_sym_finally, + ACTIONS(6023), 1, sym__newline, - STATE(882), 1, - aux_sym__pipe_separator, - STATE(2956), 1, - sym_comment, - STATE(3546), 1, + STATE(3002), 1, aux_sym__repeat_newline, - ACTIONS(5873), 3, + STATE(3030), 1, + sym_comment, + ACTIONS(6026), 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, + [94702] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3031), 1, + sym_comment, + ACTIONS(6028), 15, + 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_RPAREN, + anon_sym_GT2, anon_sym_RBRACE, - ACTIONS(2325), 9, + [94726] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3032), 1, + sym_comment, + ACTIONS(5300), 2, + sym__space, + anon_sym_EQ2, + ACTIONS(5887), 13, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -218082,18 +221050,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, - [92624] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [94752] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5875), 1, - anon_sym_COLON, - STATE(2957), 1, + STATE(3033), 1, sym_comment, - STATE(3372), 1, - sym_param_type, - STATE(4623), 1, - aux_sym__repeat_newline, - ACTIONS(5673), 12, + ACTIONS(5308), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -218106,51 +221070,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, - [92654] = 17, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [94776] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5819), 1, - sym_identifier, - ACTIONS(5821), 1, + ACTIONS(2481), 1, + sym__space, + STATE(3034), 1, + sym_comment, + ACTIONS(2483), 13, sym__newline, - ACTIONS(5825), 1, - anon_sym_DOLLAR, - ACTIONS(5827), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5829), 1, - anon_sym_DASH_DASH, - ACTIONS(5831), 1, - anon_sym_DASH2, - ACTIONS(5877), 1, + anon_sym_SEMI, anon_sym_PIPE, - STATE(2550), 1, - sym_param_long_flag, - STATE(2684), 1, - sym__param_name, - STATE(2958), 1, - sym_comment, - STATE(3356), 1, - aux_sym_parameter_parens_repeat1, - STATE(3374), 1, - sym_param_rest, - STATE(3375), 1, - sym_param_opt, - STATE(3385), 1, - sym_param_short_flag, - STATE(3400), 1, - aux_sym__repeat_newline, - STATE(3761), 1, - sym_parameter, - [92706] = 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_RPAREN, + anon_sym_RBRACE, + [94801] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5235), 1, - anon_sym_EQ2, - STATE(2959), 1, + ACTIONS(2413), 1, + sym__space, + STATE(3035), 1, sym_comment, - ACTIONS(5879), 14, + ACTIONS(2415), 13, sym__newline, - sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218161,21 +221113,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_COLON2, - [92732] = 6, + [94826] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5213), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(5881), 1, - anon_sym_DOT, - STATE(2960), 1, - sym_comment, - ACTIONS(1744), 2, - ts_builtin_sym_end, + ACTIONS(2417), 1, sym__space, - ACTIONS(1746), 11, + STATE(3036), 1, + sym_comment, + ACTIONS(2419), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218187,16 +221134,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, - [92762] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [94851] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5239), 1, - anon_sym_EQ2, - STATE(2961), 1, + ACTIONS(2421), 1, + sym__space, + STATE(3037), 1, sym_comment, - ACTIONS(5883), 14, + ACTIONS(2423), 13, sym__newline, - sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218207,18 +221155,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_COLON2, - [92788] = 4, - ACTIONS(3), 1, + [94876] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5885), 1, - anon_sym_LT, - STATE(2962), 1, + ACTIONS(2578), 1, + sym__space, + STATE(3038), 1, sym_comment, - ACTIONS(5245), 14, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(2580), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218230,17 +221176,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_AT2, - [92814] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [94901] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5887), 1, - anon_sym_LT, - STATE(2963), 1, + ACTIONS(2437), 1, + sym__space, + STATE(3039), 1, sym_comment, - ACTIONS(5245), 14, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(2439), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218252,19 +221197,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_AT2, - [92840] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [94926] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5786), 1, - anon_sym_AT2, - STATE(2964), 1, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + ACTIONS(1695), 1, + sym__unquoted_pattern, + ACTIONS(2938), 1, + anon_sym_DOLLAR, + STATE(3040), 1, sym_comment, - STATE(3287), 1, - sym_param_completer, - ACTIONS(5772), 13, - ts_builtin_sym_end, - anon_sym_EQ, + STATE(4183), 1, + sym__immediate_decimal, + ACTIONS(6030), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6032), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(807), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1681), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [94963] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2441), 1, + sym__space, + STATE(3041), 1, + sym_comment, + ACTIONS(2443), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218276,13 +221245,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, - [92868] = 3, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [94988] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2965), 1, + ACTIONS(2445), 1, + sym__space, + STATE(3042), 1, sym_comment, - ACTIONS(5603), 15, - ts_builtin_sym_end, + ACTIONS(2447), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218294,52 +221266,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [92892] = 17, + anon_sym_RPAREN, + anon_sym_RBRACE, + [95013] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5819), 1, + ACTIONS(847), 1, + anon_sym_DASH2, + STATE(3043), 1, + sym_comment, + ACTIONS(968), 13, + anon_sym_EQ, sym_identifier, - ACTIONS(5821), 1, sym__newline, - ACTIONS(5825), 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, - ACTIONS(5827), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5829), 1, anon_sym_DASH_DASH, - ACTIONS(5831), 1, + [95038] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1615), 1, anon_sym_DASH2, - ACTIONS(5889), 1, - anon_sym_PIPE, - STATE(2550), 1, - sym_param_long_flag, - STATE(2684), 1, - sym__param_name, - STATE(2958), 1, - aux_sym__repeat_newline, - STATE(2966), 1, + STATE(3044), 1, sym_comment, - STATE(3253), 1, - aux_sym_parameter_parens_repeat1, - STATE(3374), 1, - sym_param_rest, - STATE(3375), 1, - sym_param_opt, - STATE(3385), 1, - sym_param_short_flag, - STATE(3761), 1, - sym_parameter, - [92944] = 3, + ACTIONS(1699), 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, + [95063] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2967), 1, - sym_comment, - ACTIONS(5757), 15, - ts_builtin_sym_end, + ACTIONS(6034), 1, + anon_sym_finally, + ACTIONS(6036), 1, sym__newline, + STATE(3045), 1, + sym_comment, + STATE(3083), 1, + aux_sym__repeat_newline, + ACTIONS(6039), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218350,22 +221332,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [92968] = 6, + anon_sym_RPAREN, + [95092] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5891), 1, - anon_sym_and2, - ACTIONS(5893), 1, - anon_sym_xor2, - ACTIONS(5895), 1, - anon_sym_or2, - STATE(2968), 1, + ACTIONS(2150), 1, + anon_sym_DASH2, + STATE(3046), 1, sym_comment, - ACTIONS(5679), 12, - ts_builtin_sym_end, + ACTIONS(2148), 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, + [95117] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2477), 1, + sym__space, + STATE(3047), 1, + sym_comment, + ACTIONS(2479), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218377,14 +221373,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, - [92998] = 3, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [95142] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2969), 1, + ACTIONS(2477), 1, + sym__space, + STATE(3048), 1, sym_comment, - ACTIONS(1564), 15, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(2479), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218396,22 +221394,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_COLON, - anon_sym_DOT2, - [93022] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [95167] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5897), 1, - anon_sym_and2, - ACTIONS(5899), 1, - anon_sym_xor2, - ACTIONS(5901), 1, - anon_sym_or2, - STATE(2970), 1, - sym_comment, - ACTIONS(5683), 12, - ts_builtin_sym_end, + ACTIONS(1864), 1, sym__newline, + ACTIONS(6041), 1, + anon_sym_finally, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(3049), 1, + sym_comment, + ACTIONS(1862), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218422,75 +221418,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [93052] = 11, + anon_sym_RPAREN, + [95196] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1604), 1, - anon_sym_LPAREN2, - ACTIONS(1635), 1, - sym__unquoted_pattern, - ACTIONS(2873), 1, - anon_sym_DOLLAR, - ACTIONS(5903), 1, - anon_sym_DOT, - STATE(2971), 1, + ACTIONS(2547), 1, + anon_sym_DASH2, + STATE(3050), 1, sym_comment, - STATE(3740), 1, - sym__immediate_decimal, - ACTIONS(5905), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(5907), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3888), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1598), 4, - anon_sym_if, + ACTIONS(2545), 13, + anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, - anon_sym_EQ_GT, - [93092] = 13, + 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, + [95221] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(856), 1, - sym_raw_string_begin, - ACTIONS(3130), 1, - anon_sym_DQUOTE, - ACTIONS(3132), 1, - anon_sym_SQUOTE, - ACTIONS(3134), 1, - anon_sym_BQUOTE, - ACTIONS(3136), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3138), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5909), 1, - aux_sym_env_var_token1, - STATE(2972), 1, + ACTIONS(6044), 1, + anon_sym_finally, + ACTIONS(6046), 1, + sym__newline, + STATE(3051), 1, sym_comment, - STATE(3094), 1, - sym__inter_single_quotes, - STATE(3095), 1, - sym__inter_double_quotes, - STATE(4787), 2, - sym_val_string, - sym_val_interpolated, - STATE(2483), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [93136] = 4, + STATE(3086), 1, + aux_sym__repeat_newline, + ACTIONS(6049), 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, + [95250] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5891), 1, - anon_sym_and2, - STATE(2973), 1, + ACTIONS(2626), 1, + anon_sym_DASH2, + STATE(3052), 1, sym_comment, - ACTIONS(5755), 14, - ts_builtin_sym_end, + ACTIONS(2624), 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, + [95275] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2485), 1, + sym__space, + STATE(3053), 1, + sym_comment, + ACTIONS(2487), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218502,16 +221503,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_xor2, - anon_sym_or2, - [93162] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [95300] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2974), 1, - sym_comment, - ACTIONS(5225), 15, - ts_builtin_sym_end, + ACTIONS(6051), 1, + anon_sym_finally, + ACTIONS(6053), 1, sym__newline, + STATE(3054), 1, + sym_comment, + STATE(3080), 1, + aux_sym__repeat_newline, + ACTIONS(6056), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218522,17 +221527,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [93186] = 3, - ACTIONS(3), 1, + anon_sym_RPAREN, + [95329] = 13, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2975), 1, + ACTIONS(1631), 1, + sym__space, + ACTIONS(1637), 1, + sym__unquoted_pattern, + ACTIONS(3347), 1, + anon_sym_LPAREN2, + ACTIONS(3663), 1, + anon_sym_DOLLAR, + ACTIONS(6058), 1, + anon_sym_DOT, + ACTIONS(6060), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6062), 1, + aux_sym__immediate_decimal_token2, + STATE(3055), 1, sym_comment, - ACTIONS(5911), 15, - anon_sym_else, - anon_sym_catch, + STATE(3845), 1, + sym__immediate_decimal, + ACTIONS(1633), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(6064), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4113), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [95372] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1887), 1, + sym__space, + STATE(3056), 1, + sym_comment, + ACTIONS(1889), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218546,73 +221579,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93210] = 17, + [95397] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5819), 1, + ACTIONS(2553), 1, + anon_sym_DASH2, + STATE(3057), 1, + sym_comment, + ACTIONS(2551), 13, + anon_sym_EQ, sym_identifier, - ACTIONS(5821), 1, sym__newline, - ACTIONS(5825), 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, - ACTIONS(5827), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5829), 1, anon_sym_DASH_DASH, - ACTIONS(5831), 1, - anon_sym_DASH2, - ACTIONS(5913), 1, - anon_sym_RBRACK, - STATE(2550), 1, - sym_param_long_flag, - STATE(2684), 1, - sym__param_name, - STATE(2976), 1, - sym_comment, - STATE(3319), 1, - aux_sym_parameter_parens_repeat1, - STATE(3374), 1, - sym_param_rest, - STATE(3375), 1, - sym_param_opt, - STATE(3385), 1, - sym_param_short_flag, - STATE(3400), 1, - aux_sym__repeat_newline, - STATE(3761), 1, - sym_parameter, - [93262] = 5, + [95422] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5915), 1, - aux_sym__immediate_decimal_token5, - STATE(2977), 1, + ACTIONS(2560), 1, + anon_sym_DASH2, + STATE(3058), 1, sym_comment, - ACTIONS(1854), 3, + ACTIONS(2558), 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, + [95447] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2564), 1, anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(1852), 11, + STATE(3059), 1, + sym_comment, + ACTIONS(2562), 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, - [93290] = 4, + [95472] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2978), 1, - sym_comment, - ACTIONS(5235), 2, + ACTIONS(2527), 1, sym__space, - anon_sym_EQ2, - ACTIONS(5879), 13, + STATE(3060), 1, + sym_comment, + ACTIONS(2529), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218626,13 +221663,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93316] = 3, - ACTIONS(3), 1, + [95497] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2979), 1, + ACTIONS(2531), 1, + sym__space, + STATE(3061), 1, sym_comment, - ACTIONS(5332), 15, - ts_builtin_sym_end, + ACTIONS(2533), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218644,16 +221682,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, - [93340] = 3, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [95522] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2980), 1, + ACTIONS(2664), 1, + sym__space, + STATE(3062), 1, sym_comment, - ACTIONS(5225), 15, - ts_builtin_sym_end, + ACTIONS(2666), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218665,79 +221703,167 @@ static const uint16_t 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, - [93364] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [95547] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2981), 1, + ACTIONS(2411), 1, + anon_sym_DASH2, + STATE(3063), 1, sym_comment, - ACTIONS(1498), 15, - ts_builtin_sym_end, + ACTIONS(2409), 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_DOT2, - [93388] = 17, + 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, + [95572] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5819), 1, + ACTIONS(2415), 1, + anon_sym_DASH2, + STATE(3064), 1, + sym_comment, + ACTIONS(2413), 13, + anon_sym_EQ, sym_identifier, - ACTIONS(5821), 1, sym__newline, - ACTIONS(5825), 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, - ACTIONS(5827), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5829), 1, anon_sym_DASH_DASH, - ACTIONS(5831), 1, + [95597] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2419), 1, anon_sym_DASH2, - ACTIONS(5917), 1, + STATE(3065), 1, + sym_comment, + ACTIONS(2417), 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, - STATE(2550), 1, - sym_param_long_flag, - STATE(2684), 1, - sym__param_name, - STATE(2982), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [95622] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2423), 1, + anon_sym_DASH2, + STATE(3066), 1, sym_comment, - STATE(3321), 1, - aux_sym_parameter_parens_repeat1, - STATE(3374), 1, - sym_param_rest, - STATE(3375), 1, - sym_param_opt, - STATE(3385), 1, - sym_param_short_flag, - STATE(3400), 1, - aux_sym__repeat_newline, - STATE(3761), 1, - sym_parameter, - [93440] = 7, + ACTIONS(2421), 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, + [95647] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5675), 1, + ACTIONS(2439), 1, + anon_sym_DASH2, + STATE(3067), 1, + sym_comment, + ACTIONS(2437), 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, + [95672] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2443), 1, + anon_sym_DASH2, + STATE(3068), 1, + sym_comment, + ACTIONS(2441), 13, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, anon_sym_COLON, - ACTIONS(5919), 1, + 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, + [95697] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2447), 1, + anon_sym_DASH2, + STATE(3069), 1, + sym_comment, + ACTIONS(2445), 13, anon_sym_EQ, - STATE(2983), 1, + 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, + [95722] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5883), 1, + sym__space, + ACTIONS(6066), 1, + ts_builtin_sym_end, + STATE(3070), 1, sym_comment, - STATE(3459), 1, - sym_param_type, - STATE(4776), 1, - aux_sym__repeat_newline, - ACTIONS(5673), 11, + STATE(3089), 1, + aux_sym_attribute_repeat1, + ACTIONS(5942), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218749,16 +221875,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, - [93472] = 4, - ACTIONS(103), 1, + [95751] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5294), 1, - anon_sym_EQ2, - STATE(2984), 1, + ACTIONS(5172), 1, + anon_sym_LPAREN2, + ACTIONS(5946), 1, + anon_sym_DASH2, + STATE(3071), 1, sym_comment, - ACTIONS(5921), 14, + STATE(5003), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5944), 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, + [95780] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5881), 1, + ts_builtin_sym_end, + ACTIONS(5883), 1, sym__space, + STATE(3072), 1, + sym_comment, + STATE(3108), 1, + aux_sym_attribute_repeat1, + ACTIONS(5428), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218769,17 +221921,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - anon_sym_COLON2, - [93498] = 4, + [95809] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5891), 1, - anon_sym_and2, - STATE(2985), 1, + STATE(3073), 1, sym_comment, - ACTIONS(5603), 14, + ACTIONS(5392), 14, ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218791,42 +221940,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_xor2, - anon_sym_or2, - [93524] = 6, + anon_sym_AT2, + [95832] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5792), 1, - anon_sym_DOT_DOT2, - ACTIONS(5925), 1, + ACTIONS(2479), 1, anon_sym_DASH2, - STATE(2986), 1, + STATE(3074), 1, sym_comment, - ACTIONS(5794), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5923), 11, + ACTIONS(2477), 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, - [93554] = 4, - ACTIONS(103), 1, + [95857] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2987), 1, + ACTIONS(2479), 1, + anon_sym_DASH2, + STATE(3075), 1, sym_comment, - ACTIONS(5239), 2, - sym__space, - anon_sym_EQ2, - ACTIONS(5883), 13, + ACTIONS(2477), 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, + [95882] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1864), 1, sym__newline, + ACTIONS(6068), 1, + anon_sym_else, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(3076), 1, + sym_comment, + ACTIONS(1862), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218838,15 +222006,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [93580] = 3, + [95911] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2988), 1, + ACTIONS(2483), 1, + anon_sym_DASH2, + STATE(3077), 1, sym_comment, - ACTIONS(5332), 15, - ts_builtin_sym_end, + ACTIONS(2481), 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, + [95936] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2487), 1, + anon_sym_DASH2, + STATE(3078), 1, + sym_comment, + ACTIONS(2485), 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, + [95961] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6071), 1, + anon_sym_finally, + ACTIONS(6073), 1, sym__newline, + STATE(3079), 1, + sym_comment, + STATE(3091), 1, + aux_sym__repeat_newline, + ACTIONS(6076), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218857,20 +222070,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_and2, - anon_sym_xor2, - anon_sym_or2, - [93604] = 5, + anon_sym_RPAREN, + [95990] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5927), 1, - anon_sym_AT2, - STATE(2989), 1, + ACTIONS(1864), 1, + sym__newline, + ACTIONS(6078), 1, + anon_sym_finally, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(3080), 1, sym_comment, - STATE(3107), 1, - sym_param_completer, - ACTIONS(5772), 13, + ACTIONS(1862), 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, + [96019] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6081), 1, + anon_sym_finally, + ACTIONS(6083), 1, + sym__newline, + STATE(3081), 1, + sym_comment, + STATE(3093), 1, + aux_sym__repeat_newline, + ACTIONS(6086), 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, + [96048] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3082), 1, + sym_comment, + ACTIONS(1907), 14, + 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_RPAREN, + anon_sym_RBRACE, + [96071] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1864), 1, sym__newline, + ACTIONS(6088), 1, + anon_sym_finally, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(3083), 1, + sym_comment, + ACTIONS(1862), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218882,15 +222160,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [93632] = 4, + [96100] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2529), 1, + anon_sym_DASH2, + STATE(3084), 1, + sym_comment, + ACTIONS(2527), 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, + [96125] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2539), 1, + ACTIONS(2533), 1, anon_sym_DASH2, - STATE(2990), 1, + STATE(3085), 1, sym_comment, - ACTIONS(2537), 14, + ACTIONS(2531), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -218902,20 +222200,20 @@ 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, - [93658] = 5, + [96150] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5927), 1, - anon_sym_AT2, - STATE(2991), 1, - sym_comment, - STATE(3168), 1, - sym_param_completer, - ACTIONS(5776), 13, + ACTIONS(6091), 1, + anon_sym_finally, + ACTIONS(6093), 1, sym__newline, + STATE(3086), 1, + sym_comment, + STATE(3095), 1, + aux_sym__repeat_newline, + ACTIONS(6096), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218927,18 +222225,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, - [93686] = 5, + [96179] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5927), 1, - anon_sym_AT2, - STATE(2992), 1, - sym_comment, - STATE(3163), 1, - sym_param_completer, - ACTIONS(5776), 13, + ACTIONS(6098), 1, + anon_sym_finally, + ACTIONS(6100), 1, sym__newline, + STATE(3087), 1, + sym_comment, + STATE(3096), 1, + aux_sym__repeat_newline, + ACTIONS(6103), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218950,17 +222248,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [93714] = 5, + [96208] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5927), 1, - anon_sym_AT2, - STATE(2993), 1, + STATE(3088), 1, sym_comment, - STATE(3195), 1, - sym_param_completer, - ACTIONS(5778), 13, + ACTIONS(2578), 14, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218974,19 +222268,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93742] = 6, + [96231] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1724), 1, - anon_sym_LPAREN2, - STATE(2994), 1, - sym_comment, - STATE(5171), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2130), 2, + ACTIONS(6105), 1, ts_builtin_sym_end, + ACTIONS(6107), 1, sym__space, - ACTIONS(2132), 11, + STATE(3089), 2, + sym_comment, + aux_sym_attribute_repeat1, + ACTIONS(5899), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218998,19 +222290,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, - [93772] = 6, - ACTIONS(103), 1, + [96258] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1724), 1, - anon_sym_LPAREN2, - STATE(2995), 1, + STATE(3090), 1, sym_comment, - STATE(5171), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2184), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2186), 11, + ACTIONS(1887), 14, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219022,16 +222308,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, - [93802] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [96281] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2996), 1, - sym_comment, - ACTIONS(5281), 2, - sym__space, - anon_sym_EQ2, - ACTIONS(5817), 13, + ACTIONS(1864), 1, sym__newline, + ACTIONS(6110), 1, + anon_sym_finally, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(3091), 1, + sym_comment, + ACTIONS(1862), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -219043,16 +222333,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [93828] = 4, + [96310] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5897), 1, - anon_sym_and2, - STATE(2997), 1, + STATE(3092), 1, sym_comment, - ACTIONS(5517), 14, - ts_builtin_sym_end, + ACTIONS(2664), 14, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219064,20 +222351,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_xor2, - anon_sym_or2, - [93854] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [96333] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5891), 1, - anon_sym_and2, - ACTIONS(5893), 1, - anon_sym_xor2, - STATE(2998), 1, - sym_comment, - ACTIONS(5603), 13, - ts_builtin_sym_end, + ACTIONS(6113), 1, + anon_sym_finally, + ACTIONS(6115), 1, sym__newline, + STATE(3093), 1, + sym_comment, + STATE(3097), 1, + aux_sym__repeat_newline, + ACTIONS(6118), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -219088,15 +222375,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_or2, - [93882] = 3, + anon_sym_RPAREN, + [96362] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2999), 1, - sym_comment, - ACTIONS(4758), 15, - ts_builtin_sym_end, + ACTIONS(6120), 1, + anon_sym_finally, + ACTIONS(6122), 1, sym__newline, + STATE(3094), 1, + sym_comment, + STATE(3098), 1, + aux_sym__repeat_newline, + ACTIONS(6125), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -219107,20 +222398,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, - [93906] = 5, - ACTIONS(103), 1, + anon_sym_RPAREN, + [96391] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2088), 1, - sym__space, - ACTIONS(5929), 1, - anon_sym_LBRACK2, - STATE(3000), 1, - sym_comment, - ACTIONS(2090), 13, + ACTIONS(1864), 1, sym__newline, + ACTIONS(6127), 1, + anon_sym_finally, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(3095), 1, + sym_comment, + ACTIONS(1862), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -219132,92 +222422,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, - [93934] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5819), 1, - sym_identifier, - ACTIONS(5821), 1, - sym__newline, - ACTIONS(5825), 1, - anon_sym_DOLLAR, - ACTIONS(5827), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5829), 1, - anon_sym_DASH_DASH, - ACTIONS(5831), 1, - anon_sym_DASH2, - ACTIONS(5931), 1, - anon_sym_RBRACK, - STATE(2550), 1, - sym_param_long_flag, - STATE(2684), 1, - sym__param_name, - STATE(3001), 1, - sym_comment, - STATE(3363), 1, - aux_sym_parameter_parens_repeat1, - STATE(3374), 1, - sym_param_rest, - STATE(3375), 1, - sym_param_opt, - STATE(3385), 1, - sym_param_short_flag, - STATE(3400), 1, - aux_sym__repeat_newline, - STATE(3761), 1, - sym_parameter, - [93986] = 17, + [96420] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5819), 1, - sym_identifier, - ACTIONS(5821), 1, + ACTIONS(6130), 1, + anon_sym_finally, + ACTIONS(6132), 1, sym__newline, - ACTIONS(5825), 1, - anon_sym_DOLLAR, - ACTIONS(5827), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5829), 1, - anon_sym_DASH_DASH, - ACTIONS(5831), 1, - anon_sym_DASH2, - ACTIONS(5933), 1, - anon_sym_RPAREN, - STATE(2550), 1, - sym_param_long_flag, - STATE(2684), 1, - sym__param_name, - STATE(3002), 1, - sym_comment, - STATE(3218), 1, - aux_sym_parameter_parens_repeat1, - STATE(3374), 1, - sym_param_rest, - STATE(3375), 1, - sym_param_opt, - STATE(3385), 1, - sym_param_short_flag, - STATE(3400), 1, - aux_sym__repeat_newline, - STATE(3761), 1, - sym_parameter, - [94038] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5675), 1, - anon_sym_COLON, - ACTIONS(5935), 1, - anon_sym_EQ, - STATE(3003), 1, + STATE(3096), 1, sym_comment, - STATE(3500), 1, - sym_param_type, - STATE(4776), 1, + STATE(3099), 1, aux_sym__repeat_newline, - ACTIONS(5673), 11, - sym__newline, + ACTIONS(6135), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -219228,16 +222444,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, - [94070] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + [96449] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5939), 1, - sym__space, - STATE(3004), 2, - sym_comment, - aux_sym_attribute_repeat1, - ACTIONS(5937), 13, + ACTIONS(1864), 1, sym__newline, + ACTIONS(6137), 1, + anon_sym_finally, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(3097), 1, + sym_comment, + ACTIONS(1862), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -219249,21 +222468,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, - [94096] = 6, - ACTIONS(103), 1, + [96478] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1724), 1, - anon_sym_LPAREN2, - STATE(3005), 1, - sym_comment, - STATE(5171), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2188), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2190), 11, + ACTIONS(6140), 1, + anon_sym_finally, + ACTIONS(6142), 1, sym__newline, + STATE(3098), 1, + sym_comment, + STATE(3101), 1, + aux_sym__repeat_newline, + ACTIONS(6145), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -219274,20 +222490,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, - [94126] = 6, - ACTIONS(103), 1, + anon_sym_RPAREN, + [96507] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1724), 1, - anon_sym_LPAREN2, - STATE(3006), 1, - sym_comment, - STATE(5171), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2178), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2180), 11, + ACTIONS(1864), 1, sym__newline, + ACTIONS(6147), 1, + anon_sym_finally, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(3099), 1, + sym_comment, + ACTIONS(1862), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -219298,42 +222513,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, - [94156] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + [96536] = 13, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1614), 1, - anon_sym_DASH2, - ACTIONS(5792), 1, - anon_sym_DOT_DOT2, - STATE(3007), 1, + ACTIONS(1631), 1, + sym__entry_separator, + ACTIONS(1637), 1, + sym__unquoted_pattern_in_list, + ACTIONS(1798), 1, + anon_sym_DOLLAR, + ACTIONS(6150), 1, + anon_sym_LPAREN2, + ACTIONS(6152), 1, + anon_sym_DOT, + ACTIONS(6154), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6156), 1, + aux_sym__immediate_decimal_token2, + STATE(3100), 1, sym_comment, - ACTIONS(5794), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1713), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, + STATE(3830), 1, + sym__immediate_decimal, + ACTIONS(1633), 2, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [94186] = 5, + anon_sym_DOT_DOT, + ACTIONS(6158), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4150), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [96579] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5897), 1, - anon_sym_and2, - ACTIONS(5899), 1, - anon_sym_xor2, - STATE(3008), 1, - sym_comment, - ACTIONS(5517), 13, - ts_builtin_sym_end, + ACTIONS(1864), 1, sym__newline, + ACTIONS(6160), 1, + anon_sym_finally, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(3101), 1, + sym_comment, + ACTIONS(1862), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -219344,21 +222566,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_or2, - [94214] = 7, + anon_sym_RPAREN, + [96608] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5469), 1, - anon_sym_EQ2, - ACTIONS(5942), 1, - sym__newline, - ACTIONS(5944), 1, + ACTIONS(5883), 1, sym__space, - STATE(3009), 1, + ACTIONS(6163), 1, + ts_builtin_sym_end, + STATE(3070), 1, + aux_sym_attribute_repeat1, + STATE(3102), 1, sym_comment, - STATE(3115), 1, - aux_sym__command_parenthesized_repeat1, - ACTIONS(5946), 11, + ACTIONS(5983), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -219369,20 +222590,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, - [94246] = 6, - ACTIONS(103), 1, + [96637] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1724), 1, - anon_sym_LPAREN2, - STATE(3010), 1, + ACTIONS(6165), 1, + anon_sym_catch, + ACTIONS(6167), 1, + anon_sym_finally, + STATE(3103), 1, sym_comment, - STATE(4807), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5744), 2, + ACTIONS(5910), 12, ts_builtin_sym_end, - sym__space, - ACTIONS(5742), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219394,19 +222612,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, - [94276] = 6, + [96664] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2156), 1, - anon_sym_DASH2, - ACTIONS(5948), 1, - anon_sym_DOT_DOT2, - STATE(3011), 1, + STATE(3104), 1, sym_comment, - ACTIONS(5950), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2154), 11, + ACTIONS(2362), 2, + anon_sym_DASH2, + sym__unquoted_pattern_in_record, + ACTIONS(2360), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -219418,20 +222632,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [94306] = 6, - ACTIONS(103), 1, + anon_sym_LPAREN2, + [96689] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5641), 1, - anon_sym_EQ2, - STATE(3012), 1, + ACTIONS(1615), 1, + anon_sym_DASH2, + ACTIONS(2672), 1, + anon_sym_LPAREN2, + ACTIONS(2674), 1, + sym__unquoted_pattern_in_record, + STATE(3105), 1, sym_comment, - STATE(3341), 1, - sym__flag_equals_value, - ACTIONS(5765), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5763), 11, + ACTIONS(1699), 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, + [96718] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6169), 1, + anon_sym_else, + ACTIONS(6171), 1, sym__newline, + STATE(3106), 1, + sym_comment, + STATE(3164), 1, + aux_sym__repeat_newline, + ACTIONS(6174), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -219442,16 +222678,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, - [94336] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + [96747] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3013), 1, - sym_comment, - ACTIONS(5294), 2, - sym__space, - anon_sym_EQ2, - ACTIONS(5921), 13, + ACTIONS(6176), 1, + anon_sym_else, + ACTIONS(6178), 1, sym__newline, + STATE(3107), 1, + sym_comment, + STATE(3165), 1, + aux_sym__repeat_newline, + ACTIONS(6181), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -219463,16 +222702,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, - [94362] = 4, - ACTIONS(3), 1, + [96776] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5897), 1, - anon_sym_and2, - STATE(3014), 1, - sym_comment, - ACTIONS(5757), 14, + ACTIONS(5883), 1, + sym__space, + ACTIONS(6183), 1, ts_builtin_sym_end, + STATE(3089), 1, + aux_sym_attribute_repeat1, + STATE(3108), 1, + sym_comment, + ACTIONS(5840), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219484,20 +222725,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_xor2, - anon_sym_or2, - [94388] = 5, + [96805] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5891), 1, - anon_sym_and2, - ACTIONS(5893), 1, - anon_sym_xor2, - STATE(3015), 1, - sym_comment, - ACTIONS(5755), 13, - ts_builtin_sym_end, + ACTIONS(6185), 1, + anon_sym_else, + ACTIONS(6187), 1, sym__newline, + STATE(3109), 1, + sym_comment, + STATE(3166), 1, + aux_sym__repeat_newline, + ACTIONS(6190), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -219508,63 +222747,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_or2, - [94416] = 5, + anon_sym_RPAREN, + [96834] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5952), 1, - anon_sym_LBRACK2, - STATE(3016), 1, - sym_comment, - ACTIONS(2090), 2, - anon_sym_LBRACK, + ACTIONS(1637), 1, + sym__unquoted_pattern_in_record, + ACTIONS(1974), 1, anon_sym_DASH2, - ACTIONS(2088), 12, + ACTIONS(1976), 1, + anon_sym_LPAREN2, + STATE(3110), 1, + sym_comment, + ACTIONS(1972), 11, 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, - [94444] = 5, + [96863] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5897), 1, - anon_sym_and2, - ACTIONS(5899), 1, - anon_sym_xor2, - STATE(3017), 1, - sym_comment, - ACTIONS(5757), 13, - ts_builtin_sym_end, + ACTIONS(6192), 1, + anon_sym_finally, + ACTIONS(6194), 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, - [94472] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3018), 1, + STATE(3111), 1, sym_comment, - ACTIONS(2174), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(2176), 13, - sym__newline, + STATE(3171), 1, + aux_sym__repeat_newline, + ACTIONS(6197), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -219576,90 +222794,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [94498] = 6, - ACTIONS(103), 1, + [96892] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1679), 1, - sym__unquoted_pattern, - ACTIONS(2642), 1, + ACTIONS(1986), 1, anon_sym_LPAREN2, - STATE(3019), 1, - sym_comment, - ACTIONS(2541), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2543), 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, - [94528] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5653), 1, - sym__space, - STATE(3004), 1, - aux_sym_attribute_repeat1, - STATE(3020), 1, - sym_comment, - ACTIONS(5954), 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, - [94556] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(886), 1, - sym__space, - ACTIONS(5071), 1, - sym__unquoted_pattern, - STATE(3021), 1, + ACTIONS(1992), 1, + sym__unquoted_pattern_in_record, + ACTIONS(2654), 1, + anon_sym_DASH2, + STATE(3112), 1, sym_comment, - ACTIONS(866), 13, + ACTIONS(2652), 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, - [94584] = 5, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [96921] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5587), 1, - aux_sym__immediate_decimal_token5, - STATE(3022), 1, - sym_comment, - ACTIONS(1746), 3, - sym_identifier, + ACTIONS(1984), 1, anon_sym_DASH2, + ACTIONS(1986), 1, + anon_sym_LPAREN2, + ACTIONS(1992), 1, sym__unquoted_pattern_in_record, - ACTIONS(1744), 11, + STATE(3113), 1, + sym_comment, + ACTIONS(1982), 11, anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -219669,125 +222840,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [94612] = 4, - ACTIONS(103), 1, + [96950] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1713), 1, - sym__space, - STATE(3023), 1, + ACTIONS(1695), 1, + sym__unquoted_pattern_in_record, + ACTIONS(2574), 1, + anon_sym_DASH2, + ACTIONS(2576), 1, + anon_sym_LPAREN2, + STATE(3114), 1, sym_comment, - ACTIONS(1614), 13, + ACTIONS(2572), 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, - [94637] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [96979] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2535), 1, + ACTIONS(2610), 1, anon_sym_DASH2, - STATE(3024), 1, + ACTIONS(2612), 1, + anon_sym_LPAREN2, + ACTIONS(2614), 1, + sym__unquoted_pattern_in_record, + STATE(3115), 1, sym_comment, - ACTIONS(2533), 13, + ACTIONS(2608), 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, - [94662] = 6, + [97008] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1968), 1, - sym__newline, - ACTIONS(5956), 1, - anon_sym_else, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(3025), 1, - sym_comment, - ACTIONS(1966), 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, - [94691] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3026), 1, - sym_comment, - ACTIONS(2174), 3, - ts_builtin_sym_end, - sym__space, + ACTIONS(1605), 1, anon_sym_LPAREN2, - ACTIONS(2176), 11, + ACTIONS(1637), 1, + sym__unquoted_pattern, + ACTIONS(2938), 1, + anon_sym_DOLLAR, + ACTIONS(6199), 1, + anon_sym_DOT, + STATE(3116), 1, + sym_comment, + STATE(3868), 1, + sym__immediate_decimal, + ACTIONS(6201), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6203), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3899), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1631), 3, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [94716] = 4, + anon_sym_EQ_GT, + [97047] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2242), 1, + ACTIONS(2618), 1, anon_sym_DASH2, - STATE(3027), 1, + ACTIONS(2620), 1, + anon_sym_LPAREN2, + ACTIONS(2622), 1, + sym__unquoted_pattern_in_record, + STATE(3117), 1, sym_comment, - ACTIONS(2240), 13, + ACTIONS(2616), 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, - [94741] = 5, - ACTIONS(3), 1, + [97076] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5959), 1, - anon_sym_AT2, - STATE(3028), 1, + ACTIONS(5118), 1, + sym__unquoted_pattern, + STATE(3118), 1, sym_comment, - STATE(3287), 1, - sym_param_completer, - ACTIONS(5772), 12, + ACTIONS(968), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(847), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219799,56 +222959,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [94768] = 4, + [97103] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2246), 1, + ACTIONS(1012), 1, anon_sym_DASH2, - STATE(3029), 1, + ACTIONS(2632), 1, + anon_sym_LPAREN2, + ACTIONS(2634), 1, + sym__unquoted_pattern_in_record, + STATE(3119), 1, sym_comment, - ACTIONS(2244), 13, + ACTIONS(1226), 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, - [94793] = 4, + [97132] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2575), 1, + ACTIONS(1020), 1, anon_sym_DASH2, - STATE(3030), 1, + ACTIONS(2632), 1, + anon_sym_LPAREN2, + ACTIONS(2634), 1, + sym__unquoted_pattern_in_record, + STATE(3120), 1, sym_comment, - ACTIONS(2573), 13, + ACTIONS(1234), 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, - [94818] = 3, - ACTIONS(3), 1, + [97161] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3031), 1, + STATE(3121), 1, sym_comment, - ACTIONS(5255), 14, + ACTIONS(5249), 3, ts_builtin_sym_end, - anon_sym_EQ, + sym__space, + anon_sym_EQ2, + ACTIONS(5818), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219860,17 +223026,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_LBRACE, - [94841] = 4, - ACTIONS(103), 1, + [97186] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5963), 1, - sym__space, - STATE(3032), 1, - sym_comment, - ACTIONS(5961), 13, + ACTIONS(5861), 1, sym__newline, + STATE(728), 1, + aux_sym__pipe_separator, + STATE(3122), 1, + sym_comment, + STATE(3592), 1, + aux_sym__repeat_newline, + ACTIONS(5864), 2, + ts_builtin_sym_end, anon_sym_SEMI, + ACTIONS(2318), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -219880,16 +223050,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, - [94866] = 4, + [97217] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1912), 1, - sym__space, - STATE(3033), 1, + STATE(3123), 1, sym_comment, - ACTIONS(1914), 13, + ACTIONS(5298), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_EQ2, + ACTIONS(5885), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219901,16 +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, - anon_sym_RPAREN, - anon_sym_RBRACE, - [94891] = 4, + [97242] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2581), 1, - sym__space, - STATE(3034), 1, + STATE(3124), 1, sym_comment, - ACTIONS(2583), 13, + ACTIONS(5300), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_EQ2, + ACTIONS(5887), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219922,21 +223092,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, - [94916] = 5, + [97267] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5959), 1, - anon_sym_AT2, - STATE(3035), 1, + ACTIONS(5794), 1, + sym__newline, + STATE(728), 1, + aux_sym__pipe_separator, + STATE(3125), 1, sym_comment, - STATE(3268), 1, - sym_param_completer, - ACTIONS(5776), 12, + STATE(3592), 1, + aux_sym__repeat_newline, + ACTIONS(5797), 2, ts_builtin_sym_end, - sym__newline, anon_sym_SEMI, + ACTIONS(2318), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -219946,36 +223116,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, - [94943] = 5, + [97298] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1971), 1, - aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(5965), 1, - sym__newline, - STATE(3036), 2, - aux_sym__repeat_newline, - sym_comment, - ACTIONS(1966), 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, - [94970] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2593), 1, - sym__space, - STATE(3037), 1, + STATE(3126), 1, sym_comment, - ACTIONS(2595), 13, + ACTIONS(5302), 14, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219987,20 +223135,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, - [94995] = 6, + anon_sym_AT2, + [97321] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5968), 1, - anon_sym_else, - ACTIONS(5970), 1, - sym__newline, - STATE(3038), 1, + STATE(3127), 1, sym_comment, - STATE(3080), 1, - aux_sym__repeat_newline, - ACTIONS(5973), 11, + ACTIONS(5442), 14, + ts_builtin_sym_end, + anon_sym_EQ, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -220011,42 +223155,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, - [95024] = 10, + anon_sym_AT2, + [97344] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1604), 1, - anon_sym_LPAREN2, - ACTIONS(1635), 1, - sym__unquoted_pattern, - ACTIONS(2873), 1, - anon_sym_DOLLAR, - STATE(3039), 1, + STATE(3128), 1, sym_comment, - STATE(4195), 1, - sym__immediate_decimal, - ACTIONS(5975), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(5977), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(730), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1598), 4, - anon_sym_if, + ACTIONS(1580), 14, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_EQ_GT, - [95061] = 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_COLON, + [97367] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4682), 1, + ACTIONS(6207), 1, sym__space, - STATE(3040), 1, + STATE(3129), 1, sym_comment, - ACTIONS(4680), 13, + ACTIONS(6205), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220060,16 +223197,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [95086] = 4, + [97392] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3041), 1, - sym_comment, - ACTIONS(2142), 3, - ts_builtin_sym_end, + ACTIONS(5511), 1, sym__space, - anon_sym_LPAREN2, - ACTIONS(2144), 11, + STATE(3130), 1, + sym_comment, + ACTIONS(5509), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220081,18 +223216,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, - [95111] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [97417] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5979), 1, - anon_sym_catch, - ACTIONS(5981), 1, - sym__newline, - STATE(3042), 1, + ACTIONS(6211), 1, + sym__space, + STATE(3131), 1, sym_comment, - STATE(3086), 1, - aux_sym__repeat_newline, - ACTIONS(5984), 11, + ACTIONS(6209), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -220104,18 +223238,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [95140] = 6, - ACTIONS(3), 1, + anon_sym_RBRACE, + [97442] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5986), 1, - anon_sym_catch, - ACTIONS(5988), 1, - sym__newline, - STATE(3043), 1, + ACTIONS(6215), 1, + sym__space, + STATE(3132), 1, sym_comment, - STATE(3088), 1, - aux_sym__repeat_newline, - ACTIONS(5991), 11, + ACTIONS(6213), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -220127,14 +223259,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [95169] = 3, - ACTIONS(3), 1, + anon_sym_RBRACE, + [97467] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3044), 1, + ACTIONS(6219), 1, + sym__space, + STATE(3133), 1, sym_comment, - ACTIONS(5281), 14, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(6217), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220146,15 +223279,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_LBRACE, - [95192] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [97492] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2196), 1, + ACTIONS(6223), 1, sym__space, - STATE(3045), 1, + STATE(3134), 1, sym_comment, - ACTIONS(2198), 13, + ACTIONS(6221), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220168,18 +223302,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [95217] = 6, + [97517] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5858), 1, - ts_builtin_sym_end, - ACTIONS(5860), 1, + ACTIONS(6227), 1, sym__space, - STATE(3046), 1, + STATE(3135), 1, sym_comment, - STATE(3064), 1, - aux_sym_attribute_repeat1, - ACTIONS(5465), 11, + ACTIONS(6225), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220191,166 +223321,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [95246] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [97542] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5993), 1, - anon_sym_AT2, - ACTIONS(5995), 1, - anon_sym_DASH2, - STATE(3047), 1, + ACTIONS(5580), 1, + sym__space, + STATE(3136), 1, sym_comment, - STATE(3407), 1, - sym_param_completer, - ACTIONS(5776), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(5578), 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, - [95275] = 4, + anon_sym_RBRACE, + [97567] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2278), 1, - anon_sym_DASH2, - STATE(3048), 1, + STATE(3137), 1, sym_comment, - ACTIONS(2276), 13, + ACTIONS(1732), 2, + anon_sym_DASH2, + sym__unquoted_pattern_in_record, + ACTIONS(1730), 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, - [95300] = 4, + anon_sym_LPAREN2, + [97592] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2278), 1, - anon_sym_DASH2, - STATE(3049), 1, + STATE(3138), 1, sym_comment, - ACTIONS(2276), 13, + ACTIONS(1848), 2, + anon_sym_DASH2, + sym__unquoted_pattern_in_record, + ACTIONS(1846), 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, - [95325] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2240), 1, - sym__space, - STATE(3050), 1, - sym_comment, - ACTIONS(2242), 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, - [95350] = 3, + anon_sym_LPAREN2, + [97617] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3051), 1, + STATE(3139), 1, sym_comment, - ACTIONS(5677), 14, - ts_builtin_sym_end, - 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, - [95373] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2284), 1, + ACTIONS(1897), 2, anon_sym_DASH2, - STATE(3052), 1, - sym_comment, - ACTIONS(2282), 13, + sym__unquoted_pattern_in_record, + ACTIONS(1895), 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, - [95398] = 4, + anon_sym_LPAREN2, + [97642] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2288), 1, + ACTIONS(5172), 1, + anon_sym_LPAREN2, + ACTIONS(5979), 1, anon_sym_DASH2, - STATE(3053), 1, + STATE(3140), 1, sym_comment, - ACTIONS(2286), 13, + STATE(5003), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5977), 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, - [95423] = 6, + [97671] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5997), 1, - anon_sym_catch, - ACTIONS(5999), 1, - sym__newline, - STATE(3043), 1, - aux_sym__repeat_newline, - STATE(3054), 1, + STATE(3141), 1, sym_comment, - ACTIONS(6002), 11, + ACTIONS(6229), 14, + anon_sym_finally, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -220362,13 +223449,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [95452] = 3, + anon_sym_RBRACE, + [97694] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3055), 1, + ACTIONS(6231), 1, + anon_sym_finally, + STATE(3142), 1, sym_comment, - ACTIONS(1912), 14, - anon_sym_EQ, + ACTIONS(6233), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220382,87 +223471,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [95475] = 10, + [97719] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1604), 1, - anon_sym_LPAREN2, - ACTIONS(1679), 1, - sym__unquoted_pattern, - ACTIONS(2873), 1, - anon_sym_DOLLAR, - STATE(3056), 1, + ACTIONS(5292), 1, + anon_sym_DOT, + ACTIONS(5294), 1, + aux_sym__immediate_decimal_token5, + STATE(3143), 1, sym_comment, - STATE(4191), 1, - sym__immediate_decimal, - ACTIONS(5975), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(5977), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(748), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1651), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [95512] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2292), 1, + ACTIONS(1792), 2, + sym_identifier, anon_sym_DASH2, - STATE(3057), 1, - sym_comment, - ACTIONS(2290), 13, + ACTIONS(1790), 10, 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, - [95537] = 4, + [97748] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2296), 1, - anon_sym_DASH2, - STATE(3058), 1, + STATE(3144), 1, sym_comment, - ACTIONS(2294), 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, - [95562] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5860), 1, - sym__space, - ACTIONS(6004), 1, + ACTIONS(5358), 14, ts_builtin_sym_end, - STATE(3059), 1, - sym_comment, - STATE(3131), 1, - aux_sym_attribute_repeat1, - ACTIONS(5782), 11, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220474,39 +223513,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, - [95591] = 6, + anon_sym_AT2, + [97771] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5993), 1, - anon_sym_AT2, - ACTIONS(6006), 1, - anon_sym_DASH2, - STATE(3060), 1, + STATE(3145), 1, sym_comment, - STATE(3480), 1, - sym_param_completer, - ACTIONS(5772), 11, + ACTIONS(5403), 14, + ts_builtin_sym_end, anon_sym_EQ, - sym_identifier, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [95620] = 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_AT2, + [97794] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3061), 1, - sym_comment, - ACTIONS(5281), 3, - ts_builtin_sym_end, + ACTIONS(6237), 1, sym__space, - anon_sym_EQ2, - ACTIONS(5817), 11, + STATE(3146), 1, + sym_comment, + ACTIONS(6235), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220518,21 +223553,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, - [95645] = 7, + anon_sym_RPAREN, + anon_sym_RBRACE, + [97819] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5800), 1, - sym__newline, - STATE(882), 1, - aux_sym__pipe_separator, - STATE(3062), 1, + STATE(3147), 1, sym_comment, - STATE(3546), 1, - aux_sym__repeat_newline, - ACTIONS(5803), 2, - ts_builtin_sym_end, + ACTIONS(6239), 14, + anon_sym_EQ, + sym__newline, anon_sym_SEMI, - ACTIONS(2325), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -220542,13 +223573,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, - [95676] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [97842] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3063), 1, + STATE(3148), 1, sym_comment, - ACTIONS(2537), 14, - anon_sym_EQ, + ACTIONS(6241), 14, + anon_sym_finally, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220562,18 +223595,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [95699] = 6, + [97865] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5860), 1, + ACTIONS(6246), 1, sym__space, - ACTIONS(6008), 1, - ts_builtin_sym_end, - STATE(3064), 1, + STATE(3149), 1, sym_comment, - STATE(3097), 1, - aux_sym_attribute_repeat1, - ACTIONS(5954), 11, + ACTIONS(6244), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220585,14 +223614,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, - [95728] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [97890] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2244), 1, - sym__space, - STATE(3065), 1, + ACTIONS(6248), 1, + anon_sym_AT2, + STATE(3150), 1, sym_comment, - ACTIONS(2246), 13, + STATE(3302), 1, + sym_param_completer, + ACTIONS(5774), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220604,18 +223638,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [95753] = 4, - ACTIONS(103), 1, + [97917] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3066), 1, + STATE(3151), 1, sym_comment, - ACTIONS(5255), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_EQ2, - ACTIONS(5815), 11, + ACTIONS(6250), 14, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220627,14 +223656,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, - [95778] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [97940] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2573), 1, - sym__space, - STATE(3067), 1, + STATE(3152), 1, sym_comment, - ACTIONS(2575), 13, + ACTIONS(6250), 14, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220648,16 +223678,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [95803] = 5, + [97963] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6010), 1, - anon_sym_LT, - ACTIONS(6012), 1, + ACTIONS(5172), 1, + anon_sym_LPAREN2, + ACTIONS(6254), 1, anon_sym_DASH2, - STATE(3068), 1, + STATE(3153), 1, sym_comment, - ACTIONS(5245), 12, + STATE(5277), 1, + sym__expr_parenthesized_immediate, + ACTIONS(6252), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -220667,19 +223699,20 @@ 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, - [95830] = 5, + [97992] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6012), 1, + ACTIONS(5172), 1, + anon_sym_LPAREN2, + ACTIONS(6258), 1, anon_sym_DASH2, - ACTIONS(6014), 1, - anon_sym_LT, - STATE(3069), 1, + STATE(3154), 1, sym_comment, - ACTIONS(5245), 12, + STATE(5277), 1, + sym__expr_parenthesized_immediate, + ACTIONS(6256), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -220689,18 +223722,20 @@ 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, - [95857] = 4, - ACTIONS(103), 1, + [98021] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4718), 1, - sym__space, - STATE(3070), 1, - sym_comment, - ACTIONS(4716), 13, + ACTIONS(6260), 1, + anon_sym_else, + ACTIONS(6262), 1, sym__newline, + STATE(3109), 1, + aux_sym__repeat_newline, + STATE(3155), 1, + sym_comment, + ACTIONS(6265), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -220712,15 +223747,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [95882] = 4, - ACTIONS(103), 1, + [98050] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4722), 1, - sym__space, - STATE(3071), 1, + STATE(3156), 1, sym_comment, - ACTIONS(4720), 13, + ACTIONS(6267), 14, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220734,14 +223767,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [95907] = 4, - ACTIONS(103), 1, + [98073] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4732), 1, - sym__space, - STATE(3072), 1, + ACTIONS(6248), 1, + anon_sym_AT2, + STATE(3157), 1, sym_comment, - ACTIONS(4730), 13, + STATE(3297), 1, + sym_param_completer, + ACTIONS(5778), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220753,40 +223789,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, + [98100] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5172), 1, + anon_sym_LPAREN2, + ACTIONS(6271), 1, + anon_sym_DASH2, + STATE(3158), 1, + sym_comment, + STATE(5277), 1, + sym__expr_parenthesized_immediate, + ACTIONS(6269), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [95932] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [98129] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6016), 1, - anon_sym_catch, - STATE(3073), 1, + ACTIONS(5172), 1, + anon_sym_LPAREN2, + ACTIONS(6275), 1, + anon_sym_DASH2, + STATE(3159), 1, sym_comment, - ACTIONS(6018), 13, + STATE(5277), 1, + sym__expr_parenthesized_immediate, + ACTIONS(6273), 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, - [95957] = 5, - ACTIONS(103), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [98158] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5160), 1, - sym__unquoted_pattern, - STATE(3074), 1, + STATE(3160), 1, sym_comment, - ACTIONS(886), 2, + ACTIONS(5283), 14, ts_builtin_sym_end, - sym__space, - ACTIONS(866), 11, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220798,21 +223854,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, - [95984] = 7, + anon_sym_LBRACE, + [98181] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6020), 1, - sym__newline, - STATE(791), 1, - aux_sym__pipe_separator, - STATE(3075), 1, + STATE(3161), 1, sym_comment, - STATE(3546), 1, - aux_sym__repeat_newline, - ACTIONS(6023), 2, + ACTIONS(5223), 14, + ts_builtin_sym_end, + anon_sym_EQ, + sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - ACTIONS(2325), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -220822,18 +223874,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, - [96015] = 6, + anon_sym_LBRACE, + [98204] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6025), 1, - anon_sym_else, - ACTIONS(6027), 1, - sym__newline, - STATE(3076), 1, + STATE(3162), 1, sym_comment, - STATE(3083), 1, - aux_sym__repeat_newline, - ACTIONS(6030), 11, + ACTIONS(5249), 14, + ts_builtin_sym_end, + anon_sym_EQ, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -220844,16 +223894,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, - [96044] = 4, - ACTIONS(103), 1, + anon_sym_LBRACE, + [98227] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2204), 1, - sym__space, - STATE(3077), 1, - sym_comment, - ACTIONS(2206), 13, + ACTIONS(6277), 1, + anon_sym_else, + ACTIONS(6279), 1, sym__newline, + STATE(3163), 1, + sym_comment, + STATE(3236), 1, + aux_sym__repeat_newline, + ACTIONS(6282), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -220865,46 +223918,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, - [96069] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1604), 1, - anon_sym_LPAREN2, - ACTIONS(1643), 1, - anon_sym_DOT, - ACTIONS(2873), 1, - anon_sym_DOLLAR, - STATE(3078), 1, - sym_comment, - STATE(3879), 1, - sym__immediate_decimal, - ACTIONS(5905), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(5907), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3876), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1639), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [96106] = 6, + [98256] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6032), 1, + ACTIONS(6284), 1, anon_sym_else, - ACTIONS(6034), 1, + ACTIONS(6286), 1, sym__newline, - STATE(3079), 1, + STATE(3164), 1, sym_comment, - STATE(3090), 1, + STATE(3238), 1, aux_sym__repeat_newline, - ACTIONS(6037), 11, + ACTIONS(6289), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -220916,18 +223941,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [96135] = 6, + [98285] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6039), 1, + ACTIONS(6291), 1, anon_sym_else, - ACTIONS(6041), 1, + ACTIONS(6293), 1, sym__newline, - STATE(3080), 1, + STATE(3165), 1, sym_comment, - STATE(3111), 1, + STATE(3240), 1, aux_sym__repeat_newline, - ACTIONS(6044), 11, + ACTIONS(6296), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -220939,14 +223964,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [96164] = 3, + [98314] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3081), 1, - sym_comment, - ACTIONS(1862), 14, - anon_sym_EQ, + ACTIONS(1864), 1, sym__newline, + ACTIONS(6298), 1, + anon_sym_else, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(3166), 1, + sym_comment, + ACTIONS(1862), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -220958,19 +223987,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, - [96187] = 6, + [98343] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6046), 1, - anon_sym_else, - ACTIONS(6048), 1, + ACTIONS(6301), 1, + anon_sym_finally, + ACTIONS(6303), 1, sym__newline, - STATE(3082), 1, - sym_comment, - STATE(3170), 1, + STATE(3054), 1, aux_sym__repeat_newline, - ACTIONS(6051), 11, + STATE(3167), 1, + sym_comment, + ACTIONS(6306), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -220982,18 +224010,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [96216] = 6, + [98372] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6053), 1, - anon_sym_else, - ACTIONS(6055), 1, + ACTIONS(6308), 1, + anon_sym_finally, + ACTIONS(6310), 1, sym__newline, - STATE(3083), 1, - sym_comment, - STATE(3193), 1, + STATE(3079), 1, aux_sym__repeat_newline, - ACTIONS(6058), 11, + STATE(3168), 1, + sym_comment, + ACTIONS(6313), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221005,14 +224033,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [96245] = 3, - ACTIONS(3), 1, + [98401] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3084), 1, - sym_comment, - ACTIONS(2620), 14, - anon_sym_EQ, + ACTIONS(5786), 1, sym__newline, + ACTIONS(5788), 1, + sym__space, + STATE(3169), 1, + sym_comment, + STATE(3177), 1, + aux_sym__command_parenthesized_repeat1, + ACTIONS(6315), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221024,16 +224056,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, - [96268] = 4, - ACTIONS(103), 1, + [98430] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6062), 1, - sym__space, - STATE(3085), 1, - sym_comment, - ACTIONS(6060), 13, + ACTIONS(6317), 1, + anon_sym_finally, + ACTIONS(6319), 1, sym__newline, + STATE(3045), 1, + aux_sym__repeat_newline, + STATE(3170), 1, + sym_comment, + ACTIONS(6322), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221045,19 +224079,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, - [96293] = 6, + [98459] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6064), 1, - anon_sym_catch, - ACTIONS(6066), 1, + ACTIONS(6324), 1, + anon_sym_finally, + ACTIONS(6326), 1, sym__newline, - STATE(3086), 1, - sym_comment, - STATE(3118), 1, + STATE(3049), 1, aux_sym__repeat_newline, - ACTIONS(6069), 11, + STATE(3171), 1, + sym_comment, + ACTIONS(6329), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221069,41 +224102,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [96322] = 6, + [98488] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5993), 1, - anon_sym_AT2, - ACTIONS(5995), 1, - anon_sym_DASH2, - STATE(3087), 1, + STATE(3172), 1, sym_comment, - STATE(3437), 1, - sym_param_completer, - ACTIONS(5776), 11, + ACTIONS(5298), 14, + ts_builtin_sym_end, 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, - [96351] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1968), 1, sym__newline, - ACTIONS(6071), 1, - anon_sym_catch, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(3088), 1, - sym_comment, - ACTIONS(1966), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221114,40 +224121,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, - [96380] = 4, + anon_sym_LBRACE, + [98511] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(866), 1, - anon_sym_DASH2, - STATE(3089), 1, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + ACTIONS(1607), 1, + anon_sym_DOT, + ACTIONS(2938), 1, + anon_sym_DOLLAR, + STATE(3173), 1, sym_comment, - ACTIONS(886), 13, - anon_sym_EQ, - sym_identifier, + STATE(3898), 1, + sym__immediate_decimal, + ACTIONS(5857), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(5859), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3897), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1599), 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, - [96405] = 6, + anon_sym_EQ_GT, + [98548] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6074), 1, - anon_sym_else, - ACTIONS(6076), 1, - sym__newline, - STATE(3025), 1, - aux_sym__repeat_newline, - STATE(3090), 1, + STATE(3174), 1, sym_comment, - ACTIONS(6079), 11, + ACTIONS(5300), 14, + ts_builtin_sym_end, + anon_sym_EQ, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221158,82 +224168,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [96434] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1614), 1, - anon_sym_DASH2, - STATE(3091), 1, - sym_comment, - ACTIONS(1713), 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, - [96459] = 4, + anon_sym_LBRACE, + [98571] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2172), 1, + ACTIONS(6331), 1, + anon_sym_AT2, + ACTIONS(6333), 1, anon_sym_DASH2, - STATE(3092), 1, + STATE(3175), 1, sym_comment, - ACTIONS(2170), 13, + STATE(3487), 1, + sym_param_completer, + ACTIONS(5774), 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, - [96484] = 6, + [98600] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5197), 1, - anon_sym_LPAREN2, - ACTIONS(6083), 1, - anon_sym_DASH2, - STATE(3093), 1, - sym_comment, - STATE(5178), 1, - sym__expr_parenthesized_immediate, - ACTIONS(6081), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6335), 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, - [96513] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2276), 1, - sym__space, - STATE(3094), 1, + STATE(727), 1, + aux_sym__pipe_separator, + STATE(3176), 1, sym_comment, - ACTIONS(2278), 13, - sym__newline, + STATE(3592), 1, + aux_sym__repeat_newline, + ACTIONS(6338), 2, anon_sym_SEMI, + anon_sym_RPAREN, + ACTIONS(2318), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -221243,17 +224216,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, - [96538] = 4, + [98631] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2276), 1, + ACTIONS(6340), 1, + sym__newline, + ACTIONS(6343), 1, sym__space, - STATE(3095), 1, + STATE(3177), 2, sym_comment, - ACTIONS(2278), 13, - sym__newline, + aux_sym__command_parenthesized_repeat1, + ACTIONS(6346), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221265,38 +224238,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, - [96563] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3096), 1, - sym_comment, - ACTIONS(5294), 14, - ts_builtin_sym_end, - 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_LBRACE, - [96586] = 5, + [98658] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6085), 1, - ts_builtin_sym_end, - ACTIONS(6087), 1, + ACTIONS(5344), 1, sym__space, - STATE(3097), 2, + STATE(3178), 1, sym_comment, - aux_sym_attribute_repeat1, - ACTIONS(5937), 11, + ACTIONS(5342), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221308,38 +224257,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, - [96613] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [98683] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3098), 1, - sym_comment, - ACTIONS(5275), 3, - ts_builtin_sym_end, + ACTIONS(6350), 1, sym__space, - anon_sym_EQ2, - ACTIONS(5798), 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, - [96638] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5959), 1, - anon_sym_AT2, - STATE(3099), 1, + STATE(3179), 1, sym_comment, - STATE(3263), 1, - sym_param_completer, - ACTIONS(5776), 12, - ts_builtin_sym_end, + ACTIONS(6348), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221351,14 +224278,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, - [96665] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [98708] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2664), 1, + ACTIONS(5356), 1, sym__space, - STATE(3100), 1, + STATE(3180), 1, sym_comment, - ACTIONS(2666), 13, + ACTIONS(5354), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221372,16 +224301,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [96690] = 4, - ACTIONS(103), 1, + [98733] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3101), 1, + STATE(3181), 1, sym_comment, - ACTIONS(5294), 3, + ACTIONS(5257), 14, ts_builtin_sym_end, - sym__space, - anon_sym_EQ2, - ACTIONS(5921), 11, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221393,37 +224320,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, - [96715] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2531), 1, - anon_sym_DASH2, - STATE(3102), 1, - sym_comment, - ACTIONS(2529), 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, - [96740] = 6, + anon_sym_LBRACE, + [98756] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5993), 1, + ACTIONS(6331), 1, anon_sym_AT2, - ACTIONS(6090), 1, + ACTIONS(6352), 1, anon_sym_DASH2, - STATE(3103), 1, + STATE(3182), 1, sym_comment, - STATE(3442), 1, + STATE(3490), 1, sym_param_completer, ACTIONS(5778), 11, anon_sym_EQ, @@ -221437,58 +224344,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [96769] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5231), 1, - anon_sym_DOT, - ACTIONS(5233), 1, - aux_sym__immediate_decimal_token5, - STATE(3104), 1, - sym_comment, - ACTIONS(1746), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(1744), 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, - [96798] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2634), 1, - anon_sym_DASH2, - STATE(3105), 1, - sym_comment, - ACTIONS(2632), 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, - [96823] = 3, + [98785] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3106), 1, + ACTIONS(6248), 1, + anon_sym_AT2, + STATE(3183), 1, sym_comment, - ACTIONS(1582), 14, + STATE(3312), 1, + sym_param_completer, + ACTIONS(5778), 12, ts_builtin_sym_end, - anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221500,14 +224366,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_COLON, - [96846] = 3, - ACTIONS(3), 1, + [98812] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3107), 1, + ACTIONS(6356), 1, + sym__space, + STATE(3184), 1, sym_comment, - ACTIONS(6092), 14, - anon_sym_EQ, + ACTIONS(6354), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221521,37 +224387,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [96869] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5197), 1, - anon_sym_LPAREN2, - ACTIONS(6096), 1, - anon_sym_DASH2, - STATE(3108), 1, - sym_comment, - STATE(5178), 1, - sym__expr_parenthesized_immediate, - ACTIONS(6094), 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, - [96898] = 4, + [98837] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6100), 1, + ACTIONS(6360), 1, sym__space, - STATE(3109), 1, + STATE(3185), 1, sym_comment, - ACTIONS(6098), 13, + ACTIONS(6358), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221565,71 +224408,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [96923] = 13, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1598), 1, - sym__entry_separator, - ACTIONS(1635), 1, - sym__unquoted_pattern_in_list, - ACTIONS(1836), 1, - anon_sym_DOLLAR, - ACTIONS(6102), 1, - anon_sym_LPAREN2, - ACTIONS(6104), 1, - anon_sym_DOT, - ACTIONS(6106), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6108), 1, - aux_sym__immediate_decimal_token2, - STATE(3110), 1, - sym_comment, - STATE(3752), 1, - sym__immediate_decimal, - ACTIONS(1602), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6110), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4023), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [96966] = 6, + [98862] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1968), 1, - sym__newline, - ACTIONS(6112), 1, - anon_sym_else, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(3111), 1, + ACTIONS(6248), 1, + anon_sym_AT2, + STATE(3186), 1, sym_comment, - ACTIONS(1966), 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, - [96995] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5942), 1, + STATE(3369), 1, + sym_param_completer, + ACTIONS(5780), 12, + ts_builtin_sym_end, sym__newline, - ACTIONS(5944), 1, - sym__space, - STATE(3112), 1, - sym_comment, - STATE(3178), 1, - aux_sym__command_parenthesized_repeat1, - ACTIONS(6115), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221640,15 +224430,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, - [97024] = 4, + [98889] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6119), 1, - sym__space, - STATE(3113), 1, + ACTIONS(6362), 1, + anon_sym_LBRACK2, + STATE(3187), 1, sym_comment, - ACTIONS(6117), 13, + ACTIONS(2164), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2166), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221660,16 +224452,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, - [97049] = 4, + [98916] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2608), 1, - sym__space, - STATE(3114), 1, + STATE(3188), 1, sym_comment, - ACTIONS(2610), 13, + ACTIONS(2156), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(2158), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221681,20 +224473,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, - [97074] = 6, + [98941] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5942), 1, + ACTIONS(5786), 1, sym__newline, - ACTIONS(5944), 1, + ACTIONS(5788), 1, sym__space, - STATE(3115), 1, - sym_comment, - STATE(3178), 1, + STATE(3169), 1, aux_sym__command_parenthesized_repeat1, - ACTIONS(6121), 11, + STATE(3189), 1, + sym_comment, + ACTIONS(6364), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221706,65 +224496,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [97103] = 7, + [98970] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6123), 1, + ACTIONS(1867), 1, + aux_sym__where_predicate_lhs_path_head_token1, + ACTIONS(6366), 1, sym__newline, - STATE(791), 1, - aux_sym__pipe_separator, - STATE(3116), 1, - sym_comment, - STATE(3546), 1, + STATE(3190), 2, aux_sym__repeat_newline, - ACTIONS(6126), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - ACTIONS(2325), 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, - [97134] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5197), 1, - anon_sym_LPAREN2, - ACTIONS(5837), 1, - anon_sym_DASH2, - STATE(3117), 1, sym_comment, - STATE(4855), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5835), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1862), 11, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [97163] = 6, - ACTIONS(3), 1, + anon_sym_DASH2, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [98997] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1968), 1, + ACTIONS(5786), 1, sym__newline, - ACTIONS(6128), 1, - anon_sym_catch, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(3118), 1, + ACTIONS(5788), 1, + sym__space, + STATE(3177), 1, + aux_sym__command_parenthesized_repeat1, + STATE(3191), 1, sym_comment, - ACTIONS(1966), 11, + ACTIONS(6369), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221776,15 +224541,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [97192] = 3, - ACTIONS(3), 1, + [99026] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3119), 1, + STATE(3192), 1, sym_comment, - ACTIONS(5813), 14, + ACTIONS(5283), 3, ts_builtin_sym_end, - anon_sym_else, - anon_sym_catch, + sym__space, + anon_sym_EQ2, + ACTIONS(5850), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221796,14 +224562,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, - [97215] = 4, + [99051] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2154), 1, + ACTIONS(4631), 1, sym__space, - STATE(3120), 1, + STATE(3193), 1, sym_comment, - ACTIONS(2156), 13, + ACTIONS(4629), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221817,35 +224583,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [97240] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2610), 1, - anon_sym_DASH2, - STATE(3121), 1, - sym_comment, - ACTIONS(2608), 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, - [97265] = 4, + [99076] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2282), 1, - sym__space, - STATE(3122), 1, + STATE(3194), 1, sym_comment, - ACTIONS(2284), 13, + ACTIONS(2326), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(2328), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221857,16 +224604,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, - [97290] = 4, + [99101] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2286), 1, - sym__space, - STATE(3123), 1, + STATE(3195), 1, sym_comment, - ACTIONS(2288), 13, + ACTIONS(5223), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_EQ2, + ACTIONS(5820), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221878,21 +224625,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, - [97315] = 6, - ACTIONS(103), 1, + [99126] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5942), 1, + ACTIONS(6371), 1, sym__newline, - ACTIONS(5944), 1, - sym__space, - STATE(3112), 1, - aux_sym__command_parenthesized_repeat1, - STATE(3124), 1, + STATE(727), 1, + aux_sym__pipe_separator, + STATE(3196), 1, sym_comment, - ACTIONS(6131), 11, + STATE(3592), 1, + aux_sym__repeat_newline, + ACTIONS(6374), 2, anon_sym_SEMI, + anon_sym_RPAREN, + ACTIONS(2318), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -221902,34 +224649,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, - [97344] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3125), 1, - sym_comment, - ACTIONS(2527), 2, - anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(2525), 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, - [97369] = 3, + [99157] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3126), 1, + STATE(3197), 1, sym_comment, - ACTIONS(5275), 14, + ACTIONS(5633), 14, ts_builtin_sym_end, anon_sym_EQ, sym__newline, @@ -221943,19 +224668,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_LBRACE, - [97392] = 6, + anon_sym_COLON, + [99180] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1614), 1, + ACTIONS(6376), 1, + anon_sym_LT, + ACTIONS(6378), 1, anon_sym_DASH2, - ACTIONS(2612), 1, - anon_sym_LPAREN2, - ACTIONS(2614), 1, - sym__unquoted_pattern_in_record, - STATE(3127), 1, + STATE(3198), 1, sym_comment, - ACTIONS(1713), 11, + ACTIONS(5302), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -221965,20 +224688,19 @@ 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, - [97421] = 6, + [99207] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1635), 1, - sym__unquoted_pattern_in_record, - ACTIONS(1958), 1, + ACTIONS(6378), 1, anon_sym_DASH2, - ACTIONS(1960), 1, - anon_sym_LPAREN2, - STATE(3128), 1, + ACTIONS(6380), 1, + anon_sym_LT, + STATE(3199), 1, sym_comment, - ACTIONS(1956), 11, + ACTIONS(5302), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -221988,16 +224710,17 @@ 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, - [97450] = 4, + [99234] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2533), 1, + ACTIONS(4611), 1, sym__space, - STATE(3129), 1, + STATE(3200), 1, sym_comment, - ACTIONS(2535), 13, + ACTIONS(4609), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222011,14 +224734,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [97475] = 4, + [99259] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6135), 1, + ACTIONS(4600), 1, sym__space, - STATE(3130), 1, + STATE(3201), 1, sym_comment, - ACTIONS(6133), 13, + ACTIONS(4598), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222032,18 +224755,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [97500] = 6, + [99284] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5860), 1, + ACTIONS(4623), 1, sym__space, - ACTIONS(6137), 1, - ts_builtin_sym_end, - STATE(3097), 1, - aux_sym_attribute_repeat1, - STATE(3131), 1, + STATE(3202), 1, sym_comment, - ACTIONS(5856), 11, + ACTIONS(4621), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222055,14 +224774,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, - [97529] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [99309] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2537), 1, + ACTIONS(6384), 1, sym__space, - STATE(3132), 1, + STATE(3203), 1, sym_comment, - ACTIONS(2539), 13, + ACTIONS(6382), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222076,18 +224797,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [97554] = 6, + [99334] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1977), 1, - anon_sym_LPAREN2, - ACTIONS(1983), 1, - sym__unquoted_pattern_in_record, - ACTIONS(2599), 1, + ACTIONS(6331), 1, + anon_sym_AT2, + ACTIONS(6352), 1, anon_sym_DASH2, - STATE(3133), 1, + STATE(3204), 1, sym_comment, - ACTIONS(2597), 11, + STATE(3492), 1, + sym_param_completer, + ACTIONS(5778), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -222099,18 +224820,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [97583] = 6, + [99363] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1975), 1, + ACTIONS(6331), 1, + anon_sym_AT2, + ACTIONS(6386), 1, anon_sym_DASH2, - ACTIONS(1977), 1, - anon_sym_LPAREN2, - ACTIONS(1983), 1, - sym__unquoted_pattern_in_record, - STATE(3134), 1, + STATE(3205), 1, sym_comment, - ACTIONS(1973), 11, + STATE(3493), 1, + sym_param_completer, + ACTIONS(5780), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -222122,41 +224843,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [97612] = 6, + [99392] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1679), 1, - sym__unquoted_pattern_in_record, - ACTIONS(2543), 1, - anon_sym_DASH2, - ACTIONS(2642), 1, - anon_sym_LPAREN2, - STATE(3135), 1, + STATE(3206), 1, sym_comment, - ACTIONS(2541), 11, + ACTIONS(5655), 14, + ts_builtin_sym_end, 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, + [99415] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2170), 1, + sym__space, + STATE(3207), 1, + sym_comment, + ACTIONS(2172), 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_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [97641] = 6, + anon_sym_RBRACE, + [99440] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2591), 1, - anon_sym_DASH2, - ACTIONS(2644), 1, + ACTIONS(5172), 1, anon_sym_LPAREN2, - ACTIONS(2646), 1, - sym__unquoted_pattern_in_record, - STATE(3136), 1, + ACTIONS(5893), 1, + anon_sym_DASH2, + STATE(3208), 1, sym_comment, - ACTIONS(2589), 11, + STATE(5003), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5891), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -222168,14 +224907,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [97670] = 4, + [99469] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5473), 1, + ACTIONS(2405), 1, sym__space, - STATE(3137), 1, + STATE(3209), 1, sym_comment, - ACTIONS(5471), 13, + ACTIONS(2407), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222189,14 +224928,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [97695] = 4, + [99494] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6141), 1, + ACTIONS(2104), 1, sym__space, - STATE(3138), 1, + STATE(3210), 1, sym_comment, - ACTIONS(6139), 13, + ACTIONS(2106), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222210,14 +224949,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [97720] = 4, + [99519] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6145), 1, + ACTIONS(2112), 1, sym__space, - STATE(3139), 1, + STATE(3211), 1, sym_comment, - ACTIONS(6143), 13, + ACTIONS(2114), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222231,14 +224970,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [97745] = 4, + [99544] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6149), 1, + ACTIONS(2120), 1, sym__space, - STATE(3140), 1, + STATE(3212), 1, sym_comment, - ACTIONS(6147), 13, + ACTIONS(2122), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222252,14 +224991,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [97770] = 4, + [99569] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6153), 1, + ACTIONS(2425), 1, sym__space, - STATE(3141), 1, + STATE(3213), 1, sym_comment, - ACTIONS(6151), 13, + ACTIONS(2427), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222273,14 +225012,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [97795] = 4, + [99594] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6157), 1, + ACTIONS(2429), 1, sym__space, - STATE(3142), 1, + STATE(3214), 1, sym_comment, - ACTIONS(6155), 13, + ACTIONS(2431), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222294,14 +225033,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [97820] = 4, + [99619] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5744), 1, + ACTIONS(2433), 1, sym__space, - STATE(3143), 1, + STATE(3215), 1, sym_comment, - ACTIONS(5742), 13, + ACTIONS(2435), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222315,67 +225054,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [97845] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5197), 1, - anon_sym_LPAREN2, - ACTIONS(5790), 1, - anon_sym_DASH2, - STATE(3144), 1, - sym_comment, - STATE(4855), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5788), 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, - [97874] = 11, + [99644] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1604), 1, - anon_sym_LPAREN2, - ACTIONS(1635), 1, - sym__unquoted_pattern, - ACTIONS(2873), 1, - anon_sym_DOLLAR, - ACTIONS(6159), 1, - anon_sym_DOT, - STATE(3145), 1, - sym_comment, - STATE(3870), 1, - sym__immediate_decimal, - ACTIONS(6161), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6163), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3888), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1598), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [97913] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3146), 1, + STATE(3216), 1, sym_comment, - ACTIONS(5235), 3, + ACTIONS(5382), 14, ts_builtin_sym_end, - sym__space, - anon_sym_EQ2, - ACTIONS(5879), 11, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222387,14 +225073,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, - [97938] = 4, - ACTIONS(103), 1, + anon_sym_AT2, + [99667] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2200), 1, - sym__space, - STATE(3147), 1, + STATE(3217), 1, sym_comment, - ACTIONS(2202), 13, + ACTIONS(5384), 14, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222406,16 +225093,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, - [97963] = 4, + anon_sym_AT2, + [99690] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2102), 1, + ACTIONS(2449), 1, sym__space, - STATE(3148), 1, + STATE(3218), 1, sym_comment, - ACTIONS(2104), 13, + ACTIONS(2451), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222429,14 +225115,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [97988] = 3, - ACTIONS(3), 1, + [99715] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3149), 1, + ACTIONS(2453), 1, + sym__space, + STATE(3219), 1, sym_comment, - ACTIONS(5669), 14, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(2455), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222448,17 +225134,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_COLON, - [98011] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [99740] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3150), 1, - sym_comment, - ACTIONS(5239), 3, - ts_builtin_sym_end, + ACTIONS(2457), 1, sym__space, - anon_sym_EQ2, - ACTIONS(5883), 11, + STATE(3220), 1, + sym_comment, + ACTIONS(2459), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222470,37 +225155,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, - [98036] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2650), 1, - anon_sym_DASH2, - ACTIONS(2652), 1, - anon_sym_LPAREN2, - ACTIONS(2654), 1, - sym__unquoted_pattern_in_record, - STATE(3151), 1, - sym_comment, - ACTIONS(2648), 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, - [98065] = 4, + anon_sym_RBRACE, + [99765] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2110), 1, + ACTIONS(2461), 1, sym__space, - STATE(3152), 1, + STATE(3221), 1, sym_comment, - ACTIONS(2112), 13, + ACTIONS(2463), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222514,17 +225178,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [98090] = 5, - ACTIONS(3), 1, + [99790] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5959), 1, - anon_sym_AT2, - STATE(3153), 1, + ACTIONS(2465), 1, + sym__space, + STATE(3222), 1, sym_comment, - STATE(3351), 1, - sym_param_completer, - ACTIONS(5778), 12, - ts_builtin_sym_end, + ACTIONS(2467), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222536,14 +225197,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, - [98117] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [99815] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5416), 1, + ACTIONS(2469), 1, sym__space, - STATE(3154), 1, + STATE(3223), 1, sym_comment, - ACTIONS(5414), 13, + ACTIONS(2471), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222557,14 +225220,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [98142] = 4, + [99840] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2118), 1, + ACTIONS(2473), 1, sym__space, - STATE(3155), 1, + STATE(3224), 1, sym_comment, - ACTIONS(2120), 13, + ACTIONS(2475), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222578,65 +225241,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [98167] = 13, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1598), 1, - sym__space, - ACTIONS(1635), 1, - sym__unquoted_pattern, - ACTIONS(3118), 1, - anon_sym_LPAREN2, - ACTIONS(3683), 1, - anon_sym_DOLLAR, - ACTIONS(6165), 1, - anon_sym_DOT, - ACTIONS(6167), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6169), 1, - aux_sym__immediate_decimal_token2, - STATE(3156), 1, - sym_comment, - STATE(3780), 1, - sym__immediate_decimal, - ACTIONS(1602), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(6171), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4005), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [98210] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1020), 1, - anon_sym_DASH2, - ACTIONS(2656), 1, - anon_sym_LPAREN2, - ACTIONS(2658), 1, - sym__unquoted_pattern_in_record, - STATE(3157), 1, - sym_comment, - ACTIONS(1022), 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, - [98239] = 3, + [99865] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3158), 1, + STATE(3225), 1, sym_comment, - ACTIONS(5245), 14, + ACTIONS(5386), 14, ts_builtin_sym_end, anon_sym_EQ, sym__newline, @@ -222651,14 +225261,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_AT2, - [98262] = 4, + [99888] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1862), 1, + ACTIONS(968), 1, sym__space, - STATE(3159), 1, + STATE(3226), 1, sym_comment, - ACTIONS(1864), 13, + ACTIONS(847), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222672,35 +225282,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [98287] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(994), 1, - anon_sym_DASH2, - ACTIONS(2656), 1, - anon_sym_LPAREN2, - ACTIONS(2658), 1, - sym__unquoted_pattern_in_record, - STATE(3160), 1, - sym_comment, - ACTIONS(1030), 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, - [98316] = 3, + [99913] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3161), 1, + STATE(3227), 1, sym_comment, - ACTIONS(5379), 14, + ACTIONS(5390), 14, ts_builtin_sym_end, anon_sym_EQ, sym__newline, @@ -222715,14 +225302,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_AT2, - [98339] = 3, - ACTIONS(3), 1, + [99936] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3162), 1, - sym_comment, - ACTIONS(5424), 14, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(1699), 1, + sym__space, + STATE(3228), 1, + sym_comment, + ACTIONS(1615), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222734,14 +225321,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_AT2, - [98362] = 3, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [99961] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3163), 1, + ACTIONS(2148), 1, + sym__space, + STATE(3229), 1, sym_comment, - ACTIONS(6173), 14, - anon_sym_EQ, + ACTIONS(2150), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222755,14 +225344,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [98385] = 4, + [99986] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6177), 1, + ACTIONS(2545), 1, sym__space, - STATE(3164), 1, + STATE(3230), 1, sym_comment, - ACTIONS(6175), 13, + ACTIONS(2547), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222776,14 +225365,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [98410] = 4, + [100011] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6181), 1, + ACTIONS(2624), 1, sym__space, - STATE(3165), 1, + STATE(3231), 1, sym_comment, - ACTIONS(6179), 13, + ACTIONS(2626), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222797,14 +225386,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [98435] = 3, + [100036] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(3166), 1, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + ACTIONS(1637), 1, + sym__unquoted_pattern, + ACTIONS(2938), 1, + anon_sym_DOLLAR, + STATE(3232), 1, sym_comment, - ACTIONS(5334), 14, - ts_builtin_sym_end, - anon_sym_EQ, + STATE(4278), 1, + sym__immediate_decimal, + ACTIONS(6030), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6032), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(788), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1631), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [100073] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1907), 1, + sym__space, + STATE(3233), 1, + sym_comment, + ACTIONS(1909), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222816,15 +225432,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_AT2, - [98458] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [100098] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5420), 1, + ACTIONS(2551), 1, sym__space, - STATE(3167), 1, + STATE(3234), 1, sym_comment, - ACTIONS(5418), 13, + ACTIONS(2553), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222838,13 +225455,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [98483] = 3, - ACTIONS(3), 1, + [100123] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3168), 1, + ACTIONS(2558), 1, + sym__space, + STATE(3235), 1, sym_comment, - ACTIONS(6173), 14, - anon_sym_EQ, + ACTIONS(2560), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222858,39 +225476,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [98506] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3169), 1, - sym_comment, - ACTIONS(1772), 2, - anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(1770), 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, - [98531] = 6, + [100148] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6183), 1, + ACTIONS(6388), 1, anon_sym_else, - ACTIONS(6185), 1, + ACTIONS(6390), 1, sym__newline, - STATE(3170), 1, - sym_comment, - STATE(3176), 1, + STATE(3076), 1, aux_sym__repeat_newline, - ACTIONS(6188), 11, + STATE(3236), 1, + sym_comment, + ACTIONS(6393), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -222902,14 +225499,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [98560] = 4, + [100177] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2228), 1, + ACTIONS(2562), 1, sym__space, - STATE(3171), 1, + STATE(3237), 1, sym_comment, - ACTIONS(2230), 13, + ACTIONS(2564), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222923,15 +225520,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [98585] = 4, - ACTIONS(103), 1, + [100202] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2232), 1, - sym__space, - STATE(3172), 1, - sym_comment, - ACTIONS(2234), 13, + ACTIONS(1864), 1, sym__newline, + ACTIONS(6395), 1, + anon_sym_else, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(3238), 1, + sym_comment, + ACTIONS(1862), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -222943,15 +225543,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, - [98610] = 4, + [100231] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2236), 1, + ACTIONS(2409), 1, sym__space, - STATE(3173), 1, + STATE(3239), 1, sym_comment, - ACTIONS(2238), 13, + ACTIONS(2411), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222965,60 +225564,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [98635] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2583), 1, - anon_sym_DASH2, - STATE(3174), 1, - sym_comment, - ACTIONS(2581), 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, - [98660] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2595), 1, - anon_sym_DASH2, - STATE(3175), 1, - sym_comment, - ACTIONS(2593), 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, - [98685] = 6, + [100256] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1968), 1, + ACTIONS(1864), 1, sym__newline, - ACTIONS(6190), 1, + ACTIONS(6398), 1, anon_sym_else, - STATE(527), 1, + STATE(485), 1, aux_sym__repeat_newline, - STATE(3176), 1, + STATE(3240), 1, sym_comment, - ACTIONS(1966), 11, + ACTIONS(1862), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -223030,38 +225587,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [98714] = 4, - ACTIONS(3), 1, + [100285] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3177), 1, + STATE(3241), 1, sym_comment, - ACTIONS(1854), 2, - anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(1852), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(5257), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_EQ2, + ACTIONS(5912), 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, - [98739] = 5, - 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, + [100310] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6193), 1, - sym__newline, - ACTIONS(6196), 1, - sym__space, - STATE(3178), 2, + STATE(3242), 1, sym_comment, - aux_sym__command_parenthesized_repeat1, - ACTIONS(6199), 11, + ACTIONS(6401), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -223073,14 +225626,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [98766] = 4, + anon_sym_RBRACE, + [100332] = 13, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2248), 1, - sym__space, - STATE(3179), 1, + ACTIONS(1631), 1, + sym__entry_separator, + ACTIONS(1633), 1, + anon_sym_RBRACE, + ACTIONS(1637), 1, + sym__unquoted_pattern_in_record, + ACTIONS(1798), 1, + anon_sym_DOLLAR, + ACTIONS(6150), 1, + anon_sym_LPAREN2, + ACTIONS(6403), 1, + anon_sym_DOT, + ACTIONS(6405), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6407), 1, + aux_sym__immediate_decimal_token2, + STATE(3243), 1, + sym_comment, + STATE(3857), 1, + sym__immediate_decimal, + ACTIONS(6409), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4036), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [100374] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5824), 1, + sym_identifier, + ACTIONS(5830), 1, + anon_sym_DOLLAR, + ACTIONS(5832), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5834), 1, + anon_sym_DASH_DASH, + ACTIONS(5836), 1, + anon_sym_DASH2, + ACTIONS(6411), 1, + anon_sym_RBRACK, + STATE(2511), 1, + sym_param_long_flag, + STATE(2684), 1, + sym__param_name, + STATE(3018), 1, + aux_sym_parameter_parens_repeat1, + STATE(3244), 1, + sym_comment, + STATE(3538), 1, + sym_param_rest, + STATE(3539), 1, + sym_param_opt, + STATE(3540), 1, + sym_param_short_flag, + STATE(3803), 1, + sym_parameter, + [100420] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3245), 1, sym_comment, - ACTIONS(2250), 13, + ACTIONS(1907), 13, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223092,39 +225706,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, - [98791] = 6, + [100442] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5197), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, - ACTIONS(5925), 1, - anon_sym_DASH2, - STATE(3180), 1, + ACTIONS(2938), 1, + anon_sym_DOLLAR, + STATE(784), 1, + sym__immediate_decimal, + STATE(3246), 1, sym_comment, - STATE(4855), 1, + ACTIONS(5859), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(6413), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(783), 2, sym__expr_parenthesized_immediate, - ACTIONS(5923), 11, - anon_sym_EQ, - sym_identifier, + sym_val_variable, + ACTIONS(1599), 4, + 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, - [98820] = 4, - ACTIONS(103), 1, + anon_sym_EQ_GT, + [100476] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2252), 1, - sym__space, - STATE(3181), 1, + STATE(3247), 1, sym_comment, - ACTIONS(2254), 13, + ACTIONS(1887), 13, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223136,16 +225750,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [98845] = 4, + [100498] = 12, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2256), 1, - sym__space, - STATE(3182), 1, + ACTIONS(1599), 1, + sym__entry_separator, + ACTIONS(1798), 1, + anon_sym_DOLLAR, + ACTIONS(6150), 1, + anon_sym_LPAREN2, + ACTIONS(6154), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6156), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6415), 1, + anon_sym_DOT, + STATE(3248), 1, + sym_comment, + STATE(4149), 1, + sym__immediate_decimal, + ACTIONS(1603), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6158), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4148), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [100538] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3249), 1, sym_comment, - ACTIONS(2258), 13, + ACTIONS(6229), 13, + ts_builtin_sym_end, + anon_sym_finally, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223157,16 +225797,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, - [98870] = 4, + [100560] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2260), 1, - sym__space, - STATE(3183), 1, + STATE(3250), 1, sym_comment, - ACTIONS(2262), 13, + ACTIONS(4611), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4609), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223178,16 +225817,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, - [98895] = 3, - ACTIONS(3), 1, + [100584] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3184), 1, + STATE(3251), 1, sym_comment, - ACTIONS(5338), 14, + ACTIONS(4600), 2, ts_builtin_sym_end, - anon_sym_EQ, + sym__space, + ACTIONS(4598), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223199,15 +225837,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_AT2, - [98918] = 4, + [100608] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2264), 1, + ACTIONS(6419), 1, sym__space, - STATE(3185), 1, + STATE(3252), 1, sym_comment, - ACTIONS(2266), 13, + ACTIONS(6417), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223220,15 +225857,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, - [98943] = 4, + [100632] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2268), 1, - sym__space, - STATE(3186), 1, + STATE(3253), 1, sym_comment, - ACTIONS(2270), 13, + ACTIONS(4623), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4621), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223240,37 +225877,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [98968] = 4, + [100656] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3187), 1, + STATE(3254), 1, sym_comment, - ACTIONS(1872), 2, - anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(1870), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(6241), 13, + ts_builtin_sym_end, + anon_sym_finally, 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, - [98993] = 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, + [100678] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2272), 1, - sym__space, - STATE(3188), 1, + ACTIONS(6421), 1, + anon_sym_finally, + STATE(3255), 1, sym_comment, - ACTIONS(2274), 13, + ACTIONS(6233), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223282,16 +225916,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, - [99018] = 4, + [100702] = 12, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(886), 1, + ACTIONS(1681), 1, sym__space, - STATE(3189), 1, + ACTIONS(1695), 1, + sym__unquoted_pattern, + ACTIONS(3347), 1, + anon_sym_LPAREN2, + ACTIONS(3663), 1, + anon_sym_DOLLAR, + ACTIONS(6423), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6425), 1, + aux_sym__immediate_decimal_token2, + STATE(3256), 1, sym_comment, - ACTIONS(866), 13, + STATE(4193), 1, + sym__immediate_decimal, + ACTIONS(1683), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(6427), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3224), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [100742] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3257), 1, + sym_comment, + ACTIONS(6429), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223305,35 +225963,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [99043] = 4, + [100764] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2198), 1, - anon_sym_DASH2, - STATE(3190), 1, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + ACTIONS(2938), 1, + anon_sym_DOLLAR, + STATE(802), 1, + sym__immediate_decimal, + STATE(3258), 1, sym_comment, - ACTIONS(2196), 13, - anon_sym_EQ, - sym_identifier, + ACTIONS(5859), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(6413), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(801), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1677), 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_EQ_GT, + [100798] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + ACTIONS(2938), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [99068] = 3, + STATE(804), 1, + sym__immediate_decimal, + STATE(3259), 1, + sym_comment, + ACTIONS(5859), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(6413), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(803), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1659), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [100832] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(3191), 1, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + ACTIONS(2938), 1, + anon_sym_DOLLAR, + STATE(806), 1, + sym__immediate_decimal, + STATE(3260), 1, + sym_comment, + ACTIONS(5859), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(6413), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(805), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1669), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [100866] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3261), 1, sym_comment, - ACTIONS(5422), 14, + ACTIONS(6384), 2, ts_builtin_sym_end, - anon_sym_EQ, + sym__space, + ACTIONS(6382), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223345,15 +226058,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_AT2, - [99091] = 4, - ACTIONS(103), 1, + [100890] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2170), 1, - sym__space, - STATE(3192), 1, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(3262), 1, sym_comment, - ACTIONS(2172), 13, + ACTIONS(5574), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223366,19 +226078,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, - [99116] = 6, + [100914] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1968), 1, - sym__newline, - ACTIONS(6201), 1, - anon_sym_else, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(3193), 1, + STATE(3263), 1, sym_comment, - ACTIONS(1966), 11, + ACTIONS(2578), 13, + ts_builtin_sym_end, + anon_sym_EQ, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -223389,15 +226097,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, - [99145] = 3, + [100936] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3194), 1, + STATE(3264), 1, sym_comment, - ACTIONS(5348), 14, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(6431), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223409,14 +226114,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_AT2, - [99168] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [100958] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3195), 1, + STATE(3265), 1, sym_comment, - ACTIONS(6204), 14, - anon_sym_EQ, + ACTIONS(6433), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223430,14 +226135,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [99191] = 3, + [100980] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3196), 1, + STATE(3266), 1, sym_comment, - ACTIONS(5364), 14, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(6435), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223449,15 +226152,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_AT2, - [99214] = 3, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [101002] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3197), 1, + STATE(3267), 1, sym_comment, - ACTIONS(5377), 14, + ACTIONS(5344), 2, ts_builtin_sym_end, - anon_sym_EQ, + sym__space, + ACTIONS(5342), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223469,15 +226174,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_AT2, - [99237] = 4, + [101026] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2529), 1, - sym__space, - STATE(3198), 1, + STATE(3268), 1, sym_comment, - ACTIONS(2531), 13, + ACTIONS(968), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(847), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223489,16 +226194,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, - [99262] = 4, + [101050] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2632), 1, - sym__space, - STATE(3199), 1, + STATE(3269), 1, sym_comment, - ACTIONS(2634), 13, + ACTIONS(6246), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(6244), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223510,23 +226214,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, - [99287] = 7, - ACTIONS(3), 1, + [101074] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5870), 1, - sym__newline, - STATE(882), 1, - aux_sym__pipe_separator, - STATE(3200), 1, + STATE(3270), 1, sym_comment, - STATE(3546), 1, - aux_sym__repeat_newline, - ACTIONS(5873), 2, + ACTIONS(1699), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(1615), 11, + sym__newline, anon_sym_SEMI, - ACTIONS(2325), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223536,17 +226234,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, - [99318] = 5, + [101098] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6206), 1, - anon_sym_LBRACK2, - STATE(3201), 1, + STATE(3271), 1, sym_comment, - ACTIONS(2088), 2, + ACTIONS(2148), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2090), 11, + ACTIONS(2150), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223558,14 +226254,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, - [99345] = 4, + [101122] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2290), 1, - sym__space, - STATE(3202), 1, + STATE(3272), 1, sym_comment, - ACTIONS(2292), 13, + ACTIONS(6350), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(6348), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223577,16 +226274,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, - [99370] = 4, + [101146] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2294), 1, - sym__space, - STATE(3203), 1, + STATE(3273), 1, sym_comment, - ACTIONS(2296), 13, + ACTIONS(2545), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2547), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223598,16 +226294,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, - [99395] = 4, + [101170] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2620), 1, - sym__space, - STATE(3204), 1, + STATE(3274), 1, sym_comment, - ACTIONS(2622), 13, + ACTIONS(2624), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2626), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223619,60 +226314,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, - [99420] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5197), 1, - anon_sym_LPAREN2, - ACTIONS(6210), 1, - anon_sym_DASH2, - STATE(3205), 1, - sym_comment, - STATE(5178), 1, - sym__expr_parenthesized_immediate, - ACTIONS(6208), 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, - [99449] = 4, + [101194] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2206), 1, - anon_sym_DASH2, - STATE(3206), 1, - sym_comment, - ACTIONS(2204), 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, - [99474] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3207), 1, + STATE(3275), 1, sym_comment, - ACTIONS(5235), 14, - ts_builtin_sym_end, - anon_sym_EQ, + STATE(3391), 1, + aux_sym__repeat_newline, + ACTIONS(5651), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223684,16 +226333,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_LBRACE, - [99497] = 3, - ACTIONS(3), 1, + anon_sym_RPAREN, + [101218] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3208), 1, + STATE(3276), 1, sym_comment, - ACTIONS(5911), 14, + ACTIONS(5356), 2, ts_builtin_sym_end, - anon_sym_else, - anon_sym_catch, + sym__space, + ACTIONS(5354), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223705,14 +226354,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, - [99520] = 3, - ACTIONS(3), 1, + [101242] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3209), 1, + STATE(3277), 1, sym_comment, - ACTIONS(5239), 14, + ACTIONS(2170), 2, ts_builtin_sym_end, - anon_sym_EQ, + sym__space, + ACTIONS(2172), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223724,19 +226374,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, + [101266] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1968), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(3278), 1, + sym_comment, + ACTIONS(1966), 12, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + sym__newline, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, anon_sym_LBRACE, - [99543] = 6, + aux_sym_expr_unary_token1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [101290] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5197), 1, - anon_sym_LPAREN2, - ACTIONS(6214), 1, + ACTIONS(847), 1, anon_sym_DASH2, - STATE(3210), 1, + ACTIONS(5182), 1, + sym__unquoted_pattern_in_record, + STATE(3279), 1, sym_comment, - STATE(5178), 1, - sym__expr_parenthesized_immediate, - ACTIONS(6212), 11, + ACTIONS(968), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -223748,36 +226415,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [99572] = 4, + [101316] = 12, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1599), 1, + sym__entry_separator, + ACTIONS(1798), 1, + anon_sym_DOLLAR, + ACTIONS(6150), 1, + anon_sym_LPAREN2, + ACTIONS(6415), 1, + anon_sym_DOT, + ACTIONS(6437), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6439), 1, + aux_sym__immediate_decimal_token2, + STATE(3280), 1, + sym_comment, + STATE(4034), 1, + sym__immediate_decimal, + ACTIONS(1603), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(6441), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4033), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [101356] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2666), 1, + ACTIONS(6445), 1, anon_sym_DASH2, - STATE(3211), 1, + STATE(3281), 1, sym_comment, - ACTIONS(2664), 13, + ACTIONS(6443), 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, - [99597] = 4, - ACTIONS(103), 1, + anon_sym_LPAREN2, + [101380] = 10, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3212), 1, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + ACTIONS(1637), 1, + sym__unquoted_pattern, + ACTIONS(2938), 1, + anon_sym_DOLLAR, + STATE(3282), 1, + sym_comment, + STATE(4405), 1, + sym__immediate_decimal, + ACTIONS(6447), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6449), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(788), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1631), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [101416] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6453), 1, + anon_sym_else, + STATE(3283), 1, sym_comment, - ACTIONS(5420), 2, + ACTIONS(6451), 12, ts_builtin_sym_end, - sym__space, - ACTIONS(5418), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223789,15 +226509,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, - [99621] = 4, + [101440] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + ACTIONS(1695), 1, + sym__unquoted_pattern, + ACTIONS(2938), 1, + anon_sym_DOLLAR, + STATE(3284), 1, + sym_comment, + STATE(4420), 1, + sym__immediate_decimal, + ACTIONS(6447), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6449), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(807), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1681), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [101476] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3213), 1, + STATE(3285), 1, sym_comment, - ACTIONS(2286), 2, + ACTIONS(5511), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2288), 11, + ACTIONS(5509), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223809,15 +226555,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, - [99645] = 4, + [101500] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3214), 1, + STATE(3286), 1, sym_comment, - ACTIONS(1912), 2, + ACTIONS(1907), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1914), 11, + ACTIONS(1909), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223829,44 +226575,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, - [99669] = 13, + [101524] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1598), 1, - sym__entry_separator, - ACTIONS(1602), 1, - anon_sym_RBRACE, - ACTIONS(1635), 1, - sym__unquoted_pattern_in_record, - ACTIONS(1836), 1, - anon_sym_DOLLAR, - ACTIONS(6102), 1, - anon_sym_LPAREN2, - ACTIONS(6216), 1, - anon_sym_DOT, - ACTIONS(6218), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6220), 1, - aux_sym__immediate_decimal_token2, - STATE(3215), 1, + STATE(3287), 1, sym_comment, - STATE(3853), 1, - sym__immediate_decimal, - ACTIONS(6222), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3934), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [99711] = 4, + ACTIONS(2551), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2553), 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, + [101548] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3216), 1, + STATE(3288), 1, sym_comment, - ACTIONS(2204), 2, + ACTIONS(2558), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2206), 11, + ACTIONS(2560), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223878,15 +226615,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, - [99735] = 4, + [101572] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3217), 1, + STATE(3289), 1, sym_comment, - ACTIONS(2581), 2, + ACTIONS(2562), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2583), 11, + ACTIONS(2564), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223898,43 +226635,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, - [99759] = 15, + [101596] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5819), 1, + ACTIONS(5824), 1, sym_identifier, - ACTIONS(5825), 1, + ACTIONS(5830), 1, anon_sym_DOLLAR, - ACTIONS(5827), 1, + ACTIONS(5832), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5829), 1, + ACTIONS(5834), 1, anon_sym_DASH_DASH, - ACTIONS(5831), 1, + ACTIONS(5836), 1, anon_sym_DASH2, - ACTIONS(6224), 1, + ACTIONS(6455), 1, anon_sym_RPAREN, - STATE(2550), 1, + STATE(2511), 1, sym_param_long_flag, STATE(2684), 1, sym__param_name, - STATE(2939), 1, + STATE(3018), 1, aux_sym_parameter_parens_repeat1, - STATE(3218), 1, + STATE(3290), 1, sym_comment, - STATE(3374), 1, + STATE(3538), 1, sym_param_rest, - STATE(3375), 1, + STATE(3539), 1, sym_param_opt, - STATE(3385), 1, + STATE(3540), 1, sym_param_short_flag, - STATE(3761), 1, + STATE(3803), 1, sym_parameter, - [99805] = 3, - ACTIONS(3), 1, + [101642] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3219), 1, + STATE(3291), 1, sym_comment, - ACTIONS(6226), 13, + ACTIONS(2405), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2407), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223946,14 +226686,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, - [99827] = 3, - ACTIONS(3), 1, + [101666] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3220), 1, + STATE(3292), 1, sym_comment, - ACTIONS(6228), 13, + ACTIONS(2104), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2106), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223965,17 +226706,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, - [99849] = 4, + [101690] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3221), 1, + STATE(3293), 1, sym_comment, - ACTIONS(1862), 2, + ACTIONS(2112), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1864), 11, + ACTIONS(2114), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223987,12 +226726,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, - [99873] = 3, + [101714] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3222), 1, + STATE(3294), 1, sym_comment, - ACTIONS(6230), 13, + ACTIONS(6384), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224006,15 +226745,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [99895] = 4, + [101736] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3223), 1, + STATE(3295), 1, sym_comment, - ACTIONS(2664), 2, + ACTIONS(2120), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2666), 11, + ACTIONS(2122), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224026,35 +226765,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, - [99919] = 4, - ACTIONS(103), 1, + [101760] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3224), 1, + ACTIONS(6378), 1, + anon_sym_DASH2, + STATE(3296), 1, sym_comment, - ACTIONS(4682), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4680), 11, + ACTIONS(5302), 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, - [99943] = 4, - ACTIONS(103), 1, + 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, + [101784] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3225), 1, + STATE(3297), 1, sym_comment, - ACTIONS(2608), 2, + ACTIONS(6250), 13, ts_builtin_sym_end, - sym__space, - ACTIONS(2610), 11, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224066,15 +226804,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, - [99967] = 4, - ACTIONS(103), 1, + [101806] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3226), 1, + STATE(3298), 1, sym_comment, - ACTIONS(2533), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2535), 11, + ACTIONS(6457), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224086,43 +226821,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, - [99991] = 12, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [101828] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__entry_separator, - ACTIONS(1836), 1, - anon_sym_DOLLAR, - ACTIONS(6102), 1, - anon_sym_LPAREN2, - ACTIONS(6106), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6108), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6233), 1, - anon_sym_DOT, - STATE(3227), 1, + ACTIONS(6459), 1, + anon_sym_DASH2, + STATE(3299), 1, sym_comment, - STATE(4022), 1, - sym__immediate_decimal, - ACTIONS(1641), 2, + ACTIONS(5442), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6110), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4021), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [100031] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [101852] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3228), 1, + STATE(3300), 1, sym_comment, - ACTIONS(2537), 2, + ACTIONS(6028), 13, ts_builtin_sym_end, - sym__space, - ACTIONS(2539), 11, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224134,43 +226862,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, - [100055] = 12, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1639), 1, - sym__entry_separator, - ACTIONS(1836), 1, - anon_sym_DOLLAR, - ACTIONS(6102), 1, - anon_sym_LPAREN2, - ACTIONS(6233), 1, - anon_sym_DOT, - ACTIONS(6235), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6237), 1, - aux_sym__immediate_decimal_token2, - STATE(3229), 1, - sym_comment, - STATE(3933), 1, - sym__immediate_decimal, - ACTIONS(1641), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(6239), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3932), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [100095] = 4, - ACTIONS(103), 1, + [101874] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3230), 1, + STATE(3301), 1, sym_comment, - ACTIONS(2228), 2, + ACTIONS(6008), 13, ts_builtin_sym_end, - sym__space, - ACTIONS(2230), 11, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224182,15 +226881,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, - [100119] = 4, - ACTIONS(103), 1, + [101896] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3231), 1, + STATE(3302), 1, sym_comment, - ACTIONS(2232), 2, + ACTIONS(6239), 13, ts_builtin_sym_end, - sym__space, - ACTIONS(2234), 11, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224202,32 +226900,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, - [100143] = 4, + [101918] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3232), 1, + STATE(3303), 1, sym_comment, - ACTIONS(2236), 2, + ACTIONS(2409), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2238), 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, - [100167] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3233), 1, - sym_comment, - ACTIONS(6241), 13, + ACTIONS(2411), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224239,111 +226920,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, - [100189] = 4, + [101942] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3234), 1, + STATE(3304), 1, sym_comment, - ACTIONS(2593), 2, + ACTIONS(2413), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2595), 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, - [100213] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1604), 1, - anon_sym_LPAREN2, - ACTIONS(2873), 1, - anon_sym_DOLLAR, - STATE(743), 1, - sym__immediate_decimal, - STATE(3235), 1, - sym_comment, - ACTIONS(5907), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(6243), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(742), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1667), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [100247] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1604), 1, - anon_sym_LPAREN2, - ACTIONS(2873), 1, - anon_sym_DOLLAR, - STATE(745), 1, - sym__immediate_decimal, - STATE(3236), 1, - sym_comment, - ACTIONS(5907), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(6243), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(744), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1681), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [100281] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1604), 1, - anon_sym_LPAREN2, - ACTIONS(2873), 1, - anon_sym_DOLLAR, - STATE(747), 1, - sym__immediate_decimal, - STATE(3237), 1, - sym_comment, - ACTIONS(5907), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(6243), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(746), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1663), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [100315] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3238), 1, - sym_comment, - STATE(3257), 1, - aux_sym__repeat_newline, - ACTIONS(5649), 12, + ACTIONS(2415), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224355,16 +226940,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, - [100339] = 4, + [101966] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3239), 1, + STATE(3305), 1, sym_comment, - ACTIONS(2240), 2, + ACTIONS(2417), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2242), 11, + ACTIONS(2419), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224376,14 +226960,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, - [100363] = 3, - ACTIONS(3), 1, + [101990] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3240), 1, + STATE(3306), 1, sym_comment, - ACTIONS(1862), 13, + ACTIONS(2421), 2, ts_builtin_sym_end, - anon_sym_EQ, + sym__space, + ACTIONS(2423), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224395,15 +226980,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, - [100385] = 4, + [102014] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3241), 1, + STATE(3307), 1, sym_comment, - ACTIONS(5744), 2, + ACTIONS(2578), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5742), 11, + ACTIONS(2580), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224415,15 +227000,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, - [100409] = 4, - ACTIONS(3), 1, + [102038] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6247), 1, - anon_sym_else, - STATE(3242), 1, + STATE(3308), 1, sym_comment, - ACTIONS(6245), 12, + ACTIONS(2425), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2427), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224435,32 +227020,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, - [100433] = 4, + [102062] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3243), 1, + STATE(3309), 1, sym_comment, - ACTIONS(5963), 2, + ACTIONS(2429), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5961), 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, - [100457] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3244), 1, - sym_comment, - ACTIONS(6249), 13, + ACTIONS(2431), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224472,17 +227040,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, - [100479] = 4, + [102086] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3245), 1, + STATE(3310), 1, sym_comment, - ACTIONS(6100), 2, + ACTIONS(2433), 2, ts_builtin_sym_end, sym__space, - ACTIONS(6098), 11, + ACTIONS(2435), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224494,14 +227060,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, - [100503] = 3, - ACTIONS(3), 1, + [102110] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3246), 1, + STATE(3311), 1, sym_comment, - ACTIONS(1912), 13, + ACTIONS(2437), 2, ts_builtin_sym_end, - anon_sym_EQ, + sym__space, + ACTIONS(2439), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224513,41 +227080,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, - [100525] = 10, + [102134] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1604), 1, - anon_sym_LPAREN2, - ACTIONS(1635), 1, - sym__unquoted_pattern, - ACTIONS(2873), 1, - anon_sym_DOLLAR, - STATE(3247), 1, - sym_comment, - STATE(4286), 1, - sym__immediate_decimal, - ACTIONS(6251), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6253), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(730), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1598), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [100561] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3248), 1, + STATE(3312), 1, sym_comment, - ACTIONS(2632), 2, + ACTIONS(6250), 13, ts_builtin_sym_end, - sym__space, - ACTIONS(2634), 11, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224559,15 +227099,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, - [100585] = 4, - ACTIONS(103), 1, + [102156] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3249), 1, + STATE(3313), 1, sym_comment, - ACTIONS(6119), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(6117), 11, + ACTIONS(6461), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224579,15 +227116,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, - [100609] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [102178] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3250), 1, + STATE(3314), 1, sym_comment, - ACTIONS(2290), 2, + ACTIONS(2441), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2292), 11, + ACTIONS(2443), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224599,15 +227138,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, - [100633] = 4, + [102202] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3251), 1, + STATE(3315), 1, sym_comment, - ACTIONS(2294), 2, + ACTIONS(2445), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2296), 11, + ACTIONS(2447), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224619,72 +227158,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, - [100657] = 10, - ACTIONS(3), 1, + [102226] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1604), 1, - anon_sym_LPAREN2, - ACTIONS(1679), 1, - sym__unquoted_pattern, - ACTIONS(2873), 1, - anon_sym_DOLLAR, - STATE(3252), 1, + STATE(3316), 1, sym_comment, - STATE(4291), 1, - sym__immediate_decimal, - ACTIONS(6251), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6253), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(748), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1651), 3, + ACTIONS(2449), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2451), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_EQ_GT, - [100693] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5819), 1, - sym_identifier, - ACTIONS(5825), 1, - anon_sym_DOLLAR, - ACTIONS(5827), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5829), 1, - anon_sym_DASH_DASH, - ACTIONS(5831), 1, - anon_sym_DASH2, - ACTIONS(5877), 1, - anon_sym_PIPE, - STATE(2550), 1, - sym_param_long_flag, - STATE(2684), 1, - sym__param_name, - STATE(2939), 1, - aux_sym_parameter_parens_repeat1, - STATE(3253), 1, - sym_comment, - STATE(3374), 1, - sym_param_rest, - STATE(3375), 1, - sym_param_opt, - STATE(3385), 1, - sym_param_short_flag, - STATE(3761), 1, - sym_parameter, - [100739] = 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, + [102250] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3254), 1, + STATE(3317), 1, sym_comment, - ACTIONS(2196), 2, + ACTIONS(2453), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2198), 11, + ACTIONS(2455), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224696,12 +227198,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, - [100763] = 3, - ACTIONS(3), 1, + [102274] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3255), 1, + STATE(3318), 1, sym_comment, - ACTIONS(4867), 13, + ACTIONS(2457), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2459), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224713,16 +227218,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, - [100785] = 3, - ACTIONS(3), 1, + [102298] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3256), 1, + STATE(3319), 1, sym_comment, - ACTIONS(5796), 13, + ACTIONS(2461), 2, ts_builtin_sym_end, - anon_sym_EQ, + sym__space, + ACTIONS(2463), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224734,14 +227238,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, - [100807] = 4, - ACTIONS(3), 1, + [102322] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(3257), 1, + STATE(3320), 1, sym_comment, - ACTIONS(5691), 12, + ACTIONS(2465), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2467), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224753,16 +227258,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, - [100831] = 4, + [102346] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3258), 1, + STATE(3321), 1, sym_comment, - ACTIONS(6135), 2, + ACTIONS(2469), 2, ts_builtin_sym_end, sym__space, - ACTIONS(6133), 11, + ACTIONS(2471), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224774,15 +227278,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, - [100855] = 4, + [102370] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3259), 1, + STATE(3322), 1, sym_comment, - ACTIONS(2244), 2, + ACTIONS(2473), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2246), 11, + ACTIONS(2475), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224794,15 +227298,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, - [100879] = 4, + [102394] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6463), 1, + anon_sym_DASH2, + STATE(3323), 1, + sym_comment, + ACTIONS(5358), 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, + [102418] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6465), 1, + anon_sym_DASH2, + STATE(3324), 1, + sym_comment, + ACTIONS(5403), 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, + [102442] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3260), 1, + STATE(3325), 1, sym_comment, - ACTIONS(2200), 2, + ACTIONS(5580), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2202), 11, + ACTIONS(5578), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224814,15 +227358,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, - [100903] = 4, + [102466] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3261), 1, + STATE(3326), 1, sym_comment, - ACTIONS(2573), 2, + ACTIONS(6207), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2575), 11, + ACTIONS(6205), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224834,62 +227378,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [100927] = 12, + [102490] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6467), 1, + anon_sym_DASH2, + STATE(3327), 1, + sym_comment, + ACTIONS(5384), 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, + [102514] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6469), 1, + anon_sym_DASH2, + STATE(3328), 1, + sym_comment, + ACTIONS(5386), 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, + [102538] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6471), 1, + anon_sym_DASH2, + STATE(3329), 1, + sym_comment, + ACTIONS(5390), 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, + [102562] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6473), 1, + anon_sym_DASH2, + STATE(3330), 1, + sym_comment, + ACTIONS(5392), 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, + [102586] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6477), 1, + anon_sym_DASH2, + STATE(3331), 1, + sym_comment, + ACTIONS(6475), 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, + [102610] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5824), 1, + sym_identifier, + ACTIONS(5830), 1, + anon_sym_DOLLAR, + ACTIONS(5832), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5834), 1, + anon_sym_DASH_DASH, + ACTIONS(5836), 1, + anon_sym_DASH2, + ACTIONS(6479), 1, + anon_sym_PIPE, + STATE(2511), 1, + sym_param_long_flag, + STATE(2684), 1, + sym__param_name, + STATE(3018), 1, + aux_sym_parameter_parens_repeat1, + STATE(3332), 1, + sym_comment, + STATE(3538), 1, + sym_param_rest, + STATE(3539), 1, + sym_param_opt, + STATE(3540), 1, + sym_param_short_flag, + STATE(3803), 1, + sym_parameter, + [102656] = 12, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1651), 1, + ACTIONS(1631), 1, sym__space, - ACTIONS(1679), 1, + ACTIONS(1637), 1, sym__unquoted_pattern, - ACTIONS(3118), 1, + ACTIONS(3347), 1, anon_sym_LPAREN2, - ACTIONS(3683), 1, + ACTIONS(3663), 1, anon_sym_DOLLAR, - ACTIONS(6255), 1, + ACTIONS(6423), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6257), 1, + ACTIONS(6425), 1, aux_sym__immediate_decimal_token2, - STATE(3262), 1, + STATE(3333), 1, sym_comment, - STATE(4062), 1, + STATE(4237), 1, sym__immediate_decimal, - ACTIONS(1653), 2, + ACTIONS(1633), 2, sym__newline, anon_sym_SEMI, - ACTIONS(6259), 2, + ACTIONS(6427), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3188), 2, + STATE(3212), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [100967] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3263), 1, - sym_comment, - ACTIONS(6173), 13, - ts_builtin_sym_end, - 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, - [100989] = 4, + [102696] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3264), 1, + STATE(3334), 1, sym_comment, - ACTIONS(5473), 2, + ACTIONS(2477), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5471), 11, + ACTIONS(2479), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224901,15 +227557,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, - [101013] = 4, + [102720] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3265), 1, + STATE(3335), 1, sym_comment, - ACTIONS(6141), 2, + ACTIONS(2477), 2, ts_builtin_sym_end, sym__space, - ACTIONS(6139), 11, + ACTIONS(2479), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224921,14 +227577,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, - [101037] = 4, + [102744] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6263), 1, + ACTIONS(6483), 1, + anon_sym_QMARK, + ACTIONS(6485), 1, anon_sym_DASH2, - STATE(3266), 1, + STATE(3336), 1, sym_comment, - ACTIONS(6261), 12, + ACTIONS(6481), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -224940,16 +227598,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [101061] = 4, - ACTIONS(103), 1, + [102770] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3267), 1, + STATE(3337), 1, sym_comment, - ACTIONS(6145), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(6143), 11, + ACTIONS(6487), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224961,14 +227615,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, - [101085] = 3, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [102792] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3268), 1, + STATE(3338), 1, sym_comment, - ACTIONS(6173), 13, + ACTIONS(2481), 2, ts_builtin_sym_end, - anon_sym_EQ, + sym__space, + ACTIONS(2483), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224980,14 +227637,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, - [101107] = 3, - ACTIONS(3), 1, + [102816] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3269), 1, + STATE(3339), 1, sym_comment, - ACTIONS(2620), 13, + ACTIONS(2485), 2, ts_builtin_sym_end, - anon_sym_EQ, + sym__space, + ACTIONS(2487), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224999,43 +227657,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, - [101129] = 12, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1598), 1, - sym__space, - ACTIONS(1635), 1, - sym__unquoted_pattern, - ACTIONS(3118), 1, - anon_sym_LPAREN2, - ACTIONS(3683), 1, - anon_sym_DOLLAR, - ACTIONS(6255), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6257), 1, - aux_sym__immediate_decimal_token2, - STATE(3270), 1, - sym_comment, - STATE(4165), 1, - sym__immediate_decimal, - ACTIONS(1602), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(6259), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3155), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [101169] = 4, + [102840] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3271), 1, + STATE(3340), 1, sym_comment, - ACTIONS(2154), 2, + ACTIONS(1887), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2156), 11, + ACTIONS(1889), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225047,46 +227677,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, - [101193] = 15, + [102864] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5819), 1, + ACTIONS(5824), 1, sym_identifier, - ACTIONS(5825), 1, + ACTIONS(5830), 1, anon_sym_DOLLAR, - ACTIONS(5827), 1, + ACTIONS(5832), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5829), 1, + ACTIONS(5834), 1, anon_sym_DASH_DASH, - ACTIONS(5831), 1, + ACTIONS(5836), 1, anon_sym_DASH2, - ACTIONS(5931), 1, - anon_sym_RBRACK, - STATE(2550), 1, + ACTIONS(5904), 1, + anon_sym_PIPE, + STATE(2511), 1, sym_param_long_flag, STATE(2684), 1, sym__param_name, - STATE(2939), 1, + STATE(3018), 1, aux_sym_parameter_parens_repeat1, - STATE(3272), 1, + STATE(3341), 1, sym_comment, - STATE(3374), 1, + STATE(3538), 1, sym_param_rest, - STATE(3375), 1, + STATE(3539), 1, sym_param_opt, - STATE(3385), 1, + STATE(3540), 1, sym_param_short_flag, - STATE(3761), 1, + STATE(3803), 1, sym_parameter, - [101239] = 4, - ACTIONS(103), 1, + [102910] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3273), 1, + STATE(3342), 1, sym_comment, - ACTIONS(2248), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2250), 11, + ACTIONS(6489), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225098,15 +227725,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, - [101263] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [102932] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3274), 1, + STATE(3343), 1, sym_comment, - ACTIONS(2620), 2, + ACTIONS(2527), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2622), 11, + ACTIONS(2529), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225118,15 +227747,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, - [101287] = 4, + [102956] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3275), 1, + STATE(3344), 1, sym_comment, - ACTIONS(4722), 2, + ACTIONS(2531), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4720), 11, + ACTIONS(2533), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225138,15 +227767,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, - [101311] = 4, + [102980] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3276), 1, + STATE(3345), 1, sym_comment, - ACTIONS(2252), 2, + ACTIONS(6356), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2254), 11, + ACTIONS(6354), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225158,12 +227787,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, - [101335] = 3, - ACTIONS(3), 1, + [103004] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3277), 1, + STATE(3346), 1, sym_comment, - ACTIONS(6062), 13, + ACTIONS(6360), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(6358), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225175,14 +227807,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, + [103028] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6493), 1, + anon_sym_DASH2, + STATE(3347), 1, + sym_comment, + ACTIONS(6491), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [101357] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + [103052] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3278), 1, + STATE(3348), 1, sym_comment, - ACTIONS(6265), 13, + ACTIONS(5744), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225196,15 +227846,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [101379] = 4, + [103074] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3279), 1, + STATE(3349), 1, sym_comment, - ACTIONS(2256), 2, + ACTIONS(2664), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2258), 11, + ACTIONS(2666), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225216,15 +227866,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, - [101403] = 4, - ACTIONS(103), 1, + [103098] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3280), 1, + ACTIONS(6495), 1, + anon_sym_EQ, + STATE(3350), 1, sym_comment, - ACTIONS(6149), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(6147), 11, + ACTIONS(6457), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225236,15 +227885,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, - [101427] = 4, + anon_sym_RPAREN, + [103122] = 12, ACTIONS(103), 1, anon_sym_POUND, - STATE(3281), 1, + ACTIONS(1631), 1, + sym__entry_separator, + ACTIONS(1637), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6497), 1, + anon_sym_DOLLAR, + ACTIONS(6499), 1, + anon_sym_LPAREN2, + ACTIONS(6501), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6503), 1, + aux_sym__immediate_decimal_token2, + STATE(3351), 1, + sym_comment, + STATE(4289), 1, + sym__immediate_decimal, + ACTIONS(1633), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6505), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4374), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [103162] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5824), 1, + sym_identifier, + ACTIONS(5830), 1, + anon_sym_DOLLAR, + ACTIONS(5832), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5834), 1, + anon_sym_DASH_DASH, + ACTIONS(5836), 1, + anon_sym_DASH2, + ACTIONS(6010), 1, + anon_sym_RBRACK, + STATE(2511), 1, + sym_param_long_flag, + STATE(2684), 1, + sym__param_name, + STATE(3018), 1, + aux_sym_parameter_parens_repeat1, + STATE(3352), 1, + sym_comment, + STATE(3538), 1, + sym_param_rest, + STATE(3539), 1, + sym_param_opt, + STATE(3540), 1, + sym_param_short_flag, + STATE(3803), 1, + sym_parameter, + [103208] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5824), 1, + sym_identifier, + ACTIONS(5830), 1, + anon_sym_DOLLAR, + ACTIONS(5832), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5834), 1, + anon_sym_DASH_DASH, + ACTIONS(5836), 1, + anon_sym_DASH2, + ACTIONS(5842), 1, + anon_sym_RPAREN, + STATE(2511), 1, + sym_param_long_flag, + STATE(2684), 1, + sym__param_name, + STATE(3018), 1, + aux_sym_parameter_parens_repeat1, + STATE(3353), 1, + sym_comment, + STATE(3538), 1, + sym_param_rest, + STATE(3539), 1, + sym_param_opt, + STATE(3540), 1, + sym_param_short_flag, + STATE(3803), 1, + sym_parameter, + [103254] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3354), 1, sym_comment, - ACTIONS(6153), 2, + ACTIONS(2664), 13, ts_builtin_sym_end, - sym__space, - ACTIONS(6151), 11, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225256,15 +227995,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, - [101451] = 4, - ACTIONS(103), 1, + [103276] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3282), 1, + STATE(3355), 1, sym_comment, - ACTIONS(6157), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(6155), 11, + ACTIONS(4867), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225276,14 +228012,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, - [101475] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [103298] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3283), 1, + STATE(3356), 1, sym_comment, - ACTIONS(2537), 13, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(6507), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225295,15 +228031,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, - [101497] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [103320] = 12, ACTIONS(103), 1, anon_sym_POUND, - STATE(3284), 1, + ACTIONS(1681), 1, + sym__entry_separator, + ACTIONS(1695), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6497), 1, + anon_sym_DOLLAR, + ACTIONS(6499), 1, + anon_sym_LPAREN2, + ACTIONS(6501), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6503), 1, + aux_sym__immediate_decimal_token2, + STATE(3357), 1, + sym_comment, + STATE(4214), 1, + sym__immediate_decimal, + ACTIONS(1683), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6505), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4414), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [103360] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3358), 1, sym_comment, - ACTIONS(2260), 2, + ACTIONS(6211), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2262), 11, + ACTIONS(6209), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225315,15 +228081,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, - [101521] = 4, + [103384] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3285), 1, + STATE(3359), 1, sym_comment, - ACTIONS(2102), 2, + ACTIONS(6215), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2104), 11, + ACTIONS(6213), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225335,15 +228101,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, - [101545] = 4, - ACTIONS(103), 1, + [103408] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3286), 1, + ACTIONS(6509), 1, + anon_sym_EQ, + STATE(3360), 1, sym_comment, - ACTIONS(2110), 2, + ACTIONS(6457), 12, ts_builtin_sym_end, - sym__space, - ACTIONS(2112), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225355,14 +228121,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, - [101569] = 3, + [103432] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3287), 1, - sym_comment, - ACTIONS(6092), 13, - ts_builtin_sym_end, + ACTIONS(6511), 1, anon_sym_EQ, + STATE(3361), 1, + sym_comment, + ACTIONS(6457), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225374,12 +228140,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, - [101591] = 3, + anon_sym_RBRACE, + [103456] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3288), 1, + ACTIONS(6513), 1, + anon_sym_EQ, + STATE(3362), 1, sym_comment, - ACTIONS(6267), 13, + ACTIONS(6457), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225392,13 +228161,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, - [101613] = 3, + [103480] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3289), 1, + ACTIONS(6515), 1, + anon_sym_else, + STATE(3363), 1, sym_comment, - ACTIONS(6269), 13, + ACTIONS(6451), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225411,16 +228181,76 @@ static 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, - [101635] = 4, - ACTIONS(103), 1, + [103504] = 15, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3290), 1, + ACTIONS(5824), 1, + sym_identifier, + ACTIONS(5830), 1, + anon_sym_DOLLAR, + ACTIONS(5832), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5834), 1, + anon_sym_DASH_DASH, + ACTIONS(5836), 1, + anon_sym_DASH2, + ACTIONS(6517), 1, + anon_sym_RBRACK, + STATE(2511), 1, + sym_param_long_flag, + STATE(2684), 1, + sym__param_name, + STATE(3018), 1, + aux_sym_parameter_parens_repeat1, + STATE(3364), 1, sym_comment, - ACTIONS(2264), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2266), 11, + STATE(3538), 1, + sym_param_rest, + STATE(3539), 1, + sym_param_opt, + STATE(3540), 1, + sym_param_short_flag, + STATE(3803), 1, + sym_parameter, + [103550] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5824), 1, + sym_identifier, + ACTIONS(5830), 1, + anon_sym_DOLLAR, + ACTIONS(5832), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5834), 1, + anon_sym_DASH_DASH, + ACTIONS(5836), 1, + anon_sym_DASH2, + ACTIONS(6519), 1, + anon_sym_RPAREN, + STATE(2511), 1, + sym_param_long_flag, + STATE(2684), 1, + sym__param_name, + STATE(3018), 1, + aux_sym_parameter_parens_repeat1, + STATE(3365), 1, + sym_comment, + STATE(3538), 1, + sym_param_rest, + STATE(3539), 1, + sym_param_opt, + STATE(3540), 1, + sym_param_short_flag, + STATE(3803), 1, + sym_parameter, + [103596] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6521), 1, + anon_sym_else, + STATE(3366), 1, + sym_comment, + ACTIONS(6451), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225432,12 +228262,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, - [101659] = 3, + anon_sym_RBRACE, + [103620] = 13, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1631), 1, + sym__entry_separator, + ACTIONS(1633), 1, + anon_sym_RBRACK, + ACTIONS(1637), 1, + sym__unquoted_pattern_in_list, + ACTIONS(1798), 1, + anon_sym_DOLLAR, + ACTIONS(6150), 1, + anon_sym_LPAREN2, + ACTIONS(6437), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6439), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6523), 1, + anon_sym_DOT, + STATE(3367), 1, + sym_comment, + STATE(3943), 1, + sym__immediate_decimal, + ACTIONS(6441), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4036), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [103662] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3291), 1, + STATE(3368), 1, sym_comment, - ACTIONS(6271), 13, + ACTIONS(4873), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225451,12 +228311,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [101681] = 3, + [103684] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3292), 1, + STATE(3369), 1, sym_comment, - ACTIONS(6273), 13, + ACTIONS(6267), 13, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225468,17 +228330,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, - [101703] = 4, + [103706] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3293), 1, + STATE(3370), 1, sym_comment, - ACTIONS(5416), 2, + ACTIONS(6219), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5414), 11, + ACTIONS(6217), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225490,15 +228350,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, - [101727] = 4, - ACTIONS(103), 1, + [103730] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3294), 1, + STATE(3262), 1, + aux_sym__repeat_newline, + STATE(3371), 1, sym_comment, - ACTIONS(6181), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(6179), 11, + ACTIONS(5563), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225510,41 +228369,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [101751] = 9, - ACTIONS(3), 1, + anon_sym_RPAREN, + [103754] = 12, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1604), 1, + ACTIONS(1599), 1, + sym__space, + ACTIONS(3347), 1, anon_sym_LPAREN2, - ACTIONS(2873), 1, + ACTIONS(3663), 1, anon_sym_DOLLAR, - STATE(729), 1, - sym__immediate_decimal, - STATE(3295), 1, + ACTIONS(4950), 1, + anon_sym_DOT, + ACTIONS(6060), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6062), 1, + aux_sym__immediate_decimal_token2, + STATE(3372), 1, sym_comment, - ACTIONS(5907), 2, + STATE(4110), 1, + sym__immediate_decimal, + ACTIONS(1603), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(6064), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(6243), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(728), 2, + STATE(4109), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1639), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [101785] = 4, - ACTIONS(103), 1, + [103794] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3296), 1, - sym_comment, - ACTIONS(2282), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2284), 11, + ACTIONS(6262), 1, sym__newline, + ACTIONS(6525), 1, + anon_sym_else, + STATE(3373), 1, + sym_comment, + STATE(3376), 1, + aux_sym__repeat_newline, + ACTIONS(6265), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -225555,16 +228420,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, - [101809] = 4, - ACTIONS(103), 1, + [103822] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3297), 1, - sym_comment, - ACTIONS(2268), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2270), 11, + ACTIONS(6171), 1, sym__newline, + ACTIONS(6527), 1, + anon_sym_else, + STATE(3374), 1, + sym_comment, + STATE(3378), 1, + aux_sym__repeat_newline, + ACTIONS(6174), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -225575,16 +228442,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, - [101833] = 4, - ACTIONS(103), 1, + [103850] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3298), 1, - sym_comment, - ACTIONS(2272), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2274), 11, + ACTIONS(6178), 1, sym__newline, + ACTIONS(6529), 1, + anon_sym_else, + STATE(3375), 1, + sym_comment, + STATE(3379), 1, + aux_sym__repeat_newline, + ACTIONS(6181), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -225595,86 +228464,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, - [101857] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5819), 1, - sym_identifier, - ACTIONS(5825), 1, - anon_sym_DOLLAR, - ACTIONS(5827), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5829), 1, - anon_sym_DASH_DASH, - ACTIONS(5831), 1, - anon_sym_DASH2, - ACTIONS(5913), 1, - anon_sym_RBRACK, - STATE(2550), 1, - sym_param_long_flag, - STATE(2684), 1, - sym__param_name, - STATE(2939), 1, - aux_sym_parameter_parens_repeat1, - STATE(3299), 1, - sym_comment, - STATE(3374), 1, - sym_param_rest, - STATE(3375), 1, - sym_param_opt, - STATE(3385), 1, - sym_param_short_flag, - STATE(3761), 1, - sym_parameter, - [101903] = 4, + [103878] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6275), 1, - anon_sym_DASH2, - STATE(3300), 1, - sym_comment, - ACTIONS(5334), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(6187), 1, sym__newline, + ACTIONS(6531), 1, + anon_sym_else, + STATE(3376), 1, + sym_comment, + STATE(3380), 1, + aux_sym__repeat_newline, + ACTIONS(6190), 10, + anon_sym_SEMI, 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, - [101927] = 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, + [103906] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6277), 1, - anon_sym_DASH2, - STATE(3301), 1, - sym_comment, - ACTIONS(5338), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(6279), 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, - [101951] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6281), 1, - sym__space, - STATE(3302), 1, + ACTIONS(6533), 1, + anon_sym_else, + STATE(3377), 1, sym_comment, - ACTIONS(6279), 12, - sym__newline, + STATE(3381), 1, + aux_sym__repeat_newline, + ACTIONS(6282), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -225685,17 +228508,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, - [101975] = 4, + [103934] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6283), 1, - anon_sym_catch, - STATE(3303), 1, - sym_comment, - ACTIONS(6018), 12, - ts_builtin_sym_end, + ACTIONS(6286), 1, sym__newline, + ACTIONS(6535), 1, + anon_sym_else, + STATE(3378), 1, + sym_comment, + STATE(3382), 1, + aux_sym__repeat_newline, + ACTIONS(6289), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -225706,15 +228530,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, - [101999] = 4, + [103962] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6285), 1, - anon_sym_EQ, - STATE(3304), 1, - sym_comment, - ACTIONS(6226), 12, + ACTIONS(6293), 1, sym__newline, + ACTIONS(6537), 1, + anon_sym_else, + STATE(3379), 1, + sym_comment, + STATE(3383), 1, + aux_sym__repeat_newline, + ACTIONS(6296), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -225725,17 +228552,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - [102023] = 4, - ACTIONS(103), 1, + [103990] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3305), 1, - sym_comment, - ACTIONS(2118), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2120), 11, + ACTIONS(1864), 1, sym__newline, + ACTIONS(6539), 1, + anon_sym_else, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(3380), 1, + sym_comment, + ACTIONS(1862), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -225746,66 +228574,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, - [102047] = 4, + [104018] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6287), 1, - anon_sym_DASH2, - STATE(3306), 1, - sym_comment, - ACTIONS(5422), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(6390), 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, - [102071] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5819), 1, - sym_identifier, - ACTIONS(5825), 1, - anon_sym_DOLLAR, - ACTIONS(5827), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5829), 1, - anon_sym_DASH_DASH, - ACTIONS(5831), 1, - anon_sym_DASH2, - ACTIONS(5917), 1, - anon_sym_RPAREN, - STATE(2550), 1, - sym_param_long_flag, - STATE(2684), 1, - sym__param_name, - STATE(2939), 1, - aux_sym_parameter_parens_repeat1, - STATE(3307), 1, - sym_comment, - STATE(3374), 1, - sym_param_rest, - STATE(3375), 1, - sym_param_opt, - STATE(3385), 1, - sym_param_short_flag, - STATE(3761), 1, - sym_parameter, - [102117] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6289), 1, + ACTIONS(6542), 1, anon_sym_else, - STATE(3308), 1, + STATE(3381), 1, sym_comment, - ACTIONS(6245), 12, - sym__newline, + STATE(3384), 1, + aux_sym__repeat_newline, + ACTIONS(6393), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -225816,65 +228596,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - [102141] = 4, + [104046] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6291), 1, - anon_sym_DASH2, - STATE(3309), 1, - sym_comment, - ACTIONS(5348), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(1864), 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, - [102165] = 13, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1598), 1, - sym__entry_separator, - ACTIONS(1602), 1, - anon_sym_RBRACK, - ACTIONS(1635), 1, - sym__unquoted_pattern_in_list, - ACTIONS(1836), 1, - anon_sym_DOLLAR, - ACTIONS(6102), 1, - anon_sym_LPAREN2, - ACTIONS(6235), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6237), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6293), 1, - anon_sym_DOT, - STATE(3310), 1, - sym_comment, - STATE(3856), 1, - sym__immediate_decimal, - ACTIONS(6239), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3934), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [102207] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6295), 1, - anon_sym_EQ, - STATE(3311), 1, + ACTIONS(6544), 1, + anon_sym_else, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(3382), 1, sym_comment, - ACTIONS(6226), 12, - sym__newline, + ACTIONS(1862), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -225885,16 +228618,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, - [102231] = 4, + [104074] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6297), 1, + ACTIONS(1864), 1, + sym__newline, + ACTIONS(6547), 1, anon_sym_else, - STATE(3312), 1, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(3383), 1, sym_comment, - ACTIONS(6245), 12, - sym__newline, + ACTIONS(1862), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -225905,56 +228640,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, - [102255] = 4, + [104102] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6299), 1, - anon_sym_DASH2, - STATE(3313), 1, - sym_comment, - ACTIONS(5364), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(1864), 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, - [102279] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6301), 1, - anon_sym_DASH2, - STATE(3314), 1, + ACTIONS(6550), 1, + anon_sym_else, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(3384), 1, sym_comment, - ACTIONS(5377), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, + ACTIONS(1862), 10, + anon_sym_SEMI, 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, - [102303] = 4, - ACTIONS(3), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [104130] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6303), 1, - anon_sym_EQ, - STATE(3315), 1, + STATE(3385), 1, sym_comment, - ACTIONS(6226), 12, + ACTIONS(6223), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(6221), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225966,54 +228682,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, - [102327] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6305), 1, - anon_sym_DASH2, - STATE(3316), 1, - sym_comment, - ACTIONS(5379), 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, - [102351] = 4, - ACTIONS(3), 1, + [104154] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6012), 1, - anon_sym_DASH2, - STATE(3317), 1, + STATE(3386), 1, sym_comment, - ACTIONS(5245), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(4631), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4629), 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_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [102375] = 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, + [104178] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6307), 1, - anon_sym_EQ, - STATE(3318), 1, + STATE(3387), 1, sym_comment, - ACTIONS(6226), 12, + ACTIONS(6553), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226026,46 +228720,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [102399] = 15, + anon_sym_RBRACE, + [104200] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5824), 1, + sym_identifier, + ACTIONS(5830), 1, + anon_sym_DOLLAR, + ACTIONS(5832), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5834), 1, + anon_sym_DASH_DASH, + ACTIONS(5836), 1, + anon_sym_DASH2, + ACTIONS(5948), 1, + anon_sym_RBRACK, + STATE(2511), 1, + sym_param_long_flag, + STATE(2684), 1, + sym__param_name, + STATE(3018), 1, + aux_sym_parameter_parens_repeat1, + STATE(3388), 1, + sym_comment, + STATE(3538), 1, + sym_param_rest, + STATE(3539), 1, + sym_param_opt, + STATE(3540), 1, + sym_param_short_flag, + STATE(3803), 1, + sym_parameter, + [104246] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5819), 1, + ACTIONS(5824), 1, sym_identifier, - ACTIONS(5825), 1, + ACTIONS(5830), 1, anon_sym_DOLLAR, - ACTIONS(5827), 1, + ACTIONS(5832), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5829), 1, + ACTIONS(5834), 1, anon_sym_DASH_DASH, - ACTIONS(5831), 1, + ACTIONS(5836), 1, anon_sym_DASH2, - ACTIONS(6309), 1, - anon_sym_RBRACK, - STATE(2550), 1, + ACTIONS(5914), 1, + anon_sym_RPAREN, + STATE(2511), 1, sym_param_long_flag, STATE(2684), 1, sym__param_name, - STATE(2939), 1, + STATE(3018), 1, aux_sym_parameter_parens_repeat1, - STATE(3319), 1, + STATE(3389), 1, sym_comment, - STATE(3374), 1, + STATE(3538), 1, sym_param_rest, - STATE(3375), 1, + STATE(3539), 1, sym_param_opt, - STATE(3385), 1, + STATE(3540), 1, sym_param_short_flag, - STATE(3761), 1, + STATE(3803), 1, sym_parameter, - [102445] = 4, + [104292] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3320), 1, + STATE(3390), 1, sym_comment, - ACTIONS(6062), 2, + ACTIONS(6237), 2, ts_builtin_sym_end, sym__space, - ACTIONS(6060), 11, + ACTIONS(6235), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226077,114 +228803,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, - [102469] = 15, + [104316] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5819), 1, - sym_identifier, - ACTIONS(5825), 1, - anon_sym_DOLLAR, - ACTIONS(5827), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5829), 1, - anon_sym_DASH_DASH, - ACTIONS(5831), 1, - anon_sym_DASH2, - ACTIONS(6311), 1, - anon_sym_RPAREN, - STATE(2550), 1, - sym_param_long_flag, - STATE(2684), 1, - sym__param_name, - STATE(2939), 1, - aux_sym_parameter_parens_repeat1, - STATE(3321), 1, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(3391), 1, sym_comment, - STATE(3374), 1, - sym_param_rest, - STATE(3375), 1, - sym_param_opt, - STATE(3385), 1, - sym_param_short_flag, - STATE(3761), 1, - sym_parameter, - [102515] = 12, - ACTIONS(103), 1, + ACTIONS(5730), 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, + [104340] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__space, - ACTIONS(3118), 1, - anon_sym_LPAREN2, - ACTIONS(3683), 1, - anon_sym_DOLLAR, - ACTIONS(4970), 1, - anon_sym_DOT, - ACTIONS(6167), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6169), 1, - aux_sym__immediate_decimal_token2, - STATE(3322), 1, + STATE(3392), 1, sym_comment, - STATE(4003), 1, - sym__immediate_decimal, - ACTIONS(1641), 2, + ACTIONS(6555), 13, sym__newline, anon_sym_SEMI, - ACTIONS(6171), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4002), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [102555] = 5, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_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, + [104362] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(866), 1, - anon_sym_DASH2, - ACTIONS(5207), 1, - sym__unquoted_pattern_in_record, - STATE(3323), 1, + STATE(3393), 1, sym_comment, - ACTIONS(886), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6557), 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, - [102581] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [104384] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2148), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(3324), 1, + STATE(3394), 1, sym_comment, - ACTIONS(2146), 12, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, + ACTIONS(6227), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(6225), 11, sym__newline, - 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, - [102605] = 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [104408] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6315), 1, + ACTIONS(6559), 1, anon_sym_DASH2, - STATE(3325), 1, + STATE(3395), 1, sym_comment, - ACTIONS(6313), 12, + ACTIONS(5382), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -226194,21 +228898,16 @@ 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, - [102629] = 6, + [104432] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5970), 1, - sym__newline, - ACTIONS(6317), 1, - anon_sym_else, - STATE(3326), 1, + STATE(3396), 1, sym_comment, - STATE(3330), 1, - aux_sym__repeat_newline, - ACTIONS(5973), 10, + ACTIONS(6561), 12, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -226219,14 +228918,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, - [102657] = 4, + anon_sym_RPAREN, + [104453] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6319), 1, + ACTIONS(2475), 1, anon_sym_DASH2, - STATE(3327), 1, + STATE(3397), 1, sym_comment, - ACTIONS(5424), 12, + ACTIONS(2473), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -226236,21 +228936,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, - [102681] = 6, + [104476] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6027), 1, - sym__newline, - ACTIONS(6321), 1, - anon_sym_else, - STATE(3328), 1, + STATE(3398), 1, sym_comment, - STATE(3332), 1, - aux_sym__repeat_newline, - ACTIONS(6030), 10, + ACTIONS(6563), 12, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -226261,18 +228955,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, - [102709] = 6, + anon_sym_RPAREN, + [104497] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6034), 1, - sym__newline, - ACTIONS(6323), 1, - anon_sym_else, - STATE(3329), 1, + STATE(3399), 1, sym_comment, - STATE(3333), 1, - aux_sym__repeat_newline, - ACTIONS(6037), 10, + ACTIONS(6565), 12, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -226283,18 +228973,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, - [102737] = 6, + anon_sym_RPAREN, + [104518] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6041), 1, - sym__newline, - ACTIONS(6325), 1, - anon_sym_else, - STATE(3330), 1, + STATE(3400), 1, sym_comment, - STATE(3334), 1, - aux_sym__repeat_newline, - ACTIONS(6044), 10, + ACTIONS(6567), 12, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -226305,18 +228991,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, - [102765] = 6, + anon_sym_RPAREN, + [104539] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6048), 1, - sym__newline, - ACTIONS(6327), 1, - anon_sym_else, - STATE(3331), 1, + STATE(3401), 1, sym_comment, - STATE(3335), 1, - aux_sym__repeat_newline, - ACTIONS(6051), 10, + ACTIONS(6569), 12, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -226327,18 +229009,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, - [102793] = 6, + anon_sym_RPAREN, + [104560] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6055), 1, - sym__newline, - ACTIONS(6329), 1, - anon_sym_else, - STATE(3332), 1, + STATE(3402), 1, sym_comment, - STATE(3336), 1, - aux_sym__repeat_newline, - ACTIONS(6058), 10, + ACTIONS(6571), 12, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -226349,18 +229027,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, - [102821] = 6, + anon_sym_RPAREN, + [104581] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6076), 1, - sym__newline, - ACTIONS(6331), 1, - anon_sym_else, - STATE(3333), 1, + STATE(3403), 1, sym_comment, - STATE(3337), 1, - aux_sym__repeat_newline, - ACTIONS(6079), 10, + ACTIONS(6573), 12, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -226371,18 +229045,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, - [102849] = 6, + anon_sym_RPAREN, + [104602] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1968), 1, - sym__newline, - ACTIONS(6333), 1, - anon_sym_else, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(3334), 1, + STATE(3404), 1, sym_comment, - ACTIONS(1966), 10, + ACTIONS(6431), 12, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -226393,18 +229064,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, - [102877] = 6, + [104623] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6185), 1, - sym__newline, - ACTIONS(6336), 1, - anon_sym_else, - STATE(3335), 1, + STATE(3405), 1, sym_comment, - STATE(3338), 1, - aux_sym__repeat_newline, - ACTIONS(6188), 10, + ACTIONS(6433), 12, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -226415,40 +229082,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, - [102905] = 6, + [104644] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1968), 1, - sym__newline, - ACTIONS(6338), 1, - anon_sym_else, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(3336), 1, + ACTIONS(6577), 1, + anon_sym_DASH2, + STATE(3406), 1, sym_comment, - ACTIONS(1966), 10, - anon_sym_SEMI, + ACTIONS(6575), 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, - [102933] = 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, + [104667] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1968), 1, + ACTIONS(5979), 1, + anon_sym_DASH2, + STATE(3407), 1, + sym_comment, + ACTIONS(5977), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - ACTIONS(6341), 1, - anon_sym_else, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(3337), 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, + [104690] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3408), 1, sym_comment, - ACTIONS(1966), 10, + ACTIONS(6579), 12, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -226459,18 +229137,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, - [102961] = 6, + anon_sym_RPAREN, + [104711] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1968), 1, - sym__newline, - ACTIONS(6344), 1, - anon_sym_else, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(3338), 1, + STATE(3409), 1, sym_comment, - ACTIONS(1966), 10, + ACTIONS(6435), 12, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -226481,43 +229156,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, - [102989] = 12, + [104732] = 12, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1598), 1, + ACTIONS(1631), 1, sym__entry_separator, - ACTIONS(1635), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6347), 1, - anon_sym_DOLLAR, - ACTIONS(6349), 1, + ACTIONS(1633), 1, + anon_sym_RBRACE, + ACTIONS(1637), 1, + sym__unquoted_pattern_in_record, + ACTIONS(6150), 1, anon_sym_LPAREN2, - ACTIONS(6351), 1, + ACTIONS(6581), 1, + anon_sym_DOLLAR, + ACTIONS(6583), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6353), 1, + ACTIONS(6585), 1, aux_sym__immediate_decimal_token2, - STATE(3339), 1, + STATE(3410), 1, sym_comment, - STATE(4138), 1, + STATE(4545), 1, sym__immediate_decimal, - ACTIONS(1602), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6355), 2, + ACTIONS(6587), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4214), 2, + STATE(4374), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [103029] = 4, - ACTIONS(103), 1, + [104771] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3340), 1, + STATE(3411), 1, + sym_comment, + ACTIONS(6589), 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, + [104792] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3412), 1, sym_comment, - ACTIONS(2276), 2, + ACTIONS(6384), 12, ts_builtin_sym_end, - sym__space, - ACTIONS(2278), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226529,15 +229219,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, - [103053] = 4, - ACTIONS(103), 1, + [104813] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3341), 1, + STATE(3413), 1, + sym_comment, + ACTIONS(6591), 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, + [104834] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3414), 1, sym_comment, - ACTIONS(6177), 2, + ACTIONS(6461), 12, ts_builtin_sym_end, - sym__space, - ACTIONS(6175), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226549,15 +229255,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, - [103077] = 4, + [104855] = 12, ACTIONS(103), 1, anon_sym_POUND, - STATE(3342), 1, + ACTIONS(1681), 1, + sym__entry_separator, + ACTIONS(1683), 1, + anon_sym_RBRACE, + ACTIONS(1695), 1, + sym__unquoted_pattern_in_record, + ACTIONS(6150), 1, + anon_sym_LPAREN2, + ACTIONS(6581), 1, + anon_sym_DOLLAR, + ACTIONS(6583), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6585), 1, + aux_sym__immediate_decimal_token2, + STATE(3415), 1, sym_comment, - ACTIONS(2276), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2278), 11, + STATE(4556), 1, + sym__immediate_decimal, + ACTIONS(6587), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4414), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [104894] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3416), 1, + sym_comment, + ACTIONS(6593), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226569,14 +229299,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, - [103101] = 4, + anon_sym_RPAREN, + [104915] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(3343), 1, + STATE(3417), 1, sym_comment, - ACTIONS(5719), 12, + ACTIONS(6595), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226589,15 +229318,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [103125] = 4, - ACTIONS(103), 1, + [104936] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3344), 1, + STATE(3418), 1, sym_comment, - ACTIONS(4732), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4730), 11, + ACTIONS(6597), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226609,14 +229335,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, - [103149] = 4, + anon_sym_RPAREN, + [104957] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3343), 1, - aux_sym__repeat_newline, - STATE(3345), 1, + STATE(3419), 1, sym_comment, - ACTIONS(5770), 12, + ACTIONS(6599), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226629,14 +229354,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [103173] = 3, + [104978] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3346), 1, + STATE(3420), 1, sym_comment, - ACTIONS(5784), 13, + ACTIONS(6401), 12, ts_builtin_sym_end, - anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226648,32 +229372,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, - [103195] = 4, + [104999] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6359), 1, + ACTIONS(5885), 1, anon_sym_DASH2, - STATE(3347), 1, + STATE(3421), 1, sym_comment, - ACTIONS(6357), 12, + ACTIONS(5298), 11, 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, - [103219] = 3, + [105022] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3348), 1, + STATE(3422), 1, sym_comment, - ACTIONS(4873), 13, + ACTIONS(6601), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226686,16 +229409,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, - [103241] = 4, - ACTIONS(103), 1, + [105043] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3349), 1, + STATE(3423), 1, sym_comment, - ACTIONS(886), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(866), 11, + ACTIONS(6603), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226707,15 +229426,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, - [103265] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + [105064] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3350), 1, + STATE(3424), 1, sym_comment, - ACTIONS(2529), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2531), 11, + ACTIONS(6605), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226727,14 +229444,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, - [103289] = 3, + anon_sym_RPAREN, + [105085] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3351), 1, + STATE(3425), 1, sym_comment, - ACTIONS(6204), 13, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(6607), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226746,12 +229462,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, - [103311] = 3, + anon_sym_RPAREN, + [105106] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3352), 1, + STATE(3426), 1, sym_comment, - ACTIONS(6361), 13, + ACTIONS(6609), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226764,75 +229481,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, - [103333] = 15, + [105127] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5819), 1, - sym_identifier, - ACTIONS(5825), 1, - anon_sym_DOLLAR, - ACTIONS(5827), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5829), 1, - anon_sym_DASH_DASH, - ACTIONS(5831), 1, - anon_sym_DASH2, - ACTIONS(5933), 1, - anon_sym_RPAREN, - STATE(2550), 1, - sym_param_long_flag, - STATE(2684), 1, - sym__param_name, - STATE(2939), 1, - aux_sym_parameter_parens_repeat1, - STATE(3353), 1, - sym_comment, - STATE(3374), 1, - sym_param_rest, - STATE(3375), 1, - sym_param_opt, - STATE(3385), 1, - sym_param_short_flag, - STATE(3761), 1, - sym_parameter, - [103379] = 12, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1651), 1, - sym__entry_separator, - ACTIONS(1679), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6347), 1, - anon_sym_DOLLAR, - ACTIONS(6349), 1, - anon_sym_LPAREN2, - ACTIONS(6351), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6353), 1, - aux_sym__immediate_decimal_token2, - STATE(3354), 1, - sym_comment, - STATE(4146), 1, - sym__immediate_decimal, - ACTIONS(1653), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6355), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4258), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [103419] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3355), 1, + STATE(3427), 1, sym_comment, - ACTIONS(1713), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1614), 11, + ACTIONS(6611), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226844,43 +229498,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, - [103443] = 15, + anon_sym_RPAREN, + [105148] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5819), 1, - sym_identifier, - ACTIONS(5825), 1, - anon_sym_DOLLAR, - ACTIONS(5827), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5829), 1, - anon_sym_DASH_DASH, - ACTIONS(5831), 1, - anon_sym_DASH2, - ACTIONS(6363), 1, - anon_sym_PIPE, - STATE(2550), 1, - sym_param_long_flag, - STATE(2684), 1, - sym__param_name, - STATE(2939), 1, - aux_sym_parameter_parens_repeat1, - STATE(3356), 1, + STATE(3428), 1, sym_comment, - STATE(3374), 1, - sym_param_rest, - STATE(3375), 1, - sym_param_opt, - STATE(3385), 1, - sym_param_short_flag, - STATE(3761), 1, - sym_parameter, - [103489] = 3, + ACTIONS(6613), 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, + [105169] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3357), 1, + STATE(3429), 1, sym_comment, - ACTIONS(6365), 13, + ACTIONS(6615), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226893,13 +229535,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, - [103511] = 3, + [105190] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3358), 1, + STATE(3430), 1, sym_comment, - ACTIONS(6367), 13, + ACTIONS(6617), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226912,13 +229553,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, - [103533] = 3, + [105211] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3359), 1, + STATE(3431), 1, sym_comment, - ACTIONS(6369), 13, + ACTIONS(6619), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226931,17 +229571,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, - [103555] = 5, + [105232] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6373), 1, - anon_sym_QMARK, - ACTIONS(6375), 1, + ACTIONS(5887), 1, anon_sym_DASH2, - STATE(3360), 1, + STATE(3432), 1, sym_comment, - ACTIONS(6371), 11, + ACTIONS(5300), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -226953,12 +229590,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [103581] = 3, + [105255] = 12, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1681), 1, + sym__entry_separator, + ACTIONS(1683), 1, + anon_sym_RBRACK, + ACTIONS(1695), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6150), 1, + anon_sym_LPAREN2, + ACTIONS(6581), 1, + anon_sym_DOLLAR, + ACTIONS(6621), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6623), 1, + aux_sym__immediate_decimal_token2, + STATE(3433), 1, + sym_comment, + STATE(4549), 1, + sym__immediate_decimal, + ACTIONS(6625), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4414), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [105294] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3361), 1, + STATE(3434), 1, sym_comment, - ACTIONS(5683), 13, + ACTIONS(6627), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226971,16 +229635,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, - [103603] = 4, - ACTIONS(103), 1, + [105315] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3362), 1, + STATE(3435), 1, sym_comment, - ACTIONS(2170), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2172), 11, + ACTIONS(6629), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226992,46 +229652,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, - [103627] = 15, + anon_sym_RPAREN, + [105336] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5819), 1, - sym_identifier, - ACTIONS(5825), 1, - anon_sym_DOLLAR, - ACTIONS(5827), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5829), 1, - anon_sym_DASH_DASH, - ACTIONS(5831), 1, - anon_sym_DASH2, - ACTIONS(6377), 1, - anon_sym_RBRACK, - STATE(2550), 1, - sym_param_long_flag, - STATE(2684), 1, - sym__param_name, - STATE(2939), 1, - aux_sym_parameter_parens_repeat1, - STATE(3363), 1, - sym_comment, - STATE(3374), 1, - sym_param_rest, - STATE(3375), 1, - sym_param_opt, - STATE(3385), 1, - sym_param_short_flag, - STATE(3761), 1, - sym_parameter, - [103673] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3364), 1, + STATE(3436), 1, sym_comment, - ACTIONS(4718), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4716), 11, + ACTIONS(6631), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227043,52 +229670,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, - [103697] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6379), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6381), 1, - aux_sym__immediate_decimal_token5, - STATE(3365), 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, - [103724] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6383), 1, - anon_sym_DASH2, - STATE(3366), 1, - sym_comment, - ACTIONS(5796), 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, - [103747] = 3, + [105357] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3367), 1, + STATE(3437), 1, sym_comment, - ACTIONS(6385), 12, + ACTIONS(6633), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227101,12 +229689,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [103768] = 3, + [105378] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3368), 1, + STATE(3438), 1, sym_comment, - ACTIONS(6387), 12, + ACTIONS(6635), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227119,31 +229707,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [103789] = 4, + [105399] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2104), 1, - anon_sym_DASH2, - STATE(3369), 1, + STATE(3439), 1, sym_comment, - ACTIONS(2102), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6637), 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, - [103812] = 3, + [105420] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3370), 1, + STATE(3440), 1, sym_comment, - ACTIONS(6389), 12, + ACTIONS(6639), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227156,32 +229743,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [103833] = 4, + [105441] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5798), 1, - anon_sym_DASH2, - STATE(3371), 1, + STATE(3441), 1, sym_comment, - ACTIONS(5275), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6641), 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, - [103856] = 3, + [105462] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3372), 1, + STATE(3442), 1, sym_comment, - ACTIONS(6226), 12, - ts_builtin_sym_end, + ACTIONS(6643), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227193,12 +229778,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, - [103877] = 3, + anon_sym_RPAREN, + [105483] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3373), 1, + STATE(3443), 1, sym_comment, - ACTIONS(6391), 12, + ACTIONS(6645), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227211,14 +229797,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [103898] = 4, + [105504] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1677), 1, + sym__space, + ACTIONS(3347), 1, + anon_sym_LPAREN2, + ACTIONS(3663), 1, + anon_sym_DOLLAR, + ACTIONS(6647), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6649), 1, + aux_sym__immediate_decimal_token2, + STATE(3219), 1, + sym__immediate_decimal, + STATE(3444), 1, + sym_comment, + ACTIONS(1679), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(6064), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3218), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [105541] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6395), 1, + ACTIONS(5912), 1, anon_sym_DASH2, - STATE(3374), 1, + STATE(3445), 1, sym_comment, - ACTIONS(6393), 11, + ACTIONS(5257), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -227230,111 +229842,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [103921] = 4, + [105564] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6399), 1, - anon_sym_DASH2, - STATE(3375), 1, + STATE(3446), 1, sym_comment, - ACTIONS(6397), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6651), 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, - [103944] = 12, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1598), 1, - sym__entry_separator, - ACTIONS(1602), 1, - anon_sym_RBRACK, - ACTIONS(1635), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6102), 1, - anon_sym_LPAREN2, - ACTIONS(6401), 1, - anon_sym_DOLLAR, - ACTIONS(6403), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6405), 1, - aux_sym__immediate_decimal_token2, - STATE(3376), 1, - sym_comment, - STATE(4501), 1, - sym__immediate_decimal, - ACTIONS(6407), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4214), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [103983] = 11, + [105585] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1681), 1, + ACTIONS(1659), 1, sym__space, - ACTIONS(3118), 1, + ACTIONS(3347), 1, anon_sym_LPAREN2, - ACTIONS(3683), 1, + ACTIONS(3663), 1, anon_sym_DOLLAR, - ACTIONS(6409), 1, + ACTIONS(6647), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6411), 1, + ACTIONS(6649), 1, aux_sym__immediate_decimal_token2, - STATE(3183), 1, + STATE(3221), 1, sym__immediate_decimal, - STATE(3377), 1, + STATE(3447), 1, sym_comment, - ACTIONS(1683), 2, + ACTIONS(1661), 2, sym__newline, anon_sym_SEMI, - ACTIONS(6171), 2, + ACTIONS(6064), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3182), 2, + STATE(3220), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104020] = 11, + [105622] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3448), 1, + sym_comment, + ACTIONS(6653), 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, + [105643] = 12, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1663), 1, - sym__space, - ACTIONS(3118), 1, - anon_sym_LPAREN2, - ACTIONS(3683), 1, + ACTIONS(1798), 1, anon_sym_DOLLAR, - ACTIONS(6409), 1, + ACTIONS(6150), 1, + anon_sym_LPAREN2, + ACTIONS(6154), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6411), 1, + ACTIONS(6156), 1, aux_sym__immediate_decimal_token2, - STATE(3186), 1, - sym__immediate_decimal, - STATE(3378), 1, + ACTIONS(6655), 1, + anon_sym_RBRACK, + ACTIONS(6657), 1, + anon_sym_DOLLAR2, + ACTIONS(6659), 1, + aux_sym__unquoted_in_list_token2, + STATE(3449), 1, sym_comment, - ACTIONS(1665), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(6171), 2, + STATE(3816), 1, + sym__immediate_decimal, + ACTIONS(6158), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3185), 2, + STATE(4147), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104057] = 3, + [105682] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3379), 1, + STATE(3450), 1, sym_comment, - ACTIONS(4873), 12, - ts_builtin_sym_end, + ACTIONS(6661), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227346,12 +229948,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, - [104078] = 3, + anon_sym_RPAREN, + [105703] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3380), 1, + STATE(3451), 1, sym_comment, - ACTIONS(6413), 12, + ACTIONS(6507), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227363,13 +229967,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, - [104099] = 3, + [105724] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3381), 1, + STATE(3452), 1, sym_comment, - ACTIONS(6415), 12, + ACTIONS(6663), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227382,31 +229985,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [104120] = 4, + [105745] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6419), 1, - anon_sym_DASH2, - STATE(3382), 1, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + ACTIONS(1631), 1, + anon_sym_LBRACE, + ACTIONS(1637), 1, + sym__unquoted_pattern, + ACTIONS(2938), 1, + anon_sym_DOLLAR, + ACTIONS(6665), 1, + anon_sym_DOT, + STATE(3453), 1, sym_comment, - ACTIONS(6417), 11, - anon_sym_EQ, - sym_identifier, + STATE(4324), 1, + sym__immediate_decimal, + ACTIONS(6667), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6669), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4382), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [105782] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3454), 1, + sym_comment, + ACTIONS(4875), 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, - [104143] = 3, + [105803] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3383), 1, + STATE(3455), 1, sym_comment, - ACTIONS(6421), 12, + ACTIONS(6671), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227419,52 +230047,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [104164] = 6, + [105824] = 12, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6423), 1, - anon_sym_DOT, - ACTIONS(6425), 1, - aux_sym__immediate_decimal_token5, - STATE(3384), 1, - sym_comment, - ACTIONS(747), 4, - anon_sym_RBRACK, + ACTIONS(1631), 1, + sym__entry_separator, + ACTIONS(1633), 1, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(749), 6, + ACTIONS(1798), 1, + anon_sym_DOLLAR, + ACTIONS(6150), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [104191] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6429), 1, - anon_sym_DASH2, - STATE(3385), 1, + ACTIONS(6437), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6439), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6673), 1, + anon_sym_DOT, + STATE(3456), 1, sym_comment, - ACTIONS(6427), 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, - [104214] = 3, + STATE(4290), 1, + sym__immediate_decimal, + ACTIONS(6441), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4036), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [105863] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3386), 1, + STATE(3457), 1, sym_comment, - ACTIONS(6431), 12, + ACTIONS(6675), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227477,12 +230092,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [104235] = 3, + [105884] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3387), 1, + STATE(3458), 1, sym_comment, - ACTIONS(6433), 12, + ACTIONS(6677), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227495,88 +230110,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [104256] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6437), 1, - anon_sym_DASH2, - STATE(3388), 1, - sym_comment, - ACTIONS(6435), 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, - [104279] = 4, - ACTIONS(3), 1, + [105905] = 12, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6441), 1, - anon_sym_DASH2, - STATE(3389), 1, - sym_comment, - ACTIONS(6439), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1798), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [104302] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6445), 1, - anon_sym_DASH2, - STATE(3390), 1, - sym_comment, - ACTIONS(6443), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(6150), 1, + anon_sym_LPAREN2, + ACTIONS(6154), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6156), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6657), 1, + anon_sym_DOLLAR2, + ACTIONS(6659), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(6679), 1, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [104325] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6449), 1, - anon_sym_DASH2, - STATE(3391), 1, + STATE(3459), 1, sym_comment, - ACTIONS(6447), 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, - [104348] = 3, + STATE(3816), 1, + sym__immediate_decimal, + ACTIONS(6158), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4147), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [105944] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3392), 1, + STATE(3460), 1, sym_comment, - ACTIONS(6451), 12, + ACTIONS(6681), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227589,31 +230155,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [104369] = 4, + [105965] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2112), 1, - anon_sym_DASH2, - STATE(3393), 1, + STATE(3461), 1, sym_comment, - ACTIONS(2110), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6683), 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, - [104392] = 3, + [105986] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3394), 1, + STATE(3462), 1, sym_comment, - ACTIONS(6453), 12, + ACTIONS(6685), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227626,129 +230191,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [104413] = 4, + [106007] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5837), 1, - anon_sym_DASH2, - STATE(3395), 1, + STATE(3463), 1, sym_comment, - ACTIONS(5835), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6687), 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, - [104436] = 4, + [106028] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5815), 1, - anon_sym_DASH2, - STATE(3396), 1, + STATE(3464), 1, sym_comment, - ACTIONS(5255), 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, - [104459] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6455), 1, + ACTIONS(6689), 12, sym__newline, - ACTIONS(6458), 1, - anon_sym_DASH2, - STATE(3397), 1, - sym_comment, - ACTIONS(2146), 2, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4431), 8, - sym_identifier, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [104486] = 4, + [106049] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6462), 1, - anon_sym_DASH2, - STATE(3398), 1, + STATE(3465), 1, sym_comment, - ACTIONS(6460), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6691), 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, - [104509] = 4, + [106070] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2120), 1, - anon_sym_DASH2, - STATE(3399), 1, + STATE(3466), 1, sym_comment, - ACTIONS(2118), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6693), 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, - [104532] = 5, + [106091] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1971), 1, - anon_sym_DASH2, - ACTIONS(6464), 1, - sym__newline, - STATE(3400), 2, - aux_sym__repeat_newline, + STATE(3467), 1, sym_comment, - ACTIONS(1966), 9, - anon_sym_EQ, - sym_identifier, + ACTIONS(6695), 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_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [104557] = 3, + [106112] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3401), 1, + STATE(3468), 1, sym_comment, - ACTIONS(6467), 12, + ACTIONS(6697), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227761,40 +230299,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [104578] = 12, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1598), 1, - sym__entry_separator, - ACTIONS(1602), 1, - anon_sym_RBRACE, - ACTIONS(1836), 1, - anon_sym_DOLLAR, - ACTIONS(6102), 1, - anon_sym_LPAREN2, - ACTIONS(6235), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6237), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6469), 1, - anon_sym_DOT, - STATE(3402), 1, - sym_comment, - STATE(4086), 1, - sym__immediate_decimal, - ACTIONS(6239), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3934), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [104617] = 3, + [106133] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3403), 1, + STATE(3469), 1, sym_comment, - ACTIONS(4867), 12, - ts_builtin_sym_end, + ACTIONS(6699), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227806,12 +230316,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, - [104638] = 3, + anon_sym_RPAREN, + [106154] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3404), 1, + STATE(3470), 1, sym_comment, - ACTIONS(6471), 12, + ACTIONS(6701), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227824,12 +230335,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [104659] = 3, + [106175] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3405), 1, + STATE(3471), 1, sym_comment, - ACTIONS(6473), 12, + ACTIONS(6703), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227842,58 +230353,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [104680] = 12, + [106196] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1836), 1, - anon_sym_DOLLAR, - ACTIONS(6102), 1, + ACTIONS(1669), 1, + sym__space, + ACTIONS(3347), 1, anon_sym_LPAREN2, - ACTIONS(6106), 1, + ACTIONS(3663), 1, + anon_sym_DOLLAR, + ACTIONS(6647), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6108), 1, + ACTIONS(6649), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6475), 1, - anon_sym_RBRACK, - ACTIONS(6477), 1, - anon_sym_DOLLAR2, - ACTIONS(6479), 1, - aux_sym__unquoted_in_list_token2, - STATE(3406), 1, - sym_comment, - STATE(3774), 1, + STATE(3223), 1, sym__immediate_decimal, - ACTIONS(6110), 2, + STATE(3472), 1, + sym_comment, + ACTIONS(1671), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(6064), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4020), 2, + STATE(3222), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104719] = 4, + [106233] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6481), 1, - anon_sym_DASH2, - STATE(3407), 1, + STATE(3473), 1, sym_comment, - ACTIONS(6173), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6705), 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, - [104742] = 3, + [106254] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3408), 1, + STATE(3474), 1, sym_comment, - ACTIONS(6483), 12, + ACTIONS(6707), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227906,40 +230415,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [104763] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1639), 1, - sym__entry_separator, - ACTIONS(6102), 1, - anon_sym_LPAREN2, - ACTIONS(6401), 1, - anon_sym_DOLLAR, - ACTIONS(6485), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6487), 1, - aux_sym__immediate_decimal_token2, - STATE(3409), 1, - sym_comment, - STATE(4211), 1, - sym__immediate_decimal, - ACTIONS(1641), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(6239), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4210), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [104800] = 4, + [106275] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5790), 1, + ACTIONS(2427), 1, anon_sym_DASH2, - STATE(3410), 1, + STATE(3475), 1, sym_comment, - ACTIONS(5788), 11, + ACTIONS(2425), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -227951,13 +230434,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [104823] = 3, + [106298] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3411), 1, + STATE(3476), 1, sym_comment, - ACTIONS(6241), 12, - ts_builtin_sym_end, + ACTIONS(6709), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227969,40 +230451,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, - [104844] = 11, - ACTIONS(103), 1, + anon_sym_RPAREN, + [106319] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__space, - ACTIONS(3118), 1, - anon_sym_LPAREN2, - ACTIONS(3683), 1, - anon_sym_DOLLAR, - ACTIONS(6409), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6411), 1, - aux_sym__immediate_decimal_token2, - STATE(3152), 1, - sym__immediate_decimal, - STATE(3412), 1, + STATE(3477), 1, sym_comment, - ACTIONS(1641), 2, + ACTIONS(6711), 12, sym__newline, anon_sym_SEMI, - ACTIONS(6171), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3148), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [104881] = 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, + [106340] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2250), 1, + ACTIONS(2431), 1, anon_sym_DASH2, - STATE(3413), 1, + STATE(3478), 1, sym_comment, - ACTIONS(2248), 11, + ACTIONS(2429), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -228014,33 +230489,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [104904] = 6, + [106363] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, - anon_sym_DOT, - ACTIONS(6491), 1, - aux_sym__immediate_decimal_token5, - STATE(3414), 1, + STATE(3479), 1, sym_comment, - ACTIONS(747), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 8, - anon_sym_if, + ACTIONS(6713), 12, 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, - [104931] = 3, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [106384] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3415), 1, + STATE(3480), 1, sym_comment, - ACTIONS(6493), 12, + ACTIONS(6715), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228053,105 +230525,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [104952] = 12, + [106405] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1651), 1, + ACTIONS(1599), 1, sym__entry_separator, - ACTIONS(1653), 1, - anon_sym_RBRACK, - ACTIONS(1679), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6102), 1, - anon_sym_LPAREN2, - ACTIONS(6401), 1, + ACTIONS(6497), 1, anon_sym_DOLLAR, - ACTIONS(6403), 1, + ACTIONS(6499), 1, + anon_sym_LPAREN2, + ACTIONS(6501), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6405), 1, + ACTIONS(6503), 1, aux_sym__immediate_decimal_token2, - STATE(3416), 1, + STATE(3481), 1, sym_comment, - STATE(4323), 1, + STATE(4372), 1, sym__immediate_decimal, - ACTIONS(6407), 2, + ACTIONS(1603), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6505), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4258), 2, + STATE(4371), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104991] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3417), 1, - sym_comment, - ACTIONS(6269), 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, - [105012] = 11, - ACTIONS(3), 1, + [106442] = 11, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1598), 1, - anon_sym_LBRACE, - ACTIONS(1604), 1, - anon_sym_LPAREN2, - ACTIONS(1635), 1, - sym__unquoted_pattern, - ACTIONS(2873), 1, + ACTIONS(1677), 1, + sym__entry_separator, + ACTIONS(6497), 1, anon_sym_DOLLAR, - ACTIONS(6495), 1, - anon_sym_DOT, - STATE(3418), 1, + ACTIONS(6499), 1, + anon_sym_LPAREN2, + ACTIONS(6501), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6503), 1, + aux_sym__immediate_decimal_token2, + STATE(3482), 1, sym_comment, - STATE(4202), 1, + STATE(4409), 1, sym__immediate_decimal, - ACTIONS(6497), 2, + ACTIONS(1679), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6505), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4408), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [106479] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1659), 1, + sym__entry_separator, + ACTIONS(6497), 1, + anon_sym_DOLLAR, + ACTIONS(6499), 1, + anon_sym_LPAREN2, + ACTIONS(6501), 1, aux_sym__immediate_decimal_token1, + ACTIONS(6503), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6499), 2, + STATE(3483), 1, + sym_comment, + STATE(4411), 1, + sym__immediate_decimal, + ACTIONS(1661), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6505), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4509), 2, + STATE(4410), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105049] = 6, - ACTIONS(3), 1, + [106516] = 11, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1669), 1, + sym__entry_separator, + ACTIONS(6497), 1, + anon_sym_DOLLAR, + ACTIONS(6499), 1, + anon_sym_LPAREN2, ACTIONS(6501), 1, aux_sym__immediate_decimal_token1, ACTIONS(6503), 1, - aux_sym__immediate_decimal_token5, - STATE(3419), 1, + aux_sym__immediate_decimal_token2, + STATE(3484), 1, sym_comment, - ACTIONS(739), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(741), 8, - anon_sym_if, + STATE(4413), 1, + sym__immediate_decimal, + ACTIONS(1671), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6505), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4412), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [106553] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3485), 1, + sym_comment, + ACTIONS(6717), 12, 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, - [105076] = 3, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [106574] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3420), 1, + STATE(3486), 1, sym_comment, - ACTIONS(6365), 12, - ts_builtin_sym_end, + ACTIONS(6719), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228163,14 +230664,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, - [105097] = 4, + anon_sym_RPAREN, + [106595] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2254), 1, + ACTIONS(6721), 1, anon_sym_DASH2, - STATE(3421), 1, + STATE(3487), 1, sym_comment, - ACTIONS(2252), 11, + ACTIONS(6239), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -228182,13 +230684,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [105120] = 3, + [106618] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3422), 1, + STATE(3488), 1, sym_comment, - ACTIONS(6249), 12, - ts_builtin_sym_end, + ACTIONS(6723), 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, + [106639] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3489), 1, + sym_comment, + ACTIONS(6725), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228200,14 +230719,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, - [105141] = 4, + anon_sym_RPAREN, + [106660] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2234), 1, + ACTIONS(6727), 1, anon_sym_DASH2, - STATE(3423), 1, + STATE(3490), 1, sym_comment, - ACTIONS(2232), 11, + ACTIONS(6250), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -228219,35 +230739,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [105164] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6505), 1, - anon_sym_DOT, - ACTIONS(6507), 1, - aux_sym__immediate_decimal_token5, - STATE(3424), 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, - [105191] = 4, + [106683] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2258), 1, + ACTIONS(2435), 1, anon_sym_DASH2, - STATE(3425), 1, + STATE(3491), 1, sym_comment, - ACTIONS(2256), 11, + ACTIONS(2433), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -228259,14 +230758,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [105214] = 4, + [106706] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5817), 1, + ACTIONS(6727), 1, anon_sym_DASH2, - STATE(3426), 1, + STATE(3492), 1, sym_comment, - ACTIONS(5281), 11, + ACTIONS(6250), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -228278,14 +230777,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [105237] = 4, + [106729] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2262), 1, + ACTIONS(6729), 1, anon_sym_DASH2, - STATE(3427), 1, + STATE(3493), 1, sym_comment, - ACTIONS(2260), 11, + ACTIONS(6267), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -228297,18 +230796,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [105260] = 6, + [106752] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2907), 1, - sym__newline, - STATE(882), 1, - aux_sym__pipe_separator, - STATE(3428), 1, + STATE(3494), 1, sym_comment, - STATE(3546), 1, - aux_sym__repeat_newline, - ACTIONS(2325), 9, + ACTIONS(6731), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -228318,13 +230813,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, - [105287] = 3, + anon_sym_RPAREN, + [106773] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3429), 1, + ACTIONS(6733), 1, + anon_sym_DOT, + ACTIONS(6735), 1, + aux_sym__immediate_decimal_token5, + STATE(3495), 1, sym_comment, - ACTIONS(6265), 12, - ts_builtin_sym_end, + 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, + [106800] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3496), 1, + sym_comment, + ACTIONS(6737), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228336,62 +230852,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, - [105308] = 6, - ACTIONS(103), 1, + anon_sym_RPAREN, + [106821] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6509), 1, + ACTIONS(6739), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6511), 1, + ACTIONS(6741), 1, aux_sym__immediate_decimal_token5, - STATE(3430), 1, + STATE(3497), 1, sym_comment, - ACTIONS(739), 4, - sym__newline, - anon_sym_SEMI, + ACTIONS(739), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(741), 6, - sym__space, - anon_sym_LPAREN2, + 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, - [105335] = 12, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1598), 1, - sym__entry_separator, - ACTIONS(1602), 1, - anon_sym_RBRACE, - ACTIONS(1635), 1, - sym__unquoted_pattern_in_record, - ACTIONS(6102), 1, - anon_sym_LPAREN2, - ACTIONS(6401), 1, - anon_sym_DOLLAR, - ACTIONS(6513), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6515), 1, - aux_sym__immediate_decimal_token2, - STATE(3431), 1, - sym_comment, - STATE(4442), 1, - sym__immediate_decimal, - ACTIONS(6517), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4214), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [105374] = 4, + [106848] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5879), 1, + ACTIONS(2451), 1, anon_sym_DASH2, - STATE(3432), 1, + STATE(3498), 1, sym_comment, - ACTIONS(5235), 11, + ACTIONS(2449), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -228403,14 +230893,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [105397] = 4, + [106871] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5883), 1, + ACTIONS(2455), 1, anon_sym_DASH2, - STATE(3433), 1, + STATE(3499), 1, sym_comment, - ACTIONS(5239), 11, + ACTIONS(2453), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -228422,31 +230912,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [105420] = 4, - ACTIONS(3), 1, + [106894] = 11, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2266), 1, - anon_sym_DASH2, - STATE(3434), 1, + ACTIONS(1599), 1, + sym__entry_separator, + ACTIONS(6150), 1, + anon_sym_LPAREN2, + ACTIONS(6581), 1, + anon_sym_DOLLAR, + ACTIONS(6743), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6745), 1, + aux_sym__immediate_decimal_token2, + STATE(3500), 1, sym_comment, - ACTIONS(2264), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, + STATE(4372), 1, + sym__immediate_decimal, + ACTIONS(1603), 2, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [105443] = 3, + anon_sym_RBRACE, + ACTIONS(6441), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4371), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [106931] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3435), 1, + STATE(3501), 1, sym_comment, - ACTIONS(6519), 12, + ACTIONS(4891), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228459,12 +230956,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [105464] = 3, + [106952] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6747), 1, + anon_sym_DOT, + ACTIONS(6749), 1, + aux_sym__immediate_decimal_token5, + STATE(3502), 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, + [106979] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1448), 1, + anon_sym_BANG, + ACTIONS(6751), 1, + anon_sym_QMARK2, + STATE(355), 1, + sym__path_suffix, + STATE(3503), 1, + sym_comment, + ACTIONS(1444), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1442), 6, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_COLON2, + anon_sym_DOT2, + [107008] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3436), 1, + STATE(3504), 1, sym_comment, - ACTIONS(4885), 12, + ACTIONS(6753), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228477,31 +231017,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [105485] = 4, - ACTIONS(3), 1, + [107029] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6481), 1, - anon_sym_DASH2, - STATE(3437), 1, + ACTIONS(6755), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6757), 1, + aux_sym__immediate_decimal_token5, + STATE(3505), 1, sym_comment, - ACTIONS(6173), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(739), 4, 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, - [105508] = 3, + 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, + [107056] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3438), 1, + STATE(3506), 1, sym_comment, - ACTIONS(6521), 12, + ACTIONS(4867), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228513,14 +231056,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, - [105529] = 3, + [107077] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3439), 1, + STATE(3507), 1, sym_comment, - ACTIONS(5683), 12, - ts_builtin_sym_end, + ACTIONS(6759), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228532,14 +231073,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, - [105550] = 4, + anon_sym_RPAREN, + [107098] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2230), 1, + ACTIONS(2459), 1, anon_sym_DASH2, - STATE(3440), 1, + STATE(3508), 1, sym_comment, - ACTIONS(2228), 11, + ACTIONS(2457), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -228551,13 +231093,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [105573] = 3, + [107121] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3441), 1, + STATE(3509), 1, sym_comment, - ACTIONS(6361), 12, - ts_builtin_sym_end, + ACTIONS(6761), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228569,33 +231110,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, - [105594] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6523), 1, - anon_sym_DASH2, - STATE(3442), 1, - sym_comment, - ACTIONS(6204), 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, - [105617] = 3, + [107142] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3443), 1, - sym_comment, - ACTIONS(6525), 12, + ACTIONS(2922), 1, sym__newline, - anon_sym_SEMI, + STATE(727), 1, + aux_sym__pipe_separator, + STATE(3510), 1, + sym_comment, + STATE(3592), 1, + aux_sym__repeat_newline, + ACTIONS(2318), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -228605,14 +231132,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, - [105638] = 3, + [107169] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3444), 1, + STATE(3511), 1, sym_comment, - ACTIONS(6369), 12, - ts_builtin_sym_end, + ACTIONS(6763), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228624,31 +231149,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, - [105659] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5921), 1, - anon_sym_DASH2, - STATE(3445), 1, - sym_comment, - ACTIONS(5294), 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, - [105682] = 3, + [107190] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3446), 1, + STATE(3512), 1, sym_comment, - ACTIONS(6271), 12, + ACTIONS(4873), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -228661,50 +231168,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, - [105703] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2202), 1, - anon_sym_DASH2, - STATE(3447), 1, - sym_comment, - ACTIONS(2200), 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, - [105726] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6527), 1, - anon_sym_DASH2, - STATE(3448), 1, - sym_comment, - ACTIONS(5784), 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, - [105749] = 3, + [107211] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3449), 1, + STATE(3513), 1, sym_comment, - ACTIONS(6529), 12, + ACTIONS(6765), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228717,12 +231186,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [105770] = 3, + [107232] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3450), 1, + STATE(3514), 1, sym_comment, - ACTIONS(6531), 12, + ACTIONS(6767), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228735,195 +231204,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [105791] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1639), 1, - sym__entry_separator, - ACTIONS(6347), 1, - anon_sym_DOLLAR, - ACTIONS(6349), 1, - anon_sym_LPAREN2, - ACTIONS(6351), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6353), 1, - aux_sym__immediate_decimal_token2, - STATE(3451), 1, - sym_comment, - STATE(4211), 1, - sym__immediate_decimal, - ACTIONS(1641), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6355), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4210), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [105828] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1667), 1, - sym__entry_separator, - ACTIONS(6347), 1, - anon_sym_DOLLAR, - ACTIONS(6349), 1, - anon_sym_LPAREN2, - ACTIONS(6351), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6353), 1, - aux_sym__immediate_decimal_token2, - STATE(3452), 1, - sym_comment, - STATE(4253), 1, - sym__immediate_decimal, - ACTIONS(1669), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6355), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4252), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [105865] = 11, + [107253] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1681), 1, + ACTIONS(1677), 1, sym__entry_separator, - ACTIONS(6347), 1, - anon_sym_DOLLAR, - ACTIONS(6349), 1, + ACTIONS(6150), 1, anon_sym_LPAREN2, - ACTIONS(6351), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6353), 1, - aux_sym__immediate_decimal_token2, - STATE(3453), 1, - sym_comment, - STATE(4255), 1, - sym__immediate_decimal, - ACTIONS(1683), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6355), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4254), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [105902] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1663), 1, - sym__entry_separator, - ACTIONS(6347), 1, + ACTIONS(6581), 1, anon_sym_DOLLAR, - ACTIONS(6349), 1, - anon_sym_LPAREN2, - ACTIONS(6351), 1, + ACTIONS(6743), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6353), 1, + ACTIONS(6745), 1, aux_sym__immediate_decimal_token2, - STATE(3454), 1, + STATE(3515), 1, sym_comment, - STATE(4257), 1, + STATE(4409), 1, sym__immediate_decimal, - ACTIONS(1665), 2, + ACTIONS(1679), 2, anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6355), 2, + anon_sym_RBRACE, + ACTIONS(6441), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4256), 2, + STATE(4408), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105939] = 11, + [107290] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1667), 1, + ACTIONS(1659), 1, sym__entry_separator, - ACTIONS(6102), 1, + ACTIONS(6150), 1, anon_sym_LPAREN2, - ACTIONS(6401), 1, + ACTIONS(6581), 1, anon_sym_DOLLAR, - ACTIONS(6485), 1, + ACTIONS(6743), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6487), 1, + ACTIONS(6745), 1, aux_sym__immediate_decimal_token2, - STATE(3455), 1, + STATE(3516), 1, sym_comment, - STATE(4253), 1, + STATE(4411), 1, sym__immediate_decimal, - ACTIONS(1669), 2, + ACTIONS(1661), 2, anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(6239), 2, + ACTIONS(6441), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4252), 2, + STATE(4410), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105976] = 11, + [107327] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1681), 1, + ACTIONS(1669), 1, sym__entry_separator, - ACTIONS(6102), 1, + ACTIONS(6150), 1, anon_sym_LPAREN2, - ACTIONS(6401), 1, + ACTIONS(6581), 1, anon_sym_DOLLAR, - ACTIONS(6485), 1, + ACTIONS(6743), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6487), 1, + ACTIONS(6745), 1, aux_sym__immediate_decimal_token2, - STATE(3456), 1, + STATE(3517), 1, sym_comment, - STATE(4255), 1, + STATE(4413), 1, sym__immediate_decimal, - ACTIONS(1683), 2, + ACTIONS(1671), 2, anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(6239), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4254), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [106013] = 12, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1651), 1, - sym__entry_separator, - ACTIONS(1653), 1, - anon_sym_RBRACE, - ACTIONS(1679), 1, - sym__unquoted_pattern_in_record, - ACTIONS(6102), 1, - anon_sym_LPAREN2, - ACTIONS(6401), 1, - anon_sym_DOLLAR, - ACTIONS(6513), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6515), 1, - aux_sym__immediate_decimal_token2, - STATE(3457), 1, - sym_comment, - STATE(4449), 1, - sym__immediate_decimal, - ACTIONS(6517), 2, + ACTIONS(6441), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4258), 2, + STATE(4412), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106052] = 3, + [107364] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3458), 1, + STATE(3518), 1, sym_comment, - ACTIONS(6273), 12, + ACTIONS(5744), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -228936,14 +231300,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, - [106073] = 4, + [107385] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6533), 1, - anon_sym_EQ, - STATE(3459), 1, + STATE(3519), 1, sym_comment, - ACTIONS(6226), 11, + ACTIONS(6555), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228955,86 +231318,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, - [106096] = 6, + [107406] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5970), 1, - sym__newline, - ACTIONS(6535), 1, - anon_sym_else, - STATE(3460), 1, + ACTIONS(2463), 1, + anon_sym_DASH2, + STATE(3520), 1, sym_comment, - STATE(3465), 1, - aux_sym__repeat_newline, - ACTIONS(5973), 9, + ACTIONS(2461), 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, - [106123] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6537), 1, - anon_sym_DOT, - ACTIONS(6539), 1, - aux_sym__immediate_decimal_token5, - STATE(3461), 1, - sym_comment, - ACTIONS(747), 4, + anon_sym_COLON, 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, - [106150] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1663), 1, - sym__entry_separator, - ACTIONS(6102), 1, - anon_sym_LPAREN2, - ACTIONS(6401), 1, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(6485), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6487), 1, - aux_sym__immediate_decimal_token2, - STATE(3462), 1, - sym_comment, - STATE(4257), 1, - sym__immediate_decimal, - ACTIONS(1665), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(6239), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4256), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [106187] = 6, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [107429] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6027), 1, - sym__newline, - ACTIONS(6541), 1, - anon_sym_else, - STATE(3463), 1, + STATE(3521), 1, sym_comment, - STATE(3467), 1, - aux_sym__repeat_newline, - ACTIONS(6030), 9, + ACTIONS(6557), 12, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -229044,18 +231355,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, - [106214] = 6, + [107450] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6034), 1, + ACTIONS(2922), 1, sym__newline, - ACTIONS(6543), 1, - anon_sym_else, - STATE(3464), 1, + STATE(728), 1, + aux_sym__pipe_separator, + STATE(3522), 1, sym_comment, - STATE(3468), 1, + STATE(3592), 1, aux_sym__repeat_newline, - ACTIONS(6037), 9, + ACTIONS(2318), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -229065,60 +231376,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [106241] = 6, + [107477] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6041), 1, - sym__newline, - ACTIONS(6545), 1, - anon_sym_else, - STATE(3465), 1, + ACTIONS(6769), 1, + anon_sym_DASH2, + STATE(3523), 1, sym_comment, - STATE(3469), 1, - aux_sym__repeat_newline, - ACTIONS(6044), 9, + ACTIONS(6028), 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, - [106268] = 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, + [107500] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6048), 1, + ACTIONS(6771), 1, + anon_sym_DASH2, + STATE(3524), 1, + sym_comment, + ACTIONS(6008), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - ACTIONS(6547), 1, - anon_sym_else, - STATE(3466), 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, + [107523] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6775), 1, + anon_sym_DASH2, + STATE(3525), 1, sym_comment, - STATE(3470), 1, - aux_sym__repeat_newline, - ACTIONS(6051), 9, + ACTIONS(6773), 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, - [106295] = 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, + [107546] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6055), 1, + ACTIONS(6779), 1, + anon_sym_DASH2, + STATE(3526), 1, + sym_comment, + ACTIONS(6777), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - ACTIONS(6549), 1, - anon_sym_else, - STATE(3467), 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, + [107569] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3527), 1, sym_comment, - STATE(3471), 1, - aux_sym__repeat_newline, - ACTIONS(6058), 9, + ACTIONS(6429), 12, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -229128,18 +231470,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, - [106322] = 6, + [107590] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6076), 1, - sym__newline, - ACTIONS(6551), 1, - anon_sym_else, - STATE(3468), 1, + STATE(3528), 1, sym_comment, - STATE(3472), 1, - aux_sym__repeat_newline, - ACTIONS(6079), 9, + ACTIONS(6781), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -229149,155 +231487,231 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [106349] = 6, + anon_sym_RPAREN, + [107611] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1968), 1, + ACTIONS(6785), 1, + anon_sym_DASH2, + STATE(3529), 1, + sym_comment, + ACTIONS(6783), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - ACTIONS(6553), 1, - anon_sym_else, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(3469), 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, + [107634] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6787), 1, + anon_sym_DOT, + ACTIONS(6789), 1, + aux_sym__immediate_decimal_token5, + STATE(3530), 1, + sym_comment, + 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, + [107661] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6793), 1, + anon_sym_DASH2, + STATE(3531), 1, sym_comment, - ACTIONS(1966), 9, + ACTIONS(6791), 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, - [106376] = 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, + [107684] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6795), 1, + sym__newline, + ACTIONS(6798), 1, + anon_sym_DASH2, + STATE(3532), 1, + sym_comment, + ACTIONS(1966), 2, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4464), 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, + [107711] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6185), 1, - sym__newline, - ACTIONS(6556), 1, - anon_sym_else, - STATE(3470), 1, + ACTIONS(2467), 1, + anon_sym_DASH2, + STATE(3533), 1, sym_comment, - STATE(3473), 1, - aux_sym__repeat_newline, - ACTIONS(6188), 9, + ACTIONS(2465), 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, - [106403] = 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, + [107734] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1968), 1, - sym__newline, - ACTIONS(6558), 1, - anon_sym_else, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(3471), 1, + ACTIONS(6802), 1, + anon_sym_DASH2, + STATE(3534), 1, sym_comment, - ACTIONS(1966), 9, + ACTIONS(6800), 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, - [106430] = 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, + [107757] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1968), 1, - sym__newline, - ACTIONS(6561), 1, - anon_sym_else, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(3472), 1, + ACTIONS(2471), 1, + anon_sym_DASH2, + STATE(3535), 1, sym_comment, - ACTIONS(1966), 9, + ACTIONS(2469), 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, - [106457] = 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, + [107780] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6804), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6806), 1, + aux_sym__immediate_decimal_token5, + STATE(3536), 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, + [107807] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1968), 1, + ACTIONS(1867), 1, + anon_sym_DASH2, + ACTIONS(6808), 1, sym__newline, - ACTIONS(6564), 1, - anon_sym_else, - STATE(527), 1, + STATE(3537), 2, aux_sym__repeat_newline, - STATE(3473), 1, sym_comment, - ACTIONS(1966), 9, + ACTIONS(1862), 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, - [106484] = 3, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [107832] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3474), 1, + ACTIONS(6813), 1, + anon_sym_DASH2, + STATE(3538), 1, sym_comment, - ACTIONS(6228), 12, - ts_builtin_sym_end, + ACTIONS(6811), 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, - [106505] = 3, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [107855] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3475), 1, + ACTIONS(6817), 1, + anon_sym_DASH2, + STATE(3539), 1, sym_comment, - ACTIONS(6567), 12, + ACTIONS(6815), 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, - [106526] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [107878] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5925), 1, + ACTIONS(6821), 1, anon_sym_DASH2, - STATE(3476), 1, + STATE(3540), 1, sym_comment, - ACTIONS(5923), 11, + ACTIONS(6819), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -229309,32 +231723,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [106549] = 3, + [107901] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3477), 1, + ACTIONS(5893), 1, + anon_sym_DASH2, + STATE(3541), 1, sym_comment, - ACTIONS(4887), 12, + ACTIONS(5891), 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, - [106570] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [107924] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2270), 1, + ACTIONS(6825), 1, anon_sym_DASH2, - STATE(3478), 1, + STATE(3542), 1, sym_comment, - ACTIONS(2268), 11, + ACTIONS(6823), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -229346,14 +231761,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [106593] = 4, + [107947] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2274), 1, + ACTIONS(5850), 1, anon_sym_DASH2, - STATE(3479), 1, + STATE(3543), 1, sym_comment, - ACTIONS(2272), 11, + ACTIONS(5283), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -229365,14 +231780,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [106616] = 4, + [107970] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6569), 1, + ACTIONS(5820), 1, anon_sym_DASH2, - STATE(3480), 1, + STATE(3544), 1, sym_comment, - ACTIONS(6092), 11, + ACTIONS(5223), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -229384,12 +231799,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [106639] = 3, + [107993] = 12, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1631), 1, + sym__entry_separator, + ACTIONS(1633), 1, + anon_sym_RBRACK, + ACTIONS(1637), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6150), 1, + anon_sym_LPAREN2, + ACTIONS(6581), 1, + anon_sym_DOLLAR, + ACTIONS(6621), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6623), 1, + aux_sym__immediate_decimal_token2, + STATE(3545), 1, + sym_comment, + STATE(4368), 1, + sym__immediate_decimal, + ACTIONS(6625), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4374), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [108032] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3481), 1, + ACTIONS(6827), 1, + anon_sym_EQ, + STATE(3546), 1, sym_comment, - ACTIONS(6571), 12, + ACTIONS(6457), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229401,15 +231845,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, - [106660] = 3, + [108055] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3482), 1, - sym_comment, - ACTIONS(6573), 12, + ACTIONS(6262), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(6829), 1, + anon_sym_else, + STATE(3547), 1, + sym_comment, + STATE(3550), 1, + aux_sym__repeat_newline, + ACTIONS(6265), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -229419,15 +231866,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, - [106681] = 3, + [108082] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3483), 1, - sym_comment, - ACTIONS(6575), 12, + ACTIONS(6171), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(6831), 1, + anon_sym_else, + STATE(3548), 1, + sym_comment, + STATE(3552), 1, + aux_sym__repeat_newline, + ACTIONS(6174), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -229437,15 +231887,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, - [106702] = 3, + [108109] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3484), 1, - sym_comment, - ACTIONS(6577), 12, + ACTIONS(6178), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(6833), 1, + anon_sym_else, + STATE(3549), 1, + sym_comment, + STATE(3553), 1, + aux_sym__repeat_newline, + ACTIONS(6181), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -229455,34 +231908,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, - [106723] = 4, + [108136] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6581), 1, - anon_sym_DASH2, - STATE(3485), 1, - sym_comment, - ACTIONS(6579), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6187), 1, sym__newline, + ACTIONS(6835), 1, + anon_sym_else, + STATE(3550), 1, + sym_comment, + STATE(3554), 1, + aux_sym__repeat_newline, + ACTIONS(6190), 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, - [106746] = 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, + [108163] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3486), 1, - sym_comment, - ACTIONS(6583), 12, + ACTIONS(6279), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(6837), 1, + anon_sym_else, + STATE(3551), 1, + sym_comment, + STATE(3555), 1, + aux_sym__repeat_newline, + ACTIONS(6282), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -229492,15 +231950,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, - [106767] = 3, + [108190] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3487), 1, - sym_comment, - ACTIONS(6585), 12, + ACTIONS(6286), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(6839), 1, + anon_sym_else, + STATE(3552), 1, + sym_comment, + STATE(3556), 1, + aux_sym__repeat_newline, + ACTIONS(6289), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -229510,16 +231971,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, - [106788] = 3, + [108217] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3488), 1, - sym_comment, - ACTIONS(6230), 12, - ts_builtin_sym_end, + ACTIONS(6293), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(6841), 1, + anon_sym_else, + STATE(3553), 1, + sym_comment, + STATE(3557), 1, + aux_sym__repeat_newline, + ACTIONS(6296), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -229529,14 +231992,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, - [106809] = 3, + [108244] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3489), 1, - sym_comment, - ACTIONS(6587), 12, + ACTIONS(1864), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(6843), 1, + anon_sym_else, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(3554), 1, + sym_comment, + ACTIONS(1862), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -229546,15 +232013,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, - [106830] = 3, + [108271] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3490), 1, - sym_comment, - ACTIONS(6589), 12, + ACTIONS(6390), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(6846), 1, + anon_sym_else, + STATE(3555), 1, + sym_comment, + STATE(3558), 1, + aux_sym__repeat_newline, + ACTIONS(6393), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -229564,15 +232034,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, - [106851] = 3, + [108298] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3491), 1, - sym_comment, - ACTIONS(6591), 12, + ACTIONS(1864), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(6848), 1, + anon_sym_else, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(3556), 1, + sym_comment, + ACTIONS(1862), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -229582,42 +232055,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, - [106872] = 12, - ACTIONS(103), 1, + [108325] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1836), 1, - anon_sym_DOLLAR, - ACTIONS(6102), 1, - anon_sym_LPAREN2, - ACTIONS(6106), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6108), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6477), 1, - anon_sym_DOLLAR2, - ACTIONS(6479), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(6593), 1, - anon_sym_RBRACK, - STATE(3492), 1, + ACTIONS(1864), 1, + sym__newline, + ACTIONS(6851), 1, + anon_sym_else, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(3557), 1, sym_comment, - STATE(3774), 1, - sym__immediate_decimal, - ACTIONS(6110), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4020), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [106911] = 3, + ACTIONS(1862), 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, + [108352] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3493), 1, - sym_comment, - ACTIONS(6595), 12, + ACTIONS(1864), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(6854), 1, + anon_sym_else, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(3558), 1, + sym_comment, + ACTIONS(1862), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -229627,13 +232097,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, - [106932] = 3, + [108379] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3494), 1, + STATE(3559), 1, sym_comment, - ACTIONS(6267), 12, + ACTIONS(6487), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -229646,12 +232115,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, - [106953] = 3, + [108400] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3495), 1, + STATE(3560), 1, sym_comment, - ACTIONS(6597), 12, + ACTIONS(6457), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229663,98 +232133,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + [108421] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5818), 1, + anon_sym_DASH2, + STATE(3561), 1, + sym_comment, + ACTIONS(5249), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [106974] = 6, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [108444] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6599), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6601), 1, + ACTIONS(6857), 1, + anon_sym_DOT2, + STATE(352), 1, + sym_path, + STATE(372), 1, + sym_cell_path, + STATE(3562), 1, + sym_comment, + STATE(3620), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1456), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1454), 5, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_COLON2, + [108475] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6859), 1, + anon_sym_DOT, + ACTIONS(6861), 1, aux_sym__immediate_decimal_token5, - STATE(3496), 1, + STATE(3563), 1, sym_comment, - ACTIONS(739), 4, + ACTIONS(747), 4, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - ACTIONS(741), 6, + 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, - [107001] = 3, + [108502] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3497), 1, + ACTIONS(2172), 1, + anon_sym_DASH2, + STATE(3564), 1, sym_comment, - ACTIONS(6603), 12, + ACTIONS(2170), 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, - [107022] = 11, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [108525] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1667), 1, + ACTIONS(1599), 1, sym__space, - ACTIONS(3118), 1, + ACTIONS(3347), 1, anon_sym_LPAREN2, - ACTIONS(3683), 1, + ACTIONS(3663), 1, anon_sym_DOLLAR, - ACTIONS(6409), 1, + ACTIONS(6647), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6411), 1, + ACTIONS(6649), 1, aux_sym__immediate_decimal_token2, - STATE(3181), 1, + STATE(3211), 1, sym__immediate_decimal, - STATE(3498), 1, + STATE(3565), 1, sym_comment, - ACTIONS(1669), 2, + ACTIONS(1603), 2, sym__newline, anon_sym_SEMI, - ACTIONS(6171), 2, + ACTIONS(6064), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3179), 2, + STATE(3210), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107059] = 3, - ACTIONS(3), 1, + [108562] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3499), 1, + ACTIONS(6863), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6865), 1, + aux_sym__immediate_decimal_token5, + STATE(3566), 1, sym_comment, - ACTIONS(6605), 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, - [107080] = 4, + 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, + [108589] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6607), 1, + ACTIONS(6867), 1, anon_sym_EQ, - STATE(3500), 1, + STATE(3567), 1, sym_comment, - ACTIONS(6226), 11, + ACTIONS(6457), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229766,12 +232281,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, - [107103] = 3, + [108612] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3501), 1, + STATE(3568), 1, sym_comment, - ACTIONS(6367), 12, + ACTIONS(6553), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -229784,13 +232299,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, - [107124] = 3, + [108633] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3502), 1, + ACTIONS(6869), 1, + anon_sym_else, + STATE(3569), 1, sym_comment, - ACTIONS(6062), 12, - ts_builtin_sym_end, + ACTIONS(6451), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229802,12 +232318,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, - [107145] = 3, + [108656] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3503), 1, + STATE(3570), 1, sym_comment, - ACTIONS(6609), 12, + ACTIONS(6489), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229819,13 +232336,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, - [107166] = 3, + [108677] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3504), 1, + STATE(3571), 1, sym_comment, - ACTIONS(6611), 12, + ACTIONS(6871), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229838,18 +232354,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [107187] = 6, + [108698] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2907), 1, - sym__newline, - STATE(791), 1, - aux_sym__pipe_separator, - STATE(3505), 1, + STATE(3572), 1, sym_comment, - STATE(3546), 1, - aux_sym__repeat_newline, - ACTIONS(2325), 9, + ACTIONS(6873), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -229859,12 +232371,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, - [107214] = 3, + anon_sym_RPAREN, + [108719] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3506), 1, + STATE(3573), 1, sym_comment, - ACTIONS(6613), 12, + ACTIONS(6875), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229877,76 +232390,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [107235] = 4, + [108740] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6615), 1, - anon_sym_else, - STATE(3507), 1, + ACTIONS(5946), 1, + anon_sym_DASH2, + STATE(3574), 1, sym_comment, - ACTIONS(6245), 11, + ACTIONS(5944), 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, - [107258] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1466), 1, - anon_sym_BANG, - ACTIONS(6617), 1, - anon_sym_QMARK2, - STATE(367), 1, - sym__path_suffix, - STATE(3508), 1, - sym_comment, - ACTIONS(1458), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1456), 6, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_COLON2, - anon_sym_DOT2, - [107287] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6619), 1, - anon_sym_DOT2, - STATE(360), 1, - sym_path, - STATE(372), 1, - sym_cell_path, - STATE(3509), 1, - sym_comment, - STATE(3538), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1444), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1442), 5, + anon_sym_COLON, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_COLON2, - [107318] = 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [108763] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3510), 1, + STATE(3575), 1, sym_comment, - ACTIONS(6621), 12, + ACTIONS(6877), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229959,14 +232427,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [107339] = 4, + [108784] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2156), 1, + ACTIONS(2407), 1, anon_sym_DASH2, - STATE(3511), 1, + STATE(3576), 1, sym_comment, - ACTIONS(2154), 11, + ACTIONS(2405), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -229978,12 +232446,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [107362] = 3, + [108807] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3512), 1, + STATE(3577), 1, sym_comment, - ACTIONS(6623), 12, + ACTIONS(6879), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229996,12 +232464,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [107383] = 3, + [108828] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3513), 1, + STATE(3578), 1, sym_comment, - ACTIONS(6625), 12, + ACTIONS(6881), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230014,66 +232482,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [107404] = 3, + [108849] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3514), 1, + ACTIONS(2106), 1, + anon_sym_DASH2, + STATE(3579), 1, sym_comment, - ACTIONS(6627), 12, + ACTIONS(2104), 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, - [107425] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [108872] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3515), 1, + ACTIONS(2114), 1, + anon_sym_DASH2, + STATE(3580), 1, sym_comment, - ACTIONS(6629), 12, + ACTIONS(2112), 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, - [107446] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [108895] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3516), 1, + ACTIONS(2122), 1, + anon_sym_DASH2, + STATE(3581), 1, sym_comment, - ACTIONS(6631), 12, + ACTIONS(2120), 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, - [107467] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [108918] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3517), 1, + STATE(3582), 1, sym_comment, - ACTIONS(6633), 12, + ACTIONS(6883), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230086,101 +232557,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [107488] = 4, + [108939] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2238), 1, + ACTIONS(5454), 1, anon_sym_DASH2, - STATE(3518), 1, + STATE(3583), 1, sym_comment, - ACTIONS(2236), 11, - anon_sym_EQ, - sym_identifier, + STATE(3587), 1, + aux_sym_parameter_repeat2, + ACTIONS(1484), 2, sym__newline, + anon_sym_COMMA, + ACTIONS(5452), 7, + sym_identifier, anon_sym_PIPE, - anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [107511] = 10, + [108965] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1604), 1, - anon_sym_LPAREN2, - ACTIONS(1639), 1, - anon_sym_LBRACE, - ACTIONS(1643), 1, - anon_sym_DOT, - ACTIONS(2873), 1, + ACTIONS(1601), 1, anon_sym_DOLLAR, - STATE(3519), 1, + ACTIONS(2515), 1, + aux_sym_expr_unary_token1, + ACTIONS(4883), 1, + anon_sym_LPAREN, + ACTIONS(4885), 1, + anon_sym_DASH2, + STATE(959), 1, + sym__expr_unary_minus, + STATE(3584), 1, sym_comment, - STATE(4508), 1, - sym__immediate_decimal, - ACTIONS(6497), 2, + ACTIONS(2507), 2, + anon_sym_true, + anon_sym_false, + STATE(972), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [108997] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1681), 1, + sym__entry_separator, + ACTIONS(1683), 1, + anon_sym_RBRACE, + ACTIONS(6150), 1, + anon_sym_LPAREN2, + ACTIONS(6581), 1, + anon_sym_DOLLAR, + ACTIONS(6743), 1, aux_sym__immediate_decimal_token1, + ACTIONS(6745), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6499), 2, + STATE(3585), 1, + sym_comment, + STATE(4999), 1, + sym__immediate_decimal, + ACTIONS(6441), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4507), 2, + STATE(4414), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107545] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6635), 1, - anon_sym_DOT2, - STATE(360), 1, - sym_path, - STATE(3520), 2, - sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1510), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1508), 5, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_COLON2, - [107571] = 5, - ACTIONS(103), 1, + [109033] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6638), 1, - aux_sym__immediate_decimal_token5, - STATE(3521), 1, + ACTIONS(6887), 1, + anon_sym_DASH2, + STATE(3586), 1, sym_comment, - ACTIONS(771), 4, + STATE(3587), 1, + aux_sym_parameter_repeat2, + ACTIONS(1484), 2, sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(773), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [107595] = 6, + anon_sym_COMMA, + ACTIONS(6885), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [109059] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5481), 1, + ACTIONS(6894), 1, anon_sym_DASH2, - STATE(3522), 1, - sym_comment, - STATE(3564), 1, - aux_sym_parameter_repeat2, - ACTIONS(1480), 2, + ACTIONS(6891), 2, sym__newline, anon_sym_COMMA, - ACTIONS(5479), 7, + STATE(3587), 2, + sym_comment, + aux_sym_parameter_repeat2, + ACTIONS(6889), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -230188,17 +232664,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [107621] = 5, + [109083] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6640), 1, + ACTIONS(6896), 1, + anon_sym_DOT, + ACTIONS(6898), 1, aux_sym__immediate_decimal_token5, - STATE(3523), 1, + STATE(3588), 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, + [109109] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6735), 1, + aux_sym__immediate_decimal_token5, + STATE(3589), 1, sym_comment, - ACTIONS(771), 2, + ACTIONS(747), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(773), 8, + ACTIONS(749), 8, anon_sym_if, sym__newline, anon_sym_PIPE, @@ -230207,87 +232703,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [107645] = 11, + [109133] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1598), 1, + ACTIONS(6857), 1, + anon_sym_DOT2, + STATE(352), 1, + sym_path, + STATE(3590), 1, + sym_comment, + STATE(3620), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3929), 1, + sym_cell_path, + ACTIONS(1653), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1602), 1, + ACTIONS(1655), 4, + anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(6102), 1, - anon_sym_LPAREN2, - ACTIONS(6401), 1, - anon_sym_DOLLAR, - ACTIONS(6485), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6487), 1, - aux_sym__immediate_decimal_token2, - STATE(3524), 1, - sym_comment, - STATE(4878), 1, - sym__immediate_decimal, - ACTIONS(6239), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4214), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [107681] = 9, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + [109163] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1788), 1, - anon_sym_LPAREN, - ACTIONS(2702), 1, - aux_sym_expr_unary_token1, - ACTIONS(2873), 1, - anon_sym_DOLLAR, - ACTIONS(4879), 1, - anon_sym_DASH2, - STATE(948), 1, - sym__expr_unary_minus, - STATE(3525), 1, + ACTIONS(6900), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6902), 1, + aux_sym__immediate_decimal_token5, + STATE(3591), 1, sym_comment, - ACTIONS(1938), 2, - anon_sym_true, - anon_sym_false, - STATE(955), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [107713] = 6, + 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, + [109189] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6644), 1, - anon_sym_DASH2, - STATE(3526), 1, - sym_comment, - STATE(3564), 1, - aux_sym_parameter_repeat2, - ACTIONS(1480), 2, + ACTIONS(2922), 1, sym__newline, - anon_sym_COMMA, - ACTIONS(6642), 7, - sym_identifier, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(3592), 1, + sym_comment, + ACTIONS(2539), 9, anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [107739] = 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, + [109213] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6646), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6648), 1, + ACTIONS(6904), 1, aux_sym__immediate_decimal_token5, - STATE(3527), 1, + STATE(3593), 1, sym_comment, - ACTIONS(739), 2, + ACTIONS(767), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(741), 7, + ACTIONS(769), 8, + anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, @@ -230295,103 +232783,323 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [107765] = 11, + [109237] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6857), 1, + anon_sym_DOT2, + STATE(352), 1, + sym_path, + STATE(3594), 1, + sym_comment, + STATE(3620), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3913), 1, + sym_cell_path, + ACTIONS(1647), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1649), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + [109267] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6749), 1, + aux_sym__immediate_decimal_token5, + STATE(3595), 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, + [109291] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(886), 1, + ACTIONS(968), 1, sym__space, - ACTIONS(1724), 1, + ACTIONS(1818), 1, anon_sym_LPAREN2, - ACTIONS(5071), 1, + ACTIONS(5061), 1, sym__unquoted_pattern, - ACTIONS(6650), 1, + ACTIONS(6906), 1, anon_sym_DOT_DOT2, - ACTIONS(6654), 1, + ACTIONS(6910), 1, sym_filesize_unit, - ACTIONS(6656), 1, + ACTIONS(6912), 1, sym_duration_unit, - STATE(3528), 1, + STATE(3596), 1, sym_comment, - STATE(4929), 1, + STATE(5056), 1, sym__expr_parenthesized_immediate, - ACTIONS(866), 2, + ACTIONS(847), 2, sym__newline, anon_sym_SEMI, - ACTIONS(6652), 2, + ACTIONS(6908), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [109327] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(968), 1, + sym__entry_separator, + ACTIONS(6659), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6914), 1, + anon_sym_LPAREN2, + ACTIONS(6916), 1, + anon_sym_DOT_DOT2, + ACTIONS(6920), 1, + sym_filesize_unit, + ACTIONS(6922), 1, + sym_duration_unit, + STATE(3597), 1, + sym_comment, + STATE(5028), 1, + sym__expr_parenthesized_immediate, + ACTIONS(847), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6918), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [107801] = 5, + [109363] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6507), 1, + ACTIONS(6924), 1, aux_sym__immediate_decimal_token5, - STATE(3529), 1, + STATE(3598), 1, sym_comment, - ACTIONS(747), 4, + ACTIONS(767), 4, sym__newline, anon_sym_SEMI, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(749), 6, + ACTIONS(769), 6, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [107825] = 9, + [109387] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + ACTIONS(1631), 1, + anon_sym_LBRACE, + ACTIONS(1637), 1, + sym__unquoted_pattern, + ACTIONS(2938), 1, + anon_sym_DOLLAR, + STATE(3599), 1, + sym_comment, + STATE(5068), 1, + sym__immediate_decimal, + ACTIONS(6926), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6928), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(788), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [109421] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6930), 1, + anon_sym_DOT, + ACTIONS(6932), 1, + aux_sym__immediate_decimal_token5, + STATE(3600), 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, + [109447] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6934), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6936), 1, + aux_sym__immediate_decimal_token5, + STATE(3601), 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, + [109473] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1599), 1, + anon_sym_LBRACE, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + ACTIONS(1607), 1, + anon_sym_DOT, + ACTIONS(2938), 1, + anon_sym_DOLLAR, + STATE(3602), 1, + sym_comment, + STATE(4381), 1, + sym__immediate_decimal, + ACTIONS(6667), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6669), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4380), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [109507] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(73), 1, + aux_sym_expr_unary_token1, + ACTIONS(1685), 1, + anon_sym_DOLLAR, + ACTIONS(4908), 1, + anon_sym_LPAREN, + ACTIONS(4912), 1, + anon_sym_DASH2, + STATE(1296), 1, + sym__expr_unary_minus, + STATE(3603), 1, + sym_comment, + ACTIONS(2489), 2, + anon_sym_true, + anon_sym_false, + STATE(1293), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [109539] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1631), 1, + sym__entry_separator, + ACTIONS(1633), 1, + anon_sym_RBRACE, + ACTIONS(6150), 1, + anon_sym_LPAREN2, + ACTIONS(6581), 1, + anon_sym_DOLLAR, + ACTIONS(6743), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6745), 1, + aux_sym__immediate_decimal_token2, + STATE(3604), 1, + sym_comment, + STATE(4982), 1, + sym__immediate_decimal, + ACTIONS(6441), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4374), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [109575] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(173), 1, aux_sym_expr_unary_token1, - ACTIONS(1600), 1, + ACTIONS(1601), 1, anon_sym_DOLLAR, - ACTIONS(4877), 1, + ACTIONS(4883), 1, anon_sym_LPAREN, - ACTIONS(4879), 1, + ACTIONS(4885), 1, anon_sym_DASH2, - STATE(948), 1, + STATE(959), 1, sym__expr_unary_minus, - STATE(3530), 1, + STATE(3605), 1, sym_comment, - ACTIONS(1938), 2, + ACTIONS(1945), 2, anon_sym_true, anon_sym_false, - STATE(955), 4, + STATE(972), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [107857] = 8, - ACTIONS(103), 1, + [109607] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6619), 1, - anon_sym_DOT2, - STATE(360), 1, - sym_path, - STATE(3531), 1, + ACTIONS(5496), 1, + anon_sym_DASH2, + STATE(3587), 1, + aux_sym_parameter_repeat2, + STATE(3606), 1, sym_comment, - STATE(3538), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3786), 1, - sym_cell_path, - ACTIONS(1657), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1659), 4, + ACTIONS(1484), 2, + sym__newline, + anon_sym_COMMA, + ACTIONS(5494), 7, + sym_identifier, + anon_sym_PIPE, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - [107887] = 4, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [109633] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2148), 1, + ACTIONS(5450), 1, anon_sym_DASH2, - STATE(3532), 1, + STATE(3587), 1, + aux_sym_parameter_repeat2, + STATE(3607), 1, + sym_comment, + ACTIONS(1484), 2, + sym__newline, + anon_sym_COMMA, + ACTIONS(5448), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [109659] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1968), 1, + anon_sym_DASH2, + STATE(3608), 1, sym_comment, - ACTIONS(2146), 10, + ACTIONS(1966), 10, anon_sym_EQ, sym_identifier, sym__newline, @@ -230402,54 +233110,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [107909] = 5, + [109681] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6491), 1, - aux_sym__immediate_decimal_token5, - STATE(3533), 1, + ACTIONS(6940), 1, + anon_sym_DASH2, + STATE(3587), 1, + aux_sym_parameter_repeat2, + STATE(3609), 1, sym_comment, - ACTIONS(747), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 8, - anon_sym_if, + ACTIONS(1484), 2, sym__newline, + anon_sym_COMMA, + ACTIONS(6938), 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, - [107933] = 5, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [109707] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6425), 1, + ACTIONS(6942), 1, aux_sym__immediate_decimal_token5, - STATE(3534), 1, + STATE(3610), 1, sym_comment, - ACTIONS(747), 4, + ACTIONS(767), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - ACTIONS(749), 6, + ACTIONS(769), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [107957] = 4, + [109731] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6944), 1, + anon_sym_DOT, + ACTIONS(6946), 1, + aux_sym__immediate_decimal_token5, + STATE(3611), 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, + [109757] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3535), 1, + STATE(3612), 1, sym_comment, - ACTIONS(1541), 3, + ACTIONS(1510), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1539), 8, + ACTIONS(1508), 8, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, @@ -230458,228 +233187,250 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [107979] = 9, + [109779] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2786), 1, + ACTIONS(2742), 1, aux_sym_expr_unary_token1, - ACTIONS(3894), 1, + ACTIONS(3806), 1, anon_sym_DOLLAR, - ACTIONS(4901), 1, + ACTIONS(4912), 1, anon_sym_DASH2, - ACTIONS(5269), 1, + ACTIONS(5277), 1, anon_sym_LPAREN, - STATE(1290), 1, + STATE(1296), 1, sym__expr_unary_minus, - STATE(3536), 1, + STATE(3613), 1, sym_comment, - ACTIONS(2208), 2, + ACTIONS(2489), 2, anon_sym_true, anon_sym_false, - STATE(1302), 4, + STATE(1293), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [108011] = 4, + [109811] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6658), 1, - anon_sym_else, - STATE(3537), 1, + ACTIONS(6948), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6950), 1, + aux_sym__immediate_decimal_token5, + STATE(3614), 1, sym_comment, - ACTIONS(6245), 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, - [108033] = 7, + ACTIONS(739), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(741), 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, + [109837] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6619), 1, + STATE(3615), 1, + sym_comment, + ACTIONS(1514), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1512), 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, - STATE(360), 1, - sym_path, - STATE(3520), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3538), 1, + [109859] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3616), 1, sym_comment, - ACTIONS(1506), 3, + ACTIONS(1522), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1504), 5, + ACTIONS(1520), 8, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_COLON2, - [108061] = 6, - ACTIONS(3), 1, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [109881] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6662), 1, - anon_sym_DASH2, - STATE(3539), 1, + STATE(3617), 1, sym_comment, - STATE(3564), 1, - aux_sym_parameter_repeat2, - ACTIONS(1480), 2, - sym__newline, - anon_sym_COMMA, - ACTIONS(6660), 7, - sym_identifier, - anon_sym_PIPE, + ACTIONS(1530), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1528), 8, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [108087] = 8, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_COLON2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [109903] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3618), 1, + sym_comment, + ACTIONS(1502), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1500), 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, + [109925] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3619), 1, + sym_comment, + ACTIONS(1506), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1504), 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, + [109947] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6619), 1, + ACTIONS(6857), 1, anon_sym_DOT2, - STATE(360), 1, + STATE(352), 1, sym_path, - STATE(3538), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3540), 1, + STATE(3620), 1, sym_comment, - STATE(3810), 1, - sym_cell_path, - ACTIONS(1645), 3, + STATE(3621), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1526), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1647), 4, + ACTIONS(1524), 5, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - [108117] = 6, - ACTIONS(3), 1, + anon_sym_COLON2, + [109975] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5505), 1, - anon_sym_DASH2, - STATE(3541), 1, + ACTIONS(6952), 1, + anon_sym_DOT2, + STATE(352), 1, + sym_path, + STATE(3621), 2, sym_comment, - STATE(3564), 1, - aux_sym_parameter_repeat2, - ACTIONS(1480), 2, - sym__newline, - anon_sym_COMMA, - ACTIONS(5503), 7, - sym_identifier, - anon_sym_PIPE, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1534), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1532), 5, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [108143] = 10, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_COLON2, + [110001] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1598), 1, - anon_sym_LBRACE, - ACTIONS(1604), 1, - anon_sym_LPAREN2, - ACTIONS(1635), 1, - sym__unquoted_pattern, - ACTIONS(2873), 1, + ACTIONS(1760), 1, + anon_sym_LPAREN, + ACTIONS(2696), 1, + aux_sym_expr_unary_token1, + ACTIONS(2938), 1, anon_sym_DOLLAR, - STATE(3542), 1, + ACTIONS(4885), 1, + anon_sym_DASH2, + STATE(959), 1, + sym__expr_unary_minus, + STATE(3622), 1, sym_comment, - STATE(4942), 1, - sym__immediate_decimal, - ACTIONS(6664), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6666), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(730), 2, - sym__expr_parenthesized_immediate, + ACTIONS(1945), 2, + anon_sym_true, + anon_sym_false, + STATE(972), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, sym_val_variable, - [108177] = 5, + [110033] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6668), 1, + ACTIONS(6861), 1, aux_sym__immediate_decimal_token5, - STATE(3543), 1, + STATE(3623), 1, sym_comment, - ACTIONS(771), 4, + ACTIONS(747), 4, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - ACTIONS(773), 6, + 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, - [108201] = 11, + [110057] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(886), 1, - sym__entry_separator, - ACTIONS(6479), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6670), 1, - anon_sym_LPAREN2, - ACTIONS(6672), 1, - anon_sym_DOT_DOT2, - ACTIONS(6676), 1, - sym_filesize_unit, - ACTIONS(6678), 1, - sym_duration_unit, - STATE(3544), 1, + ACTIONS(6955), 1, + aux_sym__immediate_decimal_token5, + STATE(3624), 1, sym_comment, - STATE(4803), 1, - sym__expr_parenthesized_immediate, - ACTIONS(866), 2, + ACTIONS(767), 4, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(6674), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [108237] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6680), 1, - anon_sym_DOT, - ACTIONS(6682), 1, - aux_sym__immediate_decimal_token5, - STATE(3545), 1, - sym_comment, - ACTIONS(747), 3, - anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(749), 6, + sym__unquoted_pattern_in_list, + ACTIONS(769), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [108263] = 5, + [110081] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2907), 1, - sym__newline, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(3546), 1, + ACTIONS(6957), 1, + anon_sym_else, + STATE(3625), 1, sym_comment, - ACTIONS(2549), 9, + ACTIONS(6451), 10, + sym__newline, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -230689,2089 +233440,1946 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [108287] = 6, + [110103] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6684), 1, - anon_sym_DOT, - ACTIONS(6686), 1, - aux_sym__immediate_decimal_token5, - STATE(3547), 1, - sym_comment, - ACTIONS(747), 2, - anon_sym_DOT_DOT2, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + ACTIONS(1681), 1, + anon_sym_LBRACE, + ACTIONS(1695), 1, sym__unquoted_pattern, - ACTIONS(749), 7, + ACTIONS(2938), 1, + anon_sym_DOLLAR, + STATE(3626), 1, + sym_comment, + STATE(4930), 1, + sym__immediate_decimal, + ACTIONS(6926), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6928), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(807), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [110137] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6961), 1, + anon_sym_DASH2, + STATE(3587), 1, + aux_sym_parameter_repeat2, + STATE(3627), 1, + sym_comment, + ACTIONS(1484), 2, sym__newline, + anon_sym_COMMA, + ACTIONS(6959), 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, - [108313] = 6, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [110163] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6688), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6690), 1, + ACTIONS(6789), 1, aux_sym__immediate_decimal_token5, - STATE(3548), 1, + STATE(3628), 1, sym_comment, - ACTIONS(739), 3, + ACTIONS(747), 4, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(741), 6, + 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, - [108339] = 6, + [110187] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6692), 1, - anon_sym_DOT, - ACTIONS(6694), 1, + ACTIONS(6898), 1, aux_sym__immediate_decimal_token5, - STATE(3549), 1, + STATE(3629), 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, + 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, - [108365] = 4, - ACTIONS(103), 1, + [110210] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3550), 1, + ACTIONS(6963), 1, + aux_sym__immediate_decimal_token5, + STATE(3630), 1, sym_comment, - ACTIONS(1521), 3, + ACTIONS(767), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(769), 7, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1519), 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, - [108387] = 9, + sym_filesize_unit, + sym_duration_unit, + [110233] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(73), 1, - aux_sym_expr_unary_token1, - ACTIONS(1685), 1, - anon_sym_DOLLAR, - ACTIONS(4897), 1, - anon_sym_LPAREN, - ACTIONS(4901), 1, - anon_sym_DASH2, - STATE(1290), 1, - sym__expr_unary_minus, - STATE(3551), 1, + STATE(3631), 1, sym_comment, - ACTIONS(2208), 2, - anon_sym_true, - anon_sym_false, - STATE(1302), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [108419] = 10, - ACTIONS(3), 1, + ACTIONS(767), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(769), 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, + [110254] = 10, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1604), 1, + ACTIONS(3179), 1, anon_sym_LPAREN2, - ACTIONS(1651), 1, - anon_sym_LBRACE, - ACTIONS(1679), 1, - sym__unquoted_pattern, - ACTIONS(2873), 1, + ACTIONS(5047), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(5049), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5182), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(6965), 1, anon_sym_DOLLAR, - STATE(3552), 1, - sym_comment, - STATE(4790), 1, + STATE(2681), 1, sym__immediate_decimal, - ACTIONS(6664), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6666), 2, + STATE(3632), 1, + sym_comment, + ACTIONS(6967), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(748), 2, + STATE(2913), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [108453] = 11, + [110287] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3633), 1, + sym_comment, + ACTIONS(863), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(865), 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, + [110308] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1651), 1, - sym__entry_separator, - ACTIONS(1653), 1, - anon_sym_RBRACE, - ACTIONS(6102), 1, + ACTIONS(3179), 1, anon_sym_LPAREN2, - ACTIONS(6401), 1, - anon_sym_DOLLAR, - ACTIONS(6485), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6487), 1, + ACTIONS(5124), 1, aux_sym__immediate_decimal_token2, - STATE(3553), 1, - sym_comment, - STATE(4800), 1, + ACTIONS(5126), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5182), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(6965), 1, + anon_sym_DOLLAR, + STATE(3110), 1, sym__immediate_decimal, - ACTIONS(6239), 2, + STATE(3634), 1, + sym_comment, + ACTIONS(6969), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4258), 2, + STATE(3564), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [108489] = 6, + [110341] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6696), 1, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + ACTIONS(1677), 1, + anon_sym_LBRACE, + ACTIONS(2938), 1, + anon_sym_DOLLAR, + STATE(802), 1, + sym__immediate_decimal, + STATE(3635), 1, + sym_comment, + ACTIONS(6669), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(6971), 2, aux_sym__immediate_decimal_token1, - ACTIONS(6698), 1, + aux_sym__immediate_decimal_token2, + STATE(801), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [110372] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6973), 1, + anon_sym_DOT, + ACTIONS(6975), 1, aux_sym__immediate_decimal_token5, - STATE(3554), 1, + STATE(3636), 1, sym_comment, - ACTIONS(739), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(741), 7, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + ACTIONS(1790), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [108515] = 4, + sym__entry_separator, + ACTIONS(1792), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [110397] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(3555), 1, + ACTIONS(1464), 1, + anon_sym_BANG, + STATE(3637), 1, sym_comment, - ACTIONS(1525), 3, + ACTIONS(1462), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1523), 8, + ACTIONS(1460), 6, 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, - [108537] = 9, + [110420] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1600), 1, - anon_sym_DOLLAR, - ACTIONS(2430), 1, - aux_sym_expr_unary_token1, - ACTIONS(4877), 1, - anon_sym_LPAREN, - ACTIONS(4879), 1, - anon_sym_DASH2, - STATE(948), 1, - sym__expr_unary_minus, - STATE(3556), 1, + ACTIONS(1828), 1, + sym__unquoted_pattern, + ACTIONS(6977), 1, + anon_sym_DOT_DOT2, + ACTIONS(6981), 1, + sym_filesize_unit, + ACTIONS(6983), 1, + sym_duration_unit, + STATE(3638), 1, sym_comment, - ACTIONS(2422), 2, - anon_sym_true, - anon_sym_false, - STATE(955), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [108569] = 4, - ACTIONS(103), 1, + ACTIONS(6979), 2, + 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, + [110449] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3557), 1, + ACTIONS(6985), 1, + anon_sym_DOT, + ACTIONS(6987), 1, + aux_sym__immediate_decimal_token5, + STATE(3639), 1, sym_comment, - ACTIONS(1529), 3, + ACTIONS(1792), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1790), 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, - ACTIONS(1527), 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, - [108591] = 5, + [110474] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6700), 1, - aux_sym__immediate_decimal_token5, - STATE(3558), 1, + ACTIONS(1687), 1, + anon_sym_LPAREN2, + ACTIONS(1691), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(1840), 1, + aux_sym_unquoted_token2, + ACTIONS(6989), 1, + anon_sym_DOLLAR, + ACTIONS(6991), 1, + aux_sym__immediate_decimal_token2, + STATE(711), 1, + sym__immediate_decimal, + STATE(3640), 1, sym_comment, - ACTIONS(771), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(6993), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(962), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [110507] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3641), 1, + sym_comment, + ACTIONS(739), 4, + sym__newline, + anon_sym_SEMI, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(773), 6, + 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, - sym__entry_separator, - [108615] = 5, + [110528] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6539), 1, - aux_sym__immediate_decimal_token5, - STATE(3559), 1, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + ACTIONS(1828), 1, + aux_sym_unquoted_token2, + ACTIONS(5273), 1, + anon_sym_DOLLAR, + ACTIONS(6667), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6995), 1, + aux_sym__immediate_decimal_token2, + STATE(3642), 1, sym_comment, - ACTIONS(747), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + STATE(4243), 1, + sym__immediate_decimal, + ACTIONS(6997), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4367), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [110561] = 10, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1687), 1, + anon_sym_LPAREN2, + ACTIONS(1718), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(1840), 1, + aux_sym_unquoted_token2, + ACTIONS(6989), 1, + anon_sym_DOLLAR, + ACTIONS(6999), 1, + aux_sym__immediate_decimal_token2, + STATE(994), 1, + sym__immediate_decimal, + STATE(3643), 1, + sym_comment, + ACTIONS(7001), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(1294), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [110594] = 10, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + ACTIONS(1828), 1, + aux_sym_unquoted_token2, + ACTIONS(5273), 1, + anon_sym_DOLLAR, + ACTIONS(6926), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7003), 1, + aux_sym__immediate_decimal_token2, + STATE(3644), 1, + sym_comment, + STATE(5037), 1, + sym__immediate_decimal, + ACTIONS(7005), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(824), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [110627] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + ACTIONS(1669), 1, + anon_sym_LBRACE, + ACTIONS(2938), 1, + anon_sym_DOLLAR, + STATE(806), 1, + sym__immediate_decimal, + STATE(3645), 1, + sym_comment, + ACTIONS(6669), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(6971), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(805), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [110658] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3646), 1, + sym_comment, + ACTIONS(767), 4, + sym__newline, + anon_sym_SEMI, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(749), 6, + sym__unquoted_pattern, + ACTIONS(769), 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, - [108639] = 6, + [110679] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5452), 1, + ACTIONS(6798), 1, anon_sym_DASH2, - STATE(3560), 1, + STATE(3647), 1, sym_comment, - STATE(3564), 1, - aux_sym_parameter_repeat2, - ACTIONS(1480), 2, - sym__newline, - anon_sym_COMMA, - ACTIONS(5450), 7, + ACTIONS(4464), 9, sym_identifier, + sym__newline, anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [108665] = 6, - ACTIONS(3), 1, + [110700] = 10, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6704), 1, - anon_sym_DASH2, - STATE(3561), 1, + ACTIONS(1798), 1, + anon_sym_DOLLAR, + ACTIONS(6150), 1, + anon_sym_LPAREN2, + ACTIONS(6437), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6439), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6659), 1, + aux_sym__unquoted_in_list_token2, + STATE(3648), 1, sym_comment, - STATE(3564), 1, - aux_sym_parameter_repeat2, - ACTIONS(1480), 2, + STATE(3927), 1, + sym__immediate_decimal, + ACTIONS(6441), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4014), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [110733] = 10, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6150), 1, + anon_sym_LPAREN2, + ACTIONS(6581), 1, + anon_sym_DOLLAR, + ACTIONS(6621), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6623), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6659), 1, + aux_sym__unquoted_in_list_token2, + STATE(3649), 1, + sym_comment, + STATE(4518), 1, + sym__immediate_decimal, + ACTIONS(6625), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4337), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [110766] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3650), 1, + sym_comment, + ACTIONS(863), 4, sym__newline, - anon_sym_COMMA, - ACTIONS(6702), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(865), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [110787] = 10, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1798), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [108691] = 4, + ACTIONS(6150), 1, + anon_sym_LPAREN2, + ACTIONS(6405), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6407), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7007), 1, + aux_sym__unquoted_in_record_token2, + STATE(3651), 1, + sym_comment, + STATE(3942), 1, + sym__immediate_decimal, + ACTIONS(6409), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4014), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [110820] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(3562), 1, + ACTIONS(7009), 1, + anon_sym_DOT, + ACTIONS(7011), 1, + aux_sym__immediate_decimal_token5, + STATE(3652), 1, sym_comment, - ACTIONS(1533), 3, + ACTIONS(1790), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1531), 8, + ACTIONS(1792), 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, - [108713] = 4, + sym__unquoted_pattern_in_list, + [110845] = 11, ACTIONS(103), 1, anon_sym_POUND, - STATE(3563), 1, + ACTIONS(847), 1, + anon_sym_RBRACK, + ACTIONS(968), 1, + sym__entry_separator, + ACTIONS(6659), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6914), 1, + anon_sym_LPAREN2, + ACTIONS(7013), 1, + anon_sym_DOT_DOT2, + ACTIONS(7017), 1, + sym_filesize_unit, + ACTIONS(7019), 1, + sym_duration_unit, + STATE(3653), 1, sym_comment, - ACTIONS(1537), 3, + STATE(5028), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7015), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1535), 8, - anon_sym_RBRACK, + [110880] = 10, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6150), 1, + anon_sym_LPAREN2, + ACTIONS(6581), 1, + anon_sym_DOLLAR, + ACTIONS(6583), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6585), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7007), 1, + aux_sym__unquoted_in_record_token2, + STATE(3654), 1, + sym_comment, + STATE(4511), 1, + sym__immediate_decimal, + ACTIONS(6587), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4337), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [110913] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(847), 1, anon_sym_RBRACE, - anon_sym_DOT_DOT, + ACTIONS(968), 1, + sym__entry_separator, + ACTIONS(5172), 1, + anon_sym_LPAREN2, + ACTIONS(7007), 1, + sym__unquoted_pattern_in_record, + ACTIONS(7021), 1, anon_sym_DOT_DOT2, - anon_sym_COLON2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [108735] = 5, - ACTIONS(3), 1, + ACTIONS(7025), 1, + sym_filesize_unit, + ACTIONS(7027), 1, + sym_duration_unit, + STATE(3655), 1, + sym_comment, + STATE(5050), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7023), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [110948] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6711), 1, - anon_sym_DASH2, - ACTIONS(6708), 2, - sym__newline, - anon_sym_COMMA, - STATE(3564), 2, + ACTIONS(6932), 1, + aux_sym__immediate_decimal_token5, + STATE(3656), 1, sym_comment, - aux_sym_parameter_repeat2, - ACTIONS(6706), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [108759] = 10, + 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, + [110971] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1687), 1, + ACTIONS(7029), 1, + anon_sym_DOT, + ACTIONS(7031), 1, + aux_sym__immediate_decimal_token5, + STATE(3657), 1, + sym_comment, + ACTIONS(1790), 4, + sym__space, anon_sym_LPAREN2, - ACTIONS(1820), 1, - aux_sym_unquoted_token2, - ACTIONS(3422), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6713), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1792), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [110996] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1599), 1, + anon_sym_LBRACE, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + ACTIONS(2938), 1, anon_sym_DOLLAR, - ACTIONS(6715), 1, - aux_sym__immediate_decimal_token2, - STATE(1456), 1, + STATE(784), 1, sym__immediate_decimal, - STATE(3565), 1, + STATE(3658), 1, sym_comment, - ACTIONS(6717), 2, + ACTIONS(6669), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(950), 2, + ACTIONS(6971), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(783), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [108792] = 10, + [111027] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1778), 1, + sym_raw_string_begin, + ACTIONS(7033), 1, + anon_sym_DQUOTE, + ACTIONS(7035), 1, + anon_sym_SQUOTE, + ACTIONS(7037), 1, + anon_sym_BQUOTE, + ACTIONS(7039), 1, + aux_sym_path_token1, + STATE(2296), 1, + sym_val_string, + STATE(3659), 1, + sym_comment, + STATE(2274), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [111058] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7041), 1, + aux_sym__immediate_decimal_token5, + STATE(3660), 1, + sym_comment, + ACTIONS(767), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(769), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [111081] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3661), 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, + [111102] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1604), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, - ACTIONS(1734), 1, + ACTIONS(1828), 1, aux_sym_unquoted_token2, - ACTIONS(3790), 1, + ACTIONS(3902), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6719), 1, + ACTIONS(7043), 1, anon_sym_DOLLAR, - ACTIONS(6721), 1, + ACTIONS(7045), 1, aux_sym__immediate_decimal_token2, - STATE(1856), 1, + STATE(1875), 1, sym__immediate_decimal, - STATE(3566), 1, + STATE(3662), 1, sym_comment, - ACTIONS(6723), 2, + ACTIONS(7047), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(700), 2, + STATE(717), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [108825] = 10, + [111135] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1604), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, - ACTIONS(1734), 1, + ACTIONS(1828), 1, aux_sym_unquoted_token2, - ACTIONS(3956), 1, + ACTIONS(3962), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6719), 1, + ACTIONS(7043), 1, anon_sym_DOLLAR, - ACTIONS(6725), 1, + ACTIONS(7049), 1, aux_sym__immediate_decimal_token2, - STATE(1978), 1, + STATE(1957), 1, sym__immediate_decimal, - STATE(3567), 1, + STATE(3663), 1, sym_comment, - ACTIONS(6727), 2, + ACTIONS(7051), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(890), 2, + STATE(824), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [108858] = 9, + [111168] = 9, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1436), 1, sym_raw_string_begin, - ACTIONS(6729), 1, + ACTIONS(7053), 1, anon_sym_DQUOTE, - ACTIONS(6731), 1, + ACTIONS(7055), 1, anon_sym_SQUOTE, - ACTIONS(6733), 1, + ACTIONS(7057), 1, anon_sym_BQUOTE, - ACTIONS(6735), 1, + ACTIONS(7059), 1, aux_sym_path_token1, - STATE(3508), 1, + STATE(3503), 1, sym_val_string, - STATE(3568), 1, + STATE(3664), 1, sym_comment, - STATE(3665), 4, + STATE(3725), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [108889] = 9, + [111199] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(6737), 1, - anon_sym_DQUOTE, - ACTIONS(6739), 1, - anon_sym_SQUOTE, - ACTIONS(6741), 1, - anon_sym_BQUOTE, - ACTIONS(6743), 1, - aux_sym_path_token1, - STATE(409), 1, - sym_val_string, - STATE(3569), 1, - sym_comment, - STATE(426), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [108920] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6745), 1, - anon_sym_DOT, - ACTIONS(6747), 1, - aux_sym__immediate_decimal_token5, - STATE(3570), 1, + ACTIONS(3141), 1, + anon_sym_LPAREN2, + ACTIONS(3689), 1, + anon_sym_DOLLAR, + ACTIONS(4954), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4956), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(5118), 1, + aux_sym_unquoted_token2, + STATE(2598), 1, + sym__immediate_decimal, + STATE(3665), 1, sym_comment, - ACTIONS(1746), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1744), 6, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [108945] = 4, + ACTIONS(4958), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2805), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [111232] = 10, ACTIONS(103), 1, anon_sym_POUND, - STATE(3571), 1, - sym_comment, - ACTIONS(739), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(741), 6, - sym__space, + ACTIONS(3141), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [108966] = 10, + ACTIONS(3689), 1, + anon_sym_DOLLAR, + ACTIONS(4988), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4990), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(5118), 1, + aux_sym_unquoted_token2, + STATE(2965), 1, + sym__immediate_decimal, + STATE(3666), 1, + sym_comment, + ACTIONS(4992), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3277), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [111265] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1604), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, - ACTIONS(1734), 1, + ACTIONS(1828), 1, aux_sym_unquoted_token2, - ACTIONS(5322), 1, + ACTIONS(5273), 1, anon_sym_DOLLAR, - ACTIONS(5905), 1, + ACTIONS(5857), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6749), 1, + ACTIONS(7061), 1, aux_sym__immediate_decimal_token2, - STATE(3572), 1, + STATE(3667), 1, sym_comment, - STATE(3771), 1, + STATE(3835), 1, sym__immediate_decimal, - ACTIONS(6751), 2, + ACTIONS(7063), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3825), 2, + STATE(3887), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [108999] = 10, + [111298] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1604), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, - ACTIONS(1734), 1, + ACTIONS(1828), 1, aux_sym_unquoted_token2, - ACTIONS(5322), 1, + ACTIONS(5273), 1, anon_sym_DOLLAR, - ACTIONS(5975), 1, + ACTIONS(6030), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6753), 1, + ACTIONS(7065), 1, aux_sym__immediate_decimal_token2, - STATE(3573), 1, + STATE(3668), 1, sym_comment, - STATE(4181), 1, + STATE(4307), 1, sym__immediate_decimal, - ACTIONS(6755), 2, + ACTIONS(7067), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(890), 2, + STATE(824), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [109032] = 9, + [111331] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6757), 1, + ACTIONS(7069), 1, anon_sym_DQUOTE, - ACTIONS(6759), 1, + ACTIONS(7071), 1, anon_sym_SQUOTE, - ACTIONS(6761), 1, + ACTIONS(7073), 1, anon_sym_BQUOTE, - ACTIONS(6763), 1, + ACTIONS(7075), 1, aux_sym_path_token1, - ACTIONS(6765), 1, + ACTIONS(7077), 1, sym_raw_string_begin, - STATE(369), 1, + STATE(371), 1, sym_val_string, - STATE(3574), 1, + STATE(3669), 1, sym_comment, - STATE(396), 4, + STATE(400), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [109063] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3575), 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, - [109084] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3576), 1, - sym_comment, - ACTIONS(771), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - 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, - [109105] = 6, + [111362] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6767), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6769), 1, - aux_sym__immediate_decimal_token5, - STATE(3577), 1, - sym_comment, - ACTIONS(1770), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1772), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [109130] = 10, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(3118), 1, + ACTIONS(3347), 1, anon_sym_LPAREN2, - ACTIONS(3683), 1, + ACTIONS(3663), 1, anon_sym_DOLLAR, - ACTIONS(5071), 1, + ACTIONS(5061), 1, aux_sym_unquoted_token2, - ACTIONS(6167), 1, + ACTIONS(6060), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6169), 1, + ACTIONS(6062), 1, aux_sym__immediate_decimal_token2, - STATE(3578), 1, + STATE(3670), 1, sym_comment, - STATE(3751), 1, + STATE(3837), 1, sym__immediate_decimal, - ACTIONS(6171), 2, + ACTIONS(6064), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3988), 2, + STATE(4085), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [109163] = 10, + [111395] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3118), 1, + ACTIONS(3347), 1, anon_sym_LPAREN2, - ACTIONS(3683), 1, + ACTIONS(3663), 1, anon_sym_DOLLAR, - ACTIONS(5071), 1, + ACTIONS(5061), 1, aux_sym_unquoted_token2, - ACTIONS(6255), 1, + ACTIONS(6423), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6257), 1, + ACTIONS(6425), 1, aux_sym__immediate_decimal_token2, - STATE(3579), 1, + STATE(3671), 1, sym_comment, - STATE(4147), 1, + STATE(4321), 1, sym__immediate_decimal, - ACTIONS(6259), 2, + ACTIONS(6427), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3120), 2, + STATE(3207), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [109196] = 9, + [111428] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3806), 1, + ACTIONS(3832), 1, sym_raw_string_begin, - ACTIONS(6771), 1, + ACTIONS(7079), 1, anon_sym_DQUOTE, - ACTIONS(6773), 1, + ACTIONS(7081), 1, anon_sym_SQUOTE, - ACTIONS(6775), 1, + ACTIONS(7083), 1, anon_sym_BQUOTE, - ACTIONS(6777), 1, + ACTIONS(7085), 1, aux_sym_path_token1, STATE(2597), 1, sym_val_string, - STATE(3580), 1, + STATE(3672), 1, sym_comment, - STATE(2379), 4, + STATE(2394), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [109227] = 4, + [111459] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(3581), 1, + ACTIONS(7087), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7089), 1, + aux_sym__immediate_decimal_token5, + STATE(3673), 1, sym_comment, - ACTIONS(771), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(773), 6, - sym__space, + ACTIONS(1730), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [109248] = 10, + sym__entry_separator, + ACTIONS(1732), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [111484] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6102), 1, - anon_sym_LPAREN2, - ACTIONS(6401), 1, - anon_sym_DOLLAR, - ACTIONS(6513), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6515), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6779), 1, - aux_sym__unquoted_in_record_token2, - STATE(3582), 1, + STATE(3674), 1, sym_comment, - STATE(4428), 1, - sym__immediate_decimal, - ACTIONS(6517), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4413), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [109281] = 10, + ACTIONS(767), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + ACTIONS(769), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [111505] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3118), 1, + ACTIONS(3347), 1, anon_sym_LPAREN2, - ACTIONS(3683), 1, + ACTIONS(3663), 1, anon_sym_DOLLAR, ACTIONS(4940), 1, aux_sym__immediate_decimal_token1, ACTIONS(4942), 1, aux_sym__immediate_decimal_token2, - ACTIONS(5071), 1, + ACTIONS(5061), 1, aux_sym_unquoted_token2, - STATE(2559), 1, + STATE(2528), 1, sym__immediate_decimal, - STATE(3583), 1, + STATE(3675), 1, sym_comment, ACTIONS(4944), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2655), 2, + STATE(2687), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [109314] = 10, + [111538] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3118), 1, + ACTIONS(3347), 1, anon_sym_LPAREN2, - ACTIONS(3683), 1, + ACTIONS(3663), 1, anon_sym_DOLLAR, - ACTIONS(4964), 1, - aux_sym__immediate_decimal_token1, ACTIONS(4966), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4968), 1, aux_sym__immediate_decimal_token2, - ACTIONS(5071), 1, + ACTIONS(5061), 1, aux_sym_unquoted_token2, - STATE(2801), 1, + STATE(2734), 1, sym__immediate_decimal, - STATE(3584), 1, + STATE(3676), 1, sym_comment, - ACTIONS(4968), 2, + ACTIONS(4970), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3120), 2, + STATE(3207), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [109347] = 9, + [111571] = 9, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(3012), 1, sym_raw_string_begin, - ACTIONS(6781), 1, + ACTIONS(7091), 1, anon_sym_DQUOTE, - ACTIONS(6783), 1, + ACTIONS(7093), 1, anon_sym_SQUOTE, - ACTIONS(6785), 1, + ACTIONS(7095), 1, anon_sym_BQUOTE, - ACTIONS(6787), 1, + ACTIONS(7097), 1, aux_sym_path_token1, - STATE(2388), 1, + STATE(2370), 1, sym_val_string, - STATE(3585), 1, + STATE(3677), 1, sym_comment, - STATE(2568), 4, + STATE(2643), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [109378] = 4, - ACTIONS(103), 1, + [111602] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3586), 1, + ACTIONS(6946), 1, + aux_sym__immediate_decimal_token5, + STATE(3678), 1, sym_comment, - ACTIONS(860), 4, - sym__newline, - anon_sym_SEMI, + ACTIONS(747), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(862), 6, - sym__space, - anon_sym_LPAREN2, + 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, - [109399] = 10, + [111625] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1604), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, - ACTIONS(1608), 1, + ACTIONS(1609), 1, aux_sym__immediate_decimal_token1, - ACTIONS(1734), 1, + ACTIONS(1828), 1, aux_sym_unquoted_token2, - ACTIONS(6719), 1, + ACTIONS(7043), 1, anon_sym_DOLLAR, - ACTIONS(6789), 1, + ACTIONS(7099), 1, aux_sym__immediate_decimal_token2, - STATE(526), 1, + STATE(555), 1, sym__immediate_decimal, - STATE(3587), 1, + STATE(3679), 1, sym_comment, - ACTIONS(6791), 2, + ACTIONS(7101), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(700), 2, + STATE(717), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [109432] = 10, + [111658] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1604), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, - ACTIONS(1675), 1, + ACTIONS(1665), 1, aux_sym__immediate_decimal_token1, - ACTIONS(1734), 1, + ACTIONS(1828), 1, aux_sym_unquoted_token2, - ACTIONS(6719), 1, + ACTIONS(7043), 1, anon_sym_DOLLAR, - ACTIONS(6793), 1, + ACTIONS(7103), 1, aux_sym__immediate_decimal_token2, - STATE(945), 1, + STATE(957), 1, sym__immediate_decimal, - STATE(3588), 1, + STATE(3680), 1, sym_comment, - ACTIONS(6795), 2, + ACTIONS(7105), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(890), 2, + STATE(824), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [109465] = 9, + [111691] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6797), 1, + ACTIONS(7107), 1, anon_sym_DQUOTE, - ACTIONS(6799), 1, + ACTIONS(7109), 1, anon_sym_SQUOTE, - ACTIONS(6801), 1, + ACTIONS(7111), 1, anon_sym_BQUOTE, - ACTIONS(6803), 1, + ACTIONS(7113), 1, aux_sym_path_token1, - ACTIONS(6805), 1, - sym_raw_string_begin, - STATE(1766), 1, - sym_val_string, - STATE(3589), 1, - sym_comment, - STATE(1806), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [109496] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3590), 1, - sym_comment, - ACTIONS(860), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(862), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [109517] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(105), 1, + ACTIONS(7115), 1, sym_raw_string_begin, - ACTIONS(6807), 1, - anon_sym_DQUOTE, - ACTIONS(6809), 1, - anon_sym_SQUOTE, - ACTIONS(6811), 1, - anon_sym_BQUOTE, - ACTIONS(6813), 1, - aux_sym_path_token1, - STATE(490), 1, + STATE(1763), 1, sym_val_string, - STATE(3591), 1, + STATE(3681), 1, sym_comment, - STATE(502), 4, + STATE(1792), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [109548] = 10, + [111722] = 10, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1687), 1, anon_sym_LPAREN2, - ACTIONS(1820), 1, + ACTIONS(1840), 1, aux_sym_unquoted_token2, ACTIONS(4918), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5271), 1, + ACTIONS(5279), 1, anon_sym_DOLLAR, - ACTIONS(6815), 1, + ACTIONS(7117), 1, aux_sym__immediate_decimal_token2, - STATE(2479), 1, + STATE(2473), 1, sym__immediate_decimal, - STATE(3592), 1, + STATE(3682), 1, sym_comment, - ACTIONS(6817), 2, + ACTIONS(7119), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2629), 2, + STATE(2636), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [109581] = 10, + [111755] = 10, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1687), 1, anon_sym_LPAREN2, - ACTIONS(1820), 1, + ACTIONS(1840), 1, aux_sym_unquoted_token2, - ACTIONS(4934), 1, + ACTIONS(4926), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5271), 1, + ACTIONS(5279), 1, anon_sym_DOLLAR, - ACTIONS(6819), 1, + ACTIONS(7121), 1, aux_sym__immediate_decimal_token2, - STATE(2712), 1, + STATE(2706), 1, sym__immediate_decimal, - STATE(3593), 1, + STATE(3683), 1, sym_comment, - ACTIONS(6821), 2, + ACTIONS(7123), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1333), 2, + STATE(1294), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [109614] = 9, + [111788] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6823), 1, + ACTIONS(7125), 1, anon_sym_DQUOTE, - ACTIONS(6825), 1, + ACTIONS(7127), 1, anon_sym_SQUOTE, - ACTIONS(6827), 1, + ACTIONS(7129), 1, anon_sym_BQUOTE, - ACTIONS(6829), 1, + ACTIONS(7131), 1, aux_sym_path_token1, - ACTIONS(6831), 1, + ACTIONS(7133), 1, sym_raw_string_begin, - STATE(3594), 1, + STATE(3684), 1, sym_comment, - STATE(3801), 1, + STATE(3938), 1, sym_val_string, - STATE(3944), 4, + STATE(3995), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [109645] = 10, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1604), 1, - anon_sym_LPAREN2, - ACTIONS(1734), 1, - aux_sym_unquoted_token2, - ACTIONS(5322), 1, - anon_sym_DOLLAR, - ACTIONS(6664), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6833), 1, - aux_sym__immediate_decimal_token2, - STATE(3595), 1, - sym_comment, - STATE(4860), 1, - sym__immediate_decimal, - ACTIONS(6835), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(890), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [109678] = 10, + [111819] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1604), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, - ACTIONS(1734), 1, + ACTIONS(1828), 1, aux_sym_unquoted_token2, - ACTIONS(4909), 1, + ACTIONS(4904), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5322), 1, + ACTIONS(5273), 1, anon_sym_DOLLAR, - ACTIONS(6837), 1, + ACTIONS(7135), 1, aux_sym__immediate_decimal_token2, - STATE(2443), 1, + STATE(2433), 1, sym__immediate_decimal, - STATE(3596), 1, + STATE(3685), 1, sym_comment, - ACTIONS(6839), 2, + ACTIONS(7137), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2552), 2, + STATE(2557), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [109711] = 10, + [111852] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1604), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, - ACTIONS(1734), 1, + ACTIONS(1828), 1, aux_sym_unquoted_token2, ACTIONS(4922), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5322), 1, + ACTIONS(5273), 1, anon_sym_DOLLAR, - ACTIONS(6841), 1, + ACTIONS(7139), 1, aux_sym__immediate_decimal_token2, - STATE(2634), 1, + STATE(2591), 1, sym__immediate_decimal, - STATE(3597), 1, + STATE(3686), 1, sym_comment, - ACTIONS(6843), 2, + ACTIONS(7141), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(890), 2, + STATE(824), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [109744] = 9, + [111885] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6735), 1, + ACTIONS(7059), 1, aux_sym_path_token1, - ACTIONS(6845), 1, + ACTIONS(7143), 1, anon_sym_DQUOTE, - ACTIONS(6847), 1, + ACTIONS(7145), 1, anon_sym_SQUOTE, - ACTIONS(6849), 1, + ACTIONS(7147), 1, anon_sym_BQUOTE, - ACTIONS(6851), 1, + ACTIONS(7149), 1, sym_raw_string_begin, - STATE(3508), 1, + STATE(3503), 1, sym_val_string, - STATE(3598), 1, + STATE(3687), 1, sym_comment, - STATE(3550), 4, + STATE(3612), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [109775] = 10, + [111916] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1604), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, - ACTIONS(1734), 1, + ACTIONS(1828), 1, aux_sym_unquoted_token2, - ACTIONS(5322), 1, + ACTIONS(5273), 1, anon_sym_DOLLAR, - ACTIONS(6161), 1, + ACTIONS(6201), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6853), 1, + ACTIONS(7151), 1, aux_sym__immediate_decimal_token2, - STATE(3599), 1, + STATE(3688), 1, sym_comment, - STATE(3836), 1, + STATE(3928), 1, sym__immediate_decimal, - ACTIONS(6855), 2, + ACTIONS(7153), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3825), 2, + STATE(3887), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [109808] = 10, + [111949] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1604), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, - ACTIONS(1734), 1, + ACTIONS(1828), 1, aux_sym_unquoted_token2, - ACTIONS(5322), 1, + ACTIONS(5273), 1, anon_sym_DOLLAR, - ACTIONS(6251), 1, + ACTIONS(6447), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6857), 1, + ACTIONS(7155), 1, aux_sym__immediate_decimal_token2, - STATE(3600), 1, + STATE(3689), 1, sym_comment, - STATE(4280), 1, + STATE(4393), 1, sym__immediate_decimal, - ACTIONS(6859), 2, + ACTIONS(7157), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(890), 2, + STATE(824), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [109841] = 9, + [111982] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6861), 1, + ACTIONS(7159), 1, anon_sym_DQUOTE, - ACTIONS(6863), 1, + ACTIONS(7161), 1, anon_sym_SQUOTE, - ACTIONS(6865), 1, + ACTIONS(7163), 1, anon_sym_BQUOTE, - ACTIONS(6867), 1, + ACTIONS(7165), 1, aux_sym_path_token1, - ACTIONS(6869), 1, + ACTIONS(7167), 1, sym_raw_string_begin, - STATE(336), 1, + STATE(334), 1, sym_val_string, - STATE(3601), 1, + STATE(3690), 1, sym_comment, - STATE(346), 4, + STATE(360), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [109872] = 10, + [112013] = 10, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1687), 1, anon_sym_LPAREN2, - ACTIONS(1820), 1, + ACTIONS(1840), 1, aux_sym_unquoted_token2, - ACTIONS(3448), 1, + ACTIONS(3458), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6713), 1, + ACTIONS(6989), 1, anon_sym_DOLLAR, - ACTIONS(6871), 1, + ACTIONS(7169), 1, aux_sym__immediate_decimal_token2, - STATE(1497), 1, + STATE(1453), 1, sym__immediate_decimal, - STATE(3602), 1, + STATE(3691), 1, + sym_comment, + ACTIONS(7171), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(962), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [112046] = 10, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1687), 1, + anon_sym_LPAREN2, + ACTIONS(1840), 1, + aux_sym_unquoted_token2, + ACTIONS(3484), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6989), 1, + anon_sym_DOLLAR, + ACTIONS(7173), 1, + aux_sym__immediate_decimal_token2, + STATE(1516), 1, + sym__immediate_decimal, + STATE(3692), 1, sym_comment, - ACTIONS(6873), 2, + ACTIONS(7175), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1333), 2, + STATE(1294), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [109905] = 9, + [112079] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(958), 1, + ACTIONS(946), 1, anon_sym_DQUOTE, - ACTIONS(960), 1, + ACTIONS(948), 1, anon_sym_SQUOTE, - ACTIONS(962), 1, + ACTIONS(950), 1, anon_sym_BQUOTE, - ACTIONS(974), 1, + ACTIONS(962), 1, sym_raw_string_begin, - ACTIONS(6875), 1, + ACTIONS(7177), 1, aux_sym_path_token1, - STATE(2464), 1, + STATE(2495), 1, sym_val_string, - STATE(3603), 1, + STATE(3693), 1, sym_comment, - STATE(2554), 4, + STATE(2547), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [109936] = 10, + [112110] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1604), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, - ACTIONS(1734), 1, + ACTIONS(1828), 1, aux_sym_unquoted_token2, - ACTIONS(3996), 1, + ACTIONS(3968), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6719), 1, + ACTIONS(7043), 1, anon_sym_DOLLAR, - ACTIONS(6877), 1, + ACTIONS(7179), 1, aux_sym__immediate_decimal_token2, - STATE(1907), 1, + STATE(1903), 1, sym__immediate_decimal, - STATE(3604), 1, + STATE(3694), 1, sym_comment, - ACTIONS(6879), 2, + ACTIONS(7181), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1969), 2, + STATE(1983), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [109969] = 10, + [112143] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1604), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, - ACTIONS(1734), 1, + ACTIONS(1828), 1, aux_sym_unquoted_token2, - ACTIONS(4010), 1, + ACTIONS(4002), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6719), 1, + ACTIONS(7043), 1, anon_sym_DOLLAR, - ACTIONS(6881), 1, + ACTIONS(7183), 1, aux_sym__immediate_decimal_token2, - STATE(2085), 1, + STATE(2017), 1, sym__immediate_decimal, - STATE(3605), 1, + STATE(3695), 1, sym_comment, - ACTIONS(6883), 2, + ACTIONS(7185), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(890), 2, + STATE(824), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [110002] = 9, + [112176] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6885), 1, + ACTIONS(7187), 1, anon_sym_DQUOTE, - ACTIONS(6887), 1, + ACTIONS(7189), 1, anon_sym_SQUOTE, - ACTIONS(6889), 1, + ACTIONS(7191), 1, anon_sym_BQUOTE, - ACTIONS(6891), 1, + ACTIONS(7193), 1, aux_sym_path_token1, - ACTIONS(6893), 1, + ACTIONS(7195), 1, sym_raw_string_begin, - STATE(1914), 1, + STATE(1919), 1, sym_val_string, - STATE(3606), 1, + STATE(3696), 1, sym_comment, - STATE(1953), 4, + STATE(1940), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [110033] = 10, + [112207] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1604), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, - ACTIONS(1734), 1, + ACTIONS(1828), 1, aux_sym_unquoted_token2, - ACTIONS(3372), 1, + ACTIONS(3390), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6719), 1, + ACTIONS(7043), 1, anon_sym_DOLLAR, - ACTIONS(6895), 1, + ACTIONS(7197), 1, aux_sym__immediate_decimal_token2, - STATE(1445), 1, + STATE(1446), 1, sym__immediate_decimal, - STATE(3607), 1, + STATE(3697), 1, sym_comment, - ACTIONS(6897), 2, + ACTIONS(7199), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(700), 2, + STATE(717), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [110066] = 10, + [112240] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1604), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, - ACTIONS(1734), 1, + ACTIONS(1828), 1, aux_sym_unquoted_token2, - ACTIONS(3394), 1, + ACTIONS(3438), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6719), 1, + ACTIONS(7043), 1, anon_sym_DOLLAR, - ACTIONS(6899), 1, + ACTIONS(7201), 1, aux_sym__immediate_decimal_token2, - STATE(1469), 1, + STATE(1497), 1, sym__immediate_decimal, - STATE(3608), 1, + STATE(3698), 1, sym_comment, - ACTIONS(6901), 2, + ACTIONS(7203), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(890), 2, + STATE(824), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [110099] = 9, + [112273] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(838), 1, + ACTIONS(827), 1, anon_sym_DQUOTE, - ACTIONS(840), 1, + ACTIONS(829), 1, anon_sym_SQUOTE, - ACTIONS(842), 1, + ACTIONS(831), 1, anon_sym_BQUOTE, - ACTIONS(856), 1, + ACTIONS(843), 1, sym_raw_string_begin, - ACTIONS(6903), 1, + ACTIONS(7205), 1, aux_sym_path_token1, - STATE(2445), 1, + STATE(2456), 1, sym_val_string, - STATE(3609), 1, + STATE(3699), 1, sym_comment, - STATE(2483), 4, + STATE(2477), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [110130] = 9, + [112304] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6905), 1, + ACTIONS(7207), 1, anon_sym_DQUOTE, - ACTIONS(6907), 1, + ACTIONS(7209), 1, anon_sym_SQUOTE, - ACTIONS(6909), 1, + ACTIONS(7211), 1, anon_sym_BQUOTE, - ACTIONS(6911), 1, + ACTIONS(7213), 1, aux_sym_path_token1, - ACTIONS(6913), 1, + ACTIONS(7215), 1, sym_raw_string_begin, - STATE(3610), 1, + STATE(3700), 1, sym_comment, - STATE(4174), 1, + STATE(4232), 1, sym_val_string, - STATE(4306), 4, + STATE(4463), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [110161] = 9, + [112335] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6787), 1, + ACTIONS(7097), 1, aux_sym_path_token1, - ACTIONS(6915), 1, + ACTIONS(7217), 1, anon_sym_DQUOTE, - ACTIONS(6917), 1, + ACTIONS(7219), 1, anon_sym_SQUOTE, - ACTIONS(6919), 1, + ACTIONS(7221), 1, anon_sym_BQUOTE, - ACTIONS(6921), 1, + ACTIONS(7223), 1, sym_raw_string_begin, - STATE(2388), 1, + STATE(2370), 1, sym_val_string, - STATE(3611), 1, + STATE(3701), 1, sym_comment, - STATE(2576), 4, + STATE(2563), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [110192] = 9, + [112366] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6923), 1, + ACTIONS(7225), 1, anon_sym_DQUOTE, - ACTIONS(6925), 1, + ACTIONS(7227), 1, anon_sym_SQUOTE, - ACTIONS(6927), 1, + ACTIONS(7229), 1, anon_sym_BQUOTE, - ACTIONS(6929), 1, + ACTIONS(7231), 1, aux_sym_path_token1, - ACTIONS(6931), 1, + ACTIONS(7233), 1, sym_raw_string_begin, - STATE(1735), 1, + STATE(1728), 1, sym_val_string, - STATE(3612), 1, + STATE(3702), 1, sym_comment, - STATE(1754), 4, + STATE(1738), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [110223] = 4, + [112397] = 9, ACTIONS(103), 1, anon_sym_POUND, - STATE(3613), 1, + ACTIONS(3832), 1, + sym_raw_string_begin, + ACTIONS(7079), 1, + anon_sym_DQUOTE, + ACTIONS(7081), 1, + anon_sym_SQUOTE, + ACTIONS(7083), 1, + anon_sym_BQUOTE, + ACTIONS(7235), 1, + aux_sym_path_token1, + STATE(2393), 1, + sym_val_string, + STATE(3703), 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, - [110244] = 9, + STATE(2394), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [112428] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1806), 1, + ACTIONS(1778), 1, sym_raw_string_begin, - ACTIONS(6787), 1, - aux_sym_path_token1, - ACTIONS(6933), 1, + ACTIONS(7033), 1, anon_sym_DQUOTE, - ACTIONS(6935), 1, + ACTIONS(7035), 1, anon_sym_SQUOTE, - ACTIONS(6937), 1, + ACTIONS(7037), 1, anon_sym_BQUOTE, - STATE(2388), 1, + ACTIONS(7097), 1, + aux_sym_path_token1, + STATE(2370), 1, sym_val_string, - STATE(3614), 1, + STATE(3704), 1, sym_comment, - STATE(2266), 4, + STATE(2274), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [110275] = 9, + [112459] = 9, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(3012), 1, sym_raw_string_begin, - ACTIONS(6781), 1, + ACTIONS(7091), 1, anon_sym_DQUOTE, - ACTIONS(6783), 1, + ACTIONS(7093), 1, anon_sym_SQUOTE, - ACTIONS(6785), 1, + ACTIONS(7095), 1, anon_sym_BQUOTE, - ACTIONS(6939), 1, + ACTIONS(7237), 1, aux_sym_path_token1, - STATE(2515), 1, + STATE(2508), 1, sym_val_string, - STATE(3615), 1, + STATE(3705), 1, sym_comment, - STATE(2568), 4, + STATE(2643), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [110306] = 9, + [112490] = 9, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1436), 1, sym_raw_string_begin, - ACTIONS(6729), 1, + ACTIONS(7053), 1, anon_sym_DQUOTE, - ACTIONS(6731), 1, + ACTIONS(7055), 1, anon_sym_SQUOTE, - ACTIONS(6733), 1, + ACTIONS(7057), 1, anon_sym_BQUOTE, - ACTIONS(6941), 1, + ACTIONS(7239), 1, aux_sym_path_token1, - STATE(3616), 1, + STATE(3706), 1, sym_comment, - STATE(3758), 1, + STATE(3823), 1, sym_val_string, - STATE(3665), 4, + STATE(3725), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [110337] = 9, + [112521] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6943), 1, + ACTIONS(7241), 1, anon_sym_DQUOTE, - ACTIONS(6945), 1, + ACTIONS(7243), 1, anon_sym_SQUOTE, - ACTIONS(6947), 1, + ACTIONS(7245), 1, anon_sym_BQUOTE, - ACTIONS(6949), 1, + ACTIONS(7247), 1, aux_sym_path_token1, - ACTIONS(6951), 1, + ACTIONS(7249), 1, sym_raw_string_begin, - STATE(337), 1, + STATE(333), 1, sym_val_string, - STATE(3617), 1, + STATE(3707), 1, sym_comment, - STATE(353), 4, + STATE(342), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [110368] = 9, - ACTIONS(3), 1, + [112552] = 10, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1604), 1, - anon_sym_LPAREN2, - ACTIONS(1639), 1, - anon_sym_LBRACE, - ACTIONS(2873), 1, + ACTIONS(1798), 1, anon_sym_DOLLAR, - STATE(729), 1, - sym__immediate_decimal, - STATE(3618), 1, + ACTIONS(6150), 1, + anon_sym_LPAREN2, + ACTIONS(6154), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6156), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6659), 1, + aux_sym__unquoted_in_list_token2, + STATE(3708), 1, sym_comment, - ACTIONS(6499), 2, + STATE(3816), 1, + sym__immediate_decimal, + ACTIONS(6158), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(6953), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(728), 2, + STATE(4147), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [110399] = 4, + [112585] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3619), 1, + STATE(3709), 1, sym_comment, - ACTIONS(860), 4, + ACTIONS(863), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - ACTIONS(862), 6, + ACTIONS(865), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [110420] = 10, + [112606] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3166), 1, + ACTIONS(6497), 1, + anon_sym_DOLLAR, + ACTIONS(6499), 1, anon_sym_LPAREN2, - ACTIONS(5045), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(5047), 1, + ACTIONS(6501), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5207), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(6955), 1, - anon_sym_DOLLAR, - STATE(2702), 1, - sym__immediate_decimal, - STATE(3620), 1, + ACTIONS(6503), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6659), 1, + aux_sym__unquoted_in_list_token2, + STATE(3710), 1, sym_comment, - ACTIONS(6957), 2, + STATE(4331), 1, + sym__immediate_decimal, + ACTIONS(6505), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3011), 2, + STATE(4337), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [110453] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(866), 1, - anon_sym_RBRACK, - ACTIONS(886), 1, - sym__entry_separator, - ACTIONS(6479), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6670), 1, - anon_sym_LPAREN2, - ACTIONS(6959), 1, - anon_sym_DOT_DOT2, - ACTIONS(6963), 1, - sym_filesize_unit, - ACTIONS(6965), 1, - sym_duration_unit, - STATE(3621), 1, - sym_comment, - STATE(4803), 1, - sym__expr_parenthesized_immediate, - ACTIONS(6961), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [110488] = 10, + [112639] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3166), 1, - anon_sym_LPAREN2, - ACTIONS(5141), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(5143), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5207), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(6955), 1, - anon_sym_DOLLAR, - STATE(3128), 1, - sym__immediate_decimal, - STATE(3622), 1, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(7251), 1, + anon_sym_DQUOTE, + ACTIONS(7253), 1, + anon_sym_SQUOTE, + ACTIONS(7255), 1, + anon_sym_BQUOTE, + ACTIONS(7257), 1, + aux_sym_path_token1, + STATE(412), 1, + sym_val_string, + STATE(3711), 1, sym_comment, - ACTIONS(6967), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3511), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [110521] = 5, + STATE(418), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [112670] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6686), 1, + ACTIONS(7259), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7261), 1, aux_sym__immediate_decimal_token5, - STATE(3623), 1, + STATE(3712), 1, sym_comment, - ACTIONS(747), 2, + ACTIONS(1732), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(749), 7, + ACTIONS(1730), 6, + 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, - [110544] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6969), 1, - anon_sym_DOT, - ACTIONS(6971), 1, - aux_sym__immediate_decimal_token5, - STATE(3624), 1, - sym_comment, - ACTIONS(1744), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1746), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [110569] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1452), 1, - anon_sym_BANG, - STATE(3625), 1, - sym_comment, - ACTIONS(1450), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1448), 6, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_COLON2, - anon_sym_DOT2, - [110592] = 10, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(3323), 1, - anon_sym_LPAREN2, - ACTIONS(3707), 1, - anon_sym_DOLLAR, - ACTIONS(4974), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4976), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(5160), 1, - aux_sym_unquoted_token2, - STATE(2589), 1, - sym__immediate_decimal, - STATE(3626), 1, - sym_comment, - ACTIONS(4978), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2799), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [110625] = 9, + [112695] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1604), 1, - anon_sym_LPAREN2, - ACTIONS(1663), 1, - anon_sym_LBRACE, - ACTIONS(2873), 1, - anon_sym_DOLLAR, - STATE(747), 1, - sym__immediate_decimal, - STATE(3627), 1, - sym_comment, - ACTIONS(6499), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(6953), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(746), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [110656] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6682), 1, + ACTIONS(7263), 1, aux_sym__immediate_decimal_token5, - STATE(3628), 1, + STATE(3713), 1, sym_comment, - ACTIONS(747), 3, - anon_sym_RBRACE, + ACTIONS(767), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(749), 6, - anon_sym_LPAREN2, + sym__unquoted_pattern, + ACTIONS(769), 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, - sym__entry_separator, - [110679] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1604), 1, - anon_sym_LPAREN2, - ACTIONS(1667), 1, - anon_sym_LBRACE, - ACTIONS(2873), 1, - anon_sym_DOLLAR, - STATE(743), 1, - sym__immediate_decimal, - STATE(3629), 1, - sym_comment, - ACTIONS(6499), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(6953), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(742), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [110710] = 6, + [112718] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6973), 1, - anon_sym_DOT, - ACTIONS(6975), 1, + ACTIONS(7265), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7267), 1, aux_sym__immediate_decimal_token5, - STATE(3630), 1, + STATE(3714), 1, sym_comment, - ACTIONS(1744), 4, + ACTIONS(1730), 4, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1746), 4, + ACTIONS(1732), 4, sym__newline, anon_sym_SEMI, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [110735] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1604), 1, - anon_sym_LPAREN2, - ACTIONS(1681), 1, - anon_sym_LBRACE, - ACTIONS(2873), 1, - anon_sym_DOLLAR, - STATE(745), 1, - sym__immediate_decimal, - STATE(3631), 1, - sym_comment, - ACTIONS(6499), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(6953), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(744), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [110766] = 10, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(3323), 1, - anon_sym_LPAREN2, - ACTIONS(3707), 1, - anon_sym_DOLLAR, - ACTIONS(4988), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4990), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(5160), 1, - aux_sym_unquoted_token2, - STATE(2946), 1, - sym__immediate_decimal, - STATE(3632), 1, - sym_comment, - ACTIONS(4992), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3271), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [110799] = 6, + [112743] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6977), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6979), 1, - aux_sym__immediate_decimal_token5, - STATE(3633), 1, + STATE(3715), 1, sym_comment, - ACTIONS(1770), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1772), 4, + ACTIONS(739), 4, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - [110824] = 10, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1836), 1, - anon_sym_DOLLAR, - ACTIONS(6102), 1, - anon_sym_LPAREN2, - ACTIONS(6106), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6108), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6479), 1, - aux_sym__unquoted_in_list_token2, - STATE(3634), 1, - sym_comment, - STATE(3774), 1, - sym__immediate_decimal, - ACTIONS(6110), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4020), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [110857] = 10, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1604), 1, + ACTIONS(741), 6, anon_sym_LPAREN2, - ACTIONS(1734), 1, - aux_sym_unquoted_token2, - ACTIONS(5322), 1, - anon_sym_DOLLAR, - ACTIONS(6497), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6981), 1, - aux_sym__immediate_decimal_token2, - STATE(3635), 1, - sym_comment, - STATE(4071), 1, - sym__immediate_decimal, - ACTIONS(6983), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4450), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [110890] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1734), 1, - sym__unquoted_pattern, - ACTIONS(6985), 1, - anon_sym_DOT_DOT2, - ACTIONS(6989), 1, - sym_filesize_unit, - ACTIONS(6991), 1, - sym_duration_unit, - STATE(3636), 1, - sym_comment, - ACTIONS(6987), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(886), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [110919] = 10, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [112764] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6347), 1, - anon_sym_DOLLAR, - ACTIONS(6349), 1, - anon_sym_LPAREN2, - ACTIONS(6351), 1, + ACTIONS(7269), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6353), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6479), 1, - aux_sym__unquoted_in_list_token2, - STATE(3637), 1, - sym_comment, - STATE(4111), 1, - sym__immediate_decimal, - ACTIONS(6355), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4413), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [110952] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6993), 1, - anon_sym_DOT, - ACTIONS(6995), 1, + ACTIONS(7271), 1, aux_sym__immediate_decimal_token5, - STATE(3638), 1, + STATE(3716), 1, sym_comment, - ACTIONS(1744), 4, + ACTIONS(1730), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1746), 4, + ACTIONS(1732), 4, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - [110977] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6997), 1, - aux_sym__immediate_decimal_token5, - STATE(3639), 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, - [111000] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(866), 1, - anon_sym_RBRACE, - ACTIONS(886), 1, - sym__entry_separator, - ACTIONS(5197), 1, - anon_sym_LPAREN2, - ACTIONS(6779), 1, - sym__unquoted_pattern_in_record, - ACTIONS(6999), 1, - anon_sym_DOT_DOT2, - ACTIONS(7003), 1, - sym_filesize_unit, - ACTIONS(7005), 1, - sym_duration_unit, - STATE(3640), 1, - sym_comment, - STATE(4903), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7001), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [111035] = 10, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1687), 1, - anon_sym_LPAREN2, - ACTIONS(1691), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(1820), 1, - aux_sym_unquoted_token2, - ACTIONS(6713), 1, - anon_sym_DOLLAR, - ACTIONS(7007), 1, - aux_sym__immediate_decimal_token2, - STATE(682), 1, - sym__immediate_decimal, - STATE(3641), 1, - sym_comment, - ACTIONS(7009), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(950), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [111068] = 10, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1687), 1, - anon_sym_LPAREN2, - ACTIONS(1697), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(1820), 1, - aux_sym_unquoted_token2, - ACTIONS(6713), 1, - anon_sym_DOLLAR, - ACTIONS(7011), 1, - aux_sym__immediate_decimal_token2, - STATE(1053), 1, - sym__immediate_decimal, - STATE(3642), 1, - sym_comment, - ACTIONS(7013), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(1333), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [111101] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6458), 1, - anon_sym_DASH2, - STATE(3643), 1, - sym_comment, - ACTIONS(4431), 9, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [111122] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1806), 1, - sym_raw_string_begin, - ACTIONS(6933), 1, - anon_sym_DQUOTE, - ACTIONS(6935), 1, - anon_sym_SQUOTE, - ACTIONS(6937), 1, - anon_sym_BQUOTE, - ACTIONS(7015), 1, - aux_sym_path_token1, - STATE(2296), 1, - sym_val_string, - STATE(3644), 1, - sym_comment, - STATE(2266), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [111153] = 4, + [112789] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3645), 1, + STATE(3717), 1, sym_comment, ACTIONS(739), 2, anon_sym_DOT_DOT2, @@ -232785,383 +235393,228 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [111174] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7017), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7019), 1, - aux_sym__immediate_decimal_token5, - STATE(3646), 1, - sym_comment, - ACTIONS(1770), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1772), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [111199] = 10, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1836), 1, - anon_sym_DOLLAR, - ACTIONS(6102), 1, - anon_sym_LPAREN2, - ACTIONS(6218), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6220), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6779), 1, - aux_sym__unquoted_in_record_token2, - STATE(3647), 1, - sym_comment, - STATE(3788), 1, - sym__immediate_decimal, - ACTIONS(6222), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3925), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [111232] = 10, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1836), 1, - anon_sym_DOLLAR, - ACTIONS(6102), 1, - anon_sym_LPAREN2, - ACTIONS(6235), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6237), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6479), 1, - aux_sym__unquoted_in_list_token2, - STATE(3648), 1, - sym_comment, - STATE(3816), 1, - sym__immediate_decimal, - ACTIONS(6239), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3925), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [111265] = 4, + [112810] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3649), 1, + STATE(3718), 1, sym_comment, - ACTIONS(771), 4, + ACTIONS(767), 4, anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - ACTIONS(773), 6, + ACTIONS(769), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [111286] = 10, + [112831] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6102), 1, - anon_sym_LPAREN2, - ACTIONS(6401), 1, - anon_sym_DOLLAR, - ACTIONS(6403), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6405), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6479), 1, - aux_sym__unquoted_in_list_token2, - STATE(3650), 1, - sym_comment, - STATE(4391), 1, - sym__immediate_decimal, - ACTIONS(6407), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4413), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [111319] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3651), 1, - sym_comment, - ACTIONS(771), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(773), 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, - [111340] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6694), 1, - aux_sym__immediate_decimal_token5, - STATE(3652), 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, - [111363] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3653), 1, - sym_comment, - ACTIONS(860), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(862), 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, - [111384] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7021), 1, - aux_sym__immediate_decimal_token5, - STATE(3654), 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, - [111407] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7023), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7025), 1, - aux_sym__immediate_decimal_token5, - STATE(3655), 1, - sym_comment, - ACTIONS(1772), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1770), 6, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [111432] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7027), 1, - aux_sym__immediate_decimal_token5, - STATE(3656), 1, + STATE(3719), 1, sym_comment, - ACTIONS(771), 2, + ACTIONS(863), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(773), 7, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + sym__unquoted_pattern_in_list, + ACTIONS(865), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [111455] = 9, + sym__entry_separator, + [112852] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3806), 1, + ACTIONS(105), 1, sym_raw_string_begin, - ACTIONS(6771), 1, + ACTIONS(7273), 1, anon_sym_DQUOTE, - ACTIONS(6773), 1, + ACTIONS(7275), 1, anon_sym_SQUOTE, - ACTIONS(6775), 1, + ACTIONS(7277), 1, anon_sym_BQUOTE, - ACTIONS(7029), 1, + ACTIONS(7279), 1, aux_sym_path_token1, - STATE(2391), 1, + STATE(509), 1, sym_val_string, - STATE(3657), 1, + STATE(3720), 1, sym_comment, - STATE(2379), 4, + STATE(502), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [111486] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7031), 1, - anon_sym_DOT, - ACTIONS(7033), 1, - aux_sym__immediate_decimal_token5, - STATE(3658), 1, - sym_comment, - ACTIONS(1746), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1744), 5, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [111510] = 8, + [112883] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3118), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, - ACTIONS(7035), 1, + ACTIONS(1659), 1, + anon_sym_LBRACE, + ACTIONS(2938), 1, anon_sym_DOLLAR, - STATE(2809), 1, + STATE(804), 1, sym__immediate_decimal, - STATE(3659), 1, + STATE(3721), 1, + sym_comment, + ACTIONS(6669), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(6971), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(803), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [112914] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + ACTIONS(2938), 1, + anon_sym_DOLLAR, + STATE(3722), 1, sym_comment, - ACTIONS(4964), 2, + STATE(4418), 1, + sym__immediate_decimal, + ACTIONS(6447), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(7037), 2, + ACTIONS(6449), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3173), 2, + STATE(796), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [111538] = 8, + [112942] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3166), 1, - anon_sym_LPAREN2, - ACTIONS(3858), 1, + ACTIONS(1601), 1, anon_sym_DOLLAR, - STATE(3423), 1, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + STATE(718), 1, sym__immediate_decimal, - STATE(3660), 1, + STATE(3723), 1, sym_comment, - ACTIONS(5049), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(5191), 2, + ACTIONS(1609), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(3440), 2, + ACTIONS(1611), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(717), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [111566] = 5, - ACTIONS(103), 1, + [112970] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6971), 1, - aux_sym__immediate_decimal_token5, - STATE(3661), 1, + ACTIONS(4179), 1, + anon_sym_DOT_DOT2, + ACTIONS(7281), 1, + sym_filesize_unit, + ACTIONS(7283), 1, + sym_duration_unit, + ACTIONS(7285), 1, + sym__unquoted_pattern, + STATE(3724), 1, sym_comment, - ACTIONS(1744), 4, - anon_sym_LPAREN2, + ACTIONS(4181), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + ACTIONS(968), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [112998] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1510), 1, sym__entry_separator, - ACTIONS(1746), 4, + STATE(3725), 1, + sym_comment, + ACTIONS(1508), 8, + anon_sym_COLON, anon_sym_RBRACK, + anon_sym_GT2, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [111588] = 8, + anon_sym_DOT_DOT, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [113018] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1600), 1, + ACTIONS(2720), 1, anon_sym_DOLLAR, - ACTIONS(1604), 1, + ACTIONS(6150), 1, anon_sym_LPAREN2, - STATE(960), 1, - sym__immediate_decimal, - STATE(3662), 1, + STATE(3726), 1, sym_comment, - ACTIONS(1675), 2, + STATE(4198), 1, + sym__immediate_decimal, + ACTIONS(6437), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(1677), 2, + ACTIONS(7287), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(737), 2, + STATE(4014), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [111616] = 8, + [113046] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1600), 1, + ACTIONS(3773), 1, anon_sym_DOLLAR, - ACTIONS(1604), 1, + ACTIONS(6150), 1, anon_sym_LPAREN2, - STATE(736), 1, - sym__immediate_decimal, - STATE(3663), 1, + STATE(3727), 1, sym_comment, - ACTIONS(4010), 2, + STATE(5011), 1, + sym__immediate_decimal, + ACTIONS(6743), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(4012), 2, + ACTIONS(7287), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(735), 2, + STATE(4337), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [111644] = 8, + [113074] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3948), 1, + ACTIONS(1601), 1, anon_sym_DOLLAR, - ACTIONS(6102), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, - STATE(3664), 1, - sym_comment, - STATE(4447), 1, + STATE(951), 1, sym__immediate_decimal, - ACTIONS(6513), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(7039), 2, + STATE(3728), 1, + sym_comment, + ACTIONS(1611), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4235), 2, + ACTIONS(1645), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(824), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [111672] = 4, + [113102] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1521), 1, + ACTIONS(1514), 1, sym__entry_separator, - STATE(3665), 1, + STATE(3729), 1, sym_comment, - ACTIONS(1519), 8, + ACTIONS(1512), 8, anon_sym_COLON, anon_sym_RBRACK, anon_sym_GT2, @@ -233170,131 +235623,220 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [111692] = 8, + [113122] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3730), 1, + sym_comment, + ACTIONS(863), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(865), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [113142] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1687), 1, + ACTIONS(3141), 1, anon_sym_LPAREN2, - ACTIONS(3894), 1, + ACTIONS(7289), 1, anon_sym_DOLLAR, - STATE(2687), 1, + STATE(2969), 1, sym__immediate_decimal, - STATE(3666), 1, + STATE(3731), 1, sym_comment, - ACTIONS(4934), 2, + ACTIONS(4988), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(4936), 2, + ACTIONS(7291), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1283), 2, + STATE(3310), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [111720] = 8, + [113170] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1600), 1, + ACTIONS(1685), 1, anon_sym_DOLLAR, - ACTIONS(1604), 1, + ACTIONS(1687), 1, anon_sym_LPAREN2, - STATE(723), 1, + STATE(1022), 1, sym__immediate_decimal, - STATE(3667), 1, + STATE(3732), 1, sym_comment, - ACTIONS(1608), 2, + ACTIONS(1718), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(1610), 2, + ACTIONS(1720), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(700), 2, + STATE(1307), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [111748] = 8, + [113198] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1522), 1, + sym__entry_separator, + STATE(3733), 1, + sym_comment, + ACTIONS(1520), 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, + [113218] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3948), 1, - anon_sym_DOLLAR, - ACTIONS(6102), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, - STATE(3668), 1, - sym_comment, - STATE(4233), 1, + ACTIONS(2938), 1, + anon_sym_DOLLAR, + STATE(795), 1, sym__immediate_decimal, - ACTIONS(6485), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(7041), 2, + STATE(3734), 1, + sym_comment, + ACTIONS(5859), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4232), 2, + ACTIONS(6413), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(794), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [111776] = 8, + [113246] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1600), 1, + ACTIONS(1601), 1, anon_sym_DOLLAR, - ACTIONS(1604), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, - STATE(914), 1, + STATE(1996), 1, sym__immediate_decimal, - STATE(3669), 1, + STATE(3735), 1, sym_comment, - ACTIONS(4010), 2, + ACTIONS(3962), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(4012), 2, + ACTIONS(3964), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(737), 2, + STATE(796), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [111804] = 8, + [113274] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3942), 1, - anon_sym_DOLLAR, - ACTIONS(6349), 1, + ACTIONS(3347), 1, anon_sym_LPAREN2, - STATE(3670), 1, - sym_comment, - STATE(4144), 1, + ACTIONS(7293), 1, + anon_sym_DOLLAR, + STATE(3214), 1, sym__immediate_decimal, - ACTIONS(6351), 2, + STATE(3736), 1, + sym_comment, + ACTIONS(6647), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(7043), 2, + ACTIONS(7295), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4235), 2, + STATE(3213), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [111832] = 5, + [113302] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7045), 1, - aux_sym__immediate_decimal_token5, - STATE(3671), 1, + ACTIONS(968), 1, + sym__space, + ACTIONS(4179), 1, + anon_sym_DOT_DOT2, + ACTIONS(5061), 1, + sym__unquoted_pattern, + ACTIONS(6910), 1, + sym_filesize_unit, + ACTIONS(6912), 1, + sym_duration_unit, + STATE(3737), 1, sym_comment, - ACTIONS(1852), 4, - anon_sym_LPAREN2, + ACTIONS(847), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(4181), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1854), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + [113332] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3738), 1, + sym_comment, + ACTIONS(739), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [111854] = 4, + 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, + [113352] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6987), 1, + aux_sym__immediate_decimal_token5, + STATE(3739), 1, + sym_comment, + ACTIONS(1792), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1790), 6, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [113374] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + ACTIONS(2938), 1, + anon_sym_DOLLAR, + STATE(3740), 1, + sym_comment, + STATE(4306), 1, + sym__immediate_decimal, + ACTIONS(6030), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6032), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(796), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [113402] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1525), 1, + ACTIONS(1530), 1, sym__entry_separator, - STATE(3672), 1, + STATE(3741), 1, sym_comment, - ACTIONS(1523), 8, + ACTIONS(1528), 8, anon_sym_COLON, anon_sym_RBRACK, anon_sym_GT2, @@ -233303,895 +235845,726 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [111874] = 8, + [113422] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1604), 1, + ACTIONS(3347), 1, anon_sym_LPAREN2, - ACTIONS(2873), 1, + ACTIONS(7293), 1, anon_sym_DOLLAR, - STATE(2563), 1, + STATE(3214), 1, sym__immediate_decimal, - STATE(3673), 1, + STATE(3742), 1, sym_comment, - ACTIONS(4922), 2, + ACTIONS(4984), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(4924), 2, + ACTIONS(7297), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(737), 2, + STATE(3213), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [111902] = 8, + [113450] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1502), 1, + sym__entry_separator, + STATE(3743), 1, + sym_comment, + ACTIONS(1500), 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, + [113470] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1506), 1, + sym__entry_separator, + STATE(3744), 1, + sym_comment, + ACTIONS(1504), 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, + [113490] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7299), 1, + aux_sym__immediate_decimal_token5, + STATE(3745), 1, + sym_comment, + ACTIONS(1848), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1846), 6, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [113512] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1600), 1, + ACTIONS(3773), 1, anon_sym_DOLLAR, - ACTIONS(1604), 1, + ACTIONS(6150), 1, anon_sym_LPAREN2, - STATE(1961), 1, - sym__immediate_decimal, - STATE(3674), 1, + STATE(3746), 1, sym_comment, - ACTIONS(3956), 2, + STATE(4486), 1, + sym__immediate_decimal, + ACTIONS(6621), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3958), 2, + ACTIONS(7301), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(737), 2, + STATE(4396), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [111930] = 8, + [113540] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3166), 1, + ACTIONS(3347), 1, anon_sym_LPAREN2, - ACTIONS(3858), 1, + ACTIONS(7293), 1, anon_sym_DOLLAR, - STATE(3135), 1, - sym__immediate_decimal, - STATE(3675), 1, + STATE(3747), 1, sym_comment, - ACTIONS(5143), 2, + STATE(4330), 1, + sym__immediate_decimal, + ACTIONS(6423), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(5145), 2, + ACTIONS(7303), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3518), 2, + STATE(3215), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [111958] = 5, - ACTIONS(103), 1, + [113568] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6975), 1, + ACTIONS(7305), 1, + anon_sym_DOT, + ACTIONS(7307), 1, aux_sym__immediate_decimal_token5, - STATE(3676), 1, + STATE(3748), 1, sym_comment, - ACTIONS(1744), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1746), 4, - sym__newline, - anon_sym_SEMI, + ACTIONS(747), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [111980] = 8, + ACTIONS(749), 5, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [113592] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1604), 1, - anon_sym_LPAREN2, - ACTIONS(2873), 1, + ACTIONS(3840), 1, anon_sym_DOLLAR, - STATE(3677), 1, + ACTIONS(6499), 1, + anon_sym_LPAREN2, + STATE(3749), 1, sym_comment, - STATE(4289), 1, + STATE(4395), 1, sym__immediate_decimal, - ACTIONS(6251), 2, + ACTIONS(6501), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6253), 2, + ACTIONS(7309), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(737), 2, + STATE(4394), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [112008] = 8, + [113620] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3118), 1, + ACTIONS(3347), 1, anon_sym_LPAREN2, - ACTIONS(7035), 1, + ACTIONS(7293), 1, anon_sym_DOLLAR, - STATE(3172), 1, + STATE(2767), 1, sym__immediate_decimal, - STATE(3678), 1, + STATE(3750), 1, sym_comment, - ACTIONS(6409), 2, + ACTIONS(4966), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(7047), 2, + ACTIONS(7311), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3171), 2, + STATE(3215), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [112036] = 8, + [113648] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1685), 1, - anon_sym_DOLLAR, - ACTIONS(1687), 1, + ACTIONS(3179), 1, anon_sym_LPAREN2, - STATE(1496), 1, + ACTIONS(3789), 1, + anon_sym_DOLLAR, + STATE(3478), 1, sym__immediate_decimal, - STATE(3679), 1, + STATE(3751), 1, sym_comment, - ACTIONS(3448), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3450), 2, + ACTIONS(5051), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1283), 2, + ACTIONS(5170), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(3475), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [112064] = 8, + [113676] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1600), 1, + ACTIONS(1601), 1, anon_sym_DOLLAR, - ACTIONS(1604), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, - STATE(2000), 1, + STATE(951), 1, sym__immediate_decimal, - STATE(3680), 1, + STATE(3752), 1, sym_comment, - ACTIONS(4010), 2, + ACTIONS(4002), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(4012), 2, + ACTIONS(4004), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(737), 2, + STATE(824), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [112092] = 8, + [113704] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1600), 1, + ACTIONS(1601), 1, anon_sym_DOLLAR, - ACTIONS(1604), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, - STATE(1488), 1, + STATE(917), 1, sym__immediate_decimal, - STATE(3681), 1, + STATE(3753), 1, sym_comment, - ACTIONS(3394), 2, + ACTIONS(1665), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3396), 2, + ACTIONS(1667), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(737), 2, + STATE(796), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [112120] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1529), 1, - sym__entry_separator, - STATE(3682), 1, - sym_comment, - ACTIONS(1527), 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, - [112140] = 8, + [113732] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1604), 1, - anon_sym_LPAREN2, - ACTIONS(2873), 1, + ACTIONS(1601), 1, anon_sym_DOLLAR, - STATE(736), 1, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + STATE(795), 1, sym__immediate_decimal, - STATE(3683), 1, + STATE(3754), 1, sym_comment, - ACTIONS(6499), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(6953), 2, + ACTIONS(4002), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(735), 2, + ACTIONS(4004), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(794), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [112168] = 7, + [113760] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5030), 1, - anon_sym_DOT2, - STATE(2459), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2500), 1, - sym_path, - STATE(2925), 1, - sym_cell_path, - STATE(3684), 1, + STATE(3755), 1, sym_comment, - ACTIONS(1862), 5, + ACTIONS(7313), 9, anon_sym_EQ, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_GT2, + anon_sym_RPAREN, anon_sym_DASH_DASH, - [112194] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7049), 1, - aux_sym__immediate_decimal_token5, - STATE(3685), 1, - sym_comment, - ACTIONS(1852), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1854), 4, - anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [112216] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3948), 1, - anon_sym_DOLLAR, - ACTIONS(6102), 1, - anon_sym_LPAREN2, - STATE(3686), 1, - sym_comment, - STATE(4897), 1, - sym__immediate_decimal, - ACTIONS(6485), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(7041), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4413), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [112244] = 5, + [113778] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7051), 1, + ACTIONS(7315), 1, + anon_sym_DOT, + ACTIONS(7317), 1, aux_sym__immediate_decimal_token5, - STATE(3687), 1, + STATE(3756), 1, sym_comment, - ACTIONS(1854), 2, + ACTIONS(1792), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1852), 6, - anon_sym_if, + ACTIONS(1790), 5, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [112266] = 8, + [113802] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1687), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, - ACTIONS(3894), 1, + ACTIONS(2938), 1, anon_sym_DOLLAR, - STATE(1300), 1, + STATE(795), 1, sym__immediate_decimal, - STATE(3688), 1, + STATE(3757), 1, sym_comment, - ACTIONS(1693), 2, + ACTIONS(6669), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1758), 2, + ACTIONS(6971), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(1303), 2, + STATE(794), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [112294] = 8, + [113830] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1600), 1, + ACTIONS(3773), 1, anon_sym_DOLLAR, - ACTIONS(1604), 1, + ACTIONS(6150), 1, anon_sym_LPAREN2, - STATE(957), 1, - sym__immediate_decimal, - STATE(3689), 1, + STATE(3758), 1, sym_comment, - ACTIONS(1610), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1655), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(890), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [112322] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1685), 1, - anon_sym_DOLLAR, - ACTIONS(1687), 1, - anon_sym_LPAREN2, - STATE(953), 1, + STATE(4555), 1, sym__immediate_decimal, - STATE(3690), 1, - sym_comment, - ACTIONS(1691), 2, + ACTIONS(6583), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(1693), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(950), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [112350] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1685), 1, - anon_sym_DOLLAR, - ACTIONS(1687), 1, - anon_sym_LPAREN2, - STATE(1300), 1, - sym__immediate_decimal, - STATE(3691), 1, - sym_comment, - ACTIONS(1693), 2, + ACTIONS(7319), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1758), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(1303), 2, + STATE(4396), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [112378] = 4, + [113858] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(3692), 1, - sym_comment, - ACTIONS(860), 2, - anon_sym_DOT_DOT2, + ACTIONS(1828), 1, sym__unquoted_pattern, - ACTIONS(862), 7, + ACTIONS(7321), 1, + anon_sym_DOT_DOT2, + ACTIONS(7325), 1, + sym_filesize_unit, + ACTIONS(7327), 1, + sym_duration_unit, + STATE(3759), 1, + sym_comment, + ACTIONS(7323), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(968), 3, 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, - [112398] = 8, + [113886] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3948), 1, - anon_sym_DOLLAR, - ACTIONS(6102), 1, + ACTIONS(1687), 1, anon_sym_LPAREN2, - STATE(3693), 1, - sym_comment, - STATE(4218), 1, + ACTIONS(3806), 1, + anon_sym_DOLLAR, + STATE(2664), 1, sym__immediate_decimal, - ACTIONS(6403), 2, + STATE(3760), 1, + sym_comment, + ACTIONS(4926), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(7053), 2, + ACTIONS(4928), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4235), 2, + STATE(1307), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [112426] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5030), 1, - anon_sym_DOT2, - STATE(2459), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2500), 1, - sym_path, - STATE(2990), 1, - sym_cell_path, - STATE(3694), 1, - sym_comment, - ACTIONS(1912), 5, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - [112452] = 8, + [113914] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1604), 1, - anon_sym_LPAREN2, - ACTIONS(2873), 1, + ACTIONS(3840), 1, anon_sym_DOLLAR, - STATE(3695), 1, + ACTIONS(6499), 1, + anon_sym_LPAREN2, + STATE(3761), 1, sym_comment, - STATE(4205), 1, + STATE(4197), 1, sym__immediate_decimal, - ACTIONS(5975), 2, + ACTIONS(6501), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(5977), 2, + ACTIONS(7309), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(737), 2, + STATE(4396), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [112480] = 8, + [113942] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1604), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, - ACTIONS(2873), 1, + ACTIONS(2938), 1, anon_sym_DOLLAR, - STATE(736), 1, + STATE(2616), 1, sym__immediate_decimal, - STATE(3696), 1, + STATE(3762), 1, sym_comment, - ACTIONS(1610), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1655), 2, + ACTIONS(4922), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(735), 2, + ACTIONS(4924), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(796), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [112508] = 8, + [113970] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3118), 1, + STATE(3763), 1, + sym_comment, + ACTIONS(7329), 9, + anon_sym_EQ, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [113988] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3179), 1, anon_sym_LPAREN2, - ACTIONS(7035), 1, + ACTIONS(3789), 1, anon_sym_DOLLAR, - STATE(3172), 1, + STATE(3114), 1, sym__immediate_decimal, - STATE(3697), 1, + STATE(3764), 1, sym_comment, - ACTIONS(4984), 2, + ACTIONS(5126), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(7055), 2, + ACTIONS(5128), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3171), 2, + STATE(3491), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [112536] = 8, + [114016] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2674), 1, + ACTIONS(3773), 1, anon_sym_DOLLAR, - ACTIONS(6102), 1, + ACTIONS(6150), 1, anon_sym_LPAREN2, - STATE(3698), 1, + STATE(3765), 1, sym_comment, - STATE(4196), 1, + STATE(4933), 1, sym__immediate_decimal, - ACTIONS(6235), 2, + ACTIONS(6743), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(7041), 2, + ACTIONS(7287), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3925), 2, + STATE(4396), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [112564] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3699), 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, - [112584] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(886), 1, - sym__space, - ACTIONS(4203), 1, - anon_sym_DOT_DOT2, - ACTIONS(5071), 1, - sym__unquoted_pattern, - ACTIONS(6654), 1, - sym_filesize_unit, - ACTIONS(6656), 1, - sym_duration_unit, - STATE(3700), 1, - sym_comment, - ACTIONS(866), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(4205), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [112614] = 8, + [114044] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1600), 1, + ACTIONS(1685), 1, anon_sym_DOLLAR, - ACTIONS(1604), 1, + ACTIONS(1687), 1, anon_sym_LPAREN2, - STATE(1958), 1, + STATE(1524), 1, sym__immediate_decimal, - STATE(3701), 1, + STATE(3766), 1, sym_comment, - ACTIONS(3996), 2, + ACTIONS(3484), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3998), 2, + ACTIONS(3486), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1969), 2, + STATE(1307), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [112642] = 8, + [114072] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1604), 1, - anon_sym_LPAREN2, - ACTIONS(2873), 1, + ACTIONS(1601), 1, anon_sym_DOLLAR, - STATE(3702), 1, - sym_comment, - STATE(4880), 1, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + STATE(2023), 1, sym__immediate_decimal, - ACTIONS(6664), 2, + STATE(3767), 1, + sym_comment, + ACTIONS(4002), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6666), 2, + ACTIONS(4004), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(737), 2, + STATE(796), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [112670] = 4, + [114100] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3703), 1, + ACTIONS(7331), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7333), 1, + aux_sym__immediate_decimal_token5, + STATE(3768), 1, sym_comment, - ACTIONS(771), 2, + ACTIONS(739), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(773), 7, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(741), 5, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [112690] = 8, + [114124] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1600), 1, + ACTIONS(1601), 1, anon_sym_DOLLAR, - ACTIONS(1604), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, - STATE(957), 1, + STATE(1484), 1, sym__immediate_decimal, - STATE(3704), 1, + STATE(3769), 1, sym_comment, - ACTIONS(4010), 2, + ACTIONS(3438), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(4012), 2, + ACTIONS(3440), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(890), 2, + STATE(796), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [112718] = 6, - ACTIONS(3), 1, + [114152] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7057), 1, - anon_sym_DOT, - ACTIONS(7059), 1, - aux_sym__immediate_decimal_token5, - STATE(3705), 1, + STATE(3770), 1, sym_comment, - ACTIONS(747), 2, + ACTIONS(739), 3, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 5, - anon_sym_LBRACE, + 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, - [112742] = 6, + sym__entry_separator, + [114172] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7061), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7063), 1, - aux_sym__immediate_decimal_token5, - STATE(3706), 1, + ACTIONS(1685), 1, + anon_sym_DOLLAR, + ACTIONS(1687), 1, + anon_sym_LPAREN2, + STATE(1295), 1, + sym__immediate_decimal, + STATE(3771), 1, sym_comment, - ACTIONS(1772), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1770), 5, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [112766] = 6, + ACTIONS(1693), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(1728), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(1294), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [114200] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7065), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7067), 1, + ACTIONS(7335), 1, aux_sym__immediate_decimal_token5, - STATE(3707), 1, + STATE(3772), 1, sym_comment, - ACTIONS(1772), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1770), 4, + ACTIONS(1846), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [112790] = 7, + ACTIONS(1848), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [114222] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5030), 1, - anon_sym_DOT2, - STATE(2459), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2500), 1, - sym_path, - STATE(2914), 1, - sym_cell_path, - STATE(3708), 1, + STATE(3773), 1, sym_comment, - ACTIONS(1900), 5, - anon_sym_EQ, + ACTIONS(739), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(741), 7, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_GT2, anon_sym_DASH_DASH, - [112816] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3709), 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, - [112836] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7069), 1, - anon_sym_DOT, - ACTIONS(7071), 1, - aux_sym__immediate_decimal_token5, - STATE(3710), 1, - sym_comment, - ACTIONS(1746), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1744), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [112860] = 8, + [114242] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1685), 1, - anon_sym_DOLLAR, ACTIONS(1687), 1, anon_sym_LPAREN2, - STATE(1329), 1, + ACTIONS(3806), 1, + anon_sym_DOLLAR, + STATE(1306), 1, sym__immediate_decimal, - STATE(3711), 1, + STATE(3774), 1, sym_comment, ACTIONS(1693), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1758), 2, + ACTIONS(1728), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(1283), 2, + STATE(1305), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [112888] = 4, + [114270] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(3712), 1, + ACTIONS(7031), 1, + aux_sym__immediate_decimal_token5, + STATE(3775), 1, sym_comment, - ACTIONS(860), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(862), 6, + ACTIONS(1790), 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, - [112908] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3713), 1, - sym_comment, - ACTIONS(7073), 9, - anon_sym_EQ, + ACTIONS(1792), 4, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [112926] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4203), 1, anon_sym_DOT_DOT2, - ACTIONS(7075), 1, - sym_filesize_unit, - ACTIONS(7077), 1, - sym_duration_unit, - ACTIONS(7079), 1, sym__unquoted_pattern, - STATE(3714), 1, - sym_comment, - ACTIONS(4205), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(886), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [112954] = 4, + [114292] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3715), 1, + ACTIONS(7337), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7339), 1, + aux_sym__immediate_decimal_token5, + STATE(3776), 1, sym_comment, - ACTIONS(739), 2, + ACTIONS(1732), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(741), 7, + ACTIONS(1730), 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, - [112974] = 8, + [114316] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3118), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, - ACTIONS(7035), 1, + ACTIONS(2938), 1, anon_sym_DOLLAR, - STATE(3716), 1, + STATE(3777), 1, sym_comment, - STATE(4049), 1, + STATE(5069), 1, sym__immediate_decimal, - ACTIONS(6255), 2, + ACTIONS(6926), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(7081), 2, + ACTIONS(6928), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3173), 2, + STATE(796), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [113002] = 5, + [114344] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7083), 1, + ACTIONS(7341), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7343), 1, aux_sym__immediate_decimal_token5, - STATE(3717), 1, + STATE(3778), 1, sym_comment, - ACTIONS(1852), 4, - sym__space, + ACTIONS(1732), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1730), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1854), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [113024] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3942), 1, - anon_sym_DOLLAR, - ACTIONS(6349), 1, - anon_sym_LPAREN2, - STATE(3718), 1, - sym_comment, - STATE(4233), 1, - sym__immediate_decimal, - ACTIONS(6351), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(7043), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4232), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [113052] = 3, + sym__entry_separator, + [114368] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3719), 1, + STATE(3779), 1, sym_comment, - ACTIONS(7085), 9, - anon_sym_EQ, - sym__newline, - anon_sym_SEMI, + ACTIONS(767), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(769), 7, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [113070] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [114388] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3720), 1, + STATE(3780), 1, sym_comment, - ACTIONS(860), 2, + ACTIONS(863), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(862), 7, + ACTIONS(865), 7, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, @@ -234199,528 +236572,628 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [113090] = 8, + [114408] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5089), 1, + anon_sym_DOT2, + STATE(2450), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2500), 1, + sym_path, + STATE(2914), 1, + sym_cell_path, + STATE(3781), 1, + sym_comment, + ACTIONS(1883), 5, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + [114434] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5089), 1, + anon_sym_DOT2, + STATE(2450), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2500), 1, + sym_path, + STATE(2981), 1, + sym_cell_path, + STATE(3782), 1, + sym_comment, + ACTIONS(1907), 5, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + [114460] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3323), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, - ACTIONS(7087), 1, + ACTIONS(2938), 1, anon_sym_DOLLAR, - STATE(3231), 1, + STATE(795), 1, sym__immediate_decimal, - STATE(3721), 1, + STATE(3783), 1, sym_comment, - ACTIONS(5059), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(7089), 2, + ACTIONS(1611), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3230), 2, + ACTIONS(1645), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(794), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [113118] = 8, + [114488] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3948), 1, + ACTIONS(1601), 1, anon_sym_DOLLAR, - ACTIONS(6102), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, - STATE(3722), 1, - sym_comment, - STATE(4941), 1, + STATE(795), 1, sym__immediate_decimal, - ACTIONS(6485), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(7041), 2, + STATE(3784), 1, + sym_comment, + ACTIONS(1611), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4235), 2, + ACTIONS(1645), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(794), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [113146] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6747), 1, - aux_sym__immediate_decimal_token5, - STATE(3723), 1, - sym_comment, - ACTIONS(1746), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1744), 6, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [113168] = 8, + [114516] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1600), 1, + ACTIONS(1601), 1, anon_sym_DOLLAR, - ACTIONS(1604), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, - STATE(736), 1, + STATE(926), 1, sym__immediate_decimal, - STATE(3724), 1, + STATE(3785), 1, sym_comment, - ACTIONS(1610), 2, + ACTIONS(1611), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1655), 2, + ACTIONS(1645), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(735), 2, + STATE(796), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [113196] = 8, - ACTIONS(3), 1, + [114544] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1734), 1, - sym__unquoted_pattern, - ACTIONS(7091), 1, - anon_sym_DOT_DOT2, - ACTIONS(7095), 1, - sym_filesize_unit, - ACTIONS(7097), 1, - sym_duration_unit, - STATE(3725), 1, + ACTIONS(7345), 1, + aux_sym__immediate_decimal_token5, + STATE(3786), 1, sym_comment, - ACTIONS(7093), 2, + ACTIONS(1846), 4, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(886), 3, + ACTIONS(1848), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [113224] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1533), 1, - sym__entry_separator, - STATE(3726), 1, - sym_comment, - ACTIONS(1531), 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, - [113244] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(886), 1, - sym__entry_separator, - ACTIONS(6479), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6672), 1, + anon_sym_SEMI, anon_sym_DOT_DOT2, - ACTIONS(6676), 1, - sym_filesize_unit, - ACTIONS(6678), 1, - sym_duration_unit, - STATE(3727), 1, + sym__unquoted_pattern, + [114566] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3773), 1, + anon_sym_DOLLAR, + ACTIONS(6150), 1, + anon_sym_LPAREN2, + STATE(3787), 1, sym_comment, - ACTIONS(866), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6674), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [113274] = 8, + STATE(4395), 1, + sym__immediate_decimal, + ACTIONS(6743), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(7287), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4394), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [114594] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1600), 1, + ACTIONS(1601), 1, anon_sym_DOLLAR, - ACTIONS(1604), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, - STATE(914), 1, + STATE(1975), 1, sym__immediate_decimal, - STATE(3728), 1, + STATE(3788), 1, sym_comment, - ACTIONS(1610), 2, + ACTIONS(3968), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3970), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1655), 2, + STATE(1983), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [114622] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1601), 1, + anon_sym_DOLLAR, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + STATE(926), 1, + sym__immediate_decimal, + STATE(3789), 1, + sym_comment, + ACTIONS(4002), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(737), 2, + ACTIONS(4004), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(796), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [113302] = 5, + [114650] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6995), 1, + ACTIONS(6975), 1, aux_sym__immediate_decimal_token5, - STATE(3729), 1, + STATE(3790), 1, sym_comment, - ACTIONS(1744), 4, + ACTIONS(1790), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1746), 4, + ACTIONS(1792), 4, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - [113324] = 4, + [114672] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1537), 1, - sym__entry_separator, - STATE(3730), 1, + ACTIONS(7347), 1, + aux_sym__immediate_decimal_token5, + STATE(3791), 1, sym_comment, - ACTIONS(1535), 8, - anon_sym_COLON, + ACTIONS(1846), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1848), 4, anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [113344] = 4, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [114694] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1541), 1, - sym__entry_separator, - STATE(3731), 1, + STATE(3792), 1, sym_comment, - ACTIONS(1539), 8, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT2, + ACTIONS(767), 3, anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [113364] = 8, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(769), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [114714] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1685), 1, anon_sym_DOLLAR, ACTIONS(1687), 1, anon_sym_LPAREN2, - STATE(1284), 1, + STATE(1306), 1, sym__immediate_decimal, - STATE(3732), 1, + STATE(3793), 1, sym_comment, ACTIONS(1693), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1758), 2, + ACTIONS(1728), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(1333), 2, + STATE(1305), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [113392] = 8, + [114742] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3323), 1, - anon_sym_LPAREN2, - ACTIONS(7087), 1, + ACTIONS(1685), 1, anon_sym_DOLLAR, - STATE(3019), 1, + ACTIONS(1687), 1, + anon_sym_LPAREN2, + STATE(1309), 1, sym__immediate_decimal, - STATE(3733), 1, + STATE(3794), 1, sym_comment, - ACTIONS(4988), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(7099), 2, + ACTIONS(1693), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3232), 2, + ACTIONS(1728), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(1307), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [113420] = 4, - ACTIONS(3), 1, + [114770] = 9, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3734), 1, + ACTIONS(968), 1, + sym__entry_separator, + ACTIONS(6659), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6916), 1, + anon_sym_DOT_DOT2, + ACTIONS(6920), 1, + sym_filesize_unit, + ACTIONS(6922), 1, + sym_duration_unit, + STATE(3795), 1, sym_comment, - ACTIONS(739), 2, + ACTIONS(847), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6918), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [114800] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7349), 1, + anon_sym_DOT, + ACTIONS(7351), 1, + aux_sym__immediate_decimal_token5, + STATE(3796), 1, + sym_comment, + ACTIONS(1792), 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(1790), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [113440] = 8, + sym__entry_separator, + [114824] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1604), 1, + ACTIONS(3141), 1, anon_sym_LPAREN2, - ACTIONS(2873), 1, + ACTIONS(7289), 1, anon_sym_DOLLAR, - STATE(736), 1, + STATE(3309), 1, sym__immediate_decimal, - STATE(3735), 1, + STATE(3797), 1, sym_comment, - ACTIONS(5907), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(6243), 2, + ACTIONS(5041), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(735), 2, + ACTIONS(7353), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3308), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [113468] = 6, + [114852] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7101), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7103), 1, - aux_sym__immediate_decimal_token5, - STATE(3736), 1, + STATE(3798), 1, sym_comment, - ACTIONS(739), 2, + ACTIONS(767), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(741), 5, - anon_sym_LBRACE, + ACTIONS(769), 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, - [113492] = 4, + [114872] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3737), 1, + STATE(3799), 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(863), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(865), 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, - [113512] = 8, + [114892] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1685), 1, anon_sym_DOLLAR, ACTIONS(1687), 1, anon_sym_LPAREN2, - STATE(1074), 1, + STATE(936), 1, sym__immediate_decimal, - STATE(3738), 1, + STATE(3800), 1, sym_comment, - ACTIONS(1697), 2, + ACTIONS(1691), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(1699), 2, + ACTIONS(1693), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1283), 2, + STATE(962), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [113540] = 6, + [114920] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7105), 1, - anon_sym_DOT, - ACTIONS(7107), 1, + ACTIONS(5089), 1, + anon_sym_DOT2, + STATE(2450), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2500), 1, + sym_path, + STATE(2941), 1, + sym_cell_path, + STATE(3801), 1, + sym_comment, + ACTIONS(1887), 5, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + [114946] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7011), 1, aux_sym__immediate_decimal_token5, - STATE(3739), 1, + STATE(3802), 1, sym_comment, - ACTIONS(747), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(749), 4, + ACTIONS(1790), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [113563] = 6, + sym__entry_separator, + ACTIONS(1792), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [114968] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1983), 1, - sym__unquoted_pattern, - ACTIONS(7109), 1, - anon_sym_DOT_DOT2, - STATE(3740), 1, + ACTIONS(7357), 1, + anon_sym_DASH2, + STATE(3803), 1, sym_comment, - ACTIONS(7111), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1973), 4, - anon_sym_if, + ACTIONS(7355), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [114987] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7361), 1, + anon_sym_DOT2, + STATE(2586), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2851), 1, + sym_path, + STATE(3052), 1, + sym_cell_path, + STATE(3804), 1, + sym_comment, + ACTIONS(7359), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [115012] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7363), 1, + aux_sym__immediate_decimal_token5, + STATE(3805), 1, + sym_comment, + ACTIONS(1848), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1846), 5, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [113586] = 7, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [115033] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5010), 1, + ACTIONS(5016), 1, anon_sym_DOT2, STATE(458), 1, sym_path, - STATE(2323), 1, + STATE(2298), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(3741), 1, + STATE(3806), 1, sym_comment, - STATE(4270), 1, + STATE(4343), 1, sym_cell_path, - ACTIONS(7113), 4, + ACTIONS(7365), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [113611] = 4, + [115058] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3742), 1, + STATE(3807), 1, sym_comment, - ACTIONS(1770), 4, + ACTIONS(1895), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1772), 4, + ACTIONS(1897), 4, anon_sym_RBRACK, - anon_sym_DOT_DOT, + anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - [113630] = 4, + [115077] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3743), 1, + STATE(3808), 1, sym_comment, - ACTIONS(1870), 4, + ACTIONS(1730), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1872), 4, + ACTIONS(1732), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - [113649] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7115), 1, - aux_sym__immediate_decimal_token5, - STATE(3744), 1, - sym_comment, - ACTIONS(1854), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1852), 5, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [113670] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3745), 1, - sym_comment, - ACTIONS(1872), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1870), 6, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [113689] = 7, + [115096] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1866), 1, + ACTIONS(1877), 1, anon_sym_DOT2, - STATE(427), 1, + STATE(428), 1, aux_sym__where_predicate_lhs_repeat1, STATE(458), 1, sym_path, - STATE(954), 1, + STATE(934), 1, sym_cell_path, - STATE(3746), 1, + STATE(3809), 1, sym_comment, - ACTIONS(7117), 4, + ACTIONS(7367), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [113714] = 7, + [115121] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5010), 1, + ACTIONS(5016), 1, anon_sym_DOT2, STATE(458), 1, sym_path, - STATE(954), 1, + STATE(934), 1, sym_cell_path, - STATE(2323), 1, + STATE(2298), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(3747), 1, + STATE(3810), 1, sym_comment, - ACTIONS(7119), 4, + ACTIONS(7369), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [113739] = 5, + [115146] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7071), 1, - aux_sym__immediate_decimal_token5, - STATE(3748), 1, + ACTIONS(1885), 1, + sym__table_head_separator, + ACTIONS(7374), 1, + anon_sym_DOT_DOT, + ACTIONS(7376), 1, + anon_sym_DOT2, + STATE(3811), 1, sym_comment, - ACTIONS(1746), 3, - anon_sym_RBRACE, + STATE(4133), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4582), 1, + sym_path, + STATE(4665), 1, + sym_cell_path, + ACTIONS(7371), 2, + anon_sym_RBRACK, + sym__entry_separator, + [115175] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3812), 1, + sym_comment, + ACTIONS(1848), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1744), 4, - anon_sym_LPAREN2, + sym__unquoted_pattern, + ACTIONS(1846), 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, - [113760] = 7, + [115194] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7123), 1, + ACTIONS(1877), 1, anon_sym_DOT2, - STATE(2622), 1, + STATE(428), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2871), 1, + STATE(458), 1, sym_path, - STATE(3105), 1, + STATE(934), 1, sym_cell_path, - STATE(3749), 1, + STATE(3813), 1, sym_comment, - ACTIONS(7121), 4, + ACTIONS(7378), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [113785] = 5, + [115219] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7059), 1, + ACTIONS(7382), 1, + anon_sym_DOT2, + STATE(1941), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2050), 1, + sym_path, + STATE(2171), 1, + sym_cell_path, + STATE(3814), 1, + sym_comment, + ACTIONS(7380), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [115244] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7307), 1, aux_sym__immediate_decimal_token5, - STATE(3750), 1, + STATE(3815), 1, sym_comment, ACTIONS(747), 2, anon_sym_DOT_DOT2, @@ -234731,2215 +237204,2309 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [113806] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1635), 1, - sym__unquoted_pattern, - ACTIONS(1956), 1, - sym__space, - ACTIONS(1960), 1, - anon_sym_LPAREN2, - ACTIONS(7125), 1, - anon_sym_DOT_DOT2, - STATE(3751), 1, - sym_comment, - ACTIONS(1958), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(7127), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [113833] = 8, + [115265] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1973), 1, + ACTIONS(1637), 1, + sym__unquoted_pattern_in_list, + ACTIONS(1972), 1, sym__entry_separator, - ACTIONS(1977), 1, + ACTIONS(1976), 1, anon_sym_LPAREN2, - ACTIONS(1983), 1, - sym__unquoted_pattern_in_list, - ACTIONS(7129), 1, + ACTIONS(7384), 1, anon_sym_DOT_DOT2, - STATE(3752), 1, + STATE(3816), 1, sym_comment, - ACTIONS(1975), 2, + ACTIONS(1974), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(7131), 2, + ACTIONS(7386), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [113860] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1902), 1, - sym__table_head_separator, - ACTIONS(7135), 1, - anon_sym_DOT2, - STATE(3753), 1, - sym_comment, - STATE(4261), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4812), 1, - sym_path, - STATE(5000), 1, - sym_cell_path, - ACTIONS(7133), 3, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - sym__entry_separator, - [113887] = 7, + [115292] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7139), 1, + ACTIONS(7390), 1, anon_sym_DOT2, - STATE(2516), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2689), 1, + STATE(352), 1, sym_path, - STATE(3248), 1, - sym_cell_path, - STATE(3754), 1, + STATE(3817), 1, sym_comment, - ACTIONS(7137), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [113912] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2280), 1, - anon_sym_DOT2, - STATE(622), 1, + STATE(4013), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(720), 1, - sym_path, - STATE(1318), 1, + STATE(4905), 1, sym_cell_path, - STATE(3755), 1, - sym_comment, - ACTIONS(7141), 4, + ACTIONS(7388), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [113937] = 4, + [115317] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3756), 1, + STATE(3818), 1, sym_comment, - ACTIONS(1770), 4, + ACTIONS(1730), 4, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1772), 4, + ACTIONS(1732), 4, sym__newline, anon_sym_SEMI, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [113956] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3757), 1, - sym_comment, - ACTIONS(1854), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1852), 6, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [113975] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1458), 1, - sym__entry_separator, - ACTIONS(7143), 1, - anon_sym_QMARK2, - ACTIONS(7145), 1, - anon_sym_BANG, - STATE(3758), 1, - sym_comment, - STATE(4192), 1, - sym__path_suffix, - ACTIONS(1456), 4, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_DOT_DOT, - anon_sym_DOT2, - [114000] = 4, + [115336] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(3759), 1, + ACTIONS(7351), 1, + aux_sym__immediate_decimal_token5, + STATE(3819), 1, sym_comment, - ACTIONS(1852), 4, + ACTIONS(1792), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1790), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1854), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [114019] = 4, + [115357] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3760), 1, + STATE(3820), 1, sym_comment, - ACTIONS(1870), 4, + ACTIONS(1846), 4, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1872), 4, + ACTIONS(1848), 4, sym__newline, anon_sym_SEMI, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [114038] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7149), 1, - anon_sym_DASH2, - STATE(3761), 1, - sym_comment, - ACTIONS(7147), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [114057] = 7, + [115376] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1866), 1, + ACTIONS(7394), 1, anon_sym_DOT2, - STATE(427), 1, + STATE(2482), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(458), 1, + STATE(2642), 1, sym_path, - STATE(954), 1, + STATE(3231), 1, sym_cell_path, - STATE(3762), 1, + STATE(3821), 1, sym_comment, - ACTIONS(7151), 4, + ACTIONS(7392), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [114082] = 6, - ACTIONS(3), 1, + [115401] = 10, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7153), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7155), 1, - aux_sym__immediate_decimal_token5, - STATE(3763), 1, + ACTIONS(2754), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2756), 1, + anon_sym_COLON2, + ACTIONS(7396), 1, + anon_sym_alias, + ACTIONS(7398), 1, + anon_sym_const, + ACTIONS(7400), 1, + anon_sym_def, + ACTIONS(7402), 1, + anon_sym_use, + ACTIONS(7404), 1, + anon_sym_extern, + ACTIONS(7406), 1, + anon_sym_module, + STATE(3822), 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, - [114105] = 7, + [115432] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1444), 1, + sym__entry_separator, + ACTIONS(7408), 1, + anon_sym_QMARK2, + ACTIONS(7410), 1, + anon_sym_BANG, + STATE(3823), 1, + sym_comment, + STATE(4208), 1, + sym__path_suffix, + ACTIONS(1442), 4, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_DOT_DOT, + anon_sym_DOT2, + [115457] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1866), 1, + ACTIONS(7414), 1, anon_sym_DOT2, - STATE(427), 1, + STATE(2554), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(458), 1, + STATE(2676), 1, sym_path, - STATE(954), 1, + STATE(3274), 1, sym_cell_path, - STATE(3764), 1, + STATE(3824), 1, sym_comment, - ACTIONS(7157), 4, + ACTIONS(7412), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [114130] = 5, + [115482] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7159), 1, - aux_sym__immediate_decimal_token5, - STATE(3765), 1, + STATE(3825), 1, sym_comment, - ACTIONS(1854), 3, - anon_sym_RBRACE, + ACTIONS(1895), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1897), 4, + sym__newline, + anon_sym_SEMI, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1852), 4, + sym__unquoted_pattern, + [115501] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3826), 1, + sym_comment, + ACTIONS(1730), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [114151] = 7, + ACTIONS(1732), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [115520] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5010), 1, + ACTIONS(1877), 1, anon_sym_DOT2, + STATE(428), 1, + aux_sym__where_predicate_lhs_repeat1, STATE(458), 1, sym_path, - STATE(2323), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3766), 1, - sym_comment, - STATE(4341), 1, + STATE(934), 1, sym_cell_path, - ACTIONS(7161), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [114176] = 5, + STATE(3827), 1, + sym_comment, + ACTIONS(7416), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [115545] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7033), 1, - aux_sym__immediate_decimal_token5, - STATE(3767), 1, + ACTIONS(5089), 1, + anon_sym_DOT2, + STATE(2450), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2500), 1, + sym_path, + STATE(3052), 1, + sym_cell_path, + STATE(3828), 1, sym_comment, - ACTIONS(1746), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1744), 5, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [114197] = 4, + ACTIONS(7418), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [115570] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3768), 1, + STATE(3829), 1, sym_comment, - ACTIONS(1870), 4, + ACTIONS(1846), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1872), 4, + ACTIONS(1848), 4, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - [114216] = 4, + [115589] = 8, ACTIONS(103), 1, anon_sym_POUND, - STATE(3769), 1, - sym_comment, - ACTIONS(1770), 4, + ACTIONS(1982), 1, + sym__entry_separator, + ACTIONS(1986), 1, anon_sym_LPAREN2, + ACTIONS(1992), 1, + sym__unquoted_pattern_in_list, + ACTIONS(7420), 1, + anon_sym_DOT_DOT2, + STATE(3830), 1, + sym_comment, + ACTIONS(1984), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(7422), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1772), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [114235] = 4, + [115616] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3770), 1, + STATE(3831), 1, sym_comment, - ACTIONS(1852), 4, + ACTIONS(1895), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1854), 4, + ACTIONS(1897), 4, anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - [114254] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1635), 1, - sym__unquoted_pattern, - ACTIONS(7163), 1, - anon_sym_DOT_DOT2, - STATE(3771), 1, - sym_comment, - ACTIONS(7165), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1956), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [114277] = 7, + [115635] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2280), 1, + ACTIONS(2358), 1, anon_sym_DOT2, - STATE(622), 1, + STATE(526), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(720), 1, + STATE(715), 1, sym_path, - STATE(1318), 1, + STATE(1317), 1, sym_cell_path, - STATE(3772), 1, + STATE(3832), 1, sym_comment, - ACTIONS(7167), 4, + ACTIONS(7424), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [114302] = 9, - ACTIONS(103), 1, + [115660] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1902), 1, - sym__table_head_separator, - ACTIONS(7133), 1, - anon_sym_DOT_DOT, - ACTIONS(7172), 1, - anon_sym_DOT2, - STATE(3773), 1, + STATE(3833), 1, sym_comment, - STATE(3910), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4272), 1, - sym_path, - STATE(4655), 1, - sym_cell_path, - ACTIONS(7169), 2, - anon_sym_RBRACK, - sym__entry_separator, - [114331] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1635), 1, - sym__unquoted_pattern_in_list, - ACTIONS(1956), 1, - sym__entry_separator, - ACTIONS(1960), 1, - anon_sym_LPAREN2, - ACTIONS(7174), 1, + ACTIONS(1732), 2, anon_sym_DOT_DOT2, - STATE(3774), 1, - sym_comment, - ACTIONS(1958), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(7176), 2, + sym__unquoted_pattern, + ACTIONS(1730), 6, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [114358] = 7, + [115679] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7180), 1, + ACTIONS(5016), 1, anon_sym_DOT2, - STATE(1990), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2158), 1, + STATE(458), 1, sym_path, - STATE(2211), 1, - sym_cell_path, - STATE(3775), 1, - sym_comment, - ACTIONS(7178), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [114383] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7184), 1, - anon_sym_DOT2, - STATE(2466), 1, + STATE(2298), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2583), 1, - sym_path, - STATE(3199), 1, - sym_cell_path, - STATE(3776), 1, + STATE(3834), 1, sym_comment, - ACTIONS(7182), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [114408] = 5, + STATE(4627), 1, + sym_cell_path, + ACTIONS(7426), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [115704] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7186), 1, - aux_sym__immediate_decimal_token5, - STATE(3777), 1, - sym_comment, - ACTIONS(771), 2, - anon_sym_DOT_DOT2, + ACTIONS(1637), 1, sym__unquoted_pattern, - ACTIONS(773), 5, - anon_sym_LBRACE, + ACTIONS(7428), 1, + anon_sym_DOT_DOT2, + STATE(3835), 1, + sym_comment, + ACTIONS(7430), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [114429] = 7, + ACTIONS(1972), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [115727] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5030), 1, + ACTIONS(5231), 1, anon_sym_DOT2, - STATE(2459), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2500), 1, + STATE(715), 1, sym_path, - STATE(3105), 1, + STATE(1317), 1, sym_cell_path, - STATE(3778), 1, + STATE(2409), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3836), 1, sym_comment, - ACTIONS(7188), 4, + ACTIONS(7432), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [114454] = 10, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2682), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2684), 1, - anon_sym_COLON2, - ACTIONS(7190), 1, - anon_sym_alias, - ACTIONS(7192), 1, - anon_sym_const, - ACTIONS(7194), 1, - anon_sym_def, - ACTIONS(7196), 1, - anon_sym_use, - ACTIONS(7198), 1, - anon_sym_extern, - ACTIONS(7200), 1, - anon_sym_module, - STATE(3779), 1, - sym_comment, - [114485] = 8, + [115752] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1973), 1, + ACTIONS(1637), 1, + sym__unquoted_pattern, + ACTIONS(1972), 1, sym__space, - ACTIONS(1977), 1, + ACTIONS(1976), 1, anon_sym_LPAREN2, - ACTIONS(1983), 1, - sym__unquoted_pattern, - ACTIONS(7202), 1, + ACTIONS(7434), 1, anon_sym_DOT_DOT2, - STATE(3780), 1, + STATE(3837), 1, sym_comment, - ACTIONS(1975), 2, + ACTIONS(1974), 2, sym__newline, anon_sym_SEMI, - ACTIONS(7204), 2, + ACTIONS(7436), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [115779] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7438), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7440), 1, + aux_sym__immediate_decimal_token5, + STATE(3838), 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, - [114512] = 8, + sym_filesize_unit, + sym_duration_unit, + [115802] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1444), 1, - sym__entry_separator, - ACTIONS(7206), 1, + ACTIONS(1885), 1, + sym__table_head_separator, + ACTIONS(7442), 1, anon_sym_DOT2, - STATE(3781), 1, + STATE(3839), 1, sym_comment, - STATE(3813), 1, + STATE(4354), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4188), 1, + STATE(4916), 1, sym_path, - STATE(4248), 1, + STATE(5246), 1, sym_cell_path, - ACTIONS(1442), 3, + ACTIONS(7374), 3, anon_sym_RBRACK, - anon_sym_GT2, anon_sym_DOT_DOT, - [114539] = 4, + sym__entry_separator, + [115829] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3782), 1, + STATE(3840), 1, sym_comment, - ACTIONS(1772), 2, + ACTIONS(1897), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1770), 6, + ACTIONS(1895), 6, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [114558] = 4, + [115848] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3783), 1, + STATE(3841), 1, sym_comment, - ACTIONS(1852), 4, - sym__space, + ACTIONS(1846), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1854), 4, + sym__entry_separator, + ACTIONS(1848), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [115867] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7317), 1, + aux_sym__immediate_decimal_token5, + STATE(3842), 1, + sym_comment, + ACTIONS(1792), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1790), 5, sym__newline, - anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [115888] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7444), 1, + aux_sym__immediate_decimal_token5, + STATE(3843), 1, + sym_comment, + ACTIONS(1848), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1846), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [115909] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7446), 1, + anon_sym_DOT, + ACTIONS(7448), 1, + aux_sym__immediate_decimal_token5, + STATE(3844), 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, + [115932] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1982), 1, + sym__space, + ACTIONS(1986), 1, + anon_sym_LPAREN2, + ACTIONS(1992), 1, sym__unquoted_pattern, - [114577] = 7, + ACTIONS(7450), 1, + anon_sym_DOT_DOT2, + STATE(3845), 1, + sym_comment, + ACTIONS(1984), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(7452), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [115959] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7210), 1, + ACTIONS(7454), 1, + aux_sym__immediate_decimal_token5, + STATE(3846), 1, + sym_comment, + ACTIONS(767), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(769), 5, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [115980] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1456), 1, + sym__entry_separator, + ACTIONS(7456), 1, anon_sym_DOT2, - STATE(360), 1, - sym_path, - STATE(3784), 1, + STATE(3847), 1, sym_comment, - STATE(3924), 1, + STATE(3903), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4572), 1, + STATE(4313), 1, + sym_path, + STATE(4574), 1, sym_cell_path, - ACTIONS(7208), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [114602] = 7, + ACTIONS(1454), 3, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_DOT_DOT, + [116007] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5237), 1, + ACTIONS(1992), 1, + sym__unquoted_pattern, + ACTIONS(7458), 1, + anon_sym_DOT_DOT2, + STATE(3848), 1, + sym_comment, + ACTIONS(7460), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1982), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [116030] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2358), 1, anon_sym_DOT2, - STATE(720), 1, + STATE(526), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(715), 1, sym_path, - STATE(1318), 1, + STATE(1317), 1, sym_cell_path, - STATE(2414), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3785), 1, + STATE(3849), 1, sym_comment, - ACTIONS(7212), 4, + ACTIONS(7462), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [114627] = 4, + [116055] = 8, ACTIONS(103), 1, anon_sym_POUND, - STATE(3786), 1, + ACTIONS(968), 1, + sym__entry_separator, + ACTIONS(6659), 1, + sym__unquoted_pattern_in_list, + ACTIONS(7013), 1, + anon_sym_DOT_DOT2, + ACTIONS(7017), 1, + sym_filesize_unit, + ACTIONS(7019), 1, + sym_duration_unit, + STATE(3850), 1, + sym_comment, + ACTIONS(7015), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [116081] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3851), 1, sym_comment, - ACTIONS(1645), 3, + ACTIONS(1903), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1647), 4, + ACTIONS(1905), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - [114645] = 9, + [116099] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1891), 1, + sym__entry_separator, + ACTIONS(7464), 1, + anon_sym_DOT2, + STATE(352), 1, + sym_path, + STATE(3852), 1, + sym_comment, + STATE(4013), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4386), 1, + sym_cell_path, + ACTIONS(1893), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [116125] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7214), 1, + ACTIONS(7466), 1, anon_sym_LBRACK, - ACTIONS(7216), 1, + ACTIONS(7468), 1, anon_sym_LPAREN, - ACTIONS(7218), 1, + ACTIONS(7470), 1, anon_sym_DASH_DASH, - STATE(1562), 1, - sym_parameter_parens, - STATE(1563), 1, + STATE(1567), 1, sym_parameter_bracks, - STATE(3787), 1, + STATE(1608), 1, + sym_parameter_parens, + STATE(3853), 1, sym_comment, - STATE(4098), 1, + STATE(3860), 1, aux_sym_decl_def_repeat1, - STATE(4582), 1, + STATE(4670), 1, sym_long_flag, - [114673] = 8, - ACTIONS(103), 1, + [116153] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1635), 1, - sym__unquoted_pattern_in_record, - ACTIONS(1956), 1, - sym__entry_separator, - ACTIONS(1958), 1, - anon_sym_RBRACE, - ACTIONS(1960), 1, - anon_sym_LPAREN2, - ACTIONS(7220), 1, - anon_sym_DOT_DOT2, - STATE(3788), 1, + ACTIONS(7466), 1, + anon_sym_LBRACK, + ACTIONS(7468), 1, + anon_sym_LPAREN, + ACTIONS(7470), 1, + anon_sym_DASH_DASH, + STATE(1642), 1, + sym_parameter_parens, + STATE(1644), 1, + sym_parameter_bracks, + STATE(3854), 1, sym_comment, - ACTIONS(7222), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [114699] = 9, + STATE(4312), 1, + aux_sym_decl_def_repeat1, + STATE(4670), 1, + sym_long_flag, + [116181] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7214), 1, + ACTIONS(7466), 1, anon_sym_LBRACK, - ACTIONS(7216), 1, + ACTIONS(7468), 1, anon_sym_LPAREN, - ACTIONS(7218), 1, + ACTIONS(7470), 1, anon_sym_DASH_DASH, - STATE(1564), 1, + STATE(1677), 1, sym_parameter_parens, - STATE(1565), 1, + STATE(1692), 1, sym_parameter_bracks, - STATE(3789), 1, + STATE(3855), 1, sym_comment, - STATE(3797), 1, + STATE(3862), 1, aux_sym_decl_def_repeat1, - STATE(4582), 1, + STATE(4670), 1, sym_long_flag, - [114727] = 9, + [116209] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2555), 1, + ACTIONS(2594), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7190), 1, + ACTIONS(7396), 1, anon_sym_alias, - ACTIONS(7192), 1, + ACTIONS(7398), 1, anon_sym_const, - ACTIONS(7194), 1, + ACTIONS(7400), 1, anon_sym_def, - ACTIONS(7196), 1, + ACTIONS(7402), 1, anon_sym_use, - ACTIONS(7198), 1, + ACTIONS(7404), 1, anon_sym_extern, - ACTIONS(7200), 1, + ACTIONS(7406), 1, anon_sym_module, - STATE(3790), 1, - sym_comment, - [114755] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7224), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7226), 1, - aux_sym__immediate_decimal_token5, - STATE(3791), 1, + STATE(3856), 1, sym_comment, - ACTIONS(1770), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1772), 3, - sym__newline, - anon_sym_SEMI, - sym__unquoted_pattern, - [114777] = 8, + [116237] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(866), 1, - anon_sym_RBRACE, - ACTIONS(886), 1, + ACTIONS(1982), 1, sym__entry_separator, - ACTIONS(7228), 1, + ACTIONS(1984), 1, + anon_sym_RBRACE, + ACTIONS(1986), 1, + anon_sym_LPAREN2, + ACTIONS(1992), 1, + sym__unquoted_pattern_in_record, + ACTIONS(7472), 1, anon_sym_DOT_DOT2, - ACTIONS(7232), 1, - sym_filesize_unit, - ACTIONS(7234), 1, - sym_duration_unit, - STATE(3792), 1, + STATE(3857), 1, sym_comment, - ACTIONS(7230), 2, + ACTIONS(7474), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [114803] = 8, + [116263] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7161), 1, - sym__entry_separator, - ACTIONS(7206), 1, - anon_sym_DOT2, - STATE(3793), 1, + ACTIONS(2754), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2756), 1, + anon_sym_COLON2, + ACTIONS(7476), 1, + sym_identifier, + ACTIONS(7478), 1, + anon_sym_DOLLAR, + STATE(2788), 1, + sym_val_variable, + STATE(3858), 1, sym_comment, - STATE(3813), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4188), 1, - sym_path, - STATE(4593), 1, - sym_cell_path, - ACTIONS(7236), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [114829] = 9, + STATE(4196), 1, + sym__variable_name, + STATE(4388), 1, + sym__assignment_pattern, + [116291] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7214), 1, + ACTIONS(7466), 1, anon_sym_LBRACK, - ACTIONS(7216), 1, + ACTIONS(7468), 1, anon_sym_LPAREN, - ACTIONS(7218), 1, + ACTIONS(7470), 1, anon_sym_DASH_DASH, - STATE(1533), 1, - sym_parameter_parens, - STATE(1534), 1, + STATE(1634), 1, sym_parameter_bracks, - STATE(3794), 1, + STATE(1684), 1, + sym_parameter_parens, + STATE(3859), 1, sym_comment, - STATE(4098), 1, + STATE(3895), 1, aux_sym_decl_def_repeat1, - STATE(4582), 1, + STATE(4670), 1, sym_long_flag, - [114857] = 9, + [116319] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7214), 1, + ACTIONS(7466), 1, anon_sym_LBRACK, - ACTIONS(7216), 1, + ACTIONS(7468), 1, anon_sym_LPAREN, - ACTIONS(7218), 1, + ACTIONS(7470), 1, anon_sym_DASH_DASH, - STATE(1535), 1, + STATE(1565), 1, sym_parameter_parens, - STATE(1536), 1, + STATE(1617), 1, sym_parameter_bracks, - STATE(3795), 1, + STATE(3860), 1, sym_comment, - STATE(3877), 1, + STATE(4312), 1, aux_sym_decl_def_repeat1, - STATE(4582), 1, + STATE(4670), 1, sym_long_flag, - [114885] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1772), 1, - sym__unquoted_pattern, - ACTIONS(7238), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7240), 1, - aux_sym__immediate_decimal_token5, - STATE(3796), 1, - sym_comment, - ACTIONS(1770), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [114907] = 9, + [116347] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7214), 1, + ACTIONS(7466), 1, anon_sym_LBRACK, - ACTIONS(7216), 1, + ACTIONS(7468), 1, anon_sym_LPAREN, - ACTIONS(7218), 1, + ACTIONS(7470), 1, anon_sym_DASH_DASH, - STATE(1566), 1, + STATE(1639), 1, sym_parameter_parens, - STATE(1567), 1, + STATE(1640), 1, sym_parameter_bracks, - STATE(3797), 1, + STATE(3861), 1, sym_comment, - STATE(4098), 1, + STATE(3866), 1, aux_sym_decl_def_repeat1, - STATE(4582), 1, + STATE(4670), 1, sym_long_flag, - [114935] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3798), 1, - sym_comment, - ACTIONS(1878), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1880), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - [114953] = 9, + [116375] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3946), 1, + ACTIONS(7466), 1, anon_sym_LBRACK, - ACTIONS(3990), 1, - sym__newline, - ACTIONS(7242), 1, - anon_sym_RBRACK, - STATE(3799), 1, + ACTIONS(7468), 1, + anon_sym_LPAREN, + ACTIONS(7470), 1, + anon_sym_DASH_DASH, + STATE(1643), 1, + sym_parameter_parens, + STATE(1665), 1, + sym_parameter_bracks, + STATE(3862), 1, sym_comment, - STATE(4190), 1, - aux_sym__types_body_repeat1, - STATE(4694), 1, - sym_val_list, - STATE(4769), 1, - aux_sym__table_body_repeat1, - STATE(5319), 1, - sym__table_body, - [114981] = 7, + STATE(4312), 1, + aux_sym_decl_def_repeat1, + STATE(4670), 1, + sym_long_flag, + [116403] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1635), 1, - sym__unquoted_pattern, - ACTIONS(7244), 1, - anon_sym_DOT, - STATE(3800), 1, - sym_comment, - STATE(4430), 1, - sym__immediate_decimal, - ACTIONS(6497), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6499), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [115005] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7246), 1, - anon_sym_QMARK2, - ACTIONS(7248), 1, - anon_sym_BANG, - STATE(3801), 1, - sym_comment, - STATE(4348), 1, - sym__path_suffix, - ACTIONS(1456), 4, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, + ACTIONS(5089), 1, anon_sym_DOT2, - [115027] = 9, + STATE(2450), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2500), 1, + sym_path, + STATE(3063), 1, + sym_cell_path, + STATE(3863), 1, + sym_comment, + ACTIONS(1891), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [116427] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3946), 1, - anon_sym_LBRACK, - ACTIONS(3990), 1, - sym__newline, - ACTIONS(7250), 1, - anon_sym_RBRACK, - STATE(3802), 1, + ACTIONS(5089), 1, + anon_sym_DOT2, + STATE(2450), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2500), 1, + sym_path, + STATE(3004), 1, + sym_cell_path, + STATE(3864), 1, sym_comment, - STATE(4190), 1, - aux_sym__types_body_repeat1, - STATE(4694), 1, - sym_val_list, - STATE(4769), 1, - aux_sym__table_body_repeat1, - STATE(5152), 1, - sym__table_body, - [115055] = 9, + ACTIONS(1871), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [116451] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7214), 1, + ACTIONS(7466), 1, anon_sym_LBRACK, - ACTIONS(7216), 1, + ACTIONS(7468), 1, anon_sym_LPAREN, - ACTIONS(7218), 1, + ACTIONS(7470), 1, anon_sym_DASH_DASH, - STATE(1558), 1, + STATE(1670), 1, sym_parameter_parens, - STATE(1559), 1, + STATE(1671), 1, sym_parameter_bracks, - STATE(3787), 1, - aux_sym_decl_def_repeat1, - STATE(3803), 1, + STATE(3865), 1, sym_comment, - STATE(4582), 1, + STATE(3870), 1, + aux_sym_decl_def_repeat1, + STATE(4670), 1, sym_long_flag, - [115083] = 7, + [116479] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1635), 1, - sym__unquoted_pattern_in_record, - ACTIONS(7252), 1, - anon_sym_DOT, - STATE(3804), 1, - sym_comment, - STATE(4482), 1, - sym__immediate_decimal, - ACTIONS(7254), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(7256), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [115107] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3805), 1, - sym_comment, - ACTIONS(1772), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1770), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [115125] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1444), 1, - sym__entry_separator, - ACTIONS(7258), 1, - anon_sym_DOT2, - STATE(360), 1, - sym_path, - STATE(372), 1, - sym_cell_path, - STATE(3806), 1, + ACTIONS(7466), 1, + anon_sym_LBRACK, + ACTIONS(7468), 1, + anon_sym_LPAREN, + ACTIONS(7470), 1, + anon_sym_DASH_DASH, + STATE(1674), 1, + sym_parameter_parens, + STATE(1676), 1, + sym_parameter_bracks, + STATE(3866), 1, sym_comment, - STATE(3924), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1442), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [115151] = 8, + STATE(4312), 1, + aux_sym_decl_def_repeat1, + STATE(4670), 1, + sym_long_flag, + [116507] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(886), 1, - anon_sym_LBRACE, - ACTIONS(1734), 1, - sym__unquoted_pattern, - ACTIONS(7260), 1, - anon_sym_DOT_DOT2, - ACTIONS(7264), 1, - sym_filesize_unit, - ACTIONS(7266), 1, - sym_duration_unit, - STATE(3807), 1, + STATE(3867), 1, sym_comment, - ACTIONS(7262), 2, + ACTIONS(767), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(769), 5, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [115177] = 5, + sym_filesize_unit, + sym_duration_unit, + [116525] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7270), 1, + ACTIONS(1992), 1, + sym__unquoted_pattern, + ACTIONS(7480), 1, anon_sym_DOT_DOT2, - STATE(3808), 1, + STATE(3868), 1, sym_comment, - ACTIONS(7272), 2, + ACTIONS(7482), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7268), 4, - anon_sym_if, + ACTIONS(1982), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [115197] = 7, + [116547] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5030), 1, - anon_sym_DOT2, - STATE(2459), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2500), 1, - sym_path, - STATE(2937), 1, - sym_cell_path, - STATE(3809), 1, + ACTIONS(3771), 1, + anon_sym_LBRACK, + ACTIONS(3958), 1, + sym__newline, + ACTIONS(7484), 1, + anon_sym_RBRACK, + STATE(3869), 1, sym_comment, - ACTIONS(1882), 3, + STATE(4207), 1, + aux_sym__types_body_repeat1, + STATE(4719), 1, + sym_val_list, + STATE(4730), 1, + aux_sym__table_body_repeat1, + STATE(5273), 1, + sym__table_body, + [116575] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7466), 1, anon_sym_LBRACK, + ACTIONS(7468), 1, anon_sym_LPAREN, + ACTIONS(7470), 1, anon_sym_DASH_DASH, - [115221] = 4, - ACTIONS(103), 1, + STATE(1680), 1, + sym_parameter_parens, + STATE(1681), 1, + sym_parameter_bracks, + STATE(3870), 1, + sym_comment, + STATE(4312), 1, + aux_sym_decl_def_repeat1, + STATE(4670), 1, + sym_long_flag, + [116603] = 9, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3810), 1, + ACTIONS(7466), 1, + anon_sym_LBRACK, + ACTIONS(7468), 1, + anon_sym_LPAREN, + ACTIONS(7470), 1, + anon_sym_DASH_DASH, + STATE(1682), 1, + sym_parameter_parens, + STATE(1687), 1, + sym_parameter_bracks, + STATE(3871), 1, sym_comment, - ACTIONS(1858), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1860), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - [115239] = 6, - ACTIONS(103), 1, + STATE(3876), 1, + aux_sym_decl_def_repeat1, + STATE(4670), 1, + sym_long_flag, + [116631] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7274), 1, - anon_sym_DOT, - ACTIONS(7276), 1, - aux_sym__immediate_decimal_token5, - STATE(3811), 1, + ACTIONS(7488), 1, + anon_sym_DOT_DOT2, + STATE(3872), 1, sym_comment, - ACTIONS(1744), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1746), 3, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - sym__unquoted_pattern_in_list, - [115261] = 9, + ACTIONS(7490), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7486), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [116651] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3946), 1, + ACTIONS(3771), 1, anon_sym_LBRACK, - ACTIONS(3990), 1, + ACTIONS(3958), 1, sym__newline, - ACTIONS(7278), 1, + ACTIONS(7492), 1, anon_sym_RBRACK, - STATE(3812), 1, + STATE(3873), 1, sym_comment, - STATE(4190), 1, + STATE(4207), 1, aux_sym__types_body_repeat1, - STATE(4694), 1, + STATE(4719), 1, sym_val_list, - STATE(4769), 1, + STATE(4730), 1, aux_sym__table_body_repeat1, - STATE(4951), 1, + STATE(5083), 1, sym__table_body, - [115289] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1506), 1, - sym__entry_separator, - ACTIONS(7206), 1, - anon_sym_DOT2, - STATE(3813), 1, - sym_comment, - STATE(3851), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4188), 1, - sym_path, - ACTIONS(1504), 3, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_DOT_DOT, - [115313] = 6, - ACTIONS(103), 1, + [116679] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7280), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7282), 1, - aux_sym__immediate_decimal_token5, - STATE(3814), 1, + ACTIONS(7466), 1, + anon_sym_LBRACK, + ACTIONS(7468), 1, + anon_sym_LPAREN, + ACTIONS(7470), 1, + anon_sym_DASH_DASH, + STATE(1539), 1, + sym_parameter_bracks, + STATE(1618), 1, + sym_parameter_parens, + STATE(3874), 1, sym_comment, - ACTIONS(1770), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1772), 3, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - sym__unquoted_pattern_in_list, - [115335] = 9, + STATE(4312), 1, + aux_sym_decl_def_repeat1, + STATE(4670), 1, + sym_long_flag, + [116707] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3946), 1, + ACTIONS(3771), 1, anon_sym_LBRACK, - ACTIONS(3990), 1, + ACTIONS(3958), 1, sym__newline, - ACTIONS(7284), 1, + ACTIONS(7494), 1, anon_sym_RBRACK, - STATE(3815), 1, + STATE(3875), 1, sym_comment, - STATE(4190), 1, + STATE(4207), 1, aux_sym__types_body_repeat1, - STATE(4694), 1, + STATE(4719), 1, sym_val_list, - STATE(4769), 1, + STATE(4730), 1, aux_sym__table_body_repeat1, - STATE(5204), 1, + STATE(5172), 1, sym__table_body, - [115363] = 8, - ACTIONS(103), 1, + [116735] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1635), 1, - sym__unquoted_pattern_in_list, - ACTIONS(1956), 1, - sym__entry_separator, - ACTIONS(1958), 1, - anon_sym_RBRACK, - ACTIONS(1960), 1, - anon_sym_LPAREN2, - ACTIONS(7286), 1, - anon_sym_DOT_DOT2, - STATE(3816), 1, + ACTIONS(7466), 1, + anon_sym_LBRACK, + ACTIONS(7468), 1, + anon_sym_LPAREN, + ACTIONS(7470), 1, + anon_sym_DASH_DASH, + STATE(1533), 1, + sym_parameter_parens, + STATE(1534), 1, + sym_parameter_bracks, + STATE(3876), 1, + sym_comment, + STATE(4312), 1, + aux_sym_decl_def_repeat1, + STATE(4670), 1, + sym_long_flag, + [116763] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3877), 1, sym_comment, - ACTIONS(7288), 2, + ACTIONS(1732), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1730), 5, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [115389] = 4, + [116781] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7496), 1, + anon_sym_DOT, + ACTIONS(7498), 1, + aux_sym__immediate_decimal_token5, + STATE(3878), 1, + sym_comment, + ACTIONS(1790), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1792), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + sym__unquoted_pattern_in_list, + [116803] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3817), 1, + STATE(3879), 1, sym_comment, - ACTIONS(1854), 2, + ACTIONS(1848), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1852), 5, + ACTIONS(1846), 5, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [115407] = 9, - ACTIONS(3), 1, + [116821] = 9, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7214), 1, - anon_sym_LBRACK, - ACTIONS(7216), 1, - anon_sym_LPAREN, - ACTIONS(7218), 1, - anon_sym_DASH_DASH, - STATE(1537), 1, - sym_parameter_parens, - STATE(1538), 1, - sym_parameter_bracks, - STATE(3818), 1, + ACTIONS(2754), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2756), 1, + anon_sym_COLON2, + ACTIONS(7476), 1, + sym_identifier, + ACTIONS(7478), 1, + anon_sym_DOLLAR, + STATE(2788), 1, + sym_val_variable, + STATE(3880), 1, sym_comment, - STATE(4098), 1, - aux_sym_decl_def_repeat1, - STATE(4582), 1, - sym_long_flag, - [115435] = 7, + STATE(4196), 1, + sym__variable_name, + STATE(4391), 1, + sym__assignment_pattern, + [116849] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5030), 1, - anon_sym_DOT2, - STATE(2459), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2500), 1, - sym_path, - STATE(3206), 1, - sym_cell_path, - STATE(3819), 1, + STATE(3881), 1, sym_comment, - ACTIONS(1888), 3, + ACTIONS(863), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(865), 5, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [116867] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3771), 1, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [115459] = 9, + ACTIONS(3958), 1, + sym__newline, + ACTIONS(7500), 1, + anon_sym_RBRACK, + STATE(3882), 1, + sym_comment, + STATE(4207), 1, + aux_sym__types_body_repeat1, + STATE(4719), 1, + sym_val_list, + STATE(4730), 1, + aux_sym__table_body_repeat1, + STATE(5377), 1, + sym__table_body, + [116895] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7214), 1, + ACTIONS(7466), 1, anon_sym_LBRACK, - ACTIONS(7216), 1, + ACTIONS(7468), 1, anon_sym_LPAREN, - ACTIONS(7218), 1, + ACTIONS(7470), 1, anon_sym_DASH_DASH, - STATE(1609), 1, - sym_parameter_bracks, - STATE(1690), 1, + STATE(1637), 1, sym_parameter_parens, - STATE(3820), 1, + STATE(1638), 1, + sym_parameter_bracks, + STATE(3883), 1, sym_comment, - STATE(3826), 1, + STATE(4312), 1, aux_sym_decl_def_repeat1, - STATE(4582), 1, + STATE(4670), 1, sym_long_flag, - [115487] = 4, + [116923] = 8, ACTIONS(103), 1, anon_sym_POUND, - STATE(3821), 1, + ACTIONS(5348), 1, + sym__entry_separator, + ACTIONS(7464), 1, + anon_sym_DOT2, + STATE(352), 1, + sym_path, + STATE(3884), 1, sym_comment, - ACTIONS(1854), 3, + STATE(4013), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4897), 1, + sym_cell_path, + ACTIONS(5346), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1852), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [115505] = 8, + [116949] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5416), 1, + ACTIONS(1911), 1, sym__entry_separator, - ACTIONS(7258), 1, + ACTIONS(7456), 1, anon_sym_DOT2, - STATE(360), 1, - sym_path, - STATE(3822), 1, + STATE(3885), 1, sym_comment, - STATE(3924), 1, + STATE(3903), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4692), 1, + STATE(4313), 1, + sym_path, + STATE(4407), 1, sym_cell_path, - ACTIONS(5414), 2, + ACTIONS(1913), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - [115531] = 9, + anon_sym_DOT_DOT, + [116975] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7214), 1, + ACTIONS(7466), 1, anon_sym_LBRACK, - ACTIONS(7216), 1, + ACTIONS(7468), 1, anon_sym_LPAREN, - ACTIONS(7218), 1, + ACTIONS(7470), 1, anon_sym_DASH_DASH, - STATE(1556), 1, + STATE(1646), 1, sym_parameter_parens, - STATE(1557), 1, + STATE(1647), 1, sym_parameter_bracks, - STATE(3823), 1, + STATE(3886), 1, sym_comment, - STATE(4098), 1, + STATE(4312), 1, aux_sym_decl_def_repeat1, - STATE(4582), 1, + STATE(4670), 1, sym_long_flag, - [115559] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3946), 1, - anon_sym_LBRACK, - ACTIONS(3990), 1, - sym__newline, - ACTIONS(7290), 1, - anon_sym_RBRACK, - STATE(3824), 1, - sym_comment, - STATE(4190), 1, - aux_sym__types_body_repeat1, - STATE(4694), 1, - sym_val_list, - STATE(4769), 1, - aux_sym__table_body_repeat1, - STATE(5248), 1, - sym__table_body, - [115587] = 5, + [117003] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7292), 1, + ACTIONS(7502), 1, anon_sym_DOT_DOT2, - STATE(3825), 1, + STATE(3887), 1, sym_comment, - ACTIONS(7294), 2, + ACTIONS(7504), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2154), 4, + ACTIONS(2170), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [115607] = 9, + [117023] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1887), 1, + sym__entry_separator, + ACTIONS(7464), 1, + anon_sym_DOT2, + STATE(352), 1, + sym_path, + STATE(3888), 1, + sym_comment, + STATE(4013), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4470), 1, + sym_cell_path, + ACTIONS(1889), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [117049] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7214), 1, + ACTIONS(7466), 1, anon_sym_LBRACK, - ACTIONS(7216), 1, + ACTIONS(7468), 1, anon_sym_LPAREN, - ACTIONS(7218), 1, + ACTIONS(7470), 1, anon_sym_DASH_DASH, - STATE(1686), 1, + STATE(1662), 1, sym_parameter_parens, - STATE(1687), 1, + STATE(1663), 1, sym_parameter_bracks, - STATE(3826), 1, + STATE(3889), 1, sym_comment, - STATE(4098), 1, + STATE(3901), 1, aux_sym_decl_def_repeat1, - STATE(4582), 1, + STATE(4670), 1, sym_long_flag, - [115635] = 8, + [117077] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1912), 1, + STATE(3890), 1, + sym_comment, + ACTIONS(1897), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1895), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(7258), 1, + [117095] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5089), 1, anon_sym_DOT2, - STATE(360), 1, - sym_path, - STATE(3827), 1, - sym_comment, - STATE(3924), 1, + STATE(2450), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4228), 1, + STATE(2500), 1, + sym_path, + STATE(3068), 1, sym_cell_path, - ACTIONS(1914), 2, - anon_sym_RBRACK, + STATE(3891), 1, + sym_comment, + ACTIONS(1911), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [117119] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3892), 1, + sym_comment, + ACTIONS(1732), 3, anon_sym_RBRACE, - [115661] = 9, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1730), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [117137] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2829), 1, + ACTIONS(2822), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7296), 1, + ACTIONS(7506), 1, anon_sym_alias, - ACTIONS(7298), 1, + ACTIONS(7508), 1, anon_sym_const, - ACTIONS(7300), 1, + ACTIONS(7510), 1, anon_sym_def, - ACTIONS(7302), 1, + ACTIONS(7512), 1, anon_sym_use, - ACTIONS(7304), 1, + ACTIONS(7514), 1, anon_sym_extern, - ACTIONS(7306), 1, + ACTIONS(7516), 1, anon_sym_module, - STATE(3828), 1, + STATE(3893), 1, sym_comment, - [115689] = 8, - ACTIONS(103), 1, + [117165] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5375), 1, - sym__entry_separator, - ACTIONS(7258), 1, - anon_sym_DOT2, - STATE(360), 1, - sym_path, - STATE(3829), 1, - sym_comment, - STATE(3924), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4770), 1, - sym_cell_path, - ACTIONS(5373), 2, + ACTIONS(3771), 1, + anon_sym_LBRACK, + ACTIONS(3958), 1, + sym__newline, + ACTIONS(7518), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [115715] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5342), 1, - sym__entry_separator, - ACTIONS(7258), 1, - anon_sym_DOT2, - STATE(360), 1, - sym_path, - STATE(3830), 1, + STATE(3894), 1, sym_comment, - STATE(3924), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4775), 1, - sym_cell_path, - ACTIONS(5340), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [115741] = 9, + STATE(4207), 1, + aux_sym__types_body_repeat1, + STATE(4719), 1, + sym_val_list, + STATE(4730), 1, + aux_sym__table_body_repeat1, + STATE(5169), 1, + sym__table_body, + [117193] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7214), 1, + ACTIONS(7466), 1, anon_sym_LBRACK, - ACTIONS(7216), 1, + ACTIONS(7468), 1, anon_sym_LPAREN, - ACTIONS(7218), 1, + ACTIONS(7470), 1, anon_sym_DASH_DASH, - STATE(1540), 1, - sym_parameter_parens, - STATE(1541), 1, + STATE(1576), 1, sym_parameter_bracks, - STATE(3831), 1, + STATE(1641), 1, + sym_parameter_parens, + STATE(3895), 1, sym_comment, - STATE(3862), 1, + STATE(4312), 1, aux_sym_decl_def_repeat1, - STATE(4582), 1, + STATE(4670), 1, sym_long_flag, - [115769] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7308), 1, - anon_sym_DOT2, - STATE(2293), 1, - sym_cell_path, - STATE(2500), 1, - sym_path, - STATE(3832), 1, - sym_comment, - STATE(4019), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1444), 3, - anon_sym_EQ, - sym__newline, - anon_sym_COLON, - [115793] = 9, + [117221] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7214), 1, + ACTIONS(7466), 1, anon_sym_LBRACK, - ACTIONS(7216), 1, + ACTIONS(7468), 1, anon_sym_LPAREN, - ACTIONS(7218), 1, + ACTIONS(7470), 1, anon_sym_DASH_DASH, - STATE(1522), 1, - sym_parameter_parens, - STATE(1523), 1, + STATE(1660), 1, sym_parameter_bracks, - STATE(3833), 1, - sym_comment, - STATE(3852), 1, + STATE(1693), 1, + sym_parameter_parens, + STATE(3874), 1, aux_sym_decl_def_repeat1, - STATE(4582), 1, + STATE(3896), 1, + sym_comment, + STATE(4670), 1, sym_long_flag, - [115821] = 6, + [117249] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1746), 1, - sym__unquoted_pattern, - ACTIONS(7310), 1, - anon_sym_DOT, - ACTIONS(7312), 1, - aux_sym__immediate_decimal_token5, - STATE(3834), 1, + ACTIONS(7520), 1, + anon_sym_DOT_DOT2, + STATE(3897), 1, sym_comment, - ACTIONS(1744), 4, + ACTIONS(7522), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2104), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [115843] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7107), 1, - aux_sym__immediate_decimal_token5, - STATE(3835), 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, - [115863] = 6, + [117269] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1635), 1, - sym__unquoted_pattern, - ACTIONS(7314), 1, + ACTIONS(7524), 1, anon_sym_DOT_DOT2, - STATE(3836), 1, + STATE(3898), 1, sym_comment, - ACTIONS(7316), 2, + ACTIONS(7526), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1956), 3, + ACTIONS(2112), 4, + anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [115885] = 9, + [117289] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3946), 1, - anon_sym_LBRACK, - ACTIONS(3990), 1, - sym__newline, - ACTIONS(7318), 1, - anon_sym_RBRACK, - STATE(3837), 1, - sym_comment, - STATE(4190), 1, - aux_sym__types_body_repeat1, - STATE(4694), 1, - sym_val_list, - STATE(4769), 1, - aux_sym__table_body_repeat1, - STATE(5023), 1, - sym__table_body, - [115913] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3838), 1, - sym_comment, - ACTIONS(1872), 3, - anon_sym_RBRACE, + ACTIONS(7528), 1, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1870), 4, - anon_sym_LPAREN2, + STATE(3899), 1, + sym_comment, + ACTIONS(7530), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [115931] = 6, + ACTIONS(2120), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [117309] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7320), 1, + ACTIONS(7532), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7322), 1, + ACTIONS(7534), 1, aux_sym__immediate_decimal_token5, - STATE(3839), 1, + STATE(3900), 1, sym_comment, - ACTIONS(1772), 2, + ACTIONS(1732), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1770), 3, + ACTIONS(1730), 3, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [115953] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1888), 1, - sym__entry_separator, - ACTIONS(7206), 1, - anon_sym_DOT2, - STATE(3813), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3840), 1, - sym_comment, - STATE(4188), 1, - sym_path, - STATE(4226), 1, - sym_cell_path, - ACTIONS(1890), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [115979] = 9, + [117331] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3946), 1, + ACTIONS(7466), 1, anon_sym_LBRACK, - ACTIONS(3990), 1, - sym__newline, - ACTIONS(7324), 1, - anon_sym_RBRACK, - STATE(3841), 1, + ACTIONS(7468), 1, + anon_sym_LPAREN, + ACTIONS(7470), 1, + anon_sym_DASH_DASH, + STATE(1631), 1, + sym_parameter_parens, + STATE(1636), 1, + sym_parameter_bracks, + STATE(3901), 1, sym_comment, - STATE(4190), 1, - aux_sym__types_body_repeat1, - STATE(4694), 1, - sym_val_list, - STATE(4769), 1, - aux_sym__table_body_repeat1, - STATE(5099), 1, - sym__table_body, - [116007] = 9, + STATE(4312), 1, + aux_sym_decl_def_repeat1, + STATE(4670), 1, + sym_long_flag, + [117359] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3946), 1, + ACTIONS(7466), 1, anon_sym_LBRACK, - ACTIONS(3990), 1, - sym__newline, - ACTIONS(7326), 1, - anon_sym_RBRACK, - STATE(3842), 1, + ACTIONS(7468), 1, + anon_sym_LPAREN, + ACTIONS(7470), 1, + anon_sym_DASH_DASH, + STATE(1538), 1, + sym_parameter_parens, + STATE(1540), 1, + sym_parameter_bracks, + STATE(3883), 1, + aux_sym_decl_def_repeat1, + STATE(3902), 1, sym_comment, - STATE(4190), 1, - aux_sym__types_body_repeat1, - STATE(4694), 1, - sym_val_list, - STATE(4769), 1, - aux_sym__table_body_repeat1, - STATE(4978), 1, - sym__table_body, - [116035] = 8, + STATE(4670), 1, + sym_long_flag, + [117387] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1896), 1, + ACTIONS(1526), 1, sym__entry_separator, - ACTIONS(7206), 1, + ACTIONS(7456), 1, anon_sym_DOT2, - STATE(3813), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3843), 1, + STATE(3903), 1, sym_comment, - STATE(4188), 1, + STATE(3945), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4313), 1, sym_path, - STATE(4250), 1, - sym_cell_path, - ACTIONS(1898), 2, + ACTIONS(1524), 3, anon_sym_RBRACK, + anon_sym_GT2, anon_sym_DOT_DOT, - [116061] = 8, + [117411] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1900), 1, + ACTIONS(7426), 1, sym__entry_separator, - ACTIONS(7258), 1, + ACTIONS(7456), 1, anon_sym_DOT2, - STATE(360), 1, - sym_path, - STATE(3844), 1, - sym_comment, - STATE(3924), 1, + STATE(3903), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4294), 1, + STATE(3904), 1, + sym_comment, + STATE(4313), 1, + sym_path, + STATE(4779), 1, sym_cell_path, - ACTIONS(1902), 2, + ACTIONS(7536), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - [116087] = 9, + anon_sym_DOT_DOT, + [117437] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(968), 1, + anon_sym_LBRACE, + ACTIONS(1828), 1, + sym__unquoted_pattern, + ACTIONS(7538), 1, + anon_sym_DOT_DOT2, + ACTIONS(7542), 1, + sym_filesize_unit, + ACTIONS(7544), 1, + sym_duration_unit, + STATE(3905), 1, + sym_comment, + ACTIONS(7540), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [117463] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2682), 1, + ACTIONS(2594), 1, aux_sym_cmd_identifier_token2, - ACTIONS(2684), 1, - anon_sym_COLON2, - ACTIONS(7328), 1, - sym_identifier, - ACTIONS(7330), 1, - anon_sym_DOLLAR, - STATE(2825), 1, - sym_val_variable, - STATE(3845), 1, + ACTIONS(7400), 1, + anon_sym_def, + ACTIONS(7402), 1, + anon_sym_use, + ACTIONS(7404), 1, + anon_sym_extern, + ACTIONS(7406), 1, + anon_sym_module, + ACTIONS(7546), 1, + anon_sym_alias, + ACTIONS(7548), 1, + anon_sym_const, + STATE(3906), 1, sym_comment, - STATE(4186), 1, - sym__variable_name, - STATE(4305), 1, - sym__assignment_pattern, - [116115] = 9, + [117491] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7214), 1, + ACTIONS(7466), 1, anon_sym_LBRACK, - ACTIONS(7216), 1, + ACTIONS(7468), 1, anon_sym_LPAREN, - ACTIONS(7218), 1, + ACTIONS(7470), 1, anon_sym_DASH_DASH, - STATE(1560), 1, + STATE(1690), 1, sym_parameter_parens, - STATE(1561), 1, + STATE(1691), 1, sym_parameter_bracks, - STATE(3846), 1, + STATE(3907), 1, sym_comment, - STATE(4098), 1, + STATE(3957), 1, aux_sym_decl_def_repeat1, - STATE(4582), 1, + STATE(4670), 1, sym_long_flag, - [116143] = 6, + [117519] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7332), 1, - anon_sym_DOT, - ACTIONS(7334), 1, - aux_sym__immediate_decimal_token5, - STATE(3847), 1, + ACTIONS(1456), 1, + sym__entry_separator, + ACTIONS(7464), 1, + anon_sym_DOT2, + STATE(352), 1, + sym_path, + STATE(372), 1, + sym_cell_path, + STATE(3908), 1, sym_comment, - ACTIONS(1744), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1746), 3, - sym__newline, - anon_sym_SEMI, - sym__unquoted_pattern, - [116165] = 4, - ACTIONS(3), 1, + STATE(4013), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1454), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [117545] = 9, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3848), 1, + ACTIONS(7456), 1, + anon_sym_DOT2, + ACTIONS(7550), 1, + anon_sym_RBRACK, + ACTIONS(7554), 1, + anon_sym_DOT_DOT, + ACTIONS(7556), 1, + sym__entry_separator, + STATE(3903), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3909), 1, sym_comment, - ACTIONS(1772), 2, + STATE(4313), 1, + sym_path, + STATE(4755), 1, + sym_cell_path, + [117573] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(847), 1, + anon_sym_RBRACE, + ACTIONS(968), 1, + sym__entry_separator, + ACTIONS(7560), 1, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1770), 5, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(7564), 1, + sym_filesize_unit, + ACTIONS(7566), 1, + sym_duration_unit, + STATE(3910), 1, + sym_comment, + ACTIONS(7562), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [116183] = 9, + [117599] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1883), 1, + sym__entry_separator, + ACTIONS(7464), 1, + anon_sym_DOT2, + STATE(352), 1, + sym_path, + STATE(3911), 1, + sym_comment, + STATE(4013), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4448), 1, + sym_cell_path, + ACTIONS(1885), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [117625] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3946), 1, + ACTIONS(3771), 1, anon_sym_LBRACK, - ACTIONS(3990), 1, + ACTIONS(3958), 1, sym__newline, - ACTIONS(7336), 1, + ACTIONS(7568), 1, anon_sym_RBRACK, - STATE(3849), 1, + STATE(3912), 1, sym_comment, - STATE(4190), 1, + STATE(4207), 1, aux_sym__types_body_repeat1, - STATE(4694), 1, + STATE(4719), 1, sym_val_list, - STATE(4769), 1, + STATE(4730), 1, aux_sym__table_body_repeat1, - STATE(5148), 1, + STATE(5336), 1, sym__table_body, - [116211] = 4, + [117653] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3850), 1, + STATE(3913), 1, sym_comment, - ACTIONS(1892), 3, + ACTIONS(1842), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1894), 4, + ACTIONS(1844), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - [116229] = 6, + [117671] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1510), 1, - sym__entry_separator, - ACTIONS(7338), 1, + ACTIONS(7376), 1, anon_sym_DOT2, - STATE(4188), 1, - sym_path, - STATE(3851), 2, + STATE(3914), 1, sym_comment, + STATE(4133), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1508), 3, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_DOT_DOT, - [116251] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7214), 1, - anon_sym_LBRACK, - ACTIONS(7216), 1, - anon_sym_LPAREN, - ACTIONS(7218), 1, - anon_sym_DASH_DASH, - STATE(1529), 1, - sym_parameter_parens, - STATE(1530), 1, - sym_parameter_bracks, - STATE(3852), 1, - sym_comment, - STATE(4098), 1, - aux_sym_decl_def_repeat1, STATE(4582), 1, - sym_long_flag, - [116279] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1973), 1, + sym_path, + STATE(4665), 1, + sym_cell_path, + ACTIONS(1885), 3, + anon_sym_RBRACK, sym__entry_separator, - ACTIONS(1975), 1, - anon_sym_RBRACE, - ACTIONS(1977), 1, - anon_sym_LPAREN2, - ACTIONS(1983), 1, - sym__unquoted_pattern_in_record, - ACTIONS(7341), 1, - anon_sym_DOT_DOT2, - STATE(3853), 1, - sym_comment, - ACTIONS(7343), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [116305] = 9, + sym__table_head_separator, + [117695] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7214), 1, - anon_sym_LBRACK, - ACTIONS(7216), 1, - anon_sym_LPAREN, - ACTIONS(7218), 1, - anon_sym_DASH_DASH, - STATE(1549), 1, - sym_parameter_parens, - STATE(1550), 1, - sym_parameter_bracks, - STATE(3854), 1, + ACTIONS(7570), 1, + anon_sym_DOT2, + STATE(2291), 1, + sym_cell_path, + STATE(2500), 1, + sym_path, + STATE(3915), 1, sym_comment, - STATE(4098), 1, - aux_sym_decl_def_repeat1, - STATE(4582), 1, - sym_long_flag, - [116333] = 9, + STATE(4151), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1456), 3, + anon_sym_EQ, + sym__newline, + anon_sym_COLON, + [117719] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7214), 1, + ACTIONS(3771), 1, anon_sym_LBRACK, - ACTIONS(7216), 1, - anon_sym_LPAREN, - ACTIONS(7218), 1, - anon_sym_DASH_DASH, - STATE(1531), 1, - sym_parameter_parens, - STATE(1532), 1, - sym_parameter_bracks, - STATE(3818), 1, - aux_sym_decl_def_repeat1, - STATE(3855), 1, + ACTIONS(3958), 1, + sym__newline, + ACTIONS(7572), 1, + anon_sym_RBRACK, + STATE(3916), 1, sym_comment, - STATE(4582), 1, - sym_long_flag, - [116361] = 8, - ACTIONS(103), 1, + STATE(4207), 1, + aux_sym__types_body_repeat1, + STATE(4719), 1, + sym_val_list, + STATE(4730), 1, + aux_sym__table_body_repeat1, + STATE(5198), 1, + sym__table_body, + [117747] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1973), 1, - sym__entry_separator, - ACTIONS(1975), 1, - anon_sym_RBRACK, - ACTIONS(1977), 1, - anon_sym_LPAREN2, - ACTIONS(1983), 1, - sym__unquoted_pattern_in_list, - ACTIONS(7345), 1, + ACTIONS(7488), 1, anon_sym_DOT_DOT2, - STATE(3856), 1, + STATE(3917), 1, sym_comment, - ACTIONS(7347), 2, + ACTIONS(7490), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [116387] = 9, + ACTIONS(7574), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [117767] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2682), 1, + ACTIONS(2754), 1, aux_sym_cmd_identifier_token2, - ACTIONS(2684), 1, + ACTIONS(2756), 1, anon_sym_COLON2, - ACTIONS(7328), 1, + ACTIONS(7476), 1, sym_identifier, - ACTIONS(7349), 1, + ACTIONS(7576), 1, anon_sym_DOLLAR, - STATE(2824), 1, + STATE(2787), 1, sym__variable_name, - STATE(2825), 1, + STATE(2788), 1, sym_val_variable, - STATE(3857), 1, + STATE(3918), 1, sym_comment, - STATE(4303), 1, + STATE(4385), 1, sym__assignment_pattern, - [116415] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7214), 1, - anon_sym_LBRACK, - ACTIONS(7216), 1, - anon_sym_LPAREN, - ACTIONS(7218), 1, - anon_sym_DASH_DASH, - STATE(1543), 1, - sym_parameter_parens, - STATE(1544), 1, - sym_parameter_bracks, - STATE(3858), 1, - sym_comment, - STATE(3874), 1, - aux_sym_decl_def_repeat1, - STATE(4582), 1, - sym_long_flag, - [116443] = 9, + [117795] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7206), 1, - anon_sym_DOT2, - ACTIONS(7236), 1, - anon_sym_DOT_DOT, - ACTIONS(7351), 1, - anon_sym_RBRACK, - ACTIONS(7355), 1, + ACTIONS(5344), 1, sym__entry_separator, - STATE(3813), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3859), 1, - sym_comment, - STATE(4188), 1, + ACTIONS(7464), 1, + anon_sym_DOT2, + STATE(352), 1, sym_path, - STATE(4565), 1, + STATE(3919), 1, + sym_comment, + STATE(4013), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4659), 1, sym_cell_path, - [116471] = 4, + ACTIONS(5342), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [117821] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(3860), 1, + ACTIONS(3771), 1, + anon_sym_LBRACK, + ACTIONS(3958), 1, + sym__newline, + ACTIONS(7578), 1, + anon_sym_RBRACK, + STATE(3920), 1, sym_comment, - ACTIONS(1872), 2, - anon_sym_DOT_DOT2, + STATE(4207), 1, + aux_sym__types_body_repeat1, + STATE(4719), 1, + sym_val_list, + STATE(4730), 1, + aux_sym__table_body_repeat1, + STATE(5298), 1, + sym__table_body, + [117849] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1732), 1, sym__unquoted_pattern, - ACTIONS(1870), 5, + ACTIONS(7580), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7582), 1, + aux_sym__immediate_decimal_token5, + STATE(3921), 1, + sym_comment, + ACTIONS(1730), 4, + anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [116489] = 6, + [117871] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1871), 1, + sym__entry_separator, + ACTIONS(7464), 1, + anon_sym_DOT2, + STATE(352), 1, + sym_path, + STATE(3922), 1, + sym_comment, + STATE(4013), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4358), 1, + sym_cell_path, + ACTIONS(1874), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [117897] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7359), 1, + ACTIONS(7584), 1, anon_sym_DOT, - ACTIONS(7361), 1, + ACTIONS(7586), 1, aux_sym__immediate_decimal_token5, - STATE(3861), 1, + STATE(3923), 1, sym_comment, - ACTIONS(1746), 2, + ACTIONS(1792), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1744), 3, + ACTIONS(1790), 3, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [116511] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7214), 1, - anon_sym_LBRACK, - ACTIONS(7216), 1, - anon_sym_LPAREN, - ACTIONS(7218), 1, - anon_sym_DASH_DASH, - STATE(1545), 1, - sym_parameter_parens, - STATE(1546), 1, - sym_parameter_bracks, - STATE(3862), 1, - sym_comment, - STATE(4098), 1, - aux_sym_decl_def_repeat1, - STATE(4582), 1, - sym_long_flag, - [116539] = 9, + [117919] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7214), 1, + ACTIONS(3771), 1, anon_sym_LBRACK, - ACTIONS(7216), 1, - anon_sym_LPAREN, - ACTIONS(7218), 1, - anon_sym_DASH_DASH, - STATE(1547), 1, - sym_parameter_parens, - STATE(1548), 1, - sym_parameter_bracks, - STATE(3823), 1, - aux_sym_decl_def_repeat1, - STATE(3863), 1, + ACTIONS(3958), 1, + sym__newline, + ACTIONS(7588), 1, + anon_sym_RBRACK, + STATE(3924), 1, sym_comment, - STATE(4582), 1, - sym_long_flag, - [116567] = 4, - ACTIONS(3), 1, + STATE(4207), 1, + aux_sym__types_body_repeat1, + STATE(4719), 1, + sym_val_list, + STATE(4730), 1, + aux_sym__table_body_repeat1, + STATE(5212), 1, + sym__table_body, + [117947] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3864), 1, + ACTIONS(7590), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7592), 1, + aux_sym__immediate_decimal_token5, + STATE(3925), 1, sym_comment, - ACTIONS(860), 2, - anon_sym_DOT_DOT2, + ACTIONS(1730), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1732), 3, + sym__newline, + anon_sym_SEMI, sym__unquoted_pattern, - ACTIONS(862), 5, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [116585] = 5, - ACTIONS(3), 1, + [117969] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7270), 1, - anon_sym_DOT_DOT2, - STATE(3865), 1, + STATE(3926), 1, sym_comment, - ACTIONS(7272), 2, + ACTIONS(1915), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7363), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [116605] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3946), 1, - anon_sym_LBRACK, - ACTIONS(3990), 1, - sym__newline, - ACTIONS(7365), 1, + sym__entry_separator, + ACTIONS(1917), 4, anon_sym_RBRACK, - STATE(3866), 1, - sym_comment, - STATE(4190), 1, - aux_sym__types_body_repeat1, - STATE(4694), 1, - sym_val_list, - STATE(4769), 1, - aux_sym__table_body_repeat1, - STATE(5006), 1, - sym__table_body, - [116633] = 9, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + [117987] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2682), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2684), 1, - anon_sym_COLON2, - ACTIONS(7328), 1, - sym_identifier, - ACTIONS(7330), 1, - anon_sym_DOLLAR, - STATE(2825), 1, - sym_val_variable, - STATE(3867), 1, + ACTIONS(1637), 1, + sym__unquoted_pattern_in_list, + ACTIONS(1972), 1, + sym__entry_separator, + ACTIONS(1974), 1, + anon_sym_RBRACK, + ACTIONS(1976), 1, + anon_sym_LPAREN2, + ACTIONS(7594), 1, + anon_sym_DOT_DOT2, + STATE(3927), 1, + sym_comment, + ACTIONS(7596), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [118013] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1637), 1, + sym__unquoted_pattern, + ACTIONS(7598), 1, + anon_sym_DOT_DOT2, + STATE(3928), 1, sym_comment, - STATE(4186), 1, - sym__variable_name, - STATE(4304), 1, - sym__assignment_pattern, - [116661] = 9, + ACTIONS(7600), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1972), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [118035] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7133), 1, - anon_sym_DOT_DOT, - ACTIONS(7169), 1, - anon_sym_RBRACK, - ACTIONS(7258), 1, - anon_sym_DOT2, - ACTIONS(7367), 1, - sym__entry_separator, - STATE(360), 1, - sym_path, - STATE(3868), 1, + STATE(3929), 1, sym_comment, - STATE(3924), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4294), 1, - sym_cell_path, - [116689] = 5, + ACTIONS(1647), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1649), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + [118053] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7370), 1, + ACTIONS(7602), 1, aux_sym__immediate_decimal_token5, - STATE(3869), 1, + STATE(3930), 1, sym_comment, - ACTIONS(771), 2, + ACTIONS(767), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - ACTIONS(773), 4, + ACTIONS(769), 4, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [116709] = 6, - ACTIONS(3), 1, + [118073] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1983), 1, - sym__unquoted_pattern, - ACTIONS(7372), 1, - anon_sym_DOT_DOT2, - STATE(3870), 1, + STATE(3931), 1, sym_comment, - ACTIONS(7374), 2, + ACTIONS(1848), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1846), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1973), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [116731] = 8, + sym__entry_separator, + [118091] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1862), 1, + ACTIONS(5368), 1, sym__entry_separator, - ACTIONS(7258), 1, + ACTIONS(7464), 1, anon_sym_DOT2, - STATE(360), 1, + STATE(352), 1, sym_path, - STATE(3871), 1, + STATE(3932), 1, sym_comment, - STATE(3924), 1, + STATE(4013), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4314), 1, + STATE(4723), 1, sym_cell_path, - ACTIONS(1864), 2, + ACTIONS(5366), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [116757] = 4, + [118117] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7604), 1, + anon_sym_DOT, + ACTIONS(7606), 1, + aux_sym__immediate_decimal_token5, + STATE(3933), 1, + sym_comment, + ACTIONS(1790), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1792), 3, + sym__newline, + anon_sym_SEMI, + sym__unquoted_pattern, + [118139] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3872), 1, + STATE(3934), 1, + sym_comment, + ACTIONS(1897), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1895), 5, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [118157] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3935), 1, sym_comment, - ACTIONS(771), 2, + ACTIONS(739), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(773), 5, + ACTIONS(741), 5, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [116775] = 7, + [118175] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7608), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7610), 1, + aux_sym__immediate_decimal_token5, + STATE(3936), 1, + sym_comment, + ACTIONS(1730), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1732), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + sym__unquoted_pattern_in_list, + [118197] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7172), 1, + ACTIONS(7376), 1, anon_sym_DOT2, - STATE(3873), 1, + STATE(3937), 1, sym_comment, - STATE(3910), 1, + STATE(4133), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4272), 1, + STATE(4582), 1, sym_path, - STATE(4741), 1, + STATE(4910), 1, sym_cell_path, - ACTIONS(1864), 3, + ACTIONS(1889), 3, anon_sym_RBRACK, sym__entry_separator, sym__table_head_separator, - [116799] = 9, - ACTIONS(3), 1, + [118221] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7214), 1, - anon_sym_LBRACK, - ACTIONS(7216), 1, - anon_sym_LPAREN, - ACTIONS(7218), 1, - anon_sym_DASH_DASH, - STATE(1551), 1, - sym_parameter_parens, - STATE(1552), 1, - sym_parameter_bracks, - STATE(3874), 1, + ACTIONS(7612), 1, + anon_sym_QMARK2, + ACTIONS(7614), 1, + anon_sym_BANG, + STATE(3938), 1, sym_comment, - STATE(4098), 1, - aux_sym_decl_def_repeat1, - STATE(4582), 1, - sym_long_flag, - [116827] = 9, + STATE(4546), 1, + sym__path_suffix, + ACTIONS(1442), 4, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [118243] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1907), 1, + sym__entry_separator, + ACTIONS(7464), 1, + anon_sym_DOT2, + STATE(352), 1, + sym_path, + STATE(3939), 1, + sym_comment, + STATE(4013), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4392), 1, + sym_cell_path, + ACTIONS(1909), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [118269] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7214), 1, + ACTIONS(3771), 1, anon_sym_LBRACK, - ACTIONS(7216), 1, - anon_sym_LPAREN, - ACTIONS(7218), 1, - anon_sym_DASH_DASH, - STATE(1553), 1, - sym_parameter_parens, - STATE(1554), 1, - sym_parameter_bracks, - STATE(3846), 1, - aux_sym_decl_def_repeat1, - STATE(3875), 1, + ACTIONS(3958), 1, + sym__newline, + ACTIONS(7616), 1, + anon_sym_RBRACK, + STATE(3940), 1, sym_comment, - STATE(4582), 1, - sym_long_flag, - [116855] = 5, + STATE(4207), 1, + aux_sym__types_body_repeat1, + STATE(4719), 1, + sym_val_list, + STATE(4730), 1, + aux_sym__table_body_repeat1, + STATE(5459), 1, + sym__table_body, + [118297] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7376), 1, + ACTIONS(1637), 1, + sym__unquoted_pattern, + ACTIONS(7618), 1, + anon_sym_DOT, + STATE(3941), 1, + sym_comment, + STATE(4589), 1, + sym__immediate_decimal, + ACTIONS(6667), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6669), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [118321] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1637), 1, + sym__unquoted_pattern_in_record, + ACTIONS(1972), 1, + sym__entry_separator, + ACTIONS(1974), 1, + anon_sym_RBRACE, + ACTIONS(1976), 1, + anon_sym_LPAREN2, + ACTIONS(7620), 1, anon_sym_DOT_DOT2, - STATE(3876), 1, + STATE(3942), 1, + sym_comment, + ACTIONS(7622), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [118347] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1982), 1, + sym__entry_separator, + ACTIONS(1984), 1, + anon_sym_RBRACK, + ACTIONS(1986), 1, + anon_sym_LPAREN2, + ACTIONS(1992), 1, + sym__unquoted_pattern_in_list, + ACTIONS(7624), 1, + anon_sym_DOT_DOT2, + STATE(3943), 1, sym_comment, - ACTIONS(7378), 2, + ACTIONS(7626), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2102), 4, + [118373] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1792), 1, + sym__unquoted_pattern, + ACTIONS(7628), 1, + anon_sym_DOT, + ACTIONS(7630), 1, + aux_sym__immediate_decimal_token5, + STATE(3944), 1, + sym_comment, + ACTIONS(1790), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [116875] = 9, + [118395] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1534), 1, + sym__entry_separator, + ACTIONS(7632), 1, + anon_sym_DOT2, + STATE(4313), 1, + sym_path, + STATE(3945), 2, + sym_comment, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1532), 3, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_DOT_DOT, + [118417] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7214), 1, + ACTIONS(7466), 1, anon_sym_LBRACK, - ACTIONS(7216), 1, + ACTIONS(7468), 1, anon_sym_LPAREN, - ACTIONS(7218), 1, + ACTIONS(7470), 1, anon_sym_DASH_DASH, - STATE(1524), 1, - sym_parameter_parens, - STATE(1525), 1, + STATE(1573), 1, sym_parameter_bracks, - STATE(3877), 1, - sym_comment, - STATE(4098), 1, + STATE(1645), 1, + sym_parameter_parens, + STATE(3886), 1, aux_sym_decl_def_repeat1, - STATE(4582), 1, + STATE(3946), 1, + sym_comment, + STATE(4670), 1, sym_long_flag, - [116903] = 9, + [118445] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7448), 1, + aux_sym__immediate_decimal_token5, + STATE(3947), 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, + [118465] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7365), 1, + sym__entry_separator, + ACTIONS(7456), 1, + anon_sym_DOT2, + STATE(3903), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3948), 1, + sym_comment, + STATE(4313), 1, + sym_path, + STATE(4715), 1, + sym_cell_path, + ACTIONS(7554), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [118491] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7214), 1, + ACTIONS(7466), 1, anon_sym_LBRACK, - ACTIONS(7216), 1, + ACTIONS(7468), 1, anon_sym_LPAREN, - ACTIONS(7218), 1, + ACTIONS(7470), 1, anon_sym_DASH_DASH, STATE(1688), 1, sym_parameter_parens, @@ -236947,2036 +239514,2961 @@ static const uint16_t ts_small_parse_table[] = { sym_parameter_bracks, STATE(3854), 1, aux_sym_decl_def_repeat1, - STATE(3878), 1, + STATE(3949), 1, sym_comment, - STATE(4582), 1, + STATE(4670), 1, sym_long_flag, - [116931] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7380), 1, - anon_sym_DOT_DOT2, - STATE(3879), 1, - sym_comment, - ACTIONS(7382), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2110), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [116951] = 9, + [118519] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2555), 1, + ACTIONS(2594), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7194), 1, + ACTIONS(7400), 1, anon_sym_def, - ACTIONS(7196), 1, + ACTIONS(7402), 1, anon_sym_use, - ACTIONS(7198), 1, + ACTIONS(7404), 1, anon_sym_extern, - ACTIONS(7200), 1, + ACTIONS(7406), 1, anon_sym_module, - ACTIONS(7384), 1, + ACTIONS(7635), 1, anon_sym_alias, - ACTIONS(7386), 1, + ACTIONS(7637), 1, anon_sym_const, - STATE(3880), 1, - sym_comment, - [116979] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5030), 1, - anon_sym_DOT2, - STATE(2459), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2500), 1, - sym_path, - STATE(3029), 1, - sym_cell_path, - STATE(3881), 1, + STATE(3950), 1, sym_comment, - ACTIONS(1896), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [117003] = 9, + [118547] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3946), 1, + ACTIONS(3771), 1, anon_sym_LBRACK, - ACTIONS(3990), 1, + ACTIONS(3958), 1, sym__newline, - ACTIONS(7388), 1, + ACTIONS(7639), 1, anon_sym_RBRACK, - STATE(3882), 1, + STATE(3951), 1, sym_comment, - STATE(4190), 1, + STATE(4207), 1, aux_sym__types_body_repeat1, - STATE(4694), 1, + STATE(4719), 1, sym_val_list, - STATE(4769), 1, + STATE(4730), 1, aux_sym__table_body_repeat1, - STATE(5326), 1, + STATE(5231), 1, sym__table_body, - [117031] = 9, + [118575] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1911), 1, + sym__entry_separator, + ACTIONS(7464), 1, + anon_sym_DOT2, + STATE(352), 1, + sym_path, + STATE(3952), 1, + sym_comment, + STATE(4013), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4407), 1, + sym_cell_path, + ACTIONS(1913), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [118601] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2555), 1, + ACTIONS(2594), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7194), 1, + ACTIONS(7400), 1, anon_sym_def, - ACTIONS(7196), 1, + ACTIONS(7402), 1, anon_sym_use, - ACTIONS(7198), 1, + ACTIONS(7404), 1, anon_sym_extern, - ACTIONS(7200), 1, + ACTIONS(7406), 1, anon_sym_module, - ACTIONS(7390), 1, + ACTIONS(7641), 1, anon_sym_alias, - ACTIONS(7392), 1, + ACTIONS(7643), 1, anon_sym_const, - STATE(3883), 1, - sym_comment, - [117059] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7214), 1, - anon_sym_LBRACK, - ACTIONS(7216), 1, - anon_sym_LPAREN, - ACTIONS(7218), 1, - anon_sym_DASH_DASH, - STATE(1681), 1, - sym_parameter_parens, - STATE(1682), 1, - sym_parameter_bracks, - STATE(3794), 1, - aux_sym_decl_def_repeat1, - STATE(3884), 1, + STATE(3953), 1, sym_comment, - STATE(4582), 1, - sym_long_flag, - [117087] = 7, + [118629] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7172), 1, + ACTIONS(7371), 1, + anon_sym_RBRACK, + ACTIONS(7374), 1, + anon_sym_DOT_DOT, + ACTIONS(7464), 1, anon_sym_DOT2, - STATE(3885), 1, + ACTIONS(7645), 1, + sym__entry_separator, + STATE(352), 1, + sym_path, + STATE(3954), 1, sym_comment, - STATE(3910), 1, + STATE(4013), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4272), 1, - sym_path, - STATE(4655), 1, + STATE(4448), 1, sym_cell_path, - ACTIONS(1902), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [117111] = 9, + [118657] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2555), 1, + ACTIONS(2594), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7194), 1, + ACTIONS(7400), 1, anon_sym_def, - ACTIONS(7196), 1, + ACTIONS(7402), 1, anon_sym_use, - ACTIONS(7198), 1, + ACTIONS(7404), 1, anon_sym_extern, - ACTIONS(7200), 1, + ACTIONS(7406), 1, anon_sym_module, - ACTIONS(7394), 1, + ACTIONS(7648), 1, anon_sym_alias, - ACTIONS(7396), 1, + ACTIONS(7650), 1, anon_sym_const, - STATE(3886), 1, + STATE(3955), 1, sym_comment, - [117139] = 8, + [118685] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1896), 1, + ACTIONS(1891), 1, sym__entry_separator, - ACTIONS(7258), 1, + ACTIONS(7456), 1, anon_sym_DOT2, - STATE(360), 1, + STATE(3903), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3956), 1, + sym_comment, + STATE(4313), 1, sym_path, - STATE(3887), 1, + STATE(4386), 1, + sym_cell_path, + ACTIONS(1893), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [118711] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7466), 1, + anon_sym_LBRACK, + ACTIONS(7468), 1, + anon_sym_LPAREN, + ACTIONS(7470), 1, + anon_sym_DASH_DASH, + STATE(1536), 1, + sym_parameter_parens, + STATE(1537), 1, + sym_parameter_bracks, + STATE(3957), 1, sym_comment, - STATE(3924), 1, + STATE(4312), 1, + aux_sym_decl_def_repeat1, + STATE(4670), 1, + sym_long_flag, + [118739] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1637), 1, + sym__unquoted_pattern_in_record, + ACTIONS(7652), 1, + anon_sym_DOT, + STATE(3958), 1, + sym_comment, + STATE(4524), 1, + sym__immediate_decimal, + ACTIONS(7654), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(7656), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [118763] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(7658), 1, + anon_sym_LBRACE, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(3413), 1, + sym__blosure, + STATE(3959), 1, + sym_comment, + STATE(3141), 2, + sym_block, + sym_val_closure, + [118786] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(7658), 1, + anon_sym_LBRACE, + STATE(3450), 1, + sym__blosure, + STATE(3960), 1, + sym_comment, + STATE(3983), 1, + aux_sym__repeat_newline, + STATE(3141), 2, + sym_block, + sym_val_closure, + [118809] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(7658), 1, + anon_sym_LBRACE, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(3452), 1, + sym__blosure, + STATE(3961), 1, + sym_comment, + STATE(3141), 2, + sym_block, + sym_val_closure, + [118832] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5354), 1, + anon_sym_RBRACK, + ACTIONS(5356), 1, + sym__entry_separator, + ACTIONS(7464), 1, + anon_sym_DOT2, + STATE(352), 1, + sym_path, + STATE(3962), 1, + sym_comment, + STATE(4013), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4250), 1, + STATE(4918), 1, sym_cell_path, - ACTIONS(1898), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [117165] = 5, + [118857] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7398), 1, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(7658), 1, + anon_sym_LBRACE, + STATE(3452), 1, + sym__blosure, + STATE(3963), 1, + sym_comment, + STATE(3985), 1, + aux_sym__repeat_newline, + STATE(3141), 2, + sym_block, + sym_val_closure, + [118880] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7574), 1, + sym__entry_separator, + ACTIONS(7662), 1, anon_sym_DOT_DOT2, - STATE(3888), 1, + STATE(3964), 1, sym_comment, - ACTIONS(7400), 2, + ACTIONS(7660), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(7664), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2118), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [117185] = 8, + [118901] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(886), 1, + ACTIONS(7486), 1, sym__entry_separator, - ACTIONS(6479), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6959), 1, + ACTIONS(7662), 1, anon_sym_DOT_DOT2, - ACTIONS(6963), 1, - sym_filesize_unit, - ACTIONS(6965), 1, - sym_duration_unit, - STATE(3889), 1, + STATE(3965), 1, sym_comment, - ACTIONS(6961), 2, + ACTIONS(7664), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [117211] = 9, - ACTIONS(103), 1, + ACTIONS(7666), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [118922] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2555), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7194), 1, - anon_sym_def, - ACTIONS(7196), 1, - anon_sym_use, - ACTIONS(7198), 1, - anon_sym_extern, - ACTIONS(7200), 1, - anon_sym_module, - ACTIONS(7402), 1, - anon_sym_alias, - ACTIONS(7404), 1, - anon_sym_const, - STATE(3890), 1, + ACTIONS(1792), 1, + sym__unquoted_pattern, + ACTIONS(7630), 1, + aux_sym__immediate_decimal_token5, + STATE(3966), 1, sym_comment, - [117239] = 4, + ACTIONS(1790), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [118941] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3891), 1, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7670), 1, + aux_sym__immediate_decimal_token5, + STATE(3967), 1, sym_comment, - ACTIONS(739), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(741), 5, - anon_sym_LBRACE, + ACTIONS(1790), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [117257] = 8, + ACTIONS(1792), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + [118962] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1888), 1, - sym__entry_separator, - ACTIONS(7258), 1, + ACTIONS(7672), 1, anon_sym_DOT2, - STATE(360), 1, + STATE(4582), 1, sym_path, - STATE(3892), 1, + STATE(3968), 2, sym_comment, - STATE(3924), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4226), 1, - sym_cell_path, - ACTIONS(1890), 2, + ACTIONS(1532), 3, anon_sym_RBRACK, - anon_sym_RBRACE, - [117283] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1882), 1, sym__entry_separator, - ACTIONS(7258), 1, - anon_sym_DOT2, - STATE(360), 1, - sym_path, - STATE(3893), 1, + sym__table_head_separator, + [118981] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(7658), 1, + anon_sym_LBRACE, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(3455), 1, + sym__blosure, + STATE(3969), 1, sym_comment, - STATE(3924), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4446), 1, - sym_cell_path, - ACTIONS(1885), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [117309] = 8, - ACTIONS(103), 1, + STATE(3141), 2, + sym_block, + sym_val_closure, + [119004] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7113), 1, - sym__entry_separator, - ACTIONS(7206), 1, - anon_sym_DOT2, - STATE(3813), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3894), 1, + ACTIONS(1792), 1, + sym__unquoted_pattern, + ACTIONS(7675), 1, + anon_sym_DOT, + ACTIONS(7677), 1, + aux_sym__immediate_decimal_token5, + STATE(3970), 1, sym_comment, - STATE(4188), 1, - sym_path, - STATE(4721), 1, - sym_cell_path, - ACTIONS(7406), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [117335] = 8, + ACTIONS(1790), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [119025] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(7658), 1, + anon_sym_LBRACE, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(3457), 1, + sym__blosure, + STATE(3971), 1, + sym_comment, + STATE(3141), 2, + sym_block, + sym_val_closure, + [119048] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(7658), 1, + anon_sym_LBRACE, + STATE(3457), 1, + sym__blosure, + STATE(3972), 1, + sym_comment, + STATE(3992), 1, + aux_sym__repeat_newline, + STATE(3141), 2, + sym_block, + sym_val_closure, + [119071] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2829), 1, + ACTIONS(2594), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7408), 1, + ACTIONS(7476), 1, sym_identifier, - ACTIONS(7410), 1, + ACTIONS(7576), 1, anon_sym_DOLLAR, - STATE(2872), 1, + STATE(2787), 1, sym__variable_name, - STATE(3051), 1, + STATE(2788), 1, sym_val_variable, - STATE(3895), 1, + STATE(3973), 1, sym_comment, - STATE(4689), 1, + STATE(4385), 1, sym__assignment_pattern, - [117360] = 8, + [119096] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5418), 1, - anon_sym_RBRACK, - ACTIONS(5420), 1, - sym__entry_separator, - ACTIONS(7258), 1, - anon_sym_DOT2, - STATE(360), 1, - sym_path, - STATE(3896), 1, + ACTIONS(2594), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7476), 1, + sym_identifier, + ACTIONS(7478), 1, + anon_sym_DOLLAR, + STATE(2788), 1, + sym_val_variable, + STATE(3974), 1, sym_comment, - STATE(3924), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4911), 1, - sym_cell_path, - [117385] = 5, + STATE(4196), 1, + sym__variable_name, + STATE(4388), 1, + sym__assignment_pattern, + [119121] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2594), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7476), 1, + sym_identifier, + ACTIONS(7478), 1, + anon_sym_DOLLAR, + STATE(2788), 1, + sym_val_variable, + STATE(3975), 1, + sym_comment, + STATE(4196), 1, + sym__variable_name, + STATE(4391), 1, + sym__assignment_pattern, + [119146] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7412), 1, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(7658), 1, + anon_sym_LBRACE, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(3460), 1, + sym__blosure, + STATE(3976), 1, + sym_comment, + STATE(3141), 2, + sym_block, + sym_val_closure, + [119169] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7679), 1, aux_sym__immediate_decimal_token5, - STATE(3897), 1, + STATE(3977), 1, sym_comment, - ACTIONS(1854), 2, + ACTIONS(1848), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1852), 3, + ACTIONS(1846), 3, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [117404] = 8, + [119188] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(447), 1, - anon_sym_RPAREN, - ACTIONS(7414), 1, + ACTIONS(2922), 1, sym__newline, - ACTIONS(7416), 1, - anon_sym_SEMI, - STATE(1369), 1, - aux_sym__parenthesized_body_repeat1, - STATE(3898), 1, + ACTIONS(7658), 1, + anon_sym_LBRACE, + STATE(3460), 1, + sym__blosure, + STATE(3978), 1, sym_comment, - STATE(4398), 1, - aux_sym__block_body_repeat1, - STATE(4562), 1, + STATE(3994), 1, aux_sym__repeat_newline, - [117429] = 7, + STATE(3141), 2, + sym_block, + sym_val_closure, + [119211] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7418), 1, + ACTIONS(7681), 1, anon_sym_LPAREN, - ACTIONS(7422), 1, + ACTIONS(7685), 1, anon_sym_DQUOTE2, - STATE(3899), 1, + STATE(3979), 1, sym_comment, - STATE(3903), 1, + STATE(3990), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4424), 1, + STATE(4475), 1, sym_expr_interpolated, - ACTIONS(7420), 2, + ACTIONS(7683), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [117452] = 7, + [119234] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6497), 1, + ACTIONS(6667), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6981), 1, + ACTIONS(6995), 1, aux_sym__immediate_decimal_token2, - ACTIONS(7424), 1, + ACTIONS(7687), 1, aux_sym_unquoted_token2, - STATE(3900), 1, + STATE(3980), 1, sym_comment, - STATE(4426), 1, + STATE(4569), 1, sym__immediate_decimal, - ACTIONS(6983), 2, + ACTIONS(6997), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [117475] = 7, + [119257] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6664), 1, + ACTIONS(6926), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6833), 1, + ACTIONS(7003), 1, aux_sym__immediate_decimal_token2, - ACTIONS(7424), 1, + ACTIONS(7687), 1, aux_sym_unquoted_token2, - STATE(3901), 1, + STATE(3981), 1, sym_comment, - STATE(5071), 1, + STATE(5128), 1, sym__immediate_decimal, - ACTIONS(6835), 2, + ACTIONS(7005), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [117498] = 6, + [119280] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4203), 1, + ACTIONS(4179), 1, anon_sym_DOT_DOT2, - ACTIONS(7424), 1, + ACTIONS(7687), 1, sym__unquoted_pattern, - STATE(3902), 1, + STATE(3982), 1, sym_comment, - ACTIONS(4205), 2, + ACTIONS(4181), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7689), 2, + sym_filesize_unit, + sym_duration_unit, + [119301] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(7658), 1, + anon_sym_LBRACE, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(3461), 1, + sym__blosure, + STATE(3983), 1, + sym_comment, + STATE(3141), 2, + sym_block, + sym_val_closure, + [119324] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(7658), 1, + anon_sym_LBRACE, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(3504), 1, + sym__blosure, + STATE(3984), 1, + sym_comment, + STATE(3141), 2, + sym_block, + sym_val_closure, + [119347] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(7658), 1, + anon_sym_LBRACE, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(3464), 1, + sym__blosure, + STATE(3985), 1, + sym_comment, + STATE(3141), 2, + sym_block, + sym_val_closure, + [119370] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7007), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(7654), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7691), 1, + aux_sym__immediate_decimal_token2, + STATE(3986), 1, + sym_comment, + STATE(4495), 1, + sym__immediate_decimal, + ACTIONS(7693), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [119393] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(7658), 1, + anon_sym_LBRACE, + STATE(3464), 1, + sym__blosure, + STATE(3987), 1, + sym_comment, + STATE(3997), 1, + aux_sym__repeat_newline, + STATE(3141), 2, + sym_block, + sym_val_closure, + [119416] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7007), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(7695), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7697), 1, + aux_sym__immediate_decimal_token2, + STATE(3988), 1, + sym_comment, + STATE(5319), 1, + sym__immediate_decimal, + ACTIONS(7699), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [119439] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7007), 1, + sym__unquoted_pattern_in_record, + ACTIONS(7701), 1, + anon_sym_DOT_DOT2, + STATE(3989), 1, + sym_comment, + ACTIONS(7703), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7426), 2, + ACTIONS(7705), 2, sym_filesize_unit, sym_duration_unit, - [117519] = 7, + [119460] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7418), 1, + ACTIONS(7681), 1, anon_sym_LPAREN, - ACTIONS(7428), 1, + ACTIONS(7707), 1, anon_sym_DQUOTE2, - STATE(3903), 1, + STATE(3990), 1, sym_comment, - STATE(3926), 1, + STATE(4136), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4424), 1, + STATE(4475), 1, sym_expr_interpolated, - ACTIONS(7420), 2, + ACTIONS(7683), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [117542] = 6, + [119483] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1848), 1, + sym__unquoted_pattern, + ACTIONS(7709), 1, + aux_sym__immediate_decimal_token5, + STATE(3991), 1, + sym_comment, + ACTIONS(1846), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [119502] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(7658), 1, + anon_sym_LBRACE, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(3465), 1, + sym__blosure, + STATE(3992), 1, + sym_comment, + STATE(3141), 2, + sym_block, + sym_val_closure, + [119525] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1679), 1, + ACTIONS(1695), 1, sym__unquoted_pattern_in_record, - STATE(3904), 1, + STATE(3993), 1, sym_comment, - STATE(5010), 1, + STATE(5448), 1, sym__immediate_decimal, - ACTIONS(7430), 2, + ACTIONS(7695), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(7432), 2, + ACTIONS(7711), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [117563] = 7, + [119546] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2907), 1, + ACTIONS(2922), 1, sym__newline, - ACTIONS(7434), 1, + ACTIONS(7658), 1, anon_sym_LBRACE, - STATE(3481), 1, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(3467), 1, sym__blosure, - STATE(3905), 1, + STATE(3994), 1, sym_comment, - STATE(4044), 1, - aux_sym__repeat_newline, - STATE(3288), 2, + STATE(3141), 2, sym_block, sym_val_closure, - [117586] = 8, + [119569] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2829), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7328), 1, - sym_identifier, - ACTIONS(7330), 1, - anon_sym_DOLLAR, - STATE(2825), 1, - sym_val_variable, - STATE(3906), 1, + STATE(3995), 1, sym_comment, - STATE(4066), 1, - sym__variable_name, - STATE(4691), 1, - sym__assignment_pattern, - [117611] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6670), 1, - anon_sym_LPAREN2, - ACTIONS(7438), 1, + ACTIONS(1508), 6, + anon_sym_RBRACK, sym__entry_separator, - STATE(2263), 1, - aux_sym__types_body_repeat2, - STATE(3907), 1, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [119584] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(7658), 1, + anon_sym_LBRACE, + STATE(3467), 1, + sym__blosure, + STATE(3996), 1, sym_comment, - STATE(4867), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7436), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [117634] = 5, + STATE(4000), 1, + aux_sym__repeat_newline, + STATE(3141), 2, + sym_block, + sym_val_closure, + [119607] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3808), 1, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(7658), 1, anon_sym_LBRACE, - STATE(3908), 1, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(3468), 1, + sym__blosure, + STATE(3997), 1, sym_comment, - STATE(4329), 1, + STATE(3141), 2, + sym_block, + sym_val_closure, + [119630] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3898), 1, + anon_sym_LBRACE, + STATE(3998), 1, + sym_comment, + STATE(4558), 1, sym_block, - ACTIONS(7441), 4, + ACTIONS(7713), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [117653] = 5, + [119649] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3808), 1, + ACTIONS(3898), 1, + anon_sym_LBRACE, + STATE(3999), 1, + sym_comment, + STATE(4560), 1, + sym_block, + ACTIONS(7713), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [119668] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(7658), 1, + anon_sym_LBRACE, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(3469), 1, + sym__blosure, + STATE(4000), 1, + sym_comment, + STATE(3141), 2, + sym_block, + sym_val_closure, + [119691] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(4001), 1, + sym_comment, + ACTIONS(1512), 6, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [119706] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(4002), 1, + sym_comment, + ACTIONS(1520), 6, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [119721] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3691), 1, + sym__entry_separator, + ACTIONS(7464), 1, + anon_sym_DOT2, + ACTIONS(7715), 1, + anon_sym_RBRACE, + STATE(352), 1, + sym_path, + STATE(4003), 1, + sym_comment, + STATE(4013), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4358), 1, + sym_cell_path, + [119746] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5089), 1, + anon_sym_DOT2, + STATE(2450), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2500), 1, + sym_path, + STATE(3004), 1, + sym_cell_path, + STATE(4004), 1, + sym_comment, + ACTIONS(5360), 2, + anon_sym_EQ, + anon_sym_GT2, + [119769] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(7658), 1, + anon_sym_LBRACE, + STATE(3111), 1, + sym__blosure, + STATE(4005), 1, + sym_comment, + STATE(4020), 1, + aux_sym__repeat_newline, + STATE(3141), 2, + sym_block, + sym_val_closure, + [119792] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(4006), 1, + sym_comment, + ACTIONS(1528), 6, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [119807] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(4007), 1, + sym_comment, + ACTIONS(1500), 6, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [119822] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(4008), 1, + sym_comment, + ACTIONS(1504), 6, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [119837] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(7658), 1, anon_sym_LBRACE, - STATE(3909), 1, + STATE(3486), 1, + sym__blosure, + STATE(4009), 1, sym_comment, - STATE(4330), 1, + STATE(4023), 1, + aux_sym__repeat_newline, + STATE(3141), 2, sym_block, - ACTIONS(7441), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [117672] = 6, + sym_val_closure, + [119860] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7172), 1, - anon_sym_DOT2, - STATE(3910), 1, - sym_comment, - STATE(3914), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4272), 1, - sym_path, - ACTIONS(1504), 3, + ACTIONS(7660), 1, + anon_sym_DOT_DOT, + ACTIONS(7662), 1, + anon_sym_DOT_DOT2, + ACTIONS(7719), 1, anon_sym_RBRACK, + ACTIONS(7721), 1, sym__entry_separator, - sym__table_head_separator, - [117693] = 6, + STATE(4010), 1, + sym_comment, + ACTIONS(7664), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [119883] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7443), 1, - anon_sym_DOT, - ACTIONS(7445), 1, - aux_sym__immediate_decimal_token5, - STATE(3911), 1, + ACTIONS(7662), 1, + anon_sym_DOT_DOT2, + ACTIONS(7666), 1, + anon_sym_DOT_DOT, + ACTIONS(7723), 1, + anon_sym_RBRACK, + ACTIONS(7726), 1, + sym__entry_separator, + STATE(4011), 1, sym_comment, - ACTIONS(1744), 2, + ACTIONS(7664), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [119906] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6914), 1, anon_sym_LPAREN2, + ACTIONS(7731), 1, sym__entry_separator, - ACTIONS(1746), 2, + STATE(2272), 1, + aux_sym__types_body_repeat2, + STATE(4012), 1, + sym_comment, + STATE(4991), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7729), 2, anon_sym_RBRACK, - sym__unquoted_pattern_in_list, - [117714] = 8, + anon_sym_DOT_DOT, + [119929] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, - anon_sym_DOT2, - ACTIONS(7447), 1, - anon_sym_RBRACE, - ACTIONS(7449), 1, + ACTIONS(1526), 1, sym__entry_separator, - STATE(360), 1, + ACTIONS(7464), 1, + anon_sym_DOT2, + STATE(352), 1, sym_path, - STATE(3912), 1, + STATE(4013), 1, sym_comment, - STATE(3924), 1, + STATE(4016), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4809), 1, - sym_cell_path, - [117739] = 8, + ACTIONS(1524), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [119952] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3669), 1, + ACTIONS(2170), 1, sym__entry_separator, - ACTIONS(7258), 1, - anon_sym_DOT2, - ACTIONS(7451), 1, + ACTIONS(7734), 1, + anon_sym_DOT_DOT2, + STATE(4014), 1, + sym_comment, + ACTIONS(2172), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - STATE(360), 1, - sym_path, - STATE(3913), 1, + ACTIONS(7736), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [119973] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7606), 1, + aux_sym__immediate_decimal_token5, + STATE(4015), 1, sym_comment, - STATE(3924), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4446), 1, - sym_cell_path, - [117764] = 5, + ACTIONS(1790), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1792), 3, + sym__newline, + anon_sym_SEMI, + sym__unquoted_pattern, + [119992] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7455), 1, + ACTIONS(1534), 1, + sym__entry_separator, + ACTIONS(7738), 1, anon_sym_DOT2, - STATE(4272), 1, + STATE(352), 1, sym_path, - STATE(3914), 2, + ACTIONS(1532), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(4016), 2, sym_comment, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1508), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [117783] = 8, - ACTIONS(103), 1, + [120013] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2829), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7328), 1, - sym_identifier, - ACTIONS(7330), 1, - anon_sym_DOLLAR, - STATE(2825), 1, - sym_val_variable, - STATE(3915), 1, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(7658), 1, + anon_sym_LBRACE, + STATE(3167), 1, + sym__blosure, + STATE(4017), 1, sym_comment, - STATE(4066), 1, - sym__variable_name, - STATE(4650), 1, - sym__assignment_pattern, - [117808] = 7, + STATE(4019), 1, + aux_sym__repeat_newline, + STATE(3141), 2, + sym_block, + sym_val_closure, + [120036] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5030), 1, - anon_sym_DOT2, - STATE(2459), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2500), 1, - sym_path, - STATE(2937), 1, - sym_cell_path, - STATE(3916), 1, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(7658), 1, + anon_sym_LBRACE, + STATE(3466), 1, + sym__blosure, + STATE(3959), 1, + aux_sym__repeat_newline, + STATE(4018), 1, sym_comment, - ACTIONS(5354), 2, - anon_sym_EQ, - anon_sym_GT2, - [117831] = 7, + STATE(3141), 2, + sym_block, + sym_val_closure, + [120059] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2907), 1, + ACTIONS(2922), 1, sym__newline, - ACTIONS(7434), 1, + ACTIONS(7658), 1, anon_sym_LBRACE, - STATE(527), 1, + STATE(485), 1, aux_sym__repeat_newline, - STATE(3491), 1, + STATE(3168), 1, sym__blosure, - STATE(3917), 1, + STATE(4019), 1, sym_comment, - STATE(3288), 2, + STATE(3141), 2, sym_block, sym_val_closure, - [117854] = 7, + [120082] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2907), 1, + ACTIONS(2922), 1, sym__newline, - ACTIONS(7434), 1, + ACTIONS(7658), 1, anon_sym_LBRACE, - STATE(3491), 1, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(3170), 1, sym__blosure, - STATE(3918), 1, + STATE(4020), 1, sym_comment, - STATE(3948), 1, - aux_sym__repeat_newline, - STATE(3288), 2, + STATE(3141), 2, sym_block, sym_val_closure, - [117877] = 7, + [120105] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2907), 1, + ACTIONS(2922), 1, sym__newline, - ACTIONS(7434), 1, + ACTIONS(7658), 1, anon_sym_LBRACE, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(3499), 1, + STATE(3168), 1, sym__blosure, - STATE(3919), 1, + STATE(4021), 1, sym_comment, - STATE(3288), 2, + STATE(4075), 1, + aux_sym__repeat_newline, + STATE(3141), 2, sym_block, sym_val_closure, - [117900] = 7, - ACTIONS(103), 1, + [120128] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6497), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6981), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7458), 1, - aux_sym_unquoted_token2, - STATE(3920), 1, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(7658), 1, + anon_sym_LBRACE, + STATE(3413), 1, + sym__blosure, + STATE(3984), 1, + aux_sym__repeat_newline, + STATE(4022), 1, sym_comment, - STATE(4426), 1, - sym__immediate_decimal, - ACTIONS(6983), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [117923] = 7, - ACTIONS(103), 1, + STATE(3141), 2, + sym_block, + sym_val_closure, + [120151] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6664), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6833), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7458), 1, - aux_sym_unquoted_token2, - STATE(3921), 1, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(7658), 1, + anon_sym_LBRACE, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(3470), 1, + sym__blosure, + STATE(4023), 1, sym_comment, - STATE(5071), 1, - sym__immediate_decimal, - ACTIONS(6835), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [117946] = 5, + STATE(3141), 2, + sym_block, + sym_val_closure, + [120174] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7462), 1, - anon_sym_AT, - STATE(4937), 1, - sym_attribute, - STATE(3922), 2, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(7658), 1, + anon_sym_LBRACE, + STATE(3480), 1, + sym__blosure, + STATE(4024), 1, sym_comment, - aux_sym_attribute_list_repeat1, - ACTIONS(7460), 3, - anon_sym_export, - anon_sym_def, - anon_sym_extern, - [117965] = 6, + STATE(4097), 1, + aux_sym__repeat_newline, + STATE(3141), 2, + sym_block, + sym_val_closure, + [120197] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4203), 1, - anon_sym_DOT_DOT2, - ACTIONS(7458), 1, - sym__unquoted_pattern, - STATE(3923), 1, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(7658), 1, + anon_sym_LBRACE, + STATE(3514), 1, + sym__blosure, + STATE(4025), 1, sym_comment, - ACTIONS(4205), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7426), 2, - sym_filesize_unit, - sym_duration_unit, - [117986] = 7, - ACTIONS(103), 1, + STATE(4067), 1, + aux_sym__repeat_newline, + STATE(3141), 2, + sym_block, + sym_val_closure, + [120220] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1506), 1, - sym__entry_separator, - ACTIONS(7258), 1, - anon_sym_DOT2, - STATE(360), 1, - sym_path, - STATE(3924), 1, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(7658), 1, + anon_sym_LBRACE, + STATE(3170), 1, + sym__blosure, + STATE(4026), 1, sym_comment, - STATE(3930), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1504), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [118009] = 6, - ACTIONS(103), 1, + STATE(4027), 1, + aux_sym__repeat_newline, + STATE(3141), 2, + sym_block, + sym_val_closure, + [120243] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2154), 1, - sym__entry_separator, - ACTIONS(7465), 1, - anon_sym_DOT_DOT2, - STATE(3925), 1, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(7658), 1, + anon_sym_LBRACE, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(3051), 1, + sym__blosure, + STATE(4027), 1, sym_comment, - ACTIONS(2156), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(7467), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [118030] = 6, - ACTIONS(103), 1, + STATE(3141), 2, + sym_block, + sym_val_closure, + [120266] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7469), 1, - anon_sym_LPAREN, - ACTIONS(7475), 1, - anon_sym_DQUOTE2, - STATE(4424), 1, - sym_expr_interpolated, - ACTIONS(7472), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - STATE(3926), 2, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(7658), 1, + anon_sym_LBRACE, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(3513), 1, + sym__blosure, + STATE(4028), 1, sym_comment, - aux_sym__inter_double_quotes_repeat1, - [118051] = 8, - ACTIONS(103), 1, + STATE(3141), 2, + sym_block, + sym_val_closure, + [120289] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2682), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2684), 1, - anon_sym_COLON2, - ACTIONS(5322), 1, - anon_sym_DOLLAR, - ACTIONS(7328), 1, - sym_identifier, - STATE(2825), 1, - sym_val_variable, - STATE(3927), 1, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(7658), 1, + anon_sym_LBRACE, + STATE(3051), 1, + sym__blosure, + STATE(4029), 1, sym_comment, - STATE(5322), 1, - sym__variable_name, - [118076] = 7, - ACTIONS(103), 1, + STATE(4057), 1, + aux_sym__repeat_newline, + STATE(3141), 2, + sym_block, + sym_val_closure, + [120312] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7418), 1, - anon_sym_LPAREN, - ACTIONS(7477), 1, - anon_sym_DQUOTE2, - STATE(3928), 1, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(7658), 1, + anon_sym_LBRACE, + STATE(3513), 1, + sym__blosure, + STATE(4030), 1, sym_comment, - STATE(4009), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4424), 1, - sym_expr_interpolated, - ACTIONS(7420), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [118099] = 6, + STATE(4066), 1, + aux_sym__repeat_newline, + STATE(3141), 2, + sym_block, + sym_val_closure, + [120335] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1635), 1, - sym__unquoted_pattern, - STATE(3929), 1, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(7658), 1, + anon_sym_LBRACE, + STATE(3470), 1, + sym__blosure, + STATE(4028), 1, + aux_sym__repeat_newline, + STATE(4031), 1, sym_comment, - STATE(5125), 1, - sym__immediate_decimal, - ACTIONS(6664), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6666), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [118120] = 6, + STATE(3141), 2, + sym_block, + sym_val_closure, + [120358] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1510), 1, + ACTIONS(5370), 1, + anon_sym_RBRACK, + ACTIONS(5372), 1, sym__entry_separator, - ACTIONS(7479), 1, + ACTIONS(7464), 1, anon_sym_DOT2, - STATE(360), 1, + STATE(352), 1, sym_path, - ACTIONS(1508), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(3930), 2, - sym_comment, + STATE(4013), 1, aux_sym__where_predicate_lhs_repeat1, - [118141] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7414), 1, - sym__newline, - ACTIONS(7416), 1, - anon_sym_SEMI, - ACTIONS(7482), 1, - anon_sym_RPAREN, - STATE(1369), 1, - aux_sym__parenthesized_body_repeat1, - STATE(3931), 1, + STATE(4032), 1, sym_comment, - STATE(4224), 1, - aux_sym__block_body_repeat1, - STATE(4562), 1, - aux_sym__repeat_newline, - [118166] = 6, + STATE(4927), 1, + sym_cell_path, + [120383] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2102), 1, + ACTIONS(2104), 1, sym__entry_separator, - ACTIONS(7484), 1, + ACTIONS(7741), 1, anon_sym_DOT_DOT2, - STATE(3932), 1, + STATE(4033), 1, sym_comment, - ACTIONS(2104), 2, + ACTIONS(2106), 2, anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(7486), 2, + ACTIONS(7743), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [118187] = 6, + [120404] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2110), 1, + ACTIONS(2112), 1, sym__entry_separator, - ACTIONS(7488), 1, + ACTIONS(7745), 1, anon_sym_DOT_DOT2, - STATE(3933), 1, + STATE(4034), 1, sym_comment, - ACTIONS(2112), 2, + ACTIONS(2114), 2, anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(7490), 2, + ACTIONS(7747), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [118208] = 6, + [120425] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(7658), 1, + anon_sym_LBRACE, + STATE(3081), 1, + sym__blosure, + STATE(4035), 1, + sym_comment, + STATE(4060), 1, + aux_sym__repeat_newline, + STATE(3141), 2, + sym_block, + sym_val_closure, + [120448] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2118), 1, + ACTIONS(2120), 1, sym__entry_separator, - ACTIONS(7492), 1, + ACTIONS(7749), 1, anon_sym_DOT_DOT2, - STATE(3934), 1, + STATE(4036), 1, sym_comment, - ACTIONS(2120), 2, + ACTIONS(2122), 2, anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(7494), 2, + ACTIONS(7751), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [118229] = 8, + [120469] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1912), 1, + ACTIONS(7753), 1, + aux_sym__immediate_decimal_token5, + STATE(4037), 1, + sym_comment, + ACTIONS(1846), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1848), 3, + sym__newline, + anon_sym_SEMI, + sym__unquoted_pattern, + [120488] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2822), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7755), 1, + sym_identifier, + ACTIONS(7757), 1, + anon_sym_DOLLAR, + STATE(2731), 1, + sym__variable_name, + STATE(3206), 1, + sym_val_variable, + STATE(4038), 1, + sym_comment, + STATE(4744), 1, + sym__assignment_pattern, + [120513] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1907), 1, sym__entry_separator, - ACTIONS(1914), 1, + ACTIONS(1909), 1, anon_sym_GT2, - ACTIONS(7206), 1, + ACTIONS(7456), 1, anon_sym_DOT2, - STATE(3813), 1, + STATE(3903), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(3935), 1, + STATE(4039), 1, sym_comment, - STATE(4188), 1, + STATE(4313), 1, sym_path, - STATE(4228), 1, + STATE(4392), 1, sym_cell_path, - [118254] = 8, + [120538] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1900), 1, + ACTIONS(1883), 1, sym__entry_separator, - ACTIONS(1902), 1, + ACTIONS(1885), 1, anon_sym_GT2, - ACTIONS(7206), 1, + ACTIONS(7456), 1, anon_sym_DOT2, - STATE(3813), 1, + STATE(3903), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(3936), 1, + STATE(4040), 1, sym_comment, - STATE(4188), 1, + STATE(4313), 1, sym_path, - STATE(4294), 1, + STATE(4448), 1, sym_cell_path, - [118279] = 8, + [120563] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1862), 1, + ACTIONS(1887), 1, sym__entry_separator, - ACTIONS(1864), 1, + ACTIONS(1889), 1, anon_sym_GT2, - ACTIONS(7206), 1, + ACTIONS(7456), 1, anon_sym_DOT2, - STATE(3813), 1, + STATE(3903), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(3937), 1, + STATE(4041), 1, sym_comment, - STATE(4188), 1, + STATE(4313), 1, sym_path, - STATE(4314), 1, + STATE(4470), 1, sym_cell_path, - [118304] = 5, + [120588] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1746), 1, - sym__unquoted_pattern, - ACTIONS(7312), 1, - aux_sym__immediate_decimal_token5, - STATE(3938), 1, + ACTIONS(7759), 1, + sym_long_flag_identifier, + ACTIONS(7761), 1, + anon_sym_EQ2, + STATE(4042), 1, sym_comment, - ACTIONS(1744), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [118323] = 7, + STATE(4833), 1, + sym__flag_equals_value, + ACTIONS(4282), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [120609] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7418), 1, + ACTIONS(7681), 1, anon_sym_LPAREN, - ACTIONS(7496), 1, + ACTIONS(7763), 1, anon_sym_DQUOTE2, - STATE(3939), 1, + STATE(4043), 1, sym_comment, - STATE(3942), 1, + STATE(4049), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4424), 1, + STATE(4475), 1, sym_expr_interpolated, - ACTIONS(7420), 2, + ACTIONS(7683), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [118346] = 7, + [120632] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4211), 1, + ACTIONS(4187), 1, aux_sym_unquoted_token2, - ACTIONS(6497), 1, + ACTIONS(6667), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6981), 1, + ACTIONS(6995), 1, aux_sym__immediate_decimal_token2, - STATE(3940), 1, + STATE(4044), 1, sym_comment, - STATE(4426), 1, + STATE(4569), 1, sym__immediate_decimal, - ACTIONS(6983), 2, + ACTIONS(6997), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [118369] = 7, + [120655] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4211), 1, + ACTIONS(4187), 1, aux_sym_unquoted_token2, - ACTIONS(6664), 1, + ACTIONS(6926), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6833), 1, + ACTIONS(7003), 1, aux_sym__immediate_decimal_token2, - STATE(3941), 1, + STATE(4045), 1, sym_comment, - STATE(5071), 1, + STATE(5128), 1, sym__immediate_decimal, - ACTIONS(6835), 2, + ACTIONS(7005), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [118392] = 7, + [120678] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7418), 1, - anon_sym_LPAREN, - ACTIONS(7498), 1, - anon_sym_DQUOTE2, - STATE(3926), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(3942), 1, + ACTIONS(1462), 1, + sym__entry_separator, + ACTIONS(7765), 1, + anon_sym_QMARK2, + STATE(4046), 1, sym_comment, - STATE(4424), 1, - sym_expr_interpolated, - ACTIONS(7420), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [118415] = 5, + ACTIONS(1460), 4, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_DOT_DOT, + anon_sym_DOT2, + [120697] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1854), 1, - sym__unquoted_pattern, - ACTIONS(7500), 1, - aux_sym__immediate_decimal_token5, - STATE(3943), 1, + ACTIONS(3898), 1, + anon_sym_LBRACE, + STATE(4047), 1, sym_comment, - ACTIONS(1852), 4, - anon_sym_if, + STATE(4508), 1, + sym_block, + ACTIONS(7767), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [118434] = 3, - ACTIONS(103), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [120716] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3944), 1, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(7658), 1, + anon_sym_LBRACE, + STATE(3408), 1, + sym__blosure, + STATE(4048), 1, sym_comment, - ACTIONS(1519), 6, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [118449] = 8, + STATE(4105), 1, + aux_sym__repeat_newline, + STATE(3141), 2, + sym_block, + sym_val_closure, + [120739] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5381), 1, - anon_sym_RBRACK, - ACTIONS(5383), 1, - sym__entry_separator, - ACTIONS(7258), 1, - anon_sym_DOT2, - STATE(360), 1, - sym_path, - STATE(3924), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3945), 1, + ACTIONS(7681), 1, + anon_sym_LPAREN, + ACTIONS(7769), 1, + anon_sym_DQUOTE2, + STATE(4049), 1, sym_comment, - STATE(4822), 1, - sym_cell_path, - [118474] = 3, + STATE(4136), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4475), 1, + sym_expr_interpolated, + ACTIONS(7683), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [120762] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(3946), 1, + ACTIONS(1699), 1, + sym__entry_separator, + ACTIONS(7771), 1, + anon_sym_DOT_DOT2, + STATE(4050), 1, sym_comment, - ACTIONS(1523), 6, + ACTIONS(1615), 2, anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [118489] = 3, - ACTIONS(103), 1, + anon_sym_RBRACE, + ACTIONS(7773), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [120783] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3947), 1, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(7658), 1, + anon_sym_LBRACE, + STATE(3504), 1, + sym__blosure, + STATE(4051), 1, sym_comment, - ACTIONS(1527), 6, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [118504] = 7, + STATE(4061), 1, + aux_sym__repeat_newline, + STATE(3141), 2, + sym_block, + sym_val_closure, + [120806] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2907), 1, + ACTIONS(2922), 1, sym__newline, - ACTIONS(7434), 1, + ACTIONS(7658), 1, anon_sym_LBRACE, - STATE(527), 1, + STATE(485), 1, aux_sym__repeat_newline, - STATE(3515), 1, + STATE(3411), 1, sym__blosure, - STATE(3948), 1, + STATE(4052), 1, sym_comment, - STATE(3288), 2, + STATE(3141), 2, sym_block, sym_val_closure, - [118527] = 3, + [120829] = 8, ACTIONS(103), 1, anon_sym_POUND, - STATE(3949), 1, - sym_comment, - ACTIONS(1531), 6, - anon_sym_RBRACK, + ACTIONS(5360), 1, sym__entry_separator, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, + ACTIONS(5752), 1, + anon_sym_GT2, + ACTIONS(7456), 1, anon_sym_DOT2, - [118542] = 3, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3950), 1, + STATE(3903), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4053), 1, sym_comment, - ACTIONS(1535), 6, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [118557] = 3, - ACTIONS(103), 1, + STATE(4313), 1, + sym_path, + STATE(4358), 1, + sym_cell_path, + [120854] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3951), 1, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(7658), 1, + anon_sym_LBRACE, + STATE(3411), 1, + sym__blosure, + STATE(4054), 1, sym_comment, - ACTIONS(1539), 6, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [118572] = 8, + STATE(4117), 1, + aux_sym__repeat_newline, + STATE(3141), 2, + sym_block, + sym_val_closure, + [120877] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, - anon_sym_DOT2, - ACTIONS(7502), 1, - anon_sym_RBRACE, - ACTIONS(7504), 1, - sym__entry_separator, - STATE(360), 1, - sym_path, - STATE(3924), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3952), 1, + ACTIONS(2822), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7476), 1, + sym_identifier, + ACTIONS(7478), 1, + anon_sym_DOLLAR, + STATE(2788), 1, + sym_val_variable, + STATE(4055), 1, sym_comment, - STATE(4785), 1, - sym_cell_path, - [118597] = 5, + STATE(4179), 1, + sym__variable_name, + STATE(4888), 1, + sym__assignment_pattern, + [120902] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7334), 1, - aux_sym__immediate_decimal_token5, - STATE(3953), 1, - sym_comment, - ACTIONS(1744), 2, + ACTIONS(4282), 1, sym__space, - anon_sym_LPAREN2, - ACTIONS(1746), 3, + ACTIONS(7775), 1, + sym_long_flag_identifier, + ACTIONS(7777), 1, + anon_sym_EQ2, + STATE(3193), 1, + sym__flag_equals_value, + STATE(4056), 1, + sym_comment, + ACTIONS(4280), 2, sym__newline, anon_sym_SEMI, - sym__unquoted_pattern, - [118616] = 8, - ACTIONS(103), 1, + [120925] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5354), 1, - sym__entry_separator, - ACTIONS(5717), 1, - anon_sym_GT2, - ACTIONS(7206), 1, - anon_sym_DOT2, - STATE(3813), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3954), 1, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(7658), 1, + anon_sym_LBRACE, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(3087), 1, + sym__blosure, + STATE(4057), 1, sym_comment, - STATE(4188), 1, - sym_path, - STATE(4446), 1, - sym_cell_path, - [118641] = 6, + STATE(3141), 2, + sym_block, + sym_val_closure, + [120948] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(57), 1, anon_sym_AT, - STATE(3922), 1, - aux_sym_attribute_list_repeat1, - STATE(3955), 1, + STATE(4058), 1, sym_comment, - STATE(4937), 1, + STATE(4079), 1, + aux_sym_attribute_list_repeat1, + STATE(4941), 1, sym_attribute, - ACTIONS(7506), 3, + ACTIONS(7779), 3, anon_sym_export, anon_sym_def, anon_sym_extern, - [118662] = 5, + [120969] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7508), 1, - aux_sym__immediate_decimal_token5, - STATE(3956), 1, + ACTIONS(2822), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7476), 1, + sym_identifier, + ACTIONS(7478), 1, + anon_sym_DOLLAR, + STATE(2788), 1, + sym_val_variable, + STATE(4059), 1, sym_comment, - ACTIONS(1852), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1854), 3, + STATE(4179), 1, + sym__variable_name, + STATE(4707), 1, + sym__assignment_pattern, + [120994] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2922), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(7658), 1, + anon_sym_LBRACE, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(3094), 1, + sym__blosure, + STATE(4060), 1, + sym_comment, + STATE(3141), 2, + sym_block, + sym_val_closure, + [121017] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(7658), 1, + anon_sym_LBRACE, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(3416), 1, + sym__blosure, + STATE(4061), 1, + sym_comment, + STATE(3141), 2, + sym_block, + sym_val_closure, + [121040] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(7658), 1, + anon_sym_LBRACE, + STATE(3416), 1, + sym__blosure, + STATE(4062), 1, + sym_comment, + STATE(4121), 1, + aux_sym__repeat_newline, + STATE(3141), 2, + sym_block, + sym_val_closure, + [121063] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(7658), 1, + anon_sym_LBRACE, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(3417), 1, + sym__blosure, + STATE(4063), 1, + sym_comment, + STATE(3141), 2, + sym_block, + sym_val_closure, + [121086] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(7658), 1, + anon_sym_LBRACE, + STATE(3417), 1, + sym__blosure, + STATE(4064), 1, + sym_comment, + STATE(4122), 1, + aux_sym__repeat_newline, + STATE(3141), 2, + sym_block, + sym_val_closure, + [121109] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(7658), 1, + anon_sym_LBRACE, + STATE(3509), 1, + sym__blosure, + STATE(4063), 1, + aux_sym__repeat_newline, + STATE(4065), 1, + sym_comment, + STATE(3141), 2, + sym_block, + sym_val_closure, + [121132] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(7658), 1, + anon_sym_LBRACE, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(3528), 1, + sym__blosure, + STATE(4066), 1, + sym_comment, + STATE(3141), 2, + sym_block, + sym_val_closure, + [121155] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(7658), 1, + anon_sym_LBRACE, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(3418), 1, + sym__blosure, + STATE(4067), 1, + sym_comment, + STATE(3141), 2, + sym_block, + sym_val_closure, + [121178] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7586), 1, + aux_sym__immediate_decimal_token5, + STATE(4068), 1, + sym_comment, + ACTIONS(1792), 2, + anon_sym_DOT_DOT2, sym__unquoted_pattern, - [118681] = 7, + ACTIONS(1790), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [121197] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4355), 1, - sym__space, - ACTIONS(7510), 1, - sym_long_flag_identifier, - ACTIONS(7512), 1, - anon_sym_EQ2, - STATE(3040), 1, - sym__flag_equals_value, - STATE(3957), 1, + ACTIONS(2754), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2756), 1, + anon_sym_COLON2, + ACTIONS(5273), 1, + anon_sym_DOLLAR, + ACTIONS(7476), 1, + sym_identifier, + STATE(2788), 1, + sym_val_variable, + STATE(4069), 1, sym_comment, - ACTIONS(4353), 2, + STATE(5454), 1, + sym__variable_name, + [121222] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2922), 1, sym__newline, - anon_sym_SEMI, - [118704] = 5, - ACTIONS(103), 1, + ACTIONS(7658), 1, + anon_sym_LBRACE, + STATE(3418), 1, + sym__blosure, + STATE(4070), 1, + sym_comment, + STATE(4125), 1, + aux_sym__repeat_newline, + STATE(3141), 2, + sym_block, + sym_val_closure, + [121245] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1450), 1, - sym__entry_separator, - ACTIONS(7514), 1, - anon_sym_QMARK2, - STATE(3958), 1, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(7658), 1, + anon_sym_LBRACE, + STATE(3528), 1, + sym__blosure, + STATE(4071), 1, sym_comment, - ACTIONS(1448), 4, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_DOT_DOT, - anon_sym_DOT2, - [118723] = 7, - ACTIONS(103), 1, + STATE(4076), 1, + aux_sym__repeat_newline, + STATE(3141), 2, + sym_block, + sym_val_closure, + [121268] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6779), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(7254), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7516), 1, - aux_sym__immediate_decimal_token2, - STATE(3959), 1, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(7658), 1, + anon_sym_LBRACE, + STATE(3419), 1, + sym__blosure, + STATE(4072), 1, sym_comment, - STATE(4377), 1, - sym__immediate_decimal, - ACTIONS(7518), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [118746] = 7, + STATE(4131), 1, + aux_sym__repeat_newline, + STATE(3141), 2, + sym_block, + sym_val_closure, + [121291] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(7658), 1, + anon_sym_LBRACE, + STATE(3582), 1, + sym__blosure, + STATE(4052), 1, + aux_sym__repeat_newline, + STATE(4073), 1, + sym_comment, + STATE(3141), 2, + sym_block, + sym_val_closure, + [121314] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6779), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(7430), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7520), 1, - aux_sym__immediate_decimal_token2, - STATE(3960), 1, + ACTIONS(7681), 1, + anon_sym_LPAREN, + ACTIONS(7781), 1, + anon_sym_DQUOTE2, + STATE(4074), 1, sym_comment, - STATE(5156), 1, - sym__immediate_decimal, - ACTIONS(7522), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [118769] = 6, + STATE(4081), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4475), 1, + sym_expr_interpolated, + ACTIONS(7683), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [121337] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6779), 1, - sym__unquoted_pattern_in_record, - ACTIONS(7524), 1, - anon_sym_DOT_DOT2, - STATE(3961), 1, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(7658), 1, + anon_sym_LBRACE, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(3081), 1, + sym__blosure, + STATE(4075), 1, sym_comment, - ACTIONS(7526), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7528), 2, - sym_filesize_unit, - sym_duration_unit, - [118790] = 8, + STATE(3141), 2, + sym_block, + sym_val_closure, + [121360] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(7658), 1, + anon_sym_LBRACE, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(3422), 1, + sym__blosure, + STATE(4076), 1, + sym_comment, + STATE(3141), 2, + sym_block, + sym_val_closure, + [121383] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7783), 1, + sym__newline, + ACTIONS(7785), 1, + anon_sym_SEMI, + ACTIONS(7787), 1, + anon_sym_RPAREN, + STATE(1365), 1, + aux_sym__parenthesized_body_repeat1, + STATE(4077), 1, + sym_comment, + STATE(4626), 1, + aux_sym__block_body_repeat1, + STATE(4654), 1, + aux_sym__repeat_newline, + [121408] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3898), 1, + anon_sym_LBRACE, + STATE(4078), 1, + sym_comment, + STATE(4439), 1, + sym_block, + ACTIONS(7789), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [121427] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7793), 1, + anon_sym_AT, + STATE(4941), 1, + sym_attribute, + STATE(4079), 2, + sym_comment, + aux_sym_attribute_list_repeat1, + ACTIONS(7791), 3, + anon_sym_export, + anon_sym_def, + anon_sym_extern, + [121446] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2555), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7328), 1, - sym_identifier, - ACTIONS(7349), 1, - anon_sym_DOLLAR, - STATE(2824), 1, - sym__variable_name, - STATE(2825), 1, - sym_val_variable, - STATE(3962), 1, + ACTIONS(1462), 1, + sym__entry_separator, + ACTIONS(7765), 1, + anon_sym_BANG, + STATE(4080), 1, sym_comment, - STATE(4303), 1, - sym__assignment_pattern, - [118815] = 6, - ACTIONS(3), 1, + ACTIONS(1460), 4, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_DOT_DOT, + anon_sym_DOT2, + [121465] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7530), 1, - sym_long_flag_identifier, - ACTIONS(7532), 1, - anon_sym_EQ2, - STATE(3963), 1, - sym_comment, - STATE(4522), 1, - sym__flag_equals_value, - ACTIONS(4355), 3, - anon_sym_LBRACK, + ACTIONS(7681), 1, anon_sym_LPAREN, - anon_sym_DASH_DASH, - [118836] = 5, + ACTIONS(7796), 1, + anon_sym_DQUOTE2, + STATE(4081), 1, + sym_comment, + STATE(4136), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4475), 1, + sym_expr_interpolated, + ACTIONS(7683), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [121488] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3808), 1, + ACTIONS(3898), 1, anon_sym_LBRACE, - STATE(3964), 1, + STATE(4082), 1, sym_comment, - STATE(4389), 1, + STATE(4517), 1, sym_block, - ACTIONS(7534), 4, + ACTIONS(7798), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [118855] = 6, + [121507] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1713), 1, - sym__entry_separator, - ACTIONS(7536), 1, + ACTIONS(1699), 1, + sym__space, + ACTIONS(7800), 1, anon_sym_DOT_DOT2, - STATE(3965), 1, + STATE(4083), 1, sym_comment, - ACTIONS(1614), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(7538), 2, + ACTIONS(1615), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(7802), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [118876] = 5, + [121528] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1450), 1, + ACTIONS(7464), 1, + anon_sym_DOT2, + ACTIONS(7804), 1, + anon_sym_RBRACE, + ACTIONS(7806), 1, sym__entry_separator, - ACTIONS(7514), 1, - anon_sym_BANG, - STATE(3966), 1, + STATE(352), 1, + sym_path, + STATE(4013), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4084), 1, sym_comment, - ACTIONS(1448), 4, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_DOT_DOT, - anon_sym_DOT2, - [118895] = 7, + STATE(5049), 1, + sym_cell_path, + [121553] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2170), 1, + sym__space, + ACTIONS(7808), 1, + anon_sym_DOT_DOT2, + STATE(4085), 1, + sym_comment, + ACTIONS(2172), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(7810), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [121574] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7418), 1, + ACTIONS(7681), 1, anon_sym_LPAREN, - ACTIONS(7540), 1, + ACTIONS(7812), 1, anon_sym_DQUOTE2, - STATE(3967), 1, + STATE(4086), 1, sym_comment, - STATE(3973), 1, + STATE(4090), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4424), 1, + STATE(4475), 1, sym_expr_interpolated, - ACTIONS(7420), 2, + ACTIONS(7683), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [118918] = 7, + [121597] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6497), 1, + ACTIONS(6667), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6981), 1, + ACTIONS(6995), 1, aux_sym__immediate_decimal_token2, - ACTIONS(7079), 1, + ACTIONS(7285), 1, aux_sym_unquoted_token2, - STATE(3968), 1, + STATE(4087), 1, sym_comment, - STATE(4426), 1, + STATE(4569), 1, sym__immediate_decimal, - ACTIONS(6983), 2, + ACTIONS(6997), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [118941] = 7, + [121620] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6664), 1, + ACTIONS(6926), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6833), 1, + ACTIONS(7003), 1, aux_sym__immediate_decimal_token2, - ACTIONS(7079), 1, + ACTIONS(7285), 1, aux_sym_unquoted_token2, - STATE(3969), 1, + STATE(4088), 1, sym_comment, - STATE(5071), 1, + STATE(5128), 1, sym__immediate_decimal, - ACTIONS(6835), 2, + ACTIONS(7005), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [118964] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7542), 1, - anon_sym_RBRACK, - ACTIONS(7544), 1, - anon_sym_DOT_DOT, - ACTIONS(7546), 1, - anon_sym_DOT_DOT2, - ACTIONS(7550), 1, - sym__entry_separator, - STATE(3970), 1, - sym_comment, - ACTIONS(7548), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [118987] = 5, + [121643] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7361), 1, - aux_sym__immediate_decimal_token5, - STATE(3971), 1, - sym_comment, - ACTIONS(1746), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1744), 3, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [119006] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7546), 1, - anon_sym_DOT_DOT2, - ACTIONS(7552), 1, - anon_sym_RBRACK, - ACTIONS(7555), 1, - anon_sym_DOT_DOT, - ACTIONS(7557), 1, - sym__entry_separator, - STATE(3972), 1, + ACTIONS(1637), 1, + sym__unquoted_pattern_in_record, + STATE(4089), 1, sym_comment, - ACTIONS(7548), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [119029] = 7, + STATE(5453), 1, + sym__immediate_decimal, + ACTIONS(7695), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(7711), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [121664] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7418), 1, + ACTIONS(7681), 1, anon_sym_LPAREN, - ACTIONS(7560), 1, + ACTIONS(7814), 1, anon_sym_DQUOTE2, - STATE(3926), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(3973), 1, + STATE(4090), 1, sym_comment, - STATE(4424), 1, + STATE(4136), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4475), 1, sym_expr_interpolated, - ACTIONS(7420), 2, + ACTIONS(7683), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [119052] = 7, + [121687] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3898), 1, + anon_sym_LBRACE, + STATE(4091), 1, + sym_comment, + STATE(4533), 1, + sym_block, + ACTIONS(7816), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [121706] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6670), 1, + ACTIONS(7818), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7820), 1, + aux_sym__immediate_decimal_token5, + STATE(4092), 1, + sym_comment, + ACTIONS(1730), 2, anon_sym_LPAREN2, - ACTIONS(7438), 1, sym__entry_separator, - STATE(2262), 1, - aux_sym__types_body_repeat2, - STATE(3974), 1, + ACTIONS(1732), 2, + anon_sym_RBRACE, + sym__unquoted_pattern_in_record, + [121727] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3898), 1, + anon_sym_LBRACE, + STATE(4093), 1, sym_comment, - STATE(4867), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7562), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [119075] = 7, + STATE(4534), 1, + sym_block, + ACTIONS(7816), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [121746] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7418), 1, + ACTIONS(7681), 1, anon_sym_LPAREN, - ACTIONS(7564), 1, + ACTIONS(7822), 1, anon_sym_DQUOTE2, - STATE(3975), 1, + STATE(4094), 1, sym_comment, - STATE(3978), 1, + STATE(4098), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4424), 1, + STATE(4475), 1, sym_expr_interpolated, - ACTIONS(7420), 2, + ACTIONS(7683), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [119098] = 7, + [121769] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5160), 1, + ACTIONS(5118), 1, aux_sym_unquoted_token2, - ACTIONS(6497), 1, + ACTIONS(6667), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6981), 1, + ACTIONS(6995), 1, aux_sym__immediate_decimal_token2, - STATE(3976), 1, + STATE(4095), 1, sym_comment, - STATE(4426), 1, + STATE(4569), 1, sym__immediate_decimal, - ACTIONS(6983), 2, + ACTIONS(6997), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [119121] = 7, + [121792] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5160), 1, + ACTIONS(5118), 1, aux_sym_unquoted_token2, - ACTIONS(6664), 1, + ACTIONS(6926), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6833), 1, + ACTIONS(7003), 1, aux_sym__immediate_decimal_token2, - STATE(3977), 1, + STATE(4096), 1, sym_comment, - STATE(5071), 1, + STATE(5128), 1, sym__immediate_decimal, - ACTIONS(6835), 2, + ACTIONS(7005), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [119144] = 7, + [121815] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(7658), 1, + anon_sym_LBRACE, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(3514), 1, + sym__blosure, + STATE(4097), 1, + sym_comment, + STATE(3141), 2, + sym_block, + sym_val_closure, + [121838] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7418), 1, + ACTIONS(7681), 1, anon_sym_LPAREN, - ACTIONS(7566), 1, + ACTIONS(7824), 1, anon_sym_DQUOTE2, - STATE(3926), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(3978), 1, + STATE(4098), 1, sym_comment, - STATE(4424), 1, + STATE(4136), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4475), 1, sym_expr_interpolated, - ACTIONS(7420), 2, + ACTIONS(7683), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [119167] = 8, + [121861] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2555), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7328), 1, - sym_identifier, - ACTIONS(7330), 1, - anon_sym_DOLLAR, - STATE(2825), 1, - sym_val_variable, - STATE(3979), 1, + ACTIONS(7464), 1, + anon_sym_DOT2, + ACTIONS(7826), 1, + anon_sym_RBRACE, + ACTIONS(7828), 1, + sym__entry_separator, + STATE(352), 1, + sym_path, + STATE(4013), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4099), 1, sym_comment, - STATE(4186), 1, - sym__variable_name, - STATE(4305), 1, - sym__assignment_pattern, - [119192] = 6, + STATE(5021), 1, + sym_cell_path, + [121886] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7568), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7570), 1, - aux_sym__immediate_decimal_token5, - STATE(3980), 1, + ACTIONS(7681), 1, + anon_sym_LPAREN, + ACTIONS(7830), 1, + anon_sym_DQUOTE2, + STATE(4100), 1, sym_comment, - ACTIONS(1770), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1772), 2, - anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [119213] = 7, + STATE(4103), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4475), 1, + sym_expr_interpolated, + ACTIONS(7683), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [121909] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5071), 1, + ACTIONS(5061), 1, aux_sym_unquoted_token2, - ACTIONS(6497), 1, + ACTIONS(6667), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6981), 1, + ACTIONS(6995), 1, aux_sym__immediate_decimal_token2, - STATE(3981), 1, + STATE(4101), 1, sym_comment, - STATE(4426), 1, + STATE(4569), 1, sym__immediate_decimal, - ACTIONS(6983), 2, + ACTIONS(6997), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [119236] = 7, + [121932] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5071), 1, + ACTIONS(5061), 1, aux_sym_unquoted_token2, - ACTIONS(6664), 1, + ACTIONS(6926), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6833), 1, + ACTIONS(7003), 1, aux_sym__immediate_decimal_token2, - STATE(3982), 1, + STATE(4102), 1, sym_comment, - STATE(5071), 1, + STATE(5128), 1, sym__immediate_decimal, - ACTIONS(6835), 2, + ACTIONS(7005), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [119259] = 7, + [121955] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7418), 1, + ACTIONS(7681), 1, anon_sym_LPAREN, - ACTIONS(7572), 1, + ACTIONS(7832), 1, anon_sym_DQUOTE2, - STATE(3926), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(3983), 1, + STATE(4103), 1, sym_comment, - STATE(4424), 1, + STATE(4136), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4475), 1, sym_expr_interpolated, - ACTIONS(7420), 2, + ACTIONS(7683), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [119282] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1713), 1, - sym__space, - ACTIONS(7574), 1, - anon_sym_DOT_DOT2, - STATE(3984), 1, - sym_comment, - ACTIONS(1614), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(7576), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [119303] = 7, + [121978] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7418), 1, + ACTIONS(7681), 1, anon_sym_LPAREN, - ACTIONS(7578), 1, + ACTIONS(7834), 1, anon_sym_DQUOTE2, - STATE(3985), 1, + STATE(4104), 1, sym_comment, - STATE(3987), 1, + STATE(4108), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4424), 1, + STATE(4475), 1, sym_expr_interpolated, - ACTIONS(7420), 2, + ACTIONS(7683), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [119326] = 5, + [122001] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3808), 1, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(7658), 1, anon_sym_LBRACE, - STATE(3986), 1, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(3429), 1, + sym__blosure, + STATE(4105), 1, sym_comment, - STATE(4468), 1, + STATE(3141), 2, sym_block, - ACTIONS(7580), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [119345] = 7, + sym_val_closure, + [122024] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2594), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7476), 1, + sym_identifier, + ACTIONS(7576), 1, + anon_sym_DOLLAR, + STATE(2776), 1, + sym__variable_name, + STATE(2788), 1, + sym_val_variable, + STATE(4106), 1, + sym_comment, + STATE(4830), 1, + sym__assignment_pattern_parenthesized, + [122049] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2594), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7476), 1, + sym_identifier, + ACTIONS(7478), 1, + anon_sym_DOLLAR, + STATE(2788), 1, + sym_val_variable, + STATE(4107), 1, + sym_comment, + STATE(4228), 1, + sym__variable_name, + STATE(4845), 1, + sym__assignment_pattern_parenthesized, + [122074] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7418), 1, + ACTIONS(7681), 1, anon_sym_LPAREN, - ACTIONS(7582), 1, + ACTIONS(7836), 1, anon_sym_DQUOTE2, - STATE(3926), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(3987), 1, + STATE(4108), 1, sym_comment, - STATE(4424), 1, + STATE(4136), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4475), 1, sym_expr_interpolated, - ACTIONS(7420), 2, + ACTIONS(7683), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [119368] = 6, + [122097] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2154), 1, + ACTIONS(2104), 1, sym__space, - ACTIONS(7584), 1, + ACTIONS(7838), 1, anon_sym_DOT_DOT2, - STATE(3988), 1, + STATE(4109), 1, sym_comment, - ACTIONS(2156), 2, + ACTIONS(2106), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(7840), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [122118] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2112), 1, + sym__space, + ACTIONS(7842), 1, + anon_sym_DOT_DOT2, + STATE(4110), 1, + sym_comment, + ACTIONS(2114), 2, sym__newline, anon_sym_SEMI, - ACTIONS(7586), 2, + ACTIONS(7844), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [119389] = 7, + [122139] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2594), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7476), 1, + sym_identifier, + ACTIONS(7478), 1, + anon_sym_DOLLAR, + STATE(2788), 1, + sym_val_variable, + STATE(4111), 1, + sym_comment, + STATE(4228), 1, + sym__variable_name, + STATE(4857), 1, + sym__assignment_pattern_parenthesized, + [122164] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2907), 1, + ACTIONS(2922), 1, sym__newline, - ACTIONS(7434), 1, + ACTIONS(7658), 1, anon_sym_LBRACE, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(3512), 1, + STATE(3429), 1, sym__blosure, - STATE(3989), 1, + STATE(4112), 1, sym_comment, - STATE(3288), 2, + STATE(4142), 1, + aux_sym__repeat_newline, + STATE(3141), 2, sym_block, sym_val_closure, - [119412] = 7, + [122187] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2120), 1, + sym__space, + ACTIONS(7846), 1, + anon_sym_DOT_DOT2, + STATE(4113), 1, + sym_comment, + ACTIONS(2122), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(7848), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [122208] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7418), 1, + ACTIONS(7681), 1, anon_sym_LPAREN, - ACTIONS(7588), 1, + ACTIONS(7850), 1, anon_sym_DQUOTE2, - STATE(3990), 1, + STATE(4114), 1, sym_comment, - STATE(3994), 1, + STATE(4115), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4424), 1, + STATE(4475), 1, sym_expr_interpolated, - ACTIONS(7420), 2, + ACTIONS(7683), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [119435] = 6, - ACTIONS(3), 1, + [122231] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1635), 1, - sym__unquoted_pattern_in_record, - STATE(3991), 1, + ACTIONS(7681), 1, + anon_sym_LPAREN, + ACTIONS(7852), 1, + anon_sym_DQUOTE2, + STATE(4115), 1, sym_comment, - STATE(5243), 1, - sym__immediate_decimal, - ACTIONS(7430), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(7432), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [119456] = 5, + STATE(4136), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4475), 1, + sym_expr_interpolated, + ACTIONS(7683), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [122254] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7681), 1, + anon_sym_LPAREN, + ACTIONS(7854), 1, + anon_sym_DQUOTE2, + STATE(4116), 1, + sym_comment, + STATE(4119), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4475), 1, + sym_expr_interpolated, + ACTIONS(7683), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [122277] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3808), 1, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(7658), 1, anon_sym_LBRACE, - STATE(3992), 1, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(3430), 1, + sym__blosure, + STATE(4117), 1, sym_comment, - STATE(4484), 1, + STATE(3141), 2, sym_block, - ACTIONS(7590), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [119475] = 5, + sym_val_closure, + [122300] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3808), 1, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(7658), 1, anon_sym_LBRACE, - STATE(3993), 1, + STATE(3430), 1, + sym__blosure, + STATE(4118), 1, sym_comment, - STATE(4488), 1, + STATE(4144), 1, + aux_sym__repeat_newline, + STATE(3141), 2, sym_block, - ACTIONS(7590), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [119494] = 7, + sym_val_closure, + [122323] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7418), 1, + ACTIONS(7681), 1, anon_sym_LPAREN, - ACTIONS(7592), 1, + ACTIONS(7856), 1, anon_sym_DQUOTE2, - STATE(3926), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(3994), 1, + STATE(4119), 1, sym_comment, - STATE(4424), 1, + STATE(4136), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4475), 1, sym_expr_interpolated, - ACTIONS(7420), 2, + ACTIONS(7683), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [119517] = 7, + [122346] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2907), 1, + ACTIONS(2922), 1, sym__newline, - ACTIONS(7434), 1, + ACTIONS(7658), 1, anon_sym_LBRACE, - STATE(3512), 1, + STATE(3431), 1, sym__blosure, - STATE(3917), 1, - aux_sym__repeat_newline, - STATE(3995), 1, + STATE(4120), 1, sym_comment, - STATE(3288), 2, + STATE(4146), 1, + aux_sym__repeat_newline, + STATE(3141), 2, sym_block, sym_val_closure, - [119540] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7418), 1, - anon_sym_LPAREN, - ACTIONS(7594), 1, - anon_sym_DQUOTE2, - STATE(3996), 1, - sym_comment, - STATE(3999), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4424), 1, - sym_expr_interpolated, - ACTIONS(7420), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [119563] = 7, + [122369] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2907), 1, + ACTIONS(2922), 1, sym__newline, - ACTIONS(7434), 1, + ACTIONS(7658), 1, anon_sym_LBRACE, - STATE(527), 1, + STATE(485), 1, aux_sym__repeat_newline, - STATE(3392), 1, + STATE(3434), 1, sym__blosure, - STATE(3997), 1, + STATE(4121), 1, sym_comment, - STATE(3288), 2, + STATE(3141), 2, sym_block, sym_val_closure, - [119586] = 7, + [122392] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2907), 1, + ACTIONS(2922), 1, sym__newline, - ACTIONS(7434), 1, + ACTIONS(7658), 1, anon_sym_LBRACE, - STATE(3392), 1, - sym__blosure, - STATE(3919), 1, + STATE(485), 1, aux_sym__repeat_newline, - STATE(3998), 1, + STATE(3435), 1, + sym__blosure, + STATE(4122), 1, sym_comment, - STATE(3288), 2, + STATE(3141), 2, sym_block, sym_val_closure, - [119609] = 7, - ACTIONS(103), 1, + [122415] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7418), 1, - anon_sym_LPAREN, - ACTIONS(7596), 1, - anon_sym_DQUOTE2, - STATE(3926), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(3999), 1, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(7658), 1, + anon_sym_LBRACE, + STATE(3435), 1, + sym__blosure, + STATE(4123), 1, sym_comment, - STATE(4424), 1, - sym_expr_interpolated, - ACTIONS(7420), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [119632] = 5, + STATE(4171), 1, + aux_sym__repeat_newline, + STATE(3141), 2, + sym_block, + sym_val_closure, + [122438] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7276), 1, + ACTIONS(7498), 1, aux_sym__immediate_decimal_token5, - STATE(4000), 1, + STATE(4124), 1, sym_comment, - ACTIONS(1744), 2, + ACTIONS(1790), 2, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1746), 3, + ACTIONS(1792), 3, anon_sym_RBRACK, anon_sym_DOT_DOT, sym__unquoted_pattern_in_list, - [119651] = 5, + [122457] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(7658), 1, + anon_sym_LBRACE, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(3436), 1, + sym__blosure, + STATE(4125), 1, + sym_comment, + STATE(3141), 2, + sym_block, + sym_val_closure, + [122480] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(461), 1, + anon_sym_RPAREN, + ACTIONS(7783), 1, + sym__newline, + ACTIONS(7785), 1, + anon_sym_SEMI, + STATE(1365), 1, + aux_sym__parenthesized_body_repeat1, + STATE(4126), 1, + sym_comment, + STATE(4440), 1, + aux_sym__block_body_repeat1, + STATE(4654), 1, + aux_sym__repeat_newline, + [122505] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7598), 1, + ACTIONS(7858), 1, aux_sym__immediate_decimal_token5, - STATE(4001), 1, + STATE(4127), 1, sym_comment, - ACTIONS(1852), 2, + ACTIONS(1846), 2, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1854), 3, + ACTIONS(1848), 3, anon_sym_RBRACK, anon_sym_DOT_DOT, sym__unquoted_pattern_in_list, - [119670] = 6, + [122524] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7860), 1, + anon_sym_DOT, + ACTIONS(7862), 1, + aux_sym__immediate_decimal_token5, + STATE(4128), 1, + sym_comment, + ACTIONS(1790), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1792), 2, + anon_sym_RBRACE, + sym__unquoted_pattern_in_record, + [122545] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2102), 1, + ACTIONS(5460), 1, sym__space, - ACTIONS(7600), 1, - anon_sym_DOT_DOT2, - STATE(4002), 1, + ACTIONS(7777), 1, + anon_sym_EQ2, + ACTIONS(7864), 1, + sym_short_flag_identifier, + STATE(3146), 1, + sym__flag_equals_value, + STATE(4129), 1, sym_comment, - ACTIONS(2104), 2, + ACTIONS(5458), 2, sym__newline, anon_sym_SEMI, - ACTIONS(7602), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [119691] = 6, + [122568] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2110), 1, + ACTIONS(5511), 1, sym__space, - ACTIONS(7604), 1, + ACTIONS(7800), 1, anon_sym_DOT_DOT2, - STATE(4003), 1, + STATE(4130), 1, sym_comment, - ACTIONS(2112), 2, + ACTIONS(5509), 2, sym__newline, anon_sym_SEMI, - ACTIONS(7606), 2, + ACTIONS(7802), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [119712] = 6, + [122589] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(7658), 1, + anon_sym_LBRACE, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(3437), 1, + sym__blosure, + STATE(4131), 1, + sym_comment, + STATE(3141), 2, + sym_block, + sym_val_closure, + [122612] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(7658), 1, + anon_sym_LBRACE, + STATE(3437), 1, + sym__blosure, + STATE(4132), 1, + sym_comment, + STATE(4172), 1, + aux_sym__repeat_newline, + STATE(3141), 2, + sym_block, + sym_val_closure, + [122635] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7608), 1, + ACTIONS(7376), 1, + anon_sym_DOT2, + STATE(3968), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4133), 1, + sym_comment, + STATE(4582), 1, + sym_path, + ACTIONS(1524), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [122656] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7866), 1, anon_sym_DOT, - ACTIONS(7610), 1, + ACTIONS(7868), 1, aux_sym__immediate_decimal_token5, - STATE(4004), 1, + STATE(4134), 1, sym_comment, - ACTIONS(1744), 2, + ACTIONS(1790), 2, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1746), 2, - anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [119733] = 6, - ACTIONS(103), 1, + ACTIONS(1792), 2, + anon_sym_RBRACK, + sym__unquoted_pattern_in_list, + [122677] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2118), 1, - sym__space, - ACTIONS(7612), 1, - anon_sym_DOT_DOT2, - STATE(4005), 1, - sym_comment, - ACTIONS(2120), 2, + ACTIONS(2922), 1, sym__newline, - anon_sym_SEMI, - ACTIONS(7614), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [119754] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5509), 1, - sym__space, - ACTIONS(7512), 1, - anon_sym_EQ2, - ACTIONS(7616), 1, - sym_short_flag_identifier, - STATE(3032), 1, - sym__flag_equals_value, - STATE(4006), 1, + ACTIONS(7658), 1, + anon_sym_LBRACE, + STATE(3438), 1, + sym__blosure, + STATE(3961), 1, + aux_sym__repeat_newline, + STATE(4135), 1, sym_comment, - ACTIONS(5507), 2, - sym__newline, - anon_sym_SEMI, - [119777] = 6, + STATE(3141), 2, + sym_block, + sym_val_closure, + [122700] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5473), 1, - sym__space, - ACTIONS(7574), 1, - anon_sym_DOT_DOT2, - STATE(4007), 1, + ACTIONS(7870), 1, + anon_sym_LPAREN, + ACTIONS(7876), 1, + anon_sym_DQUOTE2, + STATE(4475), 1, + sym_expr_interpolated, + ACTIONS(7873), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + STATE(4136), 2, sym_comment, - ACTIONS(5471), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(7576), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [119798] = 4, + aux_sym__inter_double_quotes_repeat1, + [122721] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4008), 1, + STATE(4137), 1, sym_comment, ACTIONS(739), 2, anon_sym_DOT_DOT2, @@ -238986,21879 +242478,22145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [119815] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7418), 1, - anon_sym_LPAREN, - ACTIONS(7618), 1, - anon_sym_DQUOTE2, - STATE(3926), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4009), 1, - sym_comment, - STATE(4424), 1, - sym_expr_interpolated, - ACTIONS(7420), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [119838] = 4, + [122738] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4010), 1, + STATE(4138), 1, sym_comment, - ACTIONS(771), 2, + ACTIONS(767), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - ACTIONS(773), 4, + ACTIONS(769), 4, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [119855] = 4, + [122755] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4011), 1, + STATE(4139), 1, sym_comment, - ACTIONS(860), 2, + ACTIONS(863), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - ACTIONS(862), 4, + ACTIONS(865), 4, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [119872] = 6, + [122772] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1679), 1, + ACTIONS(1637), 1, sym__unquoted_pattern, - STATE(4012), 1, + STATE(4140), 1, sym_comment, - STATE(5215), 1, + STATE(5262), 1, sym__immediate_decimal, - ACTIONS(6664), 2, + ACTIONS(6926), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6666), 2, + ACTIONS(6928), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [119893] = 8, - ACTIONS(103), 1, + [122793] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2555), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7328), 1, - sym_identifier, - ACTIONS(7349), 1, - anon_sym_DOLLAR, - STATE(2825), 1, - sym_val_variable, - STATE(2902), 1, - sym__variable_name, - STATE(4013), 1, + ACTIONS(1695), 1, + sym__unquoted_pattern, + STATE(4141), 1, sym_comment, - STATE(4547), 1, - sym__assignment_pattern_parenthesized, - [119918] = 8, - ACTIONS(103), 1, + STATE(5170), 1, + sym__immediate_decimal, + ACTIONS(6926), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6928), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [122814] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2555), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7328), 1, - sym_identifier, - ACTIONS(7330), 1, - anon_sym_DOLLAR, - STATE(2825), 1, - sym_val_variable, - STATE(4014), 1, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(7658), 1, + anon_sym_LBRACE, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(3441), 1, + sym__blosure, + STATE(4142), 1, sym_comment, - STATE(4053), 1, - sym__variable_name, - STATE(4552), 1, - sym__assignment_pattern_parenthesized, - [119943] = 8, - ACTIONS(103), 1, + STATE(3141), 2, + sym_block, + sym_val_closure, + [122837] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2555), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7328), 1, - sym_identifier, - ACTIONS(7330), 1, - anon_sym_DOLLAR, - STATE(2825), 1, - sym_val_variable, - STATE(4015), 1, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(7658), 1, + anon_sym_LBRACE, + STATE(3441), 1, + sym__blosure, + STATE(3969), 1, + aux_sym__repeat_newline, + STATE(4143), 1, sym_comment, - STATE(4053), 1, - sym__variable_name, - STATE(4637), 1, - sym__assignment_pattern_parenthesized, - [119968] = 6, + STATE(3141), 2, + sym_block, + sym_val_closure, + [122860] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7620), 1, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(7658), 1, + anon_sym_LBRACE, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(3442), 1, + sym__blosure, + STATE(4144), 1, + sym_comment, + STATE(3141), 2, + sym_block, + sym_val_closure, + [122883] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7878), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7622), 1, + ACTIONS(7880), 1, aux_sym__immediate_decimal_token5, - STATE(4016), 1, + STATE(4145), 1, sym_comment, - ACTIONS(1770), 2, + ACTIONS(1730), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1772), 2, + ACTIONS(1732), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - [119989] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6747), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7624), 1, - anon_sym_DOT, - STATE(4017), 1, - sym_comment, - ACTIONS(1744), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [120008] = 8, + [122904] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7414), 1, + ACTIONS(2922), 1, sym__newline, - ACTIONS(7416), 1, - anon_sym_SEMI, - ACTIONS(7626), 1, - anon_sym_RPAREN, - STATE(1369), 1, - aux_sym__parenthesized_body_repeat1, - STATE(4018), 1, - sym_comment, - STATE(4462), 1, - aux_sym__block_body_repeat1, - STATE(4562), 1, + ACTIONS(7658), 1, + anon_sym_LBRACE, + STATE(485), 1, aux_sym__repeat_newline, - [120033] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7308), 1, - anon_sym_DOT2, - STATE(2500), 1, - sym_path, - STATE(4019), 1, + STATE(3443), 1, + sym__blosure, + STATE(4146), 1, sym_comment, - STATE(4031), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1506), 3, - anon_sym_EQ, - sym__newline, - anon_sym_COLON, - [120054] = 6, + STATE(3141), 2, + sym_block, + sym_val_closure, + [122927] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2154), 1, + ACTIONS(2170), 1, sym__entry_separator, - ACTIONS(7628), 1, + ACTIONS(7882), 1, anon_sym_DOT_DOT2, - STATE(4020), 1, + STATE(4147), 1, sym_comment, - ACTIONS(2156), 2, + ACTIONS(2172), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(7630), 2, + ACTIONS(7884), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [120075] = 6, + [122948] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2102), 1, + ACTIONS(2104), 1, sym__entry_separator, - ACTIONS(7632), 1, + ACTIONS(7886), 1, anon_sym_DOT_DOT2, - STATE(4021), 1, + STATE(4148), 1, sym_comment, - ACTIONS(2104), 2, + ACTIONS(2106), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(7634), 2, + ACTIONS(7888), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [120096] = 6, + [122969] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2110), 1, + ACTIONS(2112), 1, sym__entry_separator, - ACTIONS(7636), 1, + ACTIONS(7890), 1, anon_sym_DOT_DOT2, - STATE(4022), 1, + STATE(4149), 1, sym_comment, - ACTIONS(2112), 2, + ACTIONS(2114), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(7638), 2, + ACTIONS(7892), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [120117] = 6, + [122990] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2118), 1, + ACTIONS(2120), 1, sym__entry_separator, - ACTIONS(7640), 1, + ACTIONS(7894), 1, anon_sym_DOT_DOT2, - STATE(4023), 1, + STATE(4150), 1, sym_comment, - ACTIONS(2120), 2, + ACTIONS(2122), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(7642), 2, + ACTIONS(7896), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [120138] = 6, + [123011] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1772), 1, - sym__unquoted_pattern, - ACTIONS(7644), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7646), 1, - aux_sym__immediate_decimal_token5, - STATE(4024), 1, + ACTIONS(7570), 1, + anon_sym_DOT2, + STATE(2500), 1, + sym_path, + STATE(4151), 1, sym_comment, - ACTIONS(1770), 3, + STATE(4165), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1526), 3, + anon_sym_EQ, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [120159] = 8, + anon_sym_COLON, + [123032] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2555), 1, + ACTIONS(6667), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6995), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7898), 1, + aux_sym_unquoted_token2, + STATE(4152), 1, + sym_comment, + STATE(4569), 1, + sym__immediate_decimal, + ACTIONS(6997), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [123055] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2594), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7328), 1, + ACTIONS(7476), 1, sym_identifier, - ACTIONS(7349), 1, + ACTIONS(7576), 1, anon_sym_DOLLAR, - STATE(2825), 1, + STATE(2788), 1, sym_val_variable, - STATE(2883), 1, + STATE(2850), 1, sym__variable_name, - STATE(4025), 1, + STATE(4153), 1, sym_comment, - STATE(4303), 1, + STATE(4385), 1, sym__assignment_pattern, - [120184] = 8, + [123080] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2555), 1, + ACTIONS(2594), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7328), 1, + ACTIONS(7476), 1, sym_identifier, - ACTIONS(7330), 1, + ACTIONS(7478), 1, anon_sym_DOLLAR, - STATE(2825), 1, + STATE(2788), 1, sym_val_variable, - STATE(4026), 1, + STATE(4154), 1, sym_comment, - STATE(4114), 1, + STATE(4190), 1, sym__variable_name, - STATE(4304), 1, + STATE(4388), 1, sym__assignment_pattern, - [120209] = 8, + [123105] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2555), 1, + ACTIONS(2594), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7328), 1, + ACTIONS(7476), 1, sym_identifier, - ACTIONS(7330), 1, + ACTIONS(7478), 1, anon_sym_DOLLAR, - STATE(2825), 1, + STATE(2788), 1, sym_val_variable, - STATE(4027), 1, + STATE(4155), 1, sym_comment, - STATE(4114), 1, + STATE(4190), 1, sym__variable_name, - STATE(4305), 1, + STATE(4391), 1, sym__assignment_pattern, - [120234] = 8, + [123130] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7648), 1, + ACTIONS(7900), 1, anon_sym_if, - ACTIONS(7650), 1, + ACTIONS(7902), 1, sym__newline, - ACTIONS(7652), 1, + ACTIONS(7904), 1, anon_sym_PIPE, - ACTIONS(7654), 1, + ACTIONS(7906), 1, anon_sym_EQ_GT, - STATE(4028), 1, + STATE(4156), 1, sym_comment, - STATE(4448), 1, + STATE(4483), 1, aux_sym_match_pattern_repeat1, - STATE(5168), 1, + STATE(5227), 1, sym_match_guard, - [120259] = 5, - ACTIONS(3), 1, + [123155] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3808), 1, - anon_sym_LBRACE, - STATE(4029), 1, + ACTIONS(6926), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7003), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7898), 1, + aux_sym_unquoted_token2, + STATE(4157), 1, sym_comment, - STATE(4416), 1, - sym_block, - ACTIONS(7656), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [120278] = 5, + STATE(5128), 1, + sym__immediate_decimal, + ACTIONS(7005), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [123178] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6914), 1, + anon_sym_LPAREN2, + ACTIONS(7731), 1, + sym__entry_separator, + STATE(2277), 1, + aux_sym__types_body_repeat2, + STATE(4158), 1, + sym_comment, + STATE(4991), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7908), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [123201] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3808), 1, - anon_sym_LBRACE, - STATE(4030), 1, + ACTIONS(6987), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7910), 1, + anon_sym_DOT, + STATE(4159), 1, sym_comment, - STATE(4420), 1, - sym_block, - ACTIONS(7656), 4, + ACTIONS(1790), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [120297] = 5, + anon_sym_PIPE, + anon_sym_EQ_GT, + [123220] = 7, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2922), 1, + sym__newline, ACTIONS(7658), 1, - anon_sym_DOT2, - STATE(2500), 1, - sym_path, - STATE(4031), 2, + anon_sym_LBRACE, + STATE(3443), 1, + sym__blosure, + STATE(3971), 1, + aux_sym__repeat_newline, + STATE(4160), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1510), 3, - anon_sym_EQ, - sym__newline, - anon_sym_COLON, - [120316] = 6, - ACTIONS(103), 1, + STATE(3141), 2, + sym_block, + sym_val_closure, + [123243] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7661), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7663), 1, - aux_sym__immediate_decimal_token5, - STATE(4032), 1, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(7658), 1, + anon_sym_LBRACE, + STATE(3446), 1, + sym__blosure, + STATE(3976), 1, + aux_sym__repeat_newline, + STATE(4161), 1, sym_comment, - ACTIONS(1770), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1772), 2, - anon_sym_RBRACK, - sym__unquoted_pattern_in_list, - [120337] = 8, + STATE(3141), 2, + sym_block, + sym_val_closure, + [123266] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2555), 1, + ACTIONS(2594), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7328), 1, + ACTIONS(7476), 1, sym_identifier, - ACTIONS(7349), 1, + ACTIONS(7576), 1, anon_sym_DOLLAR, - STATE(2825), 1, + STATE(2788), 1, sym_val_variable, - STATE(3003), 1, + STATE(2982), 1, sym__variable_name, - STATE(4033), 1, + STATE(4162), 1, sym_comment, - STATE(4303), 1, + STATE(4385), 1, sym__assignment_pattern, - [120362] = 8, + [123291] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2555), 1, + ACTIONS(2594), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7328), 1, + ACTIONS(7476), 1, sym_identifier, - ACTIONS(7330), 1, + ACTIONS(7478), 1, anon_sym_DOLLAR, - STATE(2825), 1, + STATE(2788), 1, sym_val_variable, - STATE(4034), 1, + STATE(4163), 1, sym_comment, - STATE(4057), 1, + STATE(4318), 1, sym__variable_name, - STATE(4304), 1, + STATE(4388), 1, sym__assignment_pattern, - [120387] = 8, + [123316] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2555), 1, + ACTIONS(2594), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7328), 1, + ACTIONS(7476), 1, sym_identifier, - ACTIONS(7330), 1, + ACTIONS(7478), 1, anon_sym_DOLLAR, - STATE(2825), 1, + STATE(2788), 1, sym_val_variable, - STATE(4035), 1, + STATE(4164), 1, sym_comment, - STATE(4057), 1, + STATE(4318), 1, sym__variable_name, - STATE(4305), 1, + STATE(4391), 1, sym__assignment_pattern, - [120412] = 8, - ACTIONS(103), 1, + [123341] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2555), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7328), 1, - sym_identifier, - ACTIONS(7330), 1, - anon_sym_DOLLAR, - STATE(2825), 1, - sym_val_variable, - STATE(4036), 1, + ACTIONS(7912), 1, + anon_sym_DOT2, + STATE(2500), 1, + sym_path, + STATE(4165), 2, sym_comment, - STATE(4186), 1, - sym__variable_name, - STATE(4304), 1, - sym__assignment_pattern, - [120437] = 8, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1534), 3, + anon_sym_EQ, + sym__newline, + anon_sym_COLON, + [123360] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2555), 1, + ACTIONS(2594), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7328), 1, + ACTIONS(7476), 1, sym_identifier, - ACTIONS(7349), 1, + ACTIONS(7576), 1, anon_sym_DOLLAR, - STATE(2825), 1, + STATE(2788), 1, sym_val_variable, - STATE(2983), 1, + STATE(2923), 1, sym__variable_name, - STATE(4037), 1, + STATE(4166), 1, sym_comment, - STATE(4547), 1, + STATE(4830), 1, sym__assignment_pattern_parenthesized, - [120462] = 8, + [123385] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2555), 1, + ACTIONS(2594), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7328), 1, + ACTIONS(7476), 1, sym_identifier, - ACTIONS(7330), 1, + ACTIONS(7478), 1, anon_sym_DOLLAR, - STATE(2825), 1, + STATE(2788), 1, sym_val_variable, - STATE(4038), 1, + STATE(4167), 1, sym_comment, - STATE(4149), 1, + STATE(4271), 1, sym__variable_name, - STATE(4552), 1, + STATE(4845), 1, sym__assignment_pattern_parenthesized, - [120487] = 8, + [123410] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2555), 1, + ACTIONS(2594), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7328), 1, + ACTIONS(7476), 1, sym_identifier, - ACTIONS(7330), 1, + ACTIONS(7478), 1, anon_sym_DOLLAR, - STATE(2825), 1, + STATE(2788), 1, sym_val_variable, - STATE(4039), 1, + STATE(4168), 1, sym_comment, - STATE(4149), 1, + STATE(4271), 1, sym__variable_name, - STATE(4637), 1, + STATE(4857), 1, sym__assignment_pattern_parenthesized, - [120512] = 6, - ACTIONS(103), 1, + [123435] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7363), 1, - sym__entry_separator, - ACTIONS(7546), 1, - anon_sym_DOT_DOT2, - STATE(4040), 1, + ACTIONS(1732), 1, + sym__unquoted_pattern, + ACTIONS(7915), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7917), 1, + aux_sym__immediate_decimal_token5, + STATE(4169), 1, sym_comment, - ACTIONS(7544), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(7548), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [120533] = 6, + ACTIONS(1730), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [123456] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7268), 1, - sym__entry_separator, - ACTIONS(7546), 1, - anon_sym_DOT_DOT2, - STATE(4041), 1, - sym_comment, - ACTIONS(7548), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7555), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [120554] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7665), 1, - anon_sym_DOT, - ACTIONS(7667), 1, + ACTIONS(7919), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7921), 1, aux_sym__immediate_decimal_token5, - STATE(4042), 1, + STATE(4170), 1, sym_comment, - ACTIONS(1744), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1746), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - [120575] = 7, + ACTIONS(1730), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1732), 2, + anon_sym_RBRACK, + sym__unquoted_pattern_in_list, + [123477] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2907), 1, + ACTIONS(2922), 1, sym__newline, - ACTIONS(7434), 1, + ACTIONS(7658), 1, anon_sym_LBRACE, - STATE(3394), 1, - sym__blosure, - STATE(3989), 1, + STATE(485), 1, aux_sym__repeat_newline, - STATE(4043), 1, + STATE(3448), 1, + sym__blosure, + STATE(4171), 1, sym_comment, - STATE(3288), 2, + STATE(3141), 2, sym_block, sym_val_closure, - [120598] = 7, + [123500] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2907), 1, + ACTIONS(2922), 1, sym__newline, - ACTIONS(7434), 1, + ACTIONS(7658), 1, anon_sym_LBRACE, - STATE(527), 1, + STATE(485), 1, aux_sym__repeat_newline, - STATE(3401), 1, + STATE(3450), 1, sym__blosure, - STATE(4044), 1, + STATE(4172), 1, sym_comment, - STATE(3288), 2, + STATE(3141), 2, sym_block, sym_val_closure, - [120621] = 7, + [123523] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2907), 1, - sym__newline, - ACTIONS(7434), 1, + ACTIONS(4179), 1, + anon_sym_DOT_DOT2, + ACTIONS(7898), 1, + sym__unquoted_pattern, + STATE(4173), 1, + sym_comment, + ACTIONS(4181), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7689), 2, + sym_filesize_unit, + sym_duration_unit, + [123544] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3898), 1, anon_sym_LBRACE, - STATE(3401), 1, - sym__blosure, - STATE(3997), 1, - aux_sym__repeat_newline, - STATE(4045), 1, + STATE(4174), 1, sym_comment, - STATE(3288), 2, + STATE(4438), 1, sym_block, - sym_val_closure, - [120644] = 6, + ACTIONS(7789), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [123563] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1746), 1, - sym__unquoted_pattern, - ACTIONS(7669), 1, - anon_sym_DOT, - ACTIONS(7671), 1, - aux_sym__immediate_decimal_token5, - STATE(4046), 1, - sym_comment, - ACTIONS(1744), 3, + ACTIONS(7783), 1, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [120665] = 7, + ACTIONS(7785), 1, + anon_sym_SEMI, + ACTIONS(7923), 1, + anon_sym_RPAREN, + STATE(1365), 1, + aux_sym__parenthesized_body_repeat1, + STATE(4175), 1, + sym_comment, + STATE(4469), 1, + aux_sym__block_body_repeat1, + STATE(4654), 1, + aux_sym__repeat_newline, + [123588] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7418), 1, - anon_sym_LPAREN, - ACTIONS(7673), 1, - anon_sym_DQUOTE2, - STATE(3983), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4047), 1, + ACTIONS(7925), 1, + anon_sym_DQUOTE, + STATE(4176), 1, sym_comment, - STATE(4424), 1, - sym_expr_interpolated, - ACTIONS(7420), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [120688] = 7, + STATE(4377), 1, + aux_sym_string_content_repeat1, + STATE(5180), 1, + sym_string_content, + ACTIONS(7927), 2, + sym__escaped_str_content, + sym_escape_sequence, + [123608] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7675), 1, - sym_identifier, - ACTIONS(7677), 1, - anon_sym_DOLLAR, - STATE(2825), 1, - sym_val_variable, - STATE(4048), 1, - sym_comment, - STATE(4057), 1, - sym__variable_name, - STATE(4370), 1, - sym__assignment_pattern, - [120710] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1679), 1, + ACTIONS(1848), 1, sym__unquoted_pattern, - ACTIONS(2541), 1, - sym__space, - ACTIONS(2642), 1, - anon_sym_LPAREN2, - STATE(4049), 1, + STATE(4177), 1, sym_comment, - ACTIONS(2543), 2, + ACTIONS(1846), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - [120730] = 7, + anon_sym_PIPE, + anon_sym_EQ_GT, + [123624] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2555), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(5322), 1, - anon_sym_DOLLAR, - ACTIONS(7328), 1, - sym_identifier, - STATE(2825), 1, - sym_val_variable, - STATE(4050), 1, + STATE(4178), 1, sym_comment, - STATE(5322), 1, - sym__variable_name, - [120752] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1744), 1, + ACTIONS(2360), 2, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(6971), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7679), 1, - anon_sym_DOT, - STATE(4051), 1, - sym_comment, - ACTIONS(1746), 2, + ACTIONS(2362), 3, anon_sym_RBRACK, anon_sym_RBRACE, - [120772] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7681), 1, - anon_sym_LPAREN, - ACTIONS(7683), 1, - anon_sym_SQUOTE2, - ACTIONS(7685), 1, - sym_unescaped_interpolated_content, - STATE(4052), 1, - sym_comment, - STATE(4128), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4590), 1, - sym_expr_interpolated, - [120794] = 7, + sym__unquoted_pattern_in_list, + [123640] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2907), 1, + ACTIONS(2922), 1, sym__newline, - ACTIONS(5780), 1, + ACTIONS(5545), 1, anon_sym_EQ, - ACTIONS(7687), 1, + ACTIONS(7929), 1, anon_sym_COLON, - STATE(4053), 1, + STATE(4179), 1, sym_comment, - STATE(4559), 1, + STATE(4854), 1, aux_sym__repeat_newline, - STATE(5345), 1, + STATE(5255), 1, sym_param_type, - [120816] = 6, + [123662] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7931), 1, + sym_identifier, + ACTIONS(7933), 1, + anon_sym_DOLLAR, + STATE(2788), 1, + sym_val_variable, + STATE(4180), 1, + sym_comment, + STATE(4196), 1, + sym__variable_name, + STATE(4489), 1, + sym__assignment_pattern, + [123684] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7689), 1, + ACTIONS(7935), 1, anon_sym_DQUOTE, - STATE(4054), 1, + STATE(4181), 1, sym_comment, - STATE(4403), 1, + STATE(4377), 1, aux_sym_string_content_repeat1, - STATE(5245), 1, + STATE(5464), 1, sym_string_content, - ACTIONS(7691), 2, + ACTIONS(7927), 2, sym__escaped_str_content, sym_escape_sequence, - [120836] = 7, + [123704] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7681), 1, + ACTIONS(7937), 1, anon_sym_LPAREN, - ACTIONS(7685), 1, - sym_unescaped_interpolated_content, - ACTIONS(7693), 1, + ACTIONS(7939), 1, anon_sym_SQUOTE2, - STATE(4055), 1, + ACTIONS(7941), 1, + sym_unescaped_interpolated_content, + STATE(4182), 1, sym_comment, - STATE(4064), 1, + STATE(4189), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4590), 1, + STATE(4836), 1, sym_expr_interpolated, - [120858] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7695), 1, - anon_sym_DQUOTE, - STATE(4056), 1, - sym_comment, - STATE(4403), 1, - aux_sym_string_content_repeat1, - STATE(5118), 1, - sym_string_content, - ACTIONS(7691), 2, - sym__escaped_str_content, - sym_escape_sequence, - [120878] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2907), 1, - sym__newline, - ACTIONS(5935), 1, - anon_sym_EQ, - ACTIONS(7687), 1, - anon_sym_COLON, - STATE(4057), 1, - sym_comment, - STATE(4559), 1, - aux_sym__repeat_newline, - STATE(5259), 1, - sym_param_type, - [120900] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4058), 1, - sym_comment, - STATE(5012), 1, - sym__immediate_decimal, - ACTIONS(7430), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(7432), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [120918] = 5, + [123726] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3786), 1, - anon_sym_LBRACE, - STATE(4059), 1, + ACTIONS(2614), 1, + sym__unquoted_pattern, + STATE(4183), 1, sym_comment, - STATE(4644), 1, - sym_block, - ACTIONS(7590), 3, - ts_builtin_sym_end, + ACTIONS(2608), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - [120936] = 7, + anon_sym_PIPE, + anon_sym_EQ_GT, + [123742] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2612), 1, + ACTIONS(7943), 1, + aux_sym__immediate_decimal_token5, + STATE(4184), 1, + sym_comment, + ACTIONS(1846), 2, anon_sym_LPAREN2, - ACTIONS(2614), 1, - sym__unquoted_pattern_in_list, - ACTIONS(7552), 1, - anon_sym_RBRACK, - ACTIONS(7555), 1, - anon_sym_DOT_DOT, - ACTIONS(7557), 1, sym__entry_separator, - STATE(4060), 1, - sym_comment, - [120958] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3786), 1, - anon_sym_LBRACE, - STATE(4061), 1, - sym_comment, - STATE(4653), 1, - sym_block, - ACTIONS(7590), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [120976] = 6, + ACTIONS(1848), 2, + anon_sym_RBRACE, + sym__unquoted_pattern_in_record, + [123760] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2589), 1, - sym__space, - ACTIONS(2644), 1, - anon_sym_LPAREN2, - ACTIONS(2646), 1, - sym__unquoted_pattern, - STATE(4062), 1, - sym_comment, - ACTIONS(2591), 2, - sym__newline, - anon_sym_SEMI, - [120996] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1900), 1, - sym__table_head_separator, - ACTIONS(7697), 1, - anon_sym_DOT2, - STATE(4063), 1, + ACTIONS(7945), 1, + anon_sym_DQUOTE, + STATE(4185), 1, sym_comment, - STATE(4261), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4812), 1, - sym_path, - STATE(5000), 1, - sym_cell_path, - [121018] = 7, + STATE(4377), 1, + aux_sym_string_content_repeat1, + STATE(5129), 1, + sym_string_content, + ACTIONS(7927), 2, + sym__escaped_str_content, + sym_escape_sequence, + [123780] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7681), 1, + ACTIONS(7937), 1, anon_sym_LPAREN, - ACTIONS(7685), 1, + ACTIONS(7941), 1, sym_unescaped_interpolated_content, - ACTIONS(7699), 1, + ACTIONS(7947), 1, anon_sym_SQUOTE2, - STATE(4064), 1, + STATE(4186), 1, sym_comment, - STATE(4203), 1, + STATE(4205), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4590), 1, + STATE(4836), 1, sym_expr_interpolated, - [121040] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1862), 1, - sym__table_head_separator, - ACTIONS(7697), 1, - anon_sym_DOT2, - STATE(4065), 1, - sym_comment, - STATE(4261), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4812), 1, - sym_path, - STATE(5087), 1, - sym_cell_path, - [121062] = 7, - ACTIONS(3), 1, + [123802] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2907), 1, - sym__newline, - ACTIONS(5749), 1, - anon_sym_EQ, - ACTIONS(7687), 1, - anon_sym_COLON, - STATE(4066), 1, + ACTIONS(7949), 1, + aux_sym__immediate_decimal_token5, + STATE(4187), 1, sym_comment, - STATE(4559), 1, - aux_sym__repeat_newline, - STATE(5229), 1, - sym_param_type, - [121084] = 6, + ACTIONS(1846), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1848), 2, + anon_sym_RBRACK, + sym__unquoted_pattern_in_list, + [123820] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7701), 1, + ACTIONS(7951), 1, anon_sym_RBRACK, - ACTIONS(7704), 1, + ACTIONS(7954), 1, anon_sym_DOT_DOT, - STATE(4067), 1, + STATE(4188), 1, sym_comment, - STATE(4121), 1, + STATE(4209), 1, aux_sym_parameter_repeat2, ACTIONS(1398), 2, sym__newline, anon_sym_COMMA, - [121104] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7675), 1, - sym_identifier, - ACTIONS(7677), 1, - anon_sym_DOLLAR, - STATE(2825), 1, - sym_val_variable, - STATE(4066), 1, - sym__variable_name, - STATE(4068), 1, - sym_comment, - STATE(4570), 1, - sym__assignment_pattern, - [121126] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7706), 1, - anon_sym_DQUOTE, - STATE(4069), 1, - sym_comment, - STATE(4403), 1, - aux_sym_string_content_repeat1, - STATE(5147), 1, - sym_string_content, - ACTIONS(7691), 2, - sym__escaped_str_content, - sym_escape_sequence, - [121146] = 7, + [123840] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7681), 1, + ACTIONS(7937), 1, anon_sym_LPAREN, - ACTIONS(7685), 1, + ACTIONS(7941), 1, sym_unescaped_interpolated_content, - ACTIONS(7708), 1, + ACTIONS(7956), 1, anon_sym_SQUOTE2, - STATE(4070), 1, + STATE(4189), 1, sym_comment, - STATE(4076), 1, + STATE(4192), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4590), 1, + STATE(4836), 1, sym_expr_interpolated, - [121168] = 6, + [123862] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1635), 1, - sym__unquoted_pattern, - ACTIONS(1956), 1, - anon_sym_LBRACE, - ACTIONS(7710), 1, - anon_sym_DOT_DOT2, - STATE(4071), 1, - sym_comment, - ACTIONS(7712), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [121188] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(4072), 1, - sym_comment, - ACTIONS(2525), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(2527), 3, + ACTIONS(2922), 1, sym__newline, - anon_sym_SEMI, - sym__unquoted_pattern, - [121204] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2648), 1, - sym__space, - ACTIONS(2652), 1, - anon_sym_LPAREN2, - ACTIONS(2654), 1, - sym__unquoted_pattern, - STATE(4073), 1, + ACTIONS(5728), 1, + anon_sym_EQ, + ACTIONS(7929), 1, + anon_sym_COLON, + STATE(4190), 1, sym_comment, - ACTIONS(2650), 2, - sym__newline, - anon_sym_SEMI, - [121224] = 5, + STATE(4854), 1, + aux_sym__repeat_newline, + STATE(5179), 1, + sym_param_type, + [123884] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3786), 1, - anon_sym_LBRACE, - STATE(4074), 1, + STATE(1356), 1, + aux_sym__block_body_repeat1, + STATE(4191), 1, sym_comment, - STATE(4583), 1, - sym_block, - ACTIONS(7656), 3, - ts_builtin_sym_end, + ACTIONS(153), 2, sym__newline, anon_sym_SEMI, - [121242] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7536), 1, - anon_sym_DOT_DOT2, - ACTIONS(7714), 1, + ACTIONS(447), 2, + anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(7716), 1, - sym__entry_separator, - STATE(4075), 1, - sym_comment, - ACTIONS(7538), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [121262] = 7, + [123902] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7681), 1, + ACTIONS(7958), 1, anon_sym_LPAREN, - ACTIONS(7685), 1, - sym_unescaped_interpolated_content, - ACTIONS(7718), 1, + ACTIONS(7961), 1, anon_sym_SQUOTE2, - STATE(4076), 1, - sym_comment, - STATE(4203), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4590), 1, + ACTIONS(7963), 1, + sym_unescaped_interpolated_content, + STATE(4836), 1, sym_expr_interpolated, - [121284] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7161), 1, - sym__entry_separator, - ACTIONS(7258), 1, - anon_sym_DOT2, - STATE(360), 1, - sym_path, - STATE(3924), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4077), 1, + STATE(4192), 2, sym_comment, - STATE(4593), 1, - sym_cell_path, - [121306] = 6, + aux_sym__inter_single_quotes_repeat1, + [123922] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7536), 1, - anon_sym_DOT_DOT2, - ACTIONS(7720), 1, - anon_sym_RBRACE, - ACTIONS(7722), 1, - sym__entry_separator, - STATE(4078), 1, - sym_comment, - ACTIONS(7538), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [121326] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3786), 1, - anon_sym_LBRACE, - STATE(4079), 1, + ACTIONS(2608), 1, + sym__space, + ACTIONS(2612), 1, + anon_sym_LPAREN2, + ACTIONS(2614), 1, + sym__unquoted_pattern, + STATE(4193), 1, sym_comment, - STATE(4584), 1, - sym_block, - ACTIONS(7656), 3, - ts_builtin_sym_end, + ACTIONS(2610), 2, sym__newline, anon_sym_SEMI, - [121344] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7610), 1, - aux_sym__immediate_decimal_token5, - STATE(4080), 1, - sym_comment, - ACTIONS(1744), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1746), 2, - anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [121362] = 6, + [123942] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7724), 1, + ACTIONS(7966), 1, anon_sym_DQUOTE, - STATE(4081), 1, + STATE(4194), 1, sym_comment, - STATE(4403), 1, + STATE(4377), 1, aux_sym_string_content_repeat1, - STATE(4972), 1, + STATE(5133), 1, sym_string_content, - ACTIONS(7691), 2, + ACTIONS(7927), 2, sym__escaped_str_content, sym_escape_sequence, - [121382] = 7, + [123962] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7681), 1, + ACTIONS(7937), 1, anon_sym_LPAREN, - ACTIONS(7685), 1, + ACTIONS(7941), 1, sym_unescaped_interpolated_content, - ACTIONS(7726), 1, + ACTIONS(7968), 1, anon_sym_SQUOTE2, - STATE(4082), 1, + STATE(4195), 1, sym_comment, - STATE(4089), 1, + STATE(4201), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4590), 1, + STATE(4836), 1, sym_expr_interpolated, - [121404] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7113), 1, - sym__entry_separator, - ACTIONS(7258), 1, - anon_sym_DOT2, - STATE(360), 1, - sym_path, - STATE(3924), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4083), 1, - sym_comment, - STATE(4721), 1, - sym_cell_path, - [121426] = 4, + [123984] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2527), 1, - sym__unquoted_pattern, - STATE(4084), 1, - sym_comment, - ACTIONS(2525), 4, - anon_sym_if, + ACTIONS(2922), 1, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [121442] = 4, - ACTIONS(3), 1, + ACTIONS(5653), 1, + anon_sym_EQ, + ACTIONS(7929), 1, + anon_sym_COLON, + STATE(4196), 1, + sym_comment, + STATE(4854), 1, + aux_sym__repeat_newline, + STATE(5507), 1, + sym_param_type, + [124006] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2654), 1, - sym__unquoted_pattern, - STATE(4085), 1, + ACTIONS(1695), 1, + sym__unquoted_pattern_in_list, + ACTIONS(2572), 1, + sym__entry_separator, + ACTIONS(2576), 1, + anon_sym_LPAREN2, + STATE(4197), 1, sym_comment, - ACTIONS(2648), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [121458] = 6, + ACTIONS(2574), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [124026] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1973), 1, + ACTIONS(1972), 1, sym__entry_separator, - ACTIONS(1975), 1, + ACTIONS(1974), 1, anon_sym_RBRACE, - ACTIONS(7728), 1, + ACTIONS(7970), 1, anon_sym_DOT_DOT2, - STATE(4086), 1, + STATE(4198), 1, sym_comment, - ACTIONS(7730), 2, + ACTIONS(7972), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [121478] = 7, - ACTIONS(103), 1, + [124046] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2555), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7328), 1, - sym_identifier, - ACTIONS(7349), 1, - anon_sym_DOLLAR, - STATE(2825), 1, - sym_val_variable, - STATE(2874), 1, - sym__variable_name, - STATE(4087), 1, + ACTIONS(3906), 1, + anon_sym_LBRACE, + STATE(4199), 1, sym_comment, - [121500] = 5, - ACTIONS(103), 1, + STATE(4720), 1, + sym_block, + ACTIONS(7789), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [124064] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7732), 1, - aux_sym__immediate_decimal_token5, - STATE(4088), 1, + ACTIONS(3906), 1, + anon_sym_LBRACE, + STATE(4200), 1, sym_comment, - ACTIONS(1852), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1854), 2, - anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [121518] = 7, + STATE(4733), 1, + sym_block, + ACTIONS(7789), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [124082] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7681), 1, + ACTIONS(7937), 1, anon_sym_LPAREN, - ACTIONS(7685), 1, + ACTIONS(7941), 1, sym_unescaped_interpolated_content, - ACTIONS(7734), 1, + ACTIONS(7974), 1, anon_sym_SQUOTE2, - STATE(4089), 1, - sym_comment, - STATE(4203), 1, + STATE(4192), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4590), 1, + STATE(4201), 1, + sym_comment, + STATE(4836), 1, sym_expr_interpolated, - [121540] = 7, + [124104] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5354), 1, - sym__entry_separator, - ACTIONS(7258), 1, - anon_sym_DOT2, - STATE(360), 1, - sym_path, - STATE(3924), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4090), 1, - sym_comment, - STATE(4446), 1, - sym_cell_path, - [121562] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1362), 1, - aux_sym__block_body_repeat1, - STATE(4091), 1, - sym_comment, - ACTIONS(153), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(3100), 2, - anon_sym_RPAREN, + ACTIONS(7771), 1, + anon_sym_DOT_DOT2, + ACTIONS(7976), 1, anon_sym_RBRACE, - [121580] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1713), 1, - sym__space, - ACTIONS(2612), 1, - anon_sym_LPAREN2, - ACTIONS(2614), 1, - sym__unquoted_pattern, - STATE(4092), 1, + ACTIONS(7978), 1, + sym__entry_separator, + STATE(4202), 1, sym_comment, - ACTIONS(1614), 2, - sym__newline, - anon_sym_SEMI, - [121600] = 6, + ACTIONS(7773), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [124124] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7736), 1, + ACTIONS(7980), 1, anon_sym_DQUOTE, - STATE(4093), 1, + STATE(4203), 1, sym_comment, - STATE(4403), 1, + STATE(4377), 1, aux_sym_string_content_repeat1, - STATE(5131), 1, + STATE(5284), 1, sym_string_content, - ACTIONS(7691), 2, + ACTIONS(7927), 2, sym__escaped_str_content, sym_escape_sequence, - [121620] = 7, + [124144] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7681), 1, + ACTIONS(7937), 1, anon_sym_LPAREN, - ACTIONS(7685), 1, + ACTIONS(7941), 1, sym_unescaped_interpolated_content, - ACTIONS(7738), 1, + ACTIONS(7982), 1, anon_sym_SQUOTE2, - STATE(4094), 1, + STATE(4204), 1, sym_comment, - STATE(4099), 1, + STATE(4210), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4590), 1, + STATE(4836), 1, sym_expr_interpolated, - [121642] = 6, + [124166] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1022), 1, - sym__space, - ACTIONS(2656), 1, - anon_sym_LPAREN2, - ACTIONS(2658), 1, - sym__unquoted_pattern, - STATE(4095), 1, + ACTIONS(7937), 1, + anon_sym_LPAREN, + ACTIONS(7941), 1, + sym_unescaped_interpolated_content, + ACTIONS(7984), 1, + anon_sym_SQUOTE2, + STATE(4192), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4205), 1, sym_comment, - ACTIONS(1020), 2, - sym__newline, - anon_sym_SEMI, - [121662] = 5, + STATE(4836), 1, + sym_expr_interpolated, + [124188] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7740), 1, - anon_sym_LT, - STATE(4096), 1, - sym_comment, - ACTIONS(5245), 2, - anon_sym_AT2, + ACTIONS(2616), 1, sym__entry_separator, - ACTIONS(6012), 2, + ACTIONS(2620), 1, + anon_sym_LPAREN2, + ACTIONS(2622), 1, + sym__unquoted_pattern_in_list, + STATE(4206), 1, + sym_comment, + ACTIONS(2618), 2, anon_sym_RBRACK, - anon_sym_GT2, - [121680] = 5, + anon_sym_DOT_DOT, + [124208] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7532), 1, - anon_sym_EQ2, - STATE(4097), 1, - sym_comment, - STATE(4711), 1, - sym__flag_equals_value, - ACTIONS(4530), 3, + ACTIONS(3771), 1, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [121698] = 5, + ACTIONS(3958), 1, + sym__newline, + STATE(1995), 1, + aux_sym__types_body_repeat1, + STATE(4207), 1, + sym_comment, + STATE(4823), 1, + sym_val_list, + STATE(4839), 1, + aux_sym__table_body_repeat1, + [124230] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1553), 1, + sym__entry_separator, + STATE(4208), 1, + sym_comment, + ACTIONS(1551), 4, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_DOT_DOT, + anon_sym_DOT2, + [124246] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7742), 1, - anon_sym_DASH_DASH, - STATE(4582), 1, - sym_long_flag, - ACTIONS(4539), 2, - anon_sym_LBRACK, - anon_sym_LPAREN, - STATE(4098), 2, + ACTIONS(6889), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(7986), 2, + sym__newline, + anon_sym_COMMA, + STATE(4209), 2, sym_comment, - aux_sym_decl_def_repeat1, - [121716] = 7, + aux_sym_parameter_repeat2, + [124262] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7681), 1, + ACTIONS(7937), 1, anon_sym_LPAREN, - ACTIONS(7685), 1, + ACTIONS(7941), 1, sym_unescaped_interpolated_content, - ACTIONS(7745), 1, + ACTIONS(7989), 1, anon_sym_SQUOTE2, - STATE(4099), 1, - sym_comment, - STATE(4203), 1, + STATE(4192), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4590), 1, + STATE(4210), 1, + sym_comment, + STATE(4836), 1, sym_expr_interpolated, - [121738] = 5, + [124284] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7747), 1, - anon_sym_LT, - STATE(4100), 1, + ACTIONS(7771), 1, + anon_sym_DOT_DOT2, + ACTIONS(7991), 1, + anon_sym_RBRACE, + ACTIONS(7993), 1, + sym__entry_separator, + STATE(4211), 1, sym_comment, - ACTIONS(5245), 2, - anon_sym_AT2, + ACTIONS(7773), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [124304] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1470), 1, sym__entry_separator, - ACTIONS(6012), 2, + STATE(4212), 1, + sym_comment, + ACTIONS(1468), 4, anon_sym_RBRACK, anon_sym_GT2, - [121756] = 4, - ACTIONS(103), 1, + anon_sym_DOT_DOT, + anon_sym_DOT2, + [124320] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4101), 1, + ACTIONS(1897), 1, + sym__unquoted_pattern, + STATE(4213), 1, sym_comment, - ACTIONS(2525), 2, - anon_sym_LPAREN2, + ACTIONS(1895), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [124336] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2608), 1, sym__entry_separator, - ACTIONS(2527), 3, + ACTIONS(2612), 1, + anon_sym_LPAREN2, + ACTIONS(2614), 1, + sym__unquoted_pattern_in_list, + STATE(4214), 1, + sym_comment, + ACTIONS(2610), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - sym__unquoted_pattern_in_list, - [121772] = 4, + [124356] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(4102), 1, + STATE(4215), 1, sym_comment, - ACTIONS(6313), 2, + ACTIONS(2360), 2, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(6315), 3, - anon_sym_COLON, - anon_sym_GT2, - anon_sym_RBRACE, - [121788] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7749), 1, - anon_sym_DQUOTE, - STATE(4103), 1, - sym_comment, - STATE(4403), 1, - aux_sym_string_content_repeat1, - STATE(5228), 1, - sym_string_content, - ACTIONS(7691), 2, - sym__escaped_str_content, - sym_escape_sequence, - [121808] = 7, - ACTIONS(103), 1, + ACTIONS(2362), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + sym__unquoted_pattern_in_list, + [124372] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7681), 1, - anon_sym_LPAREN, - ACTIONS(7685), 1, - sym_unescaped_interpolated_content, - ACTIONS(7751), 1, - anon_sym_SQUOTE2, - STATE(4104), 1, + ACTIONS(3906), 1, + anon_sym_LBRACE, + STATE(4216), 1, sym_comment, - STATE(4109), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4590), 1, - sym_expr_interpolated, - [121830] = 6, + STATE(4855), 1, + sym_block, + ACTIONS(7767), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [124390] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7536), 1, + ACTIONS(7771), 1, anon_sym_DOT_DOT2, - ACTIONS(7753), 1, + ACTIONS(7995), 1, anon_sym_RBRACE, - ACTIONS(7755), 1, + ACTIONS(7997), 1, sym__entry_separator, - STATE(4105), 1, + STATE(4217), 1, sym_comment, - ACTIONS(7538), 2, + ACTIONS(7773), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [121850] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1030), 1, - sym__space, - ACTIONS(2656), 1, - anon_sym_LPAREN2, - ACTIONS(2658), 1, - sym__unquoted_pattern, - STATE(4106), 1, - sym_comment, - ACTIONS(994), 2, - sym__newline, - anon_sym_SEMI, - [121870] = 6, + [124410] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7757), 1, + ACTIONS(7999), 1, anon_sym_DQUOTE, - STATE(4107), 1, + STATE(4218), 1, sym_comment, - STATE(4403), 1, + STATE(4377), 1, aux_sym_string_content_repeat1, - STATE(5224), 1, + STATE(5391), 1, sym_string_content, - ACTIONS(7691), 2, + ACTIONS(7927), 2, sym__escaped_str_content, sym_escape_sequence, - [121890] = 7, + [124430] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7681), 1, + ACTIONS(7937), 1, anon_sym_LPAREN, - ACTIONS(7685), 1, + ACTIONS(7941), 1, sym_unescaped_interpolated_content, - ACTIONS(7759), 1, + ACTIONS(8001), 1, anon_sym_SQUOTE2, - STATE(4108), 1, + STATE(4219), 1, sym_comment, - STATE(4130), 1, + STATE(4222), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4590), 1, + STATE(4836), 1, sym_expr_interpolated, - [121912] = 7, + [124452] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7931), 1, + sym_identifier, + ACTIONS(7933), 1, + anon_sym_DOLLAR, + STATE(2788), 1, + sym_val_variable, + STATE(4220), 1, + sym_comment, + STATE(4228), 1, + sym__variable_name, + STATE(4674), 1, + sym__assignment_pattern_parenthesized, + [124474] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7681), 1, - anon_sym_LPAREN, - ACTIONS(7685), 1, - sym_unescaped_interpolated_content, - ACTIONS(7761), 1, - anon_sym_SQUOTE2, - STATE(4109), 1, + ACTIONS(2594), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(3898), 1, + anon_sym_LBRACE, + STATE(3030), 1, + sym_block, + STATE(4221), 1, sym_comment, - STATE(4203), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4590), 1, - sym_expr_interpolated, - [121934] = 7, + STATE(4430), 1, + aux_sym__repeat_newline, + [124496] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7681), 1, + ACTIONS(7937), 1, anon_sym_LPAREN, - ACTIONS(7685), 1, + ACTIONS(7941), 1, sym_unescaped_interpolated_content, - ACTIONS(7763), 1, + ACTIONS(8003), 1, anon_sym_SQUOTE2, - STATE(4110), 1, - sym_comment, - STATE(4203), 1, + STATE(4192), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4590), 1, + STATE(4222), 1, + sym_comment, + STATE(4836), 1, sym_expr_interpolated, - [121956] = 6, + [124518] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1635), 1, - sym__unquoted_pattern_in_list, - ACTIONS(1956), 1, + ACTIONS(1226), 1, sym__entry_separator, - ACTIONS(1960), 1, + ACTIONS(2632), 1, anon_sym_LPAREN2, - STATE(4111), 1, + ACTIONS(2634), 1, + sym__unquoted_pattern_in_list, + STATE(4223), 1, sym_comment, - ACTIONS(1958), 2, + ACTIONS(1012), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - [121976] = 6, + [124538] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7765), 1, + STATE(4224), 1, + sym_comment, + ACTIONS(2360), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(2362), 3, + sym__newline, + anon_sym_SEMI, + sym__unquoted_pattern, + [124554] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4225), 1, + sym_comment, + ACTIONS(1732), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1730), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [124570] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8005), 1, anon_sym_DQUOTE, - STATE(4112), 1, + STATE(4226), 1, sym_comment, - STATE(4403), 1, + STATE(4377), 1, aux_sym_string_content_repeat1, - STATE(5365), 1, + STATE(5501), 1, sym_string_content, - ACTIONS(7691), 2, + ACTIONS(7927), 2, sym__escaped_str_content, sym_escape_sequence, - [121996] = 7, + [124590] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7681), 1, + ACTIONS(7937), 1, anon_sym_LPAREN, - ACTIONS(7685), 1, + ACTIONS(7941), 1, sym_unescaped_interpolated_content, - ACTIONS(7767), 1, + ACTIONS(8007), 1, anon_sym_SQUOTE2, - STATE(4113), 1, + STATE(4227), 1, sym_comment, - STATE(4117), 1, + STATE(4231), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4590), 1, + STATE(4836), 1, sym_expr_interpolated, - [122018] = 7, + [124612] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2907), 1, + ACTIONS(2922), 1, sym__newline, - ACTIONS(5761), 1, + ACTIONS(5627), 1, anon_sym_EQ, - ACTIONS(7687), 1, + ACTIONS(7929), 1, anon_sym_COLON, - STATE(4114), 1, + STATE(4228), 1, sym_comment, - STATE(4559), 1, + STATE(4854), 1, aux_sym__repeat_newline, - STATE(5237), 1, + STATE(5478), 1, sym_param_type, - [122040] = 7, + [124634] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1234), 1, + sym__entry_separator, + ACTIONS(2632), 1, + anon_sym_LPAREN2, + ACTIONS(2634), 1, + sym__unquoted_pattern_in_list, + STATE(4229), 1, + sym_comment, + ACTIONS(1020), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [124654] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1986), 1, + anon_sym_LPAREN2, + ACTIONS(1992), 1, + sym__unquoted_pattern, + ACTIONS(2652), 1, + sym__space, + STATE(4230), 1, + sym_comment, + ACTIONS(2654), 2, + sym__newline, + anon_sym_SEMI, + [124674] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7681), 1, + ACTIONS(7937), 1, anon_sym_LPAREN, - ACTIONS(7685), 1, + ACTIONS(7941), 1, sym_unescaped_interpolated_content, - ACTIONS(7769), 1, + ACTIONS(8009), 1, anon_sym_SQUOTE2, - STATE(4110), 1, + STATE(4192), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4115), 1, + STATE(4231), 1, sym_comment, - STATE(4590), 1, + STATE(4836), 1, sym_expr_interpolated, - [122062] = 6, + [124696] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8011), 1, + anon_sym_QMARK2, + ACTIONS(8013), 1, + anon_sym_BANG, + STATE(4232), 1, + sym_comment, + STATE(4993), 1, + sym__path_suffix, + ACTIONS(1444), 2, + sym__table_head_separator, + anon_sym_DOT2, + [124716] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5765), 1, + ACTIONS(1699), 1, sym__space, - ACTIONS(7512), 1, - anon_sym_EQ2, - STATE(3164), 1, - sym__flag_equals_value, - STATE(4116), 1, + ACTIONS(2672), 1, + anon_sym_LPAREN2, + ACTIONS(2674), 1, + sym__unquoted_pattern, + STATE(4233), 1, sym_comment, - ACTIONS(5763), 2, + ACTIONS(1615), 2, sym__newline, anon_sym_SEMI, - [122082] = 7, + [124736] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7681), 1, - anon_sym_LPAREN, - ACTIONS(7685), 1, - sym_unescaped_interpolated_content, - ACTIONS(7771), 1, - anon_sym_SQUOTE2, - STATE(4117), 1, + ACTIONS(2822), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(5273), 1, + anon_sym_DOLLAR, + ACTIONS(7476), 1, + sym_identifier, + STATE(2788), 1, + sym_val_variable, + STATE(4234), 1, sym_comment, - STATE(4203), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4590), 1, - sym_expr_interpolated, - [122104] = 4, + STATE(5096), 1, + sym__variable_name, + [124758] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(4118), 1, - sym_comment, - ACTIONS(6261), 2, + ACTIONS(2616), 1, + sym__space, + ACTIONS(2620), 1, anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(6263), 3, - anon_sym_COLON, - anon_sym_GT2, - anon_sym_RBRACE, - [122120] = 6, + ACTIONS(2622), 1, + sym__unquoted_pattern, + STATE(4235), 1, + sym_comment, + ACTIONS(2618), 2, + sym__newline, + anon_sym_SEMI, + [124778] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7773), 1, + ACTIONS(8015), 1, anon_sym_DQUOTE, - STATE(4119), 1, + STATE(4236), 1, sym_comment, - STATE(4403), 1, + STATE(4377), 1, aux_sym_string_content_repeat1, - STATE(4964), 1, + STATE(5097), 1, sym_string_content, - ACTIONS(7691), 2, + ACTIONS(7927), 2, sym__escaped_str_content, sym_escape_sequence, - [122140] = 6, + [124798] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7775), 1, + ACTIONS(1982), 1, + sym__space, + ACTIONS(1986), 1, + anon_sym_LPAREN2, + ACTIONS(1992), 1, + sym__unquoted_pattern, + STATE(4237), 1, + sym_comment, + ACTIONS(1984), 2, + sym__newline, + anon_sym_SEMI, + [124818] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8017), 1, anon_sym_DQUOTE, - STATE(4120), 1, + STATE(4238), 1, sym_comment, - STATE(4403), 1, + STATE(4377), 1, aux_sym_string_content_repeat1, - STATE(4979), 1, + STATE(5112), 1, sym_string_content, - ACTIONS(7691), 2, + ACTIONS(7927), 2, sym__escaped_str_content, sym_escape_sequence, - [122160] = 4, + [124838] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6706), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(7777), 2, + ACTIONS(3906), 1, + anon_sym_LBRACE, + STATE(4239), 1, + sym_comment, + STATE(4760), 1, + sym_block, + ACTIONS(7713), 3, + ts_builtin_sym_end, sym__newline, - anon_sym_COMMA, - STATE(4121), 2, + anon_sym_SEMI, + [124856] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(4240), 1, sym_comment, - aux_sym_parameter_repeat2, - [122176] = 6, + ACTIONS(1730), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1732), 3, + sym__newline, + anon_sym_SEMI, + sym__unquoted_pattern, + [124872] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7780), 1, + ACTIONS(8019), 1, anon_sym_DQUOTE, - STATE(4122), 1, + STATE(4241), 1, sym_comment, - STATE(4403), 1, + STATE(4377), 1, aux_sym_string_content_repeat1, - STATE(4992), 1, + STATE(5125), 1, sym_string_content, - ACTIONS(7691), 2, + ACTIONS(7927), 2, sym__escaped_str_content, sym_escape_sequence, - [122196] = 6, + [124892] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7937), 1, + anon_sym_LPAREN, + ACTIONS(7941), 1, + sym_unescaped_interpolated_content, + ACTIONS(8021), 1, + anon_sym_SQUOTE2, + STATE(4192), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4242), 1, + sym_comment, + STATE(4836), 1, + sym_expr_interpolated, + [124914] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1637), 1, + sym__unquoted_pattern, + ACTIONS(1972), 1, + anon_sym_LBRACE, + ACTIONS(8023), 1, + anon_sym_DOT_DOT2, + STATE(4243), 1, + sym_comment, + ACTIONS(8025), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [124934] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7782), 1, + ACTIONS(8027), 1, anon_sym_DQUOTE, - STATE(4123), 1, + STATE(4244), 1, sym_comment, - STATE(4403), 1, + STATE(4377), 1, aux_sym_string_content_repeat1, - STATE(5003), 1, + STATE(5136), 1, sym_string_content, - ACTIONS(7691), 2, + ACTIONS(7927), 2, sym__escaped_str_content, sym_escape_sequence, - [122216] = 4, + [124954] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1772), 1, + ACTIONS(1883), 1, + sym__table_head_separator, + ACTIONS(8029), 1, + anon_sym_DOT2, + STATE(4245), 1, + sym_comment, + STATE(4354), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4916), 1, + sym_path, + STATE(5246), 1, + sym_cell_path, + [124976] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(4246), 1, + sym_comment, + ACTIONS(1730), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1732), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + sym__unquoted_pattern_in_list, + [124992] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4247), 1, + sym_comment, + ACTIONS(1897), 2, + anon_sym_DOT_DOT2, sym__unquoted_pattern, - STATE(4124), 1, + ACTIONS(1895), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [125008] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2622), 1, + sym__unquoted_pattern, + STATE(4248), 1, sym_comment, - ACTIONS(1770), 4, + ACTIONS(2616), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [122232] = 6, + [125024] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7784), 1, + ACTIONS(8031), 1, anon_sym_DQUOTE, - STATE(4125), 1, + STATE(4249), 1, sym_comment, - STATE(4403), 1, + STATE(4377), 1, aux_sym_string_content_repeat1, - STATE(5013), 1, + STATE(5145), 1, sym_string_content, - ACTIONS(7691), 2, + ACTIONS(7927), 2, sym__escaped_str_content, sym_escape_sequence, - [122252] = 4, - ACTIONS(3), 1, + [125044] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4126), 1, + ACTIONS(8033), 1, + anon_sym_BANG, + STATE(4250), 1, sym_comment, - ACTIONS(1772), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1770), 3, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [122268] = 4, + ACTIONS(1460), 4, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [125060] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(4127), 1, + STATE(4251), 1, sym_comment, - ACTIONS(1770), 2, + ACTIONS(1846), 2, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1772), 3, + ACTIONS(1848), 3, anon_sym_RBRACK, anon_sym_DOT_DOT, sym__unquoted_pattern_in_list, - [122284] = 7, + [125076] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7681), 1, - anon_sym_LPAREN, - ACTIONS(7685), 1, - sym_unescaped_interpolated_content, - ACTIONS(7786), 1, - anon_sym_SQUOTE2, - STATE(4128), 1, + STATE(4252), 1, sym_comment, - STATE(4203), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4590), 1, - sym_expr_interpolated, - [122306] = 6, + ACTIONS(1895), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1897), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + sym__unquoted_pattern_in_list, + [125092] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7788), 1, + ACTIONS(8035), 1, anon_sym_DQUOTE, - STATE(4129), 1, + STATE(4253), 1, sym_comment, - STATE(4403), 1, + STATE(4377), 1, aux_sym_string_content_repeat1, - STATE(5020), 1, + STATE(5152), 1, sym_string_content, - ACTIONS(7691), 2, + ACTIONS(7927), 2, sym__escaped_str_content, sym_escape_sequence, - [122326] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7681), 1, - anon_sym_LPAREN, - ACTIONS(7685), 1, - sym_unescaped_interpolated_content, - ACTIONS(7790), 1, - anon_sym_SQUOTE2, - STATE(4130), 1, - sym_comment, - STATE(4203), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4590), 1, - sym_expr_interpolated, - [122348] = 6, + [125112] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7792), 1, + ACTIONS(8037), 1, anon_sym_DQUOTE, - STATE(4131), 1, + STATE(4254), 1, sym_comment, - STATE(4403), 1, + STATE(4377), 1, aux_sym_string_content_repeat1, - STATE(5027), 1, + STATE(5159), 1, sym_string_content, - ACTIONS(7691), 2, + ACTIONS(7927), 2, sym__escaped_str_content, sym_escape_sequence, - [122368] = 6, - ACTIONS(103), 1, + [125132] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7536), 1, - anon_sym_DOT_DOT2, - ACTIONS(7542), 1, - anon_sym_RBRACK, - ACTIONS(7550), 1, - sym__entry_separator, - STATE(4132), 1, + ACTIONS(2634), 1, + sym__unquoted_pattern, + STATE(4255), 1, sym_comment, - ACTIONS(7538), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [122388] = 7, + ACTIONS(1234), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [125148] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2829), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(5322), 1, - anon_sym_DOLLAR, - ACTIONS(7328), 1, - sym_identifier, - STATE(2825), 1, - sym_val_variable, - STATE(4133), 1, + ACTIONS(8039), 1, + anon_sym_DQUOTE, + STATE(4256), 1, sym_comment, - STATE(5179), 1, - sym__variable_name, - [122410] = 6, + STATE(4377), 1, + aux_sym_string_content_repeat1, + STATE(5166), 1, + sym_string_content, + ACTIONS(7927), 2, + sym__escaped_str_content, + sym_escape_sequence, + [125168] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7794), 1, + ACTIONS(8041), 1, anon_sym_DQUOTE, - STATE(4134), 1, + STATE(4257), 1, sym_comment, - STATE(4403), 1, + STATE(4377), 1, aux_sym_string_content_repeat1, - STATE(5034), 1, + STATE(5173), 1, sym_string_content, - ACTIONS(7691), 2, + ACTIONS(7927), 2, sym__escaped_str_content, sym_escape_sequence, - [122430] = 4, + [125188] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(4135), 1, + ACTIONS(4353), 1, + sym__space, + ACTIONS(7777), 1, + anon_sym_EQ2, + STATE(3200), 1, + sym__flag_equals_value, + STATE(4258), 1, sym_comment, - ACTIONS(1870), 2, - anon_sym_LPAREN2, + ACTIONS(4351), 2, + sym__newline, + anon_sym_SEMI, + [125208] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5360), 1, sym__entry_separator, - ACTIONS(1872), 3, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - sym__unquoted_pattern_in_list, - [122446] = 6, + ACTIONS(7464), 1, + anon_sym_DOT2, + STATE(352), 1, + sym_path, + STATE(4013), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4259), 1, + sym_comment, + STATE(4358), 1, + sym_cell_path, + [125230] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1977), 1, - anon_sym_LPAREN2, - ACTIONS(1983), 1, - sym__unquoted_pattern_in_list, - ACTIONS(2597), 1, + ACTIONS(7771), 1, + anon_sym_DOT_DOT2, + ACTIONS(8043), 1, + anon_sym_RBRACE, + ACTIONS(8045), 1, sym__entry_separator, - STATE(4136), 1, + STATE(4260), 1, sym_comment, - ACTIONS(2599), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [122466] = 6, + ACTIONS(7773), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [125250] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7796), 1, + ACTIONS(8047), 1, anon_sym_DQUOTE, - STATE(4137), 1, + STATE(4261), 1, sym_comment, - STATE(4403), 1, + STATE(4377), 1, aux_sym_string_content_repeat1, - STATE(5041), 1, + STATE(5186), 1, sym_string_content, - ACTIONS(7691), 2, + ACTIONS(7927), 2, sym__escaped_str_content, sym_escape_sequence, - [122486] = 6, - ACTIONS(103), 1, + [125270] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1973), 1, - sym__entry_separator, - ACTIONS(1977), 1, - anon_sym_LPAREN2, - ACTIONS(1983), 1, - sym__unquoted_pattern_in_list, - STATE(4138), 1, + STATE(4262), 1, sym_comment, - ACTIONS(1975), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [122506] = 6, + ACTIONS(1848), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1846), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [125286] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7798), 1, + ACTIONS(8049), 1, anon_sym_DQUOTE, - STATE(4139), 1, + STATE(4263), 1, sym_comment, - STATE(4403), 1, + STATE(4377), 1, aux_sym_string_content_repeat1, - STATE(5048), 1, + STATE(5192), 1, sym_string_content, - ACTIONS(7691), 2, + ACTIONS(7927), 2, sym__escaped_str_content, sym_escape_sequence, - [122526] = 6, - ACTIONS(103), 1, + [125306] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7800), 1, - anon_sym_DQUOTE, - STATE(4140), 1, + ACTIONS(7931), 1, + sym_identifier, + ACTIONS(7933), 1, + anon_sym_DOLLAR, + STATE(2788), 1, + sym_val_variable, + STATE(4179), 1, + sym__variable_name, + STATE(4264), 1, sym_comment, - STATE(4403), 1, - aux_sym_string_content_repeat1, - STATE(5054), 1, - sym_string_content, - ACTIONS(7691), 2, - sym__escaped_str_content, - sym_escape_sequence, - [122546] = 6, + STATE(4756), 1, + sym__assignment_pattern, + [125328] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7802), 1, + ACTIONS(8051), 1, anon_sym_DQUOTE, - STATE(4141), 1, + STATE(4265), 1, sym_comment, - STATE(4403), 1, + STATE(4377), 1, aux_sym_string_content_repeat1, - STATE(5060), 1, + STATE(5449), 1, sym_string_content, - ACTIONS(7691), 2, + ACTIONS(7927), 2, sym__escaped_str_content, sym_escape_sequence, - [122566] = 4, + [125348] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4266), 1, + sym_comment, + STATE(5102), 1, + sym__immediate_decimal, + ACTIONS(7695), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(7711), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [125366] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7804), 1, - anon_sym_QMARK2, - STATE(4142), 1, + ACTIONS(2594), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(5273), 1, + anon_sym_DOLLAR, + ACTIONS(7476), 1, + sym_identifier, + STATE(2788), 1, + sym_val_variable, + STATE(4267), 1, sym_comment, - ACTIONS(1448), 4, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [122582] = 4, + STATE(5454), 1, + sym__variable_name, + [125388] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1854), 1, + ACTIONS(2634), 1, sym__unquoted_pattern, - STATE(4143), 1, + STATE(4268), 1, sym_comment, - ACTIONS(1852), 4, + ACTIONS(1226), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [122598] = 6, + [125404] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1679), 1, - sym__unquoted_pattern_in_list, - ACTIONS(2541), 1, - sym__entry_separator, - ACTIONS(2642), 1, - anon_sym_LPAREN2, - STATE(4144), 1, + ACTIONS(8033), 1, + anon_sym_QMARK2, + STATE(4269), 1, sym_comment, - ACTIONS(2543), 2, + ACTIONS(1460), 4, anon_sym_RBRACK, - anon_sym_DOT_DOT, - [122618] = 4, + sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [125420] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1872), 1, + ACTIONS(1732), 1, sym__unquoted_pattern, - STATE(4145), 1, + STATE(4270), 1, sym_comment, - ACTIONS(1870), 4, + ACTIONS(1730), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [122634] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2589), 1, - sym__entry_separator, - ACTIONS(2644), 1, - anon_sym_LPAREN2, - ACTIONS(2646), 1, - sym__unquoted_pattern_in_list, - STATE(4146), 1, - sym_comment, - ACTIONS(2591), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [122654] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1635), 1, - sym__unquoted_pattern, - ACTIONS(1956), 1, - sym__space, - ACTIONS(1960), 1, - anon_sym_LPAREN2, - STATE(4147), 1, - sym_comment, - ACTIONS(1958), 2, - sym__newline, - anon_sym_SEMI, - [122674] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2088), 1, - sym__entry_separator, - ACTIONS(7806), 1, - anon_sym_LBRACK2, - STATE(4148), 1, - sym_comment, - ACTIONS(2090), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [122692] = 7, + [125436] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2907), 1, + ACTIONS(2922), 1, sym__newline, - ACTIONS(5919), 1, + ACTIONS(5822), 1, anon_sym_EQ, - ACTIONS(7687), 1, + ACTIONS(7929), 1, anon_sym_COLON, - STATE(4149), 1, + STATE(4271), 1, sym_comment, - STATE(4559), 1, + STATE(4854), 1, aux_sym__repeat_newline, - STATE(5113), 1, + STATE(5245), 1, sym_param_type, - [122714] = 5, + [125458] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8053), 1, + anon_sym_DQUOTE, + STATE(4272), 1, + sym_comment, + STATE(4377), 1, + aux_sym_string_content_repeat1, + STATE(5329), 1, + sym_string_content, + ACTIONS(7927), 2, + sym__escaped_str_content, + sym_escape_sequence, + [125478] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(4150), 1, + ACTIONS(1887), 1, + sym__table_head_separator, + ACTIONS(8029), 1, + anon_sym_DOT2, + STATE(4273), 1, sym_comment, - STATE(5112), 1, + STATE(4354), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4916), 1, + sym_path, + STATE(5358), 1, + sym_cell_path, + [125500] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4274), 1, + sym_comment, + STATE(5219), 1, sym__immediate_decimal, - ACTIONS(6664), 2, + ACTIONS(6926), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6666), 2, + ACTIONS(6928), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [122732] = 7, + [125518] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2829), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(5271), 1, - anon_sym_DOLLAR, - ACTIONS(7408), 1, - sym_identifier, - STATE(2957), 1, - sym__variable_name, - STATE(3051), 1, - sym_val_variable, - STATE(4151), 1, + ACTIONS(7937), 1, + anon_sym_LPAREN, + ACTIONS(7941), 1, + sym_unescaped_interpolated_content, + ACTIONS(8055), 1, + anon_sym_SQUOTE2, + STATE(4242), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4275), 1, + sym_comment, + STATE(4836), 1, + sym_expr_interpolated, + [125540] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7937), 1, + anon_sym_LPAREN, + ACTIONS(7941), 1, + sym_unescaped_interpolated_content, + ACTIONS(8057), 1, + anon_sym_SQUOTE2, + STATE(4192), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4276), 1, + sym_comment, + STATE(4836), 1, + sym_expr_interpolated, + [125562] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7937), 1, + anon_sym_LPAREN, + ACTIONS(7941), 1, + sym_unescaped_interpolated_content, + ACTIONS(8059), 1, + anon_sym_SQUOTE2, + STATE(4276), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4277), 1, sym_comment, - [122754] = 4, + STATE(4836), 1, + sym_expr_interpolated, + [125584] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2658), 1, + ACTIONS(1992), 1, sym__unquoted_pattern, - STATE(4152), 1, + STATE(4278), 1, sym_comment, - ACTIONS(1022), 4, + ACTIONS(1982), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [122770] = 4, + [125600] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2658), 1, - sym__unquoted_pattern, - STATE(4153), 1, + ACTIONS(7670), 1, + aux_sym__immediate_decimal_token5, + STATE(4279), 1, sym_comment, - ACTIONS(1030), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [122786] = 6, + ACTIONS(1790), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1792), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + [125618] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7536), 1, - anon_sym_DOT_DOT2, - ACTIONS(7808), 1, - anon_sym_RBRACE, - ACTIONS(7810), 1, + ACTIONS(7719), 1, + anon_sym_RBRACK, + ACTIONS(7721), 1, sym__entry_separator, - STATE(4154), 1, + ACTIONS(7771), 1, + anon_sym_DOT_DOT2, + STATE(4280), 1, sym_comment, - ACTIONS(7538), 2, + ACTIONS(7773), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [122806] = 5, + [125638] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7667), 1, - aux_sym__immediate_decimal_token5, - STATE(4155), 1, + ACTIONS(3906), 1, + anon_sym_LBRACE, + STATE(4281), 1, sym_comment, - ACTIONS(1744), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1746), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - [122824] = 4, - ACTIONS(3), 1, + STATE(4796), 1, + sym_block, + ACTIONS(7816), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [125656] = 7, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4156), 1, + ACTIONS(2822), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(5279), 1, + anon_sym_DOLLAR, + ACTIONS(7755), 1, + sym_identifier, + STATE(3028), 1, + sym__variable_name, + STATE(3206), 1, + sym_val_variable, + STATE(4282), 1, sym_comment, - ACTIONS(1854), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1852), 3, + [125678] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3906), 1, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [122840] = 5, + STATE(4283), 1, + sym_comment, + STATE(4798), 1, + sym_block, + ACTIONS(7816), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [125696] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1986), 1, + anon_sym_LPAREN2, + ACTIONS(1992), 1, + sym__unquoted_pattern_in_list, + ACTIONS(2652), 1, + sym__entry_separator, + STATE(4284), 1, + sym_comment, + ACTIONS(2654), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [125716] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7812), 1, + ACTIONS(8061), 1, aux_sym__immediate_decimal_token5, - STATE(4157), 1, + STATE(4285), 1, sym_comment, - ACTIONS(1852), 2, + ACTIONS(1846), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1854), 2, + ACTIONS(1848), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - [122858] = 5, + [125734] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4121), 1, - aux_sym_parameter_repeat2, - STATE(4158), 1, + ACTIONS(2674), 1, + sym__unquoted_pattern, + STATE(4286), 1, sym_comment, - ACTIONS(1398), 2, + ACTIONS(7486), 4, + anon_sym_if, sym__newline, - anon_sym_COMMA, - ACTIONS(7704), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [122876] = 4, + anon_sym_PIPE, + anon_sym_EQ_GT, + [125750] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1734), 1, + ACTIONS(1828), 1, sym__unquoted_pattern, - STATE(4159), 1, + STATE(4287), 1, sym_comment, - ACTIONS(886), 4, + ACTIONS(968), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [122892] = 6, + [125766] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1977), 1, - anon_sym_LPAREN2, - ACTIONS(1983), 1, - sym__unquoted_pattern, - ACTIONS(2597), 1, + ACTIONS(5734), 1, sym__space, - STATE(4160), 1, + ACTIONS(7777), 1, + anon_sym_EQ2, + STATE(3149), 1, + sym__flag_equals_value, + STATE(4288), 1, sym_comment, - ACTIONS(2599), 2, + ACTIONS(5732), 2, sym__newline, anon_sym_SEMI, - [122912] = 4, + [125786] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(4161), 1, - sym_comment, - ACTIONS(2525), 2, - anon_sym_LPAREN2, + ACTIONS(1982), 1, sym__entry_separator, - ACTIONS(2527), 3, + ACTIONS(1986), 1, + anon_sym_LPAREN2, + ACTIONS(1992), 1, + sym__unquoted_pattern_in_list, + STATE(4289), 1, + sym_comment, + ACTIONS(1984), 2, anon_sym_RBRACK, + anon_sym_DOT_DOT, + [125806] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1982), 1, + sym__entry_separator, + ACTIONS(1984), 1, anon_sym_RBRACE, - sym__unquoted_pattern_in_list, - [122928] = 6, + ACTIONS(8063), 1, + anon_sym_DOT_DOT2, + STATE(4290), 1, + sym_comment, + ACTIONS(8065), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [125826] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2648), 1, + ACTIONS(8067), 1, + anon_sym_LT, + STATE(4291), 1, + sym_comment, + ACTIONS(5302), 2, + anon_sym_AT2, sym__entry_separator, - ACTIONS(2652), 1, - anon_sym_LPAREN2, - ACTIONS(2654), 1, - sym__unquoted_pattern_in_list, - STATE(4162), 1, + ACTIONS(6378), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [125844] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1456), 1, + anon_sym_COLON2, + ACTIONS(5016), 1, + anon_sym_DOT2, + STATE(458), 1, + sym_path, + STATE(501), 1, + sym_cell_path, + STATE(2298), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4292), 1, sym_comment, - ACTIONS(2650), 2, + [125866] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8069), 1, + anon_sym_LT, + STATE(4293), 1, + sym_comment, + ACTIONS(5302), 2, + anon_sym_AT2, + sym__entry_separator, + ACTIONS(6378), 2, anon_sym_RBRACK, - anon_sym_DOT_DOT, - [122948] = 5, + anon_sym_GT2, + [125884] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(4294), 1, + sym_comment, + ACTIONS(6443), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(6445), 3, + anon_sym_COLON, + anon_sym_GT2, + anon_sym_RBRACE, + [125900] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7445), 1, + ACTIONS(7868), 1, aux_sym__immediate_decimal_token5, - STATE(4163), 1, + STATE(4295), 1, sym_comment, - ACTIONS(1744), 2, + ACTIONS(1790), 2, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1746), 2, + ACTIONS(1792), 2, anon_sym_RBRACK, sym__unquoted_pattern_in_list, - [122966] = 7, + [125918] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2555), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2907), 1, - sym__newline, - ACTIONS(3808), 1, + ACTIONS(7771), 1, + anon_sym_DOT_DOT2, + ACTIONS(8071), 1, + anon_sym_RBRACE, + ACTIONS(8073), 1, + sym__entry_separator, + STATE(4296), 1, + sym_comment, + ACTIONS(7773), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [125938] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3906), 1, anon_sym_LBRACE, - STATE(3054), 1, + STATE(4297), 1, + sym_comment, + STATE(4675), 1, sym_block, - STATE(4164), 1, + ACTIONS(7798), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [125956] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2164), 1, + sym__entry_separator, + ACTIONS(8075), 1, + anon_sym_LBRACK2, + STATE(4298), 1, sym_comment, - STATE(4336), 1, - aux_sym__repeat_newline, - [122988] = 6, + ACTIONS(2166), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [125974] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1973), 1, - sym__space, - ACTIONS(1977), 1, - anon_sym_LPAREN2, - ACTIONS(1983), 1, - sym__unquoted_pattern, - STATE(4165), 1, + ACTIONS(2594), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7476), 1, + sym_identifier, + ACTIONS(7576), 1, + anon_sym_DOLLAR, + STATE(2788), 1, + sym_val_variable, + STATE(2806), 1, + sym__variable_name, + STATE(4299), 1, sym_comment, - ACTIONS(1975), 2, - sym__newline, - anon_sym_SEMI, - [123008] = 7, + [125996] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7675), 1, + ACTIONS(7931), 1, sym_identifier, - ACTIONS(7677), 1, + ACTIONS(7933), 1, anon_sym_DOLLAR, - STATE(2825), 1, + STATE(2788), 1, sym_val_variable, - STATE(4166), 1, - sym_comment, - STATE(4186), 1, + STATE(4190), 1, sym__variable_name, - STATE(4370), 1, + STATE(4300), 1, + sym_comment, + STATE(4489), 1, sym__assignment_pattern, - [123030] = 4, + [126018] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1359), 1, + aux_sym__block_body_repeat1, + STATE(4301), 1, + sym_comment, + ACTIONS(153), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(3061), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [126036] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7804), 1, - anon_sym_BANG, - STATE(4167), 1, + ACTIONS(1790), 1, + sym__entry_separator, + ACTIONS(7011), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8077), 1, + anon_sym_DOT, + STATE(4302), 1, sym_comment, - ACTIONS(1448), 4, + ACTIONS(1792), 2, anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [123046] = 6, + anon_sym_RBRACE, + [126056] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1022), 1, - sym__entry_separator, - ACTIONS(2656), 1, + STATE(4303), 1, + sym_comment, + ACTIONS(1846), 2, + sym__space, anon_sym_LPAREN2, - ACTIONS(2658), 1, - sym__unquoted_pattern_in_list, - STATE(4168), 1, + ACTIONS(1848), 3, + sym__newline, + anon_sym_SEMI, + sym__unquoted_pattern, + [126072] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7761), 1, + anon_sym_EQ2, + STATE(4304), 1, sym_comment, - ACTIONS(1020), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [123066] = 4, + STATE(4727), 1, + sym__flag_equals_value, + ACTIONS(4353), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [126090] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(4305), 1, + sym_comment, + ACTIONS(1895), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1897), 3, + sym__newline, + anon_sym_SEMI, + sym__unquoted_pattern, + [126106] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2614), 1, + ACTIONS(1695), 1, sym__unquoted_pattern, - STATE(4169), 1, + STATE(4306), 1, sym_comment, - ACTIONS(7268), 4, + ACTIONS(2572), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [123082] = 7, + [126122] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1444), 1, - anon_sym_COLON2, - ACTIONS(5010), 1, - anon_sym_DOT2, - STATE(458), 1, - sym_path, - STATE(496), 1, - sym_cell_path, - STATE(2323), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4170), 1, + ACTIONS(1637), 1, + sym__unquoted_pattern, + STATE(4307), 1, + sym_comment, + ACTIONS(1972), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [126138] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(4308), 1, sym_comment, - [123104] = 6, + ACTIONS(6491), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(6493), 3, + anon_sym_COLON, + anon_sym_GT2, + anon_sym_RBRACE, + [126154] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1744), 1, + ACTIONS(1790), 1, sym__space, - ACTIONS(6975), 1, + ACTIONS(7031), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7814), 1, + ACTIONS(8079), 1, anon_sym_DOT, - STATE(4171), 1, + STATE(4309), 1, sym_comment, - ACTIONS(1746), 2, + ACTIONS(1792), 2, sym__newline, anon_sym_SEMI, - [123124] = 5, + [126174] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1746), 1, + ACTIONS(1792), 1, sym__unquoted_pattern, - ACTIONS(7671), 1, + ACTIONS(7677), 1, aux_sym__immediate_decimal_token5, - STATE(4172), 1, + STATE(4310), 1, sym_comment, - ACTIONS(1744), 3, + ACTIONS(1790), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [123142] = 6, + [126192] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4209), 1, + aux_sym_parameter_repeat2, + STATE(4311), 1, + sym_comment, + ACTIONS(1398), 2, + sym__newline, + anon_sym_COMMA, + ACTIONS(7954), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [126210] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8081), 1, + anon_sym_DASH_DASH, + STATE(4670), 1, + sym_long_flag, + ACTIONS(4394), 2, + anon_sym_LBRACK, + anon_sym_LPAREN, + STATE(4312), 2, + sym_comment, + aux_sym_decl_def_repeat1, + [126228] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1030), 1, + ACTIONS(1545), 1, sym__entry_separator, - ACTIONS(2656), 1, - anon_sym_LPAREN2, - ACTIONS(2658), 1, - sym__unquoted_pattern_in_list, - STATE(4173), 1, + STATE(4313), 1, sym_comment, - ACTIONS(994), 2, + ACTIONS(1543), 4, anon_sym_RBRACK, + anon_sym_GT2, anon_sym_DOT_DOT, - [123162] = 6, + anon_sym_DOT2, + [126244] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7816), 1, - anon_sym_QMARK2, - ACTIONS(7818), 1, - anon_sym_BANG, - STATE(4174), 1, + ACTIONS(7931), 1, + sym_identifier, + ACTIONS(7933), 1, + anon_sym_DOLLAR, + STATE(2788), 1, + sym_val_variable, + STATE(4314), 1, sym_comment, - STATE(4827), 1, - sym__path_suffix, - ACTIONS(1458), 2, - sym__table_head_separator, + STATE(4318), 1, + sym__variable_name, + STATE(4489), 1, + sym__assignment_pattern, + [126266] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8084), 1, + anon_sym_DQUOTE, + STATE(4315), 1, + sym_comment, + STATE(4377), 1, + aux_sym_string_content_repeat1, + STATE(5362), 1, + sym_string_content, + ACTIONS(7927), 2, + sym__escaped_str_content, + sym_escape_sequence, + [126286] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7937), 1, + anon_sym_LPAREN, + ACTIONS(7941), 1, + sym_unescaped_interpolated_content, + ACTIONS(8086), 1, + anon_sym_SQUOTE2, + STATE(4316), 1, + sym_comment, + STATE(4333), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4836), 1, + sym_expr_interpolated, + [126308] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7365), 1, + sym__entry_separator, + ACTIONS(7464), 1, anon_sym_DOT2, - [123182] = 4, + STATE(352), 1, + sym_path, + STATE(4013), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4317), 1, + sym_comment, + STATE(4715), 1, + sym_cell_path, + [126330] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(5940), 1, + anon_sym_EQ, + ACTIONS(7929), 1, + anon_sym_COLON, + STATE(4318), 1, + sym_comment, + STATE(4854), 1, + aux_sym__repeat_newline, + STATE(5373), 1, + sym_param_type, + [126352] = 7, ACTIONS(103), 1, anon_sym_POUND, - STATE(4175), 1, + ACTIONS(7426), 1, + sym__entry_separator, + ACTIONS(7464), 1, + anon_sym_DOT2, + STATE(352), 1, + sym_path, + STATE(4013), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4319), 1, + sym_comment, + STATE(4779), 1, + sym_cell_path, + [126374] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7931), 1, + sym_identifier, + ACTIONS(7933), 1, + anon_sym_DOLLAR, + STATE(2788), 1, + sym_val_variable, + STATE(4271), 1, + sym__variable_name, + STATE(4320), 1, sym_comment, - ACTIONS(1770), 2, + STATE(4674), 1, + sym__assignment_pattern_parenthesized, + [126396] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1637), 1, + sym__unquoted_pattern, + ACTIONS(1972), 1, sym__space, + ACTIONS(1976), 1, anon_sym_LPAREN2, - ACTIONS(1772), 3, + STATE(4321), 1, + sym_comment, + ACTIONS(1974), 2, sym__newline, anon_sym_SEMI, - sym__unquoted_pattern, - [123198] = 4, - ACTIONS(3), 1, + [126416] = 7, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4176), 1, + ACTIONS(2672), 1, + anon_sym_LPAREN2, + ACTIONS(2674), 1, + sym__unquoted_pattern_in_list, + ACTIONS(7666), 1, + anon_sym_DOT_DOT, + ACTIONS(7723), 1, + anon_sym_RBRACK, + ACTIONS(7726), 1, + sym__entry_separator, + STATE(4322), 1, sym_comment, - ACTIONS(1872), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1870), 3, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [123214] = 5, + [126438] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1854), 1, + ACTIONS(1848), 1, sym__unquoted_pattern, - ACTIONS(7820), 1, + ACTIONS(8088), 1, aux_sym__immediate_decimal_token5, - STATE(4177), 1, + STATE(4323), 1, sym_comment, - ACTIONS(1852), 3, + ACTIONS(1846), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [123232] = 7, + [126456] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7675), 1, - sym_identifier, - ACTIONS(7677), 1, - anon_sym_DOLLAR, - STATE(2825), 1, - sym_val_variable, - STATE(4114), 1, - sym__variable_name, - STATE(4178), 1, + ACTIONS(1982), 1, + anon_sym_LBRACE, + ACTIONS(1992), 1, + sym__unquoted_pattern, + ACTIONS(8090), 1, + anon_sym_DOT_DOT2, + STATE(4324), 1, sym_comment, - STATE(4370), 1, - sym__assignment_pattern, - [123254] = 6, + ACTIONS(8092), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [126476] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7822), 1, - anon_sym_DQUOTE, - STATE(4179), 1, + ACTIONS(1226), 1, + sym__space, + ACTIONS(2632), 1, + anon_sym_LPAREN2, + ACTIONS(2634), 1, + sym__unquoted_pattern, + STATE(4325), 1, sym_comment, - STATE(4403), 1, - aux_sym_string_content_repeat1, - STATE(4963), 1, - sym_string_content, - ACTIONS(7691), 2, - sym__escaped_str_content, - sym_escape_sequence, - [123274] = 5, + ACTIONS(1012), 2, + sym__newline, + anon_sym_SEMI, + [126496] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7862), 1, + aux_sym__immediate_decimal_token5, + STATE(4326), 1, + sym_comment, + ACTIONS(1790), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1792), 2, + anon_sym_RBRACE, + sym__unquoted_pattern_in_record, + [126514] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1234), 1, + sym__space, + ACTIONS(2632), 1, + anon_sym_LPAREN2, + ACTIONS(2634), 1, + sym__unquoted_pattern, + STATE(4327), 1, + sym_comment, + ACTIONS(1020), 2, + sym__newline, + anon_sym_SEMI, + [126534] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1365), 1, + STATE(1354), 1, aux_sym__block_body_repeat1, - STATE(4180), 1, + STATE(4328), 1, + sym_comment, + ACTIONS(153), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(3066), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [126552] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2362), 1, + sym__unquoted_pattern, + STATE(4329), 1, + sym_comment, + ACTIONS(2360), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [126568] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1695), 1, + sym__unquoted_pattern, + ACTIONS(2572), 1, + sym__space, + ACTIONS(2576), 1, + anon_sym_LPAREN2, + STATE(4330), 1, sym_comment, - ACTIONS(153), 2, + ACTIONS(2574), 2, sym__newline, anon_sym_SEMI, - ACTIONS(3098), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [123292] = 4, + [126588] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1637), 1, + sym__unquoted_pattern_in_list, + ACTIONS(1972), 1, + sym__entry_separator, + ACTIONS(1976), 1, + anon_sym_LPAREN2, + STATE(4331), 1, + sym_comment, + ACTIONS(1974), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [126608] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1635), 1, + ACTIONS(1992), 1, sym__unquoted_pattern, - STATE(4181), 1, + STATE(4332), 1, sym_comment, - ACTIONS(1956), 4, + ACTIONS(2652), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [123308] = 4, + [126624] = 7, ACTIONS(103), 1, anon_sym_POUND, - STATE(4182), 1, + ACTIONS(7937), 1, + anon_sym_LPAREN, + ACTIONS(7941), 1, + sym_unescaped_interpolated_content, + ACTIONS(8094), 1, + anon_sym_SQUOTE2, + STATE(4192), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4333), 1, sym_comment, - ACTIONS(1852), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1854), 3, - sym__newline, - anon_sym_SEMI, - sym__unquoted_pattern, - [123324] = 5, + STATE(4836), 1, + sym_expr_interpolated, + [126646] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3786), 1, + ACTIONS(3906), 1, anon_sym_LBRACE, - STATE(4183), 1, + STATE(4334), 1, sym_comment, - STATE(4774), 1, + STATE(4762), 1, sym_block, - ACTIONS(7441), 3, + ACTIONS(7713), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [123342] = 5, + [126664] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3786), 1, - anon_sym_LBRACE, - STATE(4184), 1, + ACTIONS(2634), 1, + sym__unquoted_pattern, + STATE(4335), 1, sym_comment, - STATE(4576), 1, - sym_block, - ACTIONS(7441), 3, - ts_builtin_sym_end, + ACTIONS(1234), 3, sym__newline, - anon_sym_SEMI, - [123360] = 4, - ACTIONS(103), 1, + anon_sym_PIPE, + anon_sym_EQ_GT, + [126679] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4185), 1, + STATE(4336), 1, sym_comment, - ACTIONS(1870), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1872), 3, + ACTIONS(8096), 4, sym__newline, anon_sym_SEMI, - sym__unquoted_pattern, - [123376] = 7, + anon_sym_RPAREN, + anon_sym_RBRACE, + [126692] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2170), 1, + sym__entry_separator, + STATE(4337), 1, + sym_comment, + ACTIONS(2172), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [126707] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2907), 1, + STATE(4338), 1, + sym_comment, + ACTIONS(8098), 4, sym__newline, - ACTIONS(5671), 1, - anon_sym_EQ, - ACTIONS(7687), 1, - anon_sym_COLON, - STATE(4186), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [126720] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4806), 1, + sym__entry_separator, + STATE(2277), 1, + aux_sym__types_body_repeat2, + STATE(4339), 1, sym_comment, - STATE(4559), 1, - aux_sym__repeat_newline, - STATE(5223), 1, - sym_param_type, - [123398] = 6, + ACTIONS(7908), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [126737] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7536), 1, - anon_sym_DOT_DOT2, - ACTIONS(7824), 1, - anon_sym_RBRACE, - ACTIONS(7826), 1, + ACTIONS(4806), 1, sym__entry_separator, - STATE(4187), 1, + STATE(2263), 1, + aux_sym__types_body_repeat2, + STATE(4340), 1, sym_comment, - ACTIONS(7538), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [123418] = 4, + ACTIONS(8100), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [126754] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1549), 1, + ACTIONS(4806), 1, sym__entry_separator, - STATE(4188), 1, + STATE(2264), 1, + aux_sym__types_body_repeat2, + STATE(4341), 1, sym_comment, - ACTIONS(1547), 4, + ACTIONS(8100), 2, anon_sym_RBRACK, - anon_sym_GT2, anon_sym_DOT_DOT, - anon_sym_DOT2, - [123434] = 5, + [126771] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3786), 1, - anon_sym_LBRACE, - STATE(4189), 1, + STATE(4342), 1, sym_comment, - STATE(4519), 1, - sym_block, - ACTIONS(7534), 3, - ts_builtin_sym_end, + ACTIONS(8102), 4, sym__newline, anon_sym_SEMI, - [123452] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3946), 1, - anon_sym_LBRACK, - ACTIONS(3990), 1, - sym__newline, - STATE(1951), 1, - aux_sym__types_body_repeat1, - STATE(4190), 1, - sym_comment, - STATE(4603), 1, - sym_val_list, - STATE(4612), 1, - aux_sym__table_body_repeat1, - [123474] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [126784] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2646), 1, - sym__unquoted_pattern, - STATE(4191), 1, + STATE(4343), 1, sym_comment, - ACTIONS(2589), 4, + ACTIONS(8104), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [123490] = 4, + [126797] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1564), 1, + ACTIONS(1623), 1, sym__entry_separator, - STATE(4192), 1, + ACTIONS(1625), 1, + anon_sym_COLON2, + ACTIONS(8106), 1, + anon_sym_RBRACE, + STATE(1469), 1, + aux_sym__types_body_repeat2, + STATE(4344), 1, + sym_comment, + [126816] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1623), 1, + sym__entry_separator, + ACTIONS(1625), 1, + anon_sym_COLON2, + ACTIONS(8108), 1, + anon_sym_RBRACE, + STATE(1470), 1, + aux_sym__types_body_repeat2, + STATE(4345), 1, + sym_comment, + [126835] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8112), 1, + sym__space, + STATE(4346), 1, + sym_comment, + STATE(4584), 1, + aux_sym_attribute_repeat1, + ACTIONS(8110), 2, + sym__newline, + anon_sym_SEMI, + [126852] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2674), 1, + sym__unquoted_pattern_in_list, + ACTIONS(7486), 1, + sym__entry_separator, + STATE(4347), 1, sym_comment, - ACTIONS(1562), 4, + ACTIONS(7666), 2, anon_sym_RBRACK, - anon_sym_GT2, anon_sym_DOT_DOT, - anon_sym_DOT2, - [123506] = 4, + [126869] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1983), 1, - sym__unquoted_pattern, - STATE(4193), 1, + STATE(4348), 1, sym_comment, - ACTIONS(2597), 4, + ACTIONS(8114), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [123522] = 7, + [126882] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7675), 1, - sym_identifier, - ACTIONS(7677), 1, - anon_sym_DOLLAR, - STATE(2825), 1, - sym_val_variable, - STATE(4149), 1, - sym__variable_name, - STATE(4194), 1, + STATE(4349), 1, sym_comment, - STATE(4561), 1, - sym__assignment_pattern_parenthesized, - [123544] = 4, - ACTIONS(3), 1, + ACTIONS(8116), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [126895] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1983), 1, + ACTIONS(968), 1, + sym__space, + ACTIONS(5061), 1, sym__unquoted_pattern, - STATE(4195), 1, + STATE(4350), 1, sym_comment, - ACTIONS(1973), 4, - anon_sym_if, + ACTIONS(847), 2, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [123560] = 6, - ACTIONS(103), 1, + anon_sym_SEMI, + [126912] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1956), 1, - sym__entry_separator, - ACTIONS(1958), 1, - anon_sym_RBRACE, - ACTIONS(7828), 1, - anon_sym_DOT_DOT2, - STATE(4196), 1, + ACTIONS(3056), 1, + anon_sym_RPAREN, + ACTIONS(8118), 2, + sym__newline, + anon_sym_SEMI, + STATE(4351), 2, sym_comment, - ACTIONS(7830), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [123580] = 4, + aux_sym__block_body_repeat1, + [126927] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1498), 1, - sym__entry_separator, - STATE(4197), 1, + STATE(4352), 1, sym_comment, - ACTIONS(1496), 4, + ACTIONS(8121), 2, anon_sym_RBRACK, - anon_sym_GT2, anon_sym_DOT_DOT, - anon_sym_DOT2, - [123596] = 6, - ACTIONS(103), 1, + ACTIONS(8123), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [126942] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4530), 1, - sym__space, - ACTIONS(7512), 1, - anon_sym_EQ2, - STATE(3070), 1, - sym__flag_equals_value, - STATE(4198), 1, - sym_comment, - ACTIONS(4528), 2, + ACTIONS(8125), 1, sym__newline, - anon_sym_SEMI, - [123616] = 5, + ACTIONS(8128), 1, + anon_sym_PIPE, + ACTIONS(8131), 1, + anon_sym_EQ_GT, + STATE(4353), 2, + sym_comment, + aux_sym_match_pattern_repeat1, + [126959] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3786), 1, - anon_sym_LBRACE, - STATE(4199), 1, + ACTIONS(1526), 1, + sym__table_head_separator, + ACTIONS(8029), 1, + anon_sym_DOT2, + STATE(4354), 1, sym_comment, - STATE(4728), 1, - sym_block, - ACTIONS(7580), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [123634] = 5, + STATE(4361), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4916), 1, + sym_path, + [126978] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7832), 1, - aux_sym__immediate_decimal_token5, - STATE(4200), 1, + ACTIONS(4343), 1, + sym__entry_separator, + ACTIONS(8133), 1, + anon_sym_LBRACK, + ACTIONS(8135), 1, + anon_sym_RBRACK, + STATE(1913), 1, + aux_sym__types_body_repeat2, + STATE(4355), 1, sym_comment, - ACTIONS(1852), 2, - anon_sym_LPAREN2, + [126997] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4806), 1, sym__entry_separator, - ACTIONS(1854), 2, + STATE(2272), 1, + aux_sym__types_body_repeat2, + STATE(4356), 1, + sym_comment, + ACTIONS(7729), 2, anon_sym_RBRACK, - sym__unquoted_pattern_in_list, - [123652] = 5, + anon_sym_DOT_DOT, + [127014] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1364), 1, - aux_sym__block_body_repeat1, - STATE(4201), 1, - sym_comment, - ACTIONS(153), 2, + ACTIONS(2922), 1, sym__newline, - anon_sym_SEMI, - ACTIONS(461), 2, - anon_sym_RPAREN, + ACTIONS(3898), 1, + anon_sym_LBRACE, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(3163), 1, + sym_block, + STATE(4357), 1, + sym_comment, + [127033] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1907), 1, + sym__entry_separator, + STATE(4358), 1, + sym_comment, + ACTIONS(1909), 3, + anon_sym_RBRACK, + anon_sym_GT2, anon_sym_RBRACE, - [123670] = 6, + [127048] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1973), 1, + ACTIONS(1730), 1, anon_sym_LBRACE, - ACTIONS(1983), 1, + ACTIONS(1732), 1, sym__unquoted_pattern, - ACTIONS(7834), 1, - anon_sym_DOT_DOT2, - STATE(4202), 1, + ACTIONS(8137), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8139), 1, + aux_sym__immediate_decimal_token5, + STATE(4359), 1, sym_comment, - ACTIONS(7836), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [123690] = 6, + [127067] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7838), 1, - anon_sym_LPAREN, - ACTIONS(7841), 1, - anon_sym_SQUOTE2, - ACTIONS(7843), 1, - sym_unescaped_interpolated_content, - STATE(4590), 1, - sym_expr_interpolated, - STATE(4203), 2, + ACTIONS(2562), 1, + sym__entry_separator, + STATE(4360), 1, sym_comment, - aux_sym__inter_single_quotes_repeat1, - [123710] = 7, + ACTIONS(2564), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [127082] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7675), 1, - sym_identifier, - ACTIONS(7677), 1, - anon_sym_DOLLAR, - STATE(2825), 1, - sym_val_variable, - STATE(4053), 1, - sym__variable_name, - STATE(4204), 1, + ACTIONS(1534), 1, + sym__table_head_separator, + ACTIONS(8141), 1, + anon_sym_DOT2, + STATE(4916), 1, + sym_path, + STATE(4361), 2, sym_comment, - STATE(4561), 1, - sym__assignment_pattern_parenthesized, - [123732] = 4, + aux_sym__where_predicate_lhs_repeat1, + [127099] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1679), 1, - sym__unquoted_pattern, - STATE(4205), 1, + STATE(4362), 1, sym_comment, - ACTIONS(2541), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [123748] = 4, + ACTIONS(8144), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [127112] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(4206), 1, + ACTIONS(5172), 1, + anon_sym_LPAREN2, + ACTIONS(7995), 1, + anon_sym_RBRACE, + ACTIONS(7997), 1, + sym__entry_separator, + STATE(4363), 1, sym_comment, - ACTIONS(1852), 2, + STATE(5058), 1, + sym__expr_parenthesized_immediate, + [127131] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1986), 1, anon_sym_LPAREN2, + ACTIONS(1992), 1, + sym__unquoted_pattern_in_list, + ACTIONS(2652), 1, sym__entry_separator, - ACTIONS(1854), 3, + ACTIONS(2654), 1, anon_sym_RBRACK, - anon_sym_DOT_DOT, - sym__unquoted_pattern_in_list, - [123764] = 6, + STATE(4364), 1, + sym_comment, + [127150] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2907), 1, - sym__newline, - ACTIONS(7846), 1, + ACTIONS(7466), 1, anon_sym_LBRACK, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(4207), 1, + ACTIONS(7468), 1, + anon_sym_LPAREN, + STATE(4091), 1, + sym_parameter_parens, + STATE(4093), 1, + sym_parameter_bracks, + STATE(4365), 1, sym_comment, - STATE(4969), 1, - sym_val_list, - [123783] = 3, + [127169] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4208), 1, + ACTIONS(1699), 1, + anon_sym_LBRACE, + ACTIONS(8146), 1, + anon_sym_DOT_DOT2, + STATE(4366), 1, sym_comment, - ACTIONS(7848), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [123796] = 3, + ACTIONS(8148), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [127186] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4209), 1, + ACTIONS(2170), 1, + anon_sym_LBRACE, + ACTIONS(8150), 1, + anon_sym_DOT_DOT2, + STATE(4367), 1, sym_comment, - ACTIONS(7850), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [123809] = 4, + ACTIONS(8152), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [127203] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2102), 1, + ACTIONS(1982), 1, sym__entry_separator, - STATE(4210), 1, + ACTIONS(1984), 1, + anon_sym_RBRACK, + ACTIONS(1986), 1, + anon_sym_LPAREN2, + ACTIONS(1992), 1, + sym__unquoted_pattern_in_list, + STATE(4368), 1, + sym_comment, + [127222] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6914), 1, + anon_sym_LPAREN2, + ACTIONS(8154), 1, + anon_sym_RBRACK, + ACTIONS(8156), 1, + sym__entry_separator, + STATE(4369), 1, + sym_comment, + STATE(5088), 1, + sym__expr_parenthesized_immediate, + [127241] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2405), 1, + sym__entry_separator, + STATE(4370), 1, sym_comment, - ACTIONS(2104), 3, + ACTIONS(2407), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [123824] = 4, + [127256] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2110), 1, + ACTIONS(2104), 1, sym__entry_separator, - STATE(4211), 1, + STATE(4371), 1, sym_comment, - ACTIONS(2112), 3, + ACTIONS(2106), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [123839] = 6, + [127271] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5197), 1, - anon_sym_LPAREN2, - ACTIONS(6094), 1, + ACTIONS(2112), 1, sym__entry_separator, - ACTIONS(6096), 1, - anon_sym_RBRACE, - STATE(4212), 1, + STATE(4372), 1, sym_comment, - STATE(5178), 1, - sym__expr_parenthesized_immediate, - [123858] = 3, + ACTIONS(2114), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [127286] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4213), 1, + STATE(4373), 1, sym_comment, - ACTIONS(7852), 4, + ACTIONS(8158), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [123871] = 4, + [127299] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2118), 1, + ACTIONS(2120), 1, sym__entry_separator, - STATE(4214), 1, + STATE(4374), 1, sym_comment, - ACTIONS(2120), 3, + ACTIONS(2122), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [123886] = 4, + [127314] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(4215), 1, + STATE(4375), 1, sym_comment, - ACTIONS(5245), 2, + ACTIONS(5302), 2, anon_sym_AT2, sym__entry_separator, - ACTIONS(6012), 2, + ACTIONS(6378), 2, anon_sym_RBRACK, anon_sym_GT2, - [123901] = 6, + [127329] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2907), 1, + STATE(4376), 1, + sym_comment, + ACTIONS(7313), 4, + ts_builtin_sym_end, sym__newline, - ACTIONS(3808), 1, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(3076), 1, - sym_block, - STATE(4216), 1, - sym_comment, - STATE(4499), 1, - aux_sym__repeat_newline, - [123920] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2614), 1, - sym__unquoted_pattern, - STATE(4217), 1, - sym_comment, - ACTIONS(1713), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [123935] = 6, + [127342] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1679), 1, - sym__unquoted_pattern_in_list, - ACTIONS(2541), 1, - sym__entry_separator, - ACTIONS(2543), 1, - anon_sym_RBRACK, - ACTIONS(2642), 1, - anon_sym_LPAREN2, - STATE(4218), 1, + ACTIONS(8160), 1, + anon_sym_DQUOTE, + STATE(4377), 1, sym_comment, - [123954] = 4, + STATE(4400), 1, + aux_sym_string_content_repeat1, + ACTIONS(7927), 2, + sym__escaped_str_content, + sym_escape_sequence, + [127359] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2614), 1, + ACTIONS(2674), 1, sym__unquoted_pattern, - STATE(4219), 1, + STATE(4378), 1, sym_comment, - ACTIONS(7268), 3, + ACTIONS(7486), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [123969] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5197), 1, - anon_sym_LPAREN2, - ACTIONS(7753), 1, - anon_sym_RBRACE, - ACTIONS(7755), 1, - sym__entry_separator, - STATE(4220), 1, - sym_comment, - STATE(4906), 1, - sym__expr_parenthesized_immediate, - [123988] = 6, + [127374] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2907), 1, + STATE(4379), 1, + sym_comment, + ACTIONS(7329), 4, + ts_builtin_sym_end, sym__newline, - ACTIONS(3808), 1, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(3079), 1, - sym_block, - STATE(4221), 1, - sym_comment, - [124007] = 3, + [127387] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4222), 1, - sym_comment, - ACTIONS(7854), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [124020] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4223), 1, + ACTIONS(2104), 1, + anon_sym_LBRACE, + ACTIONS(8162), 1, + anon_sym_DOT_DOT2, + STATE(4380), 1, sym_comment, - ACTIONS(7856), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [124033] = 5, + ACTIONS(8164), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [127404] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7860), 1, - anon_sym_RPAREN, - STATE(4224), 1, + ACTIONS(2112), 1, + anon_sym_LBRACE, + ACTIONS(8166), 1, + anon_sym_DOT_DOT2, + STATE(4381), 1, sym_comment, - STATE(4429), 1, - aux_sym__block_body_repeat1, - ACTIONS(7858), 2, - sym__newline, - anon_sym_SEMI, - [124050] = 6, + ACTIONS(8168), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [127421] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7214), 1, - anon_sym_LBRACK, - ACTIONS(7216), 1, - anon_sym_LPAREN, - STATE(3992), 1, - sym_parameter_parens, - STATE(3993), 1, - sym_parameter_bracks, - STATE(4225), 1, + ACTIONS(2120), 1, + anon_sym_LBRACE, + ACTIONS(8170), 1, + anon_sym_DOT_DOT2, + STATE(4382), 1, sym_comment, - [124069] = 4, + ACTIONS(8172), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [127438] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2204), 1, + ACTIONS(7574), 1, sym__entry_separator, - STATE(4226), 1, + ACTIONS(7771), 1, + anon_sym_DOT_DOT2, + STATE(4383), 1, sym_comment, - ACTIONS(2206), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [124084] = 5, - ACTIONS(3), 1, + ACTIONS(7773), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [127455] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1713), 1, - anon_sym_LBRACE, - ACTIONS(7862), 1, + ACTIONS(7486), 1, + sym__entry_separator, + ACTIONS(7771), 1, anon_sym_DOT_DOT2, - STATE(4227), 1, + STATE(4384), 1, sym_comment, - ACTIONS(7864), 2, + ACTIONS(7773), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [124101] = 4, + [127472] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4385), 1, + sym_comment, + ACTIONS(8174), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [127485] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2537), 1, + ACTIONS(2409), 1, sym__entry_separator, - STATE(4228), 1, + STATE(4386), 1, sym_comment, - ACTIONS(2539), 3, + ACTIONS(2411), 3, anon_sym_RBRACK, - anon_sym_GT2, anon_sym_RBRACE, - [124116] = 5, - ACTIONS(103), 1, + anon_sym_DOT_DOT, + [127500] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7868), 1, - sym__space, - STATE(4229), 1, + STATE(4387), 1, sym_comment, - STATE(4427), 1, - aux_sym_attribute_repeat1, - ACTIONS(7866), 2, - sym__newline, - anon_sym_SEMI, - [124133] = 5, - ACTIONS(103), 1, + ACTIONS(7791), 4, + anon_sym_export, + anon_sym_def, + anon_sym_extern, + anon_sym_AT, + [127513] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(886), 1, - sym__space, - ACTIONS(5071), 1, - sym__unquoted_pattern, - STATE(4230), 1, + STATE(4388), 1, sym_comment, - ACTIONS(866), 2, + ACTIONS(8176), 4, sym__newline, anon_sym_SEMI, - [124150] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [127526] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4328), 1, + ACTIONS(8178), 1, + anon_sym_COLON, + ACTIONS(8180), 1, + anon_sym_GT2, + ACTIONS(8182), 1, sym__entry_separator, - ACTIONS(7870), 1, - anon_sym_LBRACK, - ACTIONS(7872), 1, - anon_sym_RBRACK, - STATE(1881), 1, - aux_sym__types_body_repeat2, - STATE(4231), 1, + STATE(4389), 1, sym_comment, - [124169] = 4, - ACTIONS(103), 1, + STATE(4997), 1, + sym__collection_annotation, + [127545] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2228), 1, - sym__entry_separator, - STATE(4232), 1, + ACTIONS(8184), 1, + anon_sym_LBRACE, + STATE(3255), 1, + sym__blosure, + STATE(4390), 1, sym_comment, - ACTIONS(2230), 3, - anon_sym_RBRACK, + STATE(3249), 2, + sym_block, + sym_val_closure, + [127562] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4391), 1, + sym_comment, + ACTIONS(8186), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT, - [124184] = 4, + [127575] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2232), 1, + ACTIONS(2578), 1, sym__entry_separator, - STATE(4233), 1, + STATE(4392), 1, sym_comment, - ACTIONS(2234), 3, + ACTIONS(2580), 3, anon_sym_RBRACK, + anon_sym_GT2, anon_sym_RBRACE, - anon_sym_DOT_DOT, - [124199] = 3, + [127590] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4234), 1, + ACTIONS(1637), 1, + sym__unquoted_pattern, + STATE(4393), 1, sym_comment, - ACTIONS(7874), 4, - anon_sym_if, + ACTIONS(1972), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [124212] = 4, + [127605] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2236), 1, + ACTIONS(2425), 1, sym__entry_separator, - STATE(4235), 1, + STATE(4394), 1, sym_comment, - ACTIONS(2238), 3, + ACTIONS(2427), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [124227] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4236), 1, - sym_comment, - ACTIONS(7874), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [124240] = 4, + [127620] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(4237), 1, + ACTIONS(2429), 1, + sym__entry_separator, + STATE(4395), 1, sym_comment, - ACTIONS(7876), 2, + ACTIONS(2431), 3, anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT, - ACTIONS(7878), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [124255] = 5, + [127635] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7868), 1, - sym__space, - STATE(4229), 1, - aux_sym_attribute_repeat1, - STATE(4238), 1, - sym_comment, - ACTIONS(7880), 2, - sym__newline, - anon_sym_SEMI, - [124272] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2654), 1, - sym__unquoted_pattern, - STATE(4239), 1, - sym_comment, - ACTIONS(2648), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [124287] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1734), 1, - sym__unquoted_pattern, - STATE(4240), 1, + ACTIONS(2433), 1, + sym__entry_separator, + STATE(4396), 1, sym_comment, - ACTIONS(886), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [124302] = 4, + ACTIONS(2435), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [127650] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2240), 1, + ACTIONS(2437), 1, sym__entry_separator, - STATE(4241), 1, + STATE(4397), 1, sym_comment, - ACTIONS(2242), 3, + ACTIONS(2439), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [124317] = 6, + [127665] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5821), 1, - sym__newline, - ACTIONS(7882), 1, - anon_sym_EQ, - ACTIONS(7884), 1, - anon_sym_COLON, - STATE(3400), 1, - aux_sym__repeat_newline, - STATE(4242), 1, + STATE(4398), 1, sym_comment, - [124336] = 5, + ACTIONS(8188), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [127678] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4806), 1, + ACTIONS(6914), 1, + anon_sym_LPAREN2, + ACTIONS(8190), 1, + anon_sym_RBRACK, + ACTIONS(8192), 1, sym__entry_separator, - STATE(2271), 1, - aux_sym__types_body_repeat2, - STATE(4243), 1, + STATE(4399), 1, sym_comment, - ACTIONS(7886), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [124353] = 5, + STATE(5088), 1, + sym__expr_parenthesized_immediate, + [127697] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4806), 1, + ACTIONS(8194), 1, + anon_sym_DQUOTE, + ACTIONS(8196), 2, + sym__escaped_str_content, + sym_escape_sequence, + STATE(4400), 2, + sym_comment, + aux_sym_string_content_repeat1, + [127712] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1617), 1, + anon_sym_RBRACE, + ACTIONS(1623), 1, sym__entry_separator, - STATE(2261), 1, + ACTIONS(1625), 1, + anon_sym_COLON2, + STATE(1480), 1, aux_sym__types_body_repeat2, - STATE(4244), 1, + STATE(4401), 1, sym_comment, - ACTIONS(7886), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [124370] = 3, + [127731] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4245), 1, + STATE(4402), 1, sym_comment, - ACTIONS(7888), 4, + ACTIONS(8199), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [124383] = 4, + [127744] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2658), 1, - sym__unquoted_pattern, - STATE(4246), 1, + STATE(4403), 1, sym_comment, - ACTIONS(1022), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [124398] = 4, + ACTIONS(8201), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [127757] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2658), 1, + ACTIONS(1992), 1, sym__unquoted_pattern, - STATE(4247), 1, + STATE(4404), 1, sym_comment, - ACTIONS(1030), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [124413] = 4, - ACTIONS(103), 1, + ACTIONS(2652), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [127772] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1582), 1, - sym__entry_separator, - STATE(4248), 1, + ACTIONS(1992), 1, + sym__unquoted_pattern, + STATE(4405), 1, sym_comment, - ACTIONS(1580), 3, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_DOT_DOT, - [124428] = 6, + ACTIONS(1982), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [127787] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5197), 1, - anon_sym_LPAREN2, - ACTIONS(7808), 1, - anon_sym_RBRACE, - ACTIONS(7810), 1, - sym__entry_separator, - STATE(4249), 1, + ACTIONS(8203), 1, + anon_sym_LPAREN, + STATE(4406), 1, sym_comment, - STATE(4906), 1, - sym__expr_parenthesized_immediate, - [124447] = 4, + ACTIONS(8205), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [127802] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2244), 1, + ACTIONS(2441), 1, sym__entry_separator, - STATE(4250), 1, + STATE(4407), 1, sym_comment, - ACTIONS(2246), 3, + ACTIONS(2443), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [124462] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4251), 1, - sym_comment, - ACTIONS(7888), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [124475] = 4, + [127817] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2248), 1, + ACTIONS(2449), 1, sym__entry_separator, - STATE(4252), 1, + STATE(4408), 1, sym_comment, - ACTIONS(2250), 3, + ACTIONS(2451), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [124490] = 4, + [127832] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2252), 1, + ACTIONS(2453), 1, sym__entry_separator, - STATE(4253), 1, + STATE(4409), 1, sym_comment, - ACTIONS(2254), 3, + ACTIONS(2455), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [124505] = 4, + [127847] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2256), 1, + ACTIONS(2457), 1, sym__entry_separator, - STATE(4254), 1, + STATE(4410), 1, sym_comment, - ACTIONS(2258), 3, + ACTIONS(2459), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [124520] = 4, + [127862] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2260), 1, + ACTIONS(2461), 1, sym__entry_separator, - STATE(4255), 1, + STATE(4411), 1, sym_comment, - ACTIONS(2262), 3, + ACTIONS(2463), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [124535] = 4, + [127877] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2264), 1, + ACTIONS(2465), 1, sym__entry_separator, - STATE(4256), 1, + STATE(4412), 1, sym_comment, - ACTIONS(2266), 3, + ACTIONS(2467), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [124550] = 4, + [127892] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2268), 1, + ACTIONS(2469), 1, sym__entry_separator, - STATE(4257), 1, + STATE(4413), 1, sym_comment, - ACTIONS(2270), 3, + ACTIONS(2471), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [124565] = 4, + [127907] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2272), 1, + ACTIONS(2473), 1, sym__entry_separator, - STATE(4258), 1, + STATE(4414), 1, sym_comment, - ACTIONS(2274), 3, + ACTIONS(2475), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [124580] = 4, + [127922] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(4259), 1, + STATE(4415), 1, sym_comment, - ACTIONS(5334), 2, + ACTIONS(5358), 2, anon_sym_AT2, sym__entry_separator, - ACTIONS(6275), 2, + ACTIONS(6463), 2, anon_sym_RBRACK, anon_sym_GT2, - [124595] = 4, + [127937] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(4260), 1, + STATE(4416), 1, sym_comment, - ACTIONS(5338), 2, + ACTIONS(5403), 2, anon_sym_AT2, sym__entry_separator, - ACTIONS(6277), 2, + ACTIONS(6465), 2, anon_sym_RBRACK, anon_sym_GT2, - [124610] = 6, + [127952] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1506), 1, - sym__table_head_separator, - ACTIONS(7697), 1, - anon_sym_DOT2, - STATE(4261), 1, + ACTIONS(8184), 1, + anon_sym_LBRACE, + STATE(3404), 1, + sym__blosure, + STATE(4417), 1, sym_comment, - STATE(4273), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4812), 1, - sym_path, - [124629] = 3, + STATE(3249), 2, + sym_block, + sym_val_closure, + [127969] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4262), 1, + ACTIONS(1695), 1, + sym__unquoted_pattern, + STATE(4418), 1, sym_comment, - ACTIONS(7890), 4, + ACTIONS(2572), 3, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [124642] = 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + [127984] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(4419), 1, + sym_comment, + ACTIONS(1846), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1848), 2, + anon_sym_RBRACK, + sym__unquoted_pattern_in_list, + [127999] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4263), 1, + ACTIONS(2614), 1, + sym__unquoted_pattern, + STATE(4420), 1, sym_comment, - ACTIONS(7890), 4, + ACTIONS(2608), 3, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [124655] = 4, + anon_sym_PIPE, + anon_sym_EQ_GT, + [128014] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(4264), 1, + STATE(4421), 1, sym_comment, - ACTIONS(5422), 2, + ACTIONS(5382), 2, anon_sym_AT2, sym__entry_separator, - ACTIONS(6287), 2, + ACTIONS(6559), 2, anon_sym_RBRACK, anon_sym_GT2, - [124670] = 4, + [128029] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(4265), 1, + STATE(4422), 1, sym_comment, - ACTIONS(5348), 2, + ACTIONS(5384), 2, anon_sym_AT2, sym__entry_separator, - ACTIONS(6291), 2, + ACTIONS(6467), 2, anon_sym_RBRACK, anon_sym_GT2, - [124685] = 4, + [128044] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(4266), 1, + STATE(4423), 1, sym_comment, - ACTIONS(5364), 2, + ACTIONS(5386), 2, anon_sym_AT2, sym__entry_separator, - ACTIONS(6299), 2, + ACTIONS(6469), 2, anon_sym_RBRACK, anon_sym_GT2, - [124700] = 4, + [128059] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(4267), 1, + STATE(4424), 1, sym_comment, - ACTIONS(5377), 2, + ACTIONS(5390), 2, anon_sym_AT2, sym__entry_separator, - ACTIONS(6301), 2, + ACTIONS(6471), 2, anon_sym_RBRACK, anon_sym_GT2, - [124715] = 3, - ACTIONS(3), 1, + [128074] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4268), 1, + STATE(4425), 1, sym_comment, - ACTIONS(7892), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [124728] = 3, + ACTIONS(5392), 2, + anon_sym_AT2, + sym__entry_separator, + ACTIONS(6473), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [128089] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4269), 1, + ACTIONS(7466), 1, + anon_sym_LBRACK, + ACTIONS(7468), 1, + anon_sym_LPAREN, + STATE(4078), 1, + sym_parameter_bracks, + STATE(4174), 1, + sym_parameter_parens, + STATE(4426), 1, sym_comment, - ACTIONS(7892), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [124741] = 3, + [128108] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4270), 1, + ACTIONS(2362), 1, + sym__unquoted_pattern, + STATE(4427), 1, sym_comment, - ACTIONS(7894), 4, - anon_sym_if, + ACTIONS(2360), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [124754] = 4, + [128123] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(4271), 1, - sym_comment, - ACTIONS(5379), 2, - anon_sym_AT2, + ACTIONS(2616), 1, sym__entry_separator, - ACTIONS(6305), 2, + ACTIONS(2618), 1, anon_sym_RBRACK, - anon_sym_GT2, - [124769] = 3, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(4272), 1, + ACTIONS(2620), 1, + anon_sym_LPAREN2, + ACTIONS(2622), 1, + sym__unquoted_pattern_in_list, + STATE(4428), 1, sym_comment, - ACTIONS(1547), 4, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [124782] = 5, + [128142] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1510), 1, - sym__table_head_separator, - ACTIONS(7896), 1, - anon_sym_DOT2, - STATE(4812), 1, - sym_path, - STATE(4273), 2, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(3898), 1, + anon_sym_LBRACE, + STATE(3155), 1, + sym_block, + STATE(4429), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - [124799] = 5, + STATE(4552), 1, + aux_sym__repeat_newline, + [128161] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(461), 1, - ts_builtin_sym_end, - STATE(1372), 1, - aux_sym__block_body_repeat1, - STATE(4274), 1, - sym_comment, - ACTIONS(55), 2, + ACTIONS(2922), 1, sym__newline, - anon_sym_SEMI, - [124816] = 6, + ACTIONS(3898), 1, + anon_sym_LBRACE, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(2972), 1, + sym_block, + STATE(4430), 1, + sym_comment, + [128180] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1622), 1, + ACTIONS(1615), 1, + anon_sym_RBRACK, + ACTIONS(1699), 1, sym__entry_separator, - ACTIONS(1624), 1, - anon_sym_COLON2, - ACTIONS(7899), 1, - anon_sym_RBRACE, - STATE(1480), 1, - aux_sym__types_body_repeat2, - STATE(4275), 1, + ACTIONS(2672), 1, + anon_sym_LPAREN2, + ACTIONS(2674), 1, + sym__unquoted_pattern_in_list, + STATE(4431), 1, sym_comment, - [124835] = 5, + [128199] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5467), 1, + ACTIONS(3442), 1, anon_sym_COLON2, - STATE(4276), 1, - sym_comment, - STATE(4344), 1, - aux_sym_pipe_element_parenthesized_repeat1, - ACTIONS(5461), 2, + ACTIONS(8207), 2, sym__newline, sym__space, - [124852] = 3, + STATE(4432), 2, + sym_comment, + aux_sym_pipe_element_parenthesized_repeat1, + [128214] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4277), 1, + STATE(4433), 1, sym_comment, - ACTIONS(4147), 4, - ts_builtin_sym_end, + ACTIONS(8210), 4, sym__newline, anon_sym_SEMI, - anon_sym_LBRACE, - [124865] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [128227] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5197), 1, - anon_sym_LPAREN2, - ACTIONS(7824), 1, - anon_sym_RBRACE, - ACTIONS(7826), 1, + ACTIONS(968), 1, sym__entry_separator, - STATE(4278), 1, + ACTIONS(6659), 1, + sym__unquoted_pattern_in_list, + STATE(4434), 1, sym_comment, - STATE(4906), 1, - sym__expr_parenthesized_immediate, - [124884] = 3, + ACTIONS(847), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [128244] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4279), 1, + STATE(4435), 1, sym_comment, - ACTIONS(4151), 4, - ts_builtin_sym_end, + ACTIONS(8212), 4, sym__newline, anon_sym_SEMI, - anon_sym_LBRACE, - [124897] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [128257] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1635), 1, - sym__unquoted_pattern, - STATE(4280), 1, + STATE(4436), 1, sym_comment, - ACTIONS(1956), 3, + ACTIONS(8212), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [124912] = 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [128270] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1744), 1, + ACTIONS(1790), 1, anon_sym_LBRACE, - ACTIONS(1746), 1, + ACTIONS(1792), 1, sym__unquoted_pattern, - ACTIONS(7901), 1, + ACTIONS(8214), 1, anon_sym_DOT, - ACTIONS(7903), 1, + ACTIONS(8216), 1, aux_sym__immediate_decimal_token5, - STATE(4281), 1, + STATE(4437), 1, sym_comment, - [124931] = 3, + [128289] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4282), 1, + STATE(4438), 1, sym_comment, - ACTIONS(7905), 4, + ACTIONS(8218), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [124944] = 3, + [128302] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4283), 1, + STATE(4439), 1, sym_comment, - ACTIONS(7905), 4, + ACTIONS(8218), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [124957] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1983), 1, - sym__unquoted_pattern, - STATE(4284), 1, - sym_comment, - ACTIONS(2597), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [124972] = 3, + [128315] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4285), 1, - sym_comment, - ACTIONS(7888), 4, - sym__newline, - anon_sym_SEMI, + ACTIONS(7923), 1, anon_sym_RPAREN, - anon_sym_RBRACE, - [124985] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1983), 1, - sym__unquoted_pattern, - STATE(4286), 1, + STATE(4351), 1, + aux_sym__block_body_repeat1, + STATE(4440), 1, sym_comment, - ACTIONS(1973), 3, + ACTIONS(8220), 2, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [125000] = 3, + anon_sym_SEMI, + [128332] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4287), 1, + STATE(4441), 1, sym_comment, - ACTIONS(7888), 4, + ACTIONS(4464), 4, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [125013] = 3, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_DOT_DOT, + [128345] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4288), 1, + ACTIONS(7658), 1, + anon_sym_LBRACE, + STATE(3142), 1, + sym__blosure, + STATE(4442), 1, sym_comment, - ACTIONS(7890), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [125026] = 4, + STATE(3141), 2, + sym_block, + sym_val_closure, + [128362] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1679), 1, - sym__unquoted_pattern, - STATE(4289), 1, + ACTIONS(7658), 1, + anon_sym_LBRACE, + STATE(3264), 1, + sym__blosure, + STATE(4443), 1, sym_comment, - ACTIONS(2541), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [125041] = 3, - ACTIONS(3), 1, + STATE(3141), 2, + sym_block, + sym_val_closure, + [128379] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4290), 1, + STATE(4444), 1, sym_comment, - ACTIONS(7890), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [125054] = 4, + ACTIONS(1895), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1897), 2, + anon_sym_RBRACK, + sym__unquoted_pattern_in_list, + [128394] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2646), 1, - sym__unquoted_pattern, - STATE(4291), 1, + ACTIONS(8146), 1, + anon_sym_DOT_DOT2, + ACTIONS(8222), 1, + anon_sym_LBRACE, + STATE(4445), 1, sym_comment, - ACTIONS(2589), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [125069] = 6, + ACTIONS(8148), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [128411] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7907), 1, - anon_sym_COLON, - ACTIONS(7909), 1, + ACTIONS(8224), 1, anon_sym_GT2, - ACTIONS(7911), 1, + ACTIONS(8226), 1, + anon_sym_AT2, + ACTIONS(8228), 1, sym__entry_separator, - STATE(4292), 1, + STATE(4446), 1, sym_comment, - STATE(4922), 1, - sym__collection_annotation, - [125088] = 4, - ACTIONS(3), 1, + STATE(5012), 1, + sym_param_completer, + [128430] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2527), 1, - sym__unquoted_pattern, - STATE(4293), 1, + ACTIONS(8112), 1, + sym__space, + STATE(4346), 1, + aux_sym_attribute_repeat1, + STATE(4447), 1, sym_comment, - ACTIONS(2525), 3, + ACTIONS(8230), 2, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [125103] = 4, + anon_sym_SEMI, + [128447] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1862), 1, + ACTIONS(1887), 1, sym__entry_separator, - STATE(4294), 1, + STATE(4448), 1, sym_comment, - ACTIONS(1864), 3, + ACTIONS(1889), 3, anon_sym_RBRACK, anon_sym_GT2, anon_sym_RBRACE, - [125118] = 3, + [128462] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2754), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2756), 1, + anon_sym_COLON2, + ACTIONS(3898), 1, + anon_sym_LBRACE, + STATE(4402), 1, + sym_block, + STATE(4449), 1, + sym_comment, + [128481] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4295), 1, + STATE(4450), 1, sym_comment, - ACTIONS(7913), 4, + ACTIONS(8232), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [125131] = 3, + [128494] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2754), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2756), 1, + anon_sym_COLON2, + ACTIONS(3898), 1, + anon_sym_LBRACE, + STATE(4403), 1, + sym_block, + STATE(4451), 1, + sym_comment, + [128513] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4296), 1, + STATE(4452), 1, sym_comment, - ACTIONS(7915), 4, + ACTIONS(4143), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [125144] = 3, + anon_sym_LBRACE, + [128526] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4297), 1, + STATE(4453), 1, sym_comment, - ACTIONS(7917), 4, + ACTIONS(4147), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [125157] = 3, + anon_sym_LBRACE, + [128539] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4298), 1, + STATE(4454), 1, sym_comment, - ACTIONS(7919), 4, + ACTIONS(8234), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [125170] = 3, + [128552] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4299), 1, + STATE(4455), 1, sym_comment, - ACTIONS(7921), 4, + ACTIONS(8234), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [125183] = 4, + [128565] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(4300), 1, + ACTIONS(2754), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2756), 1, + anon_sym_COLON2, + ACTIONS(3898), 1, + anon_sym_LBRACE, + STATE(2963), 1, + sym_block, + STATE(4456), 1, sym_comment, - ACTIONS(7923), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(7925), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [125198] = 3, + [128584] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4301), 1, + STATE(4457), 1, sym_comment, - ACTIONS(7073), 4, - ts_builtin_sym_end, + ACTIONS(8236), 4, sym__newline, anon_sym_SEMI, - anon_sym_LBRACE, - [125211] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [128597] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4302), 1, + STATE(4458), 1, sym_comment, - ACTIONS(7085), 4, - ts_builtin_sym_end, + ACTIONS(8236), 4, sym__newline, anon_sym_SEMI, - anon_sym_LBRACE, - [125224] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [128610] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(4459), 1, + sym_comment, + ACTIONS(8238), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(8240), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [128625] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4303), 1, + STATE(4460), 1, sym_comment, - ACTIONS(7927), 4, + ACTIONS(8212), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [125237] = 3, + [128638] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4304), 1, - sym_comment, - ACTIONS(7929), 4, + ACTIONS(2922), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [125250] = 3, + ACTIONS(8242), 1, + anon_sym_LBRACK, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(4461), 1, + sym_comment, + STATE(5312), 1, + sym_val_list, + [128657] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4305), 1, + STATE(4462), 1, sym_comment, - ACTIONS(7931), 4, + ACTIONS(8212), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [125263] = 3, + [128670] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4306), 1, + STATE(4463), 1, sym_comment, - ACTIONS(1521), 4, + ACTIONS(1510), 4, sym__table_head_separator, anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [125276] = 4, + [128683] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2654), 1, + ACTIONS(2622), 1, sym__unquoted_pattern, - STATE(4307), 1, + STATE(4464), 1, sym_comment, - ACTIONS(2648), 3, + ACTIONS(2616), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [125291] = 3, + [128698] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4308), 1, + STATE(4465), 1, + sym_comment, + ACTIONS(8244), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [128711] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3061), 1, + ts_builtin_sym_end, + STATE(1362), 1, + aux_sym__block_body_repeat1, + STATE(4466), 1, + sym_comment, + ACTIONS(55), 2, + sym__newline, + anon_sym_SEMI, + [128728] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4467), 1, sym_comment, - ACTIONS(1525), 4, + ACTIONS(1514), 4, sym__table_head_separator, anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [125304] = 3, + [128741] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4309), 1, + STATE(4468), 1, sym_comment, - ACTIONS(1529), 4, + ACTIONS(1522), 4, sym__table_head_separator, anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [125317] = 3, + [128754] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4310), 1, + ACTIONS(7787), 1, + anon_sym_RPAREN, + STATE(4351), 1, + aux_sym__block_body_repeat1, + STATE(4469), 1, sym_comment, - ACTIONS(7933), 4, + ACTIONS(8220), 2, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, + [128771] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2664), 1, + sym__entry_separator, + STATE(4470), 1, + sym_comment, + ACTIONS(2666), 3, + anon_sym_RBRACK, + anon_sym_GT2, anon_sym_RBRACE, - [125330] = 4, + [128786] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2658), 1, - sym__unquoted_pattern, - STATE(4311), 1, + STATE(4471), 1, sym_comment, - ACTIONS(1022), 3, + ACTIONS(8246), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [125345] = 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [128799] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(3092), 1, + anon_sym_SEMI, + STATE(1365), 1, + aux_sym__parenthesized_body_repeat1, + STATE(4472), 1, + sym_comment, + STATE(4654), 1, + aux_sym__repeat_newline, + [128818] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2658), 1, + ACTIONS(2634), 1, sym__unquoted_pattern, - STATE(4312), 1, + STATE(4473), 1, sym_comment, - ACTIONS(1030), 3, + ACTIONS(1226), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [125360] = 3, + [128833] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4313), 1, + STATE(4474), 1, sym_comment, - ACTIONS(7935), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [125373] = 4, + ACTIONS(8248), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [128846] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2620), 1, - sym__entry_separator, - STATE(4314), 1, + ACTIONS(8250), 1, + anon_sym_LPAREN, + STATE(4475), 1, sym_comment, - ACTIONS(2622), 3, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_RBRACE, - [125388] = 3, + ACTIONS(8252), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [128861] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4315), 1, + STATE(4476), 1, sym_comment, - ACTIONS(1533), 4, + ACTIONS(1530), 4, sym__table_head_separator, anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [125401] = 3, + [128874] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4316), 1, + STATE(4477), 1, sym_comment, - ACTIONS(1537), 4, + ACTIONS(1502), 4, sym__table_head_separator, anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [125414] = 3, + [128887] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4317), 1, + STATE(4478), 1, sym_comment, - ACTIONS(1541), 4, + ACTIONS(1506), 4, sym__table_head_separator, anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [125427] = 6, + [128900] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2648), 1, + ACTIONS(6914), 1, + anon_sym_LPAREN2, + ACTIONS(7719), 1, + anon_sym_RBRACK, + ACTIONS(7721), 1, sym__entry_separator, - ACTIONS(2650), 1, + STATE(4479), 1, + sym_comment, + STATE(4991), 1, + sym__expr_parenthesized_immediate, + [128919] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8254), 1, + anon_sym_LBRACK, + ACTIONS(8256), 1, + anon_sym_LPAREN, + STATE(4199), 1, + sym_parameter_parens, + STATE(4200), 1, + sym_parameter_bracks, + STATE(4480), 1, + sym_comment, + [128938] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8258), 1, anon_sym_RBRACK, - ACTIONS(2652), 1, - anon_sym_LPAREN2, - ACTIONS(2654), 1, - sym__unquoted_pattern_in_list, - STATE(4318), 1, + STATE(3587), 1, + aux_sym_parameter_repeat2, + STATE(4481), 1, sym_comment, - [125446] = 6, + ACTIONS(1484), 2, + sym__newline, + anon_sym_COMMA, + [128955] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7214), 1, + ACTIONS(8254), 1, anon_sym_LBRACK, - ACTIONS(7216), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - STATE(3908), 1, + STATE(4281), 1, sym_parameter_parens, - STATE(3909), 1, + STATE(4283), 1, sym_parameter_bracks, - STATE(4319), 1, + STATE(4482), 1, + sym_comment, + [128974] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7902), 1, + sym__newline, + ACTIONS(7904), 1, + anon_sym_PIPE, + ACTIONS(8260), 1, + anon_sym_EQ_GT, + STATE(4353), 1, + aux_sym_match_pattern_repeat1, + STATE(4483), 1, sym_comment, - [125465] = 6, + [128993] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1614), 1, - anon_sym_RBRACK, - ACTIONS(1713), 1, + STATE(4484), 1, + sym_comment, + ACTIONS(2360), 2, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(2612), 1, + ACTIONS(2362), 2, + anon_sym_RBRACE, + sym__unquoted_pattern_in_record, + [129008] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5172), 1, anon_sym_LPAREN2, - ACTIONS(2614), 1, - sym__unquoted_pattern_in_list, - STATE(4320), 1, + ACTIONS(8071), 1, + anon_sym_RBRACE, + ACTIONS(8073), 1, + sym__entry_separator, + STATE(4485), 1, sym_comment, - [125484] = 5, + STATE(5058), 1, + sym__expr_parenthesized_immediate, + [129027] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(886), 1, - sym__entry_separator, - ACTIONS(6479), 1, + ACTIONS(1695), 1, sym__unquoted_pattern_in_list, - STATE(4321), 1, - sym_comment, - ACTIONS(866), 2, + ACTIONS(2572), 1, + sym__entry_separator, + ACTIONS(2574), 1, anon_sym_RBRACK, - anon_sym_DOT_DOT, - [125501] = 3, + ACTIONS(2576), 1, + anon_sym_LPAREN2, + STATE(4486), 1, + sym_comment, + [129046] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4322), 1, + ACTIONS(3066), 1, + ts_builtin_sym_end, + STATE(1361), 1, + aux_sym__block_body_repeat1, + STATE(4487), 1, sym_comment, - ACTIONS(4431), 4, + ACTIONS(55), 2, sym__newline, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_DOT_DOT, - [125514] = 6, + anon_sym_SEMI, + [129063] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2589), 1, + ACTIONS(1615), 1, + anon_sym_RBRACE, + ACTIONS(1699), 1, sym__entry_separator, - ACTIONS(2591), 1, - anon_sym_RBRACK, - ACTIONS(2644), 1, + ACTIONS(2672), 1, anon_sym_LPAREN2, - ACTIONS(2646), 1, - sym__unquoted_pattern_in_list, - STATE(4323), 1, + ACTIONS(2674), 1, + sym__unquoted_pattern_in_record, + STATE(4488), 1, sym_comment, - [125533] = 5, + [129082] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3098), 1, - ts_builtin_sym_end, - STATE(1379), 1, - aux_sym__block_body_repeat1, - STATE(4324), 1, + STATE(4489), 1, sym_comment, - ACTIONS(55), 2, + ACTIONS(8262), 4, sym__newline, anon_sym_SEMI, - [125550] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [129095] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4325), 1, + STATE(4490), 1, sym_comment, - ACTIONS(7119), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [125563] = 6, + ACTIONS(4151), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [129108] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2907), 1, + ACTIONS(5826), 1, sym__newline, - ACTIONS(3808), 1, - anon_sym_LBRACE, - STATE(3038), 1, - sym_block, - STATE(4221), 1, + ACTIONS(8264), 1, + anon_sym_EQ, + ACTIONS(8266), 1, + anon_sym_COLON, + STATE(3537), 1, aux_sym__repeat_newline, - STATE(4326), 1, + STATE(4491), 1, sym_comment, - [125582] = 3, + [129127] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4327), 1, + STATE(4492), 1, sym_comment, - ACTIONS(7892), 4, + ACTIONS(4149), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [125595] = 3, + anon_sym_LBRACE, + [129140] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4328), 1, + STATE(4493), 1, sym_comment, - ACTIONS(7892), 4, + ACTIONS(8268), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [125608] = 3, + [129153] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4329), 1, + ACTIONS(2622), 1, + sym__unquoted_pattern, + STATE(4494), 1, + sym_comment, + ACTIONS(2616), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [129168] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1637), 1, + sym__unquoted_pattern_in_record, + ACTIONS(8270), 1, + anon_sym_DOT_DOT2, + STATE(4495), 1, + sym_comment, + ACTIONS(8272), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [129185] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1828), 1, + sym__unquoted_pattern, + STATE(4496), 1, sym_comment, - ACTIONS(7937), 4, + ACTIONS(968), 3, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [125621] = 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + [129200] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4330), 1, + STATE(4497), 1, sym_comment, - ACTIONS(7937), 4, + ACTIONS(8274), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [125634] = 3, + [129213] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4331), 1, + STATE(4498), 1, + sym_comment, + ACTIONS(7369), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [129226] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4499), 1, sym_comment, - ACTIONS(7939), 4, + ACTIONS(8276), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [125647] = 3, + [129239] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4332), 1, + STATE(4500), 1, sym_comment, - ACTIONS(7939), 4, + ACTIONS(8268), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [125660] = 3, + [129252] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4333), 1, + STATE(4501), 1, sym_comment, - ACTIONS(7941), 4, + ACTIONS(8278), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [125673] = 3, + [129265] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4334), 1, + STATE(4502), 1, sym_comment, - ACTIONS(7941), 4, + ACTIONS(8280), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [125686] = 3, + [129278] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4335), 1, + STATE(4503), 1, sym_comment, - ACTIONS(7943), 4, - anon_sym_if, + ACTIONS(8282), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [125699] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2907), 1, - sym__newline, - ACTIONS(3808), 1, - anon_sym_LBRACE, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(3042), 1, - sym_block, - STATE(4336), 1, - sym_comment, - [125718] = 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [129291] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4337), 1, + STATE(4504), 1, sym_comment, - ACTIONS(7945), 4, - anon_sym_if, + ACTIONS(8284), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [125731] = 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [129304] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4806), 1, + ACTIONS(4343), 1, sym__entry_separator, - STATE(2263), 1, - aux_sym__types_body_repeat2, - STATE(4338), 1, - sym_comment, - ACTIONS(7436), 2, + ACTIONS(8133), 1, + anon_sym_LBRACK, + ACTIONS(8286), 1, anon_sym_RBRACK, - anon_sym_DOT_DOT, - [125748] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4806), 1, - sym__entry_separator, - STATE(2272), 1, + STATE(1913), 1, aux_sym__types_body_repeat2, - STATE(4339), 1, + STATE(4505), 1, sym_comment, - ACTIONS(7947), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [125765] = 5, + [129323] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4806), 1, + ACTIONS(5172), 1, + anon_sym_LPAREN2, + ACTIONS(8043), 1, + anon_sym_RBRACE, + ACTIONS(8045), 1, sym__entry_separator, - STATE(2269), 1, - aux_sym__types_body_repeat2, - STATE(4340), 1, + STATE(4506), 1, sym_comment, - ACTIONS(7947), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [125782] = 3, + STATE(5058), 1, + sym__expr_parenthesized_immediate, + [129342] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4341), 1, + STATE(4507), 1, sym_comment, - ACTIONS(7949), 4, - anon_sym_if, + ACTIONS(8288), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [125795] = 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [129355] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4342), 1, + STATE(4508), 1, sym_comment, - ACTIONS(7951), 4, + ACTIONS(8290), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [125808] = 3, + [129368] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4343), 1, + STATE(4509), 1, sym_comment, - ACTIONS(7951), 4, + ACTIONS(8292), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [125821] = 5, - ACTIONS(103), 1, + [129381] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7953), 1, - anon_sym_COLON2, - STATE(4344), 1, - sym_comment, - STATE(4514), 1, - aux_sym_pipe_element_parenthesized_repeat1, - ACTIONS(5461), 2, + ACTIONS(2922), 1, sym__newline, - sym__space, - [125838] = 6, + ACTIONS(3898), 1, + anon_sym_LBRACE, + STATE(3106), 1, + sym_block, + STATE(4357), 1, + aux_sym__repeat_newline, + STATE(4510), 1, + sym_comment, + [129400] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1622), 1, + ACTIONS(1637), 1, + sym__unquoted_pattern_in_record, + ACTIONS(1972), 1, sym__entry_separator, - ACTIONS(1624), 1, - anon_sym_COLON2, - ACTIONS(7955), 1, + ACTIONS(1974), 1, anon_sym_RBRACE, - STATE(1487), 1, - aux_sym__types_body_repeat2, - STATE(4345), 1, + ACTIONS(1976), 1, + anon_sym_LPAREN2, + STATE(4511), 1, sym_comment, - [125857] = 3, + [129419] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4346), 1, + STATE(4512), 1, sym_comment, - ACTIONS(7141), 4, + ACTIONS(7462), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [125870] = 6, + [129432] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6670), 1, + STATE(4513), 1, + sym_comment, + ACTIONS(1846), 2, anon_sym_LPAREN2, - ACTIONS(7957), 1, - anon_sym_RBRACK, - ACTIONS(7959), 1, sym__entry_separator, - STATE(4347), 1, - sym_comment, - STATE(5208), 1, - sym__expr_parenthesized_immediate, - [125889] = 3, + ACTIONS(1848), 2, + anon_sym_RBRACE, + sym__unquoted_pattern_in_record, + [129447] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(4348), 1, + STATE(4514), 1, sym_comment, - ACTIONS(1562), 4, - anon_sym_RBRACK, + ACTIONS(1895), 2, + anon_sym_LPAREN2, sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [125902] = 6, + ACTIONS(1897), 2, + anon_sym_RBRACE, + sym__unquoted_pattern_in_record, + [129462] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1622), 1, + ACTIONS(5172), 1, + anon_sym_LPAREN2, + ACTIONS(6252), 1, sym__entry_separator, - ACTIONS(1624), 1, - anon_sym_COLON2, - ACTIONS(7961), 1, + ACTIONS(6254), 1, anon_sym_RBRACE, - STATE(1474), 1, - aux_sym__types_body_repeat2, - STATE(4349), 1, + STATE(4515), 1, sym_comment, - [125921] = 3, - ACTIONS(3), 1, + STATE(5277), 1, + sym__expr_parenthesized_immediate, + [129481] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4350), 1, - sym_comment, - ACTIONS(7939), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(5172), 1, + anon_sym_LPAREN2, + ACTIONS(6256), 1, + sym__entry_separator, + ACTIONS(6258), 1, anon_sym_RBRACE, - [125934] = 3, + STATE(4516), 1, + sym_comment, + STATE(5277), 1, + sym__expr_parenthesized_immediate, + [129500] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4351), 1, + STATE(4517), 1, sym_comment, - ACTIONS(7939), 4, + ACTIONS(8294), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [125947] = 3, + [129513] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(4352), 1, + ACTIONS(1637), 1, + sym__unquoted_pattern_in_list, + ACTIONS(1972), 1, + sym__entry_separator, + ACTIONS(1974), 1, + anon_sym_RBRACK, + ACTIONS(1976), 1, + anon_sym_LPAREN2, + STATE(4518), 1, + sym_comment, + [129532] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5430), 1, + anon_sym_COLON2, + STATE(4519), 1, sym_comment, - ACTIONS(1496), 4, + STATE(4548), 1, + aux_sym_pipe_element_parenthesized_repeat1, + ACTIONS(5424), 2, + sym__newline, + sym__space, + [129549] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1012), 1, anon_sym_RBRACK, + ACTIONS(1226), 1, sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [125960] = 5, + ACTIONS(2632), 1, + anon_sym_LPAREN2, + ACTIONS(2634), 1, + sym__unquoted_pattern_in_list, + STATE(4520), 1, + sym_comment, + [129568] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7963), 1, - sym__newline, - ACTIONS(7966), 1, - anon_sym_PIPE, - ACTIONS(7969), 1, - anon_sym_EQ_GT, - STATE(4353), 2, + STATE(4521), 1, sym_comment, - aux_sym_match_pattern_repeat1, - [125977] = 3, + ACTIONS(8296), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [129581] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4354), 1, + STATE(4522), 1, sym_comment, - ACTIONS(7941), 4, + ACTIONS(8296), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [125990] = 3, + [129594] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4355), 1, + STATE(4523), 1, sym_comment, - ACTIONS(7941), 4, + ACTIONS(8298), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [126003] = 5, - ACTIONS(103), 1, + [129607] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7268), 1, - sym__entry_separator, - ACTIONS(7536), 1, + ACTIONS(1992), 1, + sym__unquoted_pattern_in_record, + ACTIONS(8300), 1, anon_sym_DOT_DOT2, - STATE(4356), 1, + STATE(4524), 1, sym_comment, - ACTIONS(7538), 2, + ACTIONS(8302), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [126020] = 3, + [129624] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4357), 1, + STATE(4525), 1, sym_comment, - ACTIONS(7971), 4, + ACTIONS(8304), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [126033] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(4358), 1, - sym_comment, - ACTIONS(1770), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1772), 2, - anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [126048] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4359), 1, - sym_comment, - ACTIONS(7951), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [126061] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4360), 1, - sym_comment, - ACTIONS(7973), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [126074] = 6, + [129637] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4328), 1, - sym__entry_separator, - ACTIONS(7870), 1, - anon_sym_LBRACK, - ACTIONS(7975), 1, + ACTIONS(1020), 1, anon_sym_RBRACK, - STATE(1881), 1, - aux_sym__types_body_repeat2, - STATE(4361), 1, - sym_comment, - [126093] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4362), 1, + ACTIONS(1234), 1, + sym__entry_separator, + ACTIONS(2632), 1, + anon_sym_LPAREN2, + ACTIONS(2634), 1, + sym__unquoted_pattern_in_list, + STATE(4526), 1, sym_comment, - ACTIONS(7973), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [126106] = 3, + [129656] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4363), 1, + STATE(4527), 1, sym_comment, - ACTIONS(7977), 4, + ACTIONS(8298), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [126119] = 3, + [129669] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4364), 1, + STATE(4528), 1, sym_comment, - ACTIONS(7977), 4, + ACTIONS(8306), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [126132] = 3, + [129682] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4365), 1, + STATE(4529), 1, sym_comment, - ACTIONS(7977), 4, + ACTIONS(8306), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [126145] = 4, + [129695] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(4366), 1, - sym_comment, - ACTIONS(1852), 2, + ACTIONS(6914), 1, anon_sym_LPAREN2, + ACTIONS(8308), 1, + anon_sym_RBRACK, + ACTIONS(8310), 1, sym__entry_separator, - ACTIONS(1854), 2, - anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [126160] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4367), 1, + STATE(4530), 1, sym_comment, - ACTIONS(7977), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [126173] = 4, - ACTIONS(103), 1, + STATE(5088), 1, + sym__expr_parenthesized_immediate, + [129714] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4368), 1, + ACTIONS(8254), 1, + anon_sym_LBRACK, + ACTIONS(8256), 1, + anon_sym_LPAREN, + STATE(4239), 1, + sym_parameter_parens, + STATE(4334), 1, + sym_parameter_bracks, + STATE(4531), 1, sym_comment, - ACTIONS(1870), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1872), 2, - anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [126188] = 3, + [129733] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4369), 1, + STATE(4532), 1, sym_comment, - ACTIONS(7979), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [126201] = 3, + ACTIONS(7412), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [129746] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4370), 1, + STATE(4533), 1, sym_comment, - ACTIONS(7981), 4, + ACTIONS(8312), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [126214] = 3, + [129759] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4371), 1, + STATE(4534), 1, sym_comment, - ACTIONS(7979), 4, + ACTIONS(8312), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [126227] = 3, + [129772] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4372), 1, + STATE(4535), 1, sym_comment, - ACTIONS(7983), 4, + ACTIONS(4159), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [126240] = 3, + anon_sym_LBRACE, + [129785] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4373), 1, + STATE(4536), 1, sym_comment, - ACTIONS(7983), 4, + ACTIONS(4165), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [126253] = 3, + anon_sym_LBRACE, + [129798] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4374), 1, + STATE(4537), 1, sym_comment, - ACTIONS(7985), 4, + ACTIONS(8314), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [126266] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4375), 1, - sym_comment, - ACTIONS(7137), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [126279] = 3, + [129811] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4376), 1, + STATE(4538), 1, sym_comment, - ACTIONS(7985), 4, + ACTIONS(8314), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [126292] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1635), 1, - sym__unquoted_pattern_in_record, - ACTIONS(7987), 1, - anon_sym_DOT_DOT2, - STATE(4377), 1, - sym_comment, - ACTIONS(7989), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [126309] = 3, + [129824] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4378), 1, + STATE(4539), 1, sym_comment, - ACTIONS(7991), 4, + ACTIONS(8296), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [126322] = 3, + [129837] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4379), 1, + STATE(4540), 1, sym_comment, - ACTIONS(7993), 4, + ACTIONS(8296), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [126335] = 3, + [129850] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4380), 1, + STATE(4541), 1, sym_comment, - ACTIONS(7995), 4, + ACTIONS(8298), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [126348] = 3, + [129863] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4381), 1, + STATE(4542), 1, sym_comment, - ACTIONS(7997), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [126361] = 3, + ACTIONS(7416), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [129876] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4382), 1, + STATE(4543), 1, sym_comment, - ACTIONS(7999), 4, + ACTIONS(8298), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [126374] = 4, + [129889] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(886), 1, + ACTIONS(1986), 1, + anon_sym_LPAREN2, + ACTIONS(1992), 1, + sym__unquoted_pattern_in_record, + ACTIONS(2652), 1, sym__entry_separator, - STATE(4383), 1, + ACTIONS(2654), 1, + anon_sym_RBRACE, + STATE(4544), 1, sym_comment, - ACTIONS(866), 3, - anon_sym_RBRACK, + [129908] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1982), 1, + sym__entry_separator, + ACTIONS(1984), 1, anon_sym_RBRACE, - anon_sym_DOT_DOT, - [126389] = 4, + ACTIONS(1986), 1, + anon_sym_LPAREN2, + ACTIONS(1992), 1, + sym__unquoted_pattern_in_record, + STATE(4545), 1, + sym_comment, + [129927] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8001), 1, - anon_sym_LPAREN, - STATE(4384), 1, + STATE(4546), 1, sym_comment, - ACTIONS(8003), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [126404] = 3, + ACTIONS(1551), 4, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [129940] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4385), 1, + STATE(4547), 1, sym_comment, - ACTIONS(7151), 4, + ACTIONS(7388), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [126417] = 4, + [129953] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2170), 1, + ACTIONS(8316), 1, + anon_sym_COLON2, + STATE(4432), 1, + aux_sym_pipe_element_parenthesized_repeat1, + STATE(4548), 1, + sym_comment, + ACTIONS(5424), 2, + sym__newline, + sym__space, + [129970] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2608), 1, sym__entry_separator, - STATE(4386), 1, + ACTIONS(2610), 1, + anon_sym_RBRACK, + ACTIONS(2612), 1, + anon_sym_LPAREN2, + ACTIONS(2614), 1, + sym__unquoted_pattern_in_list, + STATE(4549), 1, sym_comment, - ACTIONS(2172), 3, + [129989] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4343), 1, + sym__entry_separator, + ACTIONS(8133), 1, + anon_sym_LBRACK, + ACTIONS(8318), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [126432] = 6, + STATE(1913), 1, + aux_sym__types_body_repeat2, + STATE(4550), 1, + sym_comment, + [130008] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8005), 1, + ACTIONS(2634), 1, + sym__unquoted_pattern, + STATE(4551), 1, + sym_comment, + ACTIONS(1226), 3, anon_sym_LBRACK, - ACTIONS(8007), 1, anon_sym_LPAREN, - STATE(4183), 1, - sym_parameter_parens, - STATE(4184), 1, - sym_parameter_bracks, - STATE(4387), 1, - sym_comment, - [126451] = 3, + anon_sym_DASH_DASH, + [130023] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4388), 1, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(3898), 1, + anon_sym_LBRACE, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(3107), 1, + sym_block, + STATE(4552), 1, sym_comment, - ACTIONS(8009), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [126464] = 3, + [130042] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4389), 1, + STATE(4553), 1, sym_comment, - ACTIONS(8011), 4, + ACTIONS(8306), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [126477] = 3, + [130055] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4390), 1, + STATE(4554), 1, sym_comment, - ACTIONS(8013), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(8320), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [130068] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1695), 1, + sym__unquoted_pattern_in_record, + ACTIONS(2572), 1, + sym__entry_separator, + ACTIONS(2574), 1, anon_sym_RBRACE, - [126490] = 6, + ACTIONS(2576), 1, + anon_sym_LPAREN2, + STATE(4555), 1, + sym_comment, + [130087] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1635), 1, - sym__unquoted_pattern_in_list, - ACTIONS(1956), 1, + ACTIONS(2608), 1, sym__entry_separator, - ACTIONS(1958), 1, - anon_sym_RBRACK, - ACTIONS(1960), 1, + ACTIONS(2610), 1, + anon_sym_RBRACE, + ACTIONS(2612), 1, anon_sym_LPAREN2, - STATE(4391), 1, + ACTIONS(2614), 1, + sym__unquoted_pattern_in_record, + STATE(4556), 1, sym_comment, - [126509] = 5, + [130106] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3100), 1, - ts_builtin_sym_end, - STATE(1370), 1, - aux_sym__block_body_repeat1, - STATE(4392), 1, + STATE(4557), 1, sym_comment, - ACTIONS(55), 2, + ACTIONS(8306), 4, sym__newline, anon_sym_SEMI, - [126526] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [130119] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7214), 1, - anon_sym_LBRACK, - ACTIONS(7216), 1, - anon_sym_LPAREN, - STATE(4029), 1, - sym_parameter_parens, - STATE(4030), 1, - sym_parameter_bracks, - STATE(4393), 1, + STATE(4558), 1, sym_comment, - [126545] = 3, + ACTIONS(8322), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [130132] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4394), 1, + STATE(4559), 1, sym_comment, - ACTIONS(7208), 4, + ACTIONS(7392), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [126558] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1020), 1, - anon_sym_RBRACK, - ACTIONS(1022), 1, - sym__entry_separator, - ACTIONS(2656), 1, - anon_sym_LPAREN2, - ACTIONS(2658), 1, - sym__unquoted_pattern_in_list, - STATE(4395), 1, - sym_comment, - [126577] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(994), 1, - anon_sym_RBRACK, - ACTIONS(1030), 1, - sym__entry_separator, - ACTIONS(2656), 1, - anon_sym_LPAREN2, - ACTIONS(2658), 1, - sym__unquoted_pattern_in_list, - STATE(4396), 1, - sym_comment, - [126596] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6670), 1, - anon_sym_LPAREN2, - ACTIONS(8015), 1, - anon_sym_RBRACK, - ACTIONS(8017), 1, - sym__entry_separator, - STATE(4397), 1, - sym_comment, - STATE(5208), 1, - sym__expr_parenthesized_immediate, - [126615] = 5, + [130145] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7626), 1, - anon_sym_RPAREN, - STATE(4398), 1, + STATE(4560), 1, sym_comment, - STATE(4429), 1, - aux_sym__block_body_repeat1, - ACTIONS(7858), 2, + ACTIONS(8322), 4, sym__newline, anon_sym_SEMI, - [126632] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [130158] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2529), 1, - sym__entry_separator, - STATE(4399), 1, + STATE(4561), 1, sym_comment, - ACTIONS(2531), 3, - anon_sym_RBRACK, + ACTIONS(8324), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT, - [126647] = 3, + [130171] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4400), 1, + ACTIONS(2362), 1, + sym__unquoted_pattern, + STATE(4562), 1, sym_comment, - ACTIONS(8019), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [126660] = 6, + ACTIONS(2360), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [130186] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6670), 1, - anon_sym_LPAREN2, - ACTIONS(7542), 1, - anon_sym_RBRACK, - ACTIONS(7550), 1, + ACTIONS(2616), 1, sym__entry_separator, - STATE(4401), 1, + ACTIONS(2618), 1, + anon_sym_RBRACE, + ACTIONS(2620), 1, + anon_sym_LPAREN2, + ACTIONS(2622), 1, + sym__unquoted_pattern_in_record, + STATE(4563), 1, sym_comment, - STATE(4867), 1, - sym__expr_parenthesized_immediate, - [126679] = 3, + [130205] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4402), 1, + ACTIONS(7285), 1, + sym__unquoted_pattern, + STATE(4564), 1, sym_comment, - ACTIONS(7182), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [126692] = 5, - ACTIONS(103), 1, + ACTIONS(968), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [130220] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8021), 1, - anon_sym_DQUOTE, - STATE(4403), 1, + STATE(4565), 1, sym_comment, - STATE(4418), 1, - aux_sym_string_content_repeat1, - ACTIONS(7691), 2, - sym__escaped_str_content, - sym_escape_sequence, - [126709] = 3, + ACTIONS(8324), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [130233] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4404), 1, + STATE(4566), 1, sym_comment, - ACTIONS(7212), 4, + ACTIONS(7432), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [126722] = 5, + [130246] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8023), 1, - anon_sym_RBRACK, - STATE(3564), 1, - aux_sym_parameter_repeat2, - STATE(4405), 1, + STATE(4567), 1, sym_comment, - ACTIONS(1480), 2, + ACTIONS(8326), 4, sym__newline, - anon_sym_COMMA, - [126739] = 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [130259] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4406), 1, + STATE(4568), 1, sym_comment, - ACTIONS(8025), 4, + ACTIONS(8326), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [126752] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4407), 1, - sym_comment, - ACTIONS(8027), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [126765] = 6, + [130272] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8005), 1, - anon_sym_LBRACK, - ACTIONS(8007), 1, - anon_sym_LPAREN, - STATE(4059), 1, - sym_parameter_parens, - STATE(4061), 1, - sym_parameter_bracks, - STATE(4408), 1, + ACTIONS(1637), 1, + sym__unquoted_pattern, + ACTIONS(8328), 1, + anon_sym_DOT_DOT2, + STATE(4569), 1, sym_comment, - [126784] = 5, + ACTIONS(8330), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [130289] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7434), 1, - anon_sym_LBRACE, - STATE(3289), 1, - sym__blosure, - STATE(4409), 1, + STATE(4570), 1, sym_comment, - STATE(3288), 2, - sym_block, - sym_val_closure, - [126801] = 3, + ACTIONS(8332), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [130302] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4410), 1, + STATE(4571), 1, sym_comment, - ACTIONS(7121), 4, + ACTIONS(8334), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [126814] = 3, + [130315] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4411), 1, + STATE(4572), 1, sym_comment, - ACTIONS(7848), 4, + ACTIONS(8332), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [126827] = 3, + [130328] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4412), 1, - sym_comment, - ACTIONS(7848), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [126840] = 4, + ACTIONS(2634), 1, + sym__unquoted_pattern, + STATE(4573), 1, + sym_comment, + ACTIONS(1234), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [130343] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2154), 1, + ACTIONS(1580), 1, sym__entry_separator, - STATE(4413), 1, + STATE(4574), 1, sym_comment, - ACTIONS(2156), 3, + ACTIONS(1578), 3, anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_GT2, anon_sym_DOT_DOT, - [126855] = 4, - ACTIONS(103), 1, + [130358] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8029), 1, - anon_sym_LPAREN, - STATE(4414), 1, + STATE(4575), 1, sym_comment, - ACTIONS(8031), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [126870] = 6, + ACTIONS(7359), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [130371] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8005), 1, + ACTIONS(7466), 1, anon_sym_LBRACK, - ACTIONS(8007), 1, + ACTIONS(7468), 1, anon_sym_LPAREN, - STATE(4074), 1, + STATE(3998), 1, sym_parameter_parens, - STATE(4079), 1, + STATE(3999), 1, sym_parameter_bracks, - STATE(4415), 1, + STATE(4576), 1, sym_comment, - [126889] = 3, + [130390] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4416), 1, + STATE(4577), 1, sym_comment, - ACTIONS(8033), 4, + ACTIONS(8336), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [126902] = 6, + [130403] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2682), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2684), 1, - anon_sym_COLON2, - ACTIONS(3808), 1, - anon_sym_LBRACE, - STATE(4310), 1, - sym_block, - STATE(4417), 1, + ACTIONS(4343), 1, + sym__entry_separator, + ACTIONS(8133), 1, + anon_sym_LBRACK, + ACTIONS(8338), 1, + anon_sym_RBRACK, + STATE(1913), 1, + aux_sym__types_body_repeat2, + STATE(4578), 1, sym_comment, - [126921] = 4, - ACTIONS(103), 1, + [130422] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8035), 1, - anon_sym_DQUOTE, - ACTIONS(8037), 2, - sym__escaped_str_content, - sym_escape_sequence, - STATE(4418), 2, + ACTIONS(8184), 1, + anon_sym_LBRACE, + STATE(3451), 1, + sym__blosure, + STATE(4579), 1, sym_comment, - aux_sym_string_content_repeat1, - [126936] = 4, - ACTIONS(103), 1, + STATE(3249), 2, + sym_block, + sym_val_closure, + [130439] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4419), 1, + STATE(4580), 1, sym_comment, - ACTIONS(2525), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(2527), 2, + ACTIONS(8324), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [126951] = 3, + [130452] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4420), 1, + STATE(4581), 1, sym_comment, - ACTIONS(8033), 4, + ACTIONS(8324), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [126964] = 6, + [130465] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1614), 1, - anon_sym_RBRACE, - ACTIONS(1713), 1, - sym__entry_separator, - ACTIONS(2612), 1, - anon_sym_LPAREN2, - ACTIONS(2614), 1, - sym__unquoted_pattern_in_record, - STATE(4421), 1, + STATE(4582), 1, sym_comment, - [126983] = 5, + ACTIONS(1543), 4, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [130478] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7862), 1, + ACTIONS(8146), 1, anon_sym_DOT_DOT2, - ACTIONS(8040), 1, + ACTIONS(8340), 1, anon_sym_LBRACE, - STATE(4422), 1, + STATE(4583), 1, sym_comment, - ACTIONS(7864), 2, + ACTIONS(8148), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [127000] = 6, + [130495] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2682), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2684), 1, - anon_sym_COLON2, - ACTIONS(3808), 1, - anon_sym_LBRACE, - STATE(4313), 1, - sym_block, - STATE(4423), 1, + ACTIONS(8342), 1, + sym__space, + ACTIONS(5899), 2, + sym__newline, + anon_sym_SEMI, + STATE(4584), 2, + sym_comment, + aux_sym_attribute_repeat1, + [130510] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1012), 1, + anon_sym_RBRACE, + ACTIONS(1226), 1, + sym__entry_separator, + ACTIONS(2632), 1, + anon_sym_LPAREN2, + ACTIONS(2634), 1, + sym__unquoted_pattern_in_record, + STATE(4585), 1, + sym_comment, + [130529] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1020), 1, + anon_sym_RBRACE, + ACTIONS(1234), 1, + sym__entry_separator, + ACTIONS(2632), 1, + anon_sym_LPAREN2, + ACTIONS(2634), 1, + sym__unquoted_pattern_in_record, + STATE(4586), 1, sym_comment, - [127019] = 4, + [130548] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8042), 1, + ACTIONS(8345), 1, anon_sym_LPAREN, - STATE(4424), 1, + STATE(4587), 1, sym_comment, - ACTIONS(8044), 3, + ACTIONS(8347), 3, sym_escaped_interpolated_content, anon_sym_DQUOTE2, sym_inter_escape_sequence, - [127034] = 6, - ACTIONS(103), 1, + [130563] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2682), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2684), 1, - anon_sym_COLON2, - ACTIONS(3808), 1, + ACTIONS(7658), 1, anon_sym_LBRACE, - STATE(3073), 1, - sym_block, - STATE(4425), 1, + STATE(3356), 1, + sym__blosure, + STATE(4588), 1, sym_comment, - [127053] = 5, + STATE(3141), 2, + sym_block, + sym_val_closure, + [130580] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1635), 1, + ACTIONS(1992), 1, sym__unquoted_pattern, - ACTIONS(8046), 1, + ACTIONS(8349), 1, anon_sym_DOT_DOT2, - STATE(4426), 1, + STATE(4589), 1, sym_comment, - ACTIONS(8048), 2, + ACTIONS(8351), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [127070] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8050), 1, - sym__space, - ACTIONS(5937), 2, - sym__newline, - anon_sym_SEMI, - STATE(4427), 2, - sym_comment, - aux_sym_attribute_repeat1, - [127085] = 6, + [130597] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1635), 1, - sym__unquoted_pattern_in_record, - ACTIONS(1956), 1, - sym__entry_separator, - ACTIONS(1958), 1, - anon_sym_RBRACE, - ACTIONS(1960), 1, + ACTIONS(6914), 1, anon_sym_LPAREN2, - STATE(4428), 1, + ACTIONS(8353), 1, + anon_sym_RBRACK, + ACTIONS(8355), 1, + sym__entry_separator, + STATE(4590), 1, sym_comment, - [127104] = 4, + STATE(5088), 1, + sym__expr_parenthesized_immediate, + [130616] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3069), 1, - anon_sym_RPAREN, - ACTIONS(8053), 2, + STATE(4591), 1, + sym_comment, + ACTIONS(8326), 4, sym__newline, anon_sym_SEMI, - STATE(4429), 2, - sym_comment, - aux_sym__block_body_repeat1, - [127119] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [130629] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1983), 1, - sym__unquoted_pattern, - ACTIONS(8056), 1, - anon_sym_DOT_DOT2, - STATE(4430), 1, + ACTIONS(447), 1, + ts_builtin_sym_end, + STATE(1373), 1, + aux_sym__block_body_repeat1, + STATE(4592), 1, sym_comment, - ACTIONS(8058), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [127136] = 3, + ACTIONS(55), 2, + sym__newline, + anon_sym_SEMI, + [130646] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4431), 1, + STATE(4593), 1, sym_comment, - ACTIONS(8060), 4, - anon_sym_if, + ACTIONS(8326), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [127149] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4806), 1, - sym__entry_separator, - STATE(2262), 1, - aux_sym__types_body_repeat2, - STATE(4432), 1, - sym_comment, - ACTIONS(7562), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [127166] = 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [130659] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4433), 1, + STATE(4594), 1, sym_comment, - ACTIONS(1770), 2, + ACTIONS(1730), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1772), 2, + ACTIONS(1732), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - [127181] = 3, + [130674] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4434), 1, + STATE(4595), 1, sym_comment, - ACTIONS(8062), 4, + ACTIONS(8332), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [127194] = 4, + [130687] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4435), 1, + STATE(4596), 1, + sym_comment, + ACTIONS(8332), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [130700] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4597), 1, + sym_comment, + ACTIONS(8357), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [130713] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4598), 1, sym_comment, - ACTIONS(1852), 2, + ACTIONS(1846), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1854), 2, + ACTIONS(1848), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - [127209] = 4, + [130728] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4436), 1, + STATE(4599), 1, sym_comment, - ACTIONS(1870), 2, + ACTIONS(1895), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1872), 2, + ACTIONS(1897), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - [127224] = 3, + [130743] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4437), 1, + STATE(4600), 1, sym_comment, - ACTIONS(4140), 4, - ts_builtin_sym_end, + ACTIONS(8357), 4, sym__newline, anon_sym_SEMI, - anon_sym_LBRACE, - [127237] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1616), 1, + anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(1622), 1, - sym__entry_separator, - ACTIONS(1624), 1, - anon_sym_COLON2, - STATE(1470), 1, - aux_sym__types_body_repeat2, - STATE(4438), 1, - sym_comment, - [127256] = 3, + [130756] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4439), 1, + STATE(4601), 1, sym_comment, - ACTIONS(4142), 4, - ts_builtin_sym_end, + ACTIONS(8359), 4, sym__newline, anon_sym_SEMI, - anon_sym_LBRACE, - [127269] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1977), 1, - anon_sym_LPAREN2, - ACTIONS(1983), 1, - sym__unquoted_pattern_in_record, - ACTIONS(2597), 1, - sym__entry_separator, - ACTIONS(2599), 1, - anon_sym_RBRACE, - STATE(4440), 1, - sym_comment, - [127288] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4441), 1, - sym_comment, - ACTIONS(7460), 4, - anon_sym_export, - anon_sym_def, - anon_sym_extern, - anon_sym_AT, - [127301] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1973), 1, - sym__entry_separator, - ACTIONS(1975), 1, + anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(1977), 1, - anon_sym_LPAREN2, - ACTIONS(1983), 1, - sym__unquoted_pattern_in_record, - STATE(4442), 1, - sym_comment, - [127320] = 3, + [130769] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4443), 1, + STATE(4602), 1, sym_comment, - ACTIONS(8064), 4, + ACTIONS(8359), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [127333] = 6, + [130782] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5197), 1, + ACTIONS(5172), 1, anon_sym_LPAREN2, - ACTIONS(6208), 1, + ACTIONS(6269), 1, sym__entry_separator, - ACTIONS(6210), 1, + ACTIONS(6271), 1, anon_sym_RBRACE, - STATE(4444), 1, + STATE(4603), 1, sym_comment, - STATE(5178), 1, + STATE(5277), 1, sym__expr_parenthesized_immediate, - [127352] = 3, + [130801] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4445), 1, + STATE(4604), 1, sym_comment, - ACTIONS(8066), 4, + ACTIONS(8359), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [127365] = 4, - ACTIONS(103), 1, + [130814] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1912), 1, - sym__entry_separator, - STATE(4446), 1, + STATE(4605), 1, sym_comment, - ACTIONS(1914), 3, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_RBRACE, - [127380] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1679), 1, - sym__unquoted_pattern_in_record, - ACTIONS(2541), 1, - sym__entry_separator, - ACTIONS(2543), 1, + ACTIONS(8359), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(2642), 1, - anon_sym_LPAREN2, - STATE(4447), 1, - sym_comment, - [127399] = 6, + [130827] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7650), 1, - sym__newline, - ACTIONS(7652), 1, - anon_sym_PIPE, - ACTIONS(8068), 1, - anon_sym_EQ_GT, - STATE(4353), 1, - aux_sym_match_pattern_repeat1, - STATE(4448), 1, + STATE(4606), 1, sym_comment, - [127418] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2589), 1, - sym__entry_separator, - ACTIONS(2591), 1, + ACTIONS(8361), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(2644), 1, - anon_sym_LPAREN2, - ACTIONS(2646), 1, - sym__unquoted_pattern_in_record, - STATE(4449), 1, - sym_comment, - [127437] = 5, + [130840] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2154), 1, - anon_sym_LBRACE, - ACTIONS(8070), 1, - anon_sym_DOT_DOT2, - STATE(4450), 1, + STATE(4607), 1, sym_comment, - ACTIONS(8072), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [127454] = 4, + ACTIONS(8361), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [130853] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1772), 1, - sym__unquoted_pattern, - STATE(4451), 1, + STATE(4608), 1, sym_comment, - ACTIONS(1770), 3, + ACTIONS(8363), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [127469] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5197), 1, - anon_sym_LPAREN2, - ACTIONS(6212), 1, - sym__entry_separator, - ACTIONS(6214), 1, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - STATE(4452), 1, - sym_comment, - STATE(5178), 1, - sym__expr_parenthesized_immediate, - [127488] = 6, + [130866] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1770), 1, - anon_sym_LBRACE, - ACTIONS(1772), 1, - sym__unquoted_pattern, - ACTIONS(8074), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8076), 1, - aux_sym__immediate_decimal_token5, - STATE(4453), 1, + STATE(4609), 1, sym_comment, - [127507] = 4, + ACTIONS(8363), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [130879] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2527), 1, - sym__unquoted_pattern, - STATE(4454), 1, + STATE(4610), 1, sym_comment, - ACTIONS(2525), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [127522] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2648), 1, - sym__entry_separator, - ACTIONS(2650), 1, + ACTIONS(8365), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(2652), 1, - anon_sym_LPAREN2, - ACTIONS(2654), 1, - sym__unquoted_pattern_in_record, - STATE(4455), 1, - sym_comment, - [127541] = 4, + [130892] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1854), 1, - sym__unquoted_pattern, - STATE(4456), 1, + STATE(4611), 1, sym_comment, - ACTIONS(1852), 3, + ACTIONS(8365), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [127556] = 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [130905] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1872), 1, - sym__unquoted_pattern, - STATE(4457), 1, + STATE(4612), 1, sym_comment, - ACTIONS(1870), 3, + ACTIONS(8367), 4, + anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [127571] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7079), 1, - sym__unquoted_pattern, - STATE(4458), 1, - sym_comment, - ACTIONS(886), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [127586] = 3, + [130918] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4459), 1, + STATE(4613), 1, sym_comment, - ACTIONS(8078), 4, + ACTIONS(8369), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [127599] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7862), 1, - anon_sym_DOT_DOT2, - ACTIONS(8080), 1, - anon_sym_LBRACE, - STATE(4460), 1, - sym_comment, - ACTIONS(7864), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [127616] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4461), 1, - sym_comment, - ACTIONS(8066), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [127629] = 5, + [130931] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7482), 1, - anon_sym_RPAREN, - STATE(4429), 1, - aux_sym__block_body_repeat1, - STATE(4462), 1, + STATE(4614), 1, sym_comment, - ACTIONS(7858), 2, + ACTIONS(8371), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - [127646] = 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + [130944] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4463), 1, + STATE(4615), 1, sym_comment, - ACTIONS(8082), 4, + ACTIONS(8373), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [127659] = 3, + [130957] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4464), 1, + STATE(4616), 1, sym_comment, - ACTIONS(8084), 4, + ACTIONS(8375), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [127672] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6670), 1, - anon_sym_LPAREN2, - ACTIONS(8086), 1, - anon_sym_RBRACK, - ACTIONS(8088), 1, - sym__entry_separator, - STATE(4465), 1, - sym_comment, - STATE(5208), 1, - sym__expr_parenthesized_immediate, - [127691] = 3, + [130970] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4466), 1, + STATE(4617), 1, sym_comment, - ACTIONS(8090), 4, + ACTIONS(8371), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [127704] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2196), 1, - sym__entry_separator, - STATE(4467), 1, - sym_comment, - ACTIONS(2198), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [127719] = 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + [130983] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4468), 1, + STATE(4618), 1, sym_comment, - ACTIONS(8092), 4, + ACTIONS(7574), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [127732] = 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + [130996] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4469), 1, + STATE(4619), 1, sym_comment, - ACTIONS(8094), 4, + ACTIONS(8377), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [127745] = 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + [131009] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4470), 1, + STATE(4620), 1, sym_comment, - ACTIONS(8096), 4, + ACTIONS(7486), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [127758] = 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + [131022] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4471), 1, + STATE(4621), 1, sym_comment, - ACTIONS(8098), 4, + ACTIONS(8379), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [127771] = 6, + [131035] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4328), 1, + ACTIONS(4806), 1, sym__entry_separator, - ACTIONS(7870), 1, - anon_sym_LBRACK, - ACTIONS(8100), 1, - anon_sym_RBRACK, - STATE(1881), 1, + STATE(2267), 1, aux_sym__types_body_repeat2, - STATE(4472), 1, + STATE(4622), 1, sym_comment, - [127790] = 6, + ACTIONS(8381), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [131052] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4328), 1, + ACTIONS(4806), 1, sym__entry_separator, - ACTIONS(7870), 1, - anon_sym_LBRACK, - ACTIONS(8102), 1, - anon_sym_RBRACK, - STATE(1881), 1, + STATE(2265), 1, aux_sym__types_body_repeat2, - STATE(4473), 1, + STATE(4623), 1, sym_comment, - [127809] = 6, + ACTIONS(8381), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [131069] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6670), 1, + ACTIONS(5172), 1, anon_sym_LPAREN2, - ACTIONS(8104), 1, - anon_sym_RBRACK, - ACTIONS(8106), 1, + ACTIONS(6273), 1, sym__entry_separator, - STATE(4474), 1, + ACTIONS(6275), 1, + anon_sym_RBRACE, + STATE(4624), 1, sym_comment, - STATE(5208), 1, + STATE(5277), 1, sym__expr_parenthesized_immediate, - [127828] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4475), 1, - sym_comment, - ACTIONS(7363), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [127841] = 4, + [131088] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(4476), 1, - sym_comment, - ACTIONS(1770), 2, - anon_sym_LPAREN2, + ACTIONS(968), 1, sym__entry_separator, - ACTIONS(1772), 2, - anon_sym_RBRACK, - sym__unquoted_pattern_in_list, - [127856] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4477), 1, - sym_comment, - ACTIONS(4169), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [127869] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4478), 1, - sym_comment, - ACTIONS(4171), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [127882] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4479), 1, + STATE(4625), 1, sym_comment, - ACTIONS(8108), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(847), 3, + anon_sym_RBRACK, anon_sym_RBRACE, - [127895] = 3, + anon_sym_DOT_DOT, + [131103] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4480), 1, - sym_comment, - ACTIONS(8108), 4, - sym__newline, - anon_sym_SEMI, + ACTIONS(8383), 1, anon_sym_RPAREN, - anon_sym_RBRACE, - [127908] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4481), 1, + STATE(4351), 1, + aux_sym__block_body_repeat1, + STATE(4626), 1, sym_comment, - ACTIONS(8110), 4, + ACTIONS(8220), 2, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [127921] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1983), 1, - sym__unquoted_pattern_in_record, - ACTIONS(8112), 1, - anon_sym_DOT_DOT2, - STATE(4482), 1, - sym_comment, - ACTIONS(8114), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [127938] = 3, + [131120] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4483), 1, + STATE(4627), 1, sym_comment, - ACTIONS(8116), 4, + ACTIONS(8385), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [127951] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4484), 1, - sym_comment, - ACTIONS(8118), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [127964] = 6, + [131133] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1020), 1, - anon_sym_RBRACE, - ACTIONS(1022), 1, + ACTIONS(2148), 1, sym__entry_separator, - ACTIONS(2656), 1, - anon_sym_LPAREN2, - ACTIONS(2658), 1, - sym__unquoted_pattern_in_record, - STATE(4485), 1, + STATE(4628), 1, sym_comment, - [127983] = 6, + ACTIONS(2150), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [131148] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(994), 1, - anon_sym_RBRACE, - ACTIONS(1030), 1, + ACTIONS(1623), 1, sym__entry_separator, - ACTIONS(2656), 1, - anon_sym_LPAREN2, - ACTIONS(2658), 1, - sym__unquoted_pattern_in_record, - STATE(4486), 1, + ACTIONS(1625), 1, + anon_sym_COLON2, + ACTIONS(8387), 1, + anon_sym_RBRACE, + STATE(1466), 1, + aux_sym__types_body_repeat2, + STATE(4629), 1, sym_comment, - [128002] = 3, + [131167] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4487), 1, + STATE(4630), 1, sym_comment, - ACTIONS(7188), 4, + ACTIONS(7418), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [128015] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4488), 1, - sym_comment, - ACTIONS(8118), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [128028] = 3, + [131180] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4489), 1, + ACTIONS(1732), 1, + sym__unquoted_pattern, + STATE(4631), 1, sym_comment, - ACTIONS(7268), 4, - anon_sym_if, + ACTIONS(1730), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [128041] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2614), 1, - sym__unquoted_pattern_in_list, - ACTIONS(7268), 1, - sym__entry_separator, - STATE(4490), 1, - sym_comment, - ACTIONS(7555), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [128058] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4491), 1, - sym_comment, - ACTIONS(8120), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [128071] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4492), 1, - sym_comment, - ACTIONS(8120), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [128084] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8122), 1, - anon_sym_LBRACE, - STATE(3417), 1, - sym__blosure, - STATE(4493), 1, - sym_comment, - STATE(3494), 2, - sym_block, - sym_val_closure, - [128101] = 6, + [131195] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2907), 1, + ACTIONS(2922), 1, sym__newline, - ACTIONS(3808), 1, + ACTIONS(3898), 1, anon_sym_LBRACE, - STATE(3460), 1, + STATE(3547), 1, sym_block, - STATE(4494), 1, + STATE(4632), 1, sym_comment, - STATE(4498), 1, + STATE(4636), 1, aux_sym__repeat_newline, - [128120] = 6, - ACTIONS(103), 1, + [131214] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8124), 1, - anon_sym_GT2, - ACTIONS(8126), 1, - anon_sym_AT2, - ACTIONS(8128), 1, - sym__entry_separator, - STATE(4495), 1, + STATE(4633), 1, sym_comment, - STATE(4826), 1, - sym_param_completer, - [128139] = 6, + ACTIONS(8389), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [131227] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1977), 1, + STATE(4634), 1, + sym_comment, + ACTIONS(1730), 2, anon_sym_LPAREN2, - ACTIONS(1983), 1, - sym__unquoted_pattern_in_list, - ACTIONS(2597), 1, sym__entry_separator, - ACTIONS(2599), 1, + ACTIONS(1732), 2, anon_sym_RBRACK, - STATE(4496), 1, - sym_comment, - [128158] = 6, + sym__unquoted_pattern_in_list, + [131242] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2907), 1, + ACTIONS(2922), 1, sym__newline, - ACTIONS(3808), 1, + ACTIONS(3898), 1, anon_sym_LBRACE, - STATE(3463), 1, + STATE(3548), 1, sym_block, - STATE(4497), 1, + STATE(4635), 1, sym_comment, - STATE(4500), 1, - aux_sym__repeat_newline, - [128177] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2907), 1, - sym__newline, - ACTIONS(3808), 1, - anon_sym_LBRACE, - STATE(527), 1, + STATE(4637), 1, aux_sym__repeat_newline, - STATE(3464), 1, - sym_block, - STATE(4498), 1, - sym_comment, - [128196] = 6, + [131261] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2907), 1, + ACTIONS(2922), 1, sym__newline, - ACTIONS(3808), 1, + ACTIONS(3898), 1, anon_sym_LBRACE, - STATE(527), 1, + STATE(485), 1, aux_sym__repeat_newline, - STATE(3082), 1, + STATE(3549), 1, sym_block, - STATE(4499), 1, + STATE(4636), 1, sym_comment, - [128215] = 6, + [131280] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2907), 1, + ACTIONS(2922), 1, sym__newline, - ACTIONS(3808), 1, + ACTIONS(3898), 1, anon_sym_LBRACE, - STATE(527), 1, + STATE(485), 1, aux_sym__repeat_newline, - STATE(3466), 1, + STATE(3551), 1, sym_block, - STATE(4500), 1, - sym_comment, - [128234] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1973), 1, - sym__entry_separator, - ACTIONS(1975), 1, - anon_sym_RBRACK, - ACTIONS(1977), 1, - anon_sym_LPAREN2, - ACTIONS(1983), 1, - sym__unquoted_pattern_in_list, - STATE(4501), 1, - sym_comment, - [128253] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2907), 1, - sym__newline, - ACTIONS(3144), 1, - anon_sym_SEMI, - STATE(1369), 1, - aux_sym__parenthesized_body_repeat1, - STATE(4502), 1, + STATE(4637), 1, sym_comment, - STATE(4562), 1, - aux_sym__repeat_newline, - [128272] = 3, + [131299] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4503), 1, + ACTIONS(1848), 1, + sym__unquoted_pattern, + STATE(4638), 1, sym_comment, - ACTIONS(8130), 4, - anon_sym_if, + ACTIONS(1846), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [128285] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(4504), 1, - sym_comment, - ACTIONS(1870), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1872), 2, - anon_sym_RBRACK, - sym__unquoted_pattern_in_list, - [128300] = 3, + [131314] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4505), 1, + STATE(4639), 1, sym_comment, - ACTIONS(7848), 4, + ACTIONS(8391), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [128313] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(4506), 1, - sym_comment, - ACTIONS(1852), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1854), 2, - anon_sym_RBRACK, - sym__unquoted_pattern_in_list, - [128328] = 5, + [131327] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2102), 1, - anon_sym_LBRACE, - ACTIONS(8132), 1, - anon_sym_DOT_DOT2, - STATE(4507), 1, + ACTIONS(1897), 1, + sym__unquoted_pattern, + STATE(4640), 1, sym_comment, - ACTIONS(8134), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [128345] = 5, - ACTIONS(3), 1, + ACTIONS(1895), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [131342] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2110), 1, - anon_sym_LBRACE, - ACTIONS(8136), 1, - anon_sym_DOT_DOT2, - STATE(4508), 1, + STATE(4641), 1, sym_comment, - ACTIONS(8138), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [128362] = 5, + ACTIONS(1468), 4, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [131355] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2118), 1, - anon_sym_LBRACE, - ACTIONS(8140), 1, - anon_sym_DOT_DOT2, - STATE(4509), 1, + STATE(4642), 1, sym_comment, - ACTIONS(8142), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [128379] = 6, + ACTIONS(8393), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [131368] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2907), 1, + ACTIONS(2922), 1, sym__newline, - ACTIONS(3808), 1, + ACTIONS(3898), 1, anon_sym_LBRACE, - STATE(3326), 1, + STATE(3373), 1, sym_block, - STATE(4510), 1, + STATE(4643), 1, sym_comment, - STATE(4512), 1, + STATE(4645), 1, aux_sym__repeat_newline, - [128398] = 6, + [131387] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2907), 1, + ACTIONS(2922), 1, sym__newline, - ACTIONS(3808), 1, + ACTIONS(3898), 1, anon_sym_LBRACE, - STATE(3328), 1, + STATE(3374), 1, sym_block, - STATE(4511), 1, + STATE(4644), 1, sym_comment, - STATE(4513), 1, + STATE(4646), 1, aux_sym__repeat_newline, - [128417] = 6, + [131406] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2907), 1, + ACTIONS(2922), 1, sym__newline, - ACTIONS(3808), 1, + ACTIONS(3898), 1, anon_sym_LBRACE, - STATE(527), 1, + STATE(485), 1, aux_sym__repeat_newline, - STATE(3329), 1, + STATE(3375), 1, sym_block, - STATE(4512), 1, + STATE(4645), 1, sym_comment, - [128436] = 6, + [131425] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2907), 1, + ACTIONS(2922), 1, sym__newline, - ACTIONS(3808), 1, + ACTIONS(3898), 1, anon_sym_LBRACE, - STATE(527), 1, + STATE(485), 1, aux_sym__repeat_newline, - STATE(3331), 1, + STATE(3377), 1, sym_block, - STATE(4513), 1, - sym_comment, - [128455] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(3478), 1, - anon_sym_COLON2, - ACTIONS(8144), 2, - sym__newline, - sym__space, - STATE(4514), 2, + STATE(4646), 1, sym_comment, - aux_sym_pipe_element_parenthesized_repeat1, - [128470] = 4, + [131444] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2200), 1, + ACTIONS(2545), 1, sym__entry_separator, - STATE(4515), 1, + STATE(4647), 1, sym_comment, - ACTIONS(2202), 3, + ACTIONS(2547), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [128485] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7363), 1, - sym__entry_separator, - ACTIONS(7536), 1, - anon_sym_DOT_DOT2, - STATE(4516), 1, - sym_comment, - ACTIONS(7538), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [128502] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5197), 1, - anon_sym_LPAREN2, - ACTIONS(6081), 1, - sym__entry_separator, - ACTIONS(6083), 1, - anon_sym_RBRACE, - STATE(4517), 1, - sym_comment, - STATE(5178), 1, - sym__expr_parenthesized_immediate, - [128521] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4518), 1, - sym_comment, - ACTIONS(7951), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [128534] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4519), 1, - sym_comment, - ACTIONS(8011), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [128546] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4520), 1, - sym_comment, - ACTIONS(2174), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [128558] = 5, + [131459] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1744), 1, - anon_sym_LBRACE, - ACTIONS(7361), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8147), 1, - anon_sym_DOT, - STATE(4521), 1, - sym_comment, - [128574] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4522), 1, + ACTIONS(2674), 1, + sym__unquoted_pattern, + STATE(4648), 1, sym_comment, - ACTIONS(4682), 3, + ACTIONS(1699), 3, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - [128586] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8149), 1, - anon_sym_RBRACK, - ACTIONS(8151), 1, - sym_hex_digit, - STATE(4523), 1, - sym_comment, - STATE(4616), 1, - aux_sym_val_binary_repeat1, - [128602] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4456), 1, - sym__entry_separator, - ACTIONS(8153), 1, - anon_sym_RBRACK, - STATE(2134), 1, - aux_sym__types_body_repeat2, - STATE(4524), 1, - sym_comment, - [128618] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8151), 1, - sym_hex_digit, - ACTIONS(8155), 1, - anon_sym_RBRACK, - STATE(4525), 1, - sym_comment, - STATE(4530), 1, - aux_sym_val_binary_repeat1, - [128634] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1622), 1, - sym__entry_separator, - ACTIONS(8157), 1, - anon_sym_RBRACE, - STATE(1486), 1, - aux_sym__types_body_repeat2, - STATE(4526), 1, - sym_comment, - [128650] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1622), 1, - sym__entry_separator, - ACTIONS(8159), 1, - anon_sym_RBRACE, - STATE(1484), 1, - aux_sym__types_body_repeat2, - STATE(4527), 1, - sym_comment, - [128666] = 3, + [131474] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4528), 1, + STATE(4649), 1, sym_comment, - ACTIONS(3148), 3, + ACTIONS(8395), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, - [128678] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4529), 1, - sym_comment, - ACTIONS(7892), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [128690] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8151), 1, - sym_hex_digit, - ACTIONS(8161), 1, - anon_sym_RBRACK, - STATE(4530), 1, - sym_comment, - STATE(4766), 1, - aux_sym_val_binary_repeat1, - [128706] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2555), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3808), 1, - anon_sym_LBRACE, - STATE(3073), 1, - sym_block, - STATE(4531), 1, - sym_comment, - [128722] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2533), 1, - sym__entry_separator, - STATE(4532), 1, - sym_comment, - ACTIONS(2535), 2, - anon_sym_RBRACK, anon_sym_RBRACE, - [128736] = 5, + [131487] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4328), 1, - sym__entry_separator, - ACTIONS(8163), 1, - anon_sym_GT2, - STATE(1971), 1, - aux_sym__types_body_repeat2, - STATE(4533), 1, + STATE(4650), 1, sym_comment, - [128752] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5235), 1, + ACTIONS(1730), 2, + anon_sym_LPAREN2, sym__entry_separator, - STATE(4534), 1, - sym_comment, - ACTIONS(5879), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [128766] = 3, + ACTIONS(1732), 2, + anon_sym_RBRACE, + sym__unquoted_pattern_in_record, + [131502] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4535), 1, + STATE(4651), 1, sym_comment, - ACTIONS(7913), 3, + ACTIONS(8236), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [128778] = 3, + [131514] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4536), 1, + STATE(4652), 1, sym_comment, - ACTIONS(7915), 3, + ACTIONS(8314), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [128790] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5275), 1, - sym__entry_separator, - STATE(4537), 1, - sym_comment, - ACTIONS(5798), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [128804] = 4, + [131526] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1713), 1, + ACTIONS(1623), 1, sym__entry_separator, - STATE(4538), 1, - sym_comment, - ACTIONS(1614), 2, - anon_sym_RBRACK, + ACTIONS(8397), 1, anon_sym_RBRACE, - [128818] = 3, + STATE(1472), 1, + aux_sym__types_body_repeat2, + STATE(4653), 1, + sym_comment, + [131542] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4539), 1, - sym_comment, - ACTIONS(8064), 3, - ts_builtin_sym_end, + ACTIONS(2922), 1, sym__newline, + ACTIONS(3331), 1, anon_sym_SEMI, - [128830] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4456), 1, - sym__entry_separator, - ACTIONS(8165), 1, - anon_sym_RBRACK, - STATE(2018), 1, - aux_sym__types_body_repeat2, - STATE(4540), 1, - sym_comment, - [128846] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5239), 1, - sym__entry_separator, - STATE(4541), 1, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(4654), 1, sym_comment, - ACTIONS(5883), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [128860] = 5, + [131558] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8151), 1, - sym_hex_digit, - ACTIONS(8167), 1, + ACTIONS(8399), 1, anon_sym_RBRACK, - STATE(4542), 1, - sym_comment, - STATE(4708), 1, - aux_sym_val_binary_repeat1, - [128876] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1622), 1, - sym__entry_separator, - ACTIONS(1624), 1, - anon_sym_COLON2, - STATE(1499), 1, - aux_sym__types_body_repeat2, - STATE(4543), 1, - sym_comment, - [128892] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5036), 1, - sym__entry_separator, - ACTIONS(8169), 1, - anon_sym_GT2, - STATE(2404), 1, - aux_sym__types_body_repeat2, - STATE(4544), 1, - sym_comment, - [128908] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5036), 1, - sym__entry_separator, - ACTIONS(8171), 1, - anon_sym_GT2, - STATE(2412), 1, - aux_sym__types_body_repeat2, - STATE(4545), 1, - sym_comment, - [128924] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5255), 1, - sym__entry_separator, - STATE(4546), 1, + ACTIONS(8401), 1, + sym_hex_digit, + STATE(4655), 1, sym_comment, - ACTIONS(5815), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [128938] = 3, + STATE(4658), 1, + aux_sym_val_binary_repeat1, + [131574] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4547), 1, + STATE(4656), 1, sym_comment, - ACTIONS(8173), 3, + ACTIONS(8326), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [128950] = 5, + [131586] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4328), 1, + ACTIONS(2481), 1, sym__entry_separator, - ACTIONS(8175), 1, - anon_sym_RBRACK, - STATE(1956), 1, - aux_sym__types_body_repeat2, - STATE(4548), 1, + STATE(4657), 1, sym_comment, - [128966] = 5, - ACTIONS(103), 1, + ACTIONS(2483), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [131600] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4456), 1, - sym__entry_separator, - ACTIONS(8177), 1, + ACTIONS(8401), 1, + sym_hex_digit, + ACTIONS(8403), 1, anon_sym_RBRACK, - STATE(2119), 1, - aux_sym__types_body_repeat2, - STATE(4549), 1, + STATE(4658), 1, sym_comment, - [128982] = 4, + STATE(4876), 1, + aux_sym_val_binary_repeat1, + [131616] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7943), 1, + ACTIONS(6356), 1, sym__entry_separator, - STATE(4550), 1, + STATE(4659), 1, sym_comment, - ACTIONS(8179), 2, + ACTIONS(6354), 2, anon_sym_RBRACK, - anon_sym_DOT_DOT, - [128996] = 5, + anon_sym_RBRACE, + [131630] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4328), 1, + ACTIONS(2485), 1, sym__entry_separator, - ACTIONS(8181), 1, - anon_sym_RBRACK, - STATE(1987), 1, - aux_sym__types_body_repeat2, - STATE(4551), 1, + STATE(4660), 1, sym_comment, - [129012] = 3, + ACTIONS(2487), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [131644] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4552), 1, + STATE(4661), 1, sym_comment, - ACTIONS(8183), 3, + ACTIONS(8296), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [129024] = 5, + [131656] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4052), 1, - anon_sym_AT2, - ACTIONS(8185), 1, - anon_sym_GT2, - STATE(4553), 1, + ACTIONS(1846), 1, + anon_sym_LBRACE, + ACTIONS(1848), 1, + sym__unquoted_pattern, + ACTIONS(8405), 1, + aux_sym__immediate_decimal_token5, + STATE(4662), 1, sym_comment, - STATE(5368), 1, - sym_param_completer, - [129040] = 4, + [131672] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2290), 1, + ACTIONS(4778), 1, + anon_sym_RBRACE, + ACTIONS(4780), 1, sym__entry_separator, - STATE(4554), 1, + STATE(2259), 1, + aux_sym__types_body_repeat2, + STATE(4663), 1, sym_comment, - ACTIONS(2292), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [129054] = 3, + [131688] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4555), 1, + STATE(4664), 1, sym_comment, - ACTIONS(7917), 3, + ACTIONS(8357), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [129066] = 4, + [131700] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5281), 1, - sym__entry_separator, - STATE(4556), 1, + STATE(4665), 1, sym_comment, - ACTIONS(5817), 2, + ACTIONS(1889), 3, anon_sym_RBRACK, - anon_sym_GT2, - [129080] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2294), 1, sym__entry_separator, - STATE(4557), 1, + sym__table_head_separator, + [131712] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4096), 1, + anon_sym_AT2, + ACTIONS(5778), 1, + anon_sym_EQ, + STATE(3151), 1, + sym_param_completer, + STATE(4666), 1, sym_comment, - ACTIONS(2296), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [129094] = 4, + [131728] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5294), 1, + ACTIONS(5283), 1, sym__entry_separator, - STATE(4558), 1, + STATE(4667), 1, sym_comment, - ACTIONS(5921), 2, + ACTIONS(5850), 2, anon_sym_RBRACK, anon_sym_GT2, - [129108] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2907), 1, - sym__newline, - ACTIONS(8187), 1, - anon_sym_COLON, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(4559), 1, - sym_comment, - [129124] = 5, + [131742] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1852), 1, + ACTIONS(1790), 1, anon_sym_LBRACE, - ACTIONS(1854), 1, + ACTIONS(1792), 1, sym__unquoted_pattern, - ACTIONS(8189), 1, + ACTIONS(8216), 1, aux_sym__immediate_decimal_token5, - STATE(4560), 1, + STATE(4668), 1, sym_comment, - [129140] = 3, - ACTIONS(3), 1, + [131758] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4561), 1, + ACTIONS(5249), 1, + sym__entry_separator, + STATE(4669), 1, sym_comment, - ACTIONS(8191), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [129152] = 5, + ACTIONS(5818), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [131772] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2907), 1, - sym__newline, - ACTIONS(3384), 1, - anon_sym_SEMI, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(4562), 1, + STATE(4670), 1, sym_comment, - [129168] = 3, - ACTIONS(3), 1, + ACTIONS(4615), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [131784] = 5, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4563), 1, + ACTIONS(847), 1, + anon_sym_RBRACK, + ACTIONS(968), 1, + sym__entry_separator, + ACTIONS(6659), 1, + sym__unquoted_pattern_in_list, + STATE(4671), 1, sym_comment, - ACTIONS(7905), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [129180] = 5, + [131800] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8151), 1, + ACTIONS(8401), 1, sym_hex_digit, - ACTIONS(8193), 1, + ACTIONS(8407), 1, anon_sym_RBRACK, - STATE(4564), 1, + STATE(4672), 1, sym_comment, - STATE(4599), 1, + STATE(4677), 1, aux_sym_val_binary_repeat1, - [129196] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8195), 1, - anon_sym_RBRACK, - ACTIONS(8198), 1, - anon_sym_DOT_DOT, - ACTIONS(8200), 1, - sym__entry_separator, - STATE(4565), 1, - sym_comment, - [129212] = 3, + [131816] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4566), 1, + STATE(4673), 1, sym_comment, - ACTIONS(7905), 3, + ACTIONS(8332), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [129224] = 3, + [131828] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4567), 1, + STATE(4674), 1, sym_comment, - ACTIONS(7888), 3, - ts_builtin_sym_end, + ACTIONS(8409), 3, sym__newline, anon_sym_SEMI, - [129236] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8203), 1, - anon_sym_DQUOTE, - STATE(4568), 1, - sym_comment, - ACTIONS(8205), 2, - sym__escaped_str_content, - sym_escape_sequence, - [129250] = 3, + anon_sym_RPAREN, + [131840] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4569), 1, + STATE(4675), 1, sym_comment, - ACTIONS(8025), 3, + ACTIONS(8294), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [129262] = 3, + [131852] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4570), 1, + STATE(4676), 1, sym_comment, - ACTIONS(7981), 3, + ACTIONS(8234), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [129274] = 3, + [131864] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4571), 1, - sym_comment, - ACTIONS(8207), 3, - sym__newline, - anon_sym_LBRACK, + ACTIONS(8401), 1, + sym_hex_digit, + ACTIONS(8411), 1, anon_sym_RBRACK, - [129286] = 4, + STATE(4677), 1, + sym_comment, + STATE(4876), 1, + aux_sym_val_binary_repeat1, + [131880] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2632), 1, + ACTIONS(4343), 1, sym__entry_separator, - STATE(4572), 1, + ACTIONS(8133), 1, + anon_sym_LBRACK, + STATE(1913), 1, + aux_sym__types_body_repeat2, + STATE(4678), 1, sym_comment, - ACTIONS(2634), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [129300] = 3, + [131896] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4573), 1, - sym_comment, - ACTIONS(7848), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [129312] = 3, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(4574), 1, + ACTIONS(4096), 1, + anon_sym_AT2, + ACTIONS(5778), 1, + anon_sym_EQ, + STATE(3152), 1, + sym_param_completer, + STATE(4679), 1, sym_comment, - ACTIONS(850), 3, - sym__newline, - sym__space, - anon_sym_COLON2, - [129324] = 3, + [131912] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4575), 1, + STATE(4680), 1, sym_comment, - ACTIONS(7848), 3, + ACTIONS(8158), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [129336] = 3, + [131924] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4576), 1, + STATE(4681), 1, sym_comment, - ACTIONS(7937), 3, + ACTIONS(8336), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [129348] = 3, + [131936] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4577), 1, + STATE(4682), 1, sym_comment, - ACTIONS(7933), 3, + ACTIONS(8296), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [129360] = 3, + [131948] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4578), 1, + STATE(4683), 1, sym_comment, - ACTIONS(8209), 3, + ACTIONS(8413), 3, sym__newline, - anon_sym_LBRACK, - anon_sym_RBRACK, - [129372] = 3, + anon_sym_SEMI, + anon_sym_RPAREN, + [131960] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4579), 1, + STATE(4684), 1, sym_comment, - ACTIONS(7919), 3, + ACTIONS(8236), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [129384] = 4, + [131972] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7945), 1, - sym__entry_separator, - STATE(4580), 1, + ACTIONS(8415), 1, + anon_sym_GT2, + STATE(4685), 1, sym_comment, - ACTIONS(8211), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [129398] = 4, + ACTIONS(8417), 2, + anon_sym_AT2, + sym__entry_separator, + [131986] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8060), 1, + ACTIONS(7574), 1, sym__entry_separator, - STATE(4581), 1, + STATE(4686), 1, sym_comment, - ACTIONS(7133), 2, + ACTIONS(7660), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - [129412] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4582), 1, - sym_comment, - ACTIONS(4615), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [129424] = 3, + [132000] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4583), 1, + STATE(4687), 1, sym_comment, - ACTIONS(8033), 3, + ACTIONS(8306), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [129436] = 3, + [132012] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4584), 1, + STATE(4688), 1, sym_comment, - ACTIONS(8033), 3, + ACTIONS(8298), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [129448] = 3, + [132024] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4585), 1, - sym_comment, - ACTIONS(7888), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [129460] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8213), 1, - anon_sym_LPAREN, - STATE(4586), 1, + ACTIONS(8401), 1, + sym_hex_digit, + ACTIONS(8419), 1, + anon_sym_RBRACK, + STATE(4689), 1, sym_comment, - ACTIONS(8215), 2, - anon_sym_SQUOTE2, - sym_unescaped_interpolated_content, - [129474] = 5, - ACTIONS(103), 1, + STATE(4694), 1, + aux_sym_val_binary_repeat1, + [132040] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1622), 1, - sym__entry_separator, - ACTIONS(8217), 1, - anon_sym_RBRACE, - STATE(1493), 1, - aux_sym__types_body_repeat2, - STATE(4587), 1, + ACTIONS(4096), 1, + anon_sym_AT2, + ACTIONS(5780), 1, + anon_sym_EQ, + STATE(3156), 1, + sym_param_completer, + STATE(4690), 1, sym_comment, - [129490] = 3, + [132056] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4588), 1, + ACTIONS(8421), 1, + anon_sym_export, + ACTIONS(8423), 1, + anon_sym_def, + ACTIONS(8425), 1, + anon_sym_extern, + STATE(4691), 1, sym_comment, - ACTIONS(7977), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [129502] = 5, + [132072] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1744), 1, - anon_sym_LBRACE, - ACTIONS(1746), 1, - sym__unquoted_pattern, - ACTIONS(7903), 1, + ACTIONS(1792), 1, + sym__unquoted_pattern_in_record, + ACTIONS(8427), 1, + anon_sym_DOT, + ACTIONS(8429), 1, aux_sym__immediate_decimal_token5, - STATE(4589), 1, - sym_comment, - [129518] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8220), 1, - anon_sym_LPAREN, - STATE(4590), 1, + STATE(4692), 1, sym_comment, - ACTIONS(8222), 2, - anon_sym_SQUOTE2, - sym_unescaped_interpolated_content, - [129532] = 3, + [132088] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4591), 1, + ACTIONS(4096), 1, + anon_sym_AT2, + ACTIONS(8431), 1, + anon_sym_GT2, + STATE(4693), 1, sym_comment, - ACTIONS(7890), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [129544] = 5, - ACTIONS(103), 1, + STATE(5280), 1, + sym_param_completer, + [132104] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4328), 1, - sym__entry_separator, - ACTIONS(8224), 1, + ACTIONS(8401), 1, + sym_hex_digit, + ACTIONS(8433), 1, anon_sym_RBRACK, - STATE(1981), 1, - aux_sym__types_body_repeat2, - STATE(4592), 1, + STATE(4694), 1, sym_comment, - [129560] = 4, + STATE(4876), 1, + aux_sym_val_binary_repeat1, + [132120] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7949), 1, - sym__entry_separator, - STATE(4593), 1, + STATE(4695), 1, sym_comment, - ACTIONS(8198), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [129574] = 3, + ACTIONS(880), 3, + sym__newline, + sym__space, + anon_sym_COLON2, + [132132] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4594), 1, + STATE(4696), 1, sym_comment, - ACTIONS(8226), 3, + ACTIONS(8232), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [129586] = 5, - ACTIONS(3), 1, + [132144] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5197), 1, - anon_sym_LPAREN2, - ACTIONS(6779), 1, - sym__unquoted_pattern_in_record, - STATE(4595), 1, + ACTIONS(8435), 1, + anon_sym_LPAREN, + STATE(4697), 1, sym_comment, - STATE(4903), 1, - sym__expr_parenthesized_immediate, - [129602] = 3, + ACTIONS(8437), 2, + anon_sym_SQUOTE2, + sym_unescaped_interpolated_content, + [132158] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4596), 1, + STATE(4698), 1, sym_comment, - ACTIONS(8228), 3, + ACTIONS(8439), 3, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, - [129614] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4597), 1, - sym_comment, - ACTIONS(7935), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [129626] = 4, - ACTIONS(3), 1, + [132170] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8232), 1, - anon_sym_COMMA, - STATE(4598), 1, + ACTIONS(1623), 1, + sym__entry_separator, + ACTIONS(8106), 1, + anon_sym_RBRACE, + STATE(1469), 1, + aux_sym__types_body_repeat2, + STATE(4699), 1, sym_comment, - ACTIONS(8230), 2, - anon_sym_RBRACK, - sym_hex_digit, - [129640] = 5, + [132186] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8151), 1, - sym_hex_digit, - ACTIONS(8234), 1, + ACTIONS(8441), 1, anon_sym_RBRACK, - STATE(4599), 1, - sym_comment, - STATE(4766), 1, - aux_sym_val_binary_repeat1, - [129656] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2555), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3808), 1, - anon_sym_LBRACE, - STATE(4313), 1, - sym_block, - STATE(4600), 1, + ACTIONS(8443), 1, + anon_sym_DOT_DOT, + STATE(4700), 1, sym_comment, - [129672] = 5, + STATE(5322), 1, + sym__match_pattern_rest, + [132202] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5197), 1, + ACTIONS(1818), 1, anon_sym_LPAREN2, - ACTIONS(5207), 1, - sym__unquoted_pattern_in_record, - STATE(4601), 1, + ACTIONS(5118), 1, + sym__unquoted_pattern, + STATE(4701), 1, sym_comment, - STATE(4854), 1, + STATE(5065), 1, sym__expr_parenthesized_immediate, - [129688] = 5, + [132218] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2907), 1, - sym__newline, - ACTIONS(8236), 1, - anon_sym_COLON, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(4602), 1, + ACTIONS(4096), 1, + anon_sym_AT2, + ACTIONS(8445), 1, + anon_sym_GT2, + STATE(4702), 1, sym_comment, - [129704] = 5, + STATE(5148), 1, + sym_param_completer, + [132234] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4328), 1, + ACTIONS(4343), 1, sym__entry_separator, - ACTIONS(8238), 1, - anon_sym_RBRACK, - STATE(4472), 1, + ACTIONS(8447), 1, + anon_sym_GT2, + STATE(1973), 1, aux_sym__types_body_repeat2, - STATE(4603), 1, + STATE(4703), 1, + sym_comment, + [132250] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2594), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3898), 1, + anon_sym_LBRACE, + STATE(4402), 1, + sym_block, + STATE(4704), 1, sym_comment, - [129720] = 3, + [132266] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4604), 1, + STATE(4705), 1, sym_comment, - ACTIONS(7977), 3, + ACTIONS(8306), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [129732] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(866), 1, - anon_sym_RBRACE, - ACTIONS(886), 1, - sym__entry_separator, - ACTIONS(6779), 1, - sym__unquoted_pattern_in_record, - STATE(4605), 1, - sym_comment, - [129748] = 5, + [132278] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4052), 1, - anon_sym_AT2, - ACTIONS(5776), 1, - anon_sym_EQ, - STATE(3168), 1, - sym_param_completer, - STATE(4606), 1, + STATE(4706), 1, sym_comment, - [129764] = 5, - ACTIONS(103), 1, + ACTIONS(8298), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [132290] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4328), 1, - sym__entry_separator, - ACTIONS(8240), 1, - anon_sym_GT2, - STATE(1985), 1, - aux_sym__types_body_repeat2, - STATE(4607), 1, + STATE(4707), 1, sym_comment, - [129780] = 3, + ACTIONS(8186), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [132302] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4608), 1, + STATE(4708), 1, sym_comment, - ACTIONS(8062), 3, + ACTIONS(8102), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [129792] = 3, + [132314] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4609), 1, + STATE(4709), 1, sym_comment, - ACTIONS(8108), 3, + ACTIONS(8199), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [129804] = 3, + [132326] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4610), 1, + STATE(4710), 1, sym_comment, - ACTIONS(8108), 3, + ACTIONS(8201), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [129816] = 5, + [132338] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4328), 1, + ACTIONS(8389), 1, sym__entry_separator, - ACTIONS(8242), 1, + STATE(4711), 1, + sym_comment, + ACTIONS(8449), 2, anon_sym_RBRACK, - STATE(1977), 1, - aux_sym__types_body_repeat2, - STATE(4611), 1, + anon_sym_DOT_DOT, + [132352] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8393), 1, + sym__entry_separator, + STATE(4712), 1, sym_comment, - [129832] = 5, - ACTIONS(3), 1, + ACTIONS(8451), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [132366] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3946), 1, - anon_sym_LBRACK, - STATE(4612), 1, + ACTIONS(2527), 1, + sym__entry_separator, + STATE(4713), 1, sym_comment, - STATE(4661), 1, - aux_sym__table_body_repeat1, - STATE(4706), 1, - sym_val_list, - [129848] = 3, + ACTIONS(2529), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [132380] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4613), 1, + STATE(4714), 1, sym_comment, - ACTIONS(7890), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [129860] = 3, - ACTIONS(3), 1, + ACTIONS(2156), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [132392] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4614), 1, + ACTIONS(8104), 1, + sym__entry_separator, + STATE(4715), 1, sym_comment, - ACTIONS(8244), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [129872] = 5, + ACTIONS(8453), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [132406] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4328), 1, + ACTIONS(4343), 1, sym__entry_separator, - ACTIONS(8246), 1, + ACTIONS(8455), 1, anon_sym_GT2, - STATE(1976), 1, + STATE(1964), 1, aux_sym__types_body_repeat2, - STATE(4615), 1, - sym_comment, - [129888] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8151), 1, - sym_hex_digit, - ACTIONS(8248), 1, - anon_sym_RBRACK, - STATE(4616), 1, + STATE(4716), 1, sym_comment, - STATE(4766), 1, - aux_sym_val_binary_repeat1, - [129904] = 5, - ACTIONS(3), 1, + [132422] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1724), 1, - anon_sym_LPAREN2, - ACTIONS(5160), 1, - sym__unquoted_pattern, - STATE(4617), 1, + ACTIONS(2531), 1, + sym__entry_separator, + STATE(4717), 1, sym_comment, - STATE(4806), 1, - sym__expr_parenthesized_immediate, - [129920] = 3, + ACTIONS(2533), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [132436] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4618), 1, + STATE(4718), 1, sym_comment, - ACTIONS(8066), 3, + ACTIONS(8116), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [129932] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1724), 1, - anon_sym_LPAREN2, - ACTIONS(1734), 1, - sym__unquoted_pattern, - STATE(4619), 1, - sym_comment, - STATE(4801), 1, - sym__expr_parenthesized_immediate, - [129948] = 5, + [132448] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2829), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3786), 1, - anon_sym_LBRACE, - STATE(3303), 1, - sym_block, - STATE(4620), 1, + ACTIONS(4343), 1, + sym__entry_separator, + ACTIONS(8457), 1, + anon_sym_RBRACK, + STATE(4505), 1, + aux_sym__types_body_repeat2, + STATE(4719), 1, sym_comment, - [129964] = 3, + [132464] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4621), 1, + STATE(4720), 1, sym_comment, - ACTIONS(8066), 3, + ACTIONS(8218), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [129976] = 5, + [132476] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4052), 1, - anon_sym_AT2, - ACTIONS(5776), 1, - anon_sym_EQ, - STATE(3163), 1, - sym_param_completer, - STATE(4622), 1, + ACTIONS(8401), 1, + sym_hex_digit, + ACTIONS(8459), 1, + anon_sym_RBRACK, + STATE(4721), 1, sym_comment, - [129992] = 5, - ACTIONS(3), 1, + STATE(4748), 1, + aux_sym_val_binary_repeat1, + [132492] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2907), 1, - sym__newline, - ACTIONS(8250), 1, - anon_sym_COLON, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(4623), 1, + ACTIONS(4370), 1, + sym__entry_separator, + ACTIONS(8461), 1, + anon_sym_RBRACK, + STATE(1971), 1, + aux_sym__types_body_repeat2, + STATE(4722), 1, + sym_comment, + [132508] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6350), 1, + sym__entry_separator, + STATE(4723), 1, sym_comment, - [130008] = 3, + ACTIONS(6348), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [132522] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4624), 1, + STATE(4724), 1, sym_comment, - ACTIONS(8120), 3, + ACTIONS(8359), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [130020] = 3, + [132534] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4625), 1, + STATE(4725), 1, sym_comment, - ACTIONS(8120), 3, + ACTIONS(8212), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [130032] = 3, + [132546] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4626), 1, + STATE(4726), 1, sym_comment, - ACTIONS(7939), 3, - ts_builtin_sym_end, + ACTIONS(8463), 3, sym__newline, anon_sym_SEMI, - [130044] = 5, + anon_sym_RPAREN, + [132558] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4727), 1, + sym_comment, + ACTIONS(4611), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [132570] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4420), 1, + ACTIONS(2445), 1, sym__entry_separator, - ACTIONS(8252), 1, + STATE(4728), 1, + sym_comment, + ACTIONS(2447), 2, anon_sym_RBRACK, - STATE(2007), 1, - aux_sym__types_body_repeat2, - STATE(4627), 1, + anon_sym_RBRACE, + [132584] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6659), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6914), 1, + anon_sym_LPAREN2, + STATE(4729), 1, sym_comment, - [130060] = 3, + STATE(5028), 1, + sym__expr_parenthesized_immediate, + [132600] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4628), 1, + ACTIONS(3771), 1, + anon_sym_LBRACK, + STATE(4730), 1, sym_comment, - ACTIONS(7848), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [130072] = 3, + STATE(4842), 1, + sym_val_list, + STATE(4868), 1, + aux_sym__table_body_repeat1, + [132616] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4629), 1, + STATE(4731), 1, sym_comment, - ACTIONS(7848), 3, + ACTIONS(8212), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [130084] = 5, + [132628] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8254), 1, + ACTIONS(1862), 1, anon_sym_POUND_BANG, - ACTIONS(8256), 1, + ACTIONS(8465), 1, sym__newline, - STATE(4630), 1, - sym_comment, - STATE(4660), 1, + STATE(4732), 2, aux_sym__repeat_newline, - [130100] = 3, + sym_comment, + [132642] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4631), 1, + STATE(4733), 1, sym_comment, - ACTIONS(7979), 3, + ACTIONS(8218), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [130112] = 3, + [132654] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4632), 1, + STATE(4734), 1, sym_comment, - ACTIONS(7850), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [130124] = 5, + ACTIONS(4600), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [132666] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4420), 1, + ACTIONS(1623), 1, sym__entry_separator, - ACTIONS(8258), 1, - anon_sym_RBRACK, - STATE(2023), 1, + ACTIONS(8468), 1, + anon_sym_RBRACE, + STATE(1468), 1, aux_sym__types_body_repeat2, - STATE(4633), 1, + STATE(4735), 1, sym_comment, - [130140] = 3, - ACTIONS(3), 1, + [132682] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4634), 1, + ACTIONS(2551), 1, + sym__entry_separator, + STATE(4736), 1, sym_comment, - ACTIONS(8110), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [130152] = 5, + ACTIONS(2553), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [132696] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4420), 1, + ACTIONS(1617), 1, + anon_sym_RBRACE, + ACTIONS(1623), 1, sym__entry_separator, - ACTIONS(8260), 1, - anon_sym_RBRACK, - STATE(2069), 1, + STATE(1480), 1, aux_sym__types_body_repeat2, - STATE(4635), 1, + STATE(4737), 1, sym_comment, - [130168] = 5, + [132712] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4420), 1, - sym__entry_separator, - ACTIONS(8262), 1, - anon_sym_RBRACK, - STATE(2033), 1, - aux_sym__types_body_repeat2, - STATE(4636), 1, + ACTIONS(8471), 1, + sym__table_head_separator, + STATE(4738), 1, sym_comment, - [130184] = 3, + ACTIONS(1615), 2, + anon_sym_RBRACK, + sym__entry_separator, + [132726] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4637), 1, + ACTIONS(1790), 1, + anon_sym_LBRACE, + ACTIONS(7586), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8473), 1, + anon_sym_DOT, + STATE(4739), 1, sym_comment, - ACTIONS(8264), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [130196] = 3, + [132742] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4638), 1, + STATE(4740), 1, sym_comment, - ACTIONS(7852), 3, - ts_builtin_sym_end, + ACTIONS(8475), 3, sym__newline, - anon_sym_SEMI, - [130208] = 3, + anon_sym_LBRACK, + anon_sym_RBRACK, + [132754] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4639), 1, + STATE(4741), 1, sym_comment, - ACTIONS(7991), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [130220] = 3, + ACTIONS(4623), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [132766] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4640), 1, + STATE(4742), 1, sym_comment, - ACTIONS(7993), 3, + ACTIONS(8212), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [130232] = 3, + [132778] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2558), 1, + sym__entry_separator, + STATE(4743), 1, + sym_comment, + ACTIONS(2560), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [132792] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4641), 1, + STATE(4744), 1, sym_comment, - ACTIONS(7939), 3, + ACTIONS(8174), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [130244] = 3, + [132804] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4483), 1, + sym__entry_separator, + ACTIONS(8477), 1, + anon_sym_RBRACK, + STATE(2056), 1, + aux_sym__types_body_repeat2, + STATE(4745), 1, + sym_comment, + [132820] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4642), 1, + STATE(4746), 1, sym_comment, - ACTIONS(7995), 3, + ACTIONS(8332), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [130256] = 3, + [132832] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4643), 1, + ACTIONS(5172), 1, + anon_sym_LPAREN2, + ACTIONS(5182), 1, + sym__unquoted_pattern_in_record, + STATE(4747), 1, sym_comment, - ACTIONS(8266), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [130268] = 3, + STATE(5078), 1, + sym__expr_parenthesized_immediate, + [132848] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4644), 1, + ACTIONS(8401), 1, + sym_hex_digit, + ACTIONS(8479), 1, + anon_sym_RBRACK, + STATE(4748), 1, sym_comment, - ACTIONS(8118), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [130280] = 3, + STATE(4876), 1, + aux_sym_val_binary_repeat1, + [132864] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4645), 1, + STATE(4749), 1, sym_comment, - ACTIONS(7979), 3, + ACTIONS(8274), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [130292] = 5, + [132876] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8128), 1, + ACTIONS(847), 1, + anon_sym_RBRACE, + ACTIONS(968), 1, sym__entry_separator, - ACTIONS(8268), 1, - anon_sym_AT2, - STATE(4646), 1, + ACTIONS(7007), 1, + sym__unquoted_pattern_in_record, + STATE(4750), 1, sym_comment, - STATE(4826), 1, - sym_param_completer, - [130308] = 3, + [132892] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4343), 1, + sym__entry_separator, + ACTIONS(8481), 1, + anon_sym_RBRACK, + STATE(4355), 1, + aux_sym__types_body_repeat2, + STATE(4751), 1, + sym_comment, + [132908] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4647), 1, + STATE(4752), 1, sym_comment, - ACTIONS(7997), 3, + ACTIONS(8268), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [130320] = 5, + [132920] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8270), 1, + ACTIONS(1818), 1, + anon_sym_LPAREN2, + ACTIONS(1828), 1, + sym__unquoted_pattern, + STATE(4753), 1, + sym_comment, + STATE(5072), 1, + sym__expr_parenthesized_immediate, + [132936] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7486), 1, + sym__entry_separator, + STATE(4754), 1, + sym_comment, + ACTIONS(7666), 2, anon_sym_RBRACK, - ACTIONS(8272), 1, anon_sym_DOT_DOT, - STATE(4648), 1, + [132950] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8453), 1, + anon_sym_DOT_DOT, + ACTIONS(8483), 1, + anon_sym_RBRACK, + ACTIONS(8486), 1, + sym__entry_separator, + STATE(4755), 1, sym_comment, - STATE(5340), 1, - sym__match_pattern_rest, - [130336] = 3, + [132966] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4649), 1, + STATE(4756), 1, sym_comment, - ACTIONS(7999), 3, + ACTIONS(8262), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [130348] = 3, + [132978] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4650), 1, + STATE(4757), 1, sym_comment, - ACTIONS(7931), 3, + ACTIONS(8391), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [130360] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8274), 1, - anon_sym_QMARK2, - STATE(4651), 1, - sym_comment, - ACTIONS(1450), 2, - sym__table_head_separator, - anon_sym_DOT2, - [130374] = 3, + [132990] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4652), 1, + STATE(4758), 1, sym_comment, - ACTIONS(7983), 3, + ACTIONS(8298), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [130386] = 3, + [133002] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4653), 1, + STATE(4759), 1, sym_comment, - ACTIONS(8118), 3, + ACTIONS(8268), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [130398] = 3, + [133014] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4654), 1, + STATE(4760), 1, sym_comment, - ACTIONS(7892), 3, + ACTIONS(8322), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [130410] = 3, - ACTIONS(103), 1, + [133026] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4655), 1, + ACTIONS(8489), 1, + anon_sym_BANG, + STATE(4761), 1, sym_comment, - ACTIONS(1864), 3, - anon_sym_RBRACK, - sym__entry_separator, + ACTIONS(1462), 2, sym__table_head_separator, - [130422] = 4, + anon_sym_DOT2, + [133040] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(1387), 1, - aux_sym__block_body_repeat1, - STATE(4656), 1, + STATE(4762), 1, sym_comment, - ACTIONS(153), 2, + ACTIONS(8322), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [130436] = 5, + [133052] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1772), 1, - sym__unquoted_pattern_in_record, - ACTIONS(8276), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8278), 1, - aux_sym__immediate_decimal_token5, - STATE(4657), 1, + STATE(4763), 1, sym_comment, - [130452] = 3, + ACTIONS(8324), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [133064] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4658), 1, + STATE(4764), 1, sym_comment, - ACTIONS(7951), 3, + ACTIONS(8324), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [130464] = 5, + [133076] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1616), 1, - anon_sym_RBRACE, - ACTIONS(1622), 1, + ACTIONS(8371), 1, sym__entry_separator, - STATE(1470), 1, - aux_sym__types_body_repeat2, - STATE(4659), 1, - sym_comment, - [130480] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1966), 1, - anon_sym_POUND_BANG, - ACTIONS(8280), 1, - sym__newline, - STATE(4660), 2, - aux_sym__repeat_newline, - sym_comment, - [130494] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8283), 1, - anon_sym_LBRACK, - STATE(4918), 1, - sym_val_list, - STATE(4661), 2, - sym_comment, - aux_sym__table_body_repeat1, - [130508] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4052), 1, - anon_sym_AT2, - ACTIONS(8286), 1, - anon_sym_GT2, - STATE(4662), 1, - sym_comment, - STATE(5347), 1, - sym_param_completer, - [130524] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4663), 1, + STATE(4765), 1, sym_comment, - ACTIONS(7951), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [130536] = 3, + ACTIONS(8491), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [133090] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4664), 1, + STATE(4766), 1, sym_comment, - ACTIONS(7939), 3, + ACTIONS(8326), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [130548] = 3, + [133102] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4665), 1, + STATE(4767), 1, sym_comment, - ACTIONS(8013), 3, + ACTIONS(8326), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [130560] = 5, + [133114] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8288), 1, - anon_sym_export, - ACTIONS(8290), 1, - anon_sym_def, - ACTIONS(8292), 1, - anon_sym_extern, - STATE(4666), 1, + ACTIONS(5172), 1, + anon_sym_LPAREN2, + ACTIONS(7007), 1, + sym__unquoted_pattern_in_record, + STATE(4768), 1, sym_comment, - [130576] = 3, + STATE(5050), 1, + sym__expr_parenthesized_immediate, + [133130] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4667), 1, + STATE(4769), 1, sym_comment, - ACTIONS(7939), 3, + ACTIONS(8332), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [130588] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7648), 1, - anon_sym_if, - ACTIONS(8294), 1, - anon_sym_EQ_GT, - STATE(4668), 1, - sym_comment, - STATE(5168), 1, - sym_match_guard, - [130604] = 3, + [133142] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4669), 1, + STATE(4770), 1, sym_comment, - ACTIONS(8296), 3, + ACTIONS(8365), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [130616] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7542), 1, - anon_sym_RBRACK, - ACTIONS(7544), 1, - anon_sym_DOT_DOT, - ACTIONS(7550), 1, - sym__entry_separator, - STATE(4670), 1, - sym_comment, - [130632] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7552), 1, - anon_sym_RBRACK, - ACTIONS(7555), 1, - anon_sym_DOT_DOT, - ACTIONS(7557), 1, - sym__entry_separator, - STATE(4671), 1, - sym_comment, - [130648] = 3, + [133154] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4672), 1, + STATE(4771), 1, sym_comment, - ACTIONS(7941), 3, + ACTIONS(8365), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [130660] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8298), 1, - anon_sym_GT2, - STATE(4673), 1, - sym_comment, - ACTIONS(8300), 2, - anon_sym_AT2, - sym__entry_separator, - [130674] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8151), 1, - sym_hex_digit, - ACTIONS(8302), 1, - anon_sym_RBRACK, - STATE(4674), 1, - sym_comment, - STATE(4684), 1, - aux_sym_val_binary_repeat1, - [130690] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2555), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3808), 1, - anon_sym_LBRACE, - STATE(4310), 1, - sym_block, - STATE(4675), 1, - sym_comment, - [130706] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2581), 1, - sym__entry_separator, - STATE(4676), 1, - sym_comment, - ACTIONS(2583), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [130720] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2593), 1, - sym__entry_separator, - STATE(4677), 1, - sym_comment, - ACTIONS(2595), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [130734] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1622), 1, - sym__entry_separator, - ACTIONS(7899), 1, - anon_sym_RBRACE, - STATE(1482), 1, - aux_sym__types_body_repeat2, - STATE(4678), 1, - sym_comment, - [130750] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4780), 1, - sym__entry_separator, - ACTIONS(4786), 1, - anon_sym_RBRACE, - STATE(2255), 1, - aux_sym__types_body_repeat2, - STATE(4679), 1, - sym_comment, - [130766] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2276), 1, - sym__entry_separator, - STATE(4680), 1, - sym_comment, - ACTIONS(2278), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [130780] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4328), 1, - sym__entry_separator, - ACTIONS(8304), 1, - anon_sym_GT2, - STATE(1947), 1, - aux_sym__types_body_repeat2, - STATE(4681), 1, - sym_comment, - [130796] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4780), 1, - sym__entry_separator, - ACTIONS(8306), 1, - anon_sym_RBRACE, - STATE(2257), 1, - aux_sym__types_body_repeat2, - STATE(4682), 1, - sym_comment, - [130812] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2276), 1, - sym__entry_separator, - STATE(4683), 1, - sym_comment, - ACTIONS(2278), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [130826] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8151), 1, - sym_hex_digit, - ACTIONS(8308), 1, - anon_sym_RBRACK, - STATE(4684), 1, - sym_comment, - STATE(4766), 1, - aux_sym_val_binary_repeat1, - [130842] = 5, + [133166] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1724), 1, - anon_sym_LPAREN2, - ACTIONS(5071), 1, - sym__unquoted_pattern, - STATE(4685), 1, + STATE(4772), 1, sym_comment, - STATE(4929), 1, - sym__expr_parenthesized_immediate, - [130858] = 5, + ACTIONS(8276), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [133178] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4052), 1, - anon_sym_AT2, - ACTIONS(5778), 1, - anon_sym_EQ, - STATE(3195), 1, - sym_param_completer, - STATE(4686), 1, - sym_comment, - [130874] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1622), 1, - sym__entry_separator, - ACTIONS(8310), 1, - anon_sym_RBRACE, - STATE(1473), 1, - aux_sym__types_body_repeat2, - STATE(4687), 1, + STATE(4773), 1, sym_comment, - [130890] = 5, + ACTIONS(8332), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [133190] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4052), 1, - anon_sym_AT2, - ACTIONS(8312), 1, - anon_sym_GT2, - STATE(4688), 1, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(8493), 1, + anon_sym_COLON, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(4774), 1, sym_comment, - STATE(5351), 1, - sym_param_completer, - [130906] = 3, + [133206] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4689), 1, + STATE(4775), 1, sym_comment, - ACTIONS(7927), 3, + ACTIONS(8210), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [130918] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4052), 1, - anon_sym_AT2, - ACTIONS(8314), 1, - anon_sym_GT2, - STATE(4690), 1, - sym_comment, - STATE(5089), 1, - sym_param_completer, - [130934] = 3, + [133218] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4691), 1, + STATE(4776), 1, sym_comment, - ACTIONS(7929), 3, + ACTIONS(8244), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [130946] = 4, + [133230] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6100), 1, + ACTIONS(8371), 1, sym__entry_separator, - STATE(4692), 1, + STATE(4777), 1, sym_comment, - ACTIONS(6098), 2, + ACTIONS(8491), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - [130960] = 5, - ACTIONS(3), 1, + anon_sym_DOT_DOT, + [133244] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6479), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6670), 1, - anon_sym_LPAREN2, - STATE(4693), 1, + ACTIONS(4483), 1, + sym__entry_separator, + ACTIONS(8495), 1, + anon_sym_RBRACK, + STATE(2028), 1, + aux_sym__types_body_repeat2, + STATE(4778), 1, sym_comment, - STATE(4803), 1, - sym__expr_parenthesized_immediate, - [130976] = 5, + [133260] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4328), 1, + ACTIONS(8385), 1, sym__entry_separator, - ACTIONS(8316), 1, + STATE(4779), 1, + sym_comment, + ACTIONS(8497), 2, anon_sym_RBRACK, - STATE(4231), 1, - aux_sym__types_body_repeat2, - STATE(4694), 1, + anon_sym_DOT_DOT, + [133274] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4780), 1, sym_comment, - [130992] = 5, + ACTIONS(8278), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [133286] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1622), 1, + ACTIONS(4343), 1, sym__entry_separator, - ACTIONS(8318), 1, - anon_sym_RBRACE, - STATE(1485), 1, + ACTIONS(8499), 1, + anon_sym_RBRACK, + STATE(2001), 1, aux_sym__types_body_repeat2, - STATE(4695), 1, + STATE(4781), 1, sym_comment, - [131008] = 3, + [133302] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4696), 1, + STATE(4782), 1, sym_comment, - ACTIONS(7888), 3, + ACTIONS(8359), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [131020] = 5, + [133314] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8320), 1, - anon_sym_RBRACK, - ACTIONS(8322), 1, - anon_sym_DOT_DOT, - STATE(4697), 1, + STATE(4783), 1, sym_comment, - STATE(5110), 1, - sym__match_pattern_rest, - [131036] = 3, + ACTIONS(8280), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [133326] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4698), 1, + STATE(4784), 1, sym_comment, - ACTIONS(7888), 3, + ACTIONS(8282), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [131048] = 3, + [133338] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4699), 1, + ACTIONS(3086), 1, + anon_sym_RPAREN, + STATE(4785), 1, sym_comment, - ACTIONS(7941), 3, - ts_builtin_sym_end, + ACTIONS(2766), 2, sym__newline, anon_sym_SEMI, - [131060] = 3, + [133352] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5079), 1, + sym__entry_separator, + ACTIONS(8501), 1, + anon_sym_GT2, + STATE(2414), 1, + aux_sym__types_body_repeat2, + STATE(4786), 1, + sym_comment, + [133368] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5079), 1, + sym__entry_separator, + ACTIONS(8503), 1, + anon_sym_GT2, + STATE(2415), 1, + aux_sym__types_body_repeat2, + STATE(4787), 1, + sym_comment, + [133384] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4370), 1, + sym__entry_separator, + ACTIONS(8505), 1, + anon_sym_RBRACK, + STATE(2004), 1, + aux_sym__types_body_repeat2, + STATE(4788), 1, + sym_comment, + [133400] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2822), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3906), 1, + anon_sym_LBRACE, + STATE(4710), 1, + sym_block, + STATE(4789), 1, + sym_comment, + [133416] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4700), 1, + STATE(4790), 1, sym_comment, - ACTIONS(7890), 3, + ACTIONS(8284), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [131072] = 5, + [133428] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1622), 1, + ACTIONS(4370), 1, sym__entry_separator, - ACTIONS(7955), 1, - anon_sym_RBRACE, - STATE(1487), 1, + ACTIONS(8507), 1, + anon_sym_RBRACK, + STATE(1997), 1, aux_sym__types_body_repeat2, - STATE(4701), 1, + STATE(4791), 1, sym_comment, - [131088] = 4, + [133444] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1878), 1, + ACTIONS(1915), 1, sym__entry_separator, - STATE(4702), 1, + STATE(4792), 1, sym_comment, - ACTIONS(1880), 2, + ACTIONS(1917), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - [131102] = 3, + [133458] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4370), 1, + sym__entry_separator, + ACTIONS(8509), 1, + anon_sym_RBRACK, + STATE(2005), 1, + aux_sym__types_body_repeat2, + STATE(4793), 1, + sym_comment, + [133474] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3452), 1, + sym__newline, + ACTIONS(3454), 1, + sym__space, + STATE(1400), 1, + aux_sym_pipe_element_parenthesized_repeat1, + STATE(4794), 1, + sym_comment, + [133490] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4703), 1, + STATE(4795), 1, sym_comment, - ACTIONS(8090), 3, + ACTIONS(8306), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [131114] = 3, + [133502] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4704), 1, + STATE(4796), 1, sym_comment, - ACTIONS(7985), 3, + ACTIONS(8312), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [131126] = 3, + [133514] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8228), 1, + sym__entry_separator, + ACTIONS(8511), 1, + anon_sym_AT2, + STATE(4797), 1, + sym_comment, + STATE(5012), 1, + sym_param_completer, + [133530] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4705), 1, + STATE(4798), 1, sym_comment, - ACTIONS(7985), 3, + ACTIONS(8312), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [131138] = 5, + [133542] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4328), 1, - sym__entry_separator, - ACTIONS(8324), 1, - anon_sym_RBRACK, - STATE(4361), 1, - aux_sym__types_body_repeat2, - STATE(4706), 1, + ACTIONS(2822), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3906), 1, + anon_sym_LBRACE, + STATE(4709), 1, + sym_block, + STATE(4799), 1, sym_comment, - [131154] = 5, + [133558] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4052), 1, - anon_sym_AT2, - ACTIONS(5772), 1, - anon_sym_EQ, - STATE(3107), 1, - sym_param_completer, - STATE(4707), 1, + STATE(4800), 1, sym_comment, - [131170] = 5, + ACTIONS(8513), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [133570] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8151), 1, - sym_hex_digit, - ACTIONS(8326), 1, + STATE(4801), 1, + sym_comment, + ACTIONS(8246), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [133582] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4802), 1, + sym_comment, + ACTIONS(8306), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [133594] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8515), 1, anon_sym_RBRACK, - STATE(4708), 1, + ACTIONS(8517), 1, + anon_sym_DOT_DOT, + STATE(4803), 1, sym_comment, - STATE(4766), 1, - aux_sym_val_binary_repeat1, - [131186] = 3, + STATE(5221), 1, + sym__match_pattern_rest, + [133610] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4709), 1, + STATE(4804), 1, sym_comment, - ACTIONS(7941), 3, + ACTIONS(8359), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [131198] = 5, + [133622] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1622), 1, + ACTIONS(8377), 1, sym__entry_separator, - ACTIONS(7961), 1, - anon_sym_RBRACE, - STATE(1476), 1, - aux_sym__types_body_repeat2, - STATE(4710), 1, + STATE(4805), 1, sym_comment, - [131214] = 3, - ACTIONS(3), 1, + ACTIONS(8519), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [133636] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4711), 1, + ACTIONS(8521), 1, + anon_sym_DQUOTE, + STATE(4806), 1, sym_comment, - ACTIONS(4718), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [131226] = 3, + ACTIONS(8523), 2, + sym__escaped_str_content, + sym_escape_sequence, + [133650] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4712), 1, + STATE(1377), 1, + aux_sym__block_body_repeat1, + STATE(4807), 1, sym_comment, - ACTIONS(4722), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [131238] = 3, + ACTIONS(153), 2, + sym__newline, + anon_sym_SEMI, + [133664] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4713), 1, + STATE(4808), 1, sym_comment, - ACTIONS(7890), 3, + ACTIONS(8359), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [131250] = 3, + [133676] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5079), 1, + sym__entry_separator, + ACTIONS(8525), 1, + anon_sym_GT2, + STATE(2412), 1, + aux_sym__types_body_repeat2, + STATE(4809), 1, + sym_comment, + [133692] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4714), 1, + STATE(4810), 1, sym_comment, - ACTIONS(7951), 3, + ACTIONS(8361), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [131262] = 3, + [133704] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4715), 1, + STATE(4811), 1, sym_comment, - ACTIONS(7892), 3, + ACTIONS(8361), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [131274] = 3, + [133716] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4716), 1, + ACTIONS(7900), 1, + anon_sym_if, + ACTIONS(8527), 1, + anon_sym_EQ_GT, + STATE(4812), 1, sym_comment, - ACTIONS(4732), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [131286] = 5, - ACTIONS(3), 1, + STATE(5227), 1, + sym_match_guard, + [133732] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8151), 1, - sym_hex_digit, - ACTIONS(8328), 1, - anon_sym_RBRACK, - STATE(4717), 1, + ACTIONS(4343), 1, + sym__entry_separator, + ACTIONS(8529), 1, + anon_sym_GT2, + STATE(1958), 1, + aux_sym__types_body_repeat2, + STATE(4813), 1, sym_comment, - STATE(4722), 1, - aux_sym_val_binary_repeat1, - [131302] = 4, + [133748] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7874), 1, + ACTIONS(1623), 1, sym__entry_separator, - STATE(4718), 1, + ACTIONS(8108), 1, + anon_sym_RBRACE, + STATE(1471), 1, + aux_sym__types_body_repeat2, + STATE(4814), 1, sym_comment, - ACTIONS(8330), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [131316] = 3, + [133764] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4343), 1, + sym__entry_separator, + ACTIONS(8531), 1, + anon_sym_GT2, + STATE(1959), 1, + aux_sym__types_body_repeat2, + STATE(4815), 1, + sym_comment, + [133780] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1623), 1, + sym__entry_separator, + ACTIONS(8533), 1, + anon_sym_RBRACE, + STATE(1473), 1, + aux_sym__types_body_repeat2, + STATE(4816), 1, + sym_comment, + [133796] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4719), 1, + STATE(4817), 1, sym_comment, - ACTIONS(7892), 3, + ACTIONS(8363), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [131328] = 4, + [133808] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7874), 1, + ACTIONS(4343), 1, sym__entry_separator, - STATE(4720), 1, - sym_comment, - ACTIONS(8330), 2, + ACTIONS(8535), 1, anon_sym_RBRACK, - anon_sym_DOT_DOT, - [131342] = 4, + STATE(1960), 1, + aux_sym__types_body_repeat2, + STATE(4818), 1, + sym_comment, + [133824] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7894), 1, + ACTIONS(8114), 1, sym__entry_separator, - STATE(4721), 1, + STATE(4819), 1, sym_comment, - ACTIONS(8332), 2, + ACTIONS(7374), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - [131356] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8151), 1, - sym_hex_digit, - ACTIONS(8334), 1, - anon_sym_RBRACK, - STATE(4722), 1, - sym_comment, - STATE(4766), 1, - aux_sym_val_binary_repeat1, - [131372] = 5, + [133838] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2829), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3786), 1, - anon_sym_LBRACE, - STATE(4597), 1, - sym_block, - STATE(4723), 1, + ACTIONS(1623), 1, + sym__entry_separator, + ACTIONS(8537), 1, + anon_sym_RBRACE, + STATE(1478), 1, + aux_sym__types_body_repeat2, + STATE(4820), 1, sym_comment, - [131388] = 3, + [133854] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4724), 1, - sym_comment, - ACTIONS(7969), 3, + ACTIONS(2922), 1, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [131400] = 3, + ACTIONS(8539), 1, + anon_sym_COLON, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(4821), 1, + sym_comment, + [133870] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4725), 1, + STATE(4822), 1, sym_comment, - ACTIONS(7951), 3, + ACTIONS(8363), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [131412] = 3, - ACTIONS(3), 1, + [133882] = 5, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4726), 1, + ACTIONS(4343), 1, + sym__entry_separator, + ACTIONS(8541), 1, + anon_sym_RBRACK, + STATE(4550), 1, + aux_sym__types_body_repeat2, + STATE(4823), 1, sym_comment, - ACTIONS(7973), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [131424] = 5, + [133898] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4328), 1, + ACTIONS(4483), 1, sym__entry_separator, - ACTIONS(8336), 1, + ACTIONS(8543), 1, anon_sym_RBRACK, - STATE(4473), 1, + STATE(2029), 1, aux_sym__types_body_repeat2, - STATE(4727), 1, + STATE(4824), 1, sym_comment, - [131440] = 3, + [133914] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4728), 1, + STATE(4825), 1, + sym_comment, + ACTIONS(8545), 3, + sym__newline, + anon_sym_LBRACK, + anon_sym_RBRACK, + [133926] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4826), 1, sym_comment, - ACTIONS(8092), 3, + ACTIONS(8324), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [131452] = 5, + [133938] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4778), 1, - anon_sym_RBRACE, ACTIONS(4780), 1, sym__entry_separator, - STATE(2256), 1, + ACTIONS(4800), 1, + anon_sym_RBRACE, + STATE(2254), 1, aux_sym__types_body_repeat2, - STATE(4729), 1, + STATE(4827), 1, sym_comment, - [131468] = 5, + [133954] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3470), 1, - sym__newline, - ACTIONS(3472), 1, - sym__space, - STATE(1406), 1, - aux_sym_pipe_element_parenthesized_repeat1, - STATE(4730), 1, + ACTIONS(4780), 1, + sym__entry_separator, + ACTIONS(8547), 1, + anon_sym_RBRACE, + STATE(2260), 1, + aux_sym__types_body_repeat2, + STATE(4828), 1, sym_comment, - [131484] = 4, - ACTIONS(103), 1, + [133970] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2282), 1, - sym__entry_separator, - STATE(4731), 1, + STATE(4829), 1, sym_comment, - ACTIONS(2284), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [131498] = 3, + ACTIONS(8324), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [133982] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4732), 1, + STATE(4830), 1, sym_comment, - ACTIONS(8338), 3, + ACTIONS(8549), 3, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, - [131510] = 3, + [133994] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4733), 1, + ACTIONS(1732), 1, + sym__unquoted_pattern_in_record, + ACTIONS(8551), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8553), 1, + aux_sym__immediate_decimal_token5, + STATE(4831), 1, + sym_comment, + [134010] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4832), 1, sym_comment, - ACTIONS(8340), 3, + ACTIONS(8288), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [131522] = 5, + [134022] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8342), 1, - anon_sym_export, - ACTIONS(8344), 1, - anon_sym_def, - ACTIONS(8346), 1, - anon_sym_extern, - STATE(4734), 1, + STATE(4833), 1, sym_comment, - [131538] = 4, - ACTIONS(103), 1, + ACTIONS(4631), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [134034] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2286), 1, - sym__entry_separator, - STATE(4735), 1, + ACTIONS(4096), 1, + anon_sym_AT2, + ACTIONS(5774), 1, + anon_sym_EQ, + STATE(3147), 1, + sym_param_completer, + STATE(4834), 1, sym_comment, - ACTIONS(2288), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [131552] = 4, + [134050] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7363), 1, + ACTIONS(5298), 1, sym__entry_separator, - STATE(4736), 1, + STATE(4835), 1, sym_comment, - ACTIONS(7544), 2, + ACTIONS(5885), 2, anon_sym_RBRACK, - anon_sym_DOT_DOT, - [131566] = 4, + anon_sym_GT2, + [134064] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8116), 1, - sym__entry_separator, - STATE(4737), 1, + ACTIONS(8555), 1, + anon_sym_LPAREN, + STATE(4836), 1, sym_comment, - ACTIONS(8348), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [131580] = 5, + ACTIONS(8557), 2, + anon_sym_SQUOTE2, + sym_unescaped_interpolated_content, + [134078] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2829), 1, + ACTIONS(2594), 1, aux_sym_cmd_identifier_token2, - ACTIONS(3786), 1, + ACTIONS(3898), 1, anon_sym_LBRACE, - STATE(4577), 1, + STATE(4403), 1, sym_block, - STATE(4738), 1, + STATE(4837), 1, sym_comment, - [131596] = 3, + [134094] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4739), 1, + ACTIONS(8401), 1, + sym_hex_digit, + ACTIONS(8559), 1, + anon_sym_RBRACK, + STATE(4838), 1, + sym_comment, + STATE(4876), 1, + aux_sym_val_binary_repeat1, + [134110] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3771), 1, + anon_sym_LBRACK, + STATE(4751), 1, + sym_val_list, + STATE(4839), 1, + sym_comment, + STATE(4868), 1, + aux_sym__table_body_repeat1, + [134126] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4840), 1, sym_comment, - ACTIONS(7973), 3, + ACTIONS(8234), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [131608] = 5, + [134138] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1622), 1, + ACTIONS(1623), 1, sym__entry_separator, - ACTIONS(8350), 1, + ACTIONS(8561), 1, anon_sym_RBRACE, - STATE(1492), 1, + STATE(1465), 1, aux_sym__types_body_repeat2, - STATE(4740), 1, + STATE(4841), 1, sym_comment, - [131624] = 3, + [134154] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(4741), 1, - sym_comment, - ACTIONS(2622), 3, - anon_sym_RBRACK, + ACTIONS(4343), 1, sym__entry_separator, + ACTIONS(8564), 1, + anon_sym_RBRACK, + STATE(4578), 1, + aux_sym__types_body_repeat2, + STATE(4842), 1, + sym_comment, + [134170] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8489), 1, + anon_sym_QMARK2, + STATE(4843), 1, + sym_comment, + ACTIONS(1462), 2, sym__table_head_separator, - [131636] = 4, + anon_sym_DOT2, + [134184] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1818), 1, + anon_sym_LPAREN2, + ACTIONS(1840), 1, + sym__unquoted_pattern, + STATE(4844), 1, + sym_comment, + STATE(4972), 1, + sym__expr_parenthesized_immediate, + [134200] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4845), 1, + sym_comment, + ACTIONS(8566), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [134212] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7268), 1, + ACTIONS(2477), 1, sym__entry_separator, - STATE(4742), 1, + STATE(4846), 1, sym_comment, - ACTIONS(7555), 2, + ACTIONS(2479), 2, anon_sym_RBRACK, - anon_sym_DOT_DOT, - [131650] = 4, + anon_sym_RBRACE, + [134226] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1892), 1, + ACTIONS(2477), 1, sym__entry_separator, - STATE(4743), 1, + STATE(4847), 1, sym_comment, - ACTIONS(1894), 2, + ACTIONS(2479), 2, anon_sym_RBRACK, - anon_sym_DOT_DOT, - [131664] = 5, + anon_sym_RBRACE, + [134240] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1724), 1, - anon_sym_LPAREN2, - ACTIONS(1820), 1, - sym__unquoted_pattern, - STATE(4744), 1, + STATE(4848), 1, sym_comment, - STATE(4881), 1, - sym__expr_parenthesized_immediate, - [131680] = 3, + ACTIONS(8212), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [134252] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4745), 1, + STATE(4849), 1, sym_comment, - ACTIONS(7977), 3, + ACTIONS(8292), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [131692] = 3, + [134264] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4746), 1, + STATE(4850), 1, sym_comment, - ACTIONS(7977), 3, - ts_builtin_sym_end, + ACTIONS(3086), 3, sym__newline, anon_sym_SEMI, - [131704] = 3, + anon_sym_RPAREN, + [134276] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4747), 1, + STATE(4851), 1, sym_comment, - ACTIONS(2142), 3, + ACTIONS(2326), 3, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - [131716] = 3, + [134288] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8568), 1, + anon_sym_POUND_BANG, + ACTIONS(8570), 1, + sym__newline, + STATE(4732), 1, + aux_sym__repeat_newline, + STATE(4852), 1, + sym_comment, + [134304] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1903), 1, + sym__entry_separator, + STATE(4853), 1, + sym_comment, + ACTIONS(1905), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [134318] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4748), 1, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(8572), 1, + anon_sym_COLON, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(4854), 1, + sym_comment, + [134334] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4855), 1, sym_comment, - ACTIONS(8353), 3, + ACTIONS(8290), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [131728] = 5, + [134346] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4328), 1, + ACTIONS(5079), 1, sym__entry_separator, - ACTIONS(7870), 1, - anon_sym_LBRACK, - STATE(1881), 1, + ACTIONS(8574), 1, + anon_sym_GT2, + STATE(2413), 1, aux_sym__types_body_repeat2, - STATE(4749), 1, + STATE(4856), 1, sym_comment, - [131744] = 3, + [134362] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4750), 1, + STATE(4857), 1, sym_comment, - ACTIONS(8355), 3, + ACTIONS(8576), 3, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, - [131756] = 3, + [134374] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5257), 1, + sym__entry_separator, + STATE(4858), 1, + sym_comment, + ACTIONS(5912), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [134388] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4751), 1, + STATE(4859), 1, sym_comment, - ACTIONS(8357), 3, + ACTIONS(8578), 3, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, - [131768] = 5, + [134400] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5036), 1, + ACTIONS(5300), 1, sym__entry_separator, - ACTIONS(8359), 1, + STATE(4860), 1, + sym_comment, + ACTIONS(5887), 2, + anon_sym_RBRACK, anon_sym_GT2, - STATE(2418), 1, - aux_sym__types_body_repeat2, - STATE(4752), 1, + [134414] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8582), 1, + anon_sym_COMMA, + STATE(4861), 1, sym_comment, - [131784] = 4, + ACTIONS(8580), 2, + anon_sym_RBRACK, + sym_hex_digit, + [134428] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2664), 1, + ACTIONS(1699), 1, sym__entry_separator, - STATE(4753), 1, + STATE(4862), 1, sym_comment, - ACTIONS(2666), 2, + ACTIONS(1615), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [131798] = 5, - ACTIONS(3), 1, + [134442] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8151), 1, - sym_hex_digit, - ACTIONS(8361), 1, - anon_sym_RBRACK, - STATE(4754), 1, + ACTIONS(2594), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3898), 1, + anon_sym_LBRACE, + STATE(2963), 1, + sym_block, + STATE(4863), 1, sym_comment, - STATE(4762), 1, - aux_sym_val_binary_repeat1, - [131814] = 4, + [134458] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8274), 1, - anon_sym_BANG, - STATE(4755), 1, - sym_comment, - ACTIONS(1450), 2, - sym__table_head_separator, - anon_sym_DOT2, - [131828] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5036), 1, - sym__entry_separator, - ACTIONS(8363), 1, - anon_sym_GT2, - STATE(2400), 1, - aux_sym__types_body_repeat2, - STATE(4756), 1, + STATE(4864), 1, sym_comment, - [131844] = 4, + ACTIONS(8584), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [134470] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3148), 1, - anon_sym_RPAREN, - STATE(4757), 1, + STATE(4865), 1, sym_comment, - ACTIONS(2952), 2, + ACTIONS(8586), 3, sym__newline, anon_sym_SEMI, - [131858] = 4, + anon_sym_RPAREN, + [134482] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8401), 1, + sym_hex_digit, + ACTIONS(8588), 1, + anon_sym_RBRACK, + STATE(4866), 1, + sym_comment, + STATE(4885), 1, + aux_sym_val_binary_repeat1, + [134498] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2573), 1, + ACTIONS(1623), 1, sym__entry_separator, - STATE(4758), 1, - sym_comment, - ACTIONS(2575), 2, - anon_sym_RBRACK, + ACTIONS(8387), 1, anon_sym_RBRACE, - [131872] = 5, + STATE(1467), 1, + aux_sym__types_body_repeat2, + STATE(4867), 1, + sym_comment, + [134514] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1746), 1, - sym__unquoted_pattern_in_record, - ACTIONS(8365), 1, - anon_sym_DOT, - ACTIONS(8367), 1, - aux_sym__immediate_decimal_token5, - STATE(4759), 1, + ACTIONS(8590), 1, + anon_sym_LBRACK, + STATE(5007), 1, + sym_val_list, + STATE(4868), 2, sym_comment, - [131888] = 5, + aux_sym__table_body_repeat1, + [134528] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(866), 1, + ACTIONS(7660), 1, + anon_sym_DOT_DOT, + ACTIONS(7719), 1, anon_sym_RBRACK, - ACTIONS(886), 1, + ACTIONS(7721), 1, sym__entry_separator, - ACTIONS(6479), 1, - sym__unquoted_pattern_in_list, - STATE(4760), 1, + STATE(4869), 1, sym_comment, - [131904] = 3, - ACTIONS(3), 1, + [134544] = 5, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4761), 1, + ACTIONS(7666), 1, + anon_sym_DOT_DOT, + ACTIONS(7723), 1, + anon_sym_RBRACK, + ACTIONS(7726), 1, + sym__entry_separator, + STATE(4870), 1, sym_comment, - ACTIONS(7941), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [131916] = 5, + [134560] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8151), 1, - sym_hex_digit, - ACTIONS(8369), 1, - anon_sym_RBRACK, - STATE(4762), 1, + STATE(4871), 1, sym_comment, - STATE(4766), 1, - aux_sym_val_binary_repeat1, - [131932] = 3, + ACTIONS(8131), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [134572] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4763), 1, + STATE(4872), 1, sym_comment, - ACTIONS(8094), 3, + ACTIONS(8096), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [131944] = 5, + [134584] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1623), 1, + sym__entry_separator, + ACTIONS(1625), 1, + anon_sym_COLON2, + STATE(1498), 1, + aux_sym__types_body_repeat2, + STATE(4873), 1, + sym_comment, + [134600] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2907), 1, - sym__newline, - ACTIONS(8371), 1, - anon_sym_COLON, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(4764), 1, + ACTIONS(8593), 1, + anon_sym_export, + ACTIONS(8595), 1, + anon_sym_def, + ACTIONS(8597), 1, + anon_sym_extern, + STATE(4874), 1, sym_comment, - [131960] = 4, - ACTIONS(103), 1, + [134616] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2608), 1, - sym__entry_separator, - STATE(4765), 1, + STATE(4875), 1, sym_comment, - ACTIONS(2610), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [131974] = 4, + ACTIONS(8599), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [134628] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8373), 1, + ACTIONS(8601), 1, anon_sym_RBRACK, - ACTIONS(8375), 1, + ACTIONS(8603), 1, sym_hex_digit, - STATE(4766), 2, + STATE(4876), 2, sym_comment, aux_sym_val_binary_repeat1, - [131988] = 4, + [134642] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8001), 1, + ACTIONS(8203), 1, anon_sym_LPAREN, - STATE(4767), 1, + STATE(4877), 1, sym_comment, - ACTIONS(8003), 2, + ACTIONS(8205), 2, anon_sym_SQUOTE2, sym_unescaped_interpolated_content, - [132002] = 3, + [134656] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4768), 1, + STATE(4878), 1, sym_comment, - ACTIONS(8096), 3, + ACTIONS(8296), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [132014] = 5, + [134668] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3946), 1, - anon_sym_LBRACK, - STATE(4661), 1, - aux_sym__table_body_repeat1, - STATE(4727), 1, - sym_val_list, - STATE(4769), 1, - sym_comment, - [132030] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5416), 1, - sym__entry_separator, - STATE(4770), 1, - sym_comment, - ACTIONS(5414), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [132044] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8378), 1, - sym__table_head_separator, - STATE(4771), 1, + STATE(4879), 1, sym_comment, - ACTIONS(1614), 2, - anon_sym_RBRACK, - sym__entry_separator, - [132058] = 3, + ACTIONS(8296), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [134680] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4772), 1, + STATE(4880), 1, sym_comment, - ACTIONS(7921), 3, + ACTIONS(8357), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [132070] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7911), 1, - sym__entry_separator, - ACTIONS(8380), 1, - anon_sym_COLON, - STATE(4773), 1, - sym_comment, - STATE(4922), 1, - sym__collection_annotation, - [132086] = 3, + [134692] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4774), 1, + STATE(4881), 1, sym_comment, - ACTIONS(7937), 3, + ACTIONS(8395), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [132098] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6181), 1, - sym__entry_separator, - STATE(4775), 1, - sym_comment, - ACTIONS(6179), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [132112] = 5, + [134704] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2907), 1, - sym__newline, - ACTIONS(8382), 1, - anon_sym_COLON, - STATE(527), 1, - aux_sym__repeat_newline, - STATE(4776), 1, + STATE(4882), 1, sym_comment, - [132128] = 5, + ACTIONS(8606), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [134716] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4456), 1, - sym__entry_separator, - ACTIONS(8384), 1, - anon_sym_RBRACK, - STATE(2017), 1, - aux_sym__types_body_repeat2, - STATE(4777), 1, + ACTIONS(2822), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3906), 1, + anon_sym_LBRACE, + STATE(3103), 1, + sym_block, + STATE(4883), 1, sym_comment, - [132144] = 3, + [134732] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4778), 1, + STATE(4884), 1, sym_comment, - ACTIONS(7983), 3, + ACTIONS(8098), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [132156] = 4, + [134744] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1983), 1, - sym__unquoted_pattern, - ACTIONS(2597), 1, - anon_sym_LBRACE, - STATE(4779), 1, - sym_comment, - [132169] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8386), 1, - anon_sym_RBRACE, - ACTIONS(8388), 1, - sym__entry_separator, - STATE(4780), 1, + ACTIONS(8401), 1, + sym_hex_digit, + ACTIONS(8608), 1, + anon_sym_RBRACK, + STATE(4876), 1, + aux_sym_val_binary_repeat1, + STATE(4885), 1, sym_comment, - [132182] = 4, - ACTIONS(103), 1, + [134760] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8390), 1, + ACTIONS(1818), 1, anon_sym_LPAREN2, - ACTIONS(8392), 1, - aux_sym__record_key_token1, - STATE(4781), 1, - sym_comment, - [132195] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7714), 1, - anon_sym_RBRACE, - ACTIONS(7716), 1, - sym__entry_separator, - STATE(4782), 1, + ACTIONS(5061), 1, + sym__unquoted_pattern, + STATE(4886), 1, sym_comment, - [132208] = 4, - ACTIONS(103), 1, + STATE(5056), 1, + sym__expr_parenthesized_immediate, + [134776] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8394), 1, - anon_sym_RBRACE, - ACTIONS(8396), 1, - sym__entry_separator, - STATE(4783), 1, + ACTIONS(4096), 1, + anon_sym_AT2, + ACTIONS(8610), 1, + anon_sym_GT2, + STATE(4887), 1, sym_comment, - [132221] = 4, - ACTIONS(103), 1, + STATE(5177), 1, + sym_param_completer, + [134792] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7720), 1, - anon_sym_RBRACE, - ACTIONS(7722), 1, - sym__entry_separator, - STATE(4784), 1, + STATE(4888), 1, sym_comment, - [132234] = 4, + ACTIONS(8176), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [134804] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8398), 1, - anon_sym_RBRACE, - ACTIONS(8400), 1, + ACTIONS(4343), 1, sym__entry_separator, - STATE(4785), 1, + ACTIONS(8612), 1, + anon_sym_RBRACK, + STATE(1991), 1, + aux_sym__types_body_repeat2, + STATE(4889), 1, sym_comment, - [132247] = 4, - ACTIONS(103), 1, + [134820] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3516), 1, - sym__space, - STATE(1417), 1, - aux_sym_pipe_element_repeat1, - STATE(4786), 1, + ACTIONS(8401), 1, + sym_hex_digit, + ACTIONS(8614), 1, + anon_sym_RBRACK, + STATE(4876), 1, + aux_sym_val_binary_repeat1, + STATE(4890), 1, sym_comment, - [132260] = 4, - ACTIONS(103), 1, + [134836] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8402), 1, - sym__newline, - ACTIONS(8404), 1, - sym__space, - STATE(4787), 1, + ACTIONS(4096), 1, + anon_sym_AT2, + ACTIONS(8616), 1, + anon_sym_GT2, + STATE(4891), 1, sym_comment, - [132273] = 4, + STATE(5476), 1, + sym_param_completer, + [134852] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7808), 1, - anon_sym_RBRACE, - ACTIONS(7810), 1, + ACTIONS(1623), 1, sym__entry_separator, - STATE(4788), 1, + ACTIONS(8618), 1, + anon_sym_RBRACE, + STATE(1463), 1, + aux_sym__types_body_repeat2, + STATE(4892), 1, sym_comment, - [132286] = 4, + [134868] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4780), 1, + ACTIONS(4483), 1, sym__entry_separator, - STATE(2264), 1, + ACTIONS(8620), 1, + anon_sym_RBRACK, + STATE(2153), 1, aux_sym__types_body_repeat2, - STATE(4789), 1, + STATE(4893), 1, sym_comment, - [132299] = 4, + [134884] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2589), 1, - anon_sym_LBRACE, - ACTIONS(2646), 1, - sym__unquoted_pattern, - STATE(4790), 1, + STATE(4894), 1, sym_comment, - [132312] = 4, + ACTIONS(8622), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [134896] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6670), 1, - anon_sym_LPAREN2, - STATE(4791), 1, + STATE(4895), 1, sym_comment, - STATE(5208), 1, - sym__expr_parenthesized_immediate, - [132325] = 4, - ACTIONS(3), 1, + ACTIONS(8326), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [134908] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8406), 1, - anon_sym_DASH2, - STATE(4792), 1, + ACTIONS(5223), 1, + sym__entry_separator, + STATE(4896), 1, sym_comment, - STATE(5142), 1, - sym_param_short_flag, - [132338] = 4, + ACTIONS(5820), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [134922] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4806), 1, + ACTIONS(5344), 1, sym__entry_separator, - STATE(2283), 1, - aux_sym__types_body_repeat2, - STATE(4793), 1, + STATE(4897), 1, sym_comment, - [132351] = 4, + ACTIONS(5342), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [134936] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1870), 1, - anon_sym_LBRACE, - ACTIONS(1872), 1, - sym__unquoted_pattern, - STATE(4794), 1, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(8624), 1, + anon_sym_COLON, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(4898), 1, sym_comment, - [132364] = 4, - ACTIONS(3), 1, + [134952] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3808), 1, - anon_sym_LBRACE, - STATE(4365), 1, - sym_block, - STATE(4795), 1, + ACTIONS(4343), 1, + sym__entry_separator, + ACTIONS(8626), 1, + anon_sym_RBRACK, + STATE(1990), 1, + aux_sym__types_body_repeat2, + STATE(4899), 1, sym_comment, - [132377] = 4, + [134968] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3808), 1, - anon_sym_LBRACE, - STATE(4367), 1, - sym_block, - STATE(4796), 1, + ACTIONS(8401), 1, + sym_hex_digit, + ACTIONS(8628), 1, + anon_sym_RBRACK, + STATE(4838), 1, + aux_sym_val_binary_repeat1, + STATE(4900), 1, sym_comment, - [132390] = 3, - ACTIONS(3), 1, + [134984] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4797), 1, + ACTIONS(2413), 1, + sym__entry_separator, + STATE(4901), 1, sym_comment, - ACTIONS(8408), 2, + ACTIONS(2415), 2, anon_sym_RBRACK, - sym_hex_digit, - [132401] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [134998] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3808), 1, - anon_sym_LBRACE, - STATE(4369), 1, - sym_block, - STATE(4798), 1, + ACTIONS(2417), 1, + sym__entry_separator, + STATE(4902), 1, sym_comment, - [132414] = 4, + ACTIONS(2419), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [135012] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3808), 1, - anon_sym_LBRACE, - STATE(4371), 1, - sym_block, - STATE(4799), 1, + STATE(4903), 1, sym_comment, - [132427] = 4, + ACTIONS(8314), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [135024] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2589), 1, + ACTIONS(2421), 1, sym__entry_separator, - ACTIONS(2591), 1, - anon_sym_RBRACE, - STATE(4800), 1, - sym_comment, - [132440] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8410), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4801), 1, + STATE(4904), 1, sym_comment, - STATE(4838), 1, - aux_sym__unquoted_with_expr_repeat1, - [132453] = 4, + ACTIONS(2423), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [135038] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8412), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4802), 1, + ACTIONS(2624), 1, + sym__entry_separator, + STATE(4905), 1, sym_comment, - STATE(4839), 1, - aux_sym__unquoted_with_expr_repeat1, - [132466] = 4, - ACTIONS(103), 1, + ACTIONS(2626), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [135052] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8414), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(4803), 1, + ACTIONS(8401), 1, + sym_hex_digit, + ACTIONS(8630), 1, + anon_sym_RBRACK, + STATE(4890), 1, + aux_sym_val_binary_repeat1, + STATE(4906), 1, sym_comment, - STATE(4935), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - [132479] = 4, + [135068] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5784), 1, + ACTIONS(8182), 1, sym__entry_separator, - ACTIONS(6527), 1, - anon_sym_GT2, - STATE(4804), 1, + ACTIONS(8632), 1, + anon_sym_COLON, + STATE(4907), 1, sym_comment, - [132492] = 4, - ACTIONS(103), 1, + STATE(4997), 1, + sym__collection_annotation, + [135084] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5796), 1, - sym__entry_separator, - ACTIONS(6383), 1, - anon_sym_GT2, - STATE(4805), 1, + STATE(4908), 1, sym_comment, - [132505] = 4, - ACTIONS(103), 1, + ACTIONS(8298), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [135096] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8416), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4806), 1, - sym_comment, - STATE(4808), 1, - aux_sym__unquoted_with_expr_repeat1, - [132518] = 4, + ACTIONS(2922), 1, + sym__newline, + ACTIONS(8634), 1, + anon_sym_COLON, + STATE(485), 1, + aux_sym__repeat_newline, + STATE(4909), 1, + sym_comment, + [135112] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8418), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4807), 1, + STATE(4910), 1, sym_comment, - STATE(4811), 1, - aux_sym__unquoted_with_expr_repeat1, - [132531] = 4, + ACTIONS(2666), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [135124] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8420), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4808), 1, + ACTIONS(8636), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(4911), 1, sym_comment, - STATE(4893), 1, - aux_sym__unquoted_with_expr_repeat1, - [132544] = 4, + STATE(5041), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [135137] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3898), 1, + anon_sym_LBRACE, + STATE(4561), 1, + sym_block, + STATE(4912), 1, + sym_comment, + [135150] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7502), 1, + ACTIONS(7991), 1, anon_sym_RBRACE, - ACTIONS(7504), 1, + ACTIONS(7993), 1, sym__entry_separator, - STATE(4809), 1, + STATE(4913), 1, sym_comment, - [132557] = 4, - ACTIONS(103), 1, + [135163] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3771), 1, - sym__entry_separator, - ACTIONS(8422), 1, - anon_sym_RBRACE, - STATE(4810), 1, + ACTIONS(3898), 1, + anon_sym_LBRACE, + STATE(4454), 1, + sym_block, + STATE(4914), 1, sym_comment, - [132570] = 4, + [135176] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8425), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4811), 1, + ACTIONS(8638), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(4915), 1, sym_comment, - STATE(4893), 1, - aux_sym__unquoted_with_expr_repeat1, - [132583] = 3, + STATE(5041), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [135189] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4812), 1, + STATE(4916), 1, sym_comment, - ACTIONS(1549), 2, + ACTIONS(1545), 2, sym__table_head_separator, anon_sym_DOT2, - [132594] = 4, + [135200] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3808), 1, + ACTIONS(3898), 1, anon_sym_LBRACE, - STATE(4374), 1, + STATE(4455), 1, sym_block, - STATE(4813), 1, + STATE(4917), 1, + sym_comment, + [135213] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6358), 1, + anon_sym_RBRACK, + ACTIONS(6360), 1, + sym__entry_separator, + STATE(4918), 1, sym_comment, - [132607] = 4, + [135226] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3808), 1, + ACTIONS(3906), 1, anon_sym_LBRACE, - STATE(4376), 1, + STATE(4767), 1, sym_block, - STATE(4814), 1, + STATE(4919), 1, sym_comment, - [132620] = 4, + [135239] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5197), 1, - anon_sym_LPAREN2, - STATE(4815), 1, + ACTIONS(3898), 1, + anon_sym_LBRACE, + STATE(4610), 1, + sym_block, + STATE(4920), 1, sym_comment, - STATE(5178), 1, - sym__expr_parenthesized_immediate, - [132633] = 4, + [135252] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1713), 1, + ACTIONS(3898), 1, anon_sym_LBRACE, - ACTIONS(2614), 1, - sym__unquoted_pattern, - STATE(4816), 1, + STATE(4611), 1, + sym_block, + STATE(4921), 1, sym_comment, - [132646] = 4, + [135265] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3786), 1, + ACTIONS(1234), 1, anon_sym_LBRACE, - STATE(4699), 1, - sym_block, - STATE(4817), 1, + ACTIONS(2634), 1, + sym__unquoted_pattern, + STATE(4922), 1, sym_comment, - [132659] = 4, + [135278] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3808), 1, + ACTIONS(3898), 1, anon_sym_LBRACE, - STATE(4390), 1, + STATE(4565), 1, sym_block, - STATE(4818), 1, + STATE(4923), 1, sym_comment, - [132672] = 3, - ACTIONS(103), 1, + [135291] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8427), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(4819), 2, + ACTIONS(3898), 1, + anon_sym_LBRACE, + STATE(4471), 1, + sym_block, + STATE(4924), 1, sym_comment, - aux_sym__unquoted_in_record_with_expr_repeat1, - [132683] = 4, + [135304] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1770), 1, + ACTIONS(1699), 1, anon_sym_LBRACE, - ACTIONS(1772), 1, + ACTIONS(2674), 1, sym__unquoted_pattern, - STATE(4820), 1, + STATE(4925), 1, sym_comment, - [132696] = 4, + [135317] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3786), 1, + ACTIONS(1846), 1, anon_sym_LBRACE, - STATE(4704), 1, - sym_block, - STATE(4821), 1, + ACTIONS(1848), 1, + sym__unquoted_pattern, + STATE(4926), 1, sym_comment, - [132709] = 4, + [135330] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5418), 1, + ACTIONS(5354), 1, anon_sym_RBRACK, - ACTIONS(5420), 1, + ACTIONS(5356), 1, sym__entry_separator, - STATE(4822), 1, + STATE(4927), 1, sym_comment, - [132722] = 4, + [135343] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1020), 1, - anon_sym_RBRACE, - ACTIONS(1022), 1, - sym__entry_separator, - STATE(4823), 1, + ACTIONS(8640), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4928), 2, sym_comment, - [132735] = 4, + aux_sym__unquoted_with_expr_repeat1, + [135354] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(994), 1, - anon_sym_RBRACE, - ACTIONS(1030), 1, + ACTIONS(4780), 1, sym__entry_separator, - STATE(4824), 1, + STATE(2275), 1, + aux_sym__types_body_repeat2, + STATE(4929), 1, sym_comment, - [132748] = 4, + [135367] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3786), 1, + ACTIONS(2608), 1, anon_sym_LBRACE, - STATE(4705), 1, - sym_block, - STATE(4825), 1, + ACTIONS(2614), 1, + sym__unquoted_pattern, + STATE(4930), 1, sym_comment, - [132761] = 4, - ACTIONS(103), 1, + [135380] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8430), 1, - anon_sym_GT2, - ACTIONS(8432), 1, - sym__entry_separator, - STATE(4826), 1, + ACTIONS(3906), 1, + anon_sym_LBRACE, + STATE(4903), 1, + sym_block, + STATE(4931), 1, sym_comment, - [132774] = 3, + [135393] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4827), 1, + ACTIONS(3906), 1, + anon_sym_LBRACE, + STATE(4656), 1, + sym_block, + STATE(4932), 1, sym_comment, - ACTIONS(1564), 2, - sym__table_head_separator, - anon_sym_DOT2, - [132785] = 4, + [135406] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8434), 1, - anon_sym_RBRACK, - ACTIONS(8436), 1, + ACTIONS(2572), 1, sym__entry_separator, - STATE(4828), 1, + ACTIONS(2574), 1, + anon_sym_RBRACE, + STATE(4933), 1, sym_comment, - [132798] = 3, + [135419] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4829), 1, + ACTIONS(3906), 1, + anon_sym_LBRACE, + STATE(4652), 1, + sym_block, + STATE(4934), 1, sym_comment, - ACTIONS(1498), 2, - sym__table_head_separator, - anon_sym_DOT2, - [132809] = 4, + [135432] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4456), 1, - sym__entry_separator, - STATE(2147), 1, - aux_sym__types_body_repeat2, - STATE(4830), 1, + ACTIONS(8643), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(4935), 1, sym_comment, - [132822] = 4, + STATE(5041), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [135445] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1724), 1, - anon_sym_LPAREN2, - STATE(4831), 1, + ACTIONS(3906), 1, + anon_sym_LBRACE, + STATE(4826), 1, + sym_block, + STATE(4936), 1, sym_comment, - STATE(5171), 1, - sym__expr_parenthesized_immediate, - [132835] = 4, + [135458] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2525), 1, + ACTIONS(3898), 1, anon_sym_LBRACE, - ACTIONS(2527), 1, - sym__unquoted_pattern, - STATE(4832), 1, + STATE(4509), 1, + sym_block, + STATE(4937), 1, sym_comment, - [132848] = 4, + [135471] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(886), 1, - anon_sym_COLON2, - ACTIONS(2682), 1, - aux_sym_cmd_identifier_token2, - STATE(4833), 1, + ACTIONS(8645), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(4938), 1, sym_comment, - [132861] = 4, + STATE(5041), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [135484] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3786), 1, + ACTIONS(2616), 1, anon_sym_LBRACE, - STATE(4588), 1, + ACTIONS(2622), 1, + sym__unquoted_pattern, + STATE(4939), 1, + sym_comment, + [135497] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3906), 1, + anon_sym_LBRACE, + STATE(4829), 1, sym_block, - STATE(4834), 1, + STATE(4940), 1, + sym_comment, + [135510] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4941), 1, sym_comment, - [132874] = 4, + ACTIONS(8647), 2, + sym__newline, + anon_sym_SEMI, + [135521] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7824), 1, - anon_sym_RBRACE, - ACTIONS(7826), 1, + ACTIONS(8649), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4928), 1, + aux_sym__unquoted_with_expr_repeat1, + STATE(4942), 1, + sym_comment, + [135534] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8651), 1, + anon_sym_RBRACK, + ACTIONS(8653), 1, sym__entry_separator, - STATE(4835), 1, + STATE(4943), 1, sym_comment, - [132887] = 4, + [135547] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3786), 1, + ACTIONS(3906), 1, anon_sym_LBRACE, - STATE(4696), 1, + STATE(4661), 1, sym_block, - STATE(4836), 1, + STATE(4944), 1, sym_comment, - [132900] = 4, + [135560] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3786), 1, + ACTIONS(3906), 1, anon_sym_LBRACE, - STATE(4604), 1, + STATE(4895), 1, sym_block, - STATE(4837), 1, + STATE(4945), 1, sym_comment, - [132913] = 4, + [135573] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8438), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4838), 1, + ACTIONS(2754), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2756), 1, + anon_sym_COLON2, + STATE(4946), 1, sym_comment, - STATE(4893), 1, - aux_sym__unquoted_with_expr_repeat1, - [132926] = 4, + [135586] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3898), 1, + anon_sym_LBRACE, + STATE(3366), 1, + sym_block, + STATE(4947), 1, + sym_comment, + [135599] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8440), 1, + ACTIONS(8655), 1, aux_sym__unquoted_with_expr_token1, - STATE(4839), 1, + STATE(4928), 1, + aux_sym__unquoted_with_expr_repeat1, + STATE(4948), 1, sym_comment, - STATE(4893), 1, + [135612] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8657), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4928), 1, aux_sym__unquoted_with_expr_repeat1, - [132939] = 4, + STATE(4949), 1, + sym_comment, + [135625] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3786), 1, + ACTIONS(3906), 1, anon_sym_LBRACE, - STATE(4698), 1, + STATE(4811), 1, sym_block, - STATE(4840), 1, + STATE(4950), 1, + sym_comment, + [135638] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8659), 1, + anon_sym_LPAREN2, + ACTIONS(8661), 1, + aux_sym__record_key_token1, + STATE(4951), 1, sym_comment, - [132952] = 4, + [135651] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3808), 1, + ACTIONS(3898), 1, anon_sym_LBRACE, - STATE(3308), 1, + STATE(4591), 1, sym_block, - STATE(4841), 1, + STATE(4952), 1, sym_comment, - [132965] = 4, + [135664] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3786), 1, + ACTIONS(3898), 1, anon_sym_LBRACE, - STATE(4631), 1, + STATE(4593), 1, sym_block, - STATE(4842), 1, + STATE(4953), 1, + sym_comment, + [135677] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6914), 1, + anon_sym_LPAREN2, + STATE(4954), 1, sym_comment, - [132978] = 4, + STATE(5088), 1, + sym__expr_parenthesized_immediate, + [135690] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3786), 1, + ACTIONS(968), 1, anon_sym_LBRACE, - STATE(4645), 1, - sym_block, - STATE(4843), 1, + ACTIONS(1828), 1, + sym__unquoted_pattern, + STATE(4955), 1, + sym_comment, + [135703] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4956), 1, sym_comment, - [132991] = 4, + ACTIONS(8417), 2, + anon_sym_GT2, + anon_sym_AT2, + [135714] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3786), 1, + ACTIONS(3898), 1, anon_sym_LBRACE, - STATE(4641), 1, + STATE(4580), 1, sym_block, - STATE(4844), 1, + STATE(4957), 1, sym_comment, - [133004] = 4, + [135727] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3786), 1, + ACTIONS(3898), 1, anon_sym_LBRACE, - STATE(4664), 1, + STATE(4581), 1, sym_block, - STATE(4845), 1, + STATE(4958), 1, sym_comment, - [133017] = 4, + [135740] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4328), 1, + ACTIONS(8663), 1, + anon_sym_RBRACK, + ACTIONS(8665), 1, sym__entry_separator, - STATE(2015), 1, - aux_sym__types_body_repeat2, - STATE(4846), 1, + STATE(4959), 1, sym_comment, - [133030] = 4, + [135753] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3786), 1, + ACTIONS(3906), 1, anon_sym_LBRACE, - STATE(4745), 1, + STATE(4804), 1, sym_block, - STATE(4847), 1, + STATE(4960), 1, + sym_comment, + [135766] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7719), 1, + anon_sym_RBRACK, + ACTIONS(7721), 1, + sym__entry_separator, + STATE(4961), 1, sym_comment, - [133043] = 4, + [135779] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3786), 1, + ACTIONS(3906), 1, anon_sym_LBRACE, - STATE(4672), 1, + STATE(4682), 1, sym_block, - STATE(4848), 1, + STATE(4962), 1, sym_comment, - [133056] = 4, + [135792] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3786), 1, + ACTIONS(3906), 1, anon_sym_LBRACE, - STATE(4761), 1, + STATE(4808), 1, sym_block, - STATE(4849), 1, + STATE(4963), 1, + sym_comment, + [135805] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6657), 1, + anon_sym_DOLLAR2, + ACTIONS(8667), 1, + anon_sym_RBRACK, + STATE(4964), 1, sym_comment, - [133069] = 4, + [135818] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3786), 1, + ACTIONS(3898), 1, anon_sym_LBRACE, - STATE(4746), 1, + STATE(4601), 1, sym_block, - STATE(4850), 1, + STATE(4965), 1, sym_comment, - [133082] = 4, + [135831] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7073), 1, - sym__entry_separator, - ACTIONS(8442), 1, - anon_sym_RBRACK, - STATE(4851), 1, + ACTIONS(8669), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(4966), 1, sym_comment, - [133095] = 4, + STATE(5001), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [135844] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7085), 1, + ACTIONS(2674), 1, + sym__unquoted_pattern_in_list, + ACTIONS(7486), 1, sym__entry_separator, - ACTIONS(8444), 1, - anon_sym_RBRACK, - STATE(4852), 1, + STATE(4967), 1, sym_comment, - [133108] = 4, + [135857] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1622), 1, + ACTIONS(8671), 1, + anon_sym_RBRACK, + ACTIONS(8673), 1, sym__entry_separator, - STATE(1508), 1, - aux_sym__types_body_repeat2, - STATE(4853), 1, + STATE(4968), 1, sym_comment, - [133121] = 4, + [135870] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8446), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(4854), 1, + ACTIONS(2652), 1, + sym__entry_separator, + ACTIONS(2654), 1, + anon_sym_RBRACE, + STATE(4969), 1, sym_comment, - STATE(4925), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [133134] = 4, + [135883] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3898), 1, + anon_sym_LBRACE, + STATE(4602), 1, + sym_block, + STATE(4970), 1, + sym_comment, + [135896] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8448), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(4855), 1, + ACTIONS(8675), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4928), 1, + aux_sym__unquoted_with_expr_repeat1, + STATE(4971), 1, sym_comment, - STATE(4926), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [133147] = 4, + [135909] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8450), 1, + ACTIONS(8677), 1, aux_sym__unquoted_with_expr_token1, - STATE(4856), 1, + STATE(4972), 1, sym_comment, - STATE(4893), 1, + STATE(5000), 1, aux_sym__unquoted_with_expr_repeat1, - [133160] = 4, + [135922] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8452), 1, + ACTIONS(8679), 1, aux_sym__unquoted_with_expr_token1, - STATE(4857), 1, + STATE(4973), 1, sym_comment, - STATE(4893), 1, + STATE(5029), 1, aux_sym__unquoted_with_expr_repeat1, - [133173] = 4, + [135935] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3786), 1, + ACTIONS(3898), 1, anon_sym_LBRACE, - STATE(4618), 1, + STATE(4521), 1, sym_block, - STATE(4858), 1, + STATE(4974), 1, sym_comment, - [133186] = 4, - ACTIONS(103), 1, + [135948] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5036), 1, - sym__entry_separator, - STATE(2444), 1, - aux_sym__types_body_repeat2, - STATE(4859), 1, + ACTIONS(3906), 1, + anon_sym_LBRACE, + STATE(4840), 1, + sym_block, + STATE(4975), 1, sym_comment, - [133199] = 4, + [135961] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1635), 1, - sym__unquoted_pattern, - ACTIONS(1956), 1, + ACTIONS(3898), 1, anon_sym_LBRACE, - STATE(4860), 1, + STATE(4522), 1, + sym_block, + STATE(4976), 1, sym_comment, - [133212] = 4, + [135974] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1622), 1, + ACTIONS(4370), 1, sym__entry_separator, - STATE(1499), 1, + STATE(2053), 1, aux_sym__types_body_repeat2, - STATE(4861), 1, + STATE(4977), 1, sym_comment, - [133225] = 4, + [135987] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3786), 1, + ACTIONS(3906), 1, anon_sym_LBRACE, - STATE(4621), 1, + STATE(4676), 1, sym_block, - STATE(4862), 1, + STATE(4978), 1, sym_comment, - [133238] = 4, - ACTIONS(3), 1, + [136000] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3808), 1, - anon_sym_LBRACE, - STATE(4331), 1, - sym_block, - STATE(4863), 1, + ACTIONS(8681), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(4979), 1, + sym_comment, + STATE(5001), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [136013] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4343), 1, + sym__entry_separator, + STATE(2083), 1, + aux_sym__types_body_repeat2, + STATE(4980), 1, + sym_comment, + [136026] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2616), 1, + sym__entry_separator, + ACTIONS(2618), 1, + anon_sym_RBRACE, + STATE(4981), 1, + sym_comment, + [136039] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1982), 1, + sym__entry_separator, + ACTIONS(1984), 1, + anon_sym_RBRACE, + STATE(4982), 1, + sym_comment, + [136052] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(4983), 1, sym_comment, - [133251] = 4, + ACTIONS(1966), 2, + anon_sym_POUND_BANG, + sym__newline, + [136063] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3808), 1, + ACTIONS(1895), 1, anon_sym_LBRACE, - STATE(4332), 1, - sym_block, - STATE(4864), 1, + ACTIONS(1897), 1, + sym__unquoted_pattern, + STATE(4984), 1, sym_comment, - [133264] = 4, + [136076] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3808), 1, + ACTIONS(3906), 1, anon_sym_LBRACE, - STATE(4333), 1, + STATE(4724), 1, sym_block, - STATE(4865), 1, + STATE(4985), 1, sym_comment, - [133277] = 4, + [136089] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3808), 1, + ACTIONS(3898), 1, anon_sym_LBRACE, - STATE(4334), 1, + STATE(4537), 1, sym_block, - STATE(4866), 1, + STATE(4986), 1, sym_comment, - [133290] = 4, + [136102] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8454), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(4867), 1, + ACTIONS(8071), 1, + anon_sym_RBRACE, + ACTIONS(8073), 1, + sym__entry_separator, + STATE(4987), 1, sym_comment, - STATE(4920), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - [133303] = 4, + [136115] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3786), 1, + ACTIONS(3906), 1, anon_sym_LBRACE, - STATE(4709), 1, + STATE(4782), 1, sym_block, - STATE(4868), 1, + STATE(4988), 1, sym_comment, - [133316] = 3, + [136128] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4869), 1, + ACTIONS(3898), 1, + anon_sym_LBRACE, + STATE(4538), 1, + sym_block, + STATE(4989), 1, sym_comment, - ACTIONS(8300), 2, - anon_sym_GT2, - anon_sym_AT2, - [133327] = 4, - ACTIONS(103), 1, + [136141] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2597), 1, - sym__entry_separator, - ACTIONS(2599), 1, - anon_sym_RBRACE, - STATE(4870), 1, + ACTIONS(3898), 1, + anon_sym_LBRACE, + STATE(4539), 1, + sym_block, + STATE(4990), 1, sym_comment, - [133340] = 4, + [136154] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8456), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(4819), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - STATE(4871), 1, + ACTIONS(8683), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(4966), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + STATE(4991), 1, sym_comment, - [133353] = 4, + [136167] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3786), 1, + ACTIONS(3906), 1, anon_sym_LBRACE, - STATE(4566), 1, + STATE(4810), 1, sym_block, - STATE(4872), 1, + STATE(4992), 1, sym_comment, - [133366] = 4, + [136180] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3808), 1, - anon_sym_LBRACE, - STATE(4350), 1, - sym_block, - STATE(4873), 1, + STATE(4993), 1, sym_comment, - [133379] = 4, + ACTIONS(1553), 2, + sym__table_head_separator, + anon_sym_DOT2, + [136191] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3786), 1, + ACTIONS(3898), 1, anon_sym_LBRACE, - STATE(4567), 1, + STATE(4540), 1, sym_block, - STATE(4874), 1, + STATE(4994), 1, sym_comment, - [133392] = 4, + [136204] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3808), 1, + ACTIONS(3898), 1, anon_sym_LBRACE, - STATE(4351), 1, + STATE(4567), 1, sym_block, - STATE(4875), 1, + STATE(4995), 1, sym_comment, - [133405] = 4, + [136217] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6477), 1, - anon_sym_DOLLAR2, - ACTIONS(8458), 1, - anon_sym_RBRACK, - STATE(4876), 1, + ACTIONS(5172), 1, + anon_sym_LPAREN2, + STATE(4996), 1, + sym_comment, + STATE(5277), 1, + sym__expr_parenthesized_immediate, + [136230] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8685), 1, + anon_sym_GT2, + ACTIONS(8687), 1, + sym__entry_separator, + STATE(4997), 1, sym_comment, - [133418] = 4, + [136243] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3786), 1, + ACTIONS(3906), 1, anon_sym_LBRACE, - STATE(4585), 1, + STATE(4764), 1, sym_block, - STATE(4877), 1, + STATE(4998), 1, sym_comment, - [133431] = 4, + [136256] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1973), 1, + ACTIONS(2608), 1, sym__entry_separator, - ACTIONS(1975), 1, + ACTIONS(2610), 1, anon_sym_RBRACE, - STATE(4878), 1, + STATE(4999), 1, sym_comment, - [133444] = 4, + [136269] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4328), 1, - sym__entry_separator, - STATE(2025), 1, - aux_sym__types_body_repeat2, - STATE(4879), 1, + ACTIONS(8689), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4928), 1, + aux_sym__unquoted_with_expr_repeat1, + STATE(5000), 1, sym_comment, - [133457] = 4, - ACTIONS(3), 1, + [136282] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1679), 1, - sym__unquoted_pattern, - ACTIONS(2541), 1, - anon_sym_LBRACE, - STATE(4880), 1, + ACTIONS(8691), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(5001), 2, sym_comment, - [133470] = 4, - ACTIONS(103), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [136293] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8460), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4856), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(4881), 1, + STATE(5002), 1, sym_comment, - [133483] = 4, + ACTIONS(1470), 2, + sym__table_head_separator, + anon_sym_DOT2, + [136304] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5424), 1, - sym__entry_separator, - ACTIONS(6319), 1, - anon_sym_RBRACK, - STATE(4882), 1, + ACTIONS(8694), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(4938), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + STATE(5003), 1, sym_comment, - [133496] = 4, + [136317] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8462), 1, + ACTIONS(8696), 1, anon_sym_RBRACE, - ACTIONS(8464), 1, + ACTIONS(8698), 1, sym__entry_separator, - STATE(4883), 1, + STATE(5004), 1, sym_comment, - [133509] = 4, - ACTIONS(103), 1, + [136330] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8466), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4857), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(4884), 1, + ACTIONS(3906), 1, + anon_sym_LBRACE, + STATE(4770), 1, + sym_block, + STATE(5005), 1, sym_comment, - [133522] = 4, + [136343] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3808), 1, + ACTIONS(3906), 1, anon_sym_LBRACE, - STATE(4245), 1, + STATE(4801), 1, sym_block, - STATE(4885), 1, + STATE(5006), 1, + sym_comment, + [136356] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4343), 1, + sym__entry_separator, + STATE(4678), 1, + aux_sym__types_body_repeat2, + STATE(5007), 1, sym_comment, - [133535] = 4, + [136369] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3808), 1, + ACTIONS(3906), 1, anon_sym_LBRACE, - STATE(4251), 1, + STATE(4878), 1, sym_block, - STATE(4886), 1, + STATE(5008), 1, sym_comment, - [133548] = 4, + [136382] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3786), 1, + ACTIONS(3906), 1, anon_sym_LBRACE, - STATE(4638), 1, + STATE(4879), 1, sym_block, - STATE(4887), 1, + STATE(5009), 1, sym_comment, - [133561] = 4, + [136395] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1746), 1, - sym__unquoted_pattern_in_record, - ACTIONS(8367), 1, - aux_sym__immediate_decimal_token5, - STATE(4888), 1, + ACTIONS(3906), 1, + anon_sym_LBRACE, + STATE(4771), 1, + sym_block, + STATE(5010), 1, sym_comment, - [133574] = 4, + [136408] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7753), 1, + ACTIONS(1972), 1, + sym__entry_separator, + ACTIONS(1974), 1, anon_sym_RBRACE, - ACTIONS(7755), 1, + STATE(5011), 1, + sym_comment, + [136421] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8700), 1, + anon_sym_GT2, + ACTIONS(8702), 1, sym__entry_separator, - STATE(4889), 1, + STATE(5012), 1, sym_comment, - [133587] = 3, + [136434] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(4890), 1, + ACTIONS(6028), 1, + sym__entry_separator, + ACTIONS(6769), 1, + anon_sym_GT2, + STATE(5013), 1, sym_comment, - ACTIONS(2146), 2, - anon_sym_POUND_BANG, - sym__newline, - [133598] = 4, - ACTIONS(3), 1, + [136447] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1854), 1, - sym__unquoted_pattern_in_record, - ACTIONS(8468), 1, - aux_sym__immediate_decimal_token5, - STATE(4891), 1, + ACTIONS(6008), 1, + sym__entry_separator, + ACTIONS(6771), 1, + anon_sym_GT2, + STATE(5014), 1, sym_comment, - [133611] = 4, + [136460] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8470), 1, - anon_sym_RBRACE, - ACTIONS(8472), 1, + ACTIONS(4483), 1, sym__entry_separator, - STATE(4892), 1, + STATE(2205), 1, + aux_sym__types_body_repeat2, + STATE(5015), 1, sym_comment, - [133624] = 3, + [136473] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8474), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4893), 2, + ACTIONS(8704), 1, + sym__newline, + ACTIONS(8706), 1, + sym__space, + STATE(5016), 1, sym_comment, - aux_sym__unquoted_with_expr_repeat1, - [133635] = 4, + [136486] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3808), 1, - anon_sym_LBRACE, - STATE(4445), 1, - sym_block, - STATE(4894), 1, + ACTIONS(8708), 1, + anon_sym_DASH2, + STATE(5017), 1, + sym_comment, + STATE(5488), 1, + sym_param_short_flag, + [136499] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8710), 1, + anon_sym_RBRACE, + ACTIONS(8712), 1, + sym__entry_separator, + STATE(5018), 1, sym_comment, - [133648] = 4, + [136512] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3808), 1, + ACTIONS(2360), 1, anon_sym_LBRACE, - STATE(4461), 1, - sym_block, - STATE(4895), 1, + ACTIONS(2362), 1, + sym__unquoted_pattern, + STATE(5019), 1, + sym_comment, + [136525] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8714), 1, + anon_sym_RBRACE, + ACTIONS(8716), 1, + sym__entry_separator, + STATE(5020), 1, + sym_comment, + [136538] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7804), 1, + anon_sym_RBRACE, + ACTIONS(7806), 1, + sym__entry_separator, + STATE(5021), 1, + sym_comment, + [136551] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3795), 1, + sym__entry_separator, + ACTIONS(8718), 1, + anon_sym_RBRACE, + STATE(5022), 1, sym_comment, - [133661] = 4, + [136564] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8477), 1, - anon_sym_def, - ACTIONS(8479), 1, - anon_sym_extern, - STATE(4896), 1, + ACTIONS(8721), 1, + sym_identifier, + ACTIONS(8723), 1, + anon_sym_DOLLAR, + STATE(5023), 1, sym_comment, - [133674] = 4, + [136577] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1956), 1, + ACTIONS(4343), 1, sym__entry_separator, - ACTIONS(1958), 1, + STATE(2043), 1, + aux_sym__types_body_repeat2, + STATE(5024), 1, + sym_comment, + [136590] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7976), 1, anon_sym_RBRACE, - STATE(4897), 1, + ACTIONS(7978), 1, + sym__entry_separator, + STATE(5025), 1, sym_comment, - [133687] = 4, + [136603] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3786), 1, + ACTIONS(3898), 1, anon_sym_LBRACE, - STATE(4626), 1, + STATE(4568), 1, sym_block, - STATE(4898), 1, + STATE(5026), 1, sym_comment, - [133700] = 4, + [136616] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1022), 1, - anon_sym_LBRACE, - ACTIONS(2658), 1, - sym__unquoted_pattern, - STATE(4899), 1, + ACTIONS(1792), 1, + sym__unquoted_pattern_in_record, + ACTIONS(8429), 1, + aux_sym__immediate_decimal_token5, + STATE(5027), 1, sym_comment, - [133713] = 4, + [136629] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8481), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(4819), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - STATE(4900), 1, + ACTIONS(8725), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(4979), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + STATE(5028), 1, sym_comment, - [133726] = 4, + [136642] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2614), 1, - sym__unquoted_pattern_in_list, - ACTIONS(7268), 1, - sym__entry_separator, - STATE(4901), 1, + ACTIONS(8727), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4928), 1, + aux_sym__unquoted_with_expr_repeat1, + STATE(5029), 1, + sym_comment, + [136655] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1818), 1, + anon_sym_LPAREN2, + STATE(5030), 1, sym_comment, - [133739] = 4, + STATE(5483), 1, + sym__expr_parenthesized_immediate, + [136668] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2648), 1, - sym__entry_separator, - ACTIONS(2650), 1, + ACTIONS(7995), 1, anon_sym_RBRACE, - STATE(4902), 1, + ACTIONS(7997), 1, + sym__entry_separator, + STATE(5031), 1, sym_comment, - [133752] = 4, - ACTIONS(103), 1, + [136681] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8483), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(4871), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - STATE(4903), 1, + ACTIONS(3898), 1, + anon_sym_LBRACE, + STATE(3363), 1, + sym_block, + STATE(5032), 1, sym_comment, - [133765] = 4, + [136694] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8485), 1, - sym_identifier, - ACTIONS(8487), 1, - anon_sym_DOLLAR, - STATE(4904), 1, + ACTIONS(1848), 1, + sym__unquoted_pattern_in_record, + ACTIONS(8729), 1, + aux_sym__immediate_decimal_token5, + STATE(5033), 1, + sym_comment, + [136707] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(968), 1, + anon_sym_COLON2, + ACTIONS(2754), 1, + aux_sym_cmd_identifier_token2, + STATE(5034), 1, sym_comment, - [133778] = 4, + [136720] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3786), 1, + ACTIONS(3906), 1, anon_sym_LBRACE, - STATE(4667), 1, + STATE(4849), 1, sym_block, - STATE(4905), 1, + STATE(5035), 1, sym_comment, - [133791] = 4, + [136733] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8489), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(4900), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - STATE(4906), 1, + ACTIONS(3468), 1, + sym__space, + STATE(1405), 1, + aux_sym_pipe_element_repeat1, + STATE(5036), 1, sym_comment, - [133804] = 4, + [136746] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3808), 1, + ACTIONS(1637), 1, + sym__unquoted_pattern, + ACTIONS(1972), 1, anon_sym_LBRACE, - STATE(4282), 1, - sym_block, - STATE(4907), 1, + STATE(5037), 1, sym_comment, - [133817] = 4, + [136759] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1030), 1, + ACTIONS(1226), 1, anon_sym_LBRACE, - ACTIONS(2658), 1, + ACTIONS(2634), 1, sym__unquoted_pattern, - STATE(4908), 1, + STATE(5038), 1, sym_comment, - [133830] = 4, - ACTIONS(3), 1, + [136772] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3808), 1, - anon_sym_LBRACE, - STATE(4283), 1, - sym_block, - STATE(4909), 1, + ACTIONS(8731), 1, + anon_sym_RBRACE, + ACTIONS(8733), 1, + sym__entry_separator, + STATE(5039), 1, sym_comment, - [133843] = 4, + [136785] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3808), 1, + ACTIONS(1730), 1, anon_sym_LBRACE, - STATE(3312), 1, - sym_block, - STATE(4910), 1, + ACTIONS(1732), 1, + sym__unquoted_pattern, + STATE(5040), 1, sym_comment, - [133856] = 4, + [136798] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6117), 1, - anon_sym_RBRACK, - ACTIONS(6119), 1, - sym__entry_separator, - STATE(4911), 1, + ACTIONS(8735), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(5041), 2, sym_comment, - [133869] = 4, + aux_sym__unquoted_in_record_with_expr_repeat1, + [136809] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4420), 1, + ACTIONS(4806), 1, sym__entry_separator, - STATE(2146), 1, + STATE(2279), 1, aux_sym__types_body_repeat2, - STATE(4912), 1, + STATE(5042), 1, sym_comment, - [133882] = 4, + [136822] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3808), 1, + ACTIONS(8738), 1, + anon_sym_def, + ACTIONS(8740), 1, + anon_sym_extern, + STATE(5043), 1, + sym_comment, + [136835] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8043), 1, + anon_sym_RBRACE, + ACTIONS(8045), 1, + sym__entry_separator, + STATE(5044), 1, + sym_comment, + [136848] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3906), 1, anon_sym_LBRACE, - STATE(4285), 1, + STATE(3283), 1, sym_block, - STATE(4913), 1, + STATE(5045), 1, sym_comment, - [133895] = 4, + [136861] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3786), 1, + ACTIONS(3906), 1, anon_sym_LBRACE, - STATE(4665), 1, + STATE(4766), 1, sym_block, - STATE(4914), 1, + STATE(5046), 1, sym_comment, - [133908] = 4, - ACTIONS(103), 1, + [136874] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3898), 1, + anon_sym_LBRACE, + STATE(3625), 1, + sym_block, + STATE(5047), 1, + sym_comment, + [136887] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8491), 1, + STATE(5048), 1, + sym_comment, + ACTIONS(8742), 2, anon_sym_RBRACK, - ACTIONS(8493), 1, + sym_hex_digit, + [136898] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8744), 1, + anon_sym_RBRACE, + ACTIONS(8746), 1, sym__entry_separator, - STATE(4915), 1, + STATE(5049), 1, sym_comment, - [133921] = 3, + [136911] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8495), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(4916), 2, + ACTIONS(8748), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(4915), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + STATE(5050), 1, sym_comment, - aux_sym__unquoted_in_list_with_expr_repeat1, - [133932] = 4, + [136924] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3808), 1, + ACTIONS(3898), 1, anon_sym_LBRACE, - STATE(4287), 1, + STATE(3569), 1, sym_block, - STATE(4917), 1, - sym_comment, - [133945] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4328), 1, - sym__entry_separator, - STATE(4749), 1, - aux_sym__types_body_repeat2, - STATE(4918), 1, + STATE(5051), 1, sym_comment, - [133958] = 4, + [136937] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3808), 1, + ACTIONS(3898), 1, anon_sym_LBRACE, - STATE(4213), 1, + STATE(4604), 1, sym_block, - STATE(4919), 1, + STATE(5052), 1, sym_comment, - [133971] = 4, + [136950] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8498), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(4916), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - STATE(4920), 1, - sym_comment, - [133984] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3808), 1, - anon_sym_LBRACE, - STATE(3537), 1, - sym_block, - STATE(4921), 1, + ACTIONS(1623), 1, + sym__entry_separator, + STATE(1498), 1, + aux_sym__types_body_repeat2, + STATE(5053), 1, sym_comment, - [133997] = 4, + [136963] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8500), 1, - anon_sym_GT2, - ACTIONS(8502), 1, + ACTIONS(7313), 1, sym__entry_separator, - STATE(4922), 1, + ACTIONS(8750), 1, + anon_sym_RBRACK, + STATE(5054), 1, sym_comment, - [134010] = 4, - ACTIONS(3), 1, + [136976] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3808), 1, - anon_sym_LBRACE, - STATE(3507), 1, - sym_block, - STATE(4923), 1, + ACTIONS(7329), 1, + sym__entry_separator, + ACTIONS(8752), 1, + anon_sym_RBRACK, + STATE(5055), 1, sym_comment, - [134023] = 4, - ACTIONS(3), 1, + [136989] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1852), 1, - anon_sym_LBRACE, - ACTIONS(1854), 1, - sym__unquoted_pattern, - STATE(4924), 1, + ACTIONS(8754), 1, + aux_sym__unquoted_with_expr_token1, + STATE(5056), 1, sym_comment, - [134036] = 4, + STATE(5061), 1, + aux_sym__unquoted_with_expr_repeat1, + [137002] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8504), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(4819), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - STATE(4925), 1, + ACTIONS(8756), 1, + aux_sym__unquoted_with_expr_token1, + STATE(5057), 1, sym_comment, - [134049] = 4, + STATE(5062), 1, + aux_sym__unquoted_with_expr_repeat1, + [137015] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8506), 1, + ACTIONS(8758), 1, aux_sym__unquoted_in_record_with_expr_token1, - STATE(4819), 1, + STATE(4911), 1, aux_sym__unquoted_in_record_with_expr_repeat1, - STATE(4926), 1, + STATE(5058), 1, sym_comment, - [134062] = 4, + [137028] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8508), 1, + ACTIONS(8760), 1, anon_sym_def, - ACTIONS(8510), 1, + ACTIONS(8762), 1, anon_sym_extern, - STATE(4927), 1, + STATE(5059), 1, sym_comment, - [134075] = 4, + [137041] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3808), 1, + ACTIONS(3898), 1, anon_sym_LBRACE, - STATE(4354), 1, + STATE(4605), 1, sym_block, - STATE(4928), 1, + STATE(5060), 1, sym_comment, - [134088] = 4, + [137054] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8512), 1, + ACTIONS(8764), 1, aux_sym__unquoted_with_expr_token1, - STATE(4929), 1, - sym_comment, - STATE(4933), 1, + STATE(4928), 1, aux_sym__unquoted_with_expr_repeat1, - [134101] = 4, + STATE(5061), 1, + sym_comment, + [137067] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8514), 1, + ACTIONS(8766), 1, aux_sym__unquoted_with_expr_token1, - STATE(4930), 1, - sym_comment, - STATE(4934), 1, + STATE(4928), 1, aux_sym__unquoted_with_expr_repeat1, - [134114] = 4, + STATE(5062), 1, + sym_comment, + [137080] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3808), 1, + ACTIONS(3906), 1, anon_sym_LBRACE, - STATE(4355), 1, + STATE(4763), 1, sym_block, - STATE(4931), 1, + STATE(5063), 1, sym_comment, - [134127] = 4, + [137093] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6477), 1, - anon_sym_DOLLAR2, - ACTIONS(8516), 1, - anon_sym_RBRACK, - STATE(4932), 1, + ACTIONS(1992), 1, + sym__unquoted_pattern, + ACTIONS(2652), 1, + anon_sym_LBRACE, + STATE(5064), 1, sym_comment, - [134140] = 4, + [137106] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8518), 1, + ACTIONS(8768), 1, aux_sym__unquoted_with_expr_token1, - STATE(4893), 1, + STATE(4942), 1, aux_sym__unquoted_with_expr_repeat1, - STATE(4933), 1, + STATE(5065), 1, sym_comment, - [134153] = 4, + [137119] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8520), 1, + ACTIONS(8770), 1, aux_sym__unquoted_with_expr_token1, - STATE(4893), 1, + STATE(4971), 1, aux_sym__unquoted_with_expr_repeat1, - STATE(4934), 1, + STATE(5066), 1, sym_comment, - [134166] = 4, + [137132] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8522), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(4916), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - STATE(4935), 1, + ACTIONS(1623), 1, + sym__entry_separator, + STATE(1481), 1, + aux_sym__types_body_repeat2, + STATE(5067), 1, sym_comment, - [134179] = 4, + [137145] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(886), 1, + ACTIONS(1982), 1, anon_sym_LBRACE, - ACTIONS(1734), 1, + ACTIONS(1992), 1, sym__unquoted_pattern, - STATE(4936), 1, + STATE(5068), 1, sym_comment, - [134192] = 3, + [137158] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4937), 1, + ACTIONS(1695), 1, + sym__unquoted_pattern, + ACTIONS(2572), 1, + anon_sym_LBRACE, + STATE(5069), 1, sym_comment, - ACTIONS(8524), 2, - sym__newline, - anon_sym_SEMI, - [134203] = 4, + [137171] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3786), 1, + ACTIONS(3898), 1, anon_sym_LBRACE, - STATE(3242), 1, + STATE(4606), 1, sym_block, - STATE(4938), 1, + STATE(5070), 1, sym_comment, - [134216] = 4, + [137184] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7542), 1, - anon_sym_RBRACK, - ACTIONS(7550), 1, + ACTIONS(1012), 1, + anon_sym_RBRACE, + ACTIONS(1226), 1, sym__entry_separator, - STATE(4939), 1, + STATE(5071), 1, sym_comment, - [134229] = 4, + [137197] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2682), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2684), 1, - anon_sym_COLON2, - STATE(4940), 1, + ACTIONS(8772), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4948), 1, + aux_sym__unquoted_with_expr_repeat1, + STATE(5072), 1, sym_comment, - [134242] = 4, + [137210] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2541), 1, - sym__entry_separator, - ACTIONS(2543), 1, - anon_sym_RBRACE, - STATE(4941), 1, + ACTIONS(8774), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4949), 1, + aux_sym__unquoted_with_expr_repeat1, + STATE(5073), 1, sym_comment, - [134255] = 4, - ACTIONS(3), 1, + [137223] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1973), 1, - anon_sym_LBRACE, - ACTIONS(1983), 1, - sym__unquoted_pattern, - STATE(4942), 1, + ACTIONS(5079), 1, + sym__entry_separator, + STATE(2428), 1, + aux_sym__types_body_repeat2, + STATE(5074), 1, sym_comment, - [134268] = 4, + [137236] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8526), 1, - anon_sym_RBRACK, - ACTIONS(8528), 1, + ACTIONS(1020), 1, + anon_sym_RBRACE, + ACTIONS(1234), 1, sym__entry_separator, - STATE(4943), 1, + STATE(5075), 1, sym_comment, - [134281] = 4, + [137249] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3808), 1, + ACTIONS(3898), 1, anon_sym_LBRACE, - STATE(4363), 1, + STATE(4607), 1, sym_block, - STATE(4944), 1, + STATE(5076), 1, sym_comment, - [134294] = 4, + [137262] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3808), 1, - anon_sym_LBRACE, - STATE(4364), 1, - sym_block, - STATE(4945), 1, + ACTIONS(6657), 1, + anon_sym_DOLLAR2, + ACTIONS(8776), 1, + anon_sym_RBRACK, + STATE(5077), 1, sym_comment, - [134307] = 4, - ACTIONS(3), 1, + [137275] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2648), 1, - anon_sym_LBRACE, - ACTIONS(2654), 1, - sym__unquoted_pattern, - STATE(4946), 1, + ACTIONS(8778), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(4935), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + STATE(5078), 1, sym_comment, - [134320] = 4, - ACTIONS(3), 1, + [137288] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3786), 1, - anon_sym_LBRACE, - STATE(4563), 1, - sym_block, - STATE(4947), 1, + ACTIONS(5442), 1, + sym__entry_separator, + ACTIONS(6459), 1, + anon_sym_RBRACK, + STATE(5079), 1, sym_comment, - [134333] = 3, + [137301] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8530), 1, - anon_sym_GT2, - STATE(4948), 1, + ACTIONS(8780), 1, + anon_sym_RBRACE, + STATE(5080), 1, sym_comment, - [134343] = 3, - ACTIONS(103), 1, + [137311] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8532), 1, - aux_sym_cmd_identifier_token6, - STATE(4949), 1, + ACTIONS(8782), 1, + anon_sym_BQUOTE2, + STATE(5081), 1, sym_comment, - [134353] = 3, + [137321] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(313), 1, - anon_sym_RBRACE, - STATE(4950), 1, + ACTIONS(8784), 1, + sym_identifier, + STATE(5082), 1, sym_comment, - [134363] = 3, + [137331] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8534), 1, + ACTIONS(8786), 1, anon_sym_RBRACK, - STATE(4951), 1, + STATE(5083), 1, sym_comment, - [134373] = 3, + [137341] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8536), 1, + ACTIONS(8788), 1, anon_sym_RPAREN, - STATE(4952), 1, + STATE(5084), 1, sym_comment, - [134383] = 3, - ACTIONS(3), 1, + [137351] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8538), 1, - anon_sym_EQ, - STATE(4953), 1, + ACTIONS(8661), 1, + aux_sym__record_key_token1, + STATE(5085), 1, sym_comment, - [134393] = 3, + [137361] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8540), 1, - anon_sym_EQ_GT, - STATE(4954), 1, + ACTIONS(8790), 1, + anon_sym_RBRACE, + STATE(5086), 1, sym_comment, - [134403] = 3, + [137371] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8542), 1, - anon_sym_RBRACE, - STATE(4955), 1, + ACTIONS(8792), 1, + anon_sym_RBRACK, + STATE(5087), 1, sym_comment, - [134413] = 3, + [137381] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8544), 1, - aux_sym_cmd_identifier_token6, - STATE(4956), 1, + ACTIONS(8794), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(5088), 1, sym_comment, - [134423] = 3, + [137391] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8546), 1, + ACTIONS(8796), 1, sym_raw_string_end, - STATE(4957), 1, + STATE(5089), 1, sym_comment, - [134433] = 3, + [137401] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2527), 1, - sym__unquoted_pattern_in_record, - STATE(4958), 1, + ACTIONS(8798), 1, + anon_sym_RBRACK, + STATE(5090), 1, + sym_comment, + [137411] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1917), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(5091), 1, sym_comment, - [134443] = 3, + [137421] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2654), 1, - sym__unquoted_pattern, - STATE(4959), 1, + ACTIONS(8800), 1, + anon_sym_RPAREN, + STATE(5092), 1, sym_comment, - [134453] = 3, + [137431] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8548), 1, + ACTIONS(8802), 1, anon_sym_RBRACK, - STATE(4960), 1, + STATE(5093), 1, sym_comment, - [134463] = 3, + [137441] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8550), 1, - anon_sym_RPAREN2, - STATE(4961), 1, + ACTIONS(8804), 1, + anon_sym_RPAREN, + STATE(5094), 1, sym_comment, - [134473] = 3, + [137451] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8552), 1, + ACTIONS(8806), 1, anon_sym_RBRACE, - STATE(4962), 1, + STATE(5095), 1, sym_comment, - [134483] = 3, + [137461] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8554), 1, - anon_sym_DQUOTE, - STATE(4963), 1, + ACTIONS(8808), 1, + anon_sym_in, + STATE(5096), 1, sym_comment, - [134493] = 3, + [137471] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8556), 1, + ACTIONS(8810), 1, anon_sym_DQUOTE, - STATE(4964), 1, + STATE(5097), 1, sym_comment, - [134503] = 3, + [137481] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8558), 1, + ACTIONS(8812), 1, anon_sym_SQUOTE2, - STATE(4965), 1, + STATE(5098), 1, sym_comment, - [134513] = 3, + [137491] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8560), 1, + ACTIONS(8814), 1, anon_sym_BQUOTE2, - STATE(4966), 1, + STATE(5099), 1, sym_comment, - [134523] = 3, + [137501] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8562), 1, + ACTIONS(8816), 1, anon_sym_RPAREN, - STATE(4967), 1, + STATE(5100), 1, sym_comment, - [134533] = 3, + [137511] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8564), 1, - anon_sym_RBRACE, - STATE(4968), 1, + ACTIONS(8818), 1, + anon_sym_GT2, + STATE(5101), 1, sym_comment, - [134543] = 3, + [137521] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8566), 1, - sym__table_head_separator, - STATE(4969), 1, + ACTIONS(1695), 1, + sym__unquoted_pattern_in_record, + STATE(5102), 1, sym_comment, - [134553] = 3, + [137531] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(303), 1, - anon_sym_RBRACE, - STATE(4970), 1, + ACTIONS(8820), 1, + sym_identifier, + STATE(5103), 1, sym_comment, - [134563] = 3, + [137541] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8568), 1, + ACTIONS(8822), 1, sym_raw_string_end, - STATE(4971), 1, + STATE(5104), 1, sym_comment, - [134573] = 3, + [137551] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8570), 1, - anon_sym_DQUOTE, - STATE(4972), 1, + ACTIONS(2960), 1, + anon_sym_LBRACK2, + STATE(5105), 1, sym_comment, - [134583] = 3, + [137561] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8572), 1, - anon_sym_SQUOTE2, - STATE(4973), 1, + ACTIONS(313), 1, + anon_sym_RBRACE, + STATE(5106), 1, sym_comment, - [134593] = 3, + [137571] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8574), 1, - anon_sym_GT2, - STATE(4974), 1, + ACTIONS(307), 1, + anon_sym_RBRACE, + STATE(5107), 1, sym_comment, - [134603] = 3, + [137581] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8576), 1, + ACTIONS(8824), 1, anon_sym_RBRACK, - STATE(4975), 1, + STATE(5108), 1, sym_comment, - [134613] = 3, + [137591] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8578), 1, - anon_sym_BQUOTE2, - STATE(4976), 1, + ACTIONS(8826), 1, + anon_sym_RPAREN, + STATE(5109), 1, sym_comment, - [134623] = 3, + [137601] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8580), 1, + ACTIONS(8828), 1, anon_sym_RBRACE, - STATE(4977), 1, + STATE(5110), 1, sym_comment, - [134633] = 3, - ACTIONS(3), 1, + [137611] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8582), 1, - anon_sym_RBRACK, - STATE(4978), 1, + ACTIONS(8830), 1, + aux_sym_cmd_identifier_token6, + STATE(5111), 1, sym_comment, - [134643] = 3, + [137621] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8584), 1, + ACTIONS(8832), 1, anon_sym_DQUOTE, - STATE(4979), 1, + STATE(5112), 1, sym_comment, - [134653] = 3, + [137631] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8586), 1, + ACTIONS(8834), 1, anon_sym_SQUOTE2, - STATE(4980), 1, + STATE(5113), 1, sym_comment, - [134663] = 3, + [137641] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8588), 1, + ACTIONS(8836), 1, anon_sym_BQUOTE2, - STATE(4981), 1, + STATE(5114), 1, sym_comment, - [134673] = 3, + [137651] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8590), 1, + ACTIONS(8838), 1, anon_sym_RPAREN, - STATE(4982), 1, + STATE(5115), 1, sym_comment, - [134683] = 3, + [137661] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8592), 1, - anon_sym_GT2, - STATE(4983), 1, + ACTIONS(8840), 1, + anon_sym_RBRACE, + STATE(5116), 1, sym_comment, - [134693] = 3, + [137671] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8594), 1, - anon_sym_GT2, - STATE(4984), 1, + ACTIONS(289), 1, + anon_sym_RBRACE, + STATE(5117), 1, sym_comment, - [134703] = 3, + [137681] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2658), 1, - sym__unquoted_pattern, - STATE(4985), 1, + ACTIONS(8842), 1, + anon_sym_RBRACE, + STATE(5118), 1, sym_comment, - [134713] = 3, + [137691] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8596), 1, + ACTIONS(8844), 1, sym_raw_string_end, - STATE(4986), 1, + STATE(5119), 1, sym_comment, - [134723] = 3, + [137701] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8598), 1, - sym_raw_string_end, - STATE(4987), 1, + ACTIONS(8846), 1, + anon_sym_RBRACE, + STATE(5120), 1, sym_comment, - [134733] = 3, + [137711] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8600), 1, - anon_sym_SQUOTE2, - STATE(4988), 1, + ACTIONS(8848), 1, + sym__table_head_separator, + STATE(5121), 1, sym_comment, - [134743] = 3, + [137721] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8602), 1, - anon_sym_BQUOTE2, - STATE(4989), 1, + ACTIONS(8850), 1, + anon_sym_RBRACK, + STATE(5122), 1, sym_comment, - [134753] = 3, + [137731] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8604), 1, + ACTIONS(8852), 1, anon_sym_RBRACK, - STATE(4990), 1, + STATE(5123), 1, sym_comment, - [134763] = 3, + [137741] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7458), 1, - sym__unquoted_pattern, - STATE(4991), 1, + ACTIONS(8854), 1, + anon_sym_LBRACE, + STATE(5124), 1, sym_comment, - [134773] = 3, + [137751] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8606), 1, + ACTIONS(8856), 1, anon_sym_DQUOTE, - STATE(4992), 1, + STATE(5125), 1, sym_comment, - [134783] = 3, + [137761] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8608), 1, + ACTIONS(8858), 1, anon_sym_SQUOTE2, - STATE(4993), 1, + STATE(5126), 1, sym_comment, - [134793] = 3, + [137771] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8610), 1, + ACTIONS(8860), 1, anon_sym_BQUOTE2, - STATE(4994), 1, + STATE(5127), 1, sym_comment, - [134803] = 3, - ACTIONS(103), 1, + [137781] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8612), 1, - aux_sym_cmd_identifier_token6, - STATE(4995), 1, + ACTIONS(1637), 1, + sym__unquoted_pattern, + STATE(5128), 1, sym_comment, - [134813] = 3, + [137791] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8614), 1, - anon_sym_RPAREN, - STATE(4996), 1, + ACTIONS(8862), 1, + anon_sym_DQUOTE, + STATE(5129), 1, sym_comment, - [134823] = 3, + [137801] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8616), 1, + ACTIONS(8864), 1, sym_raw_string_end, - STATE(4997), 1, + STATE(5130), 1, sym_comment, - [134833] = 3, + [137811] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8618), 1, - anon_sym_RBRACE, - STATE(4998), 1, + ACTIONS(8866), 1, + anon_sym_SQUOTE2, + STATE(5131), 1, sym_comment, - [134843] = 3, - ACTIONS(103), 1, + [137821] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2829), 1, - aux_sym_cmd_identifier_token2, - STATE(4999), 1, + ACTIONS(8868), 1, + anon_sym_BQUOTE2, + STATE(5132), 1, sym_comment, - [134853] = 3, + [137831] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1862), 1, - sym__table_head_separator, - STATE(5000), 1, + ACTIONS(8870), 1, + anon_sym_DQUOTE, + STATE(5133), 1, sym_comment, - [134863] = 3, + [137841] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8620), 1, + ACTIONS(8872), 1, anon_sym_RBRACK, - STATE(5001), 1, + STATE(5134), 1, sym_comment, - [134873] = 3, + [137851] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8622), 1, - anon_sym_RBRACE, - STATE(5002), 1, + ACTIONS(8874), 1, + anon_sym_SQUOTE2, + STATE(5135), 1, sym_comment, - [134883] = 3, + [137861] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8624), 1, + ACTIONS(8876), 1, anon_sym_DQUOTE, - STATE(5003), 1, + STATE(5136), 1, sym_comment, - [134893] = 3, + [137871] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8626), 1, + ACTIONS(8878), 1, anon_sym_SQUOTE2, - STATE(5004), 1, + STATE(5137), 1, sym_comment, - [134903] = 3, + [137881] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8628), 1, + ACTIONS(8880), 1, anon_sym_BQUOTE2, - STATE(5005), 1, + STATE(5138), 1, sym_comment, - [134913] = 3, - ACTIONS(3), 1, + [137891] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8630), 1, - anon_sym_RBRACK, - STATE(5006), 1, + ACTIONS(8882), 1, + aux_sym_cmd_identifier_token6, + STATE(5139), 1, sym_comment, - [134923] = 3, + [137901] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8632), 1, + ACTIONS(8884), 1, anon_sym_RBRACE, - STATE(5007), 1, + STATE(5140), 1, sym_comment, - [134933] = 3, + [137911] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8634), 1, + ACTIONS(8886), 1, sym_raw_string_end, - STATE(5008), 1, - sym_comment, - [134943] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8636), 1, - anon_sym_RBRACE, - STATE(5009), 1, + STATE(5141), 1, sym_comment, - [134953] = 3, + [137921] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2646), 1, - sym__unquoted_pattern_in_record, - STATE(5010), 1, + ACTIONS(8888), 1, + anon_sym_RBRACK, + STATE(5142), 1, sym_comment, - [134963] = 3, + [137931] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8638), 1, - anon_sym_EQ, - STATE(5011), 1, + ACTIONS(8890), 1, + anon_sym_BQUOTE2, + STATE(5143), 1, sym_comment, - [134973] = 3, - ACTIONS(3), 1, + [137941] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1679), 1, - sym__unquoted_pattern_in_record, - STATE(5012), 1, + ACTIONS(1905), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(5144), 1, sym_comment, - [134983] = 3, + [137951] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8640), 1, + ACTIONS(8892), 1, anon_sym_DQUOTE, - STATE(5013), 1, + STATE(5145), 1, sym_comment, - [134993] = 3, + [137961] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8642), 1, + ACTIONS(8894), 1, anon_sym_SQUOTE2, - STATE(5014), 1, + STATE(5146), 1, sym_comment, - [135003] = 3, + [137971] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8644), 1, + ACTIONS(8896), 1, anon_sym_BQUOTE2, - STATE(5015), 1, + STATE(5147), 1, sym_comment, - [135013] = 3, - ACTIONS(103), 1, + [137981] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1880), 1, - aux_sym__unquoted_with_expr_token1, - STATE(5016), 1, + ACTIONS(8898), 1, + anon_sym_GT2, + STATE(5148), 1, sym_comment, - [135023] = 3, + [137991] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8646), 1, + ACTIONS(309), 1, anon_sym_RBRACE, - STATE(5017), 1, + STATE(5149), 1, sym_comment, - [135033] = 3, + [138001] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8648), 1, + ACTIONS(8900), 1, sym_raw_string_end, - STATE(5018), 1, + STATE(5150), 1, sym_comment, - [135043] = 3, + [138011] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8650), 1, - aux_sym_comment_token1, - STATE(5019), 1, + ACTIONS(8902), 1, + aux_sym_cmd_identifier_token6, + STATE(5151), 1, sym_comment, - [135053] = 3, + [138021] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8652), 1, + ACTIONS(8904), 1, anon_sym_DQUOTE, - STATE(5020), 1, + STATE(5152), 1, sym_comment, - [135063] = 3, + [138031] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8654), 1, + ACTIONS(8906), 1, anon_sym_SQUOTE2, - STATE(5021), 1, + STATE(5153), 1, sym_comment, - [135073] = 3, + [138041] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8656), 1, + ACTIONS(8908), 1, anon_sym_BQUOTE2, - STATE(5022), 1, + STATE(5154), 1, sym_comment, - [135083] = 3, + [138051] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8658), 1, - anon_sym_RBRACK, - STATE(5023), 1, + ACTIONS(8910), 1, + anon_sym_LBRACE, + STATE(5155), 1, sym_comment, - [135093] = 3, + [138061] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8660), 1, - anon_sym_RPAREN, - STATE(5024), 1, + ACTIONS(2756), 1, + anon_sym_COLON2, + STATE(5156), 1, sym_comment, - [135103] = 3, + [138071] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8662), 1, + ACTIONS(8912), 1, sym_raw_string_end, - STATE(5025), 1, + STATE(5157), 1, sym_comment, - [135113] = 3, + [138081] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8664), 1, - sym_identifier, - STATE(5026), 1, + ACTIONS(8914), 1, + anon_sym_EQ, + STATE(5158), 1, sym_comment, - [135123] = 3, + [138091] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8666), 1, + ACTIONS(8916), 1, anon_sym_DQUOTE, - STATE(5027), 1, + STATE(5159), 1, sym_comment, - [135133] = 3, + [138101] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8668), 1, + ACTIONS(8918), 1, anon_sym_SQUOTE2, - STATE(5028), 1, + STATE(5160), 1, sym_comment, - [135143] = 3, + [138111] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8670), 1, + ACTIONS(8920), 1, anon_sym_BQUOTE2, - STATE(5029), 1, + STATE(5161), 1, sym_comment, - [135153] = 3, - ACTIONS(103), 1, + [138121] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8672), 1, - aux_sym_cmd_identifier_token6, - STATE(5030), 1, + ACTIONS(8910), 1, + anon_sym_LBRACE, + STATE(5162), 1, sym_comment, - [135163] = 3, + [138131] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8674), 1, - anon_sym_RBRACE, - STATE(5031), 1, + ACTIONS(8222), 1, + anon_sym_LBRACE, + STATE(5163), 1, sym_comment, - [135173] = 3, + [138141] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8676), 1, + ACTIONS(8922), 1, sym_raw_string_end, - STATE(5032), 1, + STATE(5164), 1, sym_comment, - [135183] = 3, + [138151] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6779), 1, - sym__unquoted_pattern_in_record, - STATE(5033), 1, + ACTIONS(8924), 1, + anon_sym_DASH_GT, + STATE(5165), 1, sym_comment, - [135193] = 3, + [138161] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8678), 1, + ACTIONS(8926), 1, anon_sym_DQUOTE, - STATE(5034), 1, + STATE(5166), 1, sym_comment, - [135203] = 3, + [138171] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8680), 1, + ACTIONS(8928), 1, anon_sym_SQUOTE2, - STATE(5035), 1, + STATE(5167), 1, sym_comment, - [135213] = 3, + [138181] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8682), 1, + ACTIONS(8930), 1, anon_sym_BQUOTE2, - STATE(5036), 1, + STATE(5168), 1, sym_comment, - [135223] = 3, + [138191] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8684), 1, - anon_sym_RBRACE, - STATE(5037), 1, + ACTIONS(8932), 1, + anon_sym_RBRACK, + STATE(5169), 1, sym_comment, - [135233] = 3, + [138201] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8686), 1, - anon_sym_RPAREN, - STATE(5038), 1, + ACTIONS(2614), 1, + sym__unquoted_pattern, + STATE(5170), 1, sym_comment, - [135243] = 3, + [138211] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8688), 1, + ACTIONS(8934), 1, sym_raw_string_end, - STATE(5039), 1, + STATE(5171), 1, sym_comment, - [135253] = 3, + [138221] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(403), 1, - ts_builtin_sym_end, - STATE(5040), 1, + ACTIONS(8936), 1, + anon_sym_RBRACK, + STATE(5172), 1, sym_comment, - [135263] = 3, + [138231] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8690), 1, + ACTIONS(8938), 1, anon_sym_DQUOTE, - STATE(5041), 1, + STATE(5173), 1, sym_comment, - [135273] = 3, + [138241] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8692), 1, + ACTIONS(8940), 1, anon_sym_SQUOTE2, - STATE(5042), 1, + STATE(5174), 1, sym_comment, - [135283] = 3, + [138251] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8694), 1, + ACTIONS(8942), 1, anon_sym_BQUOTE2, - STATE(5043), 1, + STATE(5175), 1, sym_comment, - [135293] = 3, + [138261] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8696), 1, - anon_sym_RBRACE, - STATE(5044), 1, + ACTIONS(8944), 1, + anon_sym_LPAREN2, + STATE(5176), 1, sym_comment, - [135303] = 3, + [138271] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8698), 1, - anon_sym_RPAREN, - STATE(5045), 1, + ACTIONS(8946), 1, + anon_sym_GT2, + STATE(5177), 1, sym_comment, - [135313] = 3, + [138281] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8700), 1, + ACTIONS(8948), 1, sym_raw_string_end, - STATE(5046), 1, + STATE(5178), 1, sym_comment, - [135323] = 3, - ACTIONS(103), 1, + [138291] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8702), 1, - aux_sym_cmd_identifier_token2, - STATE(5047), 1, + ACTIONS(6513), 1, + anon_sym_EQ, + STATE(5179), 1, sym_comment, - [135333] = 3, + [138301] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8704), 1, + ACTIONS(8950), 1, anon_sym_DQUOTE, - STATE(5048), 1, + STATE(5180), 1, sym_comment, - [135343] = 3, + [138311] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8706), 1, + ACTIONS(8952), 1, anon_sym_SQUOTE2, - STATE(5049), 1, + STATE(5181), 1, sym_comment, - [135353] = 3, + [138321] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8708), 1, + ACTIONS(8954), 1, anon_sym_BQUOTE2, - STATE(5050), 1, + STATE(5182), 1, sym_comment, - [135363] = 3, + [138331] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8710), 1, + ACTIONS(8956), 1, anon_sym_RBRACE, - STATE(5051), 1, + STATE(5183), 1, sym_comment, - [135373] = 3, + [138341] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8712), 1, + ACTIONS(8958), 1, sym_raw_string_end, - STATE(5052), 1, + STATE(5184), 1, sym_comment, - [135383] = 3, + [138351] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8714), 1, - anon_sym_LBRACE, - STATE(5053), 1, + ACTIONS(8960), 1, + anon_sym_RPAREN, + STATE(5185), 1, sym_comment, - [135393] = 3, + [138361] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8716), 1, + ACTIONS(8962), 1, anon_sym_DQUOTE, - STATE(5054), 1, + STATE(5186), 1, sym_comment, - [135403] = 3, + [138371] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8718), 1, + ACTIONS(8964), 1, anon_sym_SQUOTE2, - STATE(5055), 1, + STATE(5187), 1, sym_comment, - [135413] = 3, + [138381] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8720), 1, + ACTIONS(8966), 1, anon_sym_BQUOTE2, - STATE(5056), 1, + STATE(5188), 1, sym_comment, - [135423] = 3, + [138391] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(297), 1, - anon_sym_RBRACE, - STATE(5057), 1, + ACTIONS(8968), 1, + anon_sym_EQ, + STATE(5189), 1, sym_comment, - [135433] = 3, + [138401] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8722), 1, + ACTIONS(8970), 1, sym_raw_string_end, - STATE(5058), 1, + STATE(5190), 1, sym_comment, - [135443] = 3, + [138411] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8724), 1, - anon_sym_RPAREN, - STATE(5059), 1, + ACTIONS(8972), 1, + anon_sym_RBRACK, + STATE(5191), 1, sym_comment, - [135453] = 3, + [138421] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8726), 1, + ACTIONS(8974), 1, anon_sym_DQUOTE, - STATE(5060), 1, + STATE(5192), 1, sym_comment, - [135463] = 3, + [138431] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8728), 1, + ACTIONS(8976), 1, anon_sym_SQUOTE2, - STATE(5061), 1, + STATE(5193), 1, sym_comment, - [135473] = 3, + [138441] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8730), 1, + ACTIONS(8978), 1, anon_sym_BQUOTE2, - STATE(5062), 1, + STATE(5194), 1, sym_comment, - [135483] = 3, + [138451] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8714), 1, - anon_sym_LBRACE, - STATE(5063), 1, + ACTIONS(8980), 1, + anon_sym_RPAREN, + STATE(5195), 1, sym_comment, - [135493] = 3, + [138461] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8732), 1, + ACTIONS(8982), 1, sym_raw_string_content, - STATE(5064), 1, + STATE(5196), 1, sym_comment, - [135503] = 3, + [138471] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8734), 1, - anon_sym_RPAREN, - STATE(5065), 1, + ACTIONS(8984), 1, + anon_sym_RBRACE, + STATE(5197), 1, sym_comment, - [135513] = 3, + [138481] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8736), 1, - anon_sym_DASH_GT, - STATE(5066), 1, + ACTIONS(8986), 1, + anon_sym_RBRACK, + STATE(5198), 1, sym_comment, - [135523] = 3, + [138491] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8738), 1, - anon_sym_GT2, - STATE(5067), 1, + ACTIONS(8988), 1, + anon_sym_RPAREN, + STATE(5199), 1, sym_comment, - [135533] = 3, + [138501] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2092), 1, + ACTIONS(2168), 1, anon_sym_LBRACK2, - STATE(5068), 1, + STATE(5200), 1, sym_comment, - [135543] = 3, + [138511] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8740), 1, + ACTIONS(8990), 1, aux_sym__str_single_quotes_token1, - STATE(5069), 1, + STATE(5201), 1, sym_comment, - [135553] = 3, + [138521] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8742), 1, + ACTIONS(8992), 1, aux_sym__str_back_ticks_token1, - STATE(5070), 1, + STATE(5202), 1, sym_comment, - [135563] = 3, + [138531] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1635), 1, - sym__unquoted_pattern, - STATE(5071), 1, + ACTIONS(8994), 1, + anon_sym_LBRACE, + STATE(5203), 1, sym_comment, - [135573] = 3, + [138541] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8744), 1, - aux_sym_cmd_identifier_token6, - STATE(5072), 1, + ACTIONS(1905), 1, + aux_sym__unquoted_with_expr_token1, + STATE(5204), 1, sym_comment, - [135583] = 3, + [138551] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8746), 1, + ACTIONS(8854), 1, anon_sym_LBRACE, - STATE(5073), 1, + STATE(5205), 1, sym_comment, - [135593] = 3, + [138561] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8746), 1, - anon_sym_LBRACE, - STATE(5074), 1, + ACTIONS(8996), 1, + anon_sym_RPAREN, + STATE(5206), 1, sym_comment, - [135603] = 3, + [138571] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8748), 1, - anon_sym_LBRACE, - STATE(5075), 1, + ACTIONS(8998), 1, + anon_sym_RBRACE, + STATE(5207), 1, sym_comment, - [135613] = 3, - ACTIONS(3), 1, + [138581] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8750), 1, - anon_sym_RBRACE, - STATE(5076), 1, + ACTIONS(9000), 1, + aux_sym_cmd_identifier_token6, + STATE(5208), 1, sym_comment, - [135623] = 3, + [138591] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8752), 1, - sym_raw_string_end, - STATE(5077), 1, + ACTIONS(9002), 1, + anon_sym_LBRACE, + STATE(5209), 1, sym_comment, - [135633] = 3, + [138601] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8040), 1, + ACTIONS(8340), 1, anon_sym_LBRACE, - STATE(5078), 1, + STATE(5210), 1, sym_comment, - [135643] = 3, + [138611] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8754), 1, + ACTIONS(9004), 1, anon_sym_LBRACE, - STATE(5079), 1, + STATE(5211), 1, sym_comment, - [135653] = 3, + [138621] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8756), 1, + ACTIONS(9006), 1, anon_sym_RBRACK, - STATE(5080), 1, + STATE(5212), 1, sym_comment, - [135663] = 3, + [138631] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8758), 1, + ACTIONS(9008), 1, anon_sym_RBRACK, - STATE(5081), 1, + STATE(5213), 1, sym_comment, - [135673] = 3, + [138641] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8760), 1, + ACTIONS(9010), 1, anon_sym_RBRACE, - STATE(5082), 1, + STATE(5214), 1, sym_comment, - [135683] = 3, - ACTIONS(103), 1, + [138651] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8762), 1, - aux_sym_cmd_identifier_token6, - STATE(5083), 1, + ACTIONS(9012), 1, + anon_sym_RBRACE, + STATE(5215), 1, sym_comment, - [135693] = 3, + [138661] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8764), 1, - anon_sym_RBRACK, - STATE(5084), 1, + ACTIONS(9014), 1, + anon_sym_COLON2, + STATE(5216), 1, sym_comment, - [135703] = 3, + [138671] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8766), 1, + ACTIONS(9016), 1, anon_sym_RPAREN, - STATE(5085), 1, + STATE(5217), 1, sym_comment, - [135713] = 3, - ACTIONS(3), 1, + [138681] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8768), 1, - anon_sym_GT2, - STATE(5086), 1, + ACTIONS(9018), 1, + aux_sym_cmd_identifier_token2, + STATE(5218), 1, sym_comment, - [135723] = 3, + [138691] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2620), 1, - sym__table_head_separator, - STATE(5087), 1, + ACTIONS(1695), 1, + sym__unquoted_pattern, + STATE(5219), 1, sym_comment, - [135733] = 3, + [138701] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8770), 1, + ACTIONS(9020), 1, anon_sym_RBRACE, - STATE(5088), 1, + STATE(5220), 1, sym_comment, - [135743] = 3, + [138711] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8772), 1, - anon_sym_GT2, - STATE(5089), 1, + ACTIONS(9022), 1, + anon_sym_RBRACK, + STATE(5221), 1, sym_comment, - [135753] = 3, + [138721] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8774), 1, + ACTIONS(9024), 1, sym__space, - STATE(5090), 1, + STATE(5222), 1, sym_comment, - [135763] = 3, - ACTIONS(3), 1, + [138731] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8776), 1, - anon_sym_RBRACE, - STATE(5091), 1, + ACTIONS(9026), 1, + aux_sym_cmd_identifier_token2, + STATE(5223), 1, sym_comment, - [135773] = 3, + [138741] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5071), 1, - sym__unquoted_pattern, - STATE(5092), 1, + ACTIONS(9028), 1, + anon_sym_RBRACE, + STATE(5224), 1, sym_comment, - [135783] = 3, + [138751] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8778), 1, - anon_sym_GT2, - STATE(5093), 1, + ACTIONS(9030), 1, + anon_sym_RBRACK, + STATE(5225), 1, sym_comment, - [135793] = 3, - ACTIONS(3), 1, + [138761] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8780), 1, - anon_sym_RBRACK, - STATE(5094), 1, + ACTIONS(9032), 1, + aux_sym_cmd_identifier_token6, + STATE(5226), 1, sym_comment, - [135803] = 3, + [138771] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8782), 1, - anon_sym_RBRACE, - STATE(5095), 1, + ACTIONS(8260), 1, + anon_sym_EQ_GT, + STATE(5227), 1, sym_comment, - [135813] = 3, + [138781] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8784), 1, - anon_sym_RBRACK, - STATE(5096), 1, + ACTIONS(9034), 1, + anon_sym_RPAREN, + STATE(5228), 1, sym_comment, - [135823] = 3, + [138791] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8786), 1, - anon_sym_GT2, - STATE(5097), 1, + ACTIONS(9036), 1, + anon_sym_RBRACE, + STATE(5229), 1, sym_comment, - [135833] = 3, + [138801] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8788), 1, + ACTIONS(9038), 1, anon_sym_RBRACK, - STATE(5098), 1, + STATE(5230), 1, sym_comment, - [135843] = 3, + [138811] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8790), 1, + ACTIONS(9040), 1, anon_sym_RBRACK, - STATE(5099), 1, + STATE(5231), 1, sym_comment, - [135853] = 3, + [138821] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8792), 1, + ACTIONS(9042), 1, anon_sym_EQ, - STATE(5100), 1, + STATE(5232), 1, sym_comment, - [135863] = 3, + [138831] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2614), 1, - sym__unquoted_pattern, - STATE(5101), 1, + ACTIONS(9044), 1, + anon_sym_RBRACE, + STATE(5233), 1, sym_comment, - [135873] = 3, + [138841] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8794), 1, - anon_sym_RPAREN, - STATE(5102), 1, + ACTIONS(9046), 1, + anon_sym_RBRACE, + STATE(5234), 1, sym_comment, - [135883] = 3, + [138851] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8796), 1, - anon_sym_RPAREN, - STATE(5103), 1, + ACTIONS(9048), 1, + anon_sym_RBRACE, + STATE(5235), 1, sym_comment, - [135893] = 3, + [138861] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(315), 1, - anon_sym_RBRACE, - STATE(5104), 1, + ACTIONS(9050), 1, + anon_sym_PIPE, + STATE(5236), 1, sym_comment, - [135903] = 3, + [138871] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8798), 1, - sym_raw_string_end, - STATE(5105), 1, + ACTIONS(9052), 1, + anon_sym_RPAREN, + STATE(5237), 1, sym_comment, - [135913] = 3, + [138881] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8800), 1, - anon_sym_RBRACE, - STATE(5106), 1, + ACTIONS(7007), 1, + sym__unquoted_pattern_in_record, + STATE(5238), 1, sym_comment, - [135923] = 3, + [138891] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8802), 1, - anon_sym_GT2, - STATE(5107), 1, + ACTIONS(9054), 1, + anon_sym_RPAREN, + STATE(5239), 1, sym_comment, - [135933] = 3, + [138901] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8804), 1, - ts_builtin_sym_end, - STATE(5108), 1, + ACTIONS(9056), 1, + sym_raw_string_end, + STATE(5240), 1, sym_comment, - [135943] = 3, + [138911] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8806), 1, + ACTIONS(9058), 1, anon_sym_DASH_GT, - STATE(5109), 1, + STATE(5241), 1, sym_comment, - [135953] = 3, + [138921] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8808), 1, + ACTIONS(9060), 1, anon_sym_RBRACK, - STATE(5110), 1, + STATE(5242), 1, sym_comment, - [135963] = 3, + [138931] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8810), 1, + ACTIONS(9062), 1, anon_sym_EQ, - STATE(5111), 1, + STATE(5243), 1, sym_comment, - [135973] = 3, + [138941] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1679), 1, - sym__unquoted_pattern, - STATE(5112), 1, + ACTIONS(9064), 1, + anon_sym_EQ_GT, + STATE(5244), 1, sym_comment, - [135983] = 3, + [138951] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6533), 1, + ACTIONS(6827), 1, anon_sym_EQ, - STATE(5113), 1, + STATE(5245), 1, sym_comment, - [135993] = 3, + [138961] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2834), 1, - anon_sym_LBRACK2, - STATE(5114), 1, + ACTIONS(1887), 1, + sym__table_head_separator, + STATE(5246), 1, sym_comment, - [136003] = 3, + [138971] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8812), 1, + ACTIONS(9066), 1, anon_sym_GT2, - STATE(5115), 1, + STATE(5247), 1, sym_comment, - [136013] = 3, + [138981] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8814), 1, - anon_sym_RBRACE, - STATE(5116), 1, + ACTIONS(377), 1, + ts_builtin_sym_end, + STATE(5248), 1, sym_comment, - [136023] = 3, - ACTIONS(3), 1, + [138991] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8816), 1, - sym_identifier, - STATE(5117), 1, + ACTIONS(9068), 1, + aux_sym_shebang_token1, + STATE(5249), 1, sym_comment, - [136033] = 3, + [139001] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8818), 1, - anon_sym_DQUOTE, - STATE(5118), 1, + ACTIONS(5061), 1, + sym__unquoted_pattern, + STATE(5250), 1, sym_comment, - [136043] = 3, - ACTIONS(3), 1, + [139011] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8820), 1, - anon_sym_SQUOTE2, - STATE(5119), 1, + ACTIONS(9070), 1, + aux_sym_cmd_identifier_token6, + STATE(5251), 1, sym_comment, - [136053] = 3, + [139021] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8822), 1, - sym_raw_string_content, - STATE(5120), 1, + ACTIONS(9072), 1, + anon_sym_RBRACE, + STATE(5252), 1, sym_comment, - [136063] = 3, + [139031] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8824), 1, + ACTIONS(9074), 1, anon_sym_RBRACE, - STATE(5121), 1, + STATE(5253), 1, sym_comment, - [136073] = 3, + [139041] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8826), 1, - anon_sym_RBRACK, - STATE(5122), 1, - sym_comment, - [136083] = 3, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1894), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(5123), 1, + ACTIONS(9076), 1, + anon_sym_RPAREN, + STATE(5254), 1, sym_comment, - [136093] = 3, + [139051] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8828), 1, - ts_builtin_sym_end, - STATE(5124), 1, + ACTIONS(6509), 1, + anon_sym_EQ, + STATE(5255), 1, sym_comment, - [136103] = 3, + [139061] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1983), 1, - sym__unquoted_pattern, - STATE(5125), 1, + ACTIONS(9078), 1, + anon_sym_RBRACE, + STATE(5256), 1, sym_comment, - [136113] = 3, + [139071] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5255), 1, + ACTIONS(5432), 1, anon_sym_EQ2, - STATE(5126), 1, + STATE(5257), 1, sym_comment, - [136123] = 3, + [139081] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8830), 1, + ACTIONS(9080), 1, anon_sym_RPAREN, - STATE(5127), 1, + STATE(5258), 1, sym_comment, - [136133] = 3, + [139091] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8832), 1, - anon_sym_RBRACE, - STATE(5128), 1, - sym_comment, - [136143] = 3, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8834), 1, - aux_sym_cmd_identifier_token2, - STATE(5129), 1, + ACTIONS(9082), 1, + anon_sym_RBRACK, + STATE(5259), 1, sym_comment, - [136153] = 3, + [139101] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8836), 1, - anon_sym_EQ, - STATE(5130), 1, + ACTIONS(9084), 1, + sym_identifier, + STATE(5260), 1, sym_comment, - [136163] = 3, + [139111] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8838), 1, - anon_sym_DQUOTE, - STATE(5131), 1, + ACTIONS(9086), 1, + anon_sym_RBRACK, + STATE(5261), 1, sym_comment, - [136173] = 3, - ACTIONS(103), 1, + [139121] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8840), 1, - aux_sym_cmd_identifier_token6, - STATE(5132), 1, + ACTIONS(1992), 1, + sym__unquoted_pattern, + STATE(5262), 1, sym_comment, - [136183] = 3, + [139131] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8842), 1, - anon_sym_LBRACE, - STATE(5133), 1, + ACTIONS(5257), 1, + anon_sym_EQ2, + STATE(5263), 1, sym_comment, - [136193] = 3, + [139141] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8844), 1, - anon_sym_SQUOTE2, - STATE(5134), 1, + ACTIONS(2634), 1, + sym__unquoted_pattern, + STATE(5264), 1, sym_comment, - [136203] = 3, + [139151] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8846), 1, - anon_sym_BQUOTE2, - STATE(5135), 1, + ACTIONS(9088), 1, + anon_sym_RPAREN, + STATE(5265), 1, sym_comment, - [136213] = 3, - ACTIONS(3), 1, + [139161] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8848), 1, - anon_sym_EQ, - STATE(5136), 1, + ACTIONS(1917), 1, + aux_sym__unquoted_with_expr_token1, + STATE(5266), 1, sym_comment, - [136223] = 3, + [139171] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8850), 1, - anon_sym_RBRACK, - STATE(5137), 1, + ACTIONS(9090), 1, + sym_raw_string_content, + STATE(5267), 1, sym_comment, - [136233] = 3, - ACTIONS(3), 1, + [139181] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8852), 1, - anon_sym_RBRACE, - STATE(5138), 1, + ACTIONS(9092), 1, + aux_sym_cmd_identifier_token6, + STATE(5268), 1, sym_comment, - [136243] = 3, + [139191] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(355), 1, - anon_sym_RPAREN2, - STATE(5139), 1, + ACTIONS(9094), 1, + anon_sym_LT, + STATE(5269), 1, sym_comment, - [136253] = 3, + [139201] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6479), 1, - sym__unquoted_pattern_in_list, - STATE(5140), 1, + ACTIONS(357), 1, + anon_sym_RPAREN2, + STATE(5270), 1, sym_comment, - [136263] = 3, + [139211] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5281), 1, - anon_sym_EQ2, - STATE(5141), 1, + ACTIONS(9096), 1, + anon_sym_RBRACE, + STATE(5271), 1, sym_comment, - [136273] = 3, + [139221] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8854), 1, - anon_sym_RPAREN, - STATE(5142), 1, + ACTIONS(311), 1, + anon_sym_RBRACE, + STATE(5272), 1, sym_comment, - [136283] = 3, + [139231] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8436), 1, - anon_sym_LBRACE, - STATE(5143), 1, + ACTIONS(9098), 1, + anon_sym_RBRACK, + STATE(5273), 1, sym_comment, - [136293] = 3, - ACTIONS(103), 1, + [139241] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8856), 1, - aux_sym_cmd_identifier_token2, - STATE(5144), 1, + ACTIONS(9100), 1, + anon_sym_GT2, + STATE(5274), 1, sym_comment, - [136303] = 3, + [139251] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8858), 1, - aux_sym_cmd_identifier_token6, - STATE(5145), 1, + ACTIONS(9102), 1, + aux_sym__str_single_quotes_token1, + STATE(5275), 1, sym_comment, - [136313] = 3, + [139261] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8860), 1, - sym__table_head_separator, - STATE(5146), 1, + ACTIONS(9104), 1, + anon_sym_RBRACE, + STATE(5276), 1, sym_comment, - [136323] = 3, - ACTIONS(3), 1, + [139271] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8862), 1, - anon_sym_DQUOTE, - STATE(5147), 1, + ACTIONS(9106), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(5277), 1, sym_comment, - [136333] = 3, + [139281] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8864), 1, + ACTIONS(9108), 1, anon_sym_RBRACK, - STATE(5148), 1, + STATE(5278), 1, sym_comment, - [136343] = 3, + [139291] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8866), 1, + ACTIONS(9110), 1, anon_sym_RBRACE, - STATE(5149), 1, + STATE(5279), 1, sym_comment, - [136353] = 3, + [139301] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8868), 1, - anon_sym_RBRACK, - STATE(5150), 1, + ACTIONS(9112), 1, + anon_sym_GT2, + STATE(5280), 1, sym_comment, - [136363] = 3, - ACTIONS(103), 1, + [139311] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8870), 1, - aux_sym_shebang_token1, - STATE(5151), 1, + ACTIONS(5283), 1, + anon_sym_EQ2, + STATE(5281), 1, sym_comment, - [136373] = 3, + [139321] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8872), 1, - anon_sym_RBRACK, - STATE(5152), 1, + ACTIONS(9114), 1, + anon_sym_RBRACE, + STATE(5282), 1, sym_comment, - [136383] = 3, + [139331] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1772), 1, + ACTIONS(2622), 1, sym__unquoted_pattern_in_record, - STATE(5153), 1, + STATE(5283), 1, sym_comment, - [136393] = 3, + [139341] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8874), 1, - anon_sym_RBRACE, - STATE(5154), 1, + ACTIONS(9116), 1, + anon_sym_DQUOTE, + STATE(5284), 1, sym_comment, - [136403] = 3, + [139351] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8876), 1, - anon_sym_RBRACE, - STATE(5155), 1, + ACTIONS(9118), 1, + anon_sym_SQUOTE2, + STATE(5285), 1, sym_comment, - [136413] = 3, + [139361] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1635), 1, - sym__unquoted_pattern_in_record, - STATE(5156), 1, + ACTIONS(9120), 1, + anon_sym_BQUOTE2, + STATE(5286), 1, sym_comment, - [136423] = 3, + [139371] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1854), 1, - sym__unquoted_pattern_in_record, - STATE(5157), 1, + ACTIONS(9122), 1, + anon_sym_RPAREN, + STATE(5287), 1, sym_comment, - [136433] = 3, + [139381] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8878), 1, - anon_sym_BQUOTE2, - STATE(5158), 1, + ACTIONS(1828), 1, + sym__unquoted_pattern, + STATE(5288), 1, sym_comment, - [136443] = 3, + [139391] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1872), 1, - sym__unquoted_pattern_in_record, - STATE(5159), 1, + ACTIONS(9124), 1, + anon_sym_RBRACK, + STATE(5289), 1, sym_comment, - [136453] = 3, + [139401] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8880), 1, + ACTIONS(9126), 1, anon_sym_RBRACE, - STATE(5160), 1, + STATE(5290), 1, sym_comment, - [136463] = 3, - ACTIONS(3), 1, + [139411] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8882), 1, - anon_sym_RBRACE, - STATE(5161), 1, + ACTIONS(9128), 1, + aux_sym_cmd_identifier_token6, + STATE(5291), 1, sym_comment, - [136473] = 3, + [139421] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8884), 1, + ACTIONS(9130), 1, anon_sym_RPAREN, - STATE(5162), 1, + STATE(5292), 1, sym_comment, - [136483] = 3, + [139431] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8886), 1, + ACTIONS(9132), 1, anon_sym_SQUOTE2, - STATE(5163), 1, + STATE(5293), 1, sym_comment, - [136493] = 3, - ACTIONS(103), 1, + [139441] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8888), 1, - aux_sym_cmd_identifier_token6, - STATE(5164), 1, + ACTIONS(9134), 1, + anon_sym_RPAREN, + STATE(5294), 1, sym_comment, - [136503] = 3, + [139451] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8890), 1, - anon_sym_COLON2, - STATE(5165), 1, + ACTIONS(2622), 1, + sym__unquoted_pattern, + STATE(5295), 1, sym_comment, - [136513] = 3, + [139461] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8892), 1, - anon_sym_RBRACE, - STATE(5166), 1, + ACTIONS(5223), 1, + anon_sym_EQ2, + STATE(5296), 1, sym_comment, - [136523] = 3, + [139471] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8894), 1, - sym_raw_string_end, - STATE(5167), 1, + ACTIONS(9136), 1, + anon_sym_BQUOTE2, + STATE(5297), 1, sym_comment, - [136533] = 3, + [139481] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8068), 1, - anon_sym_EQ_GT, - STATE(5168), 1, + ACTIONS(9138), 1, + anon_sym_RBRACK, + STATE(5298), 1, sym_comment, - [136543] = 3, + [139491] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2654), 1, - sym__unquoted_pattern_in_record, - STATE(5169), 1, + ACTIONS(7898), 1, + sym__unquoted_pattern, + STATE(5299), 1, sym_comment, - [136553] = 3, + [139501] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2614), 1, - sym__unquoted_pattern_in_record, - STATE(5170), 1, + ACTIONS(9140), 1, + anon_sym_RBRACE, + STATE(5300), 1, + sym_comment, + [139511] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9142), 1, + sym_identifier, + STATE(5301), 1, sym_comment, - [136563] = 3, + [139521] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8896), 1, - aux_sym__unquoted_with_expr_token1, - STATE(5171), 1, + ACTIONS(9144), 1, + aux_sym__str_back_ticks_token1, + STATE(5302), 1, sym_comment, - [136573] = 3, + [139531] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8898), 1, - anon_sym_EQ, - STATE(5172), 1, + ACTIONS(9146), 1, + anon_sym_RBRACE, + STATE(5303), 1, sym_comment, - [136583] = 3, + [139541] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8900), 1, - anon_sym_PIPE, - STATE(5173), 1, + ACTIONS(9148), 1, + sym_long_flag_identifier, + STATE(5304), 1, sym_comment, - [136593] = 3, - ACTIONS(103), 1, + [139551] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1880), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(5174), 1, + ACTIONS(9150), 1, + anon_sym_RBRACE, + STATE(5305), 1, + sym_comment, + [139561] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9152), 1, + anon_sym_RBRACE, + STATE(5306), 1, sym_comment, - [136603] = 3, + [139571] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8902), 1, + ACTIONS(2594), 1, aux_sym_cmd_identifier_token2, - STATE(5175), 1, + STATE(5307), 1, sym_comment, - [136613] = 3, + [139581] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1734), 1, - sym__unquoted_pattern, - STATE(5176), 1, + ACTIONS(9154), 1, + sym_param_short_flag_identifier, + STATE(5308), 1, sym_comment, - [136623] = 3, + [139591] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7424), 1, - sym__unquoted_pattern, - STATE(5177), 1, + ACTIONS(9156), 1, + anon_sym_RPAREN, + STATE(5309), 1, sym_comment, - [136633] = 3, - ACTIONS(103), 1, + [139601] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8904), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(5178), 1, + ACTIONS(9158), 1, + sym_raw_string_end, + STATE(5310), 1, sym_comment, - [136643] = 3, - ACTIONS(3), 1, + [139611] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8906), 1, - anon_sym_in, - STATE(5179), 1, + ACTIONS(9160), 1, + aux_sym_cmd_identifier_token6, + STATE(5311), 1, sym_comment, - [136653] = 3, + [139621] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8908), 1, - sym_identifier, - STATE(5180), 1, + ACTIONS(9162), 1, + sym__table_head_separator, + STATE(5312), 1, sym_comment, - [136663] = 3, + [139631] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8910), 1, - aux_sym__str_single_quotes_token1, - STATE(5181), 1, + ACTIONS(9164), 1, + aux_sym_cmd_identifier_token2, + STATE(5313), 1, sym_comment, - [136673] = 3, + [139641] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8912), 1, - anon_sym_RPAREN, - STATE(5182), 1, + ACTIONS(9166), 1, + anon_sym_EQ_GT, + STATE(5314), 1, sym_comment, - [136683] = 3, + [139651] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8914), 1, + ACTIONS(9168), 1, anon_sym_RBRACE, - STATE(5183), 1, + STATE(5315), 1, sym_comment, - [136693] = 3, + [139661] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8916), 1, - anon_sym_RBRACE, - STATE(5184), 1, - sym_comment, - [136703] = 3, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8918), 1, - aux_sym_cmd_identifier_token6, - STATE(5185), 1, + ACTIONS(9170), 1, + anon_sym_RPAREN, + STATE(5316), 1, sym_comment, - [136713] = 3, + [139671] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8920), 1, - anon_sym_EQ, - STATE(5186), 1, + ACTIONS(9172), 1, + sym_raw_string_end, + STATE(5317), 1, sym_comment, - [136723] = 3, + [139681] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8922), 1, + ACTIONS(9174), 1, anon_sym_RBRACE, - STATE(5187), 1, + STATE(5318), 1, sym_comment, - [136733] = 3, + [139691] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5275), 1, - anon_sym_EQ2, - STATE(5188), 1, + ACTIONS(1637), 1, + sym__unquoted_pattern_in_record, + STATE(5319), 1, sym_comment, - [136743] = 3, + [139701] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8924), 1, - sym_identifier, - STATE(5189), 1, + ACTIONS(9176), 1, + sym_raw_string_end, + STATE(5320), 1, sym_comment, - [136753] = 3, + [139711] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8926), 1, - sym_param_short_flag_identifier, - STATE(5190), 1, + ACTIONS(9178), 1, + anon_sym_EQ, + STATE(5321), 1, sym_comment, - [136763] = 3, + [139721] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8928), 1, + ACTIONS(9180), 1, anon_sym_RBRACK, - STATE(5191), 1, + STATE(5322), 1, sym_comment, - [136773] = 3, + [139731] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8930), 1, - sym_raw_string_end, - STATE(5192), 1, + ACTIONS(9182), 1, + anon_sym_RBRACE, + STATE(5323), 1, sym_comment, - [136783] = 3, + [139741] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8932), 1, + ACTIONS(1732), 1, + sym__unquoted_pattern_in_record, + STATE(5324), 1, + sym_comment, + [139751] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(9184), 1, + aux_sym_cmd_identifier_token6, + STATE(5325), 1, + sym_comment, + [139761] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9186), 1, anon_sym_RPAREN, - STATE(5193), 1, + STATE(5326), 1, sym_comment, - [136793] = 3, + [139771] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8934), 1, - anon_sym_EQ_GT, - STATE(5194), 1, + ACTIONS(9188), 1, + anon_sym_EQ, + STATE(5327), 1, sym_comment, - [136803] = 3, + [139781] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8936), 1, - sym_attribute_identifier, - STATE(5195), 1, + ACTIONS(4187), 1, + sym__unquoted_pattern, + STATE(5328), 1, sym_comment, - [136813] = 3, + [139791] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8938), 1, - anon_sym_RPAREN, - STATE(5196), 1, + ACTIONS(9190), 1, + anon_sym_DQUOTE, + STATE(5329), 1, sym_comment, - [136823] = 3, + [139801] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8940), 1, - anon_sym_LBRACE, - STATE(5197), 1, + ACTIONS(6659), 1, + sym__unquoted_pattern_in_list, + STATE(5330), 1, sym_comment, - [136833] = 3, + [139811] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2555), 1, + ACTIONS(9192), 1, aux_sym_cmd_identifier_token2, - STATE(5198), 1, - sym_comment, - [136843] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2658), 1, - sym__unquoted_pattern_in_record, - STATE(5199), 1, + STATE(5331), 1, sym_comment, - [136853] = 3, + [139821] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8942), 1, + ACTIONS(9194), 1, anon_sym_RBRACK, - STATE(5200), 1, + STATE(5332), 1, sym_comment, - [136863] = 3, + [139831] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(289), 1, - anon_sym_RBRACE, - STATE(5201), 1, + ACTIONS(9196), 1, + anon_sym_RBRACK, + STATE(5333), 1, sym_comment, - [136873] = 3, + [139841] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8944), 1, + ACTIONS(9198), 1, anon_sym_RBRACE, - STATE(5202), 1, + STATE(5334), 1, sym_comment, - [136883] = 3, + [139851] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8946), 1, - anon_sym_RBRACK, - STATE(5203), 1, + ACTIONS(9200), 1, + sym_raw_string_end, + STATE(5335), 1, sym_comment, - [136893] = 3, + [139861] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8948), 1, + ACTIONS(9202), 1, anon_sym_RBRACK, - STATE(5204), 1, + STATE(5336), 1, sym_comment, - [136903] = 3, + [139871] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8950), 1, - sym_identifier, - STATE(5205), 1, + ACTIONS(9204), 1, + anon_sym_EQ, + STATE(5337), 1, sym_comment, - [136913] = 3, + [139881] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(305), 1, - anon_sym_RBRACE, - STATE(5206), 1, + ACTIONS(9206), 1, + anon_sym_RBRACK, + STATE(5338), 1, sym_comment, - [136923] = 3, + [139891] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8952), 1, + ACTIONS(9208), 1, anon_sym_RPAREN, - STATE(5207), 1, + STATE(5339), 1, sym_comment, - [136933] = 3, + [139901] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8954), 1, + ACTIONS(1917), 1, aux_sym__unquoted_in_list_with_expr_token1, - STATE(5208), 1, + STATE(5340), 1, sym_comment, - [136943] = 3, - ACTIONS(103), 1, + [139911] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1880), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(5209), 1, + ACTIONS(2362), 1, + sym__unquoted_pattern_in_record, + STATE(5341), 1, sym_comment, - [136953] = 3, + [139921] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8956), 1, - anon_sym_RPAREN, - STATE(5210), 1, + ACTIONS(9210), 1, + anon_sym_RBRACK, + STATE(5342), 1, sym_comment, - [136963] = 3, + [139931] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8958), 1, + ACTIONS(9212), 1, sym_raw_string_content, - STATE(5211), 1, + STATE(5343), 1, sym_comment, - [136973] = 3, + [139941] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7806), 1, + ACTIONS(8075), 1, anon_sym_LBRACK2, - STATE(5212), 1, + STATE(5344), 1, sym_comment, - [136983] = 3, + [139951] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8960), 1, + ACTIONS(9214), 1, aux_sym__str_single_quotes_token1, - STATE(5213), 1, + STATE(5345), 1, sym_comment, - [136993] = 3, + [139961] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8962), 1, + ACTIONS(9216), 1, aux_sym__str_back_ticks_token1, - STATE(5214), 1, + STATE(5346), 1, sym_comment, - [137003] = 3, + [139971] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2646), 1, - sym__unquoted_pattern, - STATE(5215), 1, + ACTIONS(9218), 1, + anon_sym_RBRACE, + STATE(5347), 1, sym_comment, - [137013] = 3, + [139981] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8964), 1, - anon_sym_RBRACE, - STATE(5216), 1, + ACTIONS(1848), 1, + sym__unquoted_pattern_in_record, + STATE(5348), 1, sym_comment, - [137023] = 3, + [139991] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8966), 1, + ACTIONS(9220), 1, sym__space, - STATE(5217), 1, - sym_comment, - [137033] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8968), 1, - sym_raw_string_end, - STATE(5218), 1, + STATE(5349), 1, sym_comment, - [137043] = 3, + [140001] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8970), 1, + ACTIONS(9222), 1, anon_sym_RPAREN, - STATE(5219), 1, - sym_comment, - [137053] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8972), 1, - anon_sym_RBRACE, - STATE(5220), 1, + STATE(5350), 1, sym_comment, - [137063] = 3, + [140011] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8974), 1, - sym_raw_string_end, - STATE(5221), 1, + ACTIONS(1897), 1, + sym__unquoted_pattern_in_record, + STATE(5351), 1, sym_comment, - [137073] = 3, + [140021] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8976), 1, - anon_sym_EQ, - STATE(5222), 1, + ACTIONS(5249), 1, + anon_sym_EQ2, + STATE(5352), 1, sym_comment, - [137083] = 3, + [140031] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6285), 1, + ACTIONS(9224), 1, anon_sym_EQ, - STATE(5223), 1, + STATE(5353), 1, sym_comment, - [137093] = 3, + [140041] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8978), 1, - anon_sym_DQUOTE, - STATE(5224), 1, + ACTIONS(315), 1, + anon_sym_RBRACE, + STATE(5354), 1, sym_comment, - [137103] = 3, + [140051] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8980), 1, - anon_sym_SQUOTE2, - STATE(5225), 1, + ACTIONS(2674), 1, + sym__unquoted_pattern_in_record, + STATE(5355), 1, sym_comment, - [137113] = 3, + [140061] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8982), 1, - anon_sym_BQUOTE2, - STATE(5226), 1, + ACTIONS(9226), 1, + ts_builtin_sym_end, + STATE(5356), 1, sym_comment, - [137123] = 3, - ACTIONS(3), 1, + [140071] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4211), 1, - sym__unquoted_pattern, - STATE(5227), 1, + ACTIONS(9228), 1, + sym__space, + STATE(5357), 1, sym_comment, - [137133] = 3, + [140081] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8984), 1, - anon_sym_DQUOTE, - STATE(5228), 1, + ACTIONS(2664), 1, + sym__table_head_separator, + STATE(5358), 1, sym_comment, - [137143] = 3, + [140091] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6303), 1, - anon_sym_EQ, - STATE(5229), 1, + ACTIONS(9230), 1, + anon_sym_RBRACE, + STATE(5359), 1, sym_comment, - [137153] = 3, + [140101] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8986), 1, - anon_sym_SQUOTE2, - STATE(5230), 1, + ACTIONS(9232), 1, + sym_raw_string_end, + STATE(5360), 1, sym_comment, - [137163] = 3, + [140111] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8988), 1, - aux_sym_cmd_identifier_token6, - STATE(5231), 1, + ACTIONS(9234), 1, + aux_sym_shebang_token1, + STATE(5361), 1, sym_comment, - [137173] = 3, + [140121] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8990), 1, - anon_sym_EQ, - STATE(5232), 1, + ACTIONS(9236), 1, + anon_sym_DQUOTE, + STATE(5362), 1, sym_comment, - [137183] = 3, + [140131] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8992), 1, - anon_sym_RBRACK, - STATE(5233), 1, + ACTIONS(9238), 1, + sym_identifier, + STATE(5363), 1, sym_comment, - [137193] = 3, + [140141] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8994), 1, - anon_sym_RBRACK, - STATE(5234), 1, + ACTIONS(2674), 1, + sym__unquoted_pattern, + STATE(5364), 1, sym_comment, - [137203] = 3, + [140151] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8996), 1, - anon_sym_BQUOTE2, - STATE(5235), 1, + ACTIONS(9240), 1, + anon_sym_SQUOTE2, + STATE(5365), 1, sym_comment, - [137213] = 3, + [140161] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8998), 1, - anon_sym_RPAREN, - STATE(5236), 1, + ACTIONS(9242), 1, + anon_sym_BQUOTE2, + STATE(5366), 1, sym_comment, - [137223] = 3, + [140171] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6295), 1, + ACTIONS(9244), 1, anon_sym_EQ, - STATE(5237), 1, + STATE(5367), 1, sym_comment, - [137233] = 3, + [140181] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(307), 1, - anon_sym_RBRACE, - STATE(5238), 1, + ACTIONS(9246), 1, + anon_sym_LBRACE, + STATE(5368), 1, sym_comment, - [137243] = 3, + [140191] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9000), 1, - aux_sym__str_back_ticks_token1, - STATE(5239), 1, + ACTIONS(9248), 1, + aux_sym_cmd_identifier_token6, + STATE(5369), 1, sym_comment, - [137253] = 3, + [140201] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9002), 1, - anon_sym_RPAREN, - STATE(5240), 1, + ACTIONS(9250), 1, + anon_sym_EQ, + STATE(5370), 1, + sym_comment, + [140211] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(9252), 1, + aux_sym_cmd_identifier_token2, + STATE(5371), 1, sym_comment, - [137263] = 3, + [140221] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9004), 1, - anon_sym_RBRACE, - STATE(5241), 1, + ACTIONS(2634), 1, + sym__unquoted_pattern_in_record, + STATE(5372), 1, sym_comment, - [137273] = 3, + [140231] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9006), 1, - anon_sym_RBRACK, - STATE(5242), 1, + ACTIONS(6867), 1, + anon_sym_EQ, + STATE(5373), 1, sym_comment, - [137283] = 3, + [140241] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1983), 1, - sym__unquoted_pattern_in_record, - STATE(5243), 1, + ACTIONS(9254), 1, + sym_attribute_identifier, + STATE(5374), 1, sym_comment, - [137293] = 3, + [140251] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9008), 1, - anon_sym_RPAREN, - STATE(5244), 1, + ACTIONS(9256), 1, + anon_sym_GT2, + STATE(5375), 1, sym_comment, - [137303] = 3, + [140261] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9010), 1, - anon_sym_DQUOTE, - STATE(5245), 1, + ACTIONS(9258), 1, + anon_sym_RBRACK, + STATE(5376), 1, sym_comment, - [137313] = 3, + [140271] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9012), 1, - anon_sym_SQUOTE2, - STATE(5246), 1, + ACTIONS(9260), 1, + anon_sym_RBRACK, + STATE(5377), 1, sym_comment, - [137323] = 3, + [140281] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9014), 1, - anon_sym_BQUOTE2, - STATE(5247), 1, + ACTIONS(9262), 1, + anon_sym_RBRACE, + STATE(5378), 1, sym_comment, - [137333] = 3, + [140291] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9016), 1, - anon_sym_RBRACK, - STATE(5248), 1, + ACTIONS(9264), 1, + anon_sym_RPAREN2, + STATE(5379), 1, sym_comment, - [137343] = 3, + [140301] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9018), 1, + ACTIONS(9266), 1, anon_sym_RBRACE, - STATE(5249), 1, + STATE(5380), 1, sym_comment, - [137353] = 3, - ACTIONS(103), 1, + [140311] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9020), 1, - aux_sym_cmd_identifier_token6, - STATE(5250), 1, + ACTIONS(9268), 1, + anon_sym_RPAREN, + STATE(5381), 1, sym_comment, - [137363] = 3, + [140321] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9022), 1, - anon_sym_EQ, - STATE(5251), 1, + ACTIONS(9270), 1, + anon_sym_RPAREN, + STATE(5382), 1, + sym_comment, + [140331] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(9272), 1, + aux_sym_comment_token1, + STATE(5383), 1, sym_comment, - [137373] = 3, + [140341] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9024), 1, - anon_sym_RBRACK, - STATE(5252), 1, + ACTIONS(9274), 1, + anon_sym_RBRACE, + STATE(5384), 1, sym_comment, - [137383] = 3, + [140351] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9026), 1, + ACTIONS(9276), 1, sym_raw_string_content, - STATE(5253), 1, + STATE(5385), 1, sym_comment, - [137393] = 3, + [140361] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6206), 1, + ACTIONS(6362), 1, anon_sym_LBRACK2, - STATE(5254), 1, + STATE(5386), 1, sym_comment, - [137403] = 3, + [140371] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9028), 1, + ACTIONS(9278), 1, aux_sym__str_single_quotes_token1, - STATE(5255), 1, + STATE(5387), 1, sym_comment, - [137413] = 3, + [140381] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9030), 1, + ACTIONS(9280), 1, aux_sym__str_back_ticks_token1, - STATE(5256), 1, + STATE(5388), 1, sym_comment, - [137423] = 3, - ACTIONS(103), 1, + [140391] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9032), 1, - aux_sym_cmd_identifier_token6, - STATE(5257), 1, + ACTIONS(9282), 1, + anon_sym_GT2, + STATE(5389), 1, sym_comment, - [137433] = 3, + [140401] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9034), 1, + ACTIONS(9284), 1, sym__space, - STATE(5258), 1, + STATE(5390), 1, sym_comment, - [137443] = 3, + [140411] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6607), 1, - anon_sym_EQ, - STATE(5259), 1, + ACTIONS(9286), 1, + anon_sym_DQUOTE, + STATE(5391), 1, sym_comment, - [137453] = 3, + [140421] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5469), 1, - anon_sym_EQ2, - STATE(5260), 1, + ACTIONS(9288), 1, + anon_sym_SQUOTE2, + STATE(5392), 1, sym_comment, - [137463] = 3, + [140431] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9036), 1, + ACTIONS(9290), 1, anon_sym_BQUOTE2, - STATE(5261), 1, + STATE(5393), 1, sym_comment, - [137473] = 3, + [140441] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9038), 1, + ACTIONS(9292), 1, sym_raw_string_content, - STATE(5262), 1, + STATE(5394), 1, sym_comment, - [137483] = 3, + [140451] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4595), 1, + ACTIONS(4525), 1, anon_sym_LBRACK2, - STATE(5263), 1, + STATE(5395), 1, sym_comment, - [137493] = 3, + [140461] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9040), 1, + ACTIONS(9294), 1, aux_sym__str_single_quotes_token1, - STATE(5264), 1, + STATE(5396), 1, sym_comment, - [137503] = 3, + [140471] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9042), 1, + ACTIONS(9296), 1, aux_sym__str_back_ticks_token1, - STATE(5265), 1, + STATE(5397), 1, sym_comment, - [137513] = 3, + [140481] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9044), 1, + ACTIONS(9298), 1, sym_raw_string_content, - STATE(5266), 1, + STATE(5398), 1, sym_comment, - [137523] = 3, + [140491] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5929), 1, + ACTIONS(5838), 1, anon_sym_LBRACK2, - STATE(5267), 1, + STATE(5399), 1, sym_comment, - [137533] = 3, + [140501] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9046), 1, + ACTIONS(9300), 1, aux_sym__str_single_quotes_token1, - STATE(5268), 1, + STATE(5400), 1, sym_comment, - [137543] = 3, + [140511] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9048), 1, + ACTIONS(9302), 1, aux_sym__str_back_ticks_token1, - STATE(5269), 1, + STATE(5401), 1, sym_comment, - [137553] = 3, + [140521] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9050), 1, + ACTIONS(9304), 1, sym_raw_string_content, - STATE(5270), 1, + STATE(5402), 1, sym_comment, - [137563] = 3, + [140531] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5952), 1, + ACTIONS(5846), 1, anon_sym_LBRACK2, - STATE(5271), 1, + STATE(5403), 1, sym_comment, - [137573] = 3, + [140541] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9052), 1, + ACTIONS(9306), 1, aux_sym__str_single_quotes_token1, - STATE(5272), 1, + STATE(5404), 1, sym_comment, - [137583] = 3, + [140551] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9054), 1, + ACTIONS(9308), 1, aux_sym__str_back_ticks_token1, - STATE(5273), 1, + STATE(5405), 1, sym_comment, - [137593] = 3, + [140561] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9056), 1, + ACTIONS(9310), 1, sym_raw_string_content, - STATE(5274), 1, + STATE(5406), 1, sym_comment, - [137603] = 3, + [140571] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9058), 1, + ACTIONS(9312), 1, aux_sym__str_single_quotes_token1, - STATE(5275), 1, + STATE(5407), 1, sym_comment, - [137613] = 3, + [140581] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9060), 1, + ACTIONS(9314), 1, aux_sym__str_back_ticks_token1, - STATE(5276), 1, + STATE(5408), 1, sym_comment, - [137623] = 3, + [140591] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9062), 1, + ACTIONS(9316), 1, sym_raw_string_content, - STATE(5277), 1, + STATE(5409), 1, sym_comment, - [137633] = 3, + [140601] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9064), 1, + ACTIONS(9318), 1, aux_sym__str_single_quotes_token1, - STATE(5278), 1, + STATE(5410), 1, sym_comment, - [137643] = 3, + [140611] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9066), 1, + ACTIONS(9320), 1, aux_sym__str_back_ticks_token1, - STATE(5279), 1, + STATE(5411), 1, sym_comment, - [137653] = 3, + [140621] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9068), 1, + ACTIONS(9322), 1, sym_raw_string_content, - STATE(5280), 1, + STATE(5412), 1, sym_comment, - [137663] = 3, + [140631] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9070), 1, + ACTIONS(9324), 1, aux_sym__str_single_quotes_token1, - STATE(5281), 1, + STATE(5413), 1, sym_comment, - [137673] = 3, + [140641] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9072), 1, + ACTIONS(9326), 1, aux_sym__str_back_ticks_token1, - STATE(5282), 1, + STATE(5414), 1, sym_comment, - [137683] = 3, + [140651] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9074), 1, + ACTIONS(9328), 1, sym_raw_string_content, - STATE(5283), 1, + STATE(5415), 1, sym_comment, - [137693] = 3, + [140661] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9076), 1, + ACTIONS(9330), 1, aux_sym__str_single_quotes_token1, - STATE(5284), 1, + STATE(5416), 1, sym_comment, - [137703] = 3, + [140671] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9078), 1, + ACTIONS(9332), 1, aux_sym__str_back_ticks_token1, - STATE(5285), 1, + STATE(5417), 1, sym_comment, - [137713] = 3, + [140681] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9080), 1, + ACTIONS(9334), 1, sym_raw_string_content, - STATE(5286), 1, + STATE(5418), 1, sym_comment, - [137723] = 3, + [140691] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9082), 1, + ACTIONS(9336), 1, aux_sym__str_single_quotes_token1, - STATE(5287), 1, + STATE(5419), 1, sym_comment, - [137733] = 3, + [140701] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9084), 1, + ACTIONS(9338), 1, aux_sym__str_back_ticks_token1, - STATE(5288), 1, + STATE(5420), 1, sym_comment, - [137743] = 3, + [140711] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9086), 1, + ACTIONS(9340), 1, sym_raw_string_content, - STATE(5289), 1, + STATE(5421), 1, sym_comment, - [137753] = 3, + [140721] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9088), 1, + ACTIONS(9342), 1, aux_sym__str_single_quotes_token1, - STATE(5290), 1, + STATE(5422), 1, sym_comment, - [137763] = 3, + [140731] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9090), 1, + ACTIONS(9344), 1, aux_sym__str_back_ticks_token1, - STATE(5291), 1, + STATE(5423), 1, sym_comment, - [137773] = 3, + [140741] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9092), 1, + ACTIONS(9346), 1, sym_raw_string_content, - STATE(5292), 1, + STATE(5424), 1, sym_comment, - [137783] = 3, + [140751] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9094), 1, + ACTIONS(9348), 1, aux_sym__str_single_quotes_token1, - STATE(5293), 1, + STATE(5425), 1, sym_comment, - [137793] = 3, + [140761] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9096), 1, + ACTIONS(9350), 1, aux_sym__str_back_ticks_token1, - STATE(5294), 1, + STATE(5426), 1, sym_comment, - [137803] = 3, + [140771] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9098), 1, + ACTIONS(9352), 1, sym_raw_string_content, - STATE(5295), 1, + STATE(5427), 1, sym_comment, - [137813] = 3, + [140781] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9100), 1, + ACTIONS(9354), 1, aux_sym__str_single_quotes_token1, - STATE(5296), 1, + STATE(5428), 1, sym_comment, - [137823] = 3, + [140791] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9102), 1, + ACTIONS(9356), 1, aux_sym__str_back_ticks_token1, - STATE(5297), 1, + STATE(5429), 1, sym_comment, - [137833] = 3, + [140801] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9104), 1, + ACTIONS(9358), 1, sym_raw_string_content, - STATE(5298), 1, + STATE(5430), 1, sym_comment, - [137843] = 3, + [140811] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9106), 1, + ACTIONS(9360), 1, aux_sym__str_single_quotes_token1, - STATE(5299), 1, + STATE(5431), 1, sym_comment, - [137853] = 3, + [140821] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9108), 1, + ACTIONS(9362), 1, aux_sym__str_back_ticks_token1, - STATE(5300), 1, + STATE(5432), 1, sym_comment, - [137863] = 3, + [140831] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9110), 1, + ACTIONS(9364), 1, sym_raw_string_content, - STATE(5301), 1, + STATE(5433), 1, sym_comment, - [137873] = 3, + [140841] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9112), 1, + ACTIONS(9366), 1, aux_sym__str_single_quotes_token1, - STATE(5302), 1, + STATE(5434), 1, sym_comment, - [137883] = 3, + [140851] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9114), 1, + ACTIONS(9368), 1, aux_sym__str_back_ticks_token1, - STATE(5303), 1, + STATE(5435), 1, sym_comment, - [137893] = 3, + [140861] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9116), 1, + ACTIONS(9370), 1, sym_raw_string_content, - STATE(5304), 1, + STATE(5436), 1, sym_comment, - [137903] = 3, + [140871] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9118), 1, + ACTIONS(9372), 1, aux_sym__str_single_quotes_token1, - STATE(5305), 1, + STATE(5437), 1, sym_comment, - [137913] = 3, + [140881] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9120), 1, + ACTIONS(9374), 1, aux_sym__str_back_ticks_token1, - STATE(5306), 1, + STATE(5438), 1, sym_comment, - [137923] = 3, + [140891] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9122), 1, + ACTIONS(9376), 1, sym_raw_string_content, - STATE(5307), 1, + STATE(5439), 1, sym_comment, - [137933] = 3, + [140901] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9124), 1, + ACTIONS(9378), 1, aux_sym__str_single_quotes_token1, - STATE(5308), 1, + STATE(5440), 1, sym_comment, - [137943] = 3, + [140911] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9126), 1, + ACTIONS(9380), 1, aux_sym__str_back_ticks_token1, - STATE(5309), 1, + STATE(5441), 1, sym_comment, - [137953] = 3, + [140921] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9128), 1, + ACTIONS(9382), 1, sym_raw_string_content, - STATE(5310), 1, + STATE(5442), 1, sym_comment, - [137963] = 3, + [140931] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9130), 1, + ACTIONS(9384), 1, aux_sym__str_single_quotes_token1, - STATE(5311), 1, + STATE(5443), 1, sym_comment, - [137973] = 3, + [140941] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9132), 1, + ACTIONS(9386), 1, aux_sym__str_back_ticks_token1, - STATE(5312), 1, + STATE(5444), 1, sym_comment, - [137983] = 3, + [140951] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9134), 1, + ACTIONS(9388), 1, sym_raw_string_content, - STATE(5313), 1, + STATE(5445), 1, sym_comment, - [137993] = 3, + [140961] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9136), 1, + ACTIONS(9390), 1, aux_sym__str_single_quotes_token1, - STATE(5314), 1, + STATE(5446), 1, sym_comment, - [138003] = 3, + [140971] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9138), 1, + ACTIONS(9392), 1, aux_sym__str_back_ticks_token1, - STATE(5315), 1, + STATE(5447), 1, sym_comment, - [138013] = 3, + [140981] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5160), 1, - sym__unquoted_pattern, - STATE(5316), 1, + ACTIONS(2614), 1, + sym__unquoted_pattern_in_record, + STATE(5448), 1, sym_comment, - [138023] = 3, + [140991] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9140), 1, - anon_sym_EQ, - STATE(5317), 1, + ACTIONS(9394), 1, + anon_sym_DQUOTE, + STATE(5449), 1, sym_comment, - [138033] = 3, + [141001] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8390), 1, + ACTIONS(8659), 1, anon_sym_LPAREN2, - STATE(5318), 1, + STATE(5450), 1, sym_comment, - [138043] = 3, - ACTIONS(3), 1, + [141011] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9142), 1, - anon_sym_RBRACK, - STATE(5319), 1, + ACTIONS(9396), 1, + aux_sym_cmd_identifier_token6, + STATE(5451), 1, sym_comment, - [138053] = 3, + [141021] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9144), 1, - anon_sym_RBRACE, - STATE(5320), 1, + ACTIONS(351), 1, + anon_sym_RPAREN2, + STATE(5452), 1, sym_comment, - [138063] = 3, + [141031] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5235), 1, - anon_sym_EQ2, - STATE(5321), 1, + ACTIONS(1992), 1, + sym__unquoted_pattern_in_record, + STATE(5453), 1, sym_comment, - [138073] = 3, + [141041] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9146), 1, + ACTIONS(9398), 1, anon_sym_in, - STATE(5322), 1, + STATE(5454), 1, sym_comment, - [138083] = 3, + [141051] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9148), 1, - anon_sym_RBRACK, - STATE(5323), 1, + ACTIONS(9400), 1, + anon_sym_RBRACE, + STATE(5455), 1, sym_comment, - [138093] = 3, - ACTIONS(3), 1, + [141061] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9150), 1, - anon_sym_RBRACE, - STATE(5324), 1, + ACTIONS(9402), 1, + aux_sym_cmd_identifier_token6, + STATE(5456), 1, sym_comment, - [138103] = 3, + [141071] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9152), 1, - anon_sym_RPAREN, - STATE(5325), 1, + ACTIONS(9404), 1, + anon_sym_GT2, + STATE(5457), 1, sym_comment, - [138113] = 3, + [141081] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9154), 1, - anon_sym_RBRACK, - STATE(5326), 1, + ACTIONS(9406), 1, + anon_sym_RBRACE, + STATE(5458), 1, sym_comment, - [138123] = 3, + [141091] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9156), 1, - anon_sym_RPAREN, - STATE(5327), 1, + ACTIONS(9408), 1, + anon_sym_RBRACK, + STATE(5459), 1, sym_comment, - [138133] = 3, + [141101] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5239), 1, - anon_sym_EQ2, - STATE(5328), 1, + ACTIONS(9410), 1, + anon_sym_RPAREN, + STATE(5460), 1, sym_comment, - [138143] = 3, + [141111] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9158), 1, + ACTIONS(9412), 1, aux_sym_cmd_identifier_token6, - STATE(5329), 1, + STATE(5461), 1, sym_comment, - [138153] = 3, + [141121] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9160), 1, - sym_identifier, - STATE(5330), 1, + ACTIONS(299), 1, + anon_sym_RBRACE, + STATE(5462), 1, sym_comment, - [138163] = 3, - ACTIONS(103), 1, + [141131] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9162), 1, - aux_sym_cmd_identifier_token6, - STATE(5331), 1, + ACTIONS(9414), 1, + anon_sym_GT2, + STATE(5463), 1, sym_comment, - [138173] = 3, + [141141] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(335), 1, - anon_sym_RPAREN2, - STATE(5332), 1, + ACTIONS(9416), 1, + anon_sym_DQUOTE, + STATE(5464), 1, sym_comment, - [138183] = 3, + [141151] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9164), 1, - anon_sym_RBRACE, - STATE(5333), 1, + ACTIONS(9418), 1, + anon_sym_GT2, + STATE(5465), 1, sym_comment, - [138193] = 3, + [141161] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9166), 1, - anon_sym_RBRACE, - STATE(5334), 1, + ACTIONS(9420), 1, + anon_sym_GT2, + STATE(5466), 1, sym_comment, - [138203] = 3, - ACTIONS(103), 1, + [141171] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1894), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(5335), 1, + ACTIONS(9422), 1, + ts_builtin_sym_end, + STATE(5467), 1, + sym_comment, + [141181] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9424), 1, + anon_sym_GT2, + STATE(5468), 1, sym_comment, - [138213] = 3, + [141191] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8392), 1, - aux_sym__record_key_token1, - STATE(5336), 1, + ACTIONS(2822), 1, + aux_sym_cmd_identifier_token2, + STATE(5469), 1, sym_comment, - [138223] = 3, + [141201] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9168), 1, + ACTIONS(9426), 1, anon_sym_LT, - STATE(5337), 1, + STATE(5470), 1, sym_comment, - [138233] = 3, + [141211] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9170), 1, - anon_sym_LT, - STATE(5338), 1, + ACTIONS(9428), 1, + anon_sym_GT2, + STATE(5471), 1, sym_comment, - [138243] = 3, + [141221] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1715), 1, - anon_sym_COLON2, - STATE(5339), 1, + ACTIONS(9430), 1, + anon_sym_GT2, + STATE(5472), 1, sym_comment, - [138253] = 3, + [141231] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9172), 1, - anon_sym_RBRACK, - STATE(5340), 1, + ACTIONS(9432), 1, + anon_sym_EQ, + STATE(5473), 1, sym_comment, - [138263] = 3, + [141241] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2684), 1, - anon_sym_COLON2, - STATE(5341), 1, + ACTIONS(9434), 1, + anon_sym_BQUOTE2, + STATE(5474), 1, sym_comment, - [138273] = 3, + [141251] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9174), 1, - anon_sym_LPAREN2, - STATE(5342), 1, + ACTIONS(9436), 1, + sym_identifier, + STATE(5475), 1, sym_comment, - [138283] = 3, + [141261] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9176), 1, + ACTIONS(9438), 1, anon_sym_GT2, - STATE(5343), 1, + STATE(5476), 1, sym_comment, - [138293] = 3, - ACTIONS(103), 1, + [141271] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9178), 1, - sym__space, - STATE(5344), 1, + ACTIONS(7687), 1, + sym__unquoted_pattern, + STATE(5477), 1, sym_comment, - [138303] = 3, + [141281] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6307), 1, + ACTIONS(6495), 1, anon_sym_EQ, - STATE(5345), 1, + STATE(5478), 1, sym_comment, - [138313] = 3, - ACTIONS(3), 1, + [141291] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9180), 1, - sym_raw_string_end, - STATE(5346), 1, + ACTIONS(9440), 1, + aux_sym_cmd_identifier_token6, + STATE(5479), 1, sym_comment, - [138323] = 3, - ACTIONS(3), 1, + [141301] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9182), 1, - anon_sym_GT2, - STATE(5347), 1, + ACTIONS(9442), 1, + aux_sym_cmd_identifier_token6, + STATE(5480), 1, sym_comment, - [138333] = 3, - ACTIONS(103), 1, + [141311] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9184), 1, - aux_sym_shebang_token1, - STATE(5348), 1, + ACTIONS(9444), 1, + sym_raw_string_end, + STATE(5481), 1, sym_comment, - [138343] = 3, + [141321] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9186), 1, - anon_sym_GT2, - STATE(5349), 1, + ACTIONS(9446), 1, + sym_raw_string_end, + STATE(5482), 1, sym_comment, - [138353] = 3, + [141331] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9188), 1, - aux_sym_cmd_identifier_token2, - STATE(5350), 1, + ACTIONS(9448), 1, + aux_sym__unquoted_with_expr_token1, + STATE(5483), 1, sym_comment, - [138363] = 3, - ACTIONS(3), 1, + [141341] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9190), 1, - anon_sym_GT2, - STATE(5351), 1, + ACTIONS(2754), 1, + aux_sym_cmd_identifier_token2, + STATE(5484), 1, sym_comment, - [138373] = 3, + [141351] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9192), 1, - anon_sym_RBRACK, - STATE(5352), 1, + ACTIONS(9450), 1, + anon_sym_SQUOTE2, + STATE(5485), 1, sym_comment, - [138383] = 3, + [141361] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9194), 1, - anon_sym_RBRACK, - STATE(5353), 1, + ACTIONS(9452), 1, + anon_sym_RBRACE, + STATE(5486), 1, sym_comment, - [138393] = 3, + [141371] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8080), 1, - anon_sym_LBRACE, - STATE(5354), 1, - sym_comment, - [138403] = 3, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2682), 1, - aux_sym_cmd_identifier_token2, - STATE(5355), 1, + ACTIONS(9454), 1, + anon_sym_RBRACE, + STATE(5487), 1, sym_comment, - [138413] = 3, + [141381] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9196), 1, - anon_sym_RBRACK, - STATE(5356), 1, + ACTIONS(9456), 1, + anon_sym_RPAREN, + STATE(5488), 1, sym_comment, - [138423] = 3, + [141391] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9198), 1, - sym_long_flag_identifier, - STATE(5357), 1, + ACTIONS(5118), 1, + sym__unquoted_pattern, + STATE(5489), 1, sym_comment, - [138433] = 3, + [141401] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9200), 1, + ACTIONS(9458), 1, anon_sym_RBRACE, - STATE(5358), 1, + STATE(5490), 1, sym_comment, - [138443] = 3, + [141411] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9202), 1, - anon_sym_RBRACE, - STATE(5359), 1, + ACTIONS(9460), 1, + anon_sym_RBRACK, + STATE(5491), 1, sym_comment, - [138453] = 3, + [141421] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9204), 1, + ACTIONS(9462), 1, anon_sym_LT, - STATE(5360), 1, + STATE(5492), 1, sym_comment, - [138463] = 3, - ACTIONS(3), 1, + [141431] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9206), 1, - anon_sym_RPAREN, - STATE(5361), 1, + ACTIONS(1905), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(5493), 1, sym_comment, - [138473] = 3, + [141441] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9208), 1, - anon_sym_RBRACE, - STATE(5362), 1, + ACTIONS(1701), 1, + anon_sym_COLON2, + STATE(5494), 1, sym_comment, - [138483] = 3, + [141451] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9210), 1, - anon_sym_RPAREN, - STATE(5363), 1, + ACTIONS(9464), 1, + anon_sym_RBRACE, + STATE(5495), 1, sym_comment, - [138493] = 3, + [141461] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9212), 1, - anon_sym_RPAREN, - STATE(5364), 1, + ACTIONS(9466), 1, + sym_raw_string_end, + STATE(5496), 1, sym_comment, - [138503] = 3, + [141471] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9214), 1, - anon_sym_DQUOTE, - STATE(5365), 1, + ACTIONS(9468), 1, + anon_sym_RBRACK, + STATE(5497), 1, sym_comment, - [138513] = 3, + [141481] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9216), 1, + ACTIONS(9470), 1, anon_sym_LT, - STATE(5366), 1, + STATE(5498), 1, sym_comment, - [138523] = 3, + [141491] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9218), 1, - anon_sym_RBRACE, - STATE(5367), 1, + ACTIONS(5298), 1, + anon_sym_EQ2, + STATE(5499), 1, sym_comment, - [138533] = 3, + [141501] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9220), 1, - anon_sym_GT2, - STATE(5368), 1, + ACTIONS(9472), 1, + anon_sym_EQ, + STATE(5500), 1, sym_comment, - [138543] = 3, + [141511] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9222), 1, - sym_raw_string_end, - STATE(5369), 1, + ACTIONS(9474), 1, + anon_sym_DQUOTE, + STATE(5501), 1, sym_comment, - [138553] = 3, + [141521] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9224), 1, - anon_sym_RBRACE, - STATE(5370), 1, + ACTIONS(7285), 1, + sym__unquoted_pattern, + STATE(5502), 1, sym_comment, - [138563] = 3, - ACTIONS(103), 1, + [141531] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9226), 1, - aux_sym_cmd_identifier_token6, - STATE(5371), 1, + ACTIONS(8653), 1, + anon_sym_LBRACE, + STATE(5503), 1, sym_comment, - [138573] = 3, + [141541] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5294), 1, + ACTIONS(5300), 1, anon_sym_EQ2, - STATE(5372), 1, + STATE(5504), 1, sym_comment, - [138583] = 3, + [141551] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7079), 1, - sym__unquoted_pattern, - STATE(5373), 1, + ACTIONS(361), 1, + anon_sym_RPAREN2, + STATE(5505), 1, sym_comment, - [138593] = 3, + [141561] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(351), 1, - anon_sym_RPAREN2, - STATE(5374), 1, + ACTIONS(9476), 1, + anon_sym_SQUOTE2, + STATE(5506), 1, sym_comment, - [138603] = 3, + [141571] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9228), 1, - anon_sym_RBRACE, - STATE(5375), 1, + ACTIONS(6511), 1, + anon_sym_EQ, + STATE(5507), 1, sym_comment, - [138613] = 3, + [141581] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9230), 1, - anon_sym_SQUOTE2, - STATE(5376), 1, + ACTIONS(9478), 1, + anon_sym_BQUOTE2, + STATE(5508), 1, sym_comment, - [138623] = 3, + [141591] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9232), 1, - anon_sym_BQUOTE2, - STATE(5377), 1, + ACTIONS(9480), 1, + anon_sym_RBRACE, + STATE(5509), 1, sym_comment, - [138633] = 3, - ACTIONS(103), 1, + [141601] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1894), 1, - aux_sym__unquoted_with_expr_token1, - STATE(5378), 1, + ACTIONS(9482), 1, + anon_sym_SQUOTE2, + STATE(5510), 1, sym_comment, - [138643] = 1, - ACTIONS(9234), 1, + [141611] = 1, + ACTIONS(9484), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(1271)] = 0, - [SMALL_STATE(1272)] = 73, - [SMALL_STATE(1273)] = 216, - [SMALL_STATE(1274)] = 289, - [SMALL_STATE(1275)] = 362, - [SMALL_STATE(1276)] = 435, - [SMALL_STATE(1277)] = 508, - [SMALL_STATE(1278)] = 581, - [SMALL_STATE(1279)] = 654, - [SMALL_STATE(1280)] = 727, - [SMALL_STATE(1281)] = 822, - [SMALL_STATE(1282)] = 913, - [SMALL_STATE(1283)] = 986, - [SMALL_STATE(1284)] = 1059, - [SMALL_STATE(1285)] = 1132, - [SMALL_STATE(1286)] = 1205, - [SMALL_STATE(1287)] = 1282, - [SMALL_STATE(1288)] = 1383, - [SMALL_STATE(1289)] = 1522, - [SMALL_STATE(1290)] = 1615, - [SMALL_STATE(1291)] = 1688, - [SMALL_STATE(1292)] = 1761, - [SMALL_STATE(1293)] = 1834, - [SMALL_STATE(1294)] = 1907, - [SMALL_STATE(1295)] = 2010, - [SMALL_STATE(1296)] = 2083, - [SMALL_STATE(1297)] = 2156, - [SMALL_STATE(1298)] = 2229, - [SMALL_STATE(1299)] = 2302, - [SMALL_STATE(1300)] = 2375, - [SMALL_STATE(1301)] = 2448, - [SMALL_STATE(1302)] = 2521, - [SMALL_STATE(1303)] = 2594, - [SMALL_STATE(1304)] = 2667, - [SMALL_STATE(1305)] = 2740, - [SMALL_STATE(1306)] = 2813, - [SMALL_STATE(1307)] = 2886, - [SMALL_STATE(1308)] = 2959, - [SMALL_STATE(1309)] = 3042, - [SMALL_STATE(1310)] = 3115, - [SMALL_STATE(1311)] = 3188, - [SMALL_STATE(1312)] = 3261, - [SMALL_STATE(1313)] = 3334, - [SMALL_STATE(1314)] = 3407, - [SMALL_STATE(1315)] = 3480, - [SMALL_STATE(1316)] = 3553, - [SMALL_STATE(1317)] = 3626, - [SMALL_STATE(1318)] = 3699, - [SMALL_STATE(1319)] = 3772, - [SMALL_STATE(1320)] = 3845, - [SMALL_STATE(1321)] = 3918, - [SMALL_STATE(1322)] = 4015, - [SMALL_STATE(1323)] = 4158, - [SMALL_STATE(1324)] = 4231, - [SMALL_STATE(1325)] = 4304, - [SMALL_STATE(1326)] = 4393, - [SMALL_STATE(1327)] = 4536, - [SMALL_STATE(1328)] = 4609, - [SMALL_STATE(1329)] = 4694, - [SMALL_STATE(1330)] = 4767, - [SMALL_STATE(1331)] = 4840, - [SMALL_STATE(1332)] = 4913, - [SMALL_STATE(1333)] = 5052, - [SMALL_STATE(1334)] = 5125, - [SMALL_STATE(1335)] = 5204, - [SMALL_STATE(1336)] = 5277, - [SMALL_STATE(1337)] = 5350, - [SMALL_STATE(1338)] = 5423, - [SMALL_STATE(1339)] = 5496, - [SMALL_STATE(1340)] = 5569, - [SMALL_STATE(1341)] = 5642, - [SMALL_STATE(1342)] = 5781, - [SMALL_STATE(1343)] = 5854, - [SMALL_STATE(1344)] = 5927, - [SMALL_STATE(1345)] = 6000, - [SMALL_STATE(1346)] = 6143, - [SMALL_STATE(1347)] = 6216, - [SMALL_STATE(1348)] = 6291, - [SMALL_STATE(1349)] = 6364, - [SMALL_STATE(1350)] = 6463, - [SMALL_STATE(1351)] = 6536, - [SMALL_STATE(1352)] = 6609, - [SMALL_STATE(1353)] = 6682, - [SMALL_STATE(1354)] = 6755, - [SMALL_STATE(1355)] = 6895, - [SMALL_STATE(1356)] = 7043, - [SMALL_STATE(1357)] = 7116, - [SMALL_STATE(1358)] = 7189, - [SMALL_STATE(1359)] = 7326, - [SMALL_STATE(1360)] = 7463, - [SMALL_STATE(1361)] = 7600, - [SMALL_STATE(1362)] = 7737, - [SMALL_STATE(1363)] = 7814, - [SMALL_STATE(1364)] = 7951, - [SMALL_STATE(1365)] = 8028, - [SMALL_STATE(1366)] = 8105, - [SMALL_STATE(1367)] = 8239, - [SMALL_STATE(1368)] = 8311, - [SMALL_STATE(1369)] = 8453, - [SMALL_STATE(1370)] = 8531, - [SMALL_STATE(1371)] = 8607, - [SMALL_STATE(1372)] = 8677, - [SMALL_STATE(1373)] = 8753, - [SMALL_STATE(1374)] = 8887, - [SMALL_STATE(1375)] = 8959, - [SMALL_STATE(1376)] = 9033, - [SMALL_STATE(1377)] = 9103, - [SMALL_STATE(1378)] = 9237, - [SMALL_STATE(1379)] = 9379, - [SMALL_STATE(1380)] = 9455, - [SMALL_STATE(1381)] = 9595, - [SMALL_STATE(1382)] = 9729, - [SMALL_STATE(1383)] = 9863, - [SMALL_STATE(1384)] = 9939, - [SMALL_STATE(1385)] = 10012, - [SMALL_STATE(1386)] = 10081, - [SMALL_STATE(1387)] = 10150, - [SMALL_STATE(1388)] = 10223, - [SMALL_STATE(1389)] = 10308, - [SMALL_STATE(1390)] = 10377, - [SMALL_STATE(1391)] = 10446, - [SMALL_STATE(1392)] = 10521, - [SMALL_STATE(1393)] = 10590, - [SMALL_STATE(1394)] = 10659, - [SMALL_STATE(1395)] = 10741, - [SMALL_STATE(1396)] = 10827, - [SMALL_STATE(1397)] = 10895, - [SMALL_STATE(1398)] = 10963, - [SMALL_STATE(1399)] = 11045, - [SMALL_STATE(1400)] = 11129, - [SMALL_STATE(1401)] = 11215, - [SMALL_STATE(1402)] = 11296, - [SMALL_STATE(1403)] = 11429, - [SMALL_STATE(1404)] = 11554, - [SMALL_STATE(1405)] = 11635, - [SMALL_STATE(1406)] = 11706, - [SMALL_STATE(1407)] = 11779, - [SMALL_STATE(1408)] = 11850, - [SMALL_STATE(1409)] = 11921, - [SMALL_STATE(1410)] = 12046, - [SMALL_STATE(1411)] = 12126, - [SMALL_STATE(1412)] = 12192, - [SMALL_STATE(1413)] = 12262, - [SMALL_STATE(1414)] = 12330, - [SMALL_STATE(1415)] = 12400, - [SMALL_STATE(1416)] = 12468, - [SMALL_STATE(1417)] = 12536, - [SMALL_STATE(1418)] = 12606, - [SMALL_STATE(1419)] = 12674, - [SMALL_STATE(1420)] = 12753, - [SMALL_STATE(1421)] = 12820, - [SMALL_STATE(1422)] = 12949, - [SMALL_STATE(1423)] = 13014, - [SMALL_STATE(1424)] = 13081, - [SMALL_STATE(1425)] = 13206, - [SMALL_STATE(1426)] = 13271, - [SMALL_STATE(1427)] = 13340, - [SMALL_STATE(1428)] = 13469, - [SMALL_STATE(1429)] = 13534, - [SMALL_STATE(1430)] = 13603, - [SMALL_STATE(1431)] = 13668, - [SMALL_STATE(1432)] = 13797, - [SMALL_STATE(1433)] = 13862, - [SMALL_STATE(1434)] = 13991, - [SMALL_STATE(1435)] = 14055, - [SMALL_STATE(1436)] = 14121, - [SMALL_STATE(1437)] = 14185, - [SMALL_STATE(1438)] = 14251, - [SMALL_STATE(1439)] = 14319, - [SMALL_STATE(1440)] = 14383, - [SMALL_STATE(1441)] = 14451, - [SMALL_STATE(1442)] = 14516, - [SMALL_STATE(1443)] = 14579, - [SMALL_STATE(1444)] = 14644, - [SMALL_STATE(1445)] = 14715, - [SMALL_STATE(1446)] = 14786, - [SMALL_STATE(1447)] = 14849, - [SMALL_STATE(1448)] = 14912, - [SMALL_STATE(1449)] = 14974, - [SMALL_STATE(1450)] = 15036, - [SMALL_STATE(1451)] = 15098, - [SMALL_STATE(1452)] = 15164, - [SMALL_STATE(1453)] = 15262, - [SMALL_STATE(1454)] = 15332, - [SMALL_STATE(1455)] = 15430, - [SMALL_STATE(1456)] = 15502, - [SMALL_STATE(1457)] = 15572, - [SMALL_STATE(1458)] = 15638, - [SMALL_STATE(1459)] = 15731, - [SMALL_STATE(1460)] = 15796, - [SMALL_STATE(1461)] = 15861, - [SMALL_STATE(1462)] = 15954, - [SMALL_STATE(1463)] = 16017, - [SMALL_STATE(1464)] = 16114, - [SMALL_STATE(1465)] = 16207, - [SMALL_STATE(1466)] = 16278, - [SMALL_STATE(1467)] = 16341, - [SMALL_STATE(1468)] = 16438, - [SMALL_STATE(1469)] = 16502, - [SMALL_STATE(1470)] = 16566, - [SMALL_STATE(1471)] = 16632, - [SMALL_STATE(1472)] = 16692, - [SMALL_STATE(1473)] = 16754, - [SMALL_STATE(1474)] = 16820, - [SMALL_STATE(1475)] = 16886, - [SMALL_STATE(1476)] = 16950, - [SMALL_STATE(1477)] = 17016, - [SMALL_STATE(1478)] = 17080, - [SMALL_STATE(1479)] = 17144, - [SMALL_STATE(1480)] = 17208, - [SMALL_STATE(1481)] = 17274, - [SMALL_STATE(1482)] = 17338, - [SMALL_STATE(1483)] = 17404, - [SMALL_STATE(1484)] = 17466, - [SMALL_STATE(1485)] = 17532, - [SMALL_STATE(1486)] = 17598, - [SMALL_STATE(1487)] = 17664, - [SMALL_STATE(1488)] = 17730, - [SMALL_STATE(1489)] = 17794, - [SMALL_STATE(1490)] = 17854, - [SMALL_STATE(1491)] = 17916, - [SMALL_STATE(1492)] = 17980, - [SMALL_STATE(1493)] = 18046, - [SMALL_STATE(1494)] = 18112, - [SMALL_STATE(1495)] = 18172, - [SMALL_STATE(1496)] = 18232, - [SMALL_STATE(1497)] = 18295, - [SMALL_STATE(1498)] = 18358, - [SMALL_STATE(1499)] = 18417, - [SMALL_STATE(1500)] = 18480, - [SMALL_STATE(1501)] = 18543, - [SMALL_STATE(1502)] = 18606, - [SMALL_STATE(1503)] = 18669, - [SMALL_STATE(1504)] = 18730, - [SMALL_STATE(1505)] = 18791, - [SMALL_STATE(1506)] = 18850, - [SMALL_STATE(1507)] = 18911, - [SMALL_STATE(1508)] = 18974, - [SMALL_STATE(1509)] = 19037, - [SMALL_STATE(1510)] = 19100, - [SMALL_STATE(1511)] = 19159, - [SMALL_STATE(1512)] = 19222, - [SMALL_STATE(1513)] = 19281, - [SMALL_STATE(1514)] = 19344, - [SMALL_STATE(1515)] = 19403, - [SMALL_STATE(1516)] = 19464, - [SMALL_STATE(1517)] = 19525, - [SMALL_STATE(1518)] = 19593, - [SMALL_STATE(1519)] = 19653, - [SMALL_STATE(1520)] = 19713, - [SMALL_STATE(1521)] = 19773, - [SMALL_STATE(1522)] = 19831, - [SMALL_STATE(1523)] = 19911, - [SMALL_STATE(1524)] = 19991, - [SMALL_STATE(1525)] = 20071, - [SMALL_STATE(1526)] = 20151, - [SMALL_STATE(1527)] = 20211, - [SMALL_STATE(1528)] = 20285, - [SMALL_STATE(1529)] = 20345, - [SMALL_STATE(1530)] = 20425, - [SMALL_STATE(1531)] = 20505, - [SMALL_STATE(1532)] = 20585, - [SMALL_STATE(1533)] = 20665, - [SMALL_STATE(1534)] = 20745, - [SMALL_STATE(1535)] = 20825, - [SMALL_STATE(1536)] = 20905, - [SMALL_STATE(1537)] = 20985, - [SMALL_STATE(1538)] = 21065, - [SMALL_STATE(1539)] = 21145, - [SMALL_STATE(1540)] = 21231, - [SMALL_STATE(1541)] = 21311, - [SMALL_STATE(1542)] = 21391, - [SMALL_STATE(1543)] = 21483, - [SMALL_STATE(1544)] = 21563, - [SMALL_STATE(1545)] = 21643, - [SMALL_STATE(1546)] = 21723, - [SMALL_STATE(1547)] = 21803, - [SMALL_STATE(1548)] = 21883, - [SMALL_STATE(1549)] = 21963, - [SMALL_STATE(1550)] = 22043, - [SMALL_STATE(1551)] = 22123, - [SMALL_STATE(1552)] = 22203, - [SMALL_STATE(1553)] = 22283, - [SMALL_STATE(1554)] = 22363, - [SMALL_STATE(1555)] = 22443, - [SMALL_STATE(1556)] = 22529, - [SMALL_STATE(1557)] = 22609, - [SMALL_STATE(1558)] = 22689, - [SMALL_STATE(1559)] = 22769, - [SMALL_STATE(1560)] = 22849, - [SMALL_STATE(1561)] = 22929, - [SMALL_STATE(1562)] = 23009, - [SMALL_STATE(1563)] = 23089, - [SMALL_STATE(1564)] = 23169, - [SMALL_STATE(1565)] = 23249, - [SMALL_STATE(1566)] = 23329, - [SMALL_STATE(1567)] = 23409, - [SMALL_STATE(1568)] = 23489, - [SMALL_STATE(1569)] = 23565, - [SMALL_STATE(1570)] = 23639, - [SMALL_STATE(1571)] = 23707, - [SMALL_STATE(1572)] = 23771, - [SMALL_STATE(1573)] = 23857, - [SMALL_STATE(1574)] = 23945, - [SMALL_STATE(1575)] = 24035, - [SMALL_STATE(1576)] = 24113, - [SMALL_STATE(1577)] = 24185, - [SMALL_STATE(1578)] = 24265, - [SMALL_STATE(1579)] = 24347, - [SMALL_STATE(1580)] = 24431, - [SMALL_STATE(1581)] = 24517, - [SMALL_STATE(1582)] = 24593, - [SMALL_STATE(1583)] = 24667, - [SMALL_STATE(1584)] = 24741, - [SMALL_STATE(1585)] = 24813, - [SMALL_STATE(1586)] = 24881, - [SMALL_STATE(1587)] = 24947, - [SMALL_STATE(1588)] = 25011, - [SMALL_STATE(1589)] = 25073, - [SMALL_STATE(1590)] = 25159, - [SMALL_STATE(1591)] = 25243, - [SMALL_STATE(1592)] = 25331, - [SMALL_STATE(1593)] = 25417, - [SMALL_STATE(1594)] = 25507, - [SMALL_STATE(1595)] = 25595, - [SMALL_STATE(1596)] = 25673, - [SMALL_STATE(1597)] = 25749, - [SMALL_STATE(1598)] = 25821, - [SMALL_STATE(1599)] = 25891, - [SMALL_STATE(1600)] = 25971, - [SMALL_STATE(1601)] = 26049, - [SMALL_STATE(1602)] = 26131, - [SMALL_STATE(1603)] = 26211, - [SMALL_STATE(1604)] = 26295, - [SMALL_STATE(1605)] = 26377, - [SMALL_STATE(1606)] = 26453, - [SMALL_STATE(1607)] = 26527, - [SMALL_STATE(1608)] = 26613, - [SMALL_STATE(1609)] = 26677, - [SMALL_STATE(1610)] = 26757, - [SMALL_STATE(1611)] = 26843, - [SMALL_STATE(1612)] = 26931, - [SMALL_STATE(1613)] = 27021, - [SMALL_STATE(1614)] = 27099, - [SMALL_STATE(1615)] = 27171, - [SMALL_STATE(1616)] = 27251, - [SMALL_STATE(1617)] = 27333, - [SMALL_STATE(1618)] = 27417, - [SMALL_STATE(1619)] = 27509, - [SMALL_STATE(1620)] = 27583, - [SMALL_STATE(1621)] = 27655, - [SMALL_STATE(1622)] = 27721, - [SMALL_STATE(1623)] = 27783, - [SMALL_STATE(1624)] = 27867, - [SMALL_STATE(1625)] = 27953, - [SMALL_STATE(1626)] = 28041, - [SMALL_STATE(1627)] = 28117, - [SMALL_STATE(1628)] = 28187, - [SMALL_STATE(1629)] = 28265, - [SMALL_STATE(1630)] = 28345, - [SMALL_STATE(1631)] = 28427, - [SMALL_STATE(1632)] = 28503, - [SMALL_STATE(1633)] = 28577, - [SMALL_STATE(1634)] = 28651, - [SMALL_STATE(1635)] = 28723, - [SMALL_STATE(1636)] = 28791, - [SMALL_STATE(1637)] = 28857, - [SMALL_STATE(1638)] = 28921, - [SMALL_STATE(1639)] = 28983, - [SMALL_STATE(1640)] = 29069, - [SMALL_STATE(1641)] = 29153, - [SMALL_STATE(1642)] = 29241, - [SMALL_STATE(1643)] = 29327, - [SMALL_STATE(1644)] = 29417, - [SMALL_STATE(1645)] = 29505, - [SMALL_STATE(1646)] = 29583, - [SMALL_STATE(1647)] = 29659, - [SMALL_STATE(1648)] = 29731, - [SMALL_STATE(1649)] = 29801, - [SMALL_STATE(1650)] = 29881, - [SMALL_STATE(1651)] = 29959, - [SMALL_STATE(1652)] = 30041, - [SMALL_STATE(1653)] = 30121, - [SMALL_STATE(1654)] = 30205, - [SMALL_STATE(1655)] = 30287, - [SMALL_STATE(1656)] = 30361, - [SMALL_STATE(1657)] = 30433, - [SMALL_STATE(1658)] = 30499, - [SMALL_STATE(1659)] = 30561, - [SMALL_STATE(1660)] = 30645, - [SMALL_STATE(1661)] = 30731, - [SMALL_STATE(1662)] = 30819, - [SMALL_STATE(1663)] = 30895, - [SMALL_STATE(1664)] = 30965, - [SMALL_STATE(1665)] = 31043, - [SMALL_STATE(1666)] = 31123, - [SMALL_STATE(1667)] = 31205, - [SMALL_STATE(1668)] = 31295, - [SMALL_STATE(1669)] = 31367, - [SMALL_STATE(1670)] = 31437, - [SMALL_STATE(1671)] = 31501, - [SMALL_STATE(1672)] = 31561, - [SMALL_STATE(1673)] = 31643, - [SMALL_STATE(1674)] = 31727, - [SMALL_STATE(1675)] = 31813, - [SMALL_STATE(1676)] = 31887, - [SMALL_STATE(1677)] = 31955, - [SMALL_STATE(1678)] = 32031, - [SMALL_STATE(1679)] = 32109, - [SMALL_STATE(1680)] = 32189, - [SMALL_STATE(1681)] = 32275, - [SMALL_STATE(1682)] = 32355, - [SMALL_STATE(1683)] = 32435, - [SMALL_STATE(1684)] = 32521, - [SMALL_STATE(1685)] = 32607, - [SMALL_STATE(1686)] = 32693, - [SMALL_STATE(1687)] = 32773, - [SMALL_STATE(1688)] = 32853, - [SMALL_STATE(1689)] = 32933, - [SMALL_STATE(1690)] = 33013, - [SMALL_STATE(1691)] = 33093, - [SMALL_STATE(1692)] = 33164, - [SMALL_STATE(1693)] = 33235, - [SMALL_STATE(1694)] = 33322, - [SMALL_STATE(1695)] = 33393, - [SMALL_STATE(1696)] = 33462, - [SMALL_STATE(1697)] = 33525, - [SMALL_STATE(1698)] = 33584, - [SMALL_STATE(1699)] = 33665, - [SMALL_STATE(1700)] = 33748, - [SMALL_STATE(1701)] = 33833, - [SMALL_STATE(1702)] = 33906, - [SMALL_STATE(1703)] = 33973, - [SMALL_STATE(1704)] = 34048, - [SMALL_STATE(1705)] = 34125, - [SMALL_STATE(1706)] = 34202, - [SMALL_STATE(1707)] = 34281, - [SMALL_STATE(1708)] = 34340, - [SMALL_STATE(1709)] = 34413, - [SMALL_STATE(1710)] = 34500, - [SMALL_STATE(1711)] = 34586, - [SMALL_STATE(1712)] = 34672, - [SMALL_STATE(1713)] = 34758, - [SMALL_STATE(1714)] = 34818, - [SMALL_STATE(1715)] = 34878, - [SMALL_STATE(1716)] = 34964, - [SMALL_STATE(1717)] = 35050, - [SMALL_STATE(1718)] = 35120, - [SMALL_STATE(1719)] = 35190, - [SMALL_STATE(1720)] = 35260, - [SMALL_STATE(1721)] = 35330, - [SMALL_STATE(1722)] = 35416, - [SMALL_STATE(1723)] = 35502, - [SMALL_STATE(1724)] = 35588, - [SMALL_STATE(1725)] = 35674, - [SMALL_STATE(1726)] = 35760, - [SMALL_STATE(1727)] = 35846, - [SMALL_STATE(1728)] = 35903, - [SMALL_STATE(1729)] = 35974, - [SMALL_STATE(1730)] = 36037, - [SMALL_STATE(1731)] = 36104, - [SMALL_STATE(1732)] = 36185, - [SMALL_STATE(1733)] = 36252, - [SMALL_STATE(1734)] = 36315, - [SMALL_STATE(1735)] = 36378, - [SMALL_STATE(1736)] = 36439, - [SMALL_STATE(1737)] = 36496, - [SMALL_STATE(1738)] = 36567, - [SMALL_STATE(1739)] = 36636, - [SMALL_STATE(1740)] = 36717, - [SMALL_STATE(1741)] = 36798, - [SMALL_STATE(1742)] = 36865, - [SMALL_STATE(1743)] = 36924, - [SMALL_STATE(1744)] = 36983, - [SMALL_STATE(1745)] = 37050, - [SMALL_STATE(1746)] = 37117, - [SMALL_STATE(1747)] = 37184, - [SMALL_STATE(1748)] = 37255, - [SMALL_STATE(1749)] = 37326, - [SMALL_STATE(1750)] = 37397, - [SMALL_STATE(1751)] = 37465, - [SMALL_STATE(1752)] = 37523, - [SMALL_STATE(1753)] = 37601, - [SMALL_STATE(1754)] = 37669, - [SMALL_STATE(1755)] = 37723, - [SMALL_STATE(1756)] = 37777, - [SMALL_STATE(1757)] = 37831, - [SMALL_STATE(1758)] = 37885, - [SMALL_STATE(1759)] = 37939, - [SMALL_STATE(1760)] = 37993, - [SMALL_STATE(1761)] = 38071, - [SMALL_STATE(1762)] = 38133, - [SMALL_STATE(1763)] = 38211, - [SMALL_STATE(1764)] = 38279, - [SMALL_STATE(1765)] = 38341, - [SMALL_STATE(1766)] = 38419, - [SMALL_STATE(1767)] = 38479, - [SMALL_STATE(1768)] = 38557, - [SMALL_STATE(1769)] = 38613, - [SMALL_STATE(1770)] = 38691, - [SMALL_STATE(1771)] = 38771, - [SMALL_STATE(1772)] = 38833, - [SMALL_STATE(1773)] = 38911, - [SMALL_STATE(1774)] = 38989, - [SMALL_STATE(1775)] = 39057, - [SMALL_STATE(1776)] = 39125, - [SMALL_STATE(1777)] = 39183, - [SMALL_STATE(1778)] = 39243, - [SMALL_STATE(1779)] = 39321, - [SMALL_STATE(1780)] = 39389, - [SMALL_STATE(1781)] = 39447, - [SMALL_STATE(1782)] = 39525, - [SMALL_STATE(1783)] = 39583, - [SMALL_STATE(1784)] = 39651, - [SMALL_STATE(1785)] = 39705, - [SMALL_STATE(1786)] = 39783, - [SMALL_STATE(1787)] = 39841, - [SMALL_STATE(1788)] = 39895, - [SMALL_STATE(1789)] = 39949, - [SMALL_STATE(1790)] = 40029, - [SMALL_STATE(1791)] = 40085, - [SMALL_STATE(1792)] = 40138, - [SMALL_STATE(1793)] = 40215, - [SMALL_STATE(1794)] = 40292, - [SMALL_STATE(1795)] = 40357, - [SMALL_STATE(1796)] = 40422, - [SMALL_STATE(1797)] = 40487, - [SMALL_STATE(1798)] = 40544, - [SMALL_STATE(1799)] = 40609, - [SMALL_STATE(1800)] = 40660, - [SMALL_STATE(1801)] = 40719, - [SMALL_STATE(1802)] = 40784, - [SMALL_STATE(1803)] = 40835, - [SMALL_STATE(1804)] = 40892, - [SMALL_STATE(1805)] = 40957, - [SMALL_STATE(1806)] = 41008, - [SMALL_STATE(1807)] = 41061, - [SMALL_STATE(1808)] = 41114, - [SMALL_STATE(1809)] = 41167, - [SMALL_STATE(1810)] = 41222, - [SMALL_STATE(1811)] = 41275, - [SMALL_STATE(1812)] = 41328, - [SMALL_STATE(1813)] = 41379, - [SMALL_STATE(1814)] = 41444, - [SMALL_STATE(1815)] = 41499, - [SMALL_STATE(1816)] = 41562, - [SMALL_STATE(1817)] = 41617, - [SMALL_STATE(1818)] = 41672, - [SMALL_STATE(1819)] = 41749, - [SMALL_STATE(1820)] = 41814, - [SMALL_STATE(1821)] = 41879, - [SMALL_STATE(1822)] = 41944, - [SMALL_STATE(1823)] = 42009, - [SMALL_STATE(1824)] = 42062, - [SMALL_STATE(1825)] = 42115, - [SMALL_STATE(1826)] = 42168, - [SMALL_STATE(1827)] = 42233, - [SMALL_STATE(1828)] = 42288, - [SMALL_STATE(1829)] = 42353, - [SMALL_STATE(1830)] = 42408, - [SMALL_STATE(1831)] = 42473, - [SMALL_STATE(1832)] = 42538, - [SMALL_STATE(1833)] = 42603, - [SMALL_STATE(1834)] = 42654, - [SMALL_STATE(1835)] = 42731, - [SMALL_STATE(1836)] = 42808, - [SMALL_STATE(1837)] = 42859, - [SMALL_STATE(1838)] = 42924, - [SMALL_STATE(1839)] = 43001, - [SMALL_STATE(1840)] = 43066, - [SMALL_STATE(1841)] = 43131, - [SMALL_STATE(1842)] = 43208, - [SMALL_STATE(1843)] = 43265, - [SMALL_STATE(1844)] = 43342, - [SMALL_STATE(1845)] = 43407, - [SMALL_STATE(1846)] = 43484, - [SMALL_STATE(1847)] = 43561, - [SMALL_STATE(1848)] = 43638, - [SMALL_STATE(1849)] = 43703, - [SMALL_STATE(1850)] = 43768, - [SMALL_STATE(1851)] = 43833, - [SMALL_STATE(1852)] = 43898, - [SMALL_STATE(1853)] = 43975, - [SMALL_STATE(1854)] = 44040, - [SMALL_STATE(1855)] = 44105, - [SMALL_STATE(1856)] = 44159, - [SMALL_STATE(1857)] = 44219, - [SMALL_STATE(1858)] = 44281, - [SMALL_STATE(1859)] = 44343, - [SMALL_STATE(1860)] = 44403, - [SMALL_STATE(1861)] = 44463, - [SMALL_STATE(1862)] = 44523, - [SMALL_STATE(1863)] = 44575, - [SMALL_STATE(1864)] = 44637, - [SMALL_STATE(1865)] = 44689, - [SMALL_STATE(1866)] = 44741, - [SMALL_STATE(1867)] = 44793, - [SMALL_STATE(1868)] = 44847, - [SMALL_STATE(1869)] = 44899, - [SMALL_STATE(1870)] = 44951, - [SMALL_STATE(1871)] = 45005, - [SMALL_STATE(1872)] = 45057, - [SMALL_STATE(1873)] = 45109, - [SMALL_STATE(1874)] = 45161, - [SMALL_STATE(1875)] = 45215, - [SMALL_STATE(1876)] = 45266, - [SMALL_STATE(1877)] = 45325, - [SMALL_STATE(1878)] = 45376, - [SMALL_STATE(1879)] = 45427, - [SMALL_STATE(1880)] = 45478, - [SMALL_STATE(1881)] = 45529, - [SMALL_STATE(1882)] = 45580, - [SMALL_STATE(1883)] = 45639, - [SMALL_STATE(1884)] = 45738, - [SMALL_STATE(1885)] = 45789, - [SMALL_STATE(1886)] = 45844, - [SMALL_STATE(1887)] = 45895, - [SMALL_STATE(1888)] = 45954, - [SMALL_STATE(1889)] = 46005, - [SMALL_STATE(1890)] = 46056, - [SMALL_STATE(1891)] = 46107, - [SMALL_STATE(1892)] = 46166, - [SMALL_STATE(1893)] = 46217, - [SMALL_STATE(1894)] = 46268, - [SMALL_STATE(1895)] = 46319, - [SMALL_STATE(1896)] = 46370, - [SMALL_STATE(1897)] = 46421, - [SMALL_STATE(1898)] = 46472, - [SMALL_STATE(1899)] = 46523, - [SMALL_STATE(1900)] = 46574, - [SMALL_STATE(1901)] = 46625, - [SMALL_STATE(1902)] = 46680, - [SMALL_STATE(1903)] = 46739, - [SMALL_STATE(1904)] = 46790, - [SMALL_STATE(1905)] = 46841, - [SMALL_STATE(1906)] = 46896, - [SMALL_STATE(1907)] = 46947, - [SMALL_STATE(1908)] = 47006, - [SMALL_STATE(1909)] = 47065, - [SMALL_STATE(1910)] = 47120, - [SMALL_STATE(1911)] = 47171, - [SMALL_STATE(1912)] = 47221, - [SMALL_STATE(1913)] = 47271, - [SMALL_STATE(1914)] = 47329, - [SMALL_STATE(1915)] = 47385, - [SMALL_STATE(1916)] = 47435, - [SMALL_STATE(1917)] = 47493, - [SMALL_STATE(1918)] = 47551, - [SMALL_STATE(1919)] = 47647, - [SMALL_STATE(1920)] = 47701, - [SMALL_STATE(1921)] = 47753, - [SMALL_STATE(1922)] = 47803, - [SMALL_STATE(1923)] = 47857, - [SMALL_STATE(1924)] = 47909, - [SMALL_STATE(1925)] = 47967, - [SMALL_STATE(1926)] = 48021, - [SMALL_STATE(1927)] = 48071, - [SMALL_STATE(1928)] = 48121, - [SMALL_STATE(1929)] = 48171, - [SMALL_STATE(1930)] = 48221, - [SMALL_STATE(1931)] = 48271, - [SMALL_STATE(1932)] = 48323, - [SMALL_STATE(1933)] = 48419, - [SMALL_STATE(1934)] = 48469, - [SMALL_STATE(1935)] = 48523, - [SMALL_STATE(1936)] = 48573, - [SMALL_STATE(1937)] = 48623, - [SMALL_STATE(1938)] = 48681, - [SMALL_STATE(1939)] = 48733, - [SMALL_STATE(1940)] = 48783, - [SMALL_STATE(1941)] = 48841, - [SMALL_STATE(1942)] = 48891, - [SMALL_STATE(1943)] = 48941, - [SMALL_STATE(1944)] = 48999, - [SMALL_STATE(1945)] = 49049, - [SMALL_STATE(1946)] = 49099, - [SMALL_STATE(1947)] = 49149, - [SMALL_STATE(1948)] = 49202, - [SMALL_STATE(1949)] = 49253, - [SMALL_STATE(1950)] = 49306, - [SMALL_STATE(1951)] = 49359, - [SMALL_STATE(1952)] = 49408, - [SMALL_STATE(1953)] = 49457, - [SMALL_STATE(1954)] = 49506, - [SMALL_STATE(1955)] = 49557, - [SMALL_STATE(1956)] = 49606, - [SMALL_STATE(1957)] = 49659, - [SMALL_STATE(1958)] = 49714, - [SMALL_STATE(1959)] = 49767, - [SMALL_STATE(1960)] = 49820, - [SMALL_STATE(1961)] = 49871, - [SMALL_STATE(1962)] = 49924, - [SMALL_STATE(1963)] = 49979, - [SMALL_STATE(1964)] = 50028, - [SMALL_STATE(1965)] = 50123, - [SMALL_STATE(1966)] = 50172, - [SMALL_STATE(1967)] = 50221, - [SMALL_STATE(1968)] = 50274, - [SMALL_STATE(1969)] = 50323, - [SMALL_STATE(1970)] = 50376, - [SMALL_STATE(1971)] = 50429, - [SMALL_STATE(1972)] = 50482, - [SMALL_STATE(1973)] = 50535, - [SMALL_STATE(1974)] = 50584, - [SMALL_STATE(1975)] = 50633, - [SMALL_STATE(1976)] = 50728, - [SMALL_STATE(1977)] = 50781, - [SMALL_STATE(1978)] = 50834, - [SMALL_STATE(1979)] = 50887, - [SMALL_STATE(1980)] = 50936, - [SMALL_STATE(1981)] = 50985, - [SMALL_STATE(1982)] = 51038, - [SMALL_STATE(1983)] = 51091, - [SMALL_STATE(1984)] = 51144, - [SMALL_STATE(1985)] = 51201, - [SMALL_STATE(1986)] = 51254, - [SMALL_STATE(1987)] = 51303, - [SMALL_STATE(1988)] = 51356, - [SMALL_STATE(1989)] = 51409, - [SMALL_STATE(1990)] = 51458, - [SMALL_STATE(1991)] = 51513, - [SMALL_STATE(1992)] = 51566, - [SMALL_STATE(1993)] = 51617, - [SMALL_STATE(1994)] = 51670, - [SMALL_STATE(1995)] = 51723, - [SMALL_STATE(1996)] = 51776, - [SMALL_STATE(1997)] = 51829, - [SMALL_STATE(1998)] = 51887, - [SMALL_STATE(1999)] = 51939, - [SMALL_STATE(2000)] = 51991, - [SMALL_STATE(2001)] = 52043, - [SMALL_STATE(2002)] = 52095, - [SMALL_STATE(2003)] = 52143, - [SMALL_STATE(2004)] = 52191, - [SMALL_STATE(2005)] = 52243, - [SMALL_STATE(2006)] = 52295, - [SMALL_STATE(2007)] = 52347, - [SMALL_STATE(2008)] = 52401, - [SMALL_STATE(2009)] = 52457, - [SMALL_STATE(2010)] = 52505, - [SMALL_STATE(2011)] = 52553, - [SMALL_STATE(2012)] = 52601, - [SMALL_STATE(2013)] = 52649, - [SMALL_STATE(2014)] = 52703, - [SMALL_STATE(2015)] = 52759, - [SMALL_STATE(2016)] = 52809, - [SMALL_STATE(2017)] = 52859, - [SMALL_STATE(2018)] = 52913, - [SMALL_STATE(2019)] = 52967, - [SMALL_STATE(2020)] = 53033, - [SMALL_STATE(2021)] = 53097, - [SMALL_STATE(2022)] = 53155, - [SMALL_STATE(2023)] = 53209, - [SMALL_STATE(2024)] = 53263, - [SMALL_STATE(2025)] = 53339, - [SMALL_STATE(2026)] = 53389, - [SMALL_STATE(2027)] = 53467, - [SMALL_STATE(2028)] = 53547, - [SMALL_STATE(2029)] = 53615, - [SMALL_STATE(2030)] = 53677, - [SMALL_STATE(2031)] = 53747, - [SMALL_STATE(2032)] = 53819, - [SMALL_STATE(2033)] = 53893, - [SMALL_STATE(2034)] = 53947, - [SMALL_STATE(2035)] = 54013, - [SMALL_STATE(2036)] = 54077, - [SMALL_STATE(2037)] = 54141, - [SMALL_STATE(2038)] = 54203, - [SMALL_STATE(2039)] = 54259, - [SMALL_STATE(2040)] = 54313, - [SMALL_STATE(2041)] = 54365, - [SMALL_STATE(2042)] = 54441, - [SMALL_STATE(2043)] = 54515, - [SMALL_STATE(2044)] = 54593, - [SMALL_STATE(2045)] = 54669, - [SMALL_STATE(2046)] = 54749, - [SMALL_STATE(2047)] = 54827, - [SMALL_STATE(2048)] = 54895, - [SMALL_STATE(2049)] = 54961, - [SMALL_STATE(2050)] = 55023, - [SMALL_STATE(2051)] = 55083, - [SMALL_STATE(2052)] = 55153, - [SMALL_STATE(2053)] = 55221, - [SMALL_STATE(2054)] = 55293, - [SMALL_STATE(2055)] = 55363, - [SMALL_STATE(2056)] = 55437, - [SMALL_STATE(2057)] = 55509, - [SMALL_STATE(2058)] = 55575, - [SMALL_STATE(2059)] = 55639, - [SMALL_STATE(2060)] = 55697, - [SMALL_STATE(2061)] = 55751, - [SMALL_STATE(2062)] = 55827, - [SMALL_STATE(2063)] = 55905, - [SMALL_STATE(2064)] = 55985, - [SMALL_STATE(2065)] = 56053, - [SMALL_STATE(2066)] = 56115, - [SMALL_STATE(2067)] = 56185, - [SMALL_STATE(2068)] = 56257, - [SMALL_STATE(2069)] = 56331, - [SMALL_STATE(2070)] = 56385, - [SMALL_STATE(2071)] = 56449, - [SMALL_STATE(2072)] = 56511, - [SMALL_STATE(2073)] = 56567, - [SMALL_STATE(2074)] = 56619, - [SMALL_STATE(2075)] = 56693, - [SMALL_STATE(2076)] = 56769, - [SMALL_STATE(2077)] = 56847, - [SMALL_STATE(2078)] = 56913, - [SMALL_STATE(2079)] = 56973, - [SMALL_STATE(2080)] = 57041, - [SMALL_STATE(2081)] = 57111, - [SMALL_STATE(2082)] = 57183, - [SMALL_STATE(2083)] = 57249, - [SMALL_STATE(2084)] = 57313, - [SMALL_STATE(2085)] = 57377, - [SMALL_STATE(2086)] = 57429, - [SMALL_STATE(2087)] = 57487, - [SMALL_STATE(2088)] = 57543, - [SMALL_STATE(2089)] = 57597, - [SMALL_STATE(2090)] = 57649, - [SMALL_STATE(2091)] = 57725, - [SMALL_STATE(2092)] = 57799, - [SMALL_STATE(2093)] = 57877, - [SMALL_STATE(2094)] = 57953, - [SMALL_STATE(2095)] = 58033, - [SMALL_STATE(2096)] = 58111, - [SMALL_STATE(2097)] = 58179, - [SMALL_STATE(2098)] = 58245, - [SMALL_STATE(2099)] = 58307, - [SMALL_STATE(2100)] = 58367, - [SMALL_STATE(2101)] = 58437, - [SMALL_STATE(2102)] = 58505, - [SMALL_STATE(2103)] = 58577, - [SMALL_STATE(2104)] = 58647, - [SMALL_STATE(2105)] = 58721, - [SMALL_STATE(2106)] = 58793, - [SMALL_STATE(2107)] = 58847, - [SMALL_STATE(2108)] = 58911, - [SMALL_STATE(2109)] = 58973, - [SMALL_STATE(2110)] = 59029, - [SMALL_STATE(2111)] = 59081, - [SMALL_STATE(2112)] = 59155, - [SMALL_STATE(2113)] = 59231, - [SMALL_STATE(2114)] = 59309, - [SMALL_STATE(2115)] = 59375, - [SMALL_STATE(2116)] = 59435, - [SMALL_STATE(2117)] = 59503, - [SMALL_STATE(2118)] = 59573, - [SMALL_STATE(2119)] = 59645, - [SMALL_STATE(2120)] = 59699, - [SMALL_STATE(2121)] = 59747, - [SMALL_STATE(2122)] = 59801, - [SMALL_STATE(2123)] = 59853, - [SMALL_STATE(2124)] = 59903, - [SMALL_STATE(2125)] = 59951, - [SMALL_STATE(2126)] = 60001, - [SMALL_STATE(2127)] = 60053, - [SMALL_STATE(2128)] = 60101, - [SMALL_STATE(2129)] = 60151, - [SMALL_STATE(2130)] = 60201, - [SMALL_STATE(2131)] = 60249, - [SMALL_STATE(2132)] = 60297, - [SMALL_STATE(2133)] = 60349, - [SMALL_STATE(2134)] = 60403, - [SMALL_STATE(2135)] = 60457, - [SMALL_STATE(2136)] = 60503, - [SMALL_STATE(2137)] = 60557, - [SMALL_STATE(2138)] = 60611, - [SMALL_STATE(2139)] = 60665, - [SMALL_STATE(2140)] = 60719, - [SMALL_STATE(2141)] = 60771, - [SMALL_STATE(2142)] = 60833, - [SMALL_STATE(2143)] = 60882, - [SMALL_STATE(2144)] = 60931, - [SMALL_STATE(2145)] = 60980, - [SMALL_STATE(2146)] = 61059, - [SMALL_STATE(2147)] = 61110, - [SMALL_STATE(2148)] = 61161, - [SMALL_STATE(2149)] = 61208, - [SMALL_STATE(2150)] = 61255, - [SMALL_STATE(2151)] = 61304, - [SMALL_STATE(2152)] = 61351, - [SMALL_STATE(2153)] = 61396, - [SMALL_STATE(2154)] = 61445, - [SMALL_STATE(2155)] = 61494, - [SMALL_STATE(2156)] = 61543, - [SMALL_STATE(2157)] = 61590, - [SMALL_STATE(2158)] = 61669, - [SMALL_STATE(2159)] = 61716, - [SMALL_STATE(2160)] = 61765, - [SMALL_STATE(2161)] = 61844, - [SMALL_STATE(2162)] = 61923, - [SMALL_STATE(2163)] = 61972, - [SMALL_STATE(2164)] = 62051, - [SMALL_STATE(2165)] = 62130, - [SMALL_STATE(2166)] = 62177, - [SMALL_STATE(2167)] = 62223, - [SMALL_STATE(2168)] = 62269, - [SMALL_STATE(2169)] = 62315, - [SMALL_STATE(2170)] = 62361, - [SMALL_STATE(2171)] = 62407, - [SMALL_STATE(2172)] = 62453, - [SMALL_STATE(2173)] = 62499, - [SMALL_STATE(2174)] = 62545, - [SMALL_STATE(2175)] = 62591, - [SMALL_STATE(2176)] = 62637, - [SMALL_STATE(2177)] = 62729, - [SMALL_STATE(2178)] = 62775, - [SMALL_STATE(2179)] = 62821, - [SMALL_STATE(2180)] = 62881, - [SMALL_STATE(2181)] = 62939, - [SMALL_STATE(2182)] = 62991, - [SMALL_STATE(2183)] = 63039, - [SMALL_STATE(2184)] = 63109, - [SMALL_STATE(2185)] = 63181, - [SMALL_STATE(2186)] = 63255, - [SMALL_STATE(2187)] = 63317, - [SMALL_STATE(2188)] = 63373, - [SMALL_STATE(2189)] = 63437, - [SMALL_STATE(2190)] = 63503, - [SMALL_STATE(2191)] = 63571, - [SMALL_STATE(2192)] = 63617, - [SMALL_STATE(2193)] = 63663, - [SMALL_STATE(2194)] = 63711, - [SMALL_STATE(2195)] = 63759, - [SMALL_STATE(2196)] = 63805, - [SMALL_STATE(2197)] = 63851, - [SMALL_STATE(2198)] = 63897, - [SMALL_STATE(2199)] = 63945, - [SMALL_STATE(2200)] = 63991, - [SMALL_STATE(2201)] = 64037, - [SMALL_STATE(2202)] = 64129, - [SMALL_STATE(2203)] = 64175, - [SMALL_STATE(2204)] = 64221, - [SMALL_STATE(2205)] = 64267, - [SMALL_STATE(2206)] = 64313, - [SMALL_STATE(2207)] = 64359, - [SMALL_STATE(2208)] = 64405, - [SMALL_STATE(2209)] = 64451, - [SMALL_STATE(2210)] = 64497, - [SMALL_STATE(2211)] = 64543, - [SMALL_STATE(2212)] = 64589, - [SMALL_STATE(2213)] = 64649, - [SMALL_STATE(2214)] = 64707, - [SMALL_STATE(2215)] = 64759, - [SMALL_STATE(2216)] = 64807, - [SMALL_STATE(2217)] = 64877, - [SMALL_STATE(2218)] = 64923, - [SMALL_STATE(2219)] = 64995, - [SMALL_STATE(2220)] = 65069, - [SMALL_STATE(2221)] = 65115, - [SMALL_STATE(2222)] = 65177, - [SMALL_STATE(2223)] = 65233, - [SMALL_STATE(2224)] = 65281, - [SMALL_STATE(2225)] = 65345, - [SMALL_STATE(2226)] = 65437, - [SMALL_STATE(2227)] = 65503, - [SMALL_STATE(2228)] = 65571, - [SMALL_STATE(2229)] = 65619, - [SMALL_STATE(2230)] = 65665, - [SMALL_STATE(2231)] = 65711, - [SMALL_STATE(2232)] = 65759, - [SMALL_STATE(2233)] = 65805, - [SMALL_STATE(2234)] = 65851, - [SMALL_STATE(2235)] = 65899, - [SMALL_STATE(2236)] = 65947, - [SMALL_STATE(2237)] = 65993, - [SMALL_STATE(2238)] = 66085, - [SMALL_STATE(2239)] = 66131, - [SMALL_STATE(2240)] = 66177, - [SMALL_STATE(2241)] = 66223, - [SMALL_STATE(2242)] = 66269, - [SMALL_STATE(2243)] = 66315, - [SMALL_STATE(2244)] = 66361, - [SMALL_STATE(2245)] = 66407, - [SMALL_STATE(2246)] = 66455, - [SMALL_STATE(2247)] = 66500, - [SMALL_STATE(2248)] = 66573, - [SMALL_STATE(2249)] = 66624, - [SMALL_STATE(2250)] = 66697, - [SMALL_STATE(2251)] = 66770, - [SMALL_STATE(2252)] = 66843, - [SMALL_STATE(2253)] = 66916, - [SMALL_STATE(2254)] = 66989, - [SMALL_STATE(2255)] = 67075, - [SMALL_STATE(2256)] = 67125, - [SMALL_STATE(2257)] = 67175, - [SMALL_STATE(2258)] = 67225, - [SMALL_STATE(2259)] = 67275, - [SMALL_STATE(2260)] = 67321, - [SMALL_STATE(2261)] = 67367, - [SMALL_STATE(2262)] = 67416, - [SMALL_STATE(2263)] = 67465, - [SMALL_STATE(2264)] = 67514, - [SMALL_STATE(2265)] = 67561, - [SMALL_STATE(2266)] = 67612, - [SMALL_STATE(2267)] = 67655, - [SMALL_STATE(2268)] = 67698, - [SMALL_STATE(2269)] = 67741, - [SMALL_STATE(2270)] = 67790, - [SMALL_STATE(2271)] = 67835, - [SMALL_STATE(2272)] = 67884, - [SMALL_STATE(2273)] = 67933, - [SMALL_STATE(2274)] = 67976, - [SMALL_STATE(2275)] = 68019, - [SMALL_STATE(2276)] = 68062, - [SMALL_STATE(2277)] = 68107, - [SMALL_STATE(2278)] = 68150, - [SMALL_STATE(2279)] = 68193, - [SMALL_STATE(2280)] = 68235, - [SMALL_STATE(2281)] = 68315, - [SMALL_STATE(2282)] = 68359, - [SMALL_STATE(2283)] = 68439, - [SMALL_STATE(2284)] = 68485, - [SMALL_STATE(2285)] = 68527, - [SMALL_STATE(2286)] = 68605, - [SMALL_STATE(2287)] = 68650, - [SMALL_STATE(2288)] = 68691, - [SMALL_STATE(2289)] = 68736, - [SMALL_STATE(2290)] = 68818, - [SMALL_STATE(2291)] = 68862, - [SMALL_STATE(2292)] = 68906, - [SMALL_STATE(2293)] = 68950, - [SMALL_STATE(2294)] = 68990, - [SMALL_STATE(2295)] = 69034, - [SMALL_STATE(2296)] = 69116, - [SMALL_STATE(2297)] = 69161, - [SMALL_STATE(2298)] = 69237, - [SMALL_STATE(2299)] = 69313, - [SMALL_STATE(2300)] = 69389, - [SMALL_STATE(2301)] = 69465, - [SMALL_STATE(2302)] = 69541, - [SMALL_STATE(2303)] = 69587, - [SMALL_STATE(2304)] = 69639, - [SMALL_STATE(2305)] = 69715, - [SMALL_STATE(2306)] = 69791, - [SMALL_STATE(2307)] = 69867, - [SMALL_STATE(2308)] = 69943, - [SMALL_STATE(2309)] = 70019, - [SMALL_STATE(2310)] = 70095, - [SMALL_STATE(2311)] = 70171, - [SMALL_STATE(2312)] = 70247, - [SMALL_STATE(2313)] = 70323, - [SMALL_STATE(2314)] = 70399, - [SMALL_STATE(2315)] = 70475, - [SMALL_STATE(2316)] = 70551, - [SMALL_STATE(2317)] = 70627, - [SMALL_STATE(2318)] = 70703, - [SMALL_STATE(2319)] = 70779, - [SMALL_STATE(2320)] = 70855, - [SMALL_STATE(2321)] = 70931, - [SMALL_STATE(2322)] = 71007, - [SMALL_STATE(2323)] = 71083, - [SMALL_STATE(2324)] = 71127, - [SMALL_STATE(2325)] = 71169, - [SMALL_STATE(2326)] = 71215, - [SMALL_STATE(2327)] = 71261, - [SMALL_STATE(2328)] = 71337, - [SMALL_STATE(2329)] = 71413, - [SMALL_STATE(2330)] = 71464, - [SMALL_STATE(2331)] = 71503, - [SMALL_STATE(2332)] = 71552, - [SMALL_STATE(2333)] = 71601, - [SMALL_STATE(2334)] = 71650, - [SMALL_STATE(2335)] = 71696, - [SMALL_STATE(2336)] = 71766, - [SMALL_STATE(2337)] = 71806, - [SMALL_STATE(2338)] = 71876, - [SMALL_STATE(2339)] = 71946, - [SMALL_STATE(2340)] = 72016, - [SMALL_STATE(2341)] = 72056, - [SMALL_STATE(2342)] = 72126, - [SMALL_STATE(2343)] = 72174, - [SMALL_STATE(2344)] = 72244, - [SMALL_STATE(2345)] = 72292, - [SMALL_STATE(2346)] = 72340, - [SMALL_STATE(2347)] = 72410, - [SMALL_STATE(2348)] = 72456, - [SMALL_STATE(2349)] = 72526, - [SMALL_STATE(2350)] = 72572, - [SMALL_STATE(2351)] = 72618, - [SMALL_STATE(2352)] = 72688, - [SMALL_STATE(2353)] = 72742, - [SMALL_STATE(2354)] = 72812, - [SMALL_STATE(2355)] = 72882, - [SMALL_STATE(2356)] = 72952, - [SMALL_STATE(2357)] = 72999, - [SMALL_STATE(2358)] = 73038, - [SMALL_STATE(2359)] = 73075, - [SMALL_STATE(2360)] = 73114, - [SMALL_STATE(2361)] = 73151, - [SMALL_STATE(2362)] = 73202, - [SMALL_STATE(2363)] = 73253, - [SMALL_STATE(2364)] = 73298, - [SMALL_STATE(2365)] = 73351, - [SMALL_STATE(2366)] = 73402, - [SMALL_STATE(2367)] = 73447, - [SMALL_STATE(2368)] = 73492, - [SMALL_STATE(2369)] = 73537, - [SMALL_STATE(2370)] = 73575, - [SMALL_STATE(2371)] = 73609, - [SMALL_STATE(2372)] = 73657, - [SMALL_STATE(2373)] = 73693, - [SMALL_STATE(2374)] = 73743, - [SMALL_STATE(2375)] = 73793, - [SMALL_STATE(2376)] = 73839, - [SMALL_STATE(2377)] = 73877, - [SMALL_STATE(2378)] = 73919, - [SMALL_STATE(2379)] = 73955, - [SMALL_STATE(2380)] = 73989, - [SMALL_STATE(2381)] = 74037, - [SMALL_STATE(2382)] = 74085, - [SMALL_STATE(2383)] = 74133, - [SMALL_STATE(2384)] = 74167, - [SMALL_STATE(2385)] = 74207, - [SMALL_STATE(2386)] = 74241, - [SMALL_STATE(2387)] = 74281, - [SMALL_STATE(2388)] = 74319, - [SMALL_STATE(2389)] = 74357, - [SMALL_STATE(2390)] = 74407, - [SMALL_STATE(2391)] = 74441, - [SMALL_STATE(2392)] = 74481, - [SMALL_STATE(2393)] = 74515, - [SMALL_STATE(2394)] = 74549, - [SMALL_STATE(2395)] = 74583, - [SMALL_STATE(2396)] = 74621, - [SMALL_STATE(2397)] = 74655, - [SMALL_STATE(2398)] = 74694, - [SMALL_STATE(2399)] = 74729, - [SMALL_STATE(2400)] = 74770, - [SMALL_STATE(2401)] = 74809, - [SMALL_STATE(2402)] = 74844, - [SMALL_STATE(2403)] = 74895, - [SMALL_STATE(2404)] = 74930, - [SMALL_STATE(2405)] = 74969, - [SMALL_STATE(2406)] = 75002, - [SMALL_STATE(2407)] = 75039, - [SMALL_STATE(2408)] = 75086, - [SMALL_STATE(2409)] = 75133, - [SMALL_STATE(2410)] = 75180, - [SMALL_STATE(2411)] = 75217, - [SMALL_STATE(2412)] = 75254, - [SMALL_STATE(2413)] = 75293, - [SMALL_STATE(2414)] = 75328, - [SMALL_STATE(2415)] = 75367, - [SMALL_STATE(2416)] = 75408, - [SMALL_STATE(2417)] = 75441, - [SMALL_STATE(2418)] = 75480, - [SMALL_STATE(2419)] = 75519, - [SMALL_STATE(2420)] = 75566, - [SMALL_STATE(2421)] = 75601, - [SMALL_STATE(2422)] = 75638, - [SMALL_STATE(2423)] = 75671, - [SMALL_STATE(2424)] = 75718, - [SMALL_STATE(2425)] = 75755, - [SMALL_STATE(2426)] = 75791, - [SMALL_STATE(2427)] = 75827, - [SMALL_STATE(2428)] = 75865, - [SMALL_STATE(2429)] = 75901, - [SMALL_STATE(2430)] = 75935, - [SMALL_STATE(2431)] = 75975, - [SMALL_STATE(2432)] = 76013, - [SMALL_STATE(2433)] = 76045, - [SMALL_STATE(2434)] = 76079, - [SMALL_STATE(2435)] = 76111, - [SMALL_STATE(2436)] = 76143, - [SMALL_STATE(2437)] = 76175, - [SMALL_STATE(2438)] = 76215, - [SMALL_STATE(2439)] = 76249, - [SMALL_STATE(2440)] = 76289, - [SMALL_STATE(2441)] = 76321, - [SMALL_STATE(2442)] = 76353, - [SMALL_STATE(2443)] = 76387, - [SMALL_STATE(2444)] = 76425, - [SMALL_STATE(2445)] = 76461, - [SMALL_STATE(2446)] = 76499, - [SMALL_STATE(2447)] = 76537, - [SMALL_STATE(2448)] = 76571, - [SMALL_STATE(2449)] = 76603, - [SMALL_STATE(2450)] = 76635, - [SMALL_STATE(2451)] = 76683, - [SMALL_STATE(2452)] = 76731, - [SMALL_STATE(2453)] = 76779, - [SMALL_STATE(2454)] = 76817, - [SMALL_STATE(2455)] = 76855, - [SMALL_STATE(2456)] = 76887, - [SMALL_STATE(2457)] = 76925, - [SMALL_STATE(2458)] = 76963, - [SMALL_STATE(2459)] = 76997, - [SMALL_STATE(2460)] = 77033, - [SMALL_STATE(2461)] = 77067, - [SMALL_STATE(2462)] = 77113, - [SMALL_STATE(2463)] = 77149, - [SMALL_STATE(2464)] = 77180, - [SMALL_STATE(2465)] = 77217, - [SMALL_STATE(2466)] = 77254, - [SMALL_STATE(2467)] = 77291, - [SMALL_STATE(2468)] = 77326, - [SMALL_STATE(2469)] = 77365, - [SMALL_STATE(2470)] = 77400, - [SMALL_STATE(2471)] = 77431, - [SMALL_STATE(2472)] = 77462, - [SMALL_STATE(2473)] = 77493, - [SMALL_STATE(2474)] = 77526, - [SMALL_STATE(2475)] = 77559, - [SMALL_STATE(2476)] = 77594, - [SMALL_STATE(2477)] = 77625, - [SMALL_STATE(2478)] = 77656, - [SMALL_STATE(2479)] = 77701, - [SMALL_STATE(2480)] = 77738, - [SMALL_STATE(2481)] = 77783, - [SMALL_STATE(2482)] = 77828, - [SMALL_STATE(2483)] = 77859, - [SMALL_STATE(2484)] = 77890, - [SMALL_STATE(2485)] = 77921, - [SMALL_STATE(2486)] = 77966, - [SMALL_STATE(2487)] = 77997, - [SMALL_STATE(2488)] = 78036, - [SMALL_STATE(2489)] = 78075, - [SMALL_STATE(2490)] = 78106, - [SMALL_STATE(2491)] = 78139, - [SMALL_STATE(2492)] = 78170, - [SMALL_STATE(2493)] = 78215, - [SMALL_STATE(2494)] = 78256, - [SMALL_STATE(2495)] = 78289, - [SMALL_STATE(2496)] = 78324, - [SMALL_STATE(2497)] = 78359, - [SMALL_STATE(2498)] = 78388, - [SMALL_STATE(2499)] = 78419, - [SMALL_STATE(2500)] = 78448, - [SMALL_STATE(2501)] = 78477, - [SMALL_STATE(2502)] = 78509, - [SMALL_STATE(2503)] = 78547, - [SMALL_STATE(2504)] = 78579, - [SMALL_STATE(2505)] = 78611, - [SMALL_STATE(2506)] = 78645, - [SMALL_STATE(2507)] = 78673, - [SMALL_STATE(2508)] = 78709, - [SMALL_STATE(2509)] = 78747, - [SMALL_STATE(2510)] = 78775, - [SMALL_STATE(2511)] = 78809, - [SMALL_STATE(2512)] = 78839, - [SMALL_STATE(2513)] = 78869, - [SMALL_STATE(2514)] = 78899, - [SMALL_STATE(2515)] = 78929, - [SMALL_STATE(2516)] = 78965, - [SMALL_STATE(2517)] = 79001, - [SMALL_STATE(2518)] = 79029, - [SMALL_STATE(2519)] = 79059, - [SMALL_STATE(2520)] = 79091, - [SMALL_STATE(2521)] = 79127, - [SMALL_STATE(2522)] = 79161, - [SMALL_STATE(2523)] = 79197, - [SMALL_STATE(2524)] = 79227, - [SMALL_STATE(2525)] = 79259, - [SMALL_STATE(2526)] = 79295, - [SMALL_STATE(2527)] = 79331, - [SMALL_STATE(2528)] = 79369, - [SMALL_STATE(2529)] = 79409, - [SMALL_STATE(2530)] = 79441, - [SMALL_STATE(2531)] = 79493, - [SMALL_STATE(2532)] = 79523, - [SMALL_STATE(2533)] = 79553, - [SMALL_STATE(2534)] = 79581, - [SMALL_STATE(2535)] = 79617, - [SMALL_STATE(2536)] = 79669, - [SMALL_STATE(2537)] = 79701, - [SMALL_STATE(2538)] = 79731, - [SMALL_STATE(2539)] = 79767, - [SMALL_STATE(2540)] = 79795, - [SMALL_STATE(2541)] = 79833, - [SMALL_STATE(2542)] = 79867, - [SMALL_STATE(2543)] = 79897, - [SMALL_STATE(2544)] = 79927, - [SMALL_STATE(2545)] = 79959, - [SMALL_STATE(2546)] = 79991, - [SMALL_STATE(2547)] = 80025, - [SMALL_STATE(2548)] = 80053, - [SMALL_STATE(2549)] = 80083, - [SMALL_STATE(2550)] = 80115, - [SMALL_STATE(2551)] = 80165, - [SMALL_STATE(2552)] = 80217, - [SMALL_STATE(2553)] = 80249, - [SMALL_STATE(2554)] = 80281, - [SMALL_STATE(2555)] = 80311, - [SMALL_STATE(2556)] = 80343, - [SMALL_STATE(2557)] = 80395, - [SMALL_STATE(2558)] = 80425, - [SMALL_STATE(2559)] = 80457, - [SMALL_STATE(2560)] = 80495, - [SMALL_STATE(2561)] = 80525, - [SMALL_STATE(2562)] = 80562, - [SMALL_STATE(2563)] = 80593, - [SMALL_STATE(2564)] = 80624, - [SMALL_STATE(2565)] = 80655, - [SMALL_STATE(2566)] = 80682, - [SMALL_STATE(2567)] = 80711, - [SMALL_STATE(2568)] = 80742, - [SMALL_STATE(2569)] = 80771, - [SMALL_STATE(2570)] = 80808, - [SMALL_STATE(2571)] = 80837, - [SMALL_STATE(2572)] = 80872, - [SMALL_STATE(2573)] = 80899, - [SMALL_STATE(2574)] = 80936, - [SMALL_STATE(2575)] = 80965, - [SMALL_STATE(2576)] = 80994, - [SMALL_STATE(2577)] = 81021, - [SMALL_STATE(2578)] = 81054, - [SMALL_STATE(2579)] = 81085, - [SMALL_STATE(2580)] = 81116, - [SMALL_STATE(2581)] = 81143, - [SMALL_STATE(2582)] = 81174, - [SMALL_STATE(2583)] = 81201, - [SMALL_STATE(2584)] = 81230, - [SMALL_STATE(2585)] = 81257, - [SMALL_STATE(2586)] = 81286, - [SMALL_STATE(2587)] = 81313, - [SMALL_STATE(2588)] = 81348, - [SMALL_STATE(2589)] = 81379, - [SMALL_STATE(2590)] = 81416, - [SMALL_STATE(2591)] = 81447, - [SMALL_STATE(2592)] = 81478, - [SMALL_STATE(2593)] = 81515, - [SMALL_STATE(2594)] = 81544, - [SMALL_STATE(2595)] = 81571, - [SMALL_STATE(2596)] = 81598, - [SMALL_STATE(2597)] = 81631, - [SMALL_STATE(2598)] = 81664, - [SMALL_STATE(2599)] = 81701, - [SMALL_STATE(2600)] = 81728, - [SMALL_STATE(2601)] = 81765, - [SMALL_STATE(2602)] = 81796, - [SMALL_STATE(2603)] = 81823, - [SMALL_STATE(2604)] = 81852, - [SMALL_STATE(2605)] = 81883, - [SMALL_STATE(2606)] = 81914, - [SMALL_STATE(2607)] = 81947, - [SMALL_STATE(2608)] = 81976, - [SMALL_STATE(2609)] = 82009, - [SMALL_STATE(2610)] = 82040, - [SMALL_STATE(2611)] = 82071, - [SMALL_STATE(2612)] = 82102, - [SMALL_STATE(2613)] = 82137, - [SMALL_STATE(2614)] = 82168, - [SMALL_STATE(2615)] = 82197, - [SMALL_STATE(2616)] = 82226, - [SMALL_STATE(2617)] = 82257, - [SMALL_STATE(2618)] = 82294, - [SMALL_STATE(2619)] = 82321, - [SMALL_STATE(2620)] = 82350, - [SMALL_STATE(2621)] = 82377, - [SMALL_STATE(2622)] = 82414, - [SMALL_STATE(2623)] = 82449, - [SMALL_STATE(2624)] = 82486, - [SMALL_STATE(2625)] = 82515, - [SMALL_STATE(2626)] = 82544, - [SMALL_STATE(2627)] = 82577, - [SMALL_STATE(2628)] = 82610, - [SMALL_STATE(2629)] = 82641, - [SMALL_STATE(2630)] = 82672, - [SMALL_STATE(2631)] = 82709, - [SMALL_STATE(2632)] = 82740, - [SMALL_STATE(2633)] = 82771, - [SMALL_STATE(2634)] = 82802, - [SMALL_STATE(2635)] = 82833, - [SMALL_STATE(2636)] = 82862, - [SMALL_STATE(2637)] = 82899, - [SMALL_STATE(2638)] = 82934, - [SMALL_STATE(2639)] = 82971, - [SMALL_STATE(2640)] = 83002, - [SMALL_STATE(2641)] = 83037, - [SMALL_STATE(2642)] = 83068, - [SMALL_STATE(2643)] = 83099, - [SMALL_STATE(2644)] = 83126, - [SMALL_STATE(2645)] = 83154, - [SMALL_STATE(2646)] = 83182, - [SMALL_STATE(2647)] = 83210, - [SMALL_STATE(2648)] = 83238, - [SMALL_STATE(2649)] = 83266, - [SMALL_STATE(2650)] = 83296, - [SMALL_STATE(2651)] = 83332, - [SMALL_STATE(2652)] = 83358, - [SMALL_STATE(2653)] = 83390, - [SMALL_STATE(2654)] = 83418, - [SMALL_STATE(2655)] = 83450, - [SMALL_STATE(2656)] = 83482, - [SMALL_STATE(2657)] = 83514, - [SMALL_STATE(2658)] = 83546, - [SMALL_STATE(2659)] = 83578, - [SMALL_STATE(2660)] = 83614, - [SMALL_STATE(2661)] = 83658, - [SMALL_STATE(2662)] = 83688, - [SMALL_STATE(2663)] = 83724, - [SMALL_STATE(2664)] = 83752, - [SMALL_STATE(2665)] = 83788, - [SMALL_STATE(2666)] = 83818, - [SMALL_STATE(2667)] = 83846, - [SMALL_STATE(2668)] = 83874, - [SMALL_STATE(2669)] = 83904, - [SMALL_STATE(2670)] = 83940, - [SMALL_STATE(2671)] = 83968, - [SMALL_STATE(2672)] = 84004, - [SMALL_STATE(2673)] = 84034, - [SMALL_STATE(2674)] = 84070, - [SMALL_STATE(2675)] = 84098, - [SMALL_STATE(2676)] = 84132, - [SMALL_STATE(2677)] = 84168, - [SMALL_STATE(2678)] = 84198, - [SMALL_STATE(2679)] = 84226, - [SMALL_STATE(2680)] = 84264, - [SMALL_STATE(2681)] = 84296, - [SMALL_STATE(2682)] = 84332, - [SMALL_STATE(2683)] = 84366, - [SMALL_STATE(2684)] = 84400, - [SMALL_STATE(2685)] = 84444, - [SMALL_STATE(2686)] = 84488, - [SMALL_STATE(2687)] = 84518, - [SMALL_STATE(2688)] = 84548, - [SMALL_STATE(2689)] = 84584, - [SMALL_STATE(2690)] = 84612, - [SMALL_STATE(2691)] = 84642, - [SMALL_STATE(2692)] = 84676, - [SMALL_STATE(2693)] = 84706, - [SMALL_STATE(2694)] = 84736, - [SMALL_STATE(2695)] = 84770, - [SMALL_STATE(2696)] = 84798, - [SMALL_STATE(2697)] = 84826, - [SMALL_STATE(2698)] = 84862, - [SMALL_STATE(2699)] = 84898, - [SMALL_STATE(2700)] = 84928, - [SMALL_STATE(2701)] = 84958, - [SMALL_STATE(2702)] = 84988, - [SMALL_STATE(2703)] = 85024, - [SMALL_STATE(2704)] = 85058, - [SMALL_STATE(2705)] = 85090, - [SMALL_STATE(2706)] = 85120, - [SMALL_STATE(2707)] = 85148, - [SMALL_STATE(2708)] = 85192, - [SMALL_STATE(2709)] = 85220, - [SMALL_STATE(2710)] = 85264, - [SMALL_STATE(2711)] = 85296, - [SMALL_STATE(2712)] = 85324, - [SMALL_STATE(2713)] = 85354, - [SMALL_STATE(2714)] = 85388, - [SMALL_STATE(2715)] = 85418, - [SMALL_STATE(2716)] = 85445, - [SMALL_STATE(2717)] = 85472, - [SMALL_STATE(2718)] = 85497, - [SMALL_STATE(2719)] = 85524, - [SMALL_STATE(2720)] = 85551, - [SMALL_STATE(2721)] = 85578, - [SMALL_STATE(2722)] = 85609, - [SMALL_STATE(2723)] = 85636, - [SMALL_STATE(2724)] = 85667, - [SMALL_STATE(2725)] = 85694, - [SMALL_STATE(2726)] = 85721, - [SMALL_STATE(2727)] = 85750, - [SMALL_STATE(2728)] = 85779, - [SMALL_STATE(2729)] = 85810, - [SMALL_STATE(2730)] = 85841, - [SMALL_STATE(2731)] = 85868, - [SMALL_STATE(2732)] = 85895, - [SMALL_STATE(2733)] = 85922, - [SMALL_STATE(2734)] = 85949, - [SMALL_STATE(2735)] = 85980, - [SMALL_STATE(2736)] = 86011, - [SMALL_STATE(2737)] = 86040, - [SMALL_STATE(2738)] = 86069, - [SMALL_STATE(2739)] = 86102, - [SMALL_STATE(2740)] = 86135, - [SMALL_STATE(2741)] = 86166, - [SMALL_STATE(2742)] = 86197, - [SMALL_STATE(2743)] = 86224, - [SMALL_STATE(2744)] = 86251, - [SMALL_STATE(2745)] = 86280, - [SMALL_STATE(2746)] = 86309, - [SMALL_STATE(2747)] = 86340, - [SMALL_STATE(2748)] = 86371, - [SMALL_STATE(2749)] = 86398, - [SMALL_STATE(2750)] = 86425, - [SMALL_STATE(2751)] = 86452, - [SMALL_STATE(2752)] = 86483, - [SMALL_STATE(2753)] = 86514, - [SMALL_STATE(2754)] = 86545, - [SMALL_STATE(2755)] = 86574, - [SMALL_STATE(2756)] = 86603, - [SMALL_STATE(2757)] = 86636, - [SMALL_STATE(2758)] = 86669, - [SMALL_STATE(2759)] = 86700, - [SMALL_STATE(2760)] = 86731, - [SMALL_STATE(2761)] = 86762, - [SMALL_STATE(2762)] = 86793, - [SMALL_STATE(2763)] = 86826, - [SMALL_STATE(2764)] = 86859, - [SMALL_STATE(2765)] = 86886, - [SMALL_STATE(2766)] = 86913, - [SMALL_STATE(2767)] = 86940, - [SMALL_STATE(2768)] = 86967, - [SMALL_STATE(2769)] = 86998, - [SMALL_STATE(2770)] = 87029, - [SMALL_STATE(2771)] = 87056, - [SMALL_STATE(2772)] = 87083, - [SMALL_STATE(2773)] = 87112, - [SMALL_STATE(2774)] = 87141, - [SMALL_STATE(2775)] = 87170, - [SMALL_STATE(2776)] = 87195, - [SMALL_STATE(2777)] = 87224, - [SMALL_STATE(2778)] = 87257, - [SMALL_STATE(2779)] = 87284, - [SMALL_STATE(2780)] = 87311, - [SMALL_STATE(2781)] = 87340, - [SMALL_STATE(2782)] = 87369, - [SMALL_STATE(2783)] = 87400, - [SMALL_STATE(2784)] = 87433, - [SMALL_STATE(2785)] = 87464, - [SMALL_STATE(2786)] = 87495, - [SMALL_STATE(2787)] = 87522, - [SMALL_STATE(2788)] = 87549, - [SMALL_STATE(2789)] = 87578, - [SMALL_STATE(2790)] = 87607, - [SMALL_STATE(2791)] = 87638, - [SMALL_STATE(2792)] = 87669, - [SMALL_STATE(2793)] = 87700, - [SMALL_STATE(2794)] = 87731, - [SMALL_STATE(2795)] = 87762, - [SMALL_STATE(2796)] = 87789, - [SMALL_STATE(2797)] = 87818, - [SMALL_STATE(2798)] = 87845, - [SMALL_STATE(2799)] = 87876, - [SMALL_STATE(2800)] = 87907, - [SMALL_STATE(2801)] = 87938, - [SMALL_STATE(2802)] = 87969, - [SMALL_STATE(2803)] = 88002, - [SMALL_STATE(2804)] = 88035, - [SMALL_STATE(2805)] = 88068, - [SMALL_STATE(2806)] = 88099, - [SMALL_STATE(2807)] = 88130, - [SMALL_STATE(2808)] = 88159, - [SMALL_STATE(2809)] = 88194, - [SMALL_STATE(2810)] = 88225, - [SMALL_STATE(2811)] = 88256, - [SMALL_STATE(2812)] = 88291, - [SMALL_STATE(2813)] = 88322, - [SMALL_STATE(2814)] = 88349, - [SMALL_STATE(2815)] = 88380, - [SMALL_STATE(2816)] = 88411, - [SMALL_STATE(2817)] = 88442, - [SMALL_STATE(2818)] = 88469, - [SMALL_STATE(2819)] = 88500, - [SMALL_STATE(2820)] = 88533, - [SMALL_STATE(2821)] = 88564, - [SMALL_STATE(2822)] = 88595, - [SMALL_STATE(2823)] = 88622, - [SMALL_STATE(2824)] = 88647, - [SMALL_STATE(2825)] = 88680, - [SMALL_STATE(2826)] = 88705, - [SMALL_STATE(2827)] = 88736, - [SMALL_STATE(2828)] = 88767, - [SMALL_STATE(2829)] = 88792, - [SMALL_STATE(2830)] = 88817, - [SMALL_STATE(2831)] = 88842, - [SMALL_STATE(2832)] = 88877, - [SMALL_STATE(2833)] = 88912, - [SMALL_STATE(2834)] = 88947, - [SMALL_STATE(2835)] = 88982, - [SMALL_STATE(2836)] = 89017, - [SMALL_STATE(2837)] = 89052, - [SMALL_STATE(2838)] = 89085, - [SMALL_STATE(2839)] = 89118, - [SMALL_STATE(2840)] = 89145, - [SMALL_STATE(2841)] = 89178, - [SMALL_STATE(2842)] = 89205, - [SMALL_STATE(2843)] = 89236, - [SMALL_STATE(2844)] = 89267, - [SMALL_STATE(2845)] = 89298, - [SMALL_STATE(2846)] = 89329, - [SMALL_STATE(2847)] = 89362, - [SMALL_STATE(2848)] = 89395, - [SMALL_STATE(2849)] = 89422, - [SMALL_STATE(2850)] = 89449, - [SMALL_STATE(2851)] = 89480, - [SMALL_STATE(2852)] = 89511, - [SMALL_STATE(2853)] = 89544, - [SMALL_STATE(2854)] = 89577, - [SMALL_STATE(2855)] = 89608, - [SMALL_STATE(2856)] = 89639, - [SMALL_STATE(2857)] = 89674, - [SMALL_STATE(2858)] = 89699, - [SMALL_STATE(2859)] = 89724, - [SMALL_STATE(2860)] = 89757, - [SMALL_STATE(2861)] = 89794, - [SMALL_STATE(2862)] = 89821, - [SMALL_STATE(2863)] = 89848, - [SMALL_STATE(2864)] = 89875, - [SMALL_STATE(2865)] = 89908, - [SMALL_STATE(2866)] = 89935, - [SMALL_STATE(2867)] = 89962, - [SMALL_STATE(2868)] = 89993, - [SMALL_STATE(2869)] = 90024, - [SMALL_STATE(2870)] = 90055, - [SMALL_STATE(2871)] = 90082, - [SMALL_STATE(2872)] = 90109, - [SMALL_STATE(2873)] = 90142, - [SMALL_STATE(2874)] = 90169, - [SMALL_STATE(2875)] = 90200, - [SMALL_STATE(2876)] = 90227, - [SMALL_STATE(2877)] = 90254, - [SMALL_STATE(2878)] = 90279, - [SMALL_STATE(2879)] = 90306, - [SMALL_STATE(2880)] = 90333, - [SMALL_STATE(2881)] = 90360, - [SMALL_STATE(2882)] = 90385, - [SMALL_STATE(2883)] = 90420, - [SMALL_STATE(2884)] = 90453, - [SMALL_STATE(2885)] = 90484, - [SMALL_STATE(2886)] = 90515, - [SMALL_STATE(2887)] = 90542, - [SMALL_STATE(2888)] = 90573, - [SMALL_STATE(2889)] = 90602, - [SMALL_STATE(2890)] = 90627, - [SMALL_STATE(2891)] = 90656, - [SMALL_STATE(2892)] = 90691, - [SMALL_STATE(2893)] = 90718, - [SMALL_STATE(2894)] = 90751, - [SMALL_STATE(2895)] = 90784, - [SMALL_STATE(2896)] = 90815, - [SMALL_STATE(2897)] = 90844, - [SMALL_STATE(2898)] = 90873, - [SMALL_STATE(2899)] = 90902, - [SMALL_STATE(2900)] = 90931, - [SMALL_STATE(2901)] = 90960, - [SMALL_STATE(2902)] = 90989, - [SMALL_STATE(2903)] = 91022, - [SMALL_STATE(2904)] = 91047, - [SMALL_STATE(2905)] = 91078, - [SMALL_STATE(2906)] = 91106, - [SMALL_STATE(2907)] = 91130, - [SMALL_STATE(2908)] = 91154, - [SMALL_STATE(2909)] = 91178, - [SMALL_STATE(2910)] = 91206, - [SMALL_STATE(2911)] = 91236, - [SMALL_STATE(2912)] = 91266, - [SMALL_STATE(2913)] = 91290, - [SMALL_STATE(2914)] = 91316, - [SMALL_STATE(2915)] = 91342, - [SMALL_STATE(2916)] = 91368, - [SMALL_STATE(2917)] = 91398, - [SMALL_STATE(2918)] = 91424, - [SMALL_STATE(2919)] = 91450, - [SMALL_STATE(2920)] = 91482, - [SMALL_STATE(2921)] = 91512, - [SMALL_STATE(2922)] = 91542, - [SMALL_STATE(2923)] = 91572, - [SMALL_STATE(2924)] = 91600, - [SMALL_STATE(2925)] = 91624, - [SMALL_STATE(2926)] = 91650, - [SMALL_STATE(2927)] = 91676, - [SMALL_STATE(2928)] = 91702, - [SMALL_STATE(2929)] = 91728, - [SMALL_STATE(2930)] = 91754, - [SMALL_STATE(2931)] = 91780, - [SMALL_STATE(2932)] = 91806, - [SMALL_STATE(2933)] = 91834, - [SMALL_STATE(2934)] = 91886, - [SMALL_STATE(2935)] = 91938, - [SMALL_STATE(2936)] = 91968, - [SMALL_STATE(2937)] = 91992, - [SMALL_STATE(2938)] = 92018, - [SMALL_STATE(2939)] = 92044, - [SMALL_STATE(2940)] = 92090, - [SMALL_STATE(2941)] = 92118, - [SMALL_STATE(2942)] = 92148, - [SMALL_STATE(2943)] = 92178, - [SMALL_STATE(2944)] = 92204, - [SMALL_STATE(2945)] = 92232, - [SMALL_STATE(2946)] = 92258, - [SMALL_STATE(2947)] = 92288, - [SMALL_STATE(2948)] = 92320, - [SMALL_STATE(2949)] = 92372, - [SMALL_STATE(2950)] = 92424, - [SMALL_STATE(2951)] = 92454, - [SMALL_STATE(2952)] = 92484, - [SMALL_STATE(2953)] = 92514, - [SMALL_STATE(2954)] = 92544, - [SMALL_STATE(2955)] = 92568, - [SMALL_STATE(2956)] = 92592, - [SMALL_STATE(2957)] = 92624, - [SMALL_STATE(2958)] = 92654, - [SMALL_STATE(2959)] = 92706, - [SMALL_STATE(2960)] = 92732, - [SMALL_STATE(2961)] = 92762, - [SMALL_STATE(2962)] = 92788, - [SMALL_STATE(2963)] = 92814, - [SMALL_STATE(2964)] = 92840, - [SMALL_STATE(2965)] = 92868, - [SMALL_STATE(2966)] = 92892, - [SMALL_STATE(2967)] = 92944, - [SMALL_STATE(2968)] = 92968, - [SMALL_STATE(2969)] = 92998, - [SMALL_STATE(2970)] = 93022, - [SMALL_STATE(2971)] = 93052, - [SMALL_STATE(2972)] = 93092, - [SMALL_STATE(2973)] = 93136, - [SMALL_STATE(2974)] = 93162, - [SMALL_STATE(2975)] = 93186, - [SMALL_STATE(2976)] = 93210, - [SMALL_STATE(2977)] = 93262, - [SMALL_STATE(2978)] = 93290, - [SMALL_STATE(2979)] = 93316, - [SMALL_STATE(2980)] = 93340, - [SMALL_STATE(2981)] = 93364, - [SMALL_STATE(2982)] = 93388, - [SMALL_STATE(2983)] = 93440, - [SMALL_STATE(2984)] = 93472, - [SMALL_STATE(2985)] = 93498, - [SMALL_STATE(2986)] = 93524, - [SMALL_STATE(2987)] = 93554, - [SMALL_STATE(2988)] = 93580, - [SMALL_STATE(2989)] = 93604, - [SMALL_STATE(2990)] = 93632, - [SMALL_STATE(2991)] = 93658, - [SMALL_STATE(2992)] = 93686, - [SMALL_STATE(2993)] = 93714, - [SMALL_STATE(2994)] = 93742, - [SMALL_STATE(2995)] = 93772, - [SMALL_STATE(2996)] = 93802, - [SMALL_STATE(2997)] = 93828, - [SMALL_STATE(2998)] = 93854, - [SMALL_STATE(2999)] = 93882, - [SMALL_STATE(3000)] = 93906, - [SMALL_STATE(3001)] = 93934, - [SMALL_STATE(3002)] = 93986, - [SMALL_STATE(3003)] = 94038, - [SMALL_STATE(3004)] = 94070, - [SMALL_STATE(3005)] = 94096, - [SMALL_STATE(3006)] = 94126, - [SMALL_STATE(3007)] = 94156, - [SMALL_STATE(3008)] = 94186, - [SMALL_STATE(3009)] = 94214, - [SMALL_STATE(3010)] = 94246, - [SMALL_STATE(3011)] = 94276, - [SMALL_STATE(3012)] = 94306, - [SMALL_STATE(3013)] = 94336, - [SMALL_STATE(3014)] = 94362, - [SMALL_STATE(3015)] = 94388, - [SMALL_STATE(3016)] = 94416, - [SMALL_STATE(3017)] = 94444, - [SMALL_STATE(3018)] = 94472, - [SMALL_STATE(3019)] = 94498, - [SMALL_STATE(3020)] = 94528, - [SMALL_STATE(3021)] = 94556, - [SMALL_STATE(3022)] = 94584, - [SMALL_STATE(3023)] = 94612, - [SMALL_STATE(3024)] = 94637, - [SMALL_STATE(3025)] = 94662, - [SMALL_STATE(3026)] = 94691, - [SMALL_STATE(3027)] = 94716, - [SMALL_STATE(3028)] = 94741, - [SMALL_STATE(3029)] = 94768, - [SMALL_STATE(3030)] = 94793, - [SMALL_STATE(3031)] = 94818, - [SMALL_STATE(3032)] = 94841, - [SMALL_STATE(3033)] = 94866, - [SMALL_STATE(3034)] = 94891, - [SMALL_STATE(3035)] = 94916, - [SMALL_STATE(3036)] = 94943, - [SMALL_STATE(3037)] = 94970, - [SMALL_STATE(3038)] = 94995, - [SMALL_STATE(3039)] = 95024, - [SMALL_STATE(3040)] = 95061, - [SMALL_STATE(3041)] = 95086, - [SMALL_STATE(3042)] = 95111, - [SMALL_STATE(3043)] = 95140, - [SMALL_STATE(3044)] = 95169, - [SMALL_STATE(3045)] = 95192, - [SMALL_STATE(3046)] = 95217, - [SMALL_STATE(3047)] = 95246, - [SMALL_STATE(3048)] = 95275, - [SMALL_STATE(3049)] = 95300, - [SMALL_STATE(3050)] = 95325, - [SMALL_STATE(3051)] = 95350, - [SMALL_STATE(3052)] = 95373, - [SMALL_STATE(3053)] = 95398, - [SMALL_STATE(3054)] = 95423, - [SMALL_STATE(3055)] = 95452, - [SMALL_STATE(3056)] = 95475, - [SMALL_STATE(3057)] = 95512, - [SMALL_STATE(3058)] = 95537, - [SMALL_STATE(3059)] = 95562, - [SMALL_STATE(3060)] = 95591, - [SMALL_STATE(3061)] = 95620, - [SMALL_STATE(3062)] = 95645, - [SMALL_STATE(3063)] = 95676, - [SMALL_STATE(3064)] = 95699, - [SMALL_STATE(3065)] = 95728, - [SMALL_STATE(3066)] = 95753, - [SMALL_STATE(3067)] = 95778, - [SMALL_STATE(3068)] = 95803, - [SMALL_STATE(3069)] = 95830, - [SMALL_STATE(3070)] = 95857, - [SMALL_STATE(3071)] = 95882, - [SMALL_STATE(3072)] = 95907, - [SMALL_STATE(3073)] = 95932, - [SMALL_STATE(3074)] = 95957, - [SMALL_STATE(3075)] = 95984, - [SMALL_STATE(3076)] = 96015, - [SMALL_STATE(3077)] = 96044, - [SMALL_STATE(3078)] = 96069, - [SMALL_STATE(3079)] = 96106, - [SMALL_STATE(3080)] = 96135, - [SMALL_STATE(3081)] = 96164, - [SMALL_STATE(3082)] = 96187, - [SMALL_STATE(3083)] = 96216, - [SMALL_STATE(3084)] = 96245, - [SMALL_STATE(3085)] = 96268, - [SMALL_STATE(3086)] = 96293, - [SMALL_STATE(3087)] = 96322, - [SMALL_STATE(3088)] = 96351, - [SMALL_STATE(3089)] = 96380, - [SMALL_STATE(3090)] = 96405, - [SMALL_STATE(3091)] = 96434, - [SMALL_STATE(3092)] = 96459, - [SMALL_STATE(3093)] = 96484, - [SMALL_STATE(3094)] = 96513, - [SMALL_STATE(3095)] = 96538, - [SMALL_STATE(3096)] = 96563, - [SMALL_STATE(3097)] = 96586, - [SMALL_STATE(3098)] = 96613, - [SMALL_STATE(3099)] = 96638, - [SMALL_STATE(3100)] = 96665, - [SMALL_STATE(3101)] = 96690, - [SMALL_STATE(3102)] = 96715, - [SMALL_STATE(3103)] = 96740, - [SMALL_STATE(3104)] = 96769, - [SMALL_STATE(3105)] = 96798, - [SMALL_STATE(3106)] = 96823, - [SMALL_STATE(3107)] = 96846, - [SMALL_STATE(3108)] = 96869, - [SMALL_STATE(3109)] = 96898, - [SMALL_STATE(3110)] = 96923, - [SMALL_STATE(3111)] = 96966, - [SMALL_STATE(3112)] = 96995, - [SMALL_STATE(3113)] = 97024, - [SMALL_STATE(3114)] = 97049, - [SMALL_STATE(3115)] = 97074, - [SMALL_STATE(3116)] = 97103, - [SMALL_STATE(3117)] = 97134, - [SMALL_STATE(3118)] = 97163, - [SMALL_STATE(3119)] = 97192, - [SMALL_STATE(3120)] = 97215, - [SMALL_STATE(3121)] = 97240, - [SMALL_STATE(3122)] = 97265, - [SMALL_STATE(3123)] = 97290, - [SMALL_STATE(3124)] = 97315, - [SMALL_STATE(3125)] = 97344, - [SMALL_STATE(3126)] = 97369, - [SMALL_STATE(3127)] = 97392, - [SMALL_STATE(3128)] = 97421, - [SMALL_STATE(3129)] = 97450, - [SMALL_STATE(3130)] = 97475, - [SMALL_STATE(3131)] = 97500, - [SMALL_STATE(3132)] = 97529, - [SMALL_STATE(3133)] = 97554, - [SMALL_STATE(3134)] = 97583, - [SMALL_STATE(3135)] = 97612, - [SMALL_STATE(3136)] = 97641, - [SMALL_STATE(3137)] = 97670, - [SMALL_STATE(3138)] = 97695, - [SMALL_STATE(3139)] = 97720, - [SMALL_STATE(3140)] = 97745, - [SMALL_STATE(3141)] = 97770, - [SMALL_STATE(3142)] = 97795, - [SMALL_STATE(3143)] = 97820, - [SMALL_STATE(3144)] = 97845, - [SMALL_STATE(3145)] = 97874, - [SMALL_STATE(3146)] = 97913, - [SMALL_STATE(3147)] = 97938, - [SMALL_STATE(3148)] = 97963, - [SMALL_STATE(3149)] = 97988, - [SMALL_STATE(3150)] = 98011, - [SMALL_STATE(3151)] = 98036, - [SMALL_STATE(3152)] = 98065, - [SMALL_STATE(3153)] = 98090, - [SMALL_STATE(3154)] = 98117, - [SMALL_STATE(3155)] = 98142, - [SMALL_STATE(3156)] = 98167, - [SMALL_STATE(3157)] = 98210, - [SMALL_STATE(3158)] = 98239, - [SMALL_STATE(3159)] = 98262, - [SMALL_STATE(3160)] = 98287, - [SMALL_STATE(3161)] = 98316, - [SMALL_STATE(3162)] = 98339, - [SMALL_STATE(3163)] = 98362, - [SMALL_STATE(3164)] = 98385, - [SMALL_STATE(3165)] = 98410, - [SMALL_STATE(3166)] = 98435, - [SMALL_STATE(3167)] = 98458, - [SMALL_STATE(3168)] = 98483, - [SMALL_STATE(3169)] = 98506, - [SMALL_STATE(3170)] = 98531, - [SMALL_STATE(3171)] = 98560, - [SMALL_STATE(3172)] = 98585, - [SMALL_STATE(3173)] = 98610, - [SMALL_STATE(3174)] = 98635, - [SMALL_STATE(3175)] = 98660, - [SMALL_STATE(3176)] = 98685, - [SMALL_STATE(3177)] = 98714, - [SMALL_STATE(3178)] = 98739, - [SMALL_STATE(3179)] = 98766, - [SMALL_STATE(3180)] = 98791, - [SMALL_STATE(3181)] = 98820, - [SMALL_STATE(3182)] = 98845, - [SMALL_STATE(3183)] = 98870, - [SMALL_STATE(3184)] = 98895, - [SMALL_STATE(3185)] = 98918, - [SMALL_STATE(3186)] = 98943, - [SMALL_STATE(3187)] = 98968, - [SMALL_STATE(3188)] = 98993, - [SMALL_STATE(3189)] = 99018, - [SMALL_STATE(3190)] = 99043, - [SMALL_STATE(3191)] = 99068, - [SMALL_STATE(3192)] = 99091, - [SMALL_STATE(3193)] = 99116, - [SMALL_STATE(3194)] = 99145, - [SMALL_STATE(3195)] = 99168, - [SMALL_STATE(3196)] = 99191, - [SMALL_STATE(3197)] = 99214, - [SMALL_STATE(3198)] = 99237, - [SMALL_STATE(3199)] = 99262, - [SMALL_STATE(3200)] = 99287, - [SMALL_STATE(3201)] = 99318, - [SMALL_STATE(3202)] = 99345, - [SMALL_STATE(3203)] = 99370, - [SMALL_STATE(3204)] = 99395, - [SMALL_STATE(3205)] = 99420, - [SMALL_STATE(3206)] = 99449, - [SMALL_STATE(3207)] = 99474, - [SMALL_STATE(3208)] = 99497, - [SMALL_STATE(3209)] = 99520, - [SMALL_STATE(3210)] = 99543, - [SMALL_STATE(3211)] = 99572, - [SMALL_STATE(3212)] = 99597, - [SMALL_STATE(3213)] = 99621, - [SMALL_STATE(3214)] = 99645, - [SMALL_STATE(3215)] = 99669, - [SMALL_STATE(3216)] = 99711, - [SMALL_STATE(3217)] = 99735, - [SMALL_STATE(3218)] = 99759, - [SMALL_STATE(3219)] = 99805, - [SMALL_STATE(3220)] = 99827, - [SMALL_STATE(3221)] = 99849, - [SMALL_STATE(3222)] = 99873, - [SMALL_STATE(3223)] = 99895, - [SMALL_STATE(3224)] = 99919, - [SMALL_STATE(3225)] = 99943, - [SMALL_STATE(3226)] = 99967, - [SMALL_STATE(3227)] = 99991, - [SMALL_STATE(3228)] = 100031, - [SMALL_STATE(3229)] = 100055, - [SMALL_STATE(3230)] = 100095, - [SMALL_STATE(3231)] = 100119, - [SMALL_STATE(3232)] = 100143, - [SMALL_STATE(3233)] = 100167, - [SMALL_STATE(3234)] = 100189, - [SMALL_STATE(3235)] = 100213, - [SMALL_STATE(3236)] = 100247, - [SMALL_STATE(3237)] = 100281, - [SMALL_STATE(3238)] = 100315, - [SMALL_STATE(3239)] = 100339, - [SMALL_STATE(3240)] = 100363, - [SMALL_STATE(3241)] = 100385, - [SMALL_STATE(3242)] = 100409, - [SMALL_STATE(3243)] = 100433, - [SMALL_STATE(3244)] = 100457, - [SMALL_STATE(3245)] = 100479, - [SMALL_STATE(3246)] = 100503, - [SMALL_STATE(3247)] = 100525, - [SMALL_STATE(3248)] = 100561, - [SMALL_STATE(3249)] = 100585, - [SMALL_STATE(3250)] = 100609, - [SMALL_STATE(3251)] = 100633, - [SMALL_STATE(3252)] = 100657, - [SMALL_STATE(3253)] = 100693, - [SMALL_STATE(3254)] = 100739, - [SMALL_STATE(3255)] = 100763, - [SMALL_STATE(3256)] = 100785, - [SMALL_STATE(3257)] = 100807, - [SMALL_STATE(3258)] = 100831, - [SMALL_STATE(3259)] = 100855, - [SMALL_STATE(3260)] = 100879, - [SMALL_STATE(3261)] = 100903, - [SMALL_STATE(3262)] = 100927, - [SMALL_STATE(3263)] = 100967, - [SMALL_STATE(3264)] = 100989, - [SMALL_STATE(3265)] = 101013, - [SMALL_STATE(3266)] = 101037, - [SMALL_STATE(3267)] = 101061, - [SMALL_STATE(3268)] = 101085, - [SMALL_STATE(3269)] = 101107, - [SMALL_STATE(3270)] = 101129, - [SMALL_STATE(3271)] = 101169, - [SMALL_STATE(3272)] = 101193, - [SMALL_STATE(3273)] = 101239, - [SMALL_STATE(3274)] = 101263, - [SMALL_STATE(3275)] = 101287, - [SMALL_STATE(3276)] = 101311, - [SMALL_STATE(3277)] = 101335, - [SMALL_STATE(3278)] = 101357, - [SMALL_STATE(3279)] = 101379, - [SMALL_STATE(3280)] = 101403, - [SMALL_STATE(3281)] = 101427, - [SMALL_STATE(3282)] = 101451, - [SMALL_STATE(3283)] = 101475, - [SMALL_STATE(3284)] = 101497, - [SMALL_STATE(3285)] = 101521, - [SMALL_STATE(3286)] = 101545, - [SMALL_STATE(3287)] = 101569, - [SMALL_STATE(3288)] = 101591, - [SMALL_STATE(3289)] = 101613, - [SMALL_STATE(3290)] = 101635, - [SMALL_STATE(3291)] = 101659, - [SMALL_STATE(3292)] = 101681, - [SMALL_STATE(3293)] = 101703, - [SMALL_STATE(3294)] = 101727, - [SMALL_STATE(3295)] = 101751, - [SMALL_STATE(3296)] = 101785, - [SMALL_STATE(3297)] = 101809, - [SMALL_STATE(3298)] = 101833, - [SMALL_STATE(3299)] = 101857, - [SMALL_STATE(3300)] = 101903, - [SMALL_STATE(3301)] = 101927, - [SMALL_STATE(3302)] = 101951, - [SMALL_STATE(3303)] = 101975, - [SMALL_STATE(3304)] = 101999, - [SMALL_STATE(3305)] = 102023, - [SMALL_STATE(3306)] = 102047, - [SMALL_STATE(3307)] = 102071, - [SMALL_STATE(3308)] = 102117, - [SMALL_STATE(3309)] = 102141, - [SMALL_STATE(3310)] = 102165, - [SMALL_STATE(3311)] = 102207, - [SMALL_STATE(3312)] = 102231, - [SMALL_STATE(3313)] = 102255, - [SMALL_STATE(3314)] = 102279, - [SMALL_STATE(3315)] = 102303, - [SMALL_STATE(3316)] = 102327, - [SMALL_STATE(3317)] = 102351, - [SMALL_STATE(3318)] = 102375, - [SMALL_STATE(3319)] = 102399, - [SMALL_STATE(3320)] = 102445, - [SMALL_STATE(3321)] = 102469, - [SMALL_STATE(3322)] = 102515, - [SMALL_STATE(3323)] = 102555, - [SMALL_STATE(3324)] = 102581, - [SMALL_STATE(3325)] = 102605, - [SMALL_STATE(3326)] = 102629, - [SMALL_STATE(3327)] = 102657, - [SMALL_STATE(3328)] = 102681, - [SMALL_STATE(3329)] = 102709, - [SMALL_STATE(3330)] = 102737, - [SMALL_STATE(3331)] = 102765, - [SMALL_STATE(3332)] = 102793, - [SMALL_STATE(3333)] = 102821, - [SMALL_STATE(3334)] = 102849, - [SMALL_STATE(3335)] = 102877, - [SMALL_STATE(3336)] = 102905, - [SMALL_STATE(3337)] = 102933, - [SMALL_STATE(3338)] = 102961, - [SMALL_STATE(3339)] = 102989, - [SMALL_STATE(3340)] = 103029, - [SMALL_STATE(3341)] = 103053, - [SMALL_STATE(3342)] = 103077, - [SMALL_STATE(3343)] = 103101, - [SMALL_STATE(3344)] = 103125, - [SMALL_STATE(3345)] = 103149, - [SMALL_STATE(3346)] = 103173, - [SMALL_STATE(3347)] = 103195, - [SMALL_STATE(3348)] = 103219, - [SMALL_STATE(3349)] = 103241, - [SMALL_STATE(3350)] = 103265, - [SMALL_STATE(3351)] = 103289, - [SMALL_STATE(3352)] = 103311, - [SMALL_STATE(3353)] = 103333, - [SMALL_STATE(3354)] = 103379, - [SMALL_STATE(3355)] = 103419, - [SMALL_STATE(3356)] = 103443, - [SMALL_STATE(3357)] = 103489, - [SMALL_STATE(3358)] = 103511, - [SMALL_STATE(3359)] = 103533, - [SMALL_STATE(3360)] = 103555, - [SMALL_STATE(3361)] = 103581, - [SMALL_STATE(3362)] = 103603, - [SMALL_STATE(3363)] = 103627, - [SMALL_STATE(3364)] = 103673, - [SMALL_STATE(3365)] = 103697, - [SMALL_STATE(3366)] = 103724, - [SMALL_STATE(3367)] = 103747, - [SMALL_STATE(3368)] = 103768, - [SMALL_STATE(3369)] = 103789, - [SMALL_STATE(3370)] = 103812, - [SMALL_STATE(3371)] = 103833, - [SMALL_STATE(3372)] = 103856, - [SMALL_STATE(3373)] = 103877, - [SMALL_STATE(3374)] = 103898, - [SMALL_STATE(3375)] = 103921, - [SMALL_STATE(3376)] = 103944, - [SMALL_STATE(3377)] = 103983, - [SMALL_STATE(3378)] = 104020, - [SMALL_STATE(3379)] = 104057, - [SMALL_STATE(3380)] = 104078, - [SMALL_STATE(3381)] = 104099, - [SMALL_STATE(3382)] = 104120, - [SMALL_STATE(3383)] = 104143, - [SMALL_STATE(3384)] = 104164, - [SMALL_STATE(3385)] = 104191, - [SMALL_STATE(3386)] = 104214, - [SMALL_STATE(3387)] = 104235, - [SMALL_STATE(3388)] = 104256, - [SMALL_STATE(3389)] = 104279, - [SMALL_STATE(3390)] = 104302, - [SMALL_STATE(3391)] = 104325, - [SMALL_STATE(3392)] = 104348, - [SMALL_STATE(3393)] = 104369, - [SMALL_STATE(3394)] = 104392, - [SMALL_STATE(3395)] = 104413, - [SMALL_STATE(3396)] = 104436, - [SMALL_STATE(3397)] = 104459, - [SMALL_STATE(3398)] = 104486, - [SMALL_STATE(3399)] = 104509, - [SMALL_STATE(3400)] = 104532, - [SMALL_STATE(3401)] = 104557, - [SMALL_STATE(3402)] = 104578, - [SMALL_STATE(3403)] = 104617, - [SMALL_STATE(3404)] = 104638, - [SMALL_STATE(3405)] = 104659, - [SMALL_STATE(3406)] = 104680, - [SMALL_STATE(3407)] = 104719, - [SMALL_STATE(3408)] = 104742, - [SMALL_STATE(3409)] = 104763, - [SMALL_STATE(3410)] = 104800, - [SMALL_STATE(3411)] = 104823, - [SMALL_STATE(3412)] = 104844, - [SMALL_STATE(3413)] = 104881, - [SMALL_STATE(3414)] = 104904, - [SMALL_STATE(3415)] = 104931, - [SMALL_STATE(3416)] = 104952, - [SMALL_STATE(3417)] = 104991, - [SMALL_STATE(3418)] = 105012, - [SMALL_STATE(3419)] = 105049, - [SMALL_STATE(3420)] = 105076, - [SMALL_STATE(3421)] = 105097, - [SMALL_STATE(3422)] = 105120, - [SMALL_STATE(3423)] = 105141, - [SMALL_STATE(3424)] = 105164, - [SMALL_STATE(3425)] = 105191, - [SMALL_STATE(3426)] = 105214, - [SMALL_STATE(3427)] = 105237, - [SMALL_STATE(3428)] = 105260, - [SMALL_STATE(3429)] = 105287, - [SMALL_STATE(3430)] = 105308, - [SMALL_STATE(3431)] = 105335, - [SMALL_STATE(3432)] = 105374, - [SMALL_STATE(3433)] = 105397, - [SMALL_STATE(3434)] = 105420, - [SMALL_STATE(3435)] = 105443, - [SMALL_STATE(3436)] = 105464, - [SMALL_STATE(3437)] = 105485, - [SMALL_STATE(3438)] = 105508, - [SMALL_STATE(3439)] = 105529, - [SMALL_STATE(3440)] = 105550, - [SMALL_STATE(3441)] = 105573, - [SMALL_STATE(3442)] = 105594, - [SMALL_STATE(3443)] = 105617, - [SMALL_STATE(3444)] = 105638, - [SMALL_STATE(3445)] = 105659, - [SMALL_STATE(3446)] = 105682, - [SMALL_STATE(3447)] = 105703, - [SMALL_STATE(3448)] = 105726, - [SMALL_STATE(3449)] = 105749, - [SMALL_STATE(3450)] = 105770, - [SMALL_STATE(3451)] = 105791, - [SMALL_STATE(3452)] = 105828, - [SMALL_STATE(3453)] = 105865, - [SMALL_STATE(3454)] = 105902, - [SMALL_STATE(3455)] = 105939, - [SMALL_STATE(3456)] = 105976, - [SMALL_STATE(3457)] = 106013, - [SMALL_STATE(3458)] = 106052, - [SMALL_STATE(3459)] = 106073, - [SMALL_STATE(3460)] = 106096, - [SMALL_STATE(3461)] = 106123, - [SMALL_STATE(3462)] = 106150, - [SMALL_STATE(3463)] = 106187, - [SMALL_STATE(3464)] = 106214, - [SMALL_STATE(3465)] = 106241, - [SMALL_STATE(3466)] = 106268, - [SMALL_STATE(3467)] = 106295, - [SMALL_STATE(3468)] = 106322, - [SMALL_STATE(3469)] = 106349, - [SMALL_STATE(3470)] = 106376, - [SMALL_STATE(3471)] = 106403, - [SMALL_STATE(3472)] = 106430, - [SMALL_STATE(3473)] = 106457, - [SMALL_STATE(3474)] = 106484, - [SMALL_STATE(3475)] = 106505, - [SMALL_STATE(3476)] = 106526, - [SMALL_STATE(3477)] = 106549, - [SMALL_STATE(3478)] = 106570, - [SMALL_STATE(3479)] = 106593, - [SMALL_STATE(3480)] = 106616, - [SMALL_STATE(3481)] = 106639, - [SMALL_STATE(3482)] = 106660, - [SMALL_STATE(3483)] = 106681, - [SMALL_STATE(3484)] = 106702, - [SMALL_STATE(3485)] = 106723, - [SMALL_STATE(3486)] = 106746, - [SMALL_STATE(3487)] = 106767, - [SMALL_STATE(3488)] = 106788, - [SMALL_STATE(3489)] = 106809, - [SMALL_STATE(3490)] = 106830, - [SMALL_STATE(3491)] = 106851, - [SMALL_STATE(3492)] = 106872, - [SMALL_STATE(3493)] = 106911, - [SMALL_STATE(3494)] = 106932, - [SMALL_STATE(3495)] = 106953, - [SMALL_STATE(3496)] = 106974, - [SMALL_STATE(3497)] = 107001, - [SMALL_STATE(3498)] = 107022, - [SMALL_STATE(3499)] = 107059, - [SMALL_STATE(3500)] = 107080, - [SMALL_STATE(3501)] = 107103, - [SMALL_STATE(3502)] = 107124, - [SMALL_STATE(3503)] = 107145, - [SMALL_STATE(3504)] = 107166, - [SMALL_STATE(3505)] = 107187, - [SMALL_STATE(3506)] = 107214, - [SMALL_STATE(3507)] = 107235, - [SMALL_STATE(3508)] = 107258, - [SMALL_STATE(3509)] = 107287, - [SMALL_STATE(3510)] = 107318, - [SMALL_STATE(3511)] = 107339, - [SMALL_STATE(3512)] = 107362, - [SMALL_STATE(3513)] = 107383, - [SMALL_STATE(3514)] = 107404, - [SMALL_STATE(3515)] = 107425, - [SMALL_STATE(3516)] = 107446, - [SMALL_STATE(3517)] = 107467, - [SMALL_STATE(3518)] = 107488, - [SMALL_STATE(3519)] = 107511, - [SMALL_STATE(3520)] = 107545, - [SMALL_STATE(3521)] = 107571, - [SMALL_STATE(3522)] = 107595, - [SMALL_STATE(3523)] = 107621, - [SMALL_STATE(3524)] = 107645, - [SMALL_STATE(3525)] = 107681, - [SMALL_STATE(3526)] = 107713, - [SMALL_STATE(3527)] = 107739, - [SMALL_STATE(3528)] = 107765, - [SMALL_STATE(3529)] = 107801, - [SMALL_STATE(3530)] = 107825, - [SMALL_STATE(3531)] = 107857, - [SMALL_STATE(3532)] = 107887, - [SMALL_STATE(3533)] = 107909, - [SMALL_STATE(3534)] = 107933, - [SMALL_STATE(3535)] = 107957, - [SMALL_STATE(3536)] = 107979, - [SMALL_STATE(3537)] = 108011, - [SMALL_STATE(3538)] = 108033, - [SMALL_STATE(3539)] = 108061, - [SMALL_STATE(3540)] = 108087, - [SMALL_STATE(3541)] = 108117, - [SMALL_STATE(3542)] = 108143, - [SMALL_STATE(3543)] = 108177, - [SMALL_STATE(3544)] = 108201, - [SMALL_STATE(3545)] = 108237, - [SMALL_STATE(3546)] = 108263, - [SMALL_STATE(3547)] = 108287, - [SMALL_STATE(3548)] = 108313, - [SMALL_STATE(3549)] = 108339, - [SMALL_STATE(3550)] = 108365, - [SMALL_STATE(3551)] = 108387, - [SMALL_STATE(3552)] = 108419, - [SMALL_STATE(3553)] = 108453, - [SMALL_STATE(3554)] = 108489, - [SMALL_STATE(3555)] = 108515, - [SMALL_STATE(3556)] = 108537, - [SMALL_STATE(3557)] = 108569, - [SMALL_STATE(3558)] = 108591, - [SMALL_STATE(3559)] = 108615, - [SMALL_STATE(3560)] = 108639, - [SMALL_STATE(3561)] = 108665, - [SMALL_STATE(3562)] = 108691, - [SMALL_STATE(3563)] = 108713, - [SMALL_STATE(3564)] = 108735, - [SMALL_STATE(3565)] = 108759, - [SMALL_STATE(3566)] = 108792, - [SMALL_STATE(3567)] = 108825, - [SMALL_STATE(3568)] = 108858, - [SMALL_STATE(3569)] = 108889, - [SMALL_STATE(3570)] = 108920, - [SMALL_STATE(3571)] = 108945, - [SMALL_STATE(3572)] = 108966, - [SMALL_STATE(3573)] = 108999, - [SMALL_STATE(3574)] = 109032, - [SMALL_STATE(3575)] = 109063, - [SMALL_STATE(3576)] = 109084, - [SMALL_STATE(3577)] = 109105, - [SMALL_STATE(3578)] = 109130, - [SMALL_STATE(3579)] = 109163, - [SMALL_STATE(3580)] = 109196, - [SMALL_STATE(3581)] = 109227, - [SMALL_STATE(3582)] = 109248, - [SMALL_STATE(3583)] = 109281, - [SMALL_STATE(3584)] = 109314, - [SMALL_STATE(3585)] = 109347, - [SMALL_STATE(3586)] = 109378, - [SMALL_STATE(3587)] = 109399, - [SMALL_STATE(3588)] = 109432, - [SMALL_STATE(3589)] = 109465, - [SMALL_STATE(3590)] = 109496, - [SMALL_STATE(3591)] = 109517, - [SMALL_STATE(3592)] = 109548, - [SMALL_STATE(3593)] = 109581, - [SMALL_STATE(3594)] = 109614, - [SMALL_STATE(3595)] = 109645, - [SMALL_STATE(3596)] = 109678, - [SMALL_STATE(3597)] = 109711, - [SMALL_STATE(3598)] = 109744, - [SMALL_STATE(3599)] = 109775, - [SMALL_STATE(3600)] = 109808, - [SMALL_STATE(3601)] = 109841, - [SMALL_STATE(3602)] = 109872, - [SMALL_STATE(3603)] = 109905, - [SMALL_STATE(3604)] = 109936, - [SMALL_STATE(3605)] = 109969, - [SMALL_STATE(3606)] = 110002, - [SMALL_STATE(3607)] = 110033, - [SMALL_STATE(3608)] = 110066, - [SMALL_STATE(3609)] = 110099, - [SMALL_STATE(3610)] = 110130, - [SMALL_STATE(3611)] = 110161, - [SMALL_STATE(3612)] = 110192, - [SMALL_STATE(3613)] = 110223, - [SMALL_STATE(3614)] = 110244, - [SMALL_STATE(3615)] = 110275, - [SMALL_STATE(3616)] = 110306, - [SMALL_STATE(3617)] = 110337, - [SMALL_STATE(3618)] = 110368, - [SMALL_STATE(3619)] = 110399, - [SMALL_STATE(3620)] = 110420, - [SMALL_STATE(3621)] = 110453, - [SMALL_STATE(3622)] = 110488, - [SMALL_STATE(3623)] = 110521, - [SMALL_STATE(3624)] = 110544, - [SMALL_STATE(3625)] = 110569, - [SMALL_STATE(3626)] = 110592, - [SMALL_STATE(3627)] = 110625, - [SMALL_STATE(3628)] = 110656, - [SMALL_STATE(3629)] = 110679, - [SMALL_STATE(3630)] = 110710, - [SMALL_STATE(3631)] = 110735, - [SMALL_STATE(3632)] = 110766, - [SMALL_STATE(3633)] = 110799, - [SMALL_STATE(3634)] = 110824, - [SMALL_STATE(3635)] = 110857, - [SMALL_STATE(3636)] = 110890, - [SMALL_STATE(3637)] = 110919, - [SMALL_STATE(3638)] = 110952, - [SMALL_STATE(3639)] = 110977, - [SMALL_STATE(3640)] = 111000, - [SMALL_STATE(3641)] = 111035, - [SMALL_STATE(3642)] = 111068, - [SMALL_STATE(3643)] = 111101, - [SMALL_STATE(3644)] = 111122, - [SMALL_STATE(3645)] = 111153, - [SMALL_STATE(3646)] = 111174, - [SMALL_STATE(3647)] = 111199, - [SMALL_STATE(3648)] = 111232, - [SMALL_STATE(3649)] = 111265, - [SMALL_STATE(3650)] = 111286, - [SMALL_STATE(3651)] = 111319, - [SMALL_STATE(3652)] = 111340, - [SMALL_STATE(3653)] = 111363, - [SMALL_STATE(3654)] = 111384, - [SMALL_STATE(3655)] = 111407, - [SMALL_STATE(3656)] = 111432, - [SMALL_STATE(3657)] = 111455, - [SMALL_STATE(3658)] = 111486, - [SMALL_STATE(3659)] = 111510, - [SMALL_STATE(3660)] = 111538, - [SMALL_STATE(3661)] = 111566, - [SMALL_STATE(3662)] = 111588, - [SMALL_STATE(3663)] = 111616, - [SMALL_STATE(3664)] = 111644, - [SMALL_STATE(3665)] = 111672, - [SMALL_STATE(3666)] = 111692, - [SMALL_STATE(3667)] = 111720, - [SMALL_STATE(3668)] = 111748, - [SMALL_STATE(3669)] = 111776, - [SMALL_STATE(3670)] = 111804, - [SMALL_STATE(3671)] = 111832, - [SMALL_STATE(3672)] = 111854, - [SMALL_STATE(3673)] = 111874, - [SMALL_STATE(3674)] = 111902, - [SMALL_STATE(3675)] = 111930, - [SMALL_STATE(3676)] = 111958, - [SMALL_STATE(3677)] = 111980, - [SMALL_STATE(3678)] = 112008, - [SMALL_STATE(3679)] = 112036, - [SMALL_STATE(3680)] = 112064, - [SMALL_STATE(3681)] = 112092, - [SMALL_STATE(3682)] = 112120, - [SMALL_STATE(3683)] = 112140, - [SMALL_STATE(3684)] = 112168, - [SMALL_STATE(3685)] = 112194, - [SMALL_STATE(3686)] = 112216, - [SMALL_STATE(3687)] = 112244, - [SMALL_STATE(3688)] = 112266, - [SMALL_STATE(3689)] = 112294, - [SMALL_STATE(3690)] = 112322, - [SMALL_STATE(3691)] = 112350, - [SMALL_STATE(3692)] = 112378, - [SMALL_STATE(3693)] = 112398, - [SMALL_STATE(3694)] = 112426, - [SMALL_STATE(3695)] = 112452, - [SMALL_STATE(3696)] = 112480, - [SMALL_STATE(3697)] = 112508, - [SMALL_STATE(3698)] = 112536, - [SMALL_STATE(3699)] = 112564, - [SMALL_STATE(3700)] = 112584, - [SMALL_STATE(3701)] = 112614, - [SMALL_STATE(3702)] = 112642, - [SMALL_STATE(3703)] = 112670, - [SMALL_STATE(3704)] = 112690, - [SMALL_STATE(3705)] = 112718, - [SMALL_STATE(3706)] = 112742, - [SMALL_STATE(3707)] = 112766, - [SMALL_STATE(3708)] = 112790, - [SMALL_STATE(3709)] = 112816, - [SMALL_STATE(3710)] = 112836, - [SMALL_STATE(3711)] = 112860, - [SMALL_STATE(3712)] = 112888, - [SMALL_STATE(3713)] = 112908, - [SMALL_STATE(3714)] = 112926, - [SMALL_STATE(3715)] = 112954, - [SMALL_STATE(3716)] = 112974, - [SMALL_STATE(3717)] = 113002, - [SMALL_STATE(3718)] = 113024, - [SMALL_STATE(3719)] = 113052, - [SMALL_STATE(3720)] = 113070, - [SMALL_STATE(3721)] = 113090, - [SMALL_STATE(3722)] = 113118, - [SMALL_STATE(3723)] = 113146, - [SMALL_STATE(3724)] = 113168, - [SMALL_STATE(3725)] = 113196, - [SMALL_STATE(3726)] = 113224, - [SMALL_STATE(3727)] = 113244, - [SMALL_STATE(3728)] = 113274, - [SMALL_STATE(3729)] = 113302, - [SMALL_STATE(3730)] = 113324, - [SMALL_STATE(3731)] = 113344, - [SMALL_STATE(3732)] = 113364, - [SMALL_STATE(3733)] = 113392, - [SMALL_STATE(3734)] = 113420, - [SMALL_STATE(3735)] = 113440, - [SMALL_STATE(3736)] = 113468, - [SMALL_STATE(3737)] = 113492, - [SMALL_STATE(3738)] = 113512, - [SMALL_STATE(3739)] = 113540, - [SMALL_STATE(3740)] = 113563, - [SMALL_STATE(3741)] = 113586, - [SMALL_STATE(3742)] = 113611, - [SMALL_STATE(3743)] = 113630, - [SMALL_STATE(3744)] = 113649, - [SMALL_STATE(3745)] = 113670, - [SMALL_STATE(3746)] = 113689, - [SMALL_STATE(3747)] = 113714, - [SMALL_STATE(3748)] = 113739, - [SMALL_STATE(3749)] = 113760, - [SMALL_STATE(3750)] = 113785, - [SMALL_STATE(3751)] = 113806, - [SMALL_STATE(3752)] = 113833, - [SMALL_STATE(3753)] = 113860, - [SMALL_STATE(3754)] = 113887, - [SMALL_STATE(3755)] = 113912, - [SMALL_STATE(3756)] = 113937, - [SMALL_STATE(3757)] = 113956, - [SMALL_STATE(3758)] = 113975, - [SMALL_STATE(3759)] = 114000, - [SMALL_STATE(3760)] = 114019, - [SMALL_STATE(3761)] = 114038, - [SMALL_STATE(3762)] = 114057, - [SMALL_STATE(3763)] = 114082, - [SMALL_STATE(3764)] = 114105, - [SMALL_STATE(3765)] = 114130, - [SMALL_STATE(3766)] = 114151, - [SMALL_STATE(3767)] = 114176, - [SMALL_STATE(3768)] = 114197, - [SMALL_STATE(3769)] = 114216, - [SMALL_STATE(3770)] = 114235, - [SMALL_STATE(3771)] = 114254, - [SMALL_STATE(3772)] = 114277, - [SMALL_STATE(3773)] = 114302, - [SMALL_STATE(3774)] = 114331, - [SMALL_STATE(3775)] = 114358, - [SMALL_STATE(3776)] = 114383, - [SMALL_STATE(3777)] = 114408, - [SMALL_STATE(3778)] = 114429, - [SMALL_STATE(3779)] = 114454, - [SMALL_STATE(3780)] = 114485, - [SMALL_STATE(3781)] = 114512, - [SMALL_STATE(3782)] = 114539, - [SMALL_STATE(3783)] = 114558, - [SMALL_STATE(3784)] = 114577, - [SMALL_STATE(3785)] = 114602, - [SMALL_STATE(3786)] = 114627, - [SMALL_STATE(3787)] = 114645, - [SMALL_STATE(3788)] = 114673, - [SMALL_STATE(3789)] = 114699, - [SMALL_STATE(3790)] = 114727, - [SMALL_STATE(3791)] = 114755, - [SMALL_STATE(3792)] = 114777, - [SMALL_STATE(3793)] = 114803, - [SMALL_STATE(3794)] = 114829, - [SMALL_STATE(3795)] = 114857, - [SMALL_STATE(3796)] = 114885, - [SMALL_STATE(3797)] = 114907, - [SMALL_STATE(3798)] = 114935, - [SMALL_STATE(3799)] = 114953, - [SMALL_STATE(3800)] = 114981, - [SMALL_STATE(3801)] = 115005, - [SMALL_STATE(3802)] = 115027, - [SMALL_STATE(3803)] = 115055, - [SMALL_STATE(3804)] = 115083, - [SMALL_STATE(3805)] = 115107, - [SMALL_STATE(3806)] = 115125, - [SMALL_STATE(3807)] = 115151, - [SMALL_STATE(3808)] = 115177, - [SMALL_STATE(3809)] = 115197, - [SMALL_STATE(3810)] = 115221, - [SMALL_STATE(3811)] = 115239, - [SMALL_STATE(3812)] = 115261, - [SMALL_STATE(3813)] = 115289, - [SMALL_STATE(3814)] = 115313, - [SMALL_STATE(3815)] = 115335, - [SMALL_STATE(3816)] = 115363, - [SMALL_STATE(3817)] = 115389, - [SMALL_STATE(3818)] = 115407, - [SMALL_STATE(3819)] = 115435, - [SMALL_STATE(3820)] = 115459, - [SMALL_STATE(3821)] = 115487, - [SMALL_STATE(3822)] = 115505, - [SMALL_STATE(3823)] = 115531, - [SMALL_STATE(3824)] = 115559, - [SMALL_STATE(3825)] = 115587, - [SMALL_STATE(3826)] = 115607, - [SMALL_STATE(3827)] = 115635, - [SMALL_STATE(3828)] = 115661, - [SMALL_STATE(3829)] = 115689, - [SMALL_STATE(3830)] = 115715, - [SMALL_STATE(3831)] = 115741, - [SMALL_STATE(3832)] = 115769, - [SMALL_STATE(3833)] = 115793, - [SMALL_STATE(3834)] = 115821, - [SMALL_STATE(3835)] = 115843, - [SMALL_STATE(3836)] = 115863, - [SMALL_STATE(3837)] = 115885, - [SMALL_STATE(3838)] = 115913, - [SMALL_STATE(3839)] = 115931, - [SMALL_STATE(3840)] = 115953, - [SMALL_STATE(3841)] = 115979, - [SMALL_STATE(3842)] = 116007, - [SMALL_STATE(3843)] = 116035, - [SMALL_STATE(3844)] = 116061, - [SMALL_STATE(3845)] = 116087, - [SMALL_STATE(3846)] = 116115, - [SMALL_STATE(3847)] = 116143, - [SMALL_STATE(3848)] = 116165, - [SMALL_STATE(3849)] = 116183, - [SMALL_STATE(3850)] = 116211, - [SMALL_STATE(3851)] = 116229, - [SMALL_STATE(3852)] = 116251, - [SMALL_STATE(3853)] = 116279, - [SMALL_STATE(3854)] = 116305, - [SMALL_STATE(3855)] = 116333, - [SMALL_STATE(3856)] = 116361, - [SMALL_STATE(3857)] = 116387, - [SMALL_STATE(3858)] = 116415, - [SMALL_STATE(3859)] = 116443, - [SMALL_STATE(3860)] = 116471, - [SMALL_STATE(3861)] = 116489, - [SMALL_STATE(3862)] = 116511, - [SMALL_STATE(3863)] = 116539, - [SMALL_STATE(3864)] = 116567, - [SMALL_STATE(3865)] = 116585, - [SMALL_STATE(3866)] = 116605, - [SMALL_STATE(3867)] = 116633, - [SMALL_STATE(3868)] = 116661, - [SMALL_STATE(3869)] = 116689, - [SMALL_STATE(3870)] = 116709, - [SMALL_STATE(3871)] = 116731, - [SMALL_STATE(3872)] = 116757, - [SMALL_STATE(3873)] = 116775, - [SMALL_STATE(3874)] = 116799, - [SMALL_STATE(3875)] = 116827, - [SMALL_STATE(3876)] = 116855, - [SMALL_STATE(3877)] = 116875, - [SMALL_STATE(3878)] = 116903, - [SMALL_STATE(3879)] = 116931, - [SMALL_STATE(3880)] = 116951, - [SMALL_STATE(3881)] = 116979, - [SMALL_STATE(3882)] = 117003, - [SMALL_STATE(3883)] = 117031, - [SMALL_STATE(3884)] = 117059, - [SMALL_STATE(3885)] = 117087, - [SMALL_STATE(3886)] = 117111, - [SMALL_STATE(3887)] = 117139, - [SMALL_STATE(3888)] = 117165, - [SMALL_STATE(3889)] = 117185, - [SMALL_STATE(3890)] = 117211, - [SMALL_STATE(3891)] = 117239, - [SMALL_STATE(3892)] = 117257, - [SMALL_STATE(3893)] = 117283, - [SMALL_STATE(3894)] = 117309, - [SMALL_STATE(3895)] = 117335, - [SMALL_STATE(3896)] = 117360, - [SMALL_STATE(3897)] = 117385, - [SMALL_STATE(3898)] = 117404, - [SMALL_STATE(3899)] = 117429, - [SMALL_STATE(3900)] = 117452, - [SMALL_STATE(3901)] = 117475, - [SMALL_STATE(3902)] = 117498, - [SMALL_STATE(3903)] = 117519, - [SMALL_STATE(3904)] = 117542, - [SMALL_STATE(3905)] = 117563, - [SMALL_STATE(3906)] = 117586, - [SMALL_STATE(3907)] = 117611, - [SMALL_STATE(3908)] = 117634, - [SMALL_STATE(3909)] = 117653, - [SMALL_STATE(3910)] = 117672, - [SMALL_STATE(3911)] = 117693, - [SMALL_STATE(3912)] = 117714, - [SMALL_STATE(3913)] = 117739, - [SMALL_STATE(3914)] = 117764, - [SMALL_STATE(3915)] = 117783, - [SMALL_STATE(3916)] = 117808, - [SMALL_STATE(3917)] = 117831, - [SMALL_STATE(3918)] = 117854, - [SMALL_STATE(3919)] = 117877, - [SMALL_STATE(3920)] = 117900, - [SMALL_STATE(3921)] = 117923, - [SMALL_STATE(3922)] = 117946, - [SMALL_STATE(3923)] = 117965, - [SMALL_STATE(3924)] = 117986, - [SMALL_STATE(3925)] = 118009, - [SMALL_STATE(3926)] = 118030, - [SMALL_STATE(3927)] = 118051, - [SMALL_STATE(3928)] = 118076, - [SMALL_STATE(3929)] = 118099, - [SMALL_STATE(3930)] = 118120, - [SMALL_STATE(3931)] = 118141, - [SMALL_STATE(3932)] = 118166, - [SMALL_STATE(3933)] = 118187, - [SMALL_STATE(3934)] = 118208, - [SMALL_STATE(3935)] = 118229, - [SMALL_STATE(3936)] = 118254, - [SMALL_STATE(3937)] = 118279, - [SMALL_STATE(3938)] = 118304, - [SMALL_STATE(3939)] = 118323, - [SMALL_STATE(3940)] = 118346, - [SMALL_STATE(3941)] = 118369, - [SMALL_STATE(3942)] = 118392, - [SMALL_STATE(3943)] = 118415, - [SMALL_STATE(3944)] = 118434, - [SMALL_STATE(3945)] = 118449, - [SMALL_STATE(3946)] = 118474, - [SMALL_STATE(3947)] = 118489, - [SMALL_STATE(3948)] = 118504, - [SMALL_STATE(3949)] = 118527, - [SMALL_STATE(3950)] = 118542, - [SMALL_STATE(3951)] = 118557, - [SMALL_STATE(3952)] = 118572, - [SMALL_STATE(3953)] = 118597, - [SMALL_STATE(3954)] = 118616, - [SMALL_STATE(3955)] = 118641, - [SMALL_STATE(3956)] = 118662, - [SMALL_STATE(3957)] = 118681, - [SMALL_STATE(3958)] = 118704, - [SMALL_STATE(3959)] = 118723, - [SMALL_STATE(3960)] = 118746, - [SMALL_STATE(3961)] = 118769, - [SMALL_STATE(3962)] = 118790, - [SMALL_STATE(3963)] = 118815, - [SMALL_STATE(3964)] = 118836, - [SMALL_STATE(3965)] = 118855, - [SMALL_STATE(3966)] = 118876, - [SMALL_STATE(3967)] = 118895, - [SMALL_STATE(3968)] = 118918, - [SMALL_STATE(3969)] = 118941, - [SMALL_STATE(3970)] = 118964, - [SMALL_STATE(3971)] = 118987, - [SMALL_STATE(3972)] = 119006, - [SMALL_STATE(3973)] = 119029, - [SMALL_STATE(3974)] = 119052, - [SMALL_STATE(3975)] = 119075, - [SMALL_STATE(3976)] = 119098, - [SMALL_STATE(3977)] = 119121, - [SMALL_STATE(3978)] = 119144, - [SMALL_STATE(3979)] = 119167, - [SMALL_STATE(3980)] = 119192, - [SMALL_STATE(3981)] = 119213, - [SMALL_STATE(3982)] = 119236, - [SMALL_STATE(3983)] = 119259, - [SMALL_STATE(3984)] = 119282, - [SMALL_STATE(3985)] = 119303, - [SMALL_STATE(3986)] = 119326, - [SMALL_STATE(3987)] = 119345, - [SMALL_STATE(3988)] = 119368, - [SMALL_STATE(3989)] = 119389, - [SMALL_STATE(3990)] = 119412, - [SMALL_STATE(3991)] = 119435, - [SMALL_STATE(3992)] = 119456, - [SMALL_STATE(3993)] = 119475, - [SMALL_STATE(3994)] = 119494, - [SMALL_STATE(3995)] = 119517, - [SMALL_STATE(3996)] = 119540, - [SMALL_STATE(3997)] = 119563, - [SMALL_STATE(3998)] = 119586, - [SMALL_STATE(3999)] = 119609, - [SMALL_STATE(4000)] = 119632, - [SMALL_STATE(4001)] = 119651, - [SMALL_STATE(4002)] = 119670, - [SMALL_STATE(4003)] = 119691, - [SMALL_STATE(4004)] = 119712, - [SMALL_STATE(4005)] = 119733, - [SMALL_STATE(4006)] = 119754, - [SMALL_STATE(4007)] = 119777, - [SMALL_STATE(4008)] = 119798, - [SMALL_STATE(4009)] = 119815, - [SMALL_STATE(4010)] = 119838, - [SMALL_STATE(4011)] = 119855, - [SMALL_STATE(4012)] = 119872, - [SMALL_STATE(4013)] = 119893, - [SMALL_STATE(4014)] = 119918, - [SMALL_STATE(4015)] = 119943, - [SMALL_STATE(4016)] = 119968, - [SMALL_STATE(4017)] = 119989, - [SMALL_STATE(4018)] = 120008, - [SMALL_STATE(4019)] = 120033, - [SMALL_STATE(4020)] = 120054, - [SMALL_STATE(4021)] = 120075, - [SMALL_STATE(4022)] = 120096, - [SMALL_STATE(4023)] = 120117, - [SMALL_STATE(4024)] = 120138, - [SMALL_STATE(4025)] = 120159, - [SMALL_STATE(4026)] = 120184, - [SMALL_STATE(4027)] = 120209, - [SMALL_STATE(4028)] = 120234, - [SMALL_STATE(4029)] = 120259, - [SMALL_STATE(4030)] = 120278, - [SMALL_STATE(4031)] = 120297, - [SMALL_STATE(4032)] = 120316, - [SMALL_STATE(4033)] = 120337, - [SMALL_STATE(4034)] = 120362, - [SMALL_STATE(4035)] = 120387, - [SMALL_STATE(4036)] = 120412, - [SMALL_STATE(4037)] = 120437, - [SMALL_STATE(4038)] = 120462, - [SMALL_STATE(4039)] = 120487, - [SMALL_STATE(4040)] = 120512, - [SMALL_STATE(4041)] = 120533, - [SMALL_STATE(4042)] = 120554, - [SMALL_STATE(4043)] = 120575, - [SMALL_STATE(4044)] = 120598, - [SMALL_STATE(4045)] = 120621, - [SMALL_STATE(4046)] = 120644, - [SMALL_STATE(4047)] = 120665, - [SMALL_STATE(4048)] = 120688, - [SMALL_STATE(4049)] = 120710, - [SMALL_STATE(4050)] = 120730, - [SMALL_STATE(4051)] = 120752, - [SMALL_STATE(4052)] = 120772, - [SMALL_STATE(4053)] = 120794, - [SMALL_STATE(4054)] = 120816, - [SMALL_STATE(4055)] = 120836, - [SMALL_STATE(4056)] = 120858, - [SMALL_STATE(4057)] = 120878, - [SMALL_STATE(4058)] = 120900, - [SMALL_STATE(4059)] = 120918, - [SMALL_STATE(4060)] = 120936, - [SMALL_STATE(4061)] = 120958, - [SMALL_STATE(4062)] = 120976, - [SMALL_STATE(4063)] = 120996, - [SMALL_STATE(4064)] = 121018, - [SMALL_STATE(4065)] = 121040, - [SMALL_STATE(4066)] = 121062, - [SMALL_STATE(4067)] = 121084, - [SMALL_STATE(4068)] = 121104, - [SMALL_STATE(4069)] = 121126, - [SMALL_STATE(4070)] = 121146, - [SMALL_STATE(4071)] = 121168, - [SMALL_STATE(4072)] = 121188, - [SMALL_STATE(4073)] = 121204, - [SMALL_STATE(4074)] = 121224, - [SMALL_STATE(4075)] = 121242, - [SMALL_STATE(4076)] = 121262, - [SMALL_STATE(4077)] = 121284, - [SMALL_STATE(4078)] = 121306, - [SMALL_STATE(4079)] = 121326, - [SMALL_STATE(4080)] = 121344, - [SMALL_STATE(4081)] = 121362, - [SMALL_STATE(4082)] = 121382, - [SMALL_STATE(4083)] = 121404, - [SMALL_STATE(4084)] = 121426, - [SMALL_STATE(4085)] = 121442, - [SMALL_STATE(4086)] = 121458, - [SMALL_STATE(4087)] = 121478, - [SMALL_STATE(4088)] = 121500, - [SMALL_STATE(4089)] = 121518, - [SMALL_STATE(4090)] = 121540, - [SMALL_STATE(4091)] = 121562, - [SMALL_STATE(4092)] = 121580, - [SMALL_STATE(4093)] = 121600, - [SMALL_STATE(4094)] = 121620, - [SMALL_STATE(4095)] = 121642, - [SMALL_STATE(4096)] = 121662, - [SMALL_STATE(4097)] = 121680, - [SMALL_STATE(4098)] = 121698, - [SMALL_STATE(4099)] = 121716, - [SMALL_STATE(4100)] = 121738, - [SMALL_STATE(4101)] = 121756, - [SMALL_STATE(4102)] = 121772, - [SMALL_STATE(4103)] = 121788, - [SMALL_STATE(4104)] = 121808, - [SMALL_STATE(4105)] = 121830, - [SMALL_STATE(4106)] = 121850, - [SMALL_STATE(4107)] = 121870, - [SMALL_STATE(4108)] = 121890, - [SMALL_STATE(4109)] = 121912, - [SMALL_STATE(4110)] = 121934, - [SMALL_STATE(4111)] = 121956, - [SMALL_STATE(4112)] = 121976, - [SMALL_STATE(4113)] = 121996, - [SMALL_STATE(4114)] = 122018, - [SMALL_STATE(4115)] = 122040, - [SMALL_STATE(4116)] = 122062, - [SMALL_STATE(4117)] = 122082, - [SMALL_STATE(4118)] = 122104, - [SMALL_STATE(4119)] = 122120, - [SMALL_STATE(4120)] = 122140, - [SMALL_STATE(4121)] = 122160, - [SMALL_STATE(4122)] = 122176, - [SMALL_STATE(4123)] = 122196, - [SMALL_STATE(4124)] = 122216, - [SMALL_STATE(4125)] = 122232, - [SMALL_STATE(4126)] = 122252, - [SMALL_STATE(4127)] = 122268, - [SMALL_STATE(4128)] = 122284, - [SMALL_STATE(4129)] = 122306, - [SMALL_STATE(4130)] = 122326, - [SMALL_STATE(4131)] = 122348, - [SMALL_STATE(4132)] = 122368, - [SMALL_STATE(4133)] = 122388, - [SMALL_STATE(4134)] = 122410, - [SMALL_STATE(4135)] = 122430, - [SMALL_STATE(4136)] = 122446, - [SMALL_STATE(4137)] = 122466, - [SMALL_STATE(4138)] = 122486, - [SMALL_STATE(4139)] = 122506, - [SMALL_STATE(4140)] = 122526, - [SMALL_STATE(4141)] = 122546, - [SMALL_STATE(4142)] = 122566, - [SMALL_STATE(4143)] = 122582, - [SMALL_STATE(4144)] = 122598, - [SMALL_STATE(4145)] = 122618, - [SMALL_STATE(4146)] = 122634, - [SMALL_STATE(4147)] = 122654, - [SMALL_STATE(4148)] = 122674, - [SMALL_STATE(4149)] = 122692, - [SMALL_STATE(4150)] = 122714, - [SMALL_STATE(4151)] = 122732, - [SMALL_STATE(4152)] = 122754, - [SMALL_STATE(4153)] = 122770, - [SMALL_STATE(4154)] = 122786, - [SMALL_STATE(4155)] = 122806, - [SMALL_STATE(4156)] = 122824, - [SMALL_STATE(4157)] = 122840, - [SMALL_STATE(4158)] = 122858, - [SMALL_STATE(4159)] = 122876, - [SMALL_STATE(4160)] = 122892, - [SMALL_STATE(4161)] = 122912, - [SMALL_STATE(4162)] = 122928, - [SMALL_STATE(4163)] = 122948, - [SMALL_STATE(4164)] = 122966, - [SMALL_STATE(4165)] = 122988, - [SMALL_STATE(4166)] = 123008, - [SMALL_STATE(4167)] = 123030, - [SMALL_STATE(4168)] = 123046, - [SMALL_STATE(4169)] = 123066, - [SMALL_STATE(4170)] = 123082, - [SMALL_STATE(4171)] = 123104, - [SMALL_STATE(4172)] = 123124, - [SMALL_STATE(4173)] = 123142, - [SMALL_STATE(4174)] = 123162, - [SMALL_STATE(4175)] = 123182, - [SMALL_STATE(4176)] = 123198, - [SMALL_STATE(4177)] = 123214, - [SMALL_STATE(4178)] = 123232, - [SMALL_STATE(4179)] = 123254, - [SMALL_STATE(4180)] = 123274, - [SMALL_STATE(4181)] = 123292, - [SMALL_STATE(4182)] = 123308, - [SMALL_STATE(4183)] = 123324, - [SMALL_STATE(4184)] = 123342, - [SMALL_STATE(4185)] = 123360, - [SMALL_STATE(4186)] = 123376, - [SMALL_STATE(4187)] = 123398, - [SMALL_STATE(4188)] = 123418, - [SMALL_STATE(4189)] = 123434, - [SMALL_STATE(4190)] = 123452, - [SMALL_STATE(4191)] = 123474, - [SMALL_STATE(4192)] = 123490, - [SMALL_STATE(4193)] = 123506, - [SMALL_STATE(4194)] = 123522, - [SMALL_STATE(4195)] = 123544, - [SMALL_STATE(4196)] = 123560, - [SMALL_STATE(4197)] = 123580, - [SMALL_STATE(4198)] = 123596, - [SMALL_STATE(4199)] = 123616, - [SMALL_STATE(4200)] = 123634, - [SMALL_STATE(4201)] = 123652, - [SMALL_STATE(4202)] = 123670, - [SMALL_STATE(4203)] = 123690, - [SMALL_STATE(4204)] = 123710, - [SMALL_STATE(4205)] = 123732, - [SMALL_STATE(4206)] = 123748, - [SMALL_STATE(4207)] = 123764, - [SMALL_STATE(4208)] = 123783, - [SMALL_STATE(4209)] = 123796, - [SMALL_STATE(4210)] = 123809, - [SMALL_STATE(4211)] = 123824, - [SMALL_STATE(4212)] = 123839, - [SMALL_STATE(4213)] = 123858, - [SMALL_STATE(4214)] = 123871, - [SMALL_STATE(4215)] = 123886, - [SMALL_STATE(4216)] = 123901, - [SMALL_STATE(4217)] = 123920, - [SMALL_STATE(4218)] = 123935, - [SMALL_STATE(4219)] = 123954, - [SMALL_STATE(4220)] = 123969, - [SMALL_STATE(4221)] = 123988, - [SMALL_STATE(4222)] = 124007, - [SMALL_STATE(4223)] = 124020, - [SMALL_STATE(4224)] = 124033, - [SMALL_STATE(4225)] = 124050, - [SMALL_STATE(4226)] = 124069, - [SMALL_STATE(4227)] = 124084, - [SMALL_STATE(4228)] = 124101, - [SMALL_STATE(4229)] = 124116, - [SMALL_STATE(4230)] = 124133, - [SMALL_STATE(4231)] = 124150, - [SMALL_STATE(4232)] = 124169, - [SMALL_STATE(4233)] = 124184, - [SMALL_STATE(4234)] = 124199, - [SMALL_STATE(4235)] = 124212, - [SMALL_STATE(4236)] = 124227, - [SMALL_STATE(4237)] = 124240, - [SMALL_STATE(4238)] = 124255, - [SMALL_STATE(4239)] = 124272, - [SMALL_STATE(4240)] = 124287, - [SMALL_STATE(4241)] = 124302, - [SMALL_STATE(4242)] = 124317, - [SMALL_STATE(4243)] = 124336, - [SMALL_STATE(4244)] = 124353, - [SMALL_STATE(4245)] = 124370, - [SMALL_STATE(4246)] = 124383, - [SMALL_STATE(4247)] = 124398, - [SMALL_STATE(4248)] = 124413, - [SMALL_STATE(4249)] = 124428, - [SMALL_STATE(4250)] = 124447, - [SMALL_STATE(4251)] = 124462, - [SMALL_STATE(4252)] = 124475, - [SMALL_STATE(4253)] = 124490, - [SMALL_STATE(4254)] = 124505, - [SMALL_STATE(4255)] = 124520, - [SMALL_STATE(4256)] = 124535, - [SMALL_STATE(4257)] = 124550, - [SMALL_STATE(4258)] = 124565, - [SMALL_STATE(4259)] = 124580, - [SMALL_STATE(4260)] = 124595, - [SMALL_STATE(4261)] = 124610, - [SMALL_STATE(4262)] = 124629, - [SMALL_STATE(4263)] = 124642, - [SMALL_STATE(4264)] = 124655, - [SMALL_STATE(4265)] = 124670, - [SMALL_STATE(4266)] = 124685, - [SMALL_STATE(4267)] = 124700, - [SMALL_STATE(4268)] = 124715, - [SMALL_STATE(4269)] = 124728, - [SMALL_STATE(4270)] = 124741, - [SMALL_STATE(4271)] = 124754, - [SMALL_STATE(4272)] = 124769, - [SMALL_STATE(4273)] = 124782, - [SMALL_STATE(4274)] = 124799, - [SMALL_STATE(4275)] = 124816, - [SMALL_STATE(4276)] = 124835, - [SMALL_STATE(4277)] = 124852, - [SMALL_STATE(4278)] = 124865, - [SMALL_STATE(4279)] = 124884, - [SMALL_STATE(4280)] = 124897, - [SMALL_STATE(4281)] = 124912, - [SMALL_STATE(4282)] = 124931, - [SMALL_STATE(4283)] = 124944, - [SMALL_STATE(4284)] = 124957, - [SMALL_STATE(4285)] = 124972, - [SMALL_STATE(4286)] = 124985, - [SMALL_STATE(4287)] = 125000, - [SMALL_STATE(4288)] = 125013, - [SMALL_STATE(4289)] = 125026, - [SMALL_STATE(4290)] = 125041, - [SMALL_STATE(4291)] = 125054, - [SMALL_STATE(4292)] = 125069, - [SMALL_STATE(4293)] = 125088, - [SMALL_STATE(4294)] = 125103, - [SMALL_STATE(4295)] = 125118, - [SMALL_STATE(4296)] = 125131, - [SMALL_STATE(4297)] = 125144, - [SMALL_STATE(4298)] = 125157, - [SMALL_STATE(4299)] = 125170, - [SMALL_STATE(4300)] = 125183, - [SMALL_STATE(4301)] = 125198, - [SMALL_STATE(4302)] = 125211, - [SMALL_STATE(4303)] = 125224, - [SMALL_STATE(4304)] = 125237, - [SMALL_STATE(4305)] = 125250, - [SMALL_STATE(4306)] = 125263, - [SMALL_STATE(4307)] = 125276, - [SMALL_STATE(4308)] = 125291, - [SMALL_STATE(4309)] = 125304, - [SMALL_STATE(4310)] = 125317, - [SMALL_STATE(4311)] = 125330, - [SMALL_STATE(4312)] = 125345, - [SMALL_STATE(4313)] = 125360, - [SMALL_STATE(4314)] = 125373, - [SMALL_STATE(4315)] = 125388, - [SMALL_STATE(4316)] = 125401, - [SMALL_STATE(4317)] = 125414, - [SMALL_STATE(4318)] = 125427, - [SMALL_STATE(4319)] = 125446, - [SMALL_STATE(4320)] = 125465, - [SMALL_STATE(4321)] = 125484, - [SMALL_STATE(4322)] = 125501, - [SMALL_STATE(4323)] = 125514, - [SMALL_STATE(4324)] = 125533, - [SMALL_STATE(4325)] = 125550, - [SMALL_STATE(4326)] = 125563, - [SMALL_STATE(4327)] = 125582, - [SMALL_STATE(4328)] = 125595, - [SMALL_STATE(4329)] = 125608, - [SMALL_STATE(4330)] = 125621, - [SMALL_STATE(4331)] = 125634, - [SMALL_STATE(4332)] = 125647, - [SMALL_STATE(4333)] = 125660, - [SMALL_STATE(4334)] = 125673, - [SMALL_STATE(4335)] = 125686, - [SMALL_STATE(4336)] = 125699, - [SMALL_STATE(4337)] = 125718, - [SMALL_STATE(4338)] = 125731, - [SMALL_STATE(4339)] = 125748, - [SMALL_STATE(4340)] = 125765, - [SMALL_STATE(4341)] = 125782, - [SMALL_STATE(4342)] = 125795, - [SMALL_STATE(4343)] = 125808, - [SMALL_STATE(4344)] = 125821, - [SMALL_STATE(4345)] = 125838, - [SMALL_STATE(4346)] = 125857, - [SMALL_STATE(4347)] = 125870, - [SMALL_STATE(4348)] = 125889, - [SMALL_STATE(4349)] = 125902, - [SMALL_STATE(4350)] = 125921, - [SMALL_STATE(4351)] = 125934, - [SMALL_STATE(4352)] = 125947, - [SMALL_STATE(4353)] = 125960, - [SMALL_STATE(4354)] = 125977, - [SMALL_STATE(4355)] = 125990, - [SMALL_STATE(4356)] = 126003, - [SMALL_STATE(4357)] = 126020, - [SMALL_STATE(4358)] = 126033, - [SMALL_STATE(4359)] = 126048, - [SMALL_STATE(4360)] = 126061, - [SMALL_STATE(4361)] = 126074, - [SMALL_STATE(4362)] = 126093, - [SMALL_STATE(4363)] = 126106, - [SMALL_STATE(4364)] = 126119, - [SMALL_STATE(4365)] = 126132, - [SMALL_STATE(4366)] = 126145, - [SMALL_STATE(4367)] = 126160, - [SMALL_STATE(4368)] = 126173, - [SMALL_STATE(4369)] = 126188, - [SMALL_STATE(4370)] = 126201, - [SMALL_STATE(4371)] = 126214, - [SMALL_STATE(4372)] = 126227, - [SMALL_STATE(4373)] = 126240, - [SMALL_STATE(4374)] = 126253, - [SMALL_STATE(4375)] = 126266, - [SMALL_STATE(4376)] = 126279, - [SMALL_STATE(4377)] = 126292, - [SMALL_STATE(4378)] = 126309, - [SMALL_STATE(4379)] = 126322, - [SMALL_STATE(4380)] = 126335, - [SMALL_STATE(4381)] = 126348, - [SMALL_STATE(4382)] = 126361, - [SMALL_STATE(4383)] = 126374, - [SMALL_STATE(4384)] = 126389, - [SMALL_STATE(4385)] = 126404, - [SMALL_STATE(4386)] = 126417, - [SMALL_STATE(4387)] = 126432, - [SMALL_STATE(4388)] = 126451, - [SMALL_STATE(4389)] = 126464, - [SMALL_STATE(4390)] = 126477, - [SMALL_STATE(4391)] = 126490, - [SMALL_STATE(4392)] = 126509, - [SMALL_STATE(4393)] = 126526, - [SMALL_STATE(4394)] = 126545, - [SMALL_STATE(4395)] = 126558, - [SMALL_STATE(4396)] = 126577, - [SMALL_STATE(4397)] = 126596, - [SMALL_STATE(4398)] = 126615, - [SMALL_STATE(4399)] = 126632, - [SMALL_STATE(4400)] = 126647, - [SMALL_STATE(4401)] = 126660, - [SMALL_STATE(4402)] = 126679, - [SMALL_STATE(4403)] = 126692, - [SMALL_STATE(4404)] = 126709, - [SMALL_STATE(4405)] = 126722, - [SMALL_STATE(4406)] = 126739, - [SMALL_STATE(4407)] = 126752, - [SMALL_STATE(4408)] = 126765, - [SMALL_STATE(4409)] = 126784, - [SMALL_STATE(4410)] = 126801, - [SMALL_STATE(4411)] = 126814, - [SMALL_STATE(4412)] = 126827, - [SMALL_STATE(4413)] = 126840, - [SMALL_STATE(4414)] = 126855, - [SMALL_STATE(4415)] = 126870, - [SMALL_STATE(4416)] = 126889, - [SMALL_STATE(4417)] = 126902, - [SMALL_STATE(4418)] = 126921, - [SMALL_STATE(4419)] = 126936, - [SMALL_STATE(4420)] = 126951, - [SMALL_STATE(4421)] = 126964, - [SMALL_STATE(4422)] = 126983, - [SMALL_STATE(4423)] = 127000, - [SMALL_STATE(4424)] = 127019, - [SMALL_STATE(4425)] = 127034, - [SMALL_STATE(4426)] = 127053, - [SMALL_STATE(4427)] = 127070, - [SMALL_STATE(4428)] = 127085, - [SMALL_STATE(4429)] = 127104, - [SMALL_STATE(4430)] = 127119, - [SMALL_STATE(4431)] = 127136, - [SMALL_STATE(4432)] = 127149, - [SMALL_STATE(4433)] = 127166, - [SMALL_STATE(4434)] = 127181, - [SMALL_STATE(4435)] = 127194, - [SMALL_STATE(4436)] = 127209, - [SMALL_STATE(4437)] = 127224, - [SMALL_STATE(4438)] = 127237, - [SMALL_STATE(4439)] = 127256, - [SMALL_STATE(4440)] = 127269, - [SMALL_STATE(4441)] = 127288, - [SMALL_STATE(4442)] = 127301, - [SMALL_STATE(4443)] = 127320, - [SMALL_STATE(4444)] = 127333, - [SMALL_STATE(4445)] = 127352, - [SMALL_STATE(4446)] = 127365, - [SMALL_STATE(4447)] = 127380, - [SMALL_STATE(4448)] = 127399, - [SMALL_STATE(4449)] = 127418, - [SMALL_STATE(4450)] = 127437, - [SMALL_STATE(4451)] = 127454, - [SMALL_STATE(4452)] = 127469, - [SMALL_STATE(4453)] = 127488, - [SMALL_STATE(4454)] = 127507, - [SMALL_STATE(4455)] = 127522, - [SMALL_STATE(4456)] = 127541, - [SMALL_STATE(4457)] = 127556, - [SMALL_STATE(4458)] = 127571, - [SMALL_STATE(4459)] = 127586, - [SMALL_STATE(4460)] = 127599, - [SMALL_STATE(4461)] = 127616, - [SMALL_STATE(4462)] = 127629, - [SMALL_STATE(4463)] = 127646, - [SMALL_STATE(4464)] = 127659, - [SMALL_STATE(4465)] = 127672, - [SMALL_STATE(4466)] = 127691, - [SMALL_STATE(4467)] = 127704, - [SMALL_STATE(4468)] = 127719, - [SMALL_STATE(4469)] = 127732, - [SMALL_STATE(4470)] = 127745, - [SMALL_STATE(4471)] = 127758, - [SMALL_STATE(4472)] = 127771, - [SMALL_STATE(4473)] = 127790, - [SMALL_STATE(4474)] = 127809, - [SMALL_STATE(4475)] = 127828, - [SMALL_STATE(4476)] = 127841, - [SMALL_STATE(4477)] = 127856, - [SMALL_STATE(4478)] = 127869, - [SMALL_STATE(4479)] = 127882, - [SMALL_STATE(4480)] = 127895, - [SMALL_STATE(4481)] = 127908, - [SMALL_STATE(4482)] = 127921, - [SMALL_STATE(4483)] = 127938, - [SMALL_STATE(4484)] = 127951, - [SMALL_STATE(4485)] = 127964, - [SMALL_STATE(4486)] = 127983, - [SMALL_STATE(4487)] = 128002, - [SMALL_STATE(4488)] = 128015, - [SMALL_STATE(4489)] = 128028, - [SMALL_STATE(4490)] = 128041, - [SMALL_STATE(4491)] = 128058, - [SMALL_STATE(4492)] = 128071, - [SMALL_STATE(4493)] = 128084, - [SMALL_STATE(4494)] = 128101, - [SMALL_STATE(4495)] = 128120, - [SMALL_STATE(4496)] = 128139, - [SMALL_STATE(4497)] = 128158, - [SMALL_STATE(4498)] = 128177, - [SMALL_STATE(4499)] = 128196, - [SMALL_STATE(4500)] = 128215, - [SMALL_STATE(4501)] = 128234, - [SMALL_STATE(4502)] = 128253, - [SMALL_STATE(4503)] = 128272, - [SMALL_STATE(4504)] = 128285, - [SMALL_STATE(4505)] = 128300, - [SMALL_STATE(4506)] = 128313, - [SMALL_STATE(4507)] = 128328, - [SMALL_STATE(4508)] = 128345, - [SMALL_STATE(4509)] = 128362, - [SMALL_STATE(4510)] = 128379, - [SMALL_STATE(4511)] = 128398, - [SMALL_STATE(4512)] = 128417, - [SMALL_STATE(4513)] = 128436, - [SMALL_STATE(4514)] = 128455, - [SMALL_STATE(4515)] = 128470, - [SMALL_STATE(4516)] = 128485, - [SMALL_STATE(4517)] = 128502, - [SMALL_STATE(4518)] = 128521, - [SMALL_STATE(4519)] = 128534, - [SMALL_STATE(4520)] = 128546, - [SMALL_STATE(4521)] = 128558, - [SMALL_STATE(4522)] = 128574, - [SMALL_STATE(4523)] = 128586, - [SMALL_STATE(4524)] = 128602, - [SMALL_STATE(4525)] = 128618, - [SMALL_STATE(4526)] = 128634, - [SMALL_STATE(4527)] = 128650, - [SMALL_STATE(4528)] = 128666, - [SMALL_STATE(4529)] = 128678, - [SMALL_STATE(4530)] = 128690, - [SMALL_STATE(4531)] = 128706, - [SMALL_STATE(4532)] = 128722, - [SMALL_STATE(4533)] = 128736, - [SMALL_STATE(4534)] = 128752, - [SMALL_STATE(4535)] = 128766, - [SMALL_STATE(4536)] = 128778, - [SMALL_STATE(4537)] = 128790, - [SMALL_STATE(4538)] = 128804, - [SMALL_STATE(4539)] = 128818, - [SMALL_STATE(4540)] = 128830, - [SMALL_STATE(4541)] = 128846, - [SMALL_STATE(4542)] = 128860, - [SMALL_STATE(4543)] = 128876, - [SMALL_STATE(4544)] = 128892, - [SMALL_STATE(4545)] = 128908, - [SMALL_STATE(4546)] = 128924, - [SMALL_STATE(4547)] = 128938, - [SMALL_STATE(4548)] = 128950, - [SMALL_STATE(4549)] = 128966, - [SMALL_STATE(4550)] = 128982, - [SMALL_STATE(4551)] = 128996, - [SMALL_STATE(4552)] = 129012, - [SMALL_STATE(4553)] = 129024, - [SMALL_STATE(4554)] = 129040, - [SMALL_STATE(4555)] = 129054, - [SMALL_STATE(4556)] = 129066, - [SMALL_STATE(4557)] = 129080, - [SMALL_STATE(4558)] = 129094, - [SMALL_STATE(4559)] = 129108, - [SMALL_STATE(4560)] = 129124, - [SMALL_STATE(4561)] = 129140, - [SMALL_STATE(4562)] = 129152, - [SMALL_STATE(4563)] = 129168, - [SMALL_STATE(4564)] = 129180, - [SMALL_STATE(4565)] = 129196, - [SMALL_STATE(4566)] = 129212, - [SMALL_STATE(4567)] = 129224, - [SMALL_STATE(4568)] = 129236, - [SMALL_STATE(4569)] = 129250, - [SMALL_STATE(4570)] = 129262, - [SMALL_STATE(4571)] = 129274, - [SMALL_STATE(4572)] = 129286, - [SMALL_STATE(4573)] = 129300, - [SMALL_STATE(4574)] = 129312, - [SMALL_STATE(4575)] = 129324, - [SMALL_STATE(4576)] = 129336, - [SMALL_STATE(4577)] = 129348, - [SMALL_STATE(4578)] = 129360, - [SMALL_STATE(4579)] = 129372, - [SMALL_STATE(4580)] = 129384, - [SMALL_STATE(4581)] = 129398, - [SMALL_STATE(4582)] = 129412, - [SMALL_STATE(4583)] = 129424, - [SMALL_STATE(4584)] = 129436, - [SMALL_STATE(4585)] = 129448, - [SMALL_STATE(4586)] = 129460, - [SMALL_STATE(4587)] = 129474, - [SMALL_STATE(4588)] = 129490, - [SMALL_STATE(4589)] = 129502, - [SMALL_STATE(4590)] = 129518, - [SMALL_STATE(4591)] = 129532, - [SMALL_STATE(4592)] = 129544, - [SMALL_STATE(4593)] = 129560, - [SMALL_STATE(4594)] = 129574, - [SMALL_STATE(4595)] = 129586, - [SMALL_STATE(4596)] = 129602, - [SMALL_STATE(4597)] = 129614, - [SMALL_STATE(4598)] = 129626, - [SMALL_STATE(4599)] = 129640, - [SMALL_STATE(4600)] = 129656, - [SMALL_STATE(4601)] = 129672, - [SMALL_STATE(4602)] = 129688, - [SMALL_STATE(4603)] = 129704, - [SMALL_STATE(4604)] = 129720, - [SMALL_STATE(4605)] = 129732, - [SMALL_STATE(4606)] = 129748, - [SMALL_STATE(4607)] = 129764, - [SMALL_STATE(4608)] = 129780, - [SMALL_STATE(4609)] = 129792, - [SMALL_STATE(4610)] = 129804, - [SMALL_STATE(4611)] = 129816, - [SMALL_STATE(4612)] = 129832, - [SMALL_STATE(4613)] = 129848, - [SMALL_STATE(4614)] = 129860, - [SMALL_STATE(4615)] = 129872, - [SMALL_STATE(4616)] = 129888, - [SMALL_STATE(4617)] = 129904, - [SMALL_STATE(4618)] = 129920, - [SMALL_STATE(4619)] = 129932, - [SMALL_STATE(4620)] = 129948, - [SMALL_STATE(4621)] = 129964, - [SMALL_STATE(4622)] = 129976, - [SMALL_STATE(4623)] = 129992, - [SMALL_STATE(4624)] = 130008, - [SMALL_STATE(4625)] = 130020, - [SMALL_STATE(4626)] = 130032, - [SMALL_STATE(4627)] = 130044, - [SMALL_STATE(4628)] = 130060, - [SMALL_STATE(4629)] = 130072, - [SMALL_STATE(4630)] = 130084, - [SMALL_STATE(4631)] = 130100, - [SMALL_STATE(4632)] = 130112, - [SMALL_STATE(4633)] = 130124, - [SMALL_STATE(4634)] = 130140, - [SMALL_STATE(4635)] = 130152, - [SMALL_STATE(4636)] = 130168, - [SMALL_STATE(4637)] = 130184, - [SMALL_STATE(4638)] = 130196, - [SMALL_STATE(4639)] = 130208, - [SMALL_STATE(4640)] = 130220, - [SMALL_STATE(4641)] = 130232, - [SMALL_STATE(4642)] = 130244, - [SMALL_STATE(4643)] = 130256, - [SMALL_STATE(4644)] = 130268, - [SMALL_STATE(4645)] = 130280, - [SMALL_STATE(4646)] = 130292, - [SMALL_STATE(4647)] = 130308, - [SMALL_STATE(4648)] = 130320, - [SMALL_STATE(4649)] = 130336, - [SMALL_STATE(4650)] = 130348, - [SMALL_STATE(4651)] = 130360, - [SMALL_STATE(4652)] = 130374, - [SMALL_STATE(4653)] = 130386, - [SMALL_STATE(4654)] = 130398, - [SMALL_STATE(4655)] = 130410, - [SMALL_STATE(4656)] = 130422, - [SMALL_STATE(4657)] = 130436, - [SMALL_STATE(4658)] = 130452, - [SMALL_STATE(4659)] = 130464, - [SMALL_STATE(4660)] = 130480, - [SMALL_STATE(4661)] = 130494, - [SMALL_STATE(4662)] = 130508, - [SMALL_STATE(4663)] = 130524, - [SMALL_STATE(4664)] = 130536, - [SMALL_STATE(4665)] = 130548, - [SMALL_STATE(4666)] = 130560, - [SMALL_STATE(4667)] = 130576, - [SMALL_STATE(4668)] = 130588, - [SMALL_STATE(4669)] = 130604, - [SMALL_STATE(4670)] = 130616, - [SMALL_STATE(4671)] = 130632, - [SMALL_STATE(4672)] = 130648, - [SMALL_STATE(4673)] = 130660, - [SMALL_STATE(4674)] = 130674, - [SMALL_STATE(4675)] = 130690, - [SMALL_STATE(4676)] = 130706, - [SMALL_STATE(4677)] = 130720, - [SMALL_STATE(4678)] = 130734, - [SMALL_STATE(4679)] = 130750, - [SMALL_STATE(4680)] = 130766, - [SMALL_STATE(4681)] = 130780, - [SMALL_STATE(4682)] = 130796, - [SMALL_STATE(4683)] = 130812, - [SMALL_STATE(4684)] = 130826, - [SMALL_STATE(4685)] = 130842, - [SMALL_STATE(4686)] = 130858, - [SMALL_STATE(4687)] = 130874, - [SMALL_STATE(4688)] = 130890, - [SMALL_STATE(4689)] = 130906, - [SMALL_STATE(4690)] = 130918, - [SMALL_STATE(4691)] = 130934, - [SMALL_STATE(4692)] = 130946, - [SMALL_STATE(4693)] = 130960, - [SMALL_STATE(4694)] = 130976, - [SMALL_STATE(4695)] = 130992, - [SMALL_STATE(4696)] = 131008, - [SMALL_STATE(4697)] = 131020, - [SMALL_STATE(4698)] = 131036, - [SMALL_STATE(4699)] = 131048, - [SMALL_STATE(4700)] = 131060, - [SMALL_STATE(4701)] = 131072, - [SMALL_STATE(4702)] = 131088, - [SMALL_STATE(4703)] = 131102, - [SMALL_STATE(4704)] = 131114, - [SMALL_STATE(4705)] = 131126, - [SMALL_STATE(4706)] = 131138, - [SMALL_STATE(4707)] = 131154, - [SMALL_STATE(4708)] = 131170, - [SMALL_STATE(4709)] = 131186, - [SMALL_STATE(4710)] = 131198, - [SMALL_STATE(4711)] = 131214, - [SMALL_STATE(4712)] = 131226, - [SMALL_STATE(4713)] = 131238, - [SMALL_STATE(4714)] = 131250, - [SMALL_STATE(4715)] = 131262, - [SMALL_STATE(4716)] = 131274, - [SMALL_STATE(4717)] = 131286, - [SMALL_STATE(4718)] = 131302, - [SMALL_STATE(4719)] = 131316, - [SMALL_STATE(4720)] = 131328, - [SMALL_STATE(4721)] = 131342, - [SMALL_STATE(4722)] = 131356, - [SMALL_STATE(4723)] = 131372, - [SMALL_STATE(4724)] = 131388, - [SMALL_STATE(4725)] = 131400, - [SMALL_STATE(4726)] = 131412, - [SMALL_STATE(4727)] = 131424, - [SMALL_STATE(4728)] = 131440, - [SMALL_STATE(4729)] = 131452, - [SMALL_STATE(4730)] = 131468, - [SMALL_STATE(4731)] = 131484, - [SMALL_STATE(4732)] = 131498, - [SMALL_STATE(4733)] = 131510, - [SMALL_STATE(4734)] = 131522, - [SMALL_STATE(4735)] = 131538, - [SMALL_STATE(4736)] = 131552, - [SMALL_STATE(4737)] = 131566, - [SMALL_STATE(4738)] = 131580, - [SMALL_STATE(4739)] = 131596, - [SMALL_STATE(4740)] = 131608, - [SMALL_STATE(4741)] = 131624, - [SMALL_STATE(4742)] = 131636, - [SMALL_STATE(4743)] = 131650, - [SMALL_STATE(4744)] = 131664, - [SMALL_STATE(4745)] = 131680, - [SMALL_STATE(4746)] = 131692, - [SMALL_STATE(4747)] = 131704, - [SMALL_STATE(4748)] = 131716, - [SMALL_STATE(4749)] = 131728, - [SMALL_STATE(4750)] = 131744, - [SMALL_STATE(4751)] = 131756, - [SMALL_STATE(4752)] = 131768, - [SMALL_STATE(4753)] = 131784, - [SMALL_STATE(4754)] = 131798, - [SMALL_STATE(4755)] = 131814, - [SMALL_STATE(4756)] = 131828, - [SMALL_STATE(4757)] = 131844, - [SMALL_STATE(4758)] = 131858, - [SMALL_STATE(4759)] = 131872, - [SMALL_STATE(4760)] = 131888, - [SMALL_STATE(4761)] = 131904, - [SMALL_STATE(4762)] = 131916, - [SMALL_STATE(4763)] = 131932, - [SMALL_STATE(4764)] = 131944, - [SMALL_STATE(4765)] = 131960, - [SMALL_STATE(4766)] = 131974, - [SMALL_STATE(4767)] = 131988, - [SMALL_STATE(4768)] = 132002, - [SMALL_STATE(4769)] = 132014, - [SMALL_STATE(4770)] = 132030, - [SMALL_STATE(4771)] = 132044, - [SMALL_STATE(4772)] = 132058, - [SMALL_STATE(4773)] = 132070, - [SMALL_STATE(4774)] = 132086, - [SMALL_STATE(4775)] = 132098, - [SMALL_STATE(4776)] = 132112, - [SMALL_STATE(4777)] = 132128, - [SMALL_STATE(4778)] = 132144, - [SMALL_STATE(4779)] = 132156, - [SMALL_STATE(4780)] = 132169, - [SMALL_STATE(4781)] = 132182, - [SMALL_STATE(4782)] = 132195, - [SMALL_STATE(4783)] = 132208, - [SMALL_STATE(4784)] = 132221, - [SMALL_STATE(4785)] = 132234, - [SMALL_STATE(4786)] = 132247, - [SMALL_STATE(4787)] = 132260, - [SMALL_STATE(4788)] = 132273, - [SMALL_STATE(4789)] = 132286, - [SMALL_STATE(4790)] = 132299, - [SMALL_STATE(4791)] = 132312, - [SMALL_STATE(4792)] = 132325, - [SMALL_STATE(4793)] = 132338, - [SMALL_STATE(4794)] = 132351, - [SMALL_STATE(4795)] = 132364, - [SMALL_STATE(4796)] = 132377, - [SMALL_STATE(4797)] = 132390, - [SMALL_STATE(4798)] = 132401, - [SMALL_STATE(4799)] = 132414, - [SMALL_STATE(4800)] = 132427, - [SMALL_STATE(4801)] = 132440, - [SMALL_STATE(4802)] = 132453, - [SMALL_STATE(4803)] = 132466, - [SMALL_STATE(4804)] = 132479, - [SMALL_STATE(4805)] = 132492, - [SMALL_STATE(4806)] = 132505, - [SMALL_STATE(4807)] = 132518, - [SMALL_STATE(4808)] = 132531, - [SMALL_STATE(4809)] = 132544, - [SMALL_STATE(4810)] = 132557, - [SMALL_STATE(4811)] = 132570, - [SMALL_STATE(4812)] = 132583, - [SMALL_STATE(4813)] = 132594, - [SMALL_STATE(4814)] = 132607, - [SMALL_STATE(4815)] = 132620, - [SMALL_STATE(4816)] = 132633, - [SMALL_STATE(4817)] = 132646, - [SMALL_STATE(4818)] = 132659, - [SMALL_STATE(4819)] = 132672, - [SMALL_STATE(4820)] = 132683, - [SMALL_STATE(4821)] = 132696, - [SMALL_STATE(4822)] = 132709, - [SMALL_STATE(4823)] = 132722, - [SMALL_STATE(4824)] = 132735, - [SMALL_STATE(4825)] = 132748, - [SMALL_STATE(4826)] = 132761, - [SMALL_STATE(4827)] = 132774, - [SMALL_STATE(4828)] = 132785, - [SMALL_STATE(4829)] = 132798, - [SMALL_STATE(4830)] = 132809, - [SMALL_STATE(4831)] = 132822, - [SMALL_STATE(4832)] = 132835, - [SMALL_STATE(4833)] = 132848, - [SMALL_STATE(4834)] = 132861, - [SMALL_STATE(4835)] = 132874, - [SMALL_STATE(4836)] = 132887, - [SMALL_STATE(4837)] = 132900, - [SMALL_STATE(4838)] = 132913, - [SMALL_STATE(4839)] = 132926, - [SMALL_STATE(4840)] = 132939, - [SMALL_STATE(4841)] = 132952, - [SMALL_STATE(4842)] = 132965, - [SMALL_STATE(4843)] = 132978, - [SMALL_STATE(4844)] = 132991, - [SMALL_STATE(4845)] = 133004, - [SMALL_STATE(4846)] = 133017, - [SMALL_STATE(4847)] = 133030, - [SMALL_STATE(4848)] = 133043, - [SMALL_STATE(4849)] = 133056, - [SMALL_STATE(4850)] = 133069, - [SMALL_STATE(4851)] = 133082, - [SMALL_STATE(4852)] = 133095, - [SMALL_STATE(4853)] = 133108, - [SMALL_STATE(4854)] = 133121, - [SMALL_STATE(4855)] = 133134, - [SMALL_STATE(4856)] = 133147, - [SMALL_STATE(4857)] = 133160, - [SMALL_STATE(4858)] = 133173, - [SMALL_STATE(4859)] = 133186, - [SMALL_STATE(4860)] = 133199, - [SMALL_STATE(4861)] = 133212, - [SMALL_STATE(4862)] = 133225, - [SMALL_STATE(4863)] = 133238, - [SMALL_STATE(4864)] = 133251, - [SMALL_STATE(4865)] = 133264, - [SMALL_STATE(4866)] = 133277, - [SMALL_STATE(4867)] = 133290, - [SMALL_STATE(4868)] = 133303, - [SMALL_STATE(4869)] = 133316, - [SMALL_STATE(4870)] = 133327, - [SMALL_STATE(4871)] = 133340, - [SMALL_STATE(4872)] = 133353, - [SMALL_STATE(4873)] = 133366, - [SMALL_STATE(4874)] = 133379, - [SMALL_STATE(4875)] = 133392, - [SMALL_STATE(4876)] = 133405, - [SMALL_STATE(4877)] = 133418, - [SMALL_STATE(4878)] = 133431, - [SMALL_STATE(4879)] = 133444, - [SMALL_STATE(4880)] = 133457, - [SMALL_STATE(4881)] = 133470, - [SMALL_STATE(4882)] = 133483, - [SMALL_STATE(4883)] = 133496, - [SMALL_STATE(4884)] = 133509, - [SMALL_STATE(4885)] = 133522, - [SMALL_STATE(4886)] = 133535, - [SMALL_STATE(4887)] = 133548, - [SMALL_STATE(4888)] = 133561, - [SMALL_STATE(4889)] = 133574, - [SMALL_STATE(4890)] = 133587, - [SMALL_STATE(4891)] = 133598, - [SMALL_STATE(4892)] = 133611, - [SMALL_STATE(4893)] = 133624, - [SMALL_STATE(4894)] = 133635, - [SMALL_STATE(4895)] = 133648, - [SMALL_STATE(4896)] = 133661, - [SMALL_STATE(4897)] = 133674, - [SMALL_STATE(4898)] = 133687, - [SMALL_STATE(4899)] = 133700, - [SMALL_STATE(4900)] = 133713, - [SMALL_STATE(4901)] = 133726, - [SMALL_STATE(4902)] = 133739, - [SMALL_STATE(4903)] = 133752, - [SMALL_STATE(4904)] = 133765, - [SMALL_STATE(4905)] = 133778, - [SMALL_STATE(4906)] = 133791, - [SMALL_STATE(4907)] = 133804, - [SMALL_STATE(4908)] = 133817, - [SMALL_STATE(4909)] = 133830, - [SMALL_STATE(4910)] = 133843, - [SMALL_STATE(4911)] = 133856, - [SMALL_STATE(4912)] = 133869, - [SMALL_STATE(4913)] = 133882, - [SMALL_STATE(4914)] = 133895, - [SMALL_STATE(4915)] = 133908, - [SMALL_STATE(4916)] = 133921, - [SMALL_STATE(4917)] = 133932, - [SMALL_STATE(4918)] = 133945, - [SMALL_STATE(4919)] = 133958, - [SMALL_STATE(4920)] = 133971, - [SMALL_STATE(4921)] = 133984, - [SMALL_STATE(4922)] = 133997, - [SMALL_STATE(4923)] = 134010, - [SMALL_STATE(4924)] = 134023, - [SMALL_STATE(4925)] = 134036, - [SMALL_STATE(4926)] = 134049, - [SMALL_STATE(4927)] = 134062, - [SMALL_STATE(4928)] = 134075, - [SMALL_STATE(4929)] = 134088, - [SMALL_STATE(4930)] = 134101, - [SMALL_STATE(4931)] = 134114, - [SMALL_STATE(4932)] = 134127, - [SMALL_STATE(4933)] = 134140, - [SMALL_STATE(4934)] = 134153, - [SMALL_STATE(4935)] = 134166, - [SMALL_STATE(4936)] = 134179, - [SMALL_STATE(4937)] = 134192, - [SMALL_STATE(4938)] = 134203, - [SMALL_STATE(4939)] = 134216, - [SMALL_STATE(4940)] = 134229, - [SMALL_STATE(4941)] = 134242, - [SMALL_STATE(4942)] = 134255, - [SMALL_STATE(4943)] = 134268, - [SMALL_STATE(4944)] = 134281, - [SMALL_STATE(4945)] = 134294, - [SMALL_STATE(4946)] = 134307, - [SMALL_STATE(4947)] = 134320, - [SMALL_STATE(4948)] = 134333, - [SMALL_STATE(4949)] = 134343, - [SMALL_STATE(4950)] = 134353, - [SMALL_STATE(4951)] = 134363, - [SMALL_STATE(4952)] = 134373, - [SMALL_STATE(4953)] = 134383, - [SMALL_STATE(4954)] = 134393, - [SMALL_STATE(4955)] = 134403, - [SMALL_STATE(4956)] = 134413, - [SMALL_STATE(4957)] = 134423, - [SMALL_STATE(4958)] = 134433, - [SMALL_STATE(4959)] = 134443, - [SMALL_STATE(4960)] = 134453, - [SMALL_STATE(4961)] = 134463, - [SMALL_STATE(4962)] = 134473, - [SMALL_STATE(4963)] = 134483, - [SMALL_STATE(4964)] = 134493, - [SMALL_STATE(4965)] = 134503, - [SMALL_STATE(4966)] = 134513, - [SMALL_STATE(4967)] = 134523, - [SMALL_STATE(4968)] = 134533, - [SMALL_STATE(4969)] = 134543, - [SMALL_STATE(4970)] = 134553, - [SMALL_STATE(4971)] = 134563, - [SMALL_STATE(4972)] = 134573, - [SMALL_STATE(4973)] = 134583, - [SMALL_STATE(4974)] = 134593, - [SMALL_STATE(4975)] = 134603, - [SMALL_STATE(4976)] = 134613, - [SMALL_STATE(4977)] = 134623, - [SMALL_STATE(4978)] = 134633, - [SMALL_STATE(4979)] = 134643, - [SMALL_STATE(4980)] = 134653, - [SMALL_STATE(4981)] = 134663, - [SMALL_STATE(4982)] = 134673, - [SMALL_STATE(4983)] = 134683, - [SMALL_STATE(4984)] = 134693, - [SMALL_STATE(4985)] = 134703, - [SMALL_STATE(4986)] = 134713, - [SMALL_STATE(4987)] = 134723, - [SMALL_STATE(4988)] = 134733, - [SMALL_STATE(4989)] = 134743, - [SMALL_STATE(4990)] = 134753, - [SMALL_STATE(4991)] = 134763, - [SMALL_STATE(4992)] = 134773, - [SMALL_STATE(4993)] = 134783, - [SMALL_STATE(4994)] = 134793, - [SMALL_STATE(4995)] = 134803, - [SMALL_STATE(4996)] = 134813, - [SMALL_STATE(4997)] = 134823, - [SMALL_STATE(4998)] = 134833, - [SMALL_STATE(4999)] = 134843, - [SMALL_STATE(5000)] = 134853, - [SMALL_STATE(5001)] = 134863, - [SMALL_STATE(5002)] = 134873, - [SMALL_STATE(5003)] = 134883, - [SMALL_STATE(5004)] = 134893, - [SMALL_STATE(5005)] = 134903, - [SMALL_STATE(5006)] = 134913, - [SMALL_STATE(5007)] = 134923, - [SMALL_STATE(5008)] = 134933, - [SMALL_STATE(5009)] = 134943, - [SMALL_STATE(5010)] = 134953, - [SMALL_STATE(5011)] = 134963, - [SMALL_STATE(5012)] = 134973, - [SMALL_STATE(5013)] = 134983, - [SMALL_STATE(5014)] = 134993, - [SMALL_STATE(5015)] = 135003, - [SMALL_STATE(5016)] = 135013, - [SMALL_STATE(5017)] = 135023, - [SMALL_STATE(5018)] = 135033, - [SMALL_STATE(5019)] = 135043, - [SMALL_STATE(5020)] = 135053, - [SMALL_STATE(5021)] = 135063, - [SMALL_STATE(5022)] = 135073, - [SMALL_STATE(5023)] = 135083, - [SMALL_STATE(5024)] = 135093, - [SMALL_STATE(5025)] = 135103, - [SMALL_STATE(5026)] = 135113, - [SMALL_STATE(5027)] = 135123, - [SMALL_STATE(5028)] = 135133, - [SMALL_STATE(5029)] = 135143, - [SMALL_STATE(5030)] = 135153, - [SMALL_STATE(5031)] = 135163, - [SMALL_STATE(5032)] = 135173, - [SMALL_STATE(5033)] = 135183, - [SMALL_STATE(5034)] = 135193, - [SMALL_STATE(5035)] = 135203, - [SMALL_STATE(5036)] = 135213, - [SMALL_STATE(5037)] = 135223, - [SMALL_STATE(5038)] = 135233, - [SMALL_STATE(5039)] = 135243, - [SMALL_STATE(5040)] = 135253, - [SMALL_STATE(5041)] = 135263, - [SMALL_STATE(5042)] = 135273, - [SMALL_STATE(5043)] = 135283, - [SMALL_STATE(5044)] = 135293, - [SMALL_STATE(5045)] = 135303, - [SMALL_STATE(5046)] = 135313, - [SMALL_STATE(5047)] = 135323, - [SMALL_STATE(5048)] = 135333, - [SMALL_STATE(5049)] = 135343, - [SMALL_STATE(5050)] = 135353, - [SMALL_STATE(5051)] = 135363, - [SMALL_STATE(5052)] = 135373, - [SMALL_STATE(5053)] = 135383, - [SMALL_STATE(5054)] = 135393, - [SMALL_STATE(5055)] = 135403, - [SMALL_STATE(5056)] = 135413, - [SMALL_STATE(5057)] = 135423, - [SMALL_STATE(5058)] = 135433, - [SMALL_STATE(5059)] = 135443, - [SMALL_STATE(5060)] = 135453, - [SMALL_STATE(5061)] = 135463, - [SMALL_STATE(5062)] = 135473, - [SMALL_STATE(5063)] = 135483, - [SMALL_STATE(5064)] = 135493, - [SMALL_STATE(5065)] = 135503, - [SMALL_STATE(5066)] = 135513, - [SMALL_STATE(5067)] = 135523, - [SMALL_STATE(5068)] = 135533, - [SMALL_STATE(5069)] = 135543, - [SMALL_STATE(5070)] = 135553, - [SMALL_STATE(5071)] = 135563, - [SMALL_STATE(5072)] = 135573, - [SMALL_STATE(5073)] = 135583, - [SMALL_STATE(5074)] = 135593, - [SMALL_STATE(5075)] = 135603, - [SMALL_STATE(5076)] = 135613, - [SMALL_STATE(5077)] = 135623, - [SMALL_STATE(5078)] = 135633, - [SMALL_STATE(5079)] = 135643, - [SMALL_STATE(5080)] = 135653, - [SMALL_STATE(5081)] = 135663, - [SMALL_STATE(5082)] = 135673, - [SMALL_STATE(5083)] = 135683, - [SMALL_STATE(5084)] = 135693, - [SMALL_STATE(5085)] = 135703, - [SMALL_STATE(5086)] = 135713, - [SMALL_STATE(5087)] = 135723, - [SMALL_STATE(5088)] = 135733, - [SMALL_STATE(5089)] = 135743, - [SMALL_STATE(5090)] = 135753, - [SMALL_STATE(5091)] = 135763, - [SMALL_STATE(5092)] = 135773, - [SMALL_STATE(5093)] = 135783, - [SMALL_STATE(5094)] = 135793, - [SMALL_STATE(5095)] = 135803, - [SMALL_STATE(5096)] = 135813, - [SMALL_STATE(5097)] = 135823, - [SMALL_STATE(5098)] = 135833, - [SMALL_STATE(5099)] = 135843, - [SMALL_STATE(5100)] = 135853, - [SMALL_STATE(5101)] = 135863, - [SMALL_STATE(5102)] = 135873, - [SMALL_STATE(5103)] = 135883, - [SMALL_STATE(5104)] = 135893, - [SMALL_STATE(5105)] = 135903, - [SMALL_STATE(5106)] = 135913, - [SMALL_STATE(5107)] = 135923, - [SMALL_STATE(5108)] = 135933, - [SMALL_STATE(5109)] = 135943, - [SMALL_STATE(5110)] = 135953, - [SMALL_STATE(5111)] = 135963, - [SMALL_STATE(5112)] = 135973, - [SMALL_STATE(5113)] = 135983, - [SMALL_STATE(5114)] = 135993, - [SMALL_STATE(5115)] = 136003, - [SMALL_STATE(5116)] = 136013, - [SMALL_STATE(5117)] = 136023, - [SMALL_STATE(5118)] = 136033, - [SMALL_STATE(5119)] = 136043, - [SMALL_STATE(5120)] = 136053, - [SMALL_STATE(5121)] = 136063, - [SMALL_STATE(5122)] = 136073, - [SMALL_STATE(5123)] = 136083, - [SMALL_STATE(5124)] = 136093, - [SMALL_STATE(5125)] = 136103, - [SMALL_STATE(5126)] = 136113, - [SMALL_STATE(5127)] = 136123, - [SMALL_STATE(5128)] = 136133, - [SMALL_STATE(5129)] = 136143, - [SMALL_STATE(5130)] = 136153, - [SMALL_STATE(5131)] = 136163, - [SMALL_STATE(5132)] = 136173, - [SMALL_STATE(5133)] = 136183, - [SMALL_STATE(5134)] = 136193, - [SMALL_STATE(5135)] = 136203, - [SMALL_STATE(5136)] = 136213, - [SMALL_STATE(5137)] = 136223, - [SMALL_STATE(5138)] = 136233, - [SMALL_STATE(5139)] = 136243, - [SMALL_STATE(5140)] = 136253, - [SMALL_STATE(5141)] = 136263, - [SMALL_STATE(5142)] = 136273, - [SMALL_STATE(5143)] = 136283, - [SMALL_STATE(5144)] = 136293, - [SMALL_STATE(5145)] = 136303, - [SMALL_STATE(5146)] = 136313, - [SMALL_STATE(5147)] = 136323, - [SMALL_STATE(5148)] = 136333, - [SMALL_STATE(5149)] = 136343, - [SMALL_STATE(5150)] = 136353, - [SMALL_STATE(5151)] = 136363, - [SMALL_STATE(5152)] = 136373, - [SMALL_STATE(5153)] = 136383, - [SMALL_STATE(5154)] = 136393, - [SMALL_STATE(5155)] = 136403, - [SMALL_STATE(5156)] = 136413, - [SMALL_STATE(5157)] = 136423, - [SMALL_STATE(5158)] = 136433, - [SMALL_STATE(5159)] = 136443, - [SMALL_STATE(5160)] = 136453, - [SMALL_STATE(5161)] = 136463, - [SMALL_STATE(5162)] = 136473, - [SMALL_STATE(5163)] = 136483, - [SMALL_STATE(5164)] = 136493, - [SMALL_STATE(5165)] = 136503, - [SMALL_STATE(5166)] = 136513, - [SMALL_STATE(5167)] = 136523, - [SMALL_STATE(5168)] = 136533, - [SMALL_STATE(5169)] = 136543, - [SMALL_STATE(5170)] = 136553, - [SMALL_STATE(5171)] = 136563, - [SMALL_STATE(5172)] = 136573, - [SMALL_STATE(5173)] = 136583, - [SMALL_STATE(5174)] = 136593, - [SMALL_STATE(5175)] = 136603, - [SMALL_STATE(5176)] = 136613, - [SMALL_STATE(5177)] = 136623, - [SMALL_STATE(5178)] = 136633, - [SMALL_STATE(5179)] = 136643, - [SMALL_STATE(5180)] = 136653, - [SMALL_STATE(5181)] = 136663, - [SMALL_STATE(5182)] = 136673, - [SMALL_STATE(5183)] = 136683, - [SMALL_STATE(5184)] = 136693, - [SMALL_STATE(5185)] = 136703, - [SMALL_STATE(5186)] = 136713, - [SMALL_STATE(5187)] = 136723, - [SMALL_STATE(5188)] = 136733, - [SMALL_STATE(5189)] = 136743, - [SMALL_STATE(5190)] = 136753, - [SMALL_STATE(5191)] = 136763, - [SMALL_STATE(5192)] = 136773, - [SMALL_STATE(5193)] = 136783, - [SMALL_STATE(5194)] = 136793, - [SMALL_STATE(5195)] = 136803, - [SMALL_STATE(5196)] = 136813, - [SMALL_STATE(5197)] = 136823, - [SMALL_STATE(5198)] = 136833, - [SMALL_STATE(5199)] = 136843, - [SMALL_STATE(5200)] = 136853, - [SMALL_STATE(5201)] = 136863, - [SMALL_STATE(5202)] = 136873, - [SMALL_STATE(5203)] = 136883, - [SMALL_STATE(5204)] = 136893, - [SMALL_STATE(5205)] = 136903, - [SMALL_STATE(5206)] = 136913, - [SMALL_STATE(5207)] = 136923, - [SMALL_STATE(5208)] = 136933, - [SMALL_STATE(5209)] = 136943, - [SMALL_STATE(5210)] = 136953, - [SMALL_STATE(5211)] = 136963, - [SMALL_STATE(5212)] = 136973, - [SMALL_STATE(5213)] = 136983, - [SMALL_STATE(5214)] = 136993, - [SMALL_STATE(5215)] = 137003, - [SMALL_STATE(5216)] = 137013, - [SMALL_STATE(5217)] = 137023, - [SMALL_STATE(5218)] = 137033, - [SMALL_STATE(5219)] = 137043, - [SMALL_STATE(5220)] = 137053, - [SMALL_STATE(5221)] = 137063, - [SMALL_STATE(5222)] = 137073, - [SMALL_STATE(5223)] = 137083, - [SMALL_STATE(5224)] = 137093, - [SMALL_STATE(5225)] = 137103, - [SMALL_STATE(5226)] = 137113, - [SMALL_STATE(5227)] = 137123, - [SMALL_STATE(5228)] = 137133, - [SMALL_STATE(5229)] = 137143, - [SMALL_STATE(5230)] = 137153, - [SMALL_STATE(5231)] = 137163, - [SMALL_STATE(5232)] = 137173, - [SMALL_STATE(5233)] = 137183, - [SMALL_STATE(5234)] = 137193, - [SMALL_STATE(5235)] = 137203, - [SMALL_STATE(5236)] = 137213, - [SMALL_STATE(5237)] = 137223, - [SMALL_STATE(5238)] = 137233, - [SMALL_STATE(5239)] = 137243, - [SMALL_STATE(5240)] = 137253, - [SMALL_STATE(5241)] = 137263, - [SMALL_STATE(5242)] = 137273, - [SMALL_STATE(5243)] = 137283, - [SMALL_STATE(5244)] = 137293, - [SMALL_STATE(5245)] = 137303, - [SMALL_STATE(5246)] = 137313, - [SMALL_STATE(5247)] = 137323, - [SMALL_STATE(5248)] = 137333, - [SMALL_STATE(5249)] = 137343, - [SMALL_STATE(5250)] = 137353, - [SMALL_STATE(5251)] = 137363, - [SMALL_STATE(5252)] = 137373, - [SMALL_STATE(5253)] = 137383, - [SMALL_STATE(5254)] = 137393, - [SMALL_STATE(5255)] = 137403, - [SMALL_STATE(5256)] = 137413, - [SMALL_STATE(5257)] = 137423, - [SMALL_STATE(5258)] = 137433, - [SMALL_STATE(5259)] = 137443, - [SMALL_STATE(5260)] = 137453, - [SMALL_STATE(5261)] = 137463, - [SMALL_STATE(5262)] = 137473, - [SMALL_STATE(5263)] = 137483, - [SMALL_STATE(5264)] = 137493, - [SMALL_STATE(5265)] = 137503, - [SMALL_STATE(5266)] = 137513, - [SMALL_STATE(5267)] = 137523, - [SMALL_STATE(5268)] = 137533, - [SMALL_STATE(5269)] = 137543, - [SMALL_STATE(5270)] = 137553, - [SMALL_STATE(5271)] = 137563, - [SMALL_STATE(5272)] = 137573, - [SMALL_STATE(5273)] = 137583, - [SMALL_STATE(5274)] = 137593, - [SMALL_STATE(5275)] = 137603, - [SMALL_STATE(5276)] = 137613, - [SMALL_STATE(5277)] = 137623, - [SMALL_STATE(5278)] = 137633, - [SMALL_STATE(5279)] = 137643, - [SMALL_STATE(5280)] = 137653, - [SMALL_STATE(5281)] = 137663, - [SMALL_STATE(5282)] = 137673, - [SMALL_STATE(5283)] = 137683, - [SMALL_STATE(5284)] = 137693, - [SMALL_STATE(5285)] = 137703, - [SMALL_STATE(5286)] = 137713, - [SMALL_STATE(5287)] = 137723, - [SMALL_STATE(5288)] = 137733, - [SMALL_STATE(5289)] = 137743, - [SMALL_STATE(5290)] = 137753, - [SMALL_STATE(5291)] = 137763, - [SMALL_STATE(5292)] = 137773, - [SMALL_STATE(5293)] = 137783, - [SMALL_STATE(5294)] = 137793, - [SMALL_STATE(5295)] = 137803, - [SMALL_STATE(5296)] = 137813, - [SMALL_STATE(5297)] = 137823, - [SMALL_STATE(5298)] = 137833, - [SMALL_STATE(5299)] = 137843, - [SMALL_STATE(5300)] = 137853, - [SMALL_STATE(5301)] = 137863, - [SMALL_STATE(5302)] = 137873, - [SMALL_STATE(5303)] = 137883, - [SMALL_STATE(5304)] = 137893, - [SMALL_STATE(5305)] = 137903, - [SMALL_STATE(5306)] = 137913, - [SMALL_STATE(5307)] = 137923, - [SMALL_STATE(5308)] = 137933, - [SMALL_STATE(5309)] = 137943, - [SMALL_STATE(5310)] = 137953, - [SMALL_STATE(5311)] = 137963, - [SMALL_STATE(5312)] = 137973, - [SMALL_STATE(5313)] = 137983, - [SMALL_STATE(5314)] = 137993, - [SMALL_STATE(5315)] = 138003, - [SMALL_STATE(5316)] = 138013, - [SMALL_STATE(5317)] = 138023, - [SMALL_STATE(5318)] = 138033, - [SMALL_STATE(5319)] = 138043, - [SMALL_STATE(5320)] = 138053, - [SMALL_STATE(5321)] = 138063, - [SMALL_STATE(5322)] = 138073, - [SMALL_STATE(5323)] = 138083, - [SMALL_STATE(5324)] = 138093, - [SMALL_STATE(5325)] = 138103, - [SMALL_STATE(5326)] = 138113, - [SMALL_STATE(5327)] = 138123, - [SMALL_STATE(5328)] = 138133, - [SMALL_STATE(5329)] = 138143, - [SMALL_STATE(5330)] = 138153, - [SMALL_STATE(5331)] = 138163, - [SMALL_STATE(5332)] = 138173, - [SMALL_STATE(5333)] = 138183, - [SMALL_STATE(5334)] = 138193, - [SMALL_STATE(5335)] = 138203, - [SMALL_STATE(5336)] = 138213, - [SMALL_STATE(5337)] = 138223, - [SMALL_STATE(5338)] = 138233, - [SMALL_STATE(5339)] = 138243, - [SMALL_STATE(5340)] = 138253, - [SMALL_STATE(5341)] = 138263, - [SMALL_STATE(5342)] = 138273, - [SMALL_STATE(5343)] = 138283, - [SMALL_STATE(5344)] = 138293, - [SMALL_STATE(5345)] = 138303, - [SMALL_STATE(5346)] = 138313, - [SMALL_STATE(5347)] = 138323, - [SMALL_STATE(5348)] = 138333, - [SMALL_STATE(5349)] = 138343, - [SMALL_STATE(5350)] = 138353, - [SMALL_STATE(5351)] = 138363, - [SMALL_STATE(5352)] = 138373, - [SMALL_STATE(5353)] = 138383, - [SMALL_STATE(5354)] = 138393, - [SMALL_STATE(5355)] = 138403, - [SMALL_STATE(5356)] = 138413, - [SMALL_STATE(5357)] = 138423, - [SMALL_STATE(5358)] = 138433, - [SMALL_STATE(5359)] = 138443, - [SMALL_STATE(5360)] = 138453, - [SMALL_STATE(5361)] = 138463, - [SMALL_STATE(5362)] = 138473, - [SMALL_STATE(5363)] = 138483, - [SMALL_STATE(5364)] = 138493, - [SMALL_STATE(5365)] = 138503, - [SMALL_STATE(5366)] = 138513, - [SMALL_STATE(5367)] = 138523, - [SMALL_STATE(5368)] = 138533, - [SMALL_STATE(5369)] = 138543, - [SMALL_STATE(5370)] = 138553, - [SMALL_STATE(5371)] = 138563, - [SMALL_STATE(5372)] = 138573, - [SMALL_STATE(5373)] = 138583, - [SMALL_STATE(5374)] = 138593, - [SMALL_STATE(5375)] = 138603, - [SMALL_STATE(5376)] = 138613, - [SMALL_STATE(5377)] = 138623, - [SMALL_STATE(5378)] = 138633, - [SMALL_STATE(5379)] = 138643, + [SMALL_STATE(1277)] = 0, + [SMALL_STATE(1278)] = 73, + [SMALL_STATE(1279)] = 212, + [SMALL_STATE(1280)] = 285, + [SMALL_STATE(1281)] = 428, + [SMALL_STATE(1282)] = 571, + [SMALL_STATE(1283)] = 644, + [SMALL_STATE(1284)] = 717, + [SMALL_STATE(1285)] = 790, + [SMALL_STATE(1286)] = 863, + [SMALL_STATE(1287)] = 936, + [SMALL_STATE(1288)] = 1009, + [SMALL_STATE(1289)] = 1082, + [SMALL_STATE(1290)] = 1155, + [SMALL_STATE(1291)] = 1294, + [SMALL_STATE(1292)] = 1367, + [SMALL_STATE(1293)] = 1444, + [SMALL_STATE(1294)] = 1517, + [SMALL_STATE(1295)] = 1590, + [SMALL_STATE(1296)] = 1663, + [SMALL_STATE(1297)] = 1736, + [SMALL_STATE(1298)] = 1809, + [SMALL_STATE(1299)] = 1882, + [SMALL_STATE(1300)] = 1955, + [SMALL_STATE(1301)] = 2028, + [SMALL_STATE(1302)] = 2171, + [SMALL_STATE(1303)] = 2244, + [SMALL_STATE(1304)] = 2317, + [SMALL_STATE(1305)] = 2390, + [SMALL_STATE(1306)] = 2463, + [SMALL_STATE(1307)] = 2536, + [SMALL_STATE(1308)] = 2609, + [SMALL_STATE(1309)] = 2752, + [SMALL_STATE(1310)] = 2825, + [SMALL_STATE(1311)] = 2898, + [SMALL_STATE(1312)] = 2971, + [SMALL_STATE(1313)] = 3110, + [SMALL_STATE(1314)] = 3183, + [SMALL_STATE(1315)] = 3256, + [SMALL_STATE(1316)] = 3329, + [SMALL_STATE(1317)] = 3402, + [SMALL_STATE(1318)] = 3475, + [SMALL_STATE(1319)] = 3548, + [SMALL_STATE(1320)] = 3621, + [SMALL_STATE(1321)] = 3694, + [SMALL_STATE(1322)] = 3783, + [SMALL_STATE(1323)] = 3856, + [SMALL_STATE(1324)] = 3941, + [SMALL_STATE(1325)] = 4014, + [SMALL_STATE(1326)] = 4093, + [SMALL_STATE(1327)] = 4166, + [SMALL_STATE(1328)] = 4241, + [SMALL_STATE(1329)] = 4314, + [SMALL_STATE(1330)] = 4413, + [SMALL_STATE(1331)] = 4486, + [SMALL_STATE(1332)] = 4587, + [SMALL_STATE(1333)] = 4660, + [SMALL_STATE(1334)] = 4763, + [SMALL_STATE(1335)] = 4836, + [SMALL_STATE(1336)] = 4927, + [SMALL_STATE(1337)] = 5000, + [SMALL_STATE(1338)] = 5073, + [SMALL_STATE(1339)] = 5146, + [SMALL_STATE(1340)] = 5229, + [SMALL_STATE(1341)] = 5302, + [SMALL_STATE(1342)] = 5395, + [SMALL_STATE(1343)] = 5468, + [SMALL_STATE(1344)] = 5563, + [SMALL_STATE(1345)] = 5636, + [SMALL_STATE(1346)] = 5733, + [SMALL_STATE(1347)] = 5806, + [SMALL_STATE(1348)] = 5879, + [SMALL_STATE(1349)] = 5952, + [SMALL_STATE(1350)] = 6025, + [SMALL_STATE(1351)] = 6098, + [SMALL_STATE(1352)] = 6171, + [SMALL_STATE(1353)] = 6244, + [SMALL_STATE(1354)] = 6317, + [SMALL_STATE(1355)] = 6395, + [SMALL_STATE(1356)] = 6469, + [SMALL_STATE(1357)] = 6547, + [SMALL_STATE(1358)] = 6695, + [SMALL_STATE(1359)] = 6769, + [SMALL_STATE(1360)] = 6847, + [SMALL_STATE(1361)] = 6987, + [SMALL_STATE(1362)] = 7064, + [SMALL_STATE(1363)] = 7141, + [SMALL_STATE(1364)] = 7212, + [SMALL_STATE(1365)] = 7349, + [SMALL_STATE(1366)] = 7428, + [SMALL_STATE(1367)] = 7503, + [SMALL_STATE(1368)] = 7574, + [SMALL_STATE(1369)] = 7711, + [SMALL_STATE(1370)] = 7848, + [SMALL_STATE(1371)] = 7985, + [SMALL_STATE(1372)] = 8122, + [SMALL_STATE(1373)] = 8199, + [SMALL_STATE(1374)] = 8276, + [SMALL_STATE(1375)] = 8349, + [SMALL_STATE(1376)] = 8422, + [SMALL_STATE(1377)] = 8556, + [SMALL_STATE(1378)] = 8630, + [SMALL_STATE(1379)] = 8764, + [SMALL_STATE(1380)] = 8834, + [SMALL_STATE(1381)] = 8904, + [SMALL_STATE(1382)] = 9046, + [SMALL_STATE(1383)] = 9186, + [SMALL_STATE(1384)] = 9320, + [SMALL_STATE(1385)] = 9390, + [SMALL_STATE(1386)] = 9460, + [SMALL_STATE(1387)] = 9602, + [SMALL_STATE(1388)] = 9672, + [SMALL_STATE(1389)] = 9742, + [SMALL_STATE(1390)] = 9818, + [SMALL_STATE(1391)] = 9952, + [SMALL_STATE(1392)] = 10086, + [SMALL_STATE(1393)] = 10160, + [SMALL_STATE(1394)] = 10245, + [SMALL_STATE(1395)] = 10332, + [SMALL_STATE(1396)] = 10401, + [SMALL_STATE(1397)] = 10488, + [SMALL_STATE(1398)] = 10557, + [SMALL_STATE(1399)] = 10639, + [SMALL_STATE(1400)] = 10711, + [SMALL_STATE(1401)] = 10785, + [SMALL_STATE(1402)] = 10869, + [SMALL_STATE(1403)] = 10951, + [SMALL_STATE(1404)] = 11022, + [SMALL_STATE(1405)] = 11089, + [SMALL_STATE(1406)] = 11160, + [SMALL_STATE(1407)] = 11285, + [SMALL_STATE(1408)] = 11418, + [SMALL_STATE(1409)] = 11543, + [SMALL_STATE(1410)] = 11624, + [SMALL_STATE(1411)] = 11705, + [SMALL_STATE(1412)] = 11776, + [SMALL_STATE(1413)] = 11845, + [SMALL_STATE(1414)] = 11914, + [SMALL_STATE(1415)] = 11994, + [SMALL_STATE(1416)] = 12062, + [SMALL_STATE(1417)] = 12132, + [SMALL_STATE(1418)] = 12202, + [SMALL_STATE(1419)] = 12270, + [SMALL_STATE(1420)] = 12336, + [SMALL_STATE(1421)] = 12402, + [SMALL_STATE(1422)] = 12467, + [SMALL_STATE(1423)] = 12536, + [SMALL_STATE(1424)] = 12665, + [SMALL_STATE(1425)] = 12794, + [SMALL_STATE(1426)] = 12863, + [SMALL_STATE(1427)] = 12988, + [SMALL_STATE(1428)] = 13117, + [SMALL_STATE(1429)] = 13184, + [SMALL_STATE(1430)] = 13251, + [SMALL_STATE(1431)] = 13316, + [SMALL_STATE(1432)] = 13445, + [SMALL_STATE(1433)] = 13510, + [SMALL_STATE(1434)] = 13589, + [SMALL_STATE(1435)] = 13653, + [SMALL_STATE(1436)] = 13719, + [SMALL_STATE(1437)] = 13783, + [SMALL_STATE(1438)] = 13849, + [SMALL_STATE(1439)] = 13913, + [SMALL_STATE(1440)] = 13981, + [SMALL_STATE(1441)] = 14049, + [SMALL_STATE(1442)] = 14114, + [SMALL_STATE(1443)] = 14213, + [SMALL_STATE(1444)] = 14312, + [SMALL_STATE(1445)] = 14375, + [SMALL_STATE(1446)] = 14438, + [SMALL_STATE(1447)] = 14509, + [SMALL_STATE(1448)] = 14572, + [SMALL_STATE(1449)] = 14643, + [SMALL_STATE(1450)] = 14708, + [SMALL_STATE(1451)] = 14802, + [SMALL_STATE(1452)] = 14864, + [SMALL_STATE(1453)] = 14962, + [SMALL_STATE(1454)] = 15032, + [SMALL_STATE(1455)] = 15102, + [SMALL_STATE(1456)] = 15196, + [SMALL_STATE(1457)] = 15294, + [SMALL_STATE(1458)] = 15356, + [SMALL_STATE(1459)] = 15422, + [SMALL_STATE(1460)] = 15516, + [SMALL_STATE(1461)] = 15588, + [SMALL_STATE(1462)] = 15654, + [SMALL_STATE(1463)] = 15716, + [SMALL_STATE(1464)] = 15783, + [SMALL_STATE(1465)] = 15846, + [SMALL_STATE(1466)] = 15913, + [SMALL_STATE(1467)] = 15980, + [SMALL_STATE(1468)] = 16047, + [SMALL_STATE(1469)] = 16114, + [SMALL_STATE(1470)] = 16181, + [SMALL_STATE(1471)] = 16248, + [SMALL_STATE(1472)] = 16315, + [SMALL_STATE(1473)] = 16382, + [SMALL_STATE(1474)] = 16449, + [SMALL_STATE(1475)] = 16514, + [SMALL_STATE(1476)] = 16577, + [SMALL_STATE(1477)] = 16640, + [SMALL_STATE(1478)] = 16711, + [SMALL_STATE(1479)] = 16778, + [SMALL_STATE(1480)] = 16843, + [SMALL_STATE(1481)] = 16910, + [SMALL_STATE(1482)] = 16974, + [SMALL_STATE(1483)] = 17038, + [SMALL_STATE(1484)] = 17102, + [SMALL_STATE(1485)] = 17166, + [SMALL_STATE(1486)] = 17230, + [SMALL_STATE(1487)] = 17292, + [SMALL_STATE(1488)] = 17352, + [SMALL_STATE(1489)] = 17414, + [SMALL_STATE(1490)] = 17478, + [SMALL_STATE(1491)] = 17538, + [SMALL_STATE(1492)] = 17602, + [SMALL_STATE(1493)] = 17662, + [SMALL_STATE(1494)] = 17722, + [SMALL_STATE(1495)] = 17786, + [SMALL_STATE(1496)] = 17850, + [SMALL_STATE(1497)] = 17910, + [SMALL_STATE(1498)] = 17974, + [SMALL_STATE(1499)] = 18038, + [SMALL_STATE(1500)] = 18100, + [SMALL_STATE(1501)] = 18187, + [SMALL_STATE(1502)] = 18280, + [SMALL_STATE(1503)] = 18341, + [SMALL_STATE(1504)] = 18404, + [SMALL_STATE(1505)] = 18463, + [SMALL_STATE(1506)] = 18550, + [SMALL_STATE(1507)] = 18643, + [SMALL_STATE(1508)] = 18704, + [SMALL_STATE(1509)] = 18795, + [SMALL_STATE(1510)] = 18882, + [SMALL_STATE(1511)] = 18969, + [SMALL_STATE(1512)] = 19028, + [SMALL_STATE(1513)] = 19087, + [SMALL_STATE(1514)] = 19146, + [SMALL_STATE(1515)] = 19209, + [SMALL_STATE(1516)] = 19270, + [SMALL_STATE(1517)] = 19333, + [SMALL_STATE(1518)] = 19394, + [SMALL_STATE(1519)] = 19455, + [SMALL_STATE(1520)] = 19518, + [SMALL_STATE(1521)] = 19605, + [SMALL_STATE(1522)] = 19692, + [SMALL_STATE(1523)] = 19779, + [SMALL_STATE(1524)] = 19842, + [SMALL_STATE(1525)] = 19905, + [SMALL_STATE(1526)] = 19968, + [SMALL_STATE(1527)] = 20055, + [SMALL_STATE(1528)] = 20118, + [SMALL_STATE(1529)] = 20177, + [SMALL_STATE(1530)] = 20240, + [SMALL_STATE(1531)] = 20316, + [SMALL_STATE(1532)] = 20398, + [SMALL_STATE(1533)] = 20482, + [SMALL_STATE(1534)] = 20562, + [SMALL_STATE(1535)] = 20642, + [SMALL_STATE(1536)] = 20716, + [SMALL_STATE(1537)] = 20796, + [SMALL_STATE(1538)] = 20876, + [SMALL_STATE(1539)] = 20956, + [SMALL_STATE(1540)] = 21036, + [SMALL_STATE(1541)] = 21116, + [SMALL_STATE(1542)] = 21192, + [SMALL_STATE(1543)] = 21266, + [SMALL_STATE(1544)] = 21340, + [SMALL_STATE(1545)] = 21412, + [SMALL_STATE(1546)] = 21480, + [SMALL_STATE(1547)] = 21546, + [SMALL_STATE(1548)] = 21610, + [SMALL_STATE(1549)] = 21672, + [SMALL_STATE(1550)] = 21758, + [SMALL_STATE(1551)] = 21842, + [SMALL_STATE(1552)] = 21930, + [SMALL_STATE(1553)] = 22016, + [SMALL_STATE(1554)] = 22106, + [SMALL_STATE(1555)] = 22194, + [SMALL_STATE(1556)] = 22272, + [SMALL_STATE(1557)] = 22348, + [SMALL_STATE(1558)] = 22420, + [SMALL_STATE(1559)] = 22490, + [SMALL_STATE(1560)] = 22570, + [SMALL_STATE(1561)] = 22648, + [SMALL_STATE(1562)] = 22730, + [SMALL_STATE(1563)] = 22810, + [SMALL_STATE(1564)] = 22894, + [SMALL_STATE(1565)] = 22976, + [SMALL_STATE(1566)] = 23056, + [SMALL_STATE(1567)] = 23132, + [SMALL_STATE(1568)] = 23212, + [SMALL_STATE(1569)] = 23286, + [SMALL_STATE(1570)] = 23354, + [SMALL_STATE(1571)] = 23418, + [SMALL_STATE(1572)] = 23504, + [SMALL_STATE(1573)] = 23592, + [SMALL_STATE(1574)] = 23672, + [SMALL_STATE(1575)] = 23762, + [SMALL_STATE(1576)] = 23840, + [SMALL_STATE(1577)] = 23920, + [SMALL_STATE(1578)] = 23992, + [SMALL_STATE(1579)] = 24072, + [SMALL_STATE(1580)] = 24154, + [SMALL_STATE(1581)] = 24238, + [SMALL_STATE(1582)] = 24312, + [SMALL_STATE(1583)] = 24384, + [SMALL_STATE(1584)] = 24450, + [SMALL_STATE(1585)] = 24512, + [SMALL_STATE(1586)] = 24596, + [SMALL_STATE(1587)] = 24682, + [SMALL_STATE(1588)] = 24770, + [SMALL_STATE(1589)] = 24846, + [SMALL_STATE(1590)] = 24916, + [SMALL_STATE(1591)] = 24994, + [SMALL_STATE(1592)] = 25074, + [SMALL_STATE(1593)] = 25156, + [SMALL_STATE(1594)] = 25232, + [SMALL_STATE(1595)] = 25306, + [SMALL_STATE(1596)] = 25380, + [SMALL_STATE(1597)] = 25452, + [SMALL_STATE(1598)] = 25520, + [SMALL_STATE(1599)] = 25586, + [SMALL_STATE(1600)] = 25650, + [SMALL_STATE(1601)] = 25712, + [SMALL_STATE(1602)] = 25798, + [SMALL_STATE(1603)] = 25882, + [SMALL_STATE(1604)] = 25970, + [SMALL_STATE(1605)] = 26056, + [SMALL_STATE(1606)] = 26146, + [SMALL_STATE(1607)] = 26234, + [SMALL_STATE(1608)] = 26312, + [SMALL_STATE(1609)] = 26392, + [SMALL_STATE(1610)] = 26464, + [SMALL_STATE(1611)] = 26534, + [SMALL_STATE(1612)] = 26614, + [SMALL_STATE(1613)] = 26692, + [SMALL_STATE(1614)] = 26774, + [SMALL_STATE(1615)] = 26854, + [SMALL_STATE(1616)] = 26938, + [SMALL_STATE(1617)] = 27020, + [SMALL_STATE(1618)] = 27100, + [SMALL_STATE(1619)] = 27180, + [SMALL_STATE(1620)] = 27254, + [SMALL_STATE(1621)] = 27326, + [SMALL_STATE(1622)] = 27392, + [SMALL_STATE(1623)] = 27454, + [SMALL_STATE(1624)] = 27538, + [SMALL_STATE(1625)] = 27624, + [SMALL_STATE(1626)] = 27712, + [SMALL_STATE(1627)] = 27788, + [SMALL_STATE(1628)] = 27858, + [SMALL_STATE(1629)] = 27936, + [SMALL_STATE(1630)] = 28016, + [SMALL_STATE(1631)] = 28098, + [SMALL_STATE(1632)] = 28178, + [SMALL_STATE(1633)] = 28238, + [SMALL_STATE(1634)] = 28298, + [SMALL_STATE(1635)] = 28378, + [SMALL_STATE(1636)] = 28438, + [SMALL_STATE(1637)] = 28518, + [SMALL_STATE(1638)] = 28598, + [SMALL_STATE(1639)] = 28678, + [SMALL_STATE(1640)] = 28758, + [SMALL_STATE(1641)] = 28838, + [SMALL_STATE(1642)] = 28918, + [SMALL_STATE(1643)] = 28998, + [SMALL_STATE(1644)] = 29078, + [SMALL_STATE(1645)] = 29158, + [SMALL_STATE(1646)] = 29238, + [SMALL_STATE(1647)] = 29318, + [SMALL_STATE(1648)] = 29398, + [SMALL_STATE(1649)] = 29470, + [SMALL_STATE(1650)] = 29540, + [SMALL_STATE(1651)] = 29604, + [SMALL_STATE(1652)] = 29664, + [SMALL_STATE(1653)] = 29746, + [SMALL_STATE(1654)] = 29830, + [SMALL_STATE(1655)] = 29916, + [SMALL_STATE(1656)] = 29990, + [SMALL_STATE(1657)] = 30058, + [SMALL_STATE(1658)] = 30134, + [SMALL_STATE(1659)] = 30212, + [SMALL_STATE(1660)] = 30292, + [SMALL_STATE(1661)] = 30372, + [SMALL_STATE(1662)] = 30460, + [SMALL_STATE(1663)] = 30540, + [SMALL_STATE(1664)] = 30620, + [SMALL_STATE(1665)] = 30696, + [SMALL_STATE(1666)] = 30776, + [SMALL_STATE(1667)] = 30836, + [SMALL_STATE(1668)] = 30910, + [SMALL_STATE(1669)] = 30978, + [SMALL_STATE(1670)] = 31042, + [SMALL_STATE(1671)] = 31122, + [SMALL_STATE(1672)] = 31202, + [SMALL_STATE(1673)] = 31288, + [SMALL_STATE(1674)] = 31376, + [SMALL_STATE(1675)] = 31456, + [SMALL_STATE(1676)] = 31546, + [SMALL_STATE(1677)] = 31626, + [SMALL_STATE(1678)] = 31706, + [SMALL_STATE(1679)] = 31784, + [SMALL_STATE(1680)] = 31844, + [SMALL_STATE(1681)] = 31924, + [SMALL_STATE(1682)] = 32004, + [SMALL_STATE(1683)] = 32084, + [SMALL_STATE(1684)] = 32156, + [SMALL_STATE(1685)] = 32236, + [SMALL_STATE(1686)] = 32324, + [SMALL_STATE(1687)] = 32404, + [SMALL_STATE(1688)] = 32484, + [SMALL_STATE(1689)] = 32564, + [SMALL_STATE(1690)] = 32644, + [SMALL_STATE(1691)] = 32724, + [SMALL_STATE(1692)] = 32804, + [SMALL_STATE(1693)] = 32884, + [SMALL_STATE(1694)] = 32964, + [SMALL_STATE(1695)] = 33051, + [SMALL_STATE(1696)] = 33128, + [SMALL_STATE(1697)] = 33215, + [SMALL_STATE(1698)] = 33286, + [SMALL_STATE(1699)] = 33359, + [SMALL_STATE(1700)] = 33430, + [SMALL_STATE(1701)] = 33517, + [SMALL_STATE(1702)] = 33604, + [SMALL_STATE(1703)] = 33691, + [SMALL_STATE(1704)] = 33778, + [SMALL_STATE(1705)] = 33849, + [SMALL_STATE(1706)] = 33918, + [SMALL_STATE(1707)] = 33981, + [SMALL_STATE(1708)] = 34040, + [SMALL_STATE(1709)] = 34121, + [SMALL_STATE(1710)] = 34204, + [SMALL_STATE(1711)] = 34289, + [SMALL_STATE(1712)] = 34362, + [SMALL_STATE(1713)] = 34429, + [SMALL_STATE(1714)] = 34504, + [SMALL_STATE(1715)] = 34591, + [SMALL_STATE(1716)] = 34668, + [SMALL_STATE(1717)] = 34747, + [SMALL_STATE(1718)] = 34834, + [SMALL_STATE(1719)] = 34921, + [SMALL_STATE(1720)] = 35008, + [SMALL_STATE(1721)] = 35095, + [SMALL_STATE(1722)] = 35165, + [SMALL_STATE(1723)] = 35229, + [SMALL_STATE(1724)] = 35289, + [SMALL_STATE(1725)] = 35371, + [SMALL_STATE(1726)] = 35453, + [SMALL_STATE(1727)] = 35523, + [SMALL_STATE(1728)] = 35605, + [SMALL_STATE(1729)] = 35667, + [SMALL_STATE(1730)] = 35731, + [SMALL_STATE(1731)] = 35791, + [SMALL_STATE(1732)] = 35855, + [SMALL_STATE(1733)] = 35925, + [SMALL_STATE(1734)] = 35995, + [SMALL_STATE(1735)] = 36066, + [SMALL_STATE(1736)] = 36133, + [SMALL_STATE(1737)] = 36190, + [SMALL_STATE(1738)] = 36257, + [SMALL_STATE(1739)] = 36312, + [SMALL_STATE(1740)] = 36375, + [SMALL_STATE(1741)] = 36430, + [SMALL_STATE(1742)] = 36497, + [SMALL_STATE(1743)] = 36552, + [SMALL_STATE(1744)] = 36631, + [SMALL_STATE(1745)] = 36710, + [SMALL_STATE(1746)] = 36789, + [SMALL_STATE(1747)] = 36868, + [SMALL_STATE(1748)] = 36935, + [SMALL_STATE(1749)] = 37002, + [SMALL_STATE(1750)] = 37069, + [SMALL_STATE(1751)] = 37124, + [SMALL_STATE(1752)] = 37179, + [SMALL_STATE(1753)] = 37234, + [SMALL_STATE(1754)] = 37293, + [SMALL_STATE(1755)] = 37372, + [SMALL_STATE(1756)] = 37435, + [SMALL_STATE(1757)] = 37496, + [SMALL_STATE(1758)] = 37553, + [SMALL_STATE(1759)] = 37612, + [SMALL_STATE(1760)] = 37693, + [SMALL_STATE(1761)] = 37772, + [SMALL_STATE(1762)] = 37841, + [SMALL_STATE(1763)] = 37904, + [SMALL_STATE(1764)] = 37965, + [SMALL_STATE(1765)] = 38036, + [SMALL_STATE(1766)] = 38115, + [SMALL_STATE(1767)] = 38186, + [SMALL_STATE(1768)] = 38265, + [SMALL_STATE(1769)] = 38344, + [SMALL_STATE(1770)] = 38415, + [SMALL_STATE(1771)] = 38494, + [SMALL_STATE(1772)] = 38575, + [SMALL_STATE(1773)] = 38634, + [SMALL_STATE(1774)] = 38713, + [SMALL_STATE(1775)] = 38772, + [SMALL_STATE(1776)] = 38831, + [SMALL_STATE(1777)] = 38902, + [SMALL_STATE(1778)] = 38980, + [SMALL_STATE(1779)] = 39038, + [SMALL_STATE(1780)] = 39106, + [SMALL_STATE(1781)] = 39174, + [SMALL_STATE(1782)] = 39242, + [SMALL_STATE(1783)] = 39302, + [SMALL_STATE(1784)] = 39380, + [SMALL_STATE(1785)] = 39438, + [SMALL_STATE(1786)] = 39506, + [SMALL_STATE(1787)] = 39574, + [SMALL_STATE(1788)] = 39652, + [SMALL_STATE(1789)] = 39730, + [SMALL_STATE(1790)] = 39788, + [SMALL_STATE(1791)] = 39842, + [SMALL_STATE(1792)] = 39896, + [SMALL_STATE(1793)] = 39950, + [SMALL_STATE(1794)] = 40004, + [SMALL_STATE(1795)] = 40058, + [SMALL_STATE(1796)] = 40112, + [SMALL_STATE(1797)] = 40190, + [SMALL_STATE(1798)] = 40268, + [SMALL_STATE(1799)] = 40324, + [SMALL_STATE(1800)] = 40402, + [SMALL_STATE(1801)] = 40470, + [SMALL_STATE(1802)] = 40548, + [SMALL_STATE(1803)] = 40626, + [SMALL_STATE(1804)] = 40680, + [SMALL_STATE(1805)] = 40734, + [SMALL_STATE(1806)] = 40790, + [SMALL_STATE(1807)] = 40868, + [SMALL_STATE(1808)] = 40924, + [SMALL_STATE(1809)] = 40980, + [SMALL_STATE(1810)] = 41036, + [SMALL_STATE(1811)] = 41092, + [SMALL_STATE(1812)] = 41170, + [SMALL_STATE(1813)] = 41238, + [SMALL_STATE(1814)] = 41292, + [SMALL_STATE(1815)] = 41370, + [SMALL_STATE(1816)] = 41435, + [SMALL_STATE(1817)] = 41488, + [SMALL_STATE(1818)] = 41553, + [SMALL_STATE(1819)] = 41618, + [SMALL_STATE(1820)] = 41669, + [SMALL_STATE(1821)] = 41724, + [SMALL_STATE(1822)] = 41775, + [SMALL_STATE(1823)] = 41828, + [SMALL_STATE(1824)] = 41879, + [SMALL_STATE(1825)] = 41932, + [SMALL_STATE(1826)] = 41997, + [SMALL_STATE(1827)] = 42050, + [SMALL_STATE(1828)] = 42101, + [SMALL_STATE(1829)] = 42156, + [SMALL_STATE(1830)] = 42211, + [SMALL_STATE(1831)] = 42268, + [SMALL_STATE(1832)] = 42319, + [SMALL_STATE(1833)] = 42376, + [SMALL_STATE(1834)] = 42441, + [SMALL_STATE(1835)] = 42494, + [SMALL_STATE(1836)] = 42547, + [SMALL_STATE(1837)] = 42612, + [SMALL_STATE(1838)] = 42663, + [SMALL_STATE(1839)] = 42728, + [SMALL_STATE(1840)] = 42783, + [SMALL_STATE(1841)] = 42836, + [SMALL_STATE(1842)] = 42889, + [SMALL_STATE(1843)] = 42954, + [SMALL_STATE(1844)] = 43019, + [SMALL_STATE(1845)] = 43084, + [SMALL_STATE(1846)] = 43149, + [SMALL_STATE(1847)] = 43214, + [SMALL_STATE(1848)] = 43267, + [SMALL_STATE(1849)] = 43330, + [SMALL_STATE(1850)] = 43395, + [SMALL_STATE(1851)] = 43460, + [SMALL_STATE(1852)] = 43525, + [SMALL_STATE(1853)] = 43590, + [SMALL_STATE(1854)] = 43655, + [SMALL_STATE(1855)] = 43718, + [SMALL_STATE(1856)] = 43783, + [SMALL_STATE(1857)] = 43848, + [SMALL_STATE(1858)] = 43913, + [SMALL_STATE(1859)] = 43978, + [SMALL_STATE(1860)] = 44043, + [SMALL_STATE(1861)] = 44108, + [SMALL_STATE(1862)] = 44173, + [SMALL_STATE(1863)] = 44238, + [SMALL_STATE(1864)] = 44303, + [SMALL_STATE(1865)] = 44355, + [SMALL_STATE(1866)] = 44407, + [SMALL_STATE(1867)] = 44459, + [SMALL_STATE(1868)] = 44511, + [SMALL_STATE(1869)] = 44563, + [SMALL_STATE(1870)] = 44617, + [SMALL_STATE(1871)] = 44671, + [SMALL_STATE(1872)] = 44733, + [SMALL_STATE(1873)] = 44785, + [SMALL_STATE(1874)] = 44847, + [SMALL_STATE(1875)] = 44907, + [SMALL_STATE(1876)] = 44967, + [SMALL_STATE(1877)] = 45027, + [SMALL_STATE(1878)] = 45079, + [SMALL_STATE(1879)] = 45131, + [SMALL_STATE(1880)] = 45183, + [SMALL_STATE(1881)] = 45235, + [SMALL_STATE(1882)] = 45287, + [SMALL_STATE(1883)] = 45339, + [SMALL_STATE(1884)] = 45391, + [SMALL_STATE(1885)] = 45443, + [SMALL_STATE(1886)] = 45495, + [SMALL_STATE(1887)] = 45555, + [SMALL_STATE(1888)] = 45607, + [SMALL_STATE(1889)] = 45659, + [SMALL_STATE(1890)] = 45711, + [SMALL_STATE(1891)] = 45763, + [SMALL_STATE(1892)] = 45815, + [SMALL_STATE(1893)] = 45867, + [SMALL_STATE(1894)] = 45919, + [SMALL_STATE(1895)] = 45971, + [SMALL_STATE(1896)] = 46022, + [SMALL_STATE(1897)] = 46073, + [SMALL_STATE(1898)] = 46132, + [SMALL_STATE(1899)] = 46183, + [SMALL_STATE(1900)] = 46234, + [SMALL_STATE(1901)] = 46293, + [SMALL_STATE(1902)] = 46352, + [SMALL_STATE(1903)] = 46451, + [SMALL_STATE(1904)] = 46510, + [SMALL_STATE(1905)] = 46565, + [SMALL_STATE(1906)] = 46616, + [SMALL_STATE(1907)] = 46667, + [SMALL_STATE(1908)] = 46726, + [SMALL_STATE(1909)] = 46785, + [SMALL_STATE(1910)] = 46844, + [SMALL_STATE(1911)] = 46895, + [SMALL_STATE(1912)] = 46946, + [SMALL_STATE(1913)] = 46997, + [SMALL_STATE(1914)] = 47048, + [SMALL_STATE(1915)] = 47107, + [SMALL_STATE(1916)] = 47158, + [SMALL_STATE(1917)] = 47209, + [SMALL_STATE(1918)] = 47260, + [SMALL_STATE(1919)] = 47311, + [SMALL_STATE(1920)] = 47368, + [SMALL_STATE(1921)] = 47427, + [SMALL_STATE(1922)] = 47486, + [SMALL_STATE(1923)] = 47537, + [SMALL_STATE(1924)] = 47592, + [SMALL_STATE(1925)] = 47643, + [SMALL_STATE(1926)] = 47702, + [SMALL_STATE(1927)] = 47753, + [SMALL_STATE(1928)] = 47804, + [SMALL_STATE(1929)] = 47859, + [SMALL_STATE(1930)] = 47910, + [SMALL_STATE(1931)] = 47969, + [SMALL_STATE(1932)] = 48020, + [SMALL_STATE(1933)] = 48079, + [SMALL_STATE(1934)] = 48134, + [SMALL_STATE(1935)] = 48185, + [SMALL_STATE(1936)] = 48244, + [SMALL_STATE(1937)] = 48294, + [SMALL_STATE(1938)] = 48350, + [SMALL_STATE(1939)] = 48400, + [SMALL_STATE(1940)] = 48452, + [SMALL_STATE(1941)] = 48502, + [SMALL_STATE(1942)] = 48558, + [SMALL_STATE(1943)] = 48612, + [SMALL_STATE(1944)] = 48664, + [SMALL_STATE(1945)] = 48760, + [SMALL_STATE(1946)] = 48814, + [SMALL_STATE(1947)] = 48864, + [SMALL_STATE(1948)] = 48916, + [SMALL_STATE(1949)] = 48966, + [SMALL_STATE(1950)] = 49016, + [SMALL_STATE(1951)] = 49070, + [SMALL_STATE(1952)] = 49122, + [SMALL_STATE(1953)] = 49218, + [SMALL_STATE(1954)] = 49272, + [SMALL_STATE(1955)] = 49326, + [SMALL_STATE(1956)] = 49376, + [SMALL_STATE(1957)] = 49429, + [SMALL_STATE(1958)] = 49482, + [SMALL_STATE(1959)] = 49535, + [SMALL_STATE(1960)] = 49588, + [SMALL_STATE(1961)] = 49641, + [SMALL_STATE(1962)] = 49690, + [SMALL_STATE(1963)] = 49743, + [SMALL_STATE(1964)] = 49796, + [SMALL_STATE(1965)] = 49849, + [SMALL_STATE(1966)] = 49902, + [SMALL_STATE(1967)] = 49953, + [SMALL_STATE(1968)] = 50006, + [SMALL_STATE(1969)] = 50057, + [SMALL_STATE(1970)] = 50110, + [SMALL_STATE(1971)] = 50159, + [SMALL_STATE(1972)] = 50214, + [SMALL_STATE(1973)] = 50267, + [SMALL_STATE(1974)] = 50320, + [SMALL_STATE(1975)] = 50375, + [SMALL_STATE(1976)] = 50428, + [SMALL_STATE(1977)] = 50481, + [SMALL_STATE(1978)] = 50534, + [SMALL_STATE(1979)] = 50587, + [SMALL_STATE(1980)] = 50636, + [SMALL_STATE(1981)] = 50687, + [SMALL_STATE(1982)] = 50736, + [SMALL_STATE(1983)] = 50787, + [SMALL_STATE(1984)] = 50840, + [SMALL_STATE(1985)] = 50893, + [SMALL_STATE(1986)] = 50946, + [SMALL_STATE(1987)] = 50999, + [SMALL_STATE(1988)] = 51052, + [SMALL_STATE(1989)] = 51101, + [SMALL_STATE(1990)] = 51196, + [SMALL_STATE(1991)] = 51249, + [SMALL_STATE(1992)] = 51302, + [SMALL_STATE(1993)] = 51351, + [SMALL_STATE(1994)] = 51402, + [SMALL_STATE(1995)] = 51453, + [SMALL_STATE(1996)] = 51502, + [SMALL_STATE(1997)] = 51555, + [SMALL_STATE(1998)] = 51610, + [SMALL_STATE(1999)] = 51667, + [SMALL_STATE(2000)] = 51716, + [SMALL_STATE(2001)] = 51769, + [SMALL_STATE(2002)] = 51822, + [SMALL_STATE(2003)] = 51917, + [SMALL_STATE(2004)] = 51968, + [SMALL_STATE(2005)] = 52023, + [SMALL_STATE(2006)] = 52078, + [SMALL_STATE(2007)] = 52138, + [SMALL_STATE(2008)] = 52186, + [SMALL_STATE(2009)] = 52234, + [SMALL_STATE(2010)] = 52280, + [SMALL_STATE(2011)] = 52328, + [SMALL_STATE(2012)] = 52382, + [SMALL_STATE(2013)] = 52430, + [SMALL_STATE(2014)] = 52482, + [SMALL_STATE(2015)] = 52532, + [SMALL_STATE(2016)] = 52580, + [SMALL_STATE(2017)] = 52634, + [SMALL_STATE(2018)] = 52686, + [SMALL_STATE(2019)] = 52740, + [SMALL_STATE(2020)] = 52796, + [SMALL_STATE(2021)] = 52846, + [SMALL_STATE(2022)] = 52898, + [SMALL_STATE(2023)] = 52950, + [SMALL_STATE(2024)] = 53002, + [SMALL_STATE(2025)] = 53054, + [SMALL_STATE(2026)] = 53102, + [SMALL_STATE(2027)] = 53152, + [SMALL_STATE(2028)] = 53200, + [SMALL_STATE(2029)] = 53254, + [SMALL_STATE(2030)] = 53308, + [SMALL_STATE(2031)] = 53364, + [SMALL_STATE(2032)] = 53412, + [SMALL_STATE(2033)] = 53464, + [SMALL_STATE(2034)] = 53516, + [SMALL_STATE(2035)] = 53582, + [SMALL_STATE(2036)] = 53630, + [SMALL_STATE(2037)] = 53694, + [SMALL_STATE(2038)] = 53752, + [SMALL_STATE(2039)] = 53804, + [SMALL_STATE(2040)] = 53858, + [SMALL_STATE(2041)] = 53906, + [SMALL_STATE(2042)] = 53982, + [SMALL_STATE(2043)] = 54060, + [SMALL_STATE(2044)] = 54110, + [SMALL_STATE(2045)] = 54190, + [SMALL_STATE(2046)] = 54258, + [SMALL_STATE(2047)] = 54320, + [SMALL_STATE(2048)] = 54390, + [SMALL_STATE(2049)] = 54462, + [SMALL_STATE(2050)] = 54536, + [SMALL_STATE(2051)] = 54584, + [SMALL_STATE(2052)] = 54634, + [SMALL_STATE(2053)] = 54682, + [SMALL_STATE(2054)] = 54734, + [SMALL_STATE(2055)] = 54800, + [SMALL_STATE(2056)] = 54864, + [SMALL_STATE(2057)] = 54918, + [SMALL_STATE(2058)] = 54980, + [SMALL_STATE(2059)] = 55038, + [SMALL_STATE(2060)] = 55094, + [SMALL_STATE(2061)] = 55148, + [SMALL_STATE(2062)] = 55200, + [SMALL_STATE(2063)] = 55276, + [SMALL_STATE(2064)] = 55350, + [SMALL_STATE(2065)] = 55428, + [SMALL_STATE(2066)] = 55504, + [SMALL_STATE(2067)] = 55584, + [SMALL_STATE(2068)] = 55662, + [SMALL_STATE(2069)] = 55730, + [SMALL_STATE(2070)] = 55796, + [SMALL_STATE(2071)] = 55858, + [SMALL_STATE(2072)] = 55918, + [SMALL_STATE(2073)] = 55988, + [SMALL_STATE(2074)] = 56056, + [SMALL_STATE(2075)] = 56128, + [SMALL_STATE(2076)] = 56198, + [SMALL_STATE(2077)] = 56272, + [SMALL_STATE(2078)] = 56344, + [SMALL_STATE(2079)] = 56410, + [SMALL_STATE(2080)] = 56474, + [SMALL_STATE(2081)] = 56532, + [SMALL_STATE(2082)] = 56586, + [SMALL_STATE(2083)] = 56662, + [SMALL_STATE(2084)] = 56712, + [SMALL_STATE(2085)] = 56790, + [SMALL_STATE(2086)] = 56840, + [SMALL_STATE(2087)] = 56920, + [SMALL_STATE(2088)] = 56970, + [SMALL_STATE(2089)] = 57038, + [SMALL_STATE(2090)] = 57100, + [SMALL_STATE(2091)] = 57170, + [SMALL_STATE(2092)] = 57242, + [SMALL_STATE(2093)] = 57316, + [SMALL_STATE(2094)] = 57366, + [SMALL_STATE(2095)] = 57430, + [SMALL_STATE(2096)] = 57492, + [SMALL_STATE(2097)] = 57548, + [SMALL_STATE(2098)] = 57600, + [SMALL_STATE(2099)] = 57674, + [SMALL_STATE(2100)] = 57728, + [SMALL_STATE(2101)] = 57804, + [SMALL_STATE(2102)] = 57882, + [SMALL_STATE(2103)] = 57948, + [SMALL_STATE(2104)] = 57996, + [SMALL_STATE(2105)] = 58064, + [SMALL_STATE(2106)] = 58134, + [SMALL_STATE(2107)] = 58206, + [SMALL_STATE(2108)] = 58272, + [SMALL_STATE(2109)] = 58336, + [SMALL_STATE(2110)] = 58400, + [SMALL_STATE(2111)] = 58462, + [SMALL_STATE(2112)] = 58520, + [SMALL_STATE(2113)] = 58576, + [SMALL_STATE(2114)] = 58630, + [SMALL_STATE(2115)] = 58684, + [SMALL_STATE(2116)] = 58736, + [SMALL_STATE(2117)] = 58812, + [SMALL_STATE(2118)] = 58886, + [SMALL_STATE(2119)] = 58964, + [SMALL_STATE(2120)] = 59040, + [SMALL_STATE(2121)] = 59094, + [SMALL_STATE(2122)] = 59174, + [SMALL_STATE(2123)] = 59252, + [SMALL_STATE(2124)] = 59320, + [SMALL_STATE(2125)] = 59386, + [SMALL_STATE(2126)] = 59448, + [SMALL_STATE(2127)] = 59508, + [SMALL_STATE(2128)] = 59562, + [SMALL_STATE(2129)] = 59632, + [SMALL_STATE(2130)] = 59700, + [SMALL_STATE(2131)] = 59772, + [SMALL_STATE(2132)] = 59842, + [SMALL_STATE(2133)] = 59916, + [SMALL_STATE(2134)] = 59988, + [SMALL_STATE(2135)] = 60038, + [SMALL_STATE(2136)] = 60088, + [SMALL_STATE(2137)] = 60152, + [SMALL_STATE(2138)] = 60214, + [SMALL_STATE(2139)] = 60270, + [SMALL_STATE(2140)] = 60322, + [SMALL_STATE(2141)] = 60396, + [SMALL_STATE(2142)] = 60472, + [SMALL_STATE(2143)] = 60550, + [SMALL_STATE(2144)] = 60616, + [SMALL_STATE(2145)] = 60676, + [SMALL_STATE(2146)] = 60744, + [SMALL_STATE(2147)] = 60814, + [SMALL_STATE(2148)] = 60886, + [SMALL_STATE(2149)] = 60934, + [SMALL_STATE(2150)] = 60982, + [SMALL_STATE(2151)] = 61036, + [SMALL_STATE(2152)] = 61088, + [SMALL_STATE(2153)] = 61136, + [SMALL_STATE(2154)] = 61190, + [SMALL_STATE(2155)] = 61254, + [SMALL_STATE(2156)] = 61301, + [SMALL_STATE(2157)] = 61380, + [SMALL_STATE(2158)] = 61427, + [SMALL_STATE(2159)] = 61474, + [SMALL_STATE(2160)] = 61521, + [SMALL_STATE(2161)] = 61568, + [SMALL_STATE(2162)] = 61615, + [SMALL_STATE(2163)] = 61662, + [SMALL_STATE(2164)] = 61709, + [SMALL_STATE(2165)] = 61756, + [SMALL_STATE(2166)] = 61803, + [SMALL_STATE(2167)] = 61850, + [SMALL_STATE(2168)] = 61897, + [SMALL_STATE(2169)] = 61944, + [SMALL_STATE(2170)] = 61991, + [SMALL_STATE(2171)] = 62038, + [SMALL_STATE(2172)] = 62085, + [SMALL_STATE(2173)] = 62132, + [SMALL_STATE(2174)] = 62177, + [SMALL_STATE(2175)] = 62256, + [SMALL_STATE(2176)] = 62303, + [SMALL_STATE(2177)] = 62350, + [SMALL_STATE(2178)] = 62397, + [SMALL_STATE(2179)] = 62444, + [SMALL_STATE(2180)] = 62491, + [SMALL_STATE(2181)] = 62538, + [SMALL_STATE(2182)] = 62585, + [SMALL_STATE(2183)] = 62632, + [SMALL_STATE(2184)] = 62679, + [SMALL_STATE(2185)] = 62728, + [SMALL_STATE(2186)] = 62777, + [SMALL_STATE(2187)] = 62824, + [SMALL_STATE(2188)] = 62871, + [SMALL_STATE(2189)] = 62918, + [SMALL_STATE(2190)] = 62965, + [SMALL_STATE(2191)] = 63044, + [SMALL_STATE(2192)] = 63123, + [SMALL_STATE(2193)] = 63170, + [SMALL_STATE(2194)] = 63217, + [SMALL_STATE(2195)] = 63264, + [SMALL_STATE(2196)] = 63311, + [SMALL_STATE(2197)] = 63390, + [SMALL_STATE(2198)] = 63469, + [SMALL_STATE(2199)] = 63516, + [SMALL_STATE(2200)] = 63563, + [SMALL_STATE(2201)] = 63610, + [SMALL_STATE(2202)] = 63657, + [SMALL_STATE(2203)] = 63704, + [SMALL_STATE(2204)] = 63751, + [SMALL_STATE(2205)] = 63798, + [SMALL_STATE(2206)] = 63849, + [SMALL_STATE(2207)] = 63896, + [SMALL_STATE(2208)] = 63943, + [SMALL_STATE(2209)] = 63991, + [SMALL_STATE(2210)] = 64047, + [SMALL_STATE(2211)] = 64119, + [SMALL_STATE(2212)] = 64211, + [SMALL_STATE(2213)] = 64271, + [SMALL_STATE(2214)] = 64319, + [SMALL_STATE(2215)] = 64393, + [SMALL_STATE(2216)] = 64485, + [SMALL_STATE(2217)] = 64533, + [SMALL_STATE(2218)] = 64581, + [SMALL_STATE(2219)] = 64643, + [SMALL_STATE(2220)] = 64707, + [SMALL_STATE(2221)] = 64773, + [SMALL_STATE(2222)] = 64821, + [SMALL_STATE(2223)] = 64869, + [SMALL_STATE(2224)] = 64937, + [SMALL_STATE(2225)] = 64985, + [SMALL_STATE(2226)] = 65041, + [SMALL_STATE(2227)] = 65089, + [SMALL_STATE(2228)] = 65153, + [SMALL_STATE(2229)] = 65211, + [SMALL_STATE(2230)] = 65271, + [SMALL_STATE(2231)] = 65323, + [SMALL_STATE(2232)] = 65369, + [SMALL_STATE(2233)] = 65439, + [SMALL_STATE(2234)] = 65511, + [SMALL_STATE(2235)] = 65559, + [SMALL_STATE(2236)] = 65625, + [SMALL_STATE(2237)] = 65699, + [SMALL_STATE(2238)] = 65761, + [SMALL_STATE(2239)] = 65853, + [SMALL_STATE(2240)] = 65923, + [SMALL_STATE(2241)] = 65981, + [SMALL_STATE(2242)] = 66029, + [SMALL_STATE(2243)] = 66097, + [SMALL_STATE(2244)] = 66149, + [SMALL_STATE(2245)] = 66241, + [SMALL_STATE(2246)] = 66289, + [SMALL_STATE(2247)] = 66362, + [SMALL_STATE(2248)] = 66435, + [SMALL_STATE(2249)] = 66508, + [SMALL_STATE(2250)] = 66581, + [SMALL_STATE(2251)] = 66654, + [SMALL_STATE(2252)] = 66727, + [SMALL_STATE(2253)] = 66772, + [SMALL_STATE(2254)] = 66823, + [SMALL_STATE(2255)] = 66873, + [SMALL_STATE(2256)] = 66919, + [SMALL_STATE(2257)] = 66965, + [SMALL_STATE(2258)] = 67051, + [SMALL_STATE(2259)] = 67101, + [SMALL_STATE(2260)] = 67151, + [SMALL_STATE(2261)] = 67201, + [SMALL_STATE(2262)] = 67244, + [SMALL_STATE(2263)] = 67287, + [SMALL_STATE(2264)] = 67336, + [SMALL_STATE(2265)] = 67385, + [SMALL_STATE(2266)] = 67434, + [SMALL_STATE(2267)] = 67477, + [SMALL_STATE(2268)] = 67526, + [SMALL_STATE(2269)] = 67569, + [SMALL_STATE(2270)] = 67612, + [SMALL_STATE(2271)] = 67655, + [SMALL_STATE(2272)] = 67698, + [SMALL_STATE(2273)] = 67747, + [SMALL_STATE(2274)] = 67792, + [SMALL_STATE(2275)] = 67835, + [SMALL_STATE(2276)] = 67882, + [SMALL_STATE(2277)] = 67933, + [SMALL_STATE(2278)] = 67982, + [SMALL_STATE(2279)] = 68027, + [SMALL_STATE(2280)] = 68073, + [SMALL_STATE(2281)] = 68115, + [SMALL_STATE(2282)] = 68195, + [SMALL_STATE(2283)] = 68239, + [SMALL_STATE(2284)] = 68281, + [SMALL_STATE(2285)] = 68359, + [SMALL_STATE(2286)] = 68439, + [SMALL_STATE(2287)] = 68480, + [SMALL_STATE(2288)] = 68525, + [SMALL_STATE(2289)] = 68570, + [SMALL_STATE(2290)] = 68614, + [SMALL_STATE(2291)] = 68658, + [SMALL_STATE(2292)] = 68698, + [SMALL_STATE(2293)] = 68780, + [SMALL_STATE(2294)] = 68862, + [SMALL_STATE(2295)] = 68906, + [SMALL_STATE(2296)] = 68950, + [SMALL_STATE(2297)] = 68995, + [SMALL_STATE(2298)] = 69071, + [SMALL_STATE(2299)] = 69115, + [SMALL_STATE(2300)] = 69157, + [SMALL_STATE(2301)] = 69233, + [SMALL_STATE(2302)] = 69279, + [SMALL_STATE(2303)] = 69325, + [SMALL_STATE(2304)] = 69401, + [SMALL_STATE(2305)] = 69477, + [SMALL_STATE(2306)] = 69553, + [SMALL_STATE(2307)] = 69629, + [SMALL_STATE(2308)] = 69705, + [SMALL_STATE(2309)] = 69751, + [SMALL_STATE(2310)] = 69803, + [SMALL_STATE(2311)] = 69879, + [SMALL_STATE(2312)] = 69955, + [SMALL_STATE(2313)] = 70031, + [SMALL_STATE(2314)] = 70107, + [SMALL_STATE(2315)] = 70183, + [SMALL_STATE(2316)] = 70259, + [SMALL_STATE(2317)] = 70335, + [SMALL_STATE(2318)] = 70411, + [SMALL_STATE(2319)] = 70487, + [SMALL_STATE(2320)] = 70563, + [SMALL_STATE(2321)] = 70639, + [SMALL_STATE(2322)] = 70715, + [SMALL_STATE(2323)] = 70791, + [SMALL_STATE(2324)] = 70867, + [SMALL_STATE(2325)] = 70943, + [SMALL_STATE(2326)] = 71019, + [SMALL_STATE(2327)] = 71095, + [SMALL_STATE(2328)] = 71171, + [SMALL_STATE(2329)] = 71247, + [SMALL_STATE(2330)] = 71296, + [SMALL_STATE(2331)] = 71347, + [SMALL_STATE(2332)] = 71396, + [SMALL_STATE(2333)] = 71445, + [SMALL_STATE(2334)] = 71484, + [SMALL_STATE(2335)] = 71530, + [SMALL_STATE(2336)] = 71578, + [SMALL_STATE(2337)] = 71626, + [SMALL_STATE(2338)] = 71696, + [SMALL_STATE(2339)] = 71766, + [SMALL_STATE(2340)] = 71836, + [SMALL_STATE(2341)] = 71906, + [SMALL_STATE(2342)] = 71976, + [SMALL_STATE(2343)] = 72046, + [SMALL_STATE(2344)] = 72086, + [SMALL_STATE(2345)] = 72126, + [SMALL_STATE(2346)] = 72180, + [SMALL_STATE(2347)] = 72228, + [SMALL_STATE(2348)] = 72274, + [SMALL_STATE(2349)] = 72320, + [SMALL_STATE(2350)] = 72366, + [SMALL_STATE(2351)] = 72436, + [SMALL_STATE(2352)] = 72506, + [SMALL_STATE(2353)] = 72576, + [SMALL_STATE(2354)] = 72646, + [SMALL_STATE(2355)] = 72716, + [SMALL_STATE(2356)] = 72786, + [SMALL_STATE(2357)] = 72825, + [SMALL_STATE(2358)] = 72870, + [SMALL_STATE(2359)] = 72915, + [SMALL_STATE(2360)] = 72960, + [SMALL_STATE(2361)] = 73005, + [SMALL_STATE(2362)] = 73056, + [SMALL_STATE(2363)] = 73093, + [SMALL_STATE(2364)] = 73146, + [SMALL_STATE(2365)] = 73183, + [SMALL_STATE(2366)] = 73222, + [SMALL_STATE(2367)] = 73273, + [SMALL_STATE(2368)] = 73320, + [SMALL_STATE(2369)] = 73371, + [SMALL_STATE(2370)] = 73405, + [SMALL_STATE(2371)] = 73443, + [SMALL_STATE(2372)] = 73477, + [SMALL_STATE(2373)] = 73525, + [SMALL_STATE(2374)] = 73573, + [SMALL_STATE(2375)] = 73621, + [SMALL_STATE(2376)] = 73669, + [SMALL_STATE(2377)] = 73719, + [SMALL_STATE(2378)] = 73761, + [SMALL_STATE(2379)] = 73807, + [SMALL_STATE(2380)] = 73841, + [SMALL_STATE(2381)] = 73875, + [SMALL_STATE(2382)] = 73911, + [SMALL_STATE(2383)] = 73945, + [SMALL_STATE(2384)] = 73995, + [SMALL_STATE(2385)] = 74031, + [SMALL_STATE(2386)] = 74065, + [SMALL_STATE(2387)] = 74099, + [SMALL_STATE(2388)] = 74133, + [SMALL_STATE(2389)] = 74171, + [SMALL_STATE(2390)] = 74221, + [SMALL_STATE(2391)] = 74259, + [SMALL_STATE(2392)] = 74299, + [SMALL_STATE(2393)] = 74339, + [SMALL_STATE(2394)] = 74379, + [SMALL_STATE(2395)] = 74413, + [SMALL_STATE(2396)] = 74451, + [SMALL_STATE(2397)] = 74489, + [SMALL_STATE(2398)] = 74524, + [SMALL_STATE(2399)] = 74559, + [SMALL_STATE(2400)] = 74594, + [SMALL_STATE(2401)] = 74629, + [SMALL_STATE(2402)] = 74666, + [SMALL_STATE(2403)] = 74699, + [SMALL_STATE(2404)] = 74732, + [SMALL_STATE(2405)] = 74779, + [SMALL_STATE(2406)] = 74830, + [SMALL_STATE(2407)] = 74877, + [SMALL_STATE(2408)] = 74916, + [SMALL_STATE(2409)] = 74953, + [SMALL_STATE(2410)] = 74992, + [SMALL_STATE(2411)] = 75033, + [SMALL_STATE(2412)] = 75070, + [SMALL_STATE(2413)] = 75109, + [SMALL_STATE(2414)] = 75148, + [SMALL_STATE(2415)] = 75187, + [SMALL_STATE(2416)] = 75226, + [SMALL_STATE(2417)] = 75265, + [SMALL_STATE(2418)] = 75306, + [SMALL_STATE(2419)] = 75353, + [SMALL_STATE(2420)] = 75390, + [SMALL_STATE(2421)] = 75427, + [SMALL_STATE(2422)] = 75474, + [SMALL_STATE(2423)] = 75507, + [SMALL_STATE(2424)] = 75542, + [SMALL_STATE(2425)] = 75589, + [SMALL_STATE(2426)] = 75627, + [SMALL_STATE(2427)] = 75659, + [SMALL_STATE(2428)] = 75699, + [SMALL_STATE(2429)] = 75735, + [SMALL_STATE(2430)] = 75767, + [SMALL_STATE(2431)] = 75805, + [SMALL_STATE(2432)] = 75851, + [SMALL_STATE(2433)] = 75885, + [SMALL_STATE(2434)] = 75923, + [SMALL_STATE(2435)] = 75955, + [SMALL_STATE(2436)] = 76003, + [SMALL_STATE(2437)] = 76051, + [SMALL_STATE(2438)] = 76087, + [SMALL_STATE(2439)] = 76121, + [SMALL_STATE(2440)] = 76161, + [SMALL_STATE(2441)] = 76199, + [SMALL_STATE(2442)] = 76233, + [SMALL_STATE(2443)] = 76271, + [SMALL_STATE(2444)] = 76303, + [SMALL_STATE(2445)] = 76341, + [SMALL_STATE(2446)] = 76377, + [SMALL_STATE(2447)] = 76413, + [SMALL_STATE(2448)] = 76449, + [SMALL_STATE(2449)] = 76483, + [SMALL_STATE(2450)] = 76515, + [SMALL_STATE(2451)] = 76551, + [SMALL_STATE(2452)] = 76585, + [SMALL_STATE(2453)] = 76619, + [SMALL_STATE(2454)] = 76651, + [SMALL_STATE(2455)] = 76683, + [SMALL_STATE(2456)] = 76717, + [SMALL_STATE(2457)] = 76755, + [SMALL_STATE(2458)] = 76795, + [SMALL_STATE(2459)] = 76833, + [SMALL_STATE(2460)] = 76865, + [SMALL_STATE(2461)] = 76897, + [SMALL_STATE(2462)] = 76945, + [SMALL_STATE(2463)] = 76983, + [SMALL_STATE(2464)] = 77014, + [SMALL_STATE(2465)] = 77045, + [SMALL_STATE(2466)] = 77086, + [SMALL_STATE(2467)] = 77119, + [SMALL_STATE(2468)] = 77150, + [SMALL_STATE(2469)] = 77195, + [SMALL_STATE(2470)] = 77240, + [SMALL_STATE(2471)] = 77285, + [SMALL_STATE(2472)] = 77330, + [SMALL_STATE(2473)] = 77361, + [SMALL_STATE(2474)] = 77398, + [SMALL_STATE(2475)] = 77435, + [SMALL_STATE(2476)] = 77470, + [SMALL_STATE(2477)] = 77503, + [SMALL_STATE(2478)] = 77534, + [SMALL_STATE(2479)] = 77569, + [SMALL_STATE(2480)] = 77608, + [SMALL_STATE(2481)] = 77653, + [SMALL_STATE(2482)] = 77686, + [SMALL_STATE(2483)] = 77723, + [SMALL_STATE(2484)] = 77758, + [SMALL_STATE(2485)] = 77787, + [SMALL_STATE(2486)] = 77816, + [SMALL_STATE(2487)] = 77851, + [SMALL_STATE(2488)] = 77882, + [SMALL_STATE(2489)] = 77913, + [SMALL_STATE(2490)] = 77946, + [SMALL_STATE(2491)] = 77977, + [SMALL_STATE(2492)] = 78008, + [SMALL_STATE(2493)] = 78039, + [SMALL_STATE(2494)] = 78070, + [SMALL_STATE(2495)] = 78101, + [SMALL_STATE(2496)] = 78138, + [SMALL_STATE(2497)] = 78169, + [SMALL_STATE(2498)] = 78204, + [SMALL_STATE(2499)] = 78243, + [SMALL_STATE(2500)] = 78282, + [SMALL_STATE(2501)] = 78311, + [SMALL_STATE(2502)] = 78343, + [SMALL_STATE(2503)] = 78373, + [SMALL_STATE(2504)] = 78403, + [SMALL_STATE(2505)] = 78433, + [SMALL_STATE(2506)] = 78465, + [SMALL_STATE(2507)] = 78493, + [SMALL_STATE(2508)] = 78525, + [SMALL_STATE(2509)] = 78561, + [SMALL_STATE(2510)] = 78601, + [SMALL_STATE(2511)] = 78637, + [SMALL_STATE(2512)] = 78687, + [SMALL_STATE(2513)] = 78719, + [SMALL_STATE(2514)] = 78771, + [SMALL_STATE(2515)] = 78799, + [SMALL_STATE(2516)] = 78837, + [SMALL_STATE(2517)] = 78867, + [SMALL_STATE(2518)] = 78901, + [SMALL_STATE(2519)] = 78933, + [SMALL_STATE(2520)] = 78963, + [SMALL_STATE(2521)] = 78993, + [SMALL_STATE(2522)] = 79023, + [SMALL_STATE(2523)] = 79053, + [SMALL_STATE(2524)] = 79085, + [SMALL_STATE(2525)] = 79113, + [SMALL_STATE(2526)] = 79145, + [SMALL_STATE(2527)] = 79179, + [SMALL_STATE(2528)] = 79213, + [SMALL_STATE(2529)] = 79251, + [SMALL_STATE(2530)] = 79303, + [SMALL_STATE(2531)] = 79355, + [SMALL_STATE(2532)] = 79383, + [SMALL_STATE(2533)] = 79421, + [SMALL_STATE(2534)] = 79455, + [SMALL_STATE(2535)] = 79489, + [SMALL_STATE(2536)] = 79541, + [SMALL_STATE(2537)] = 79569, + [SMALL_STATE(2538)] = 79597, + [SMALL_STATE(2539)] = 79627, + [SMALL_STATE(2540)] = 79657, + [SMALL_STATE(2541)] = 79693, + [SMALL_STATE(2542)] = 79729, + [SMALL_STATE(2543)] = 79761, + [SMALL_STATE(2544)] = 79799, + [SMALL_STATE(2545)] = 79829, + [SMALL_STATE(2546)] = 79859, + [SMALL_STATE(2547)] = 79889, + [SMALL_STATE(2548)] = 79919, + [SMALL_STATE(2549)] = 79955, + [SMALL_STATE(2550)] = 79991, + [SMALL_STATE(2551)] = 80027, + [SMALL_STATE(2552)] = 80059, + [SMALL_STATE(2553)] = 80091, + [SMALL_STATE(2554)] = 80121, + [SMALL_STATE(2555)] = 80157, + [SMALL_STATE(2556)] = 80189, + [SMALL_STATE(2557)] = 80225, + [SMALL_STATE(2558)] = 80257, + [SMALL_STATE(2559)] = 80289, + [SMALL_STATE(2560)] = 80321, + [SMALL_STATE(2561)] = 80359, + [SMALL_STATE(2562)] = 80390, + [SMALL_STATE(2563)] = 80427, + [SMALL_STATE(2564)] = 80454, + [SMALL_STATE(2565)] = 80487, + [SMALL_STATE(2566)] = 80518, + [SMALL_STATE(2567)] = 80555, + [SMALL_STATE(2568)] = 80582, + [SMALL_STATE(2569)] = 80609, + [SMALL_STATE(2570)] = 80646, + [SMALL_STATE(2571)] = 80673, + [SMALL_STATE(2572)] = 80700, + [SMALL_STATE(2573)] = 80727, + [SMALL_STATE(2574)] = 80758, + [SMALL_STATE(2575)] = 80787, + [SMALL_STATE(2576)] = 80822, + [SMALL_STATE(2577)] = 80851, + [SMALL_STATE(2578)] = 80886, + [SMALL_STATE(2579)] = 80917, + [SMALL_STATE(2580)] = 80954, + [SMALL_STATE(2581)] = 80991, + [SMALL_STATE(2582)] = 81028, + [SMALL_STATE(2583)] = 81057, + [SMALL_STATE(2584)] = 81086, + [SMALL_STATE(2585)] = 81115, + [SMALL_STATE(2586)] = 81146, + [SMALL_STATE(2587)] = 81181, + [SMALL_STATE(2588)] = 81208, + [SMALL_STATE(2589)] = 81243, + [SMALL_STATE(2590)] = 81280, + [SMALL_STATE(2591)] = 81309, + [SMALL_STATE(2592)] = 81340, + [SMALL_STATE(2593)] = 81371, + [SMALL_STATE(2594)] = 81402, + [SMALL_STATE(2595)] = 81433, + [SMALL_STATE(2596)] = 81470, + [SMALL_STATE(2597)] = 81507, + [SMALL_STATE(2598)] = 81540, + [SMALL_STATE(2599)] = 81577, + [SMALL_STATE(2600)] = 81604, + [SMALL_STATE(2601)] = 81639, + [SMALL_STATE(2602)] = 81666, + [SMALL_STATE(2603)] = 81693, + [SMALL_STATE(2604)] = 81724, + [SMALL_STATE(2605)] = 81751, + [SMALL_STATE(2606)] = 81782, + [SMALL_STATE(2607)] = 81809, + [SMALL_STATE(2608)] = 81838, + [SMALL_STATE(2609)] = 81869, + [SMALL_STATE(2610)] = 81902, + [SMALL_STATE(2611)] = 81929, + [SMALL_STATE(2612)] = 81958, + [SMALL_STATE(2613)] = 81987, + [SMALL_STATE(2614)] = 82018, + [SMALL_STATE(2615)] = 82051, + [SMALL_STATE(2616)] = 82088, + [SMALL_STATE(2617)] = 82119, + [SMALL_STATE(2618)] = 82152, + [SMALL_STATE(2619)] = 82185, + [SMALL_STATE(2620)] = 82216, + [SMALL_STATE(2621)] = 82247, + [SMALL_STATE(2622)] = 82278, + [SMALL_STATE(2623)] = 82307, + [SMALL_STATE(2624)] = 82336, + [SMALL_STATE(2625)] = 82371, + [SMALL_STATE(2626)] = 82402, + [SMALL_STATE(2627)] = 82431, + [SMALL_STATE(2628)] = 82460, + [SMALL_STATE(2629)] = 82491, + [SMALL_STATE(2630)] = 82518, + [SMALL_STATE(2631)] = 82547, + [SMALL_STATE(2632)] = 82580, + [SMALL_STATE(2633)] = 82611, + [SMALL_STATE(2634)] = 82642, + [SMALL_STATE(2635)] = 82679, + [SMALL_STATE(2636)] = 82710, + [SMALL_STATE(2637)] = 82741, + [SMALL_STATE(2638)] = 82772, + [SMALL_STATE(2639)] = 82803, + [SMALL_STATE(2640)] = 82834, + [SMALL_STATE(2641)] = 82865, + [SMALL_STATE(2642)] = 82902, + [SMALL_STATE(2643)] = 82931, + [SMALL_STATE(2644)] = 82960, + [SMALL_STATE(2645)] = 82996, + [SMALL_STATE(2646)] = 83032, + [SMALL_STATE(2647)] = 83060, + [SMALL_STATE(2648)] = 83098, + [SMALL_STATE(2649)] = 83142, + [SMALL_STATE(2650)] = 83170, + [SMALL_STATE(2651)] = 83198, + [SMALL_STATE(2652)] = 83226, + [SMALL_STATE(2653)] = 83254, + [SMALL_STATE(2654)] = 83286, + [SMALL_STATE(2655)] = 83318, + [SMALL_STATE(2656)] = 83352, + [SMALL_STATE(2657)] = 83378, + [SMALL_STATE(2658)] = 83406, + [SMALL_STATE(2659)] = 83438, + [SMALL_STATE(2660)] = 83474, + [SMALL_STATE(2661)] = 83510, + [SMALL_STATE(2662)] = 83540, + [SMALL_STATE(2663)] = 83584, + [SMALL_STATE(2664)] = 83614, + [SMALL_STATE(2665)] = 83644, + [SMALL_STATE(2666)] = 83674, + [SMALL_STATE(2667)] = 83702, + [SMALL_STATE(2668)] = 83732, + [SMALL_STATE(2669)] = 83768, + [SMALL_STATE(2670)] = 83798, + [SMALL_STATE(2671)] = 83828, + [SMALL_STATE(2672)] = 83858, + [SMALL_STATE(2673)] = 83902, + [SMALL_STATE(2674)] = 83938, + [SMALL_STATE(2675)] = 83968, + [SMALL_STATE(2676)] = 83998, + [SMALL_STATE(2677)] = 84026, + [SMALL_STATE(2678)] = 84054, + [SMALL_STATE(2679)] = 84082, + [SMALL_STATE(2680)] = 84116, + [SMALL_STATE(2681)] = 84144, + [SMALL_STATE(2682)] = 84180, + [SMALL_STATE(2683)] = 84208, + [SMALL_STATE(2684)] = 84242, + [SMALL_STATE(2685)] = 84286, + [SMALL_STATE(2686)] = 84322, + [SMALL_STATE(2687)] = 84354, + [SMALL_STATE(2688)] = 84386, + [SMALL_STATE(2689)] = 84418, + [SMALL_STATE(2690)] = 84450, + [SMALL_STATE(2691)] = 84482, + [SMALL_STATE(2692)] = 84516, + [SMALL_STATE(2693)] = 84560, + [SMALL_STATE(2694)] = 84590, + [SMALL_STATE(2695)] = 84624, + [SMALL_STATE(2696)] = 84658, + [SMALL_STATE(2697)] = 84694, + [SMALL_STATE(2698)] = 84728, + [SMALL_STATE(2699)] = 84758, + [SMALL_STATE(2700)] = 84786, + [SMALL_STATE(2701)] = 84822, + [SMALL_STATE(2702)] = 84852, + [SMALL_STATE(2703)] = 84880, + [SMALL_STATE(2704)] = 84916, + [SMALL_STATE(2705)] = 84944, + [SMALL_STATE(2706)] = 84974, + [SMALL_STATE(2707)] = 85004, + [SMALL_STATE(2708)] = 85032, + [SMALL_STATE(2709)] = 85068, + [SMALL_STATE(2710)] = 85098, + [SMALL_STATE(2711)] = 85134, + [SMALL_STATE(2712)] = 85162, + [SMALL_STATE(2713)] = 85192, + [SMALL_STATE(2714)] = 85220, + [SMALL_STATE(2715)] = 85252, + [SMALL_STATE(2716)] = 85281, + [SMALL_STATE(2717)] = 85312, + [SMALL_STATE(2718)] = 85339, + [SMALL_STATE(2719)] = 85370, + [SMALL_STATE(2720)] = 85403, + [SMALL_STATE(2721)] = 85430, + [SMALL_STATE(2722)] = 85461, + [SMALL_STATE(2723)] = 85496, + [SMALL_STATE(2724)] = 85531, + [SMALL_STATE(2725)] = 85566, + [SMALL_STATE(2726)] = 85601, + [SMALL_STATE(2727)] = 85636, + [SMALL_STATE(2728)] = 85671, + [SMALL_STATE(2729)] = 85698, + [SMALL_STATE(2730)] = 85731, + [SMALL_STATE(2731)] = 85762, + [SMALL_STATE(2732)] = 85795, + [SMALL_STATE(2733)] = 85824, + [SMALL_STATE(2734)] = 85855, + [SMALL_STATE(2735)] = 85886, + [SMALL_STATE(2736)] = 85919, + [SMALL_STATE(2737)] = 85954, + [SMALL_STATE(2738)] = 85985, + [SMALL_STATE(2739)] = 86016, + [SMALL_STATE(2740)] = 86047, + [SMALL_STATE(2741)] = 86078, + [SMALL_STATE(2742)] = 86111, + [SMALL_STATE(2743)] = 86142, + [SMALL_STATE(2744)] = 86169, + [SMALL_STATE(2745)] = 86196, + [SMALL_STATE(2746)] = 86225, + [SMALL_STATE(2747)] = 86252, + [SMALL_STATE(2748)] = 86279, + [SMALL_STATE(2749)] = 86308, + [SMALL_STATE(2750)] = 86337, + [SMALL_STATE(2751)] = 86368, + [SMALL_STATE(2752)] = 86399, + [SMALL_STATE(2753)] = 86426, + [SMALL_STATE(2754)] = 86453, + [SMALL_STATE(2755)] = 86480, + [SMALL_STATE(2756)] = 86507, + [SMALL_STATE(2757)] = 86538, + [SMALL_STATE(2758)] = 86569, + [SMALL_STATE(2759)] = 86600, + [SMALL_STATE(2760)] = 86631, + [SMALL_STATE(2761)] = 86662, + [SMALL_STATE(2762)] = 86691, + [SMALL_STATE(2763)] = 86722, + [SMALL_STATE(2764)] = 86753, + [SMALL_STATE(2765)] = 86786, + [SMALL_STATE(2766)] = 86819, + [SMALL_STATE(2767)] = 86850, + [SMALL_STATE(2768)] = 86881, + [SMALL_STATE(2769)] = 86912, + [SMALL_STATE(2770)] = 86943, + [SMALL_STATE(2771)] = 86970, + [SMALL_STATE(2772)] = 87003, + [SMALL_STATE(2773)] = 87034, + [SMALL_STATE(2774)] = 87061, + [SMALL_STATE(2775)] = 87092, + [SMALL_STATE(2776)] = 87123, + [SMALL_STATE(2777)] = 87156, + [SMALL_STATE(2778)] = 87183, + [SMALL_STATE(2779)] = 87208, + [SMALL_STATE(2780)] = 87241, + [SMALL_STATE(2781)] = 87272, + [SMALL_STATE(2782)] = 87299, + [SMALL_STATE(2783)] = 87326, + [SMALL_STATE(2784)] = 87357, + [SMALL_STATE(2785)] = 87384, + [SMALL_STATE(2786)] = 87419, + [SMALL_STATE(2787)] = 87454, + [SMALL_STATE(2788)] = 87487, + [SMALL_STATE(2789)] = 87512, + [SMALL_STATE(2790)] = 87543, + [SMALL_STATE(2791)] = 87574, + [SMALL_STATE(2792)] = 87605, + [SMALL_STATE(2793)] = 87632, + [SMALL_STATE(2794)] = 87663, + [SMALL_STATE(2795)] = 87694, + [SMALL_STATE(2796)] = 87721, + [SMALL_STATE(2797)] = 87748, + [SMALL_STATE(2798)] = 87785, + [SMALL_STATE(2799)] = 87814, + [SMALL_STATE(2800)] = 87847, + [SMALL_STATE(2801)] = 87878, + [SMALL_STATE(2802)] = 87905, + [SMALL_STATE(2803)] = 87934, + [SMALL_STATE(2804)] = 87965, + [SMALL_STATE(2805)] = 87998, + [SMALL_STATE(2806)] = 88029, + [SMALL_STATE(2807)] = 88060, + [SMALL_STATE(2808)] = 88089, + [SMALL_STATE(2809)] = 88122, + [SMALL_STATE(2810)] = 88157, + [SMALL_STATE(2811)] = 88184, + [SMALL_STATE(2812)] = 88217, + [SMALL_STATE(2813)] = 88250, + [SMALL_STATE(2814)] = 88281, + [SMALL_STATE(2815)] = 88312, + [SMALL_STATE(2816)] = 88345, + [SMALL_STATE(2817)] = 88370, + [SMALL_STATE(2818)] = 88395, + [SMALL_STATE(2819)] = 88422, + [SMALL_STATE(2820)] = 88453, + [SMALL_STATE(2821)] = 88480, + [SMALL_STATE(2822)] = 88509, + [SMALL_STATE(2823)] = 88538, + [SMALL_STATE(2824)] = 88569, + [SMALL_STATE(2825)] = 88600, + [SMALL_STATE(2826)] = 88627, + [SMALL_STATE(2827)] = 88654, + [SMALL_STATE(2828)] = 88681, + [SMALL_STATE(2829)] = 88708, + [SMALL_STATE(2830)] = 88735, + [SMALL_STATE(2831)] = 88766, + [SMALL_STATE(2832)] = 88797, + [SMALL_STATE(2833)] = 88828, + [SMALL_STATE(2834)] = 88857, + [SMALL_STATE(2835)] = 88886, + [SMALL_STATE(2836)] = 88911, + [SMALL_STATE(2837)] = 88944, + [SMALL_STATE(2838)] = 88977, + [SMALL_STATE(2839)] = 89008, + [SMALL_STATE(2840)] = 89039, + [SMALL_STATE(2841)] = 89066, + [SMALL_STATE(2842)] = 89097, + [SMALL_STATE(2843)] = 89122, + [SMALL_STATE(2844)] = 89153, + [SMALL_STATE(2845)] = 89180, + [SMALL_STATE(2846)] = 89207, + [SMALL_STATE(2847)] = 89238, + [SMALL_STATE(2848)] = 89267, + [SMALL_STATE(2849)] = 89294, + [SMALL_STATE(2850)] = 89319, + [SMALL_STATE(2851)] = 89352, + [SMALL_STATE(2852)] = 89379, + [SMALL_STATE(2853)] = 89408, + [SMALL_STATE(2854)] = 89435, + [SMALL_STATE(2855)] = 89462, + [SMALL_STATE(2856)] = 89495, + [SMALL_STATE(2857)] = 89528, + [SMALL_STATE(2858)] = 89555, + [SMALL_STATE(2859)] = 89586, + [SMALL_STATE(2860)] = 89619, + [SMALL_STATE(2861)] = 89650, + [SMALL_STATE(2862)] = 89681, + [SMALL_STATE(2863)] = 89716, + [SMALL_STATE(2864)] = 89747, + [SMALL_STATE(2865)] = 89780, + [SMALL_STATE(2866)] = 89807, + [SMALL_STATE(2867)] = 89838, + [SMALL_STATE(2868)] = 89871, + [SMALL_STATE(2869)] = 89902, + [SMALL_STATE(2870)] = 89935, + [SMALL_STATE(2871)] = 89960, + [SMALL_STATE(2872)] = 89985, + [SMALL_STATE(2873)] = 90012, + [SMALL_STATE(2874)] = 90039, + [SMALL_STATE(2875)] = 90064, + [SMALL_STATE(2876)] = 90093, + [SMALL_STATE(2877)] = 90118, + [SMALL_STATE(2878)] = 90143, + [SMALL_STATE(2879)] = 90170, + [SMALL_STATE(2880)] = 90199, + [SMALL_STATE(2881)] = 90226, + [SMALL_STATE(2882)] = 90255, + [SMALL_STATE(2883)] = 90280, + [SMALL_STATE(2884)] = 90307, + [SMALL_STATE(2885)] = 90334, + [SMALL_STATE(2886)] = 90363, + [SMALL_STATE(2887)] = 90394, + [SMALL_STATE(2888)] = 90425, + [SMALL_STATE(2889)] = 90458, + [SMALL_STATE(2890)] = 90485, + [SMALL_STATE(2891)] = 90516, + [SMALL_STATE(2892)] = 90543, + [SMALL_STATE(2893)] = 90572, + [SMALL_STATE(2894)] = 90603, + [SMALL_STATE(2895)] = 90632, + [SMALL_STATE(2896)] = 90661, + [SMALL_STATE(2897)] = 90690, + [SMALL_STATE(2898)] = 90719, + [SMALL_STATE(2899)] = 90744, + [SMALL_STATE(2900)] = 90769, + [SMALL_STATE(2901)] = 90796, + [SMALL_STATE(2902)] = 90823, + [SMALL_STATE(2903)] = 90850, + [SMALL_STATE(2904)] = 90877, + [SMALL_STATE(2905)] = 90906, + [SMALL_STATE(2906)] = 90935, + [SMALL_STATE(2907)] = 90962, + [SMALL_STATE(2908)] = 90994, + [SMALL_STATE(2909)] = 91022, + [SMALL_STATE(2910)] = 91054, + [SMALL_STATE(2911)] = 91082, + [SMALL_STATE(2912)] = 91112, + [SMALL_STATE(2913)] = 91136, + [SMALL_STATE(2914)] = 91166, + [SMALL_STATE(2915)] = 91192, + [SMALL_STATE(2916)] = 91216, + [SMALL_STATE(2917)] = 91244, + [SMALL_STATE(2918)] = 91270, + [SMALL_STATE(2919)] = 91302, + [SMALL_STATE(2920)] = 91328, + [SMALL_STATE(2921)] = 91354, + [SMALL_STATE(2922)] = 91378, + [SMALL_STATE(2923)] = 91404, + [SMALL_STATE(2924)] = 91436, + [SMALL_STATE(2925)] = 91460, + [SMALL_STATE(2926)] = 91484, + [SMALL_STATE(2927)] = 91536, + [SMALL_STATE(2928)] = 91564, + [SMALL_STATE(2929)] = 91588, + [SMALL_STATE(2930)] = 91616, + [SMALL_STATE(2931)] = 91668, + [SMALL_STATE(2932)] = 91720, + [SMALL_STATE(2933)] = 91750, + [SMALL_STATE(2934)] = 91778, + [SMALL_STATE(2935)] = 91802, + [SMALL_STATE(2936)] = 91854, + [SMALL_STATE(2937)] = 91880, + [SMALL_STATE(2938)] = 91906, + [SMALL_STATE(2939)] = 91934, + [SMALL_STATE(2940)] = 91964, + [SMALL_STATE(2941)] = 91994, + [SMALL_STATE(2942)] = 92020, + [SMALL_STATE(2943)] = 92044, + [SMALL_STATE(2944)] = 92074, + [SMALL_STATE(2945)] = 92114, + [SMALL_STATE(2946)] = 92146, + [SMALL_STATE(2947)] = 92170, + [SMALL_STATE(2948)] = 92198, + [SMALL_STATE(2949)] = 92224, + [SMALL_STATE(2950)] = 92256, + [SMALL_STATE(2951)] = 92286, + [SMALL_STATE(2952)] = 92318, + [SMALL_STATE(2953)] = 92344, + [SMALL_STATE(2954)] = 92372, + [SMALL_STATE(2955)] = 92400, + [SMALL_STATE(2956)] = 92428, + [SMALL_STATE(2957)] = 92454, + [SMALL_STATE(2958)] = 92480, + [SMALL_STATE(2959)] = 92510, + [SMALL_STATE(2960)] = 92540, + [SMALL_STATE(2961)] = 92566, + [SMALL_STATE(2962)] = 92592, + [SMALL_STATE(2963)] = 92644, + [SMALL_STATE(2964)] = 92672, + [SMALL_STATE(2965)] = 92702, + [SMALL_STATE(2966)] = 92732, + [SMALL_STATE(2967)] = 92758, + [SMALL_STATE(2968)] = 92784, + [SMALL_STATE(2969)] = 92836, + [SMALL_STATE(2970)] = 92866, + [SMALL_STATE(2971)] = 92898, + [SMALL_STATE(2972)] = 92926, + [SMALL_STATE(2973)] = 92958, + [SMALL_STATE(2974)] = 92984, + [SMALL_STATE(2975)] = 93010, + [SMALL_STATE(2976)] = 93038, + [SMALL_STATE(2977)] = 93064, + [SMALL_STATE(2978)] = 93092, + [SMALL_STATE(2979)] = 93116, + [SMALL_STATE(2980)] = 93140, + [SMALL_STATE(2981)] = 93166, + [SMALL_STATE(2982)] = 93192, + [SMALL_STATE(2983)] = 93224, + [SMALL_STATE(2984)] = 93250, + [SMALL_STATE(2985)] = 93278, + [SMALL_STATE(2986)] = 93306, + [SMALL_STATE(2987)] = 93334, + [SMALL_STATE(2988)] = 93360, + [SMALL_STATE(2989)] = 93390, + [SMALL_STATE(2990)] = 93420, + [SMALL_STATE(2991)] = 93472, + [SMALL_STATE(2992)] = 93498, + [SMALL_STATE(2993)] = 93528, + [SMALL_STATE(2994)] = 93554, + [SMALL_STATE(2995)] = 93584, + [SMALL_STATE(2996)] = 93610, + [SMALL_STATE(2997)] = 93634, + [SMALL_STATE(2998)] = 93660, + [SMALL_STATE(2999)] = 93690, + [SMALL_STATE(3000)] = 93720, + [SMALL_STATE(3001)] = 93750, + [SMALL_STATE(3002)] = 93780, + [SMALL_STATE(3003)] = 93812, + [SMALL_STATE(3004)] = 93842, + [SMALL_STATE(3005)] = 93868, + [SMALL_STATE(3006)] = 93892, + [SMALL_STATE(3007)] = 93944, + [SMALL_STATE(3008)] = 93996, + [SMALL_STATE(3009)] = 94026, + [SMALL_STATE(3010)] = 94050, + [SMALL_STATE(3011)] = 94078, + [SMALL_STATE(3012)] = 94108, + [SMALL_STATE(3013)] = 94152, + [SMALL_STATE(3014)] = 94176, + [SMALL_STATE(3015)] = 94204, + [SMALL_STATE(3016)] = 94234, + [SMALL_STATE(3017)] = 94260, + [SMALL_STATE(3018)] = 94290, + [SMALL_STATE(3019)] = 94336, + [SMALL_STATE(3020)] = 94366, + [SMALL_STATE(3021)] = 94396, + [SMALL_STATE(3022)] = 94420, + [SMALL_STATE(3023)] = 94446, + [SMALL_STATE(3024)] = 94498, + [SMALL_STATE(3025)] = 94528, + [SMALL_STATE(3026)] = 94556, + [SMALL_STATE(3027)] = 94586, + [SMALL_STATE(3028)] = 94614, + [SMALL_STATE(3029)] = 94644, + [SMALL_STATE(3030)] = 94670, + [SMALL_STATE(3031)] = 94702, + [SMALL_STATE(3032)] = 94726, + [SMALL_STATE(3033)] = 94752, + [SMALL_STATE(3034)] = 94776, + [SMALL_STATE(3035)] = 94801, + [SMALL_STATE(3036)] = 94826, + [SMALL_STATE(3037)] = 94851, + [SMALL_STATE(3038)] = 94876, + [SMALL_STATE(3039)] = 94901, + [SMALL_STATE(3040)] = 94926, + [SMALL_STATE(3041)] = 94963, + [SMALL_STATE(3042)] = 94988, + [SMALL_STATE(3043)] = 95013, + [SMALL_STATE(3044)] = 95038, + [SMALL_STATE(3045)] = 95063, + [SMALL_STATE(3046)] = 95092, + [SMALL_STATE(3047)] = 95117, + [SMALL_STATE(3048)] = 95142, + [SMALL_STATE(3049)] = 95167, + [SMALL_STATE(3050)] = 95196, + [SMALL_STATE(3051)] = 95221, + [SMALL_STATE(3052)] = 95250, + [SMALL_STATE(3053)] = 95275, + [SMALL_STATE(3054)] = 95300, + [SMALL_STATE(3055)] = 95329, + [SMALL_STATE(3056)] = 95372, + [SMALL_STATE(3057)] = 95397, + [SMALL_STATE(3058)] = 95422, + [SMALL_STATE(3059)] = 95447, + [SMALL_STATE(3060)] = 95472, + [SMALL_STATE(3061)] = 95497, + [SMALL_STATE(3062)] = 95522, + [SMALL_STATE(3063)] = 95547, + [SMALL_STATE(3064)] = 95572, + [SMALL_STATE(3065)] = 95597, + [SMALL_STATE(3066)] = 95622, + [SMALL_STATE(3067)] = 95647, + [SMALL_STATE(3068)] = 95672, + [SMALL_STATE(3069)] = 95697, + [SMALL_STATE(3070)] = 95722, + [SMALL_STATE(3071)] = 95751, + [SMALL_STATE(3072)] = 95780, + [SMALL_STATE(3073)] = 95809, + [SMALL_STATE(3074)] = 95832, + [SMALL_STATE(3075)] = 95857, + [SMALL_STATE(3076)] = 95882, + [SMALL_STATE(3077)] = 95911, + [SMALL_STATE(3078)] = 95936, + [SMALL_STATE(3079)] = 95961, + [SMALL_STATE(3080)] = 95990, + [SMALL_STATE(3081)] = 96019, + [SMALL_STATE(3082)] = 96048, + [SMALL_STATE(3083)] = 96071, + [SMALL_STATE(3084)] = 96100, + [SMALL_STATE(3085)] = 96125, + [SMALL_STATE(3086)] = 96150, + [SMALL_STATE(3087)] = 96179, + [SMALL_STATE(3088)] = 96208, + [SMALL_STATE(3089)] = 96231, + [SMALL_STATE(3090)] = 96258, + [SMALL_STATE(3091)] = 96281, + [SMALL_STATE(3092)] = 96310, + [SMALL_STATE(3093)] = 96333, + [SMALL_STATE(3094)] = 96362, + [SMALL_STATE(3095)] = 96391, + [SMALL_STATE(3096)] = 96420, + [SMALL_STATE(3097)] = 96449, + [SMALL_STATE(3098)] = 96478, + [SMALL_STATE(3099)] = 96507, + [SMALL_STATE(3100)] = 96536, + [SMALL_STATE(3101)] = 96579, + [SMALL_STATE(3102)] = 96608, + [SMALL_STATE(3103)] = 96637, + [SMALL_STATE(3104)] = 96664, + [SMALL_STATE(3105)] = 96689, + [SMALL_STATE(3106)] = 96718, + [SMALL_STATE(3107)] = 96747, + [SMALL_STATE(3108)] = 96776, + [SMALL_STATE(3109)] = 96805, + [SMALL_STATE(3110)] = 96834, + [SMALL_STATE(3111)] = 96863, + [SMALL_STATE(3112)] = 96892, + [SMALL_STATE(3113)] = 96921, + [SMALL_STATE(3114)] = 96950, + [SMALL_STATE(3115)] = 96979, + [SMALL_STATE(3116)] = 97008, + [SMALL_STATE(3117)] = 97047, + [SMALL_STATE(3118)] = 97076, + [SMALL_STATE(3119)] = 97103, + [SMALL_STATE(3120)] = 97132, + [SMALL_STATE(3121)] = 97161, + [SMALL_STATE(3122)] = 97186, + [SMALL_STATE(3123)] = 97217, + [SMALL_STATE(3124)] = 97242, + [SMALL_STATE(3125)] = 97267, + [SMALL_STATE(3126)] = 97298, + [SMALL_STATE(3127)] = 97321, + [SMALL_STATE(3128)] = 97344, + [SMALL_STATE(3129)] = 97367, + [SMALL_STATE(3130)] = 97392, + [SMALL_STATE(3131)] = 97417, + [SMALL_STATE(3132)] = 97442, + [SMALL_STATE(3133)] = 97467, + [SMALL_STATE(3134)] = 97492, + [SMALL_STATE(3135)] = 97517, + [SMALL_STATE(3136)] = 97542, + [SMALL_STATE(3137)] = 97567, + [SMALL_STATE(3138)] = 97592, + [SMALL_STATE(3139)] = 97617, + [SMALL_STATE(3140)] = 97642, + [SMALL_STATE(3141)] = 97671, + [SMALL_STATE(3142)] = 97694, + [SMALL_STATE(3143)] = 97719, + [SMALL_STATE(3144)] = 97748, + [SMALL_STATE(3145)] = 97771, + [SMALL_STATE(3146)] = 97794, + [SMALL_STATE(3147)] = 97819, + [SMALL_STATE(3148)] = 97842, + [SMALL_STATE(3149)] = 97865, + [SMALL_STATE(3150)] = 97890, + [SMALL_STATE(3151)] = 97917, + [SMALL_STATE(3152)] = 97940, + [SMALL_STATE(3153)] = 97963, + [SMALL_STATE(3154)] = 97992, + [SMALL_STATE(3155)] = 98021, + [SMALL_STATE(3156)] = 98050, + [SMALL_STATE(3157)] = 98073, + [SMALL_STATE(3158)] = 98100, + [SMALL_STATE(3159)] = 98129, + [SMALL_STATE(3160)] = 98158, + [SMALL_STATE(3161)] = 98181, + [SMALL_STATE(3162)] = 98204, + [SMALL_STATE(3163)] = 98227, + [SMALL_STATE(3164)] = 98256, + [SMALL_STATE(3165)] = 98285, + [SMALL_STATE(3166)] = 98314, + [SMALL_STATE(3167)] = 98343, + [SMALL_STATE(3168)] = 98372, + [SMALL_STATE(3169)] = 98401, + [SMALL_STATE(3170)] = 98430, + [SMALL_STATE(3171)] = 98459, + [SMALL_STATE(3172)] = 98488, + [SMALL_STATE(3173)] = 98511, + [SMALL_STATE(3174)] = 98548, + [SMALL_STATE(3175)] = 98571, + [SMALL_STATE(3176)] = 98600, + [SMALL_STATE(3177)] = 98631, + [SMALL_STATE(3178)] = 98658, + [SMALL_STATE(3179)] = 98683, + [SMALL_STATE(3180)] = 98708, + [SMALL_STATE(3181)] = 98733, + [SMALL_STATE(3182)] = 98756, + [SMALL_STATE(3183)] = 98785, + [SMALL_STATE(3184)] = 98812, + [SMALL_STATE(3185)] = 98837, + [SMALL_STATE(3186)] = 98862, + [SMALL_STATE(3187)] = 98889, + [SMALL_STATE(3188)] = 98916, + [SMALL_STATE(3189)] = 98941, + [SMALL_STATE(3190)] = 98970, + [SMALL_STATE(3191)] = 98997, + [SMALL_STATE(3192)] = 99026, + [SMALL_STATE(3193)] = 99051, + [SMALL_STATE(3194)] = 99076, + [SMALL_STATE(3195)] = 99101, + [SMALL_STATE(3196)] = 99126, + [SMALL_STATE(3197)] = 99157, + [SMALL_STATE(3198)] = 99180, + [SMALL_STATE(3199)] = 99207, + [SMALL_STATE(3200)] = 99234, + [SMALL_STATE(3201)] = 99259, + [SMALL_STATE(3202)] = 99284, + [SMALL_STATE(3203)] = 99309, + [SMALL_STATE(3204)] = 99334, + [SMALL_STATE(3205)] = 99363, + [SMALL_STATE(3206)] = 99392, + [SMALL_STATE(3207)] = 99415, + [SMALL_STATE(3208)] = 99440, + [SMALL_STATE(3209)] = 99469, + [SMALL_STATE(3210)] = 99494, + [SMALL_STATE(3211)] = 99519, + [SMALL_STATE(3212)] = 99544, + [SMALL_STATE(3213)] = 99569, + [SMALL_STATE(3214)] = 99594, + [SMALL_STATE(3215)] = 99619, + [SMALL_STATE(3216)] = 99644, + [SMALL_STATE(3217)] = 99667, + [SMALL_STATE(3218)] = 99690, + [SMALL_STATE(3219)] = 99715, + [SMALL_STATE(3220)] = 99740, + [SMALL_STATE(3221)] = 99765, + [SMALL_STATE(3222)] = 99790, + [SMALL_STATE(3223)] = 99815, + [SMALL_STATE(3224)] = 99840, + [SMALL_STATE(3225)] = 99865, + [SMALL_STATE(3226)] = 99888, + [SMALL_STATE(3227)] = 99913, + [SMALL_STATE(3228)] = 99936, + [SMALL_STATE(3229)] = 99961, + [SMALL_STATE(3230)] = 99986, + [SMALL_STATE(3231)] = 100011, + [SMALL_STATE(3232)] = 100036, + [SMALL_STATE(3233)] = 100073, + [SMALL_STATE(3234)] = 100098, + [SMALL_STATE(3235)] = 100123, + [SMALL_STATE(3236)] = 100148, + [SMALL_STATE(3237)] = 100177, + [SMALL_STATE(3238)] = 100202, + [SMALL_STATE(3239)] = 100231, + [SMALL_STATE(3240)] = 100256, + [SMALL_STATE(3241)] = 100285, + [SMALL_STATE(3242)] = 100310, + [SMALL_STATE(3243)] = 100332, + [SMALL_STATE(3244)] = 100374, + [SMALL_STATE(3245)] = 100420, + [SMALL_STATE(3246)] = 100442, + [SMALL_STATE(3247)] = 100476, + [SMALL_STATE(3248)] = 100498, + [SMALL_STATE(3249)] = 100538, + [SMALL_STATE(3250)] = 100560, + [SMALL_STATE(3251)] = 100584, + [SMALL_STATE(3252)] = 100608, + [SMALL_STATE(3253)] = 100632, + [SMALL_STATE(3254)] = 100656, + [SMALL_STATE(3255)] = 100678, + [SMALL_STATE(3256)] = 100702, + [SMALL_STATE(3257)] = 100742, + [SMALL_STATE(3258)] = 100764, + [SMALL_STATE(3259)] = 100798, + [SMALL_STATE(3260)] = 100832, + [SMALL_STATE(3261)] = 100866, + [SMALL_STATE(3262)] = 100890, + [SMALL_STATE(3263)] = 100914, + [SMALL_STATE(3264)] = 100936, + [SMALL_STATE(3265)] = 100958, + [SMALL_STATE(3266)] = 100980, + [SMALL_STATE(3267)] = 101002, + [SMALL_STATE(3268)] = 101026, + [SMALL_STATE(3269)] = 101050, + [SMALL_STATE(3270)] = 101074, + [SMALL_STATE(3271)] = 101098, + [SMALL_STATE(3272)] = 101122, + [SMALL_STATE(3273)] = 101146, + [SMALL_STATE(3274)] = 101170, + [SMALL_STATE(3275)] = 101194, + [SMALL_STATE(3276)] = 101218, + [SMALL_STATE(3277)] = 101242, + [SMALL_STATE(3278)] = 101266, + [SMALL_STATE(3279)] = 101290, + [SMALL_STATE(3280)] = 101316, + [SMALL_STATE(3281)] = 101356, + [SMALL_STATE(3282)] = 101380, + [SMALL_STATE(3283)] = 101416, + [SMALL_STATE(3284)] = 101440, + [SMALL_STATE(3285)] = 101476, + [SMALL_STATE(3286)] = 101500, + [SMALL_STATE(3287)] = 101524, + [SMALL_STATE(3288)] = 101548, + [SMALL_STATE(3289)] = 101572, + [SMALL_STATE(3290)] = 101596, + [SMALL_STATE(3291)] = 101642, + [SMALL_STATE(3292)] = 101666, + [SMALL_STATE(3293)] = 101690, + [SMALL_STATE(3294)] = 101714, + [SMALL_STATE(3295)] = 101736, + [SMALL_STATE(3296)] = 101760, + [SMALL_STATE(3297)] = 101784, + [SMALL_STATE(3298)] = 101806, + [SMALL_STATE(3299)] = 101828, + [SMALL_STATE(3300)] = 101852, + [SMALL_STATE(3301)] = 101874, + [SMALL_STATE(3302)] = 101896, + [SMALL_STATE(3303)] = 101918, + [SMALL_STATE(3304)] = 101942, + [SMALL_STATE(3305)] = 101966, + [SMALL_STATE(3306)] = 101990, + [SMALL_STATE(3307)] = 102014, + [SMALL_STATE(3308)] = 102038, + [SMALL_STATE(3309)] = 102062, + [SMALL_STATE(3310)] = 102086, + [SMALL_STATE(3311)] = 102110, + [SMALL_STATE(3312)] = 102134, + [SMALL_STATE(3313)] = 102156, + [SMALL_STATE(3314)] = 102178, + [SMALL_STATE(3315)] = 102202, + [SMALL_STATE(3316)] = 102226, + [SMALL_STATE(3317)] = 102250, + [SMALL_STATE(3318)] = 102274, + [SMALL_STATE(3319)] = 102298, + [SMALL_STATE(3320)] = 102322, + [SMALL_STATE(3321)] = 102346, + [SMALL_STATE(3322)] = 102370, + [SMALL_STATE(3323)] = 102394, + [SMALL_STATE(3324)] = 102418, + [SMALL_STATE(3325)] = 102442, + [SMALL_STATE(3326)] = 102466, + [SMALL_STATE(3327)] = 102490, + [SMALL_STATE(3328)] = 102514, + [SMALL_STATE(3329)] = 102538, + [SMALL_STATE(3330)] = 102562, + [SMALL_STATE(3331)] = 102586, + [SMALL_STATE(3332)] = 102610, + [SMALL_STATE(3333)] = 102656, + [SMALL_STATE(3334)] = 102696, + [SMALL_STATE(3335)] = 102720, + [SMALL_STATE(3336)] = 102744, + [SMALL_STATE(3337)] = 102770, + [SMALL_STATE(3338)] = 102792, + [SMALL_STATE(3339)] = 102816, + [SMALL_STATE(3340)] = 102840, + [SMALL_STATE(3341)] = 102864, + [SMALL_STATE(3342)] = 102910, + [SMALL_STATE(3343)] = 102932, + [SMALL_STATE(3344)] = 102956, + [SMALL_STATE(3345)] = 102980, + [SMALL_STATE(3346)] = 103004, + [SMALL_STATE(3347)] = 103028, + [SMALL_STATE(3348)] = 103052, + [SMALL_STATE(3349)] = 103074, + [SMALL_STATE(3350)] = 103098, + [SMALL_STATE(3351)] = 103122, + [SMALL_STATE(3352)] = 103162, + [SMALL_STATE(3353)] = 103208, + [SMALL_STATE(3354)] = 103254, + [SMALL_STATE(3355)] = 103276, + [SMALL_STATE(3356)] = 103298, + [SMALL_STATE(3357)] = 103320, + [SMALL_STATE(3358)] = 103360, + [SMALL_STATE(3359)] = 103384, + [SMALL_STATE(3360)] = 103408, + [SMALL_STATE(3361)] = 103432, + [SMALL_STATE(3362)] = 103456, + [SMALL_STATE(3363)] = 103480, + [SMALL_STATE(3364)] = 103504, + [SMALL_STATE(3365)] = 103550, + [SMALL_STATE(3366)] = 103596, + [SMALL_STATE(3367)] = 103620, + [SMALL_STATE(3368)] = 103662, + [SMALL_STATE(3369)] = 103684, + [SMALL_STATE(3370)] = 103706, + [SMALL_STATE(3371)] = 103730, + [SMALL_STATE(3372)] = 103754, + [SMALL_STATE(3373)] = 103794, + [SMALL_STATE(3374)] = 103822, + [SMALL_STATE(3375)] = 103850, + [SMALL_STATE(3376)] = 103878, + [SMALL_STATE(3377)] = 103906, + [SMALL_STATE(3378)] = 103934, + [SMALL_STATE(3379)] = 103962, + [SMALL_STATE(3380)] = 103990, + [SMALL_STATE(3381)] = 104018, + [SMALL_STATE(3382)] = 104046, + [SMALL_STATE(3383)] = 104074, + [SMALL_STATE(3384)] = 104102, + [SMALL_STATE(3385)] = 104130, + [SMALL_STATE(3386)] = 104154, + [SMALL_STATE(3387)] = 104178, + [SMALL_STATE(3388)] = 104200, + [SMALL_STATE(3389)] = 104246, + [SMALL_STATE(3390)] = 104292, + [SMALL_STATE(3391)] = 104316, + [SMALL_STATE(3392)] = 104340, + [SMALL_STATE(3393)] = 104362, + [SMALL_STATE(3394)] = 104384, + [SMALL_STATE(3395)] = 104408, + [SMALL_STATE(3396)] = 104432, + [SMALL_STATE(3397)] = 104453, + [SMALL_STATE(3398)] = 104476, + [SMALL_STATE(3399)] = 104497, + [SMALL_STATE(3400)] = 104518, + [SMALL_STATE(3401)] = 104539, + [SMALL_STATE(3402)] = 104560, + [SMALL_STATE(3403)] = 104581, + [SMALL_STATE(3404)] = 104602, + [SMALL_STATE(3405)] = 104623, + [SMALL_STATE(3406)] = 104644, + [SMALL_STATE(3407)] = 104667, + [SMALL_STATE(3408)] = 104690, + [SMALL_STATE(3409)] = 104711, + [SMALL_STATE(3410)] = 104732, + [SMALL_STATE(3411)] = 104771, + [SMALL_STATE(3412)] = 104792, + [SMALL_STATE(3413)] = 104813, + [SMALL_STATE(3414)] = 104834, + [SMALL_STATE(3415)] = 104855, + [SMALL_STATE(3416)] = 104894, + [SMALL_STATE(3417)] = 104915, + [SMALL_STATE(3418)] = 104936, + [SMALL_STATE(3419)] = 104957, + [SMALL_STATE(3420)] = 104978, + [SMALL_STATE(3421)] = 104999, + [SMALL_STATE(3422)] = 105022, + [SMALL_STATE(3423)] = 105043, + [SMALL_STATE(3424)] = 105064, + [SMALL_STATE(3425)] = 105085, + [SMALL_STATE(3426)] = 105106, + [SMALL_STATE(3427)] = 105127, + [SMALL_STATE(3428)] = 105148, + [SMALL_STATE(3429)] = 105169, + [SMALL_STATE(3430)] = 105190, + [SMALL_STATE(3431)] = 105211, + [SMALL_STATE(3432)] = 105232, + [SMALL_STATE(3433)] = 105255, + [SMALL_STATE(3434)] = 105294, + [SMALL_STATE(3435)] = 105315, + [SMALL_STATE(3436)] = 105336, + [SMALL_STATE(3437)] = 105357, + [SMALL_STATE(3438)] = 105378, + [SMALL_STATE(3439)] = 105399, + [SMALL_STATE(3440)] = 105420, + [SMALL_STATE(3441)] = 105441, + [SMALL_STATE(3442)] = 105462, + [SMALL_STATE(3443)] = 105483, + [SMALL_STATE(3444)] = 105504, + [SMALL_STATE(3445)] = 105541, + [SMALL_STATE(3446)] = 105564, + [SMALL_STATE(3447)] = 105585, + [SMALL_STATE(3448)] = 105622, + [SMALL_STATE(3449)] = 105643, + [SMALL_STATE(3450)] = 105682, + [SMALL_STATE(3451)] = 105703, + [SMALL_STATE(3452)] = 105724, + [SMALL_STATE(3453)] = 105745, + [SMALL_STATE(3454)] = 105782, + [SMALL_STATE(3455)] = 105803, + [SMALL_STATE(3456)] = 105824, + [SMALL_STATE(3457)] = 105863, + [SMALL_STATE(3458)] = 105884, + [SMALL_STATE(3459)] = 105905, + [SMALL_STATE(3460)] = 105944, + [SMALL_STATE(3461)] = 105965, + [SMALL_STATE(3462)] = 105986, + [SMALL_STATE(3463)] = 106007, + [SMALL_STATE(3464)] = 106028, + [SMALL_STATE(3465)] = 106049, + [SMALL_STATE(3466)] = 106070, + [SMALL_STATE(3467)] = 106091, + [SMALL_STATE(3468)] = 106112, + [SMALL_STATE(3469)] = 106133, + [SMALL_STATE(3470)] = 106154, + [SMALL_STATE(3471)] = 106175, + [SMALL_STATE(3472)] = 106196, + [SMALL_STATE(3473)] = 106233, + [SMALL_STATE(3474)] = 106254, + [SMALL_STATE(3475)] = 106275, + [SMALL_STATE(3476)] = 106298, + [SMALL_STATE(3477)] = 106319, + [SMALL_STATE(3478)] = 106340, + [SMALL_STATE(3479)] = 106363, + [SMALL_STATE(3480)] = 106384, + [SMALL_STATE(3481)] = 106405, + [SMALL_STATE(3482)] = 106442, + [SMALL_STATE(3483)] = 106479, + [SMALL_STATE(3484)] = 106516, + [SMALL_STATE(3485)] = 106553, + [SMALL_STATE(3486)] = 106574, + [SMALL_STATE(3487)] = 106595, + [SMALL_STATE(3488)] = 106618, + [SMALL_STATE(3489)] = 106639, + [SMALL_STATE(3490)] = 106660, + [SMALL_STATE(3491)] = 106683, + [SMALL_STATE(3492)] = 106706, + [SMALL_STATE(3493)] = 106729, + [SMALL_STATE(3494)] = 106752, + [SMALL_STATE(3495)] = 106773, + [SMALL_STATE(3496)] = 106800, + [SMALL_STATE(3497)] = 106821, + [SMALL_STATE(3498)] = 106848, + [SMALL_STATE(3499)] = 106871, + [SMALL_STATE(3500)] = 106894, + [SMALL_STATE(3501)] = 106931, + [SMALL_STATE(3502)] = 106952, + [SMALL_STATE(3503)] = 106979, + [SMALL_STATE(3504)] = 107008, + [SMALL_STATE(3505)] = 107029, + [SMALL_STATE(3506)] = 107056, + [SMALL_STATE(3507)] = 107077, + [SMALL_STATE(3508)] = 107098, + [SMALL_STATE(3509)] = 107121, + [SMALL_STATE(3510)] = 107142, + [SMALL_STATE(3511)] = 107169, + [SMALL_STATE(3512)] = 107190, + [SMALL_STATE(3513)] = 107211, + [SMALL_STATE(3514)] = 107232, + [SMALL_STATE(3515)] = 107253, + [SMALL_STATE(3516)] = 107290, + [SMALL_STATE(3517)] = 107327, + [SMALL_STATE(3518)] = 107364, + [SMALL_STATE(3519)] = 107385, + [SMALL_STATE(3520)] = 107406, + [SMALL_STATE(3521)] = 107429, + [SMALL_STATE(3522)] = 107450, + [SMALL_STATE(3523)] = 107477, + [SMALL_STATE(3524)] = 107500, + [SMALL_STATE(3525)] = 107523, + [SMALL_STATE(3526)] = 107546, + [SMALL_STATE(3527)] = 107569, + [SMALL_STATE(3528)] = 107590, + [SMALL_STATE(3529)] = 107611, + [SMALL_STATE(3530)] = 107634, + [SMALL_STATE(3531)] = 107661, + [SMALL_STATE(3532)] = 107684, + [SMALL_STATE(3533)] = 107711, + [SMALL_STATE(3534)] = 107734, + [SMALL_STATE(3535)] = 107757, + [SMALL_STATE(3536)] = 107780, + [SMALL_STATE(3537)] = 107807, + [SMALL_STATE(3538)] = 107832, + [SMALL_STATE(3539)] = 107855, + [SMALL_STATE(3540)] = 107878, + [SMALL_STATE(3541)] = 107901, + [SMALL_STATE(3542)] = 107924, + [SMALL_STATE(3543)] = 107947, + [SMALL_STATE(3544)] = 107970, + [SMALL_STATE(3545)] = 107993, + [SMALL_STATE(3546)] = 108032, + [SMALL_STATE(3547)] = 108055, + [SMALL_STATE(3548)] = 108082, + [SMALL_STATE(3549)] = 108109, + [SMALL_STATE(3550)] = 108136, + [SMALL_STATE(3551)] = 108163, + [SMALL_STATE(3552)] = 108190, + [SMALL_STATE(3553)] = 108217, + [SMALL_STATE(3554)] = 108244, + [SMALL_STATE(3555)] = 108271, + [SMALL_STATE(3556)] = 108298, + [SMALL_STATE(3557)] = 108325, + [SMALL_STATE(3558)] = 108352, + [SMALL_STATE(3559)] = 108379, + [SMALL_STATE(3560)] = 108400, + [SMALL_STATE(3561)] = 108421, + [SMALL_STATE(3562)] = 108444, + [SMALL_STATE(3563)] = 108475, + [SMALL_STATE(3564)] = 108502, + [SMALL_STATE(3565)] = 108525, + [SMALL_STATE(3566)] = 108562, + [SMALL_STATE(3567)] = 108589, + [SMALL_STATE(3568)] = 108612, + [SMALL_STATE(3569)] = 108633, + [SMALL_STATE(3570)] = 108656, + [SMALL_STATE(3571)] = 108677, + [SMALL_STATE(3572)] = 108698, + [SMALL_STATE(3573)] = 108719, + [SMALL_STATE(3574)] = 108740, + [SMALL_STATE(3575)] = 108763, + [SMALL_STATE(3576)] = 108784, + [SMALL_STATE(3577)] = 108807, + [SMALL_STATE(3578)] = 108828, + [SMALL_STATE(3579)] = 108849, + [SMALL_STATE(3580)] = 108872, + [SMALL_STATE(3581)] = 108895, + [SMALL_STATE(3582)] = 108918, + [SMALL_STATE(3583)] = 108939, + [SMALL_STATE(3584)] = 108965, + [SMALL_STATE(3585)] = 108997, + [SMALL_STATE(3586)] = 109033, + [SMALL_STATE(3587)] = 109059, + [SMALL_STATE(3588)] = 109083, + [SMALL_STATE(3589)] = 109109, + [SMALL_STATE(3590)] = 109133, + [SMALL_STATE(3591)] = 109163, + [SMALL_STATE(3592)] = 109189, + [SMALL_STATE(3593)] = 109213, + [SMALL_STATE(3594)] = 109237, + [SMALL_STATE(3595)] = 109267, + [SMALL_STATE(3596)] = 109291, + [SMALL_STATE(3597)] = 109327, + [SMALL_STATE(3598)] = 109363, + [SMALL_STATE(3599)] = 109387, + [SMALL_STATE(3600)] = 109421, + [SMALL_STATE(3601)] = 109447, + [SMALL_STATE(3602)] = 109473, + [SMALL_STATE(3603)] = 109507, + [SMALL_STATE(3604)] = 109539, + [SMALL_STATE(3605)] = 109575, + [SMALL_STATE(3606)] = 109607, + [SMALL_STATE(3607)] = 109633, + [SMALL_STATE(3608)] = 109659, + [SMALL_STATE(3609)] = 109681, + [SMALL_STATE(3610)] = 109707, + [SMALL_STATE(3611)] = 109731, + [SMALL_STATE(3612)] = 109757, + [SMALL_STATE(3613)] = 109779, + [SMALL_STATE(3614)] = 109811, + [SMALL_STATE(3615)] = 109837, + [SMALL_STATE(3616)] = 109859, + [SMALL_STATE(3617)] = 109881, + [SMALL_STATE(3618)] = 109903, + [SMALL_STATE(3619)] = 109925, + [SMALL_STATE(3620)] = 109947, + [SMALL_STATE(3621)] = 109975, + [SMALL_STATE(3622)] = 110001, + [SMALL_STATE(3623)] = 110033, + [SMALL_STATE(3624)] = 110057, + [SMALL_STATE(3625)] = 110081, + [SMALL_STATE(3626)] = 110103, + [SMALL_STATE(3627)] = 110137, + [SMALL_STATE(3628)] = 110163, + [SMALL_STATE(3629)] = 110187, + [SMALL_STATE(3630)] = 110210, + [SMALL_STATE(3631)] = 110233, + [SMALL_STATE(3632)] = 110254, + [SMALL_STATE(3633)] = 110287, + [SMALL_STATE(3634)] = 110308, + [SMALL_STATE(3635)] = 110341, + [SMALL_STATE(3636)] = 110372, + [SMALL_STATE(3637)] = 110397, + [SMALL_STATE(3638)] = 110420, + [SMALL_STATE(3639)] = 110449, + [SMALL_STATE(3640)] = 110474, + [SMALL_STATE(3641)] = 110507, + [SMALL_STATE(3642)] = 110528, + [SMALL_STATE(3643)] = 110561, + [SMALL_STATE(3644)] = 110594, + [SMALL_STATE(3645)] = 110627, + [SMALL_STATE(3646)] = 110658, + [SMALL_STATE(3647)] = 110679, + [SMALL_STATE(3648)] = 110700, + [SMALL_STATE(3649)] = 110733, + [SMALL_STATE(3650)] = 110766, + [SMALL_STATE(3651)] = 110787, + [SMALL_STATE(3652)] = 110820, + [SMALL_STATE(3653)] = 110845, + [SMALL_STATE(3654)] = 110880, + [SMALL_STATE(3655)] = 110913, + [SMALL_STATE(3656)] = 110948, + [SMALL_STATE(3657)] = 110971, + [SMALL_STATE(3658)] = 110996, + [SMALL_STATE(3659)] = 111027, + [SMALL_STATE(3660)] = 111058, + [SMALL_STATE(3661)] = 111081, + [SMALL_STATE(3662)] = 111102, + [SMALL_STATE(3663)] = 111135, + [SMALL_STATE(3664)] = 111168, + [SMALL_STATE(3665)] = 111199, + [SMALL_STATE(3666)] = 111232, + [SMALL_STATE(3667)] = 111265, + [SMALL_STATE(3668)] = 111298, + [SMALL_STATE(3669)] = 111331, + [SMALL_STATE(3670)] = 111362, + [SMALL_STATE(3671)] = 111395, + [SMALL_STATE(3672)] = 111428, + [SMALL_STATE(3673)] = 111459, + [SMALL_STATE(3674)] = 111484, + [SMALL_STATE(3675)] = 111505, + [SMALL_STATE(3676)] = 111538, + [SMALL_STATE(3677)] = 111571, + [SMALL_STATE(3678)] = 111602, + [SMALL_STATE(3679)] = 111625, + [SMALL_STATE(3680)] = 111658, + [SMALL_STATE(3681)] = 111691, + [SMALL_STATE(3682)] = 111722, + [SMALL_STATE(3683)] = 111755, + [SMALL_STATE(3684)] = 111788, + [SMALL_STATE(3685)] = 111819, + [SMALL_STATE(3686)] = 111852, + [SMALL_STATE(3687)] = 111885, + [SMALL_STATE(3688)] = 111916, + [SMALL_STATE(3689)] = 111949, + [SMALL_STATE(3690)] = 111982, + [SMALL_STATE(3691)] = 112013, + [SMALL_STATE(3692)] = 112046, + [SMALL_STATE(3693)] = 112079, + [SMALL_STATE(3694)] = 112110, + [SMALL_STATE(3695)] = 112143, + [SMALL_STATE(3696)] = 112176, + [SMALL_STATE(3697)] = 112207, + [SMALL_STATE(3698)] = 112240, + [SMALL_STATE(3699)] = 112273, + [SMALL_STATE(3700)] = 112304, + [SMALL_STATE(3701)] = 112335, + [SMALL_STATE(3702)] = 112366, + [SMALL_STATE(3703)] = 112397, + [SMALL_STATE(3704)] = 112428, + [SMALL_STATE(3705)] = 112459, + [SMALL_STATE(3706)] = 112490, + [SMALL_STATE(3707)] = 112521, + [SMALL_STATE(3708)] = 112552, + [SMALL_STATE(3709)] = 112585, + [SMALL_STATE(3710)] = 112606, + [SMALL_STATE(3711)] = 112639, + [SMALL_STATE(3712)] = 112670, + [SMALL_STATE(3713)] = 112695, + [SMALL_STATE(3714)] = 112718, + [SMALL_STATE(3715)] = 112743, + [SMALL_STATE(3716)] = 112764, + [SMALL_STATE(3717)] = 112789, + [SMALL_STATE(3718)] = 112810, + [SMALL_STATE(3719)] = 112831, + [SMALL_STATE(3720)] = 112852, + [SMALL_STATE(3721)] = 112883, + [SMALL_STATE(3722)] = 112914, + [SMALL_STATE(3723)] = 112942, + [SMALL_STATE(3724)] = 112970, + [SMALL_STATE(3725)] = 112998, + [SMALL_STATE(3726)] = 113018, + [SMALL_STATE(3727)] = 113046, + [SMALL_STATE(3728)] = 113074, + [SMALL_STATE(3729)] = 113102, + [SMALL_STATE(3730)] = 113122, + [SMALL_STATE(3731)] = 113142, + [SMALL_STATE(3732)] = 113170, + [SMALL_STATE(3733)] = 113198, + [SMALL_STATE(3734)] = 113218, + [SMALL_STATE(3735)] = 113246, + [SMALL_STATE(3736)] = 113274, + [SMALL_STATE(3737)] = 113302, + [SMALL_STATE(3738)] = 113332, + [SMALL_STATE(3739)] = 113352, + [SMALL_STATE(3740)] = 113374, + [SMALL_STATE(3741)] = 113402, + [SMALL_STATE(3742)] = 113422, + [SMALL_STATE(3743)] = 113450, + [SMALL_STATE(3744)] = 113470, + [SMALL_STATE(3745)] = 113490, + [SMALL_STATE(3746)] = 113512, + [SMALL_STATE(3747)] = 113540, + [SMALL_STATE(3748)] = 113568, + [SMALL_STATE(3749)] = 113592, + [SMALL_STATE(3750)] = 113620, + [SMALL_STATE(3751)] = 113648, + [SMALL_STATE(3752)] = 113676, + [SMALL_STATE(3753)] = 113704, + [SMALL_STATE(3754)] = 113732, + [SMALL_STATE(3755)] = 113760, + [SMALL_STATE(3756)] = 113778, + [SMALL_STATE(3757)] = 113802, + [SMALL_STATE(3758)] = 113830, + [SMALL_STATE(3759)] = 113858, + [SMALL_STATE(3760)] = 113886, + [SMALL_STATE(3761)] = 113914, + [SMALL_STATE(3762)] = 113942, + [SMALL_STATE(3763)] = 113970, + [SMALL_STATE(3764)] = 113988, + [SMALL_STATE(3765)] = 114016, + [SMALL_STATE(3766)] = 114044, + [SMALL_STATE(3767)] = 114072, + [SMALL_STATE(3768)] = 114100, + [SMALL_STATE(3769)] = 114124, + [SMALL_STATE(3770)] = 114152, + [SMALL_STATE(3771)] = 114172, + [SMALL_STATE(3772)] = 114200, + [SMALL_STATE(3773)] = 114222, + [SMALL_STATE(3774)] = 114242, + [SMALL_STATE(3775)] = 114270, + [SMALL_STATE(3776)] = 114292, + [SMALL_STATE(3777)] = 114316, + [SMALL_STATE(3778)] = 114344, + [SMALL_STATE(3779)] = 114368, + [SMALL_STATE(3780)] = 114388, + [SMALL_STATE(3781)] = 114408, + [SMALL_STATE(3782)] = 114434, + [SMALL_STATE(3783)] = 114460, + [SMALL_STATE(3784)] = 114488, + [SMALL_STATE(3785)] = 114516, + [SMALL_STATE(3786)] = 114544, + [SMALL_STATE(3787)] = 114566, + [SMALL_STATE(3788)] = 114594, + [SMALL_STATE(3789)] = 114622, + [SMALL_STATE(3790)] = 114650, + [SMALL_STATE(3791)] = 114672, + [SMALL_STATE(3792)] = 114694, + [SMALL_STATE(3793)] = 114714, + [SMALL_STATE(3794)] = 114742, + [SMALL_STATE(3795)] = 114770, + [SMALL_STATE(3796)] = 114800, + [SMALL_STATE(3797)] = 114824, + [SMALL_STATE(3798)] = 114852, + [SMALL_STATE(3799)] = 114872, + [SMALL_STATE(3800)] = 114892, + [SMALL_STATE(3801)] = 114920, + [SMALL_STATE(3802)] = 114946, + [SMALL_STATE(3803)] = 114968, + [SMALL_STATE(3804)] = 114987, + [SMALL_STATE(3805)] = 115012, + [SMALL_STATE(3806)] = 115033, + [SMALL_STATE(3807)] = 115058, + [SMALL_STATE(3808)] = 115077, + [SMALL_STATE(3809)] = 115096, + [SMALL_STATE(3810)] = 115121, + [SMALL_STATE(3811)] = 115146, + [SMALL_STATE(3812)] = 115175, + [SMALL_STATE(3813)] = 115194, + [SMALL_STATE(3814)] = 115219, + [SMALL_STATE(3815)] = 115244, + [SMALL_STATE(3816)] = 115265, + [SMALL_STATE(3817)] = 115292, + [SMALL_STATE(3818)] = 115317, + [SMALL_STATE(3819)] = 115336, + [SMALL_STATE(3820)] = 115357, + [SMALL_STATE(3821)] = 115376, + [SMALL_STATE(3822)] = 115401, + [SMALL_STATE(3823)] = 115432, + [SMALL_STATE(3824)] = 115457, + [SMALL_STATE(3825)] = 115482, + [SMALL_STATE(3826)] = 115501, + [SMALL_STATE(3827)] = 115520, + [SMALL_STATE(3828)] = 115545, + [SMALL_STATE(3829)] = 115570, + [SMALL_STATE(3830)] = 115589, + [SMALL_STATE(3831)] = 115616, + [SMALL_STATE(3832)] = 115635, + [SMALL_STATE(3833)] = 115660, + [SMALL_STATE(3834)] = 115679, + [SMALL_STATE(3835)] = 115704, + [SMALL_STATE(3836)] = 115727, + [SMALL_STATE(3837)] = 115752, + [SMALL_STATE(3838)] = 115779, + [SMALL_STATE(3839)] = 115802, + [SMALL_STATE(3840)] = 115829, + [SMALL_STATE(3841)] = 115848, + [SMALL_STATE(3842)] = 115867, + [SMALL_STATE(3843)] = 115888, + [SMALL_STATE(3844)] = 115909, + [SMALL_STATE(3845)] = 115932, + [SMALL_STATE(3846)] = 115959, + [SMALL_STATE(3847)] = 115980, + [SMALL_STATE(3848)] = 116007, + [SMALL_STATE(3849)] = 116030, + [SMALL_STATE(3850)] = 116055, + [SMALL_STATE(3851)] = 116081, + [SMALL_STATE(3852)] = 116099, + [SMALL_STATE(3853)] = 116125, + [SMALL_STATE(3854)] = 116153, + [SMALL_STATE(3855)] = 116181, + [SMALL_STATE(3856)] = 116209, + [SMALL_STATE(3857)] = 116237, + [SMALL_STATE(3858)] = 116263, + [SMALL_STATE(3859)] = 116291, + [SMALL_STATE(3860)] = 116319, + [SMALL_STATE(3861)] = 116347, + [SMALL_STATE(3862)] = 116375, + [SMALL_STATE(3863)] = 116403, + [SMALL_STATE(3864)] = 116427, + [SMALL_STATE(3865)] = 116451, + [SMALL_STATE(3866)] = 116479, + [SMALL_STATE(3867)] = 116507, + [SMALL_STATE(3868)] = 116525, + [SMALL_STATE(3869)] = 116547, + [SMALL_STATE(3870)] = 116575, + [SMALL_STATE(3871)] = 116603, + [SMALL_STATE(3872)] = 116631, + [SMALL_STATE(3873)] = 116651, + [SMALL_STATE(3874)] = 116679, + [SMALL_STATE(3875)] = 116707, + [SMALL_STATE(3876)] = 116735, + [SMALL_STATE(3877)] = 116763, + [SMALL_STATE(3878)] = 116781, + [SMALL_STATE(3879)] = 116803, + [SMALL_STATE(3880)] = 116821, + [SMALL_STATE(3881)] = 116849, + [SMALL_STATE(3882)] = 116867, + [SMALL_STATE(3883)] = 116895, + [SMALL_STATE(3884)] = 116923, + [SMALL_STATE(3885)] = 116949, + [SMALL_STATE(3886)] = 116975, + [SMALL_STATE(3887)] = 117003, + [SMALL_STATE(3888)] = 117023, + [SMALL_STATE(3889)] = 117049, + [SMALL_STATE(3890)] = 117077, + [SMALL_STATE(3891)] = 117095, + [SMALL_STATE(3892)] = 117119, + [SMALL_STATE(3893)] = 117137, + [SMALL_STATE(3894)] = 117165, + [SMALL_STATE(3895)] = 117193, + [SMALL_STATE(3896)] = 117221, + [SMALL_STATE(3897)] = 117249, + [SMALL_STATE(3898)] = 117269, + [SMALL_STATE(3899)] = 117289, + [SMALL_STATE(3900)] = 117309, + [SMALL_STATE(3901)] = 117331, + [SMALL_STATE(3902)] = 117359, + [SMALL_STATE(3903)] = 117387, + [SMALL_STATE(3904)] = 117411, + [SMALL_STATE(3905)] = 117437, + [SMALL_STATE(3906)] = 117463, + [SMALL_STATE(3907)] = 117491, + [SMALL_STATE(3908)] = 117519, + [SMALL_STATE(3909)] = 117545, + [SMALL_STATE(3910)] = 117573, + [SMALL_STATE(3911)] = 117599, + [SMALL_STATE(3912)] = 117625, + [SMALL_STATE(3913)] = 117653, + [SMALL_STATE(3914)] = 117671, + [SMALL_STATE(3915)] = 117695, + [SMALL_STATE(3916)] = 117719, + [SMALL_STATE(3917)] = 117747, + [SMALL_STATE(3918)] = 117767, + [SMALL_STATE(3919)] = 117795, + [SMALL_STATE(3920)] = 117821, + [SMALL_STATE(3921)] = 117849, + [SMALL_STATE(3922)] = 117871, + [SMALL_STATE(3923)] = 117897, + [SMALL_STATE(3924)] = 117919, + [SMALL_STATE(3925)] = 117947, + [SMALL_STATE(3926)] = 117969, + [SMALL_STATE(3927)] = 117987, + [SMALL_STATE(3928)] = 118013, + [SMALL_STATE(3929)] = 118035, + [SMALL_STATE(3930)] = 118053, + [SMALL_STATE(3931)] = 118073, + [SMALL_STATE(3932)] = 118091, + [SMALL_STATE(3933)] = 118117, + [SMALL_STATE(3934)] = 118139, + [SMALL_STATE(3935)] = 118157, + [SMALL_STATE(3936)] = 118175, + [SMALL_STATE(3937)] = 118197, + [SMALL_STATE(3938)] = 118221, + [SMALL_STATE(3939)] = 118243, + [SMALL_STATE(3940)] = 118269, + [SMALL_STATE(3941)] = 118297, + [SMALL_STATE(3942)] = 118321, + [SMALL_STATE(3943)] = 118347, + [SMALL_STATE(3944)] = 118373, + [SMALL_STATE(3945)] = 118395, + [SMALL_STATE(3946)] = 118417, + [SMALL_STATE(3947)] = 118445, + [SMALL_STATE(3948)] = 118465, + [SMALL_STATE(3949)] = 118491, + [SMALL_STATE(3950)] = 118519, + [SMALL_STATE(3951)] = 118547, + [SMALL_STATE(3952)] = 118575, + [SMALL_STATE(3953)] = 118601, + [SMALL_STATE(3954)] = 118629, + [SMALL_STATE(3955)] = 118657, + [SMALL_STATE(3956)] = 118685, + [SMALL_STATE(3957)] = 118711, + [SMALL_STATE(3958)] = 118739, + [SMALL_STATE(3959)] = 118763, + [SMALL_STATE(3960)] = 118786, + [SMALL_STATE(3961)] = 118809, + [SMALL_STATE(3962)] = 118832, + [SMALL_STATE(3963)] = 118857, + [SMALL_STATE(3964)] = 118880, + [SMALL_STATE(3965)] = 118901, + [SMALL_STATE(3966)] = 118922, + [SMALL_STATE(3967)] = 118941, + [SMALL_STATE(3968)] = 118962, + [SMALL_STATE(3969)] = 118981, + [SMALL_STATE(3970)] = 119004, + [SMALL_STATE(3971)] = 119025, + [SMALL_STATE(3972)] = 119048, + [SMALL_STATE(3973)] = 119071, + [SMALL_STATE(3974)] = 119096, + [SMALL_STATE(3975)] = 119121, + [SMALL_STATE(3976)] = 119146, + [SMALL_STATE(3977)] = 119169, + [SMALL_STATE(3978)] = 119188, + [SMALL_STATE(3979)] = 119211, + [SMALL_STATE(3980)] = 119234, + [SMALL_STATE(3981)] = 119257, + [SMALL_STATE(3982)] = 119280, + [SMALL_STATE(3983)] = 119301, + [SMALL_STATE(3984)] = 119324, + [SMALL_STATE(3985)] = 119347, + [SMALL_STATE(3986)] = 119370, + [SMALL_STATE(3987)] = 119393, + [SMALL_STATE(3988)] = 119416, + [SMALL_STATE(3989)] = 119439, + [SMALL_STATE(3990)] = 119460, + [SMALL_STATE(3991)] = 119483, + [SMALL_STATE(3992)] = 119502, + [SMALL_STATE(3993)] = 119525, + [SMALL_STATE(3994)] = 119546, + [SMALL_STATE(3995)] = 119569, + [SMALL_STATE(3996)] = 119584, + [SMALL_STATE(3997)] = 119607, + [SMALL_STATE(3998)] = 119630, + [SMALL_STATE(3999)] = 119649, + [SMALL_STATE(4000)] = 119668, + [SMALL_STATE(4001)] = 119691, + [SMALL_STATE(4002)] = 119706, + [SMALL_STATE(4003)] = 119721, + [SMALL_STATE(4004)] = 119746, + [SMALL_STATE(4005)] = 119769, + [SMALL_STATE(4006)] = 119792, + [SMALL_STATE(4007)] = 119807, + [SMALL_STATE(4008)] = 119822, + [SMALL_STATE(4009)] = 119837, + [SMALL_STATE(4010)] = 119860, + [SMALL_STATE(4011)] = 119883, + [SMALL_STATE(4012)] = 119906, + [SMALL_STATE(4013)] = 119929, + [SMALL_STATE(4014)] = 119952, + [SMALL_STATE(4015)] = 119973, + [SMALL_STATE(4016)] = 119992, + [SMALL_STATE(4017)] = 120013, + [SMALL_STATE(4018)] = 120036, + [SMALL_STATE(4019)] = 120059, + [SMALL_STATE(4020)] = 120082, + [SMALL_STATE(4021)] = 120105, + [SMALL_STATE(4022)] = 120128, + [SMALL_STATE(4023)] = 120151, + [SMALL_STATE(4024)] = 120174, + [SMALL_STATE(4025)] = 120197, + [SMALL_STATE(4026)] = 120220, + [SMALL_STATE(4027)] = 120243, + [SMALL_STATE(4028)] = 120266, + [SMALL_STATE(4029)] = 120289, + [SMALL_STATE(4030)] = 120312, + [SMALL_STATE(4031)] = 120335, + [SMALL_STATE(4032)] = 120358, + [SMALL_STATE(4033)] = 120383, + [SMALL_STATE(4034)] = 120404, + [SMALL_STATE(4035)] = 120425, + [SMALL_STATE(4036)] = 120448, + [SMALL_STATE(4037)] = 120469, + [SMALL_STATE(4038)] = 120488, + [SMALL_STATE(4039)] = 120513, + [SMALL_STATE(4040)] = 120538, + [SMALL_STATE(4041)] = 120563, + [SMALL_STATE(4042)] = 120588, + [SMALL_STATE(4043)] = 120609, + [SMALL_STATE(4044)] = 120632, + [SMALL_STATE(4045)] = 120655, + [SMALL_STATE(4046)] = 120678, + [SMALL_STATE(4047)] = 120697, + [SMALL_STATE(4048)] = 120716, + [SMALL_STATE(4049)] = 120739, + [SMALL_STATE(4050)] = 120762, + [SMALL_STATE(4051)] = 120783, + [SMALL_STATE(4052)] = 120806, + [SMALL_STATE(4053)] = 120829, + [SMALL_STATE(4054)] = 120854, + [SMALL_STATE(4055)] = 120877, + [SMALL_STATE(4056)] = 120902, + [SMALL_STATE(4057)] = 120925, + [SMALL_STATE(4058)] = 120948, + [SMALL_STATE(4059)] = 120969, + [SMALL_STATE(4060)] = 120994, + [SMALL_STATE(4061)] = 121017, + [SMALL_STATE(4062)] = 121040, + [SMALL_STATE(4063)] = 121063, + [SMALL_STATE(4064)] = 121086, + [SMALL_STATE(4065)] = 121109, + [SMALL_STATE(4066)] = 121132, + [SMALL_STATE(4067)] = 121155, + [SMALL_STATE(4068)] = 121178, + [SMALL_STATE(4069)] = 121197, + [SMALL_STATE(4070)] = 121222, + [SMALL_STATE(4071)] = 121245, + [SMALL_STATE(4072)] = 121268, + [SMALL_STATE(4073)] = 121291, + [SMALL_STATE(4074)] = 121314, + [SMALL_STATE(4075)] = 121337, + [SMALL_STATE(4076)] = 121360, + [SMALL_STATE(4077)] = 121383, + [SMALL_STATE(4078)] = 121408, + [SMALL_STATE(4079)] = 121427, + [SMALL_STATE(4080)] = 121446, + [SMALL_STATE(4081)] = 121465, + [SMALL_STATE(4082)] = 121488, + [SMALL_STATE(4083)] = 121507, + [SMALL_STATE(4084)] = 121528, + [SMALL_STATE(4085)] = 121553, + [SMALL_STATE(4086)] = 121574, + [SMALL_STATE(4087)] = 121597, + [SMALL_STATE(4088)] = 121620, + [SMALL_STATE(4089)] = 121643, + [SMALL_STATE(4090)] = 121664, + [SMALL_STATE(4091)] = 121687, + [SMALL_STATE(4092)] = 121706, + [SMALL_STATE(4093)] = 121727, + [SMALL_STATE(4094)] = 121746, + [SMALL_STATE(4095)] = 121769, + [SMALL_STATE(4096)] = 121792, + [SMALL_STATE(4097)] = 121815, + [SMALL_STATE(4098)] = 121838, + [SMALL_STATE(4099)] = 121861, + [SMALL_STATE(4100)] = 121886, + [SMALL_STATE(4101)] = 121909, + [SMALL_STATE(4102)] = 121932, + [SMALL_STATE(4103)] = 121955, + [SMALL_STATE(4104)] = 121978, + [SMALL_STATE(4105)] = 122001, + [SMALL_STATE(4106)] = 122024, + [SMALL_STATE(4107)] = 122049, + [SMALL_STATE(4108)] = 122074, + [SMALL_STATE(4109)] = 122097, + [SMALL_STATE(4110)] = 122118, + [SMALL_STATE(4111)] = 122139, + [SMALL_STATE(4112)] = 122164, + [SMALL_STATE(4113)] = 122187, + [SMALL_STATE(4114)] = 122208, + [SMALL_STATE(4115)] = 122231, + [SMALL_STATE(4116)] = 122254, + [SMALL_STATE(4117)] = 122277, + [SMALL_STATE(4118)] = 122300, + [SMALL_STATE(4119)] = 122323, + [SMALL_STATE(4120)] = 122346, + [SMALL_STATE(4121)] = 122369, + [SMALL_STATE(4122)] = 122392, + [SMALL_STATE(4123)] = 122415, + [SMALL_STATE(4124)] = 122438, + [SMALL_STATE(4125)] = 122457, + [SMALL_STATE(4126)] = 122480, + [SMALL_STATE(4127)] = 122505, + [SMALL_STATE(4128)] = 122524, + [SMALL_STATE(4129)] = 122545, + [SMALL_STATE(4130)] = 122568, + [SMALL_STATE(4131)] = 122589, + [SMALL_STATE(4132)] = 122612, + [SMALL_STATE(4133)] = 122635, + [SMALL_STATE(4134)] = 122656, + [SMALL_STATE(4135)] = 122677, + [SMALL_STATE(4136)] = 122700, + [SMALL_STATE(4137)] = 122721, + [SMALL_STATE(4138)] = 122738, + [SMALL_STATE(4139)] = 122755, + [SMALL_STATE(4140)] = 122772, + [SMALL_STATE(4141)] = 122793, + [SMALL_STATE(4142)] = 122814, + [SMALL_STATE(4143)] = 122837, + [SMALL_STATE(4144)] = 122860, + [SMALL_STATE(4145)] = 122883, + [SMALL_STATE(4146)] = 122904, + [SMALL_STATE(4147)] = 122927, + [SMALL_STATE(4148)] = 122948, + [SMALL_STATE(4149)] = 122969, + [SMALL_STATE(4150)] = 122990, + [SMALL_STATE(4151)] = 123011, + [SMALL_STATE(4152)] = 123032, + [SMALL_STATE(4153)] = 123055, + [SMALL_STATE(4154)] = 123080, + [SMALL_STATE(4155)] = 123105, + [SMALL_STATE(4156)] = 123130, + [SMALL_STATE(4157)] = 123155, + [SMALL_STATE(4158)] = 123178, + [SMALL_STATE(4159)] = 123201, + [SMALL_STATE(4160)] = 123220, + [SMALL_STATE(4161)] = 123243, + [SMALL_STATE(4162)] = 123266, + [SMALL_STATE(4163)] = 123291, + [SMALL_STATE(4164)] = 123316, + [SMALL_STATE(4165)] = 123341, + [SMALL_STATE(4166)] = 123360, + [SMALL_STATE(4167)] = 123385, + [SMALL_STATE(4168)] = 123410, + [SMALL_STATE(4169)] = 123435, + [SMALL_STATE(4170)] = 123456, + [SMALL_STATE(4171)] = 123477, + [SMALL_STATE(4172)] = 123500, + [SMALL_STATE(4173)] = 123523, + [SMALL_STATE(4174)] = 123544, + [SMALL_STATE(4175)] = 123563, + [SMALL_STATE(4176)] = 123588, + [SMALL_STATE(4177)] = 123608, + [SMALL_STATE(4178)] = 123624, + [SMALL_STATE(4179)] = 123640, + [SMALL_STATE(4180)] = 123662, + [SMALL_STATE(4181)] = 123684, + [SMALL_STATE(4182)] = 123704, + [SMALL_STATE(4183)] = 123726, + [SMALL_STATE(4184)] = 123742, + [SMALL_STATE(4185)] = 123760, + [SMALL_STATE(4186)] = 123780, + [SMALL_STATE(4187)] = 123802, + [SMALL_STATE(4188)] = 123820, + [SMALL_STATE(4189)] = 123840, + [SMALL_STATE(4190)] = 123862, + [SMALL_STATE(4191)] = 123884, + [SMALL_STATE(4192)] = 123902, + [SMALL_STATE(4193)] = 123922, + [SMALL_STATE(4194)] = 123942, + [SMALL_STATE(4195)] = 123962, + [SMALL_STATE(4196)] = 123984, + [SMALL_STATE(4197)] = 124006, + [SMALL_STATE(4198)] = 124026, + [SMALL_STATE(4199)] = 124046, + [SMALL_STATE(4200)] = 124064, + [SMALL_STATE(4201)] = 124082, + [SMALL_STATE(4202)] = 124104, + [SMALL_STATE(4203)] = 124124, + [SMALL_STATE(4204)] = 124144, + [SMALL_STATE(4205)] = 124166, + [SMALL_STATE(4206)] = 124188, + [SMALL_STATE(4207)] = 124208, + [SMALL_STATE(4208)] = 124230, + [SMALL_STATE(4209)] = 124246, + [SMALL_STATE(4210)] = 124262, + [SMALL_STATE(4211)] = 124284, + [SMALL_STATE(4212)] = 124304, + [SMALL_STATE(4213)] = 124320, + [SMALL_STATE(4214)] = 124336, + [SMALL_STATE(4215)] = 124356, + [SMALL_STATE(4216)] = 124372, + [SMALL_STATE(4217)] = 124390, + [SMALL_STATE(4218)] = 124410, + [SMALL_STATE(4219)] = 124430, + [SMALL_STATE(4220)] = 124452, + [SMALL_STATE(4221)] = 124474, + [SMALL_STATE(4222)] = 124496, + [SMALL_STATE(4223)] = 124518, + [SMALL_STATE(4224)] = 124538, + [SMALL_STATE(4225)] = 124554, + [SMALL_STATE(4226)] = 124570, + [SMALL_STATE(4227)] = 124590, + [SMALL_STATE(4228)] = 124612, + [SMALL_STATE(4229)] = 124634, + [SMALL_STATE(4230)] = 124654, + [SMALL_STATE(4231)] = 124674, + [SMALL_STATE(4232)] = 124696, + [SMALL_STATE(4233)] = 124716, + [SMALL_STATE(4234)] = 124736, + [SMALL_STATE(4235)] = 124758, + [SMALL_STATE(4236)] = 124778, + [SMALL_STATE(4237)] = 124798, + [SMALL_STATE(4238)] = 124818, + [SMALL_STATE(4239)] = 124838, + [SMALL_STATE(4240)] = 124856, + [SMALL_STATE(4241)] = 124872, + [SMALL_STATE(4242)] = 124892, + [SMALL_STATE(4243)] = 124914, + [SMALL_STATE(4244)] = 124934, + [SMALL_STATE(4245)] = 124954, + [SMALL_STATE(4246)] = 124976, + [SMALL_STATE(4247)] = 124992, + [SMALL_STATE(4248)] = 125008, + [SMALL_STATE(4249)] = 125024, + [SMALL_STATE(4250)] = 125044, + [SMALL_STATE(4251)] = 125060, + [SMALL_STATE(4252)] = 125076, + [SMALL_STATE(4253)] = 125092, + [SMALL_STATE(4254)] = 125112, + [SMALL_STATE(4255)] = 125132, + [SMALL_STATE(4256)] = 125148, + [SMALL_STATE(4257)] = 125168, + [SMALL_STATE(4258)] = 125188, + [SMALL_STATE(4259)] = 125208, + [SMALL_STATE(4260)] = 125230, + [SMALL_STATE(4261)] = 125250, + [SMALL_STATE(4262)] = 125270, + [SMALL_STATE(4263)] = 125286, + [SMALL_STATE(4264)] = 125306, + [SMALL_STATE(4265)] = 125328, + [SMALL_STATE(4266)] = 125348, + [SMALL_STATE(4267)] = 125366, + [SMALL_STATE(4268)] = 125388, + [SMALL_STATE(4269)] = 125404, + [SMALL_STATE(4270)] = 125420, + [SMALL_STATE(4271)] = 125436, + [SMALL_STATE(4272)] = 125458, + [SMALL_STATE(4273)] = 125478, + [SMALL_STATE(4274)] = 125500, + [SMALL_STATE(4275)] = 125518, + [SMALL_STATE(4276)] = 125540, + [SMALL_STATE(4277)] = 125562, + [SMALL_STATE(4278)] = 125584, + [SMALL_STATE(4279)] = 125600, + [SMALL_STATE(4280)] = 125618, + [SMALL_STATE(4281)] = 125638, + [SMALL_STATE(4282)] = 125656, + [SMALL_STATE(4283)] = 125678, + [SMALL_STATE(4284)] = 125696, + [SMALL_STATE(4285)] = 125716, + [SMALL_STATE(4286)] = 125734, + [SMALL_STATE(4287)] = 125750, + [SMALL_STATE(4288)] = 125766, + [SMALL_STATE(4289)] = 125786, + [SMALL_STATE(4290)] = 125806, + [SMALL_STATE(4291)] = 125826, + [SMALL_STATE(4292)] = 125844, + [SMALL_STATE(4293)] = 125866, + [SMALL_STATE(4294)] = 125884, + [SMALL_STATE(4295)] = 125900, + [SMALL_STATE(4296)] = 125918, + [SMALL_STATE(4297)] = 125938, + [SMALL_STATE(4298)] = 125956, + [SMALL_STATE(4299)] = 125974, + [SMALL_STATE(4300)] = 125996, + [SMALL_STATE(4301)] = 126018, + [SMALL_STATE(4302)] = 126036, + [SMALL_STATE(4303)] = 126056, + [SMALL_STATE(4304)] = 126072, + [SMALL_STATE(4305)] = 126090, + [SMALL_STATE(4306)] = 126106, + [SMALL_STATE(4307)] = 126122, + [SMALL_STATE(4308)] = 126138, + [SMALL_STATE(4309)] = 126154, + [SMALL_STATE(4310)] = 126174, + [SMALL_STATE(4311)] = 126192, + [SMALL_STATE(4312)] = 126210, + [SMALL_STATE(4313)] = 126228, + [SMALL_STATE(4314)] = 126244, + [SMALL_STATE(4315)] = 126266, + [SMALL_STATE(4316)] = 126286, + [SMALL_STATE(4317)] = 126308, + [SMALL_STATE(4318)] = 126330, + [SMALL_STATE(4319)] = 126352, + [SMALL_STATE(4320)] = 126374, + [SMALL_STATE(4321)] = 126396, + [SMALL_STATE(4322)] = 126416, + [SMALL_STATE(4323)] = 126438, + [SMALL_STATE(4324)] = 126456, + [SMALL_STATE(4325)] = 126476, + [SMALL_STATE(4326)] = 126496, + [SMALL_STATE(4327)] = 126514, + [SMALL_STATE(4328)] = 126534, + [SMALL_STATE(4329)] = 126552, + [SMALL_STATE(4330)] = 126568, + [SMALL_STATE(4331)] = 126588, + [SMALL_STATE(4332)] = 126608, + [SMALL_STATE(4333)] = 126624, + [SMALL_STATE(4334)] = 126646, + [SMALL_STATE(4335)] = 126664, + [SMALL_STATE(4336)] = 126679, + [SMALL_STATE(4337)] = 126692, + [SMALL_STATE(4338)] = 126707, + [SMALL_STATE(4339)] = 126720, + [SMALL_STATE(4340)] = 126737, + [SMALL_STATE(4341)] = 126754, + [SMALL_STATE(4342)] = 126771, + [SMALL_STATE(4343)] = 126784, + [SMALL_STATE(4344)] = 126797, + [SMALL_STATE(4345)] = 126816, + [SMALL_STATE(4346)] = 126835, + [SMALL_STATE(4347)] = 126852, + [SMALL_STATE(4348)] = 126869, + [SMALL_STATE(4349)] = 126882, + [SMALL_STATE(4350)] = 126895, + [SMALL_STATE(4351)] = 126912, + [SMALL_STATE(4352)] = 126927, + [SMALL_STATE(4353)] = 126942, + [SMALL_STATE(4354)] = 126959, + [SMALL_STATE(4355)] = 126978, + [SMALL_STATE(4356)] = 126997, + [SMALL_STATE(4357)] = 127014, + [SMALL_STATE(4358)] = 127033, + [SMALL_STATE(4359)] = 127048, + [SMALL_STATE(4360)] = 127067, + [SMALL_STATE(4361)] = 127082, + [SMALL_STATE(4362)] = 127099, + [SMALL_STATE(4363)] = 127112, + [SMALL_STATE(4364)] = 127131, + [SMALL_STATE(4365)] = 127150, + [SMALL_STATE(4366)] = 127169, + [SMALL_STATE(4367)] = 127186, + [SMALL_STATE(4368)] = 127203, + [SMALL_STATE(4369)] = 127222, + [SMALL_STATE(4370)] = 127241, + [SMALL_STATE(4371)] = 127256, + [SMALL_STATE(4372)] = 127271, + [SMALL_STATE(4373)] = 127286, + [SMALL_STATE(4374)] = 127299, + [SMALL_STATE(4375)] = 127314, + [SMALL_STATE(4376)] = 127329, + [SMALL_STATE(4377)] = 127342, + [SMALL_STATE(4378)] = 127359, + [SMALL_STATE(4379)] = 127374, + [SMALL_STATE(4380)] = 127387, + [SMALL_STATE(4381)] = 127404, + [SMALL_STATE(4382)] = 127421, + [SMALL_STATE(4383)] = 127438, + [SMALL_STATE(4384)] = 127455, + [SMALL_STATE(4385)] = 127472, + [SMALL_STATE(4386)] = 127485, + [SMALL_STATE(4387)] = 127500, + [SMALL_STATE(4388)] = 127513, + [SMALL_STATE(4389)] = 127526, + [SMALL_STATE(4390)] = 127545, + [SMALL_STATE(4391)] = 127562, + [SMALL_STATE(4392)] = 127575, + [SMALL_STATE(4393)] = 127590, + [SMALL_STATE(4394)] = 127605, + [SMALL_STATE(4395)] = 127620, + [SMALL_STATE(4396)] = 127635, + [SMALL_STATE(4397)] = 127650, + [SMALL_STATE(4398)] = 127665, + [SMALL_STATE(4399)] = 127678, + [SMALL_STATE(4400)] = 127697, + [SMALL_STATE(4401)] = 127712, + [SMALL_STATE(4402)] = 127731, + [SMALL_STATE(4403)] = 127744, + [SMALL_STATE(4404)] = 127757, + [SMALL_STATE(4405)] = 127772, + [SMALL_STATE(4406)] = 127787, + [SMALL_STATE(4407)] = 127802, + [SMALL_STATE(4408)] = 127817, + [SMALL_STATE(4409)] = 127832, + [SMALL_STATE(4410)] = 127847, + [SMALL_STATE(4411)] = 127862, + [SMALL_STATE(4412)] = 127877, + [SMALL_STATE(4413)] = 127892, + [SMALL_STATE(4414)] = 127907, + [SMALL_STATE(4415)] = 127922, + [SMALL_STATE(4416)] = 127937, + [SMALL_STATE(4417)] = 127952, + [SMALL_STATE(4418)] = 127969, + [SMALL_STATE(4419)] = 127984, + [SMALL_STATE(4420)] = 127999, + [SMALL_STATE(4421)] = 128014, + [SMALL_STATE(4422)] = 128029, + [SMALL_STATE(4423)] = 128044, + [SMALL_STATE(4424)] = 128059, + [SMALL_STATE(4425)] = 128074, + [SMALL_STATE(4426)] = 128089, + [SMALL_STATE(4427)] = 128108, + [SMALL_STATE(4428)] = 128123, + [SMALL_STATE(4429)] = 128142, + [SMALL_STATE(4430)] = 128161, + [SMALL_STATE(4431)] = 128180, + [SMALL_STATE(4432)] = 128199, + [SMALL_STATE(4433)] = 128214, + [SMALL_STATE(4434)] = 128227, + [SMALL_STATE(4435)] = 128244, + [SMALL_STATE(4436)] = 128257, + [SMALL_STATE(4437)] = 128270, + [SMALL_STATE(4438)] = 128289, + [SMALL_STATE(4439)] = 128302, + [SMALL_STATE(4440)] = 128315, + [SMALL_STATE(4441)] = 128332, + [SMALL_STATE(4442)] = 128345, + [SMALL_STATE(4443)] = 128362, + [SMALL_STATE(4444)] = 128379, + [SMALL_STATE(4445)] = 128394, + [SMALL_STATE(4446)] = 128411, + [SMALL_STATE(4447)] = 128430, + [SMALL_STATE(4448)] = 128447, + [SMALL_STATE(4449)] = 128462, + [SMALL_STATE(4450)] = 128481, + [SMALL_STATE(4451)] = 128494, + [SMALL_STATE(4452)] = 128513, + [SMALL_STATE(4453)] = 128526, + [SMALL_STATE(4454)] = 128539, + [SMALL_STATE(4455)] = 128552, + [SMALL_STATE(4456)] = 128565, + [SMALL_STATE(4457)] = 128584, + [SMALL_STATE(4458)] = 128597, + [SMALL_STATE(4459)] = 128610, + [SMALL_STATE(4460)] = 128625, + [SMALL_STATE(4461)] = 128638, + [SMALL_STATE(4462)] = 128657, + [SMALL_STATE(4463)] = 128670, + [SMALL_STATE(4464)] = 128683, + [SMALL_STATE(4465)] = 128698, + [SMALL_STATE(4466)] = 128711, + [SMALL_STATE(4467)] = 128728, + [SMALL_STATE(4468)] = 128741, + [SMALL_STATE(4469)] = 128754, + [SMALL_STATE(4470)] = 128771, + [SMALL_STATE(4471)] = 128786, + [SMALL_STATE(4472)] = 128799, + [SMALL_STATE(4473)] = 128818, + [SMALL_STATE(4474)] = 128833, + [SMALL_STATE(4475)] = 128846, + [SMALL_STATE(4476)] = 128861, + [SMALL_STATE(4477)] = 128874, + [SMALL_STATE(4478)] = 128887, + [SMALL_STATE(4479)] = 128900, + [SMALL_STATE(4480)] = 128919, + [SMALL_STATE(4481)] = 128938, + [SMALL_STATE(4482)] = 128955, + [SMALL_STATE(4483)] = 128974, + [SMALL_STATE(4484)] = 128993, + [SMALL_STATE(4485)] = 129008, + [SMALL_STATE(4486)] = 129027, + [SMALL_STATE(4487)] = 129046, + [SMALL_STATE(4488)] = 129063, + [SMALL_STATE(4489)] = 129082, + [SMALL_STATE(4490)] = 129095, + [SMALL_STATE(4491)] = 129108, + [SMALL_STATE(4492)] = 129127, + [SMALL_STATE(4493)] = 129140, + [SMALL_STATE(4494)] = 129153, + [SMALL_STATE(4495)] = 129168, + [SMALL_STATE(4496)] = 129185, + [SMALL_STATE(4497)] = 129200, + [SMALL_STATE(4498)] = 129213, + [SMALL_STATE(4499)] = 129226, + [SMALL_STATE(4500)] = 129239, + [SMALL_STATE(4501)] = 129252, + [SMALL_STATE(4502)] = 129265, + [SMALL_STATE(4503)] = 129278, + [SMALL_STATE(4504)] = 129291, + [SMALL_STATE(4505)] = 129304, + [SMALL_STATE(4506)] = 129323, + [SMALL_STATE(4507)] = 129342, + [SMALL_STATE(4508)] = 129355, + [SMALL_STATE(4509)] = 129368, + [SMALL_STATE(4510)] = 129381, + [SMALL_STATE(4511)] = 129400, + [SMALL_STATE(4512)] = 129419, + [SMALL_STATE(4513)] = 129432, + [SMALL_STATE(4514)] = 129447, + [SMALL_STATE(4515)] = 129462, + [SMALL_STATE(4516)] = 129481, + [SMALL_STATE(4517)] = 129500, + [SMALL_STATE(4518)] = 129513, + [SMALL_STATE(4519)] = 129532, + [SMALL_STATE(4520)] = 129549, + [SMALL_STATE(4521)] = 129568, + [SMALL_STATE(4522)] = 129581, + [SMALL_STATE(4523)] = 129594, + [SMALL_STATE(4524)] = 129607, + [SMALL_STATE(4525)] = 129624, + [SMALL_STATE(4526)] = 129637, + [SMALL_STATE(4527)] = 129656, + [SMALL_STATE(4528)] = 129669, + [SMALL_STATE(4529)] = 129682, + [SMALL_STATE(4530)] = 129695, + [SMALL_STATE(4531)] = 129714, + [SMALL_STATE(4532)] = 129733, + [SMALL_STATE(4533)] = 129746, + [SMALL_STATE(4534)] = 129759, + [SMALL_STATE(4535)] = 129772, + [SMALL_STATE(4536)] = 129785, + [SMALL_STATE(4537)] = 129798, + [SMALL_STATE(4538)] = 129811, + [SMALL_STATE(4539)] = 129824, + [SMALL_STATE(4540)] = 129837, + [SMALL_STATE(4541)] = 129850, + [SMALL_STATE(4542)] = 129863, + [SMALL_STATE(4543)] = 129876, + [SMALL_STATE(4544)] = 129889, + [SMALL_STATE(4545)] = 129908, + [SMALL_STATE(4546)] = 129927, + [SMALL_STATE(4547)] = 129940, + [SMALL_STATE(4548)] = 129953, + [SMALL_STATE(4549)] = 129970, + [SMALL_STATE(4550)] = 129989, + [SMALL_STATE(4551)] = 130008, + [SMALL_STATE(4552)] = 130023, + [SMALL_STATE(4553)] = 130042, + [SMALL_STATE(4554)] = 130055, + [SMALL_STATE(4555)] = 130068, + [SMALL_STATE(4556)] = 130087, + [SMALL_STATE(4557)] = 130106, + [SMALL_STATE(4558)] = 130119, + [SMALL_STATE(4559)] = 130132, + [SMALL_STATE(4560)] = 130145, + [SMALL_STATE(4561)] = 130158, + [SMALL_STATE(4562)] = 130171, + [SMALL_STATE(4563)] = 130186, + [SMALL_STATE(4564)] = 130205, + [SMALL_STATE(4565)] = 130220, + [SMALL_STATE(4566)] = 130233, + [SMALL_STATE(4567)] = 130246, + [SMALL_STATE(4568)] = 130259, + [SMALL_STATE(4569)] = 130272, + [SMALL_STATE(4570)] = 130289, + [SMALL_STATE(4571)] = 130302, + [SMALL_STATE(4572)] = 130315, + [SMALL_STATE(4573)] = 130328, + [SMALL_STATE(4574)] = 130343, + [SMALL_STATE(4575)] = 130358, + [SMALL_STATE(4576)] = 130371, + [SMALL_STATE(4577)] = 130390, + [SMALL_STATE(4578)] = 130403, + [SMALL_STATE(4579)] = 130422, + [SMALL_STATE(4580)] = 130439, + [SMALL_STATE(4581)] = 130452, + [SMALL_STATE(4582)] = 130465, + [SMALL_STATE(4583)] = 130478, + [SMALL_STATE(4584)] = 130495, + [SMALL_STATE(4585)] = 130510, + [SMALL_STATE(4586)] = 130529, + [SMALL_STATE(4587)] = 130548, + [SMALL_STATE(4588)] = 130563, + [SMALL_STATE(4589)] = 130580, + [SMALL_STATE(4590)] = 130597, + [SMALL_STATE(4591)] = 130616, + [SMALL_STATE(4592)] = 130629, + [SMALL_STATE(4593)] = 130646, + [SMALL_STATE(4594)] = 130659, + [SMALL_STATE(4595)] = 130674, + [SMALL_STATE(4596)] = 130687, + [SMALL_STATE(4597)] = 130700, + [SMALL_STATE(4598)] = 130713, + [SMALL_STATE(4599)] = 130728, + [SMALL_STATE(4600)] = 130743, + [SMALL_STATE(4601)] = 130756, + [SMALL_STATE(4602)] = 130769, + [SMALL_STATE(4603)] = 130782, + [SMALL_STATE(4604)] = 130801, + [SMALL_STATE(4605)] = 130814, + [SMALL_STATE(4606)] = 130827, + [SMALL_STATE(4607)] = 130840, + [SMALL_STATE(4608)] = 130853, + [SMALL_STATE(4609)] = 130866, + [SMALL_STATE(4610)] = 130879, + [SMALL_STATE(4611)] = 130892, + [SMALL_STATE(4612)] = 130905, + [SMALL_STATE(4613)] = 130918, + [SMALL_STATE(4614)] = 130931, + [SMALL_STATE(4615)] = 130944, + [SMALL_STATE(4616)] = 130957, + [SMALL_STATE(4617)] = 130970, + [SMALL_STATE(4618)] = 130983, + [SMALL_STATE(4619)] = 130996, + [SMALL_STATE(4620)] = 131009, + [SMALL_STATE(4621)] = 131022, + [SMALL_STATE(4622)] = 131035, + [SMALL_STATE(4623)] = 131052, + [SMALL_STATE(4624)] = 131069, + [SMALL_STATE(4625)] = 131088, + [SMALL_STATE(4626)] = 131103, + [SMALL_STATE(4627)] = 131120, + [SMALL_STATE(4628)] = 131133, + [SMALL_STATE(4629)] = 131148, + [SMALL_STATE(4630)] = 131167, + [SMALL_STATE(4631)] = 131180, + [SMALL_STATE(4632)] = 131195, + [SMALL_STATE(4633)] = 131214, + [SMALL_STATE(4634)] = 131227, + [SMALL_STATE(4635)] = 131242, + [SMALL_STATE(4636)] = 131261, + [SMALL_STATE(4637)] = 131280, + [SMALL_STATE(4638)] = 131299, + [SMALL_STATE(4639)] = 131314, + [SMALL_STATE(4640)] = 131327, + [SMALL_STATE(4641)] = 131342, + [SMALL_STATE(4642)] = 131355, + [SMALL_STATE(4643)] = 131368, + [SMALL_STATE(4644)] = 131387, + [SMALL_STATE(4645)] = 131406, + [SMALL_STATE(4646)] = 131425, + [SMALL_STATE(4647)] = 131444, + [SMALL_STATE(4648)] = 131459, + [SMALL_STATE(4649)] = 131474, + [SMALL_STATE(4650)] = 131487, + [SMALL_STATE(4651)] = 131502, + [SMALL_STATE(4652)] = 131514, + [SMALL_STATE(4653)] = 131526, + [SMALL_STATE(4654)] = 131542, + [SMALL_STATE(4655)] = 131558, + [SMALL_STATE(4656)] = 131574, + [SMALL_STATE(4657)] = 131586, + [SMALL_STATE(4658)] = 131600, + [SMALL_STATE(4659)] = 131616, + [SMALL_STATE(4660)] = 131630, + [SMALL_STATE(4661)] = 131644, + [SMALL_STATE(4662)] = 131656, + [SMALL_STATE(4663)] = 131672, + [SMALL_STATE(4664)] = 131688, + [SMALL_STATE(4665)] = 131700, + [SMALL_STATE(4666)] = 131712, + [SMALL_STATE(4667)] = 131728, + [SMALL_STATE(4668)] = 131742, + [SMALL_STATE(4669)] = 131758, + [SMALL_STATE(4670)] = 131772, + [SMALL_STATE(4671)] = 131784, + [SMALL_STATE(4672)] = 131800, + [SMALL_STATE(4673)] = 131816, + [SMALL_STATE(4674)] = 131828, + [SMALL_STATE(4675)] = 131840, + [SMALL_STATE(4676)] = 131852, + [SMALL_STATE(4677)] = 131864, + [SMALL_STATE(4678)] = 131880, + [SMALL_STATE(4679)] = 131896, + [SMALL_STATE(4680)] = 131912, + [SMALL_STATE(4681)] = 131924, + [SMALL_STATE(4682)] = 131936, + [SMALL_STATE(4683)] = 131948, + [SMALL_STATE(4684)] = 131960, + [SMALL_STATE(4685)] = 131972, + [SMALL_STATE(4686)] = 131986, + [SMALL_STATE(4687)] = 132000, + [SMALL_STATE(4688)] = 132012, + [SMALL_STATE(4689)] = 132024, + [SMALL_STATE(4690)] = 132040, + [SMALL_STATE(4691)] = 132056, + [SMALL_STATE(4692)] = 132072, + [SMALL_STATE(4693)] = 132088, + [SMALL_STATE(4694)] = 132104, + [SMALL_STATE(4695)] = 132120, + [SMALL_STATE(4696)] = 132132, + [SMALL_STATE(4697)] = 132144, + [SMALL_STATE(4698)] = 132158, + [SMALL_STATE(4699)] = 132170, + [SMALL_STATE(4700)] = 132186, + [SMALL_STATE(4701)] = 132202, + [SMALL_STATE(4702)] = 132218, + [SMALL_STATE(4703)] = 132234, + [SMALL_STATE(4704)] = 132250, + [SMALL_STATE(4705)] = 132266, + [SMALL_STATE(4706)] = 132278, + [SMALL_STATE(4707)] = 132290, + [SMALL_STATE(4708)] = 132302, + [SMALL_STATE(4709)] = 132314, + [SMALL_STATE(4710)] = 132326, + [SMALL_STATE(4711)] = 132338, + [SMALL_STATE(4712)] = 132352, + [SMALL_STATE(4713)] = 132366, + [SMALL_STATE(4714)] = 132380, + [SMALL_STATE(4715)] = 132392, + [SMALL_STATE(4716)] = 132406, + [SMALL_STATE(4717)] = 132422, + [SMALL_STATE(4718)] = 132436, + [SMALL_STATE(4719)] = 132448, + [SMALL_STATE(4720)] = 132464, + [SMALL_STATE(4721)] = 132476, + [SMALL_STATE(4722)] = 132492, + [SMALL_STATE(4723)] = 132508, + [SMALL_STATE(4724)] = 132522, + [SMALL_STATE(4725)] = 132534, + [SMALL_STATE(4726)] = 132546, + [SMALL_STATE(4727)] = 132558, + [SMALL_STATE(4728)] = 132570, + [SMALL_STATE(4729)] = 132584, + [SMALL_STATE(4730)] = 132600, + [SMALL_STATE(4731)] = 132616, + [SMALL_STATE(4732)] = 132628, + [SMALL_STATE(4733)] = 132642, + [SMALL_STATE(4734)] = 132654, + [SMALL_STATE(4735)] = 132666, + [SMALL_STATE(4736)] = 132682, + [SMALL_STATE(4737)] = 132696, + [SMALL_STATE(4738)] = 132712, + [SMALL_STATE(4739)] = 132726, + [SMALL_STATE(4740)] = 132742, + [SMALL_STATE(4741)] = 132754, + [SMALL_STATE(4742)] = 132766, + [SMALL_STATE(4743)] = 132778, + [SMALL_STATE(4744)] = 132792, + [SMALL_STATE(4745)] = 132804, + [SMALL_STATE(4746)] = 132820, + [SMALL_STATE(4747)] = 132832, + [SMALL_STATE(4748)] = 132848, + [SMALL_STATE(4749)] = 132864, + [SMALL_STATE(4750)] = 132876, + [SMALL_STATE(4751)] = 132892, + [SMALL_STATE(4752)] = 132908, + [SMALL_STATE(4753)] = 132920, + [SMALL_STATE(4754)] = 132936, + [SMALL_STATE(4755)] = 132950, + [SMALL_STATE(4756)] = 132966, + [SMALL_STATE(4757)] = 132978, + [SMALL_STATE(4758)] = 132990, + [SMALL_STATE(4759)] = 133002, + [SMALL_STATE(4760)] = 133014, + [SMALL_STATE(4761)] = 133026, + [SMALL_STATE(4762)] = 133040, + [SMALL_STATE(4763)] = 133052, + [SMALL_STATE(4764)] = 133064, + [SMALL_STATE(4765)] = 133076, + [SMALL_STATE(4766)] = 133090, + [SMALL_STATE(4767)] = 133102, + [SMALL_STATE(4768)] = 133114, + [SMALL_STATE(4769)] = 133130, + [SMALL_STATE(4770)] = 133142, + [SMALL_STATE(4771)] = 133154, + [SMALL_STATE(4772)] = 133166, + [SMALL_STATE(4773)] = 133178, + [SMALL_STATE(4774)] = 133190, + [SMALL_STATE(4775)] = 133206, + [SMALL_STATE(4776)] = 133218, + [SMALL_STATE(4777)] = 133230, + [SMALL_STATE(4778)] = 133244, + [SMALL_STATE(4779)] = 133260, + [SMALL_STATE(4780)] = 133274, + [SMALL_STATE(4781)] = 133286, + [SMALL_STATE(4782)] = 133302, + [SMALL_STATE(4783)] = 133314, + [SMALL_STATE(4784)] = 133326, + [SMALL_STATE(4785)] = 133338, + [SMALL_STATE(4786)] = 133352, + [SMALL_STATE(4787)] = 133368, + [SMALL_STATE(4788)] = 133384, + [SMALL_STATE(4789)] = 133400, + [SMALL_STATE(4790)] = 133416, + [SMALL_STATE(4791)] = 133428, + [SMALL_STATE(4792)] = 133444, + [SMALL_STATE(4793)] = 133458, + [SMALL_STATE(4794)] = 133474, + [SMALL_STATE(4795)] = 133490, + [SMALL_STATE(4796)] = 133502, + [SMALL_STATE(4797)] = 133514, + [SMALL_STATE(4798)] = 133530, + [SMALL_STATE(4799)] = 133542, + [SMALL_STATE(4800)] = 133558, + [SMALL_STATE(4801)] = 133570, + [SMALL_STATE(4802)] = 133582, + [SMALL_STATE(4803)] = 133594, + [SMALL_STATE(4804)] = 133610, + [SMALL_STATE(4805)] = 133622, + [SMALL_STATE(4806)] = 133636, + [SMALL_STATE(4807)] = 133650, + [SMALL_STATE(4808)] = 133664, + [SMALL_STATE(4809)] = 133676, + [SMALL_STATE(4810)] = 133692, + [SMALL_STATE(4811)] = 133704, + [SMALL_STATE(4812)] = 133716, + [SMALL_STATE(4813)] = 133732, + [SMALL_STATE(4814)] = 133748, + [SMALL_STATE(4815)] = 133764, + [SMALL_STATE(4816)] = 133780, + [SMALL_STATE(4817)] = 133796, + [SMALL_STATE(4818)] = 133808, + [SMALL_STATE(4819)] = 133824, + [SMALL_STATE(4820)] = 133838, + [SMALL_STATE(4821)] = 133854, + [SMALL_STATE(4822)] = 133870, + [SMALL_STATE(4823)] = 133882, + [SMALL_STATE(4824)] = 133898, + [SMALL_STATE(4825)] = 133914, + [SMALL_STATE(4826)] = 133926, + [SMALL_STATE(4827)] = 133938, + [SMALL_STATE(4828)] = 133954, + [SMALL_STATE(4829)] = 133970, + [SMALL_STATE(4830)] = 133982, + [SMALL_STATE(4831)] = 133994, + [SMALL_STATE(4832)] = 134010, + [SMALL_STATE(4833)] = 134022, + [SMALL_STATE(4834)] = 134034, + [SMALL_STATE(4835)] = 134050, + [SMALL_STATE(4836)] = 134064, + [SMALL_STATE(4837)] = 134078, + [SMALL_STATE(4838)] = 134094, + [SMALL_STATE(4839)] = 134110, + [SMALL_STATE(4840)] = 134126, + [SMALL_STATE(4841)] = 134138, + [SMALL_STATE(4842)] = 134154, + [SMALL_STATE(4843)] = 134170, + [SMALL_STATE(4844)] = 134184, + [SMALL_STATE(4845)] = 134200, + [SMALL_STATE(4846)] = 134212, + [SMALL_STATE(4847)] = 134226, + [SMALL_STATE(4848)] = 134240, + [SMALL_STATE(4849)] = 134252, + [SMALL_STATE(4850)] = 134264, + [SMALL_STATE(4851)] = 134276, + [SMALL_STATE(4852)] = 134288, + [SMALL_STATE(4853)] = 134304, + [SMALL_STATE(4854)] = 134318, + [SMALL_STATE(4855)] = 134334, + [SMALL_STATE(4856)] = 134346, + [SMALL_STATE(4857)] = 134362, + [SMALL_STATE(4858)] = 134374, + [SMALL_STATE(4859)] = 134388, + [SMALL_STATE(4860)] = 134400, + [SMALL_STATE(4861)] = 134414, + [SMALL_STATE(4862)] = 134428, + [SMALL_STATE(4863)] = 134442, + [SMALL_STATE(4864)] = 134458, + [SMALL_STATE(4865)] = 134470, + [SMALL_STATE(4866)] = 134482, + [SMALL_STATE(4867)] = 134498, + [SMALL_STATE(4868)] = 134514, + [SMALL_STATE(4869)] = 134528, + [SMALL_STATE(4870)] = 134544, + [SMALL_STATE(4871)] = 134560, + [SMALL_STATE(4872)] = 134572, + [SMALL_STATE(4873)] = 134584, + [SMALL_STATE(4874)] = 134600, + [SMALL_STATE(4875)] = 134616, + [SMALL_STATE(4876)] = 134628, + [SMALL_STATE(4877)] = 134642, + [SMALL_STATE(4878)] = 134656, + [SMALL_STATE(4879)] = 134668, + [SMALL_STATE(4880)] = 134680, + [SMALL_STATE(4881)] = 134692, + [SMALL_STATE(4882)] = 134704, + [SMALL_STATE(4883)] = 134716, + [SMALL_STATE(4884)] = 134732, + [SMALL_STATE(4885)] = 134744, + [SMALL_STATE(4886)] = 134760, + [SMALL_STATE(4887)] = 134776, + [SMALL_STATE(4888)] = 134792, + [SMALL_STATE(4889)] = 134804, + [SMALL_STATE(4890)] = 134820, + [SMALL_STATE(4891)] = 134836, + [SMALL_STATE(4892)] = 134852, + [SMALL_STATE(4893)] = 134868, + [SMALL_STATE(4894)] = 134884, + [SMALL_STATE(4895)] = 134896, + [SMALL_STATE(4896)] = 134908, + [SMALL_STATE(4897)] = 134922, + [SMALL_STATE(4898)] = 134936, + [SMALL_STATE(4899)] = 134952, + [SMALL_STATE(4900)] = 134968, + [SMALL_STATE(4901)] = 134984, + [SMALL_STATE(4902)] = 134998, + [SMALL_STATE(4903)] = 135012, + [SMALL_STATE(4904)] = 135024, + [SMALL_STATE(4905)] = 135038, + [SMALL_STATE(4906)] = 135052, + [SMALL_STATE(4907)] = 135068, + [SMALL_STATE(4908)] = 135084, + [SMALL_STATE(4909)] = 135096, + [SMALL_STATE(4910)] = 135112, + [SMALL_STATE(4911)] = 135124, + [SMALL_STATE(4912)] = 135137, + [SMALL_STATE(4913)] = 135150, + [SMALL_STATE(4914)] = 135163, + [SMALL_STATE(4915)] = 135176, + [SMALL_STATE(4916)] = 135189, + [SMALL_STATE(4917)] = 135200, + [SMALL_STATE(4918)] = 135213, + [SMALL_STATE(4919)] = 135226, + [SMALL_STATE(4920)] = 135239, + [SMALL_STATE(4921)] = 135252, + [SMALL_STATE(4922)] = 135265, + [SMALL_STATE(4923)] = 135278, + [SMALL_STATE(4924)] = 135291, + [SMALL_STATE(4925)] = 135304, + [SMALL_STATE(4926)] = 135317, + [SMALL_STATE(4927)] = 135330, + [SMALL_STATE(4928)] = 135343, + [SMALL_STATE(4929)] = 135354, + [SMALL_STATE(4930)] = 135367, + [SMALL_STATE(4931)] = 135380, + [SMALL_STATE(4932)] = 135393, + [SMALL_STATE(4933)] = 135406, + [SMALL_STATE(4934)] = 135419, + [SMALL_STATE(4935)] = 135432, + [SMALL_STATE(4936)] = 135445, + [SMALL_STATE(4937)] = 135458, + [SMALL_STATE(4938)] = 135471, + [SMALL_STATE(4939)] = 135484, + [SMALL_STATE(4940)] = 135497, + [SMALL_STATE(4941)] = 135510, + [SMALL_STATE(4942)] = 135521, + [SMALL_STATE(4943)] = 135534, + [SMALL_STATE(4944)] = 135547, + [SMALL_STATE(4945)] = 135560, + [SMALL_STATE(4946)] = 135573, + [SMALL_STATE(4947)] = 135586, + [SMALL_STATE(4948)] = 135599, + [SMALL_STATE(4949)] = 135612, + [SMALL_STATE(4950)] = 135625, + [SMALL_STATE(4951)] = 135638, + [SMALL_STATE(4952)] = 135651, + [SMALL_STATE(4953)] = 135664, + [SMALL_STATE(4954)] = 135677, + [SMALL_STATE(4955)] = 135690, + [SMALL_STATE(4956)] = 135703, + [SMALL_STATE(4957)] = 135714, + [SMALL_STATE(4958)] = 135727, + [SMALL_STATE(4959)] = 135740, + [SMALL_STATE(4960)] = 135753, + [SMALL_STATE(4961)] = 135766, + [SMALL_STATE(4962)] = 135779, + [SMALL_STATE(4963)] = 135792, + [SMALL_STATE(4964)] = 135805, + [SMALL_STATE(4965)] = 135818, + [SMALL_STATE(4966)] = 135831, + [SMALL_STATE(4967)] = 135844, + [SMALL_STATE(4968)] = 135857, + [SMALL_STATE(4969)] = 135870, + [SMALL_STATE(4970)] = 135883, + [SMALL_STATE(4971)] = 135896, + [SMALL_STATE(4972)] = 135909, + [SMALL_STATE(4973)] = 135922, + [SMALL_STATE(4974)] = 135935, + [SMALL_STATE(4975)] = 135948, + [SMALL_STATE(4976)] = 135961, + [SMALL_STATE(4977)] = 135974, + [SMALL_STATE(4978)] = 135987, + [SMALL_STATE(4979)] = 136000, + [SMALL_STATE(4980)] = 136013, + [SMALL_STATE(4981)] = 136026, + [SMALL_STATE(4982)] = 136039, + [SMALL_STATE(4983)] = 136052, + [SMALL_STATE(4984)] = 136063, + [SMALL_STATE(4985)] = 136076, + [SMALL_STATE(4986)] = 136089, + [SMALL_STATE(4987)] = 136102, + [SMALL_STATE(4988)] = 136115, + [SMALL_STATE(4989)] = 136128, + [SMALL_STATE(4990)] = 136141, + [SMALL_STATE(4991)] = 136154, + [SMALL_STATE(4992)] = 136167, + [SMALL_STATE(4993)] = 136180, + [SMALL_STATE(4994)] = 136191, + [SMALL_STATE(4995)] = 136204, + [SMALL_STATE(4996)] = 136217, + [SMALL_STATE(4997)] = 136230, + [SMALL_STATE(4998)] = 136243, + [SMALL_STATE(4999)] = 136256, + [SMALL_STATE(5000)] = 136269, + [SMALL_STATE(5001)] = 136282, + [SMALL_STATE(5002)] = 136293, + [SMALL_STATE(5003)] = 136304, + [SMALL_STATE(5004)] = 136317, + [SMALL_STATE(5005)] = 136330, + [SMALL_STATE(5006)] = 136343, + [SMALL_STATE(5007)] = 136356, + [SMALL_STATE(5008)] = 136369, + [SMALL_STATE(5009)] = 136382, + [SMALL_STATE(5010)] = 136395, + [SMALL_STATE(5011)] = 136408, + [SMALL_STATE(5012)] = 136421, + [SMALL_STATE(5013)] = 136434, + [SMALL_STATE(5014)] = 136447, + [SMALL_STATE(5015)] = 136460, + [SMALL_STATE(5016)] = 136473, + [SMALL_STATE(5017)] = 136486, + [SMALL_STATE(5018)] = 136499, + [SMALL_STATE(5019)] = 136512, + [SMALL_STATE(5020)] = 136525, + [SMALL_STATE(5021)] = 136538, + [SMALL_STATE(5022)] = 136551, + [SMALL_STATE(5023)] = 136564, + [SMALL_STATE(5024)] = 136577, + [SMALL_STATE(5025)] = 136590, + [SMALL_STATE(5026)] = 136603, + [SMALL_STATE(5027)] = 136616, + [SMALL_STATE(5028)] = 136629, + [SMALL_STATE(5029)] = 136642, + [SMALL_STATE(5030)] = 136655, + [SMALL_STATE(5031)] = 136668, + [SMALL_STATE(5032)] = 136681, + [SMALL_STATE(5033)] = 136694, + [SMALL_STATE(5034)] = 136707, + [SMALL_STATE(5035)] = 136720, + [SMALL_STATE(5036)] = 136733, + [SMALL_STATE(5037)] = 136746, + [SMALL_STATE(5038)] = 136759, + [SMALL_STATE(5039)] = 136772, + [SMALL_STATE(5040)] = 136785, + [SMALL_STATE(5041)] = 136798, + [SMALL_STATE(5042)] = 136809, + [SMALL_STATE(5043)] = 136822, + [SMALL_STATE(5044)] = 136835, + [SMALL_STATE(5045)] = 136848, + [SMALL_STATE(5046)] = 136861, + [SMALL_STATE(5047)] = 136874, + [SMALL_STATE(5048)] = 136887, + [SMALL_STATE(5049)] = 136898, + [SMALL_STATE(5050)] = 136911, + [SMALL_STATE(5051)] = 136924, + [SMALL_STATE(5052)] = 136937, + [SMALL_STATE(5053)] = 136950, + [SMALL_STATE(5054)] = 136963, + [SMALL_STATE(5055)] = 136976, + [SMALL_STATE(5056)] = 136989, + [SMALL_STATE(5057)] = 137002, + [SMALL_STATE(5058)] = 137015, + [SMALL_STATE(5059)] = 137028, + [SMALL_STATE(5060)] = 137041, + [SMALL_STATE(5061)] = 137054, + [SMALL_STATE(5062)] = 137067, + [SMALL_STATE(5063)] = 137080, + [SMALL_STATE(5064)] = 137093, + [SMALL_STATE(5065)] = 137106, + [SMALL_STATE(5066)] = 137119, + [SMALL_STATE(5067)] = 137132, + [SMALL_STATE(5068)] = 137145, + [SMALL_STATE(5069)] = 137158, + [SMALL_STATE(5070)] = 137171, + [SMALL_STATE(5071)] = 137184, + [SMALL_STATE(5072)] = 137197, + [SMALL_STATE(5073)] = 137210, + [SMALL_STATE(5074)] = 137223, + [SMALL_STATE(5075)] = 137236, + [SMALL_STATE(5076)] = 137249, + [SMALL_STATE(5077)] = 137262, + [SMALL_STATE(5078)] = 137275, + [SMALL_STATE(5079)] = 137288, + [SMALL_STATE(5080)] = 137301, + [SMALL_STATE(5081)] = 137311, + [SMALL_STATE(5082)] = 137321, + [SMALL_STATE(5083)] = 137331, + [SMALL_STATE(5084)] = 137341, + [SMALL_STATE(5085)] = 137351, + [SMALL_STATE(5086)] = 137361, + [SMALL_STATE(5087)] = 137371, + [SMALL_STATE(5088)] = 137381, + [SMALL_STATE(5089)] = 137391, + [SMALL_STATE(5090)] = 137401, + [SMALL_STATE(5091)] = 137411, + [SMALL_STATE(5092)] = 137421, + [SMALL_STATE(5093)] = 137431, + [SMALL_STATE(5094)] = 137441, + [SMALL_STATE(5095)] = 137451, + [SMALL_STATE(5096)] = 137461, + [SMALL_STATE(5097)] = 137471, + [SMALL_STATE(5098)] = 137481, + [SMALL_STATE(5099)] = 137491, + [SMALL_STATE(5100)] = 137501, + [SMALL_STATE(5101)] = 137511, + [SMALL_STATE(5102)] = 137521, + [SMALL_STATE(5103)] = 137531, + [SMALL_STATE(5104)] = 137541, + [SMALL_STATE(5105)] = 137551, + [SMALL_STATE(5106)] = 137561, + [SMALL_STATE(5107)] = 137571, + [SMALL_STATE(5108)] = 137581, + [SMALL_STATE(5109)] = 137591, + [SMALL_STATE(5110)] = 137601, + [SMALL_STATE(5111)] = 137611, + [SMALL_STATE(5112)] = 137621, + [SMALL_STATE(5113)] = 137631, + [SMALL_STATE(5114)] = 137641, + [SMALL_STATE(5115)] = 137651, + [SMALL_STATE(5116)] = 137661, + [SMALL_STATE(5117)] = 137671, + [SMALL_STATE(5118)] = 137681, + [SMALL_STATE(5119)] = 137691, + [SMALL_STATE(5120)] = 137701, + [SMALL_STATE(5121)] = 137711, + [SMALL_STATE(5122)] = 137721, + [SMALL_STATE(5123)] = 137731, + [SMALL_STATE(5124)] = 137741, + [SMALL_STATE(5125)] = 137751, + [SMALL_STATE(5126)] = 137761, + [SMALL_STATE(5127)] = 137771, + [SMALL_STATE(5128)] = 137781, + [SMALL_STATE(5129)] = 137791, + [SMALL_STATE(5130)] = 137801, + [SMALL_STATE(5131)] = 137811, + [SMALL_STATE(5132)] = 137821, + [SMALL_STATE(5133)] = 137831, + [SMALL_STATE(5134)] = 137841, + [SMALL_STATE(5135)] = 137851, + [SMALL_STATE(5136)] = 137861, + [SMALL_STATE(5137)] = 137871, + [SMALL_STATE(5138)] = 137881, + [SMALL_STATE(5139)] = 137891, + [SMALL_STATE(5140)] = 137901, + [SMALL_STATE(5141)] = 137911, + [SMALL_STATE(5142)] = 137921, + [SMALL_STATE(5143)] = 137931, + [SMALL_STATE(5144)] = 137941, + [SMALL_STATE(5145)] = 137951, + [SMALL_STATE(5146)] = 137961, + [SMALL_STATE(5147)] = 137971, + [SMALL_STATE(5148)] = 137981, + [SMALL_STATE(5149)] = 137991, + [SMALL_STATE(5150)] = 138001, + [SMALL_STATE(5151)] = 138011, + [SMALL_STATE(5152)] = 138021, + [SMALL_STATE(5153)] = 138031, + [SMALL_STATE(5154)] = 138041, + [SMALL_STATE(5155)] = 138051, + [SMALL_STATE(5156)] = 138061, + [SMALL_STATE(5157)] = 138071, + [SMALL_STATE(5158)] = 138081, + [SMALL_STATE(5159)] = 138091, + [SMALL_STATE(5160)] = 138101, + [SMALL_STATE(5161)] = 138111, + [SMALL_STATE(5162)] = 138121, + [SMALL_STATE(5163)] = 138131, + [SMALL_STATE(5164)] = 138141, + [SMALL_STATE(5165)] = 138151, + [SMALL_STATE(5166)] = 138161, + [SMALL_STATE(5167)] = 138171, + [SMALL_STATE(5168)] = 138181, + [SMALL_STATE(5169)] = 138191, + [SMALL_STATE(5170)] = 138201, + [SMALL_STATE(5171)] = 138211, + [SMALL_STATE(5172)] = 138221, + [SMALL_STATE(5173)] = 138231, + [SMALL_STATE(5174)] = 138241, + [SMALL_STATE(5175)] = 138251, + [SMALL_STATE(5176)] = 138261, + [SMALL_STATE(5177)] = 138271, + [SMALL_STATE(5178)] = 138281, + [SMALL_STATE(5179)] = 138291, + [SMALL_STATE(5180)] = 138301, + [SMALL_STATE(5181)] = 138311, + [SMALL_STATE(5182)] = 138321, + [SMALL_STATE(5183)] = 138331, + [SMALL_STATE(5184)] = 138341, + [SMALL_STATE(5185)] = 138351, + [SMALL_STATE(5186)] = 138361, + [SMALL_STATE(5187)] = 138371, + [SMALL_STATE(5188)] = 138381, + [SMALL_STATE(5189)] = 138391, + [SMALL_STATE(5190)] = 138401, + [SMALL_STATE(5191)] = 138411, + [SMALL_STATE(5192)] = 138421, + [SMALL_STATE(5193)] = 138431, + [SMALL_STATE(5194)] = 138441, + [SMALL_STATE(5195)] = 138451, + [SMALL_STATE(5196)] = 138461, + [SMALL_STATE(5197)] = 138471, + [SMALL_STATE(5198)] = 138481, + [SMALL_STATE(5199)] = 138491, + [SMALL_STATE(5200)] = 138501, + [SMALL_STATE(5201)] = 138511, + [SMALL_STATE(5202)] = 138521, + [SMALL_STATE(5203)] = 138531, + [SMALL_STATE(5204)] = 138541, + [SMALL_STATE(5205)] = 138551, + [SMALL_STATE(5206)] = 138561, + [SMALL_STATE(5207)] = 138571, + [SMALL_STATE(5208)] = 138581, + [SMALL_STATE(5209)] = 138591, + [SMALL_STATE(5210)] = 138601, + [SMALL_STATE(5211)] = 138611, + [SMALL_STATE(5212)] = 138621, + [SMALL_STATE(5213)] = 138631, + [SMALL_STATE(5214)] = 138641, + [SMALL_STATE(5215)] = 138651, + [SMALL_STATE(5216)] = 138661, + [SMALL_STATE(5217)] = 138671, + [SMALL_STATE(5218)] = 138681, + [SMALL_STATE(5219)] = 138691, + [SMALL_STATE(5220)] = 138701, + [SMALL_STATE(5221)] = 138711, + [SMALL_STATE(5222)] = 138721, + [SMALL_STATE(5223)] = 138731, + [SMALL_STATE(5224)] = 138741, + [SMALL_STATE(5225)] = 138751, + [SMALL_STATE(5226)] = 138761, + [SMALL_STATE(5227)] = 138771, + [SMALL_STATE(5228)] = 138781, + [SMALL_STATE(5229)] = 138791, + [SMALL_STATE(5230)] = 138801, + [SMALL_STATE(5231)] = 138811, + [SMALL_STATE(5232)] = 138821, + [SMALL_STATE(5233)] = 138831, + [SMALL_STATE(5234)] = 138841, + [SMALL_STATE(5235)] = 138851, + [SMALL_STATE(5236)] = 138861, + [SMALL_STATE(5237)] = 138871, + [SMALL_STATE(5238)] = 138881, + [SMALL_STATE(5239)] = 138891, + [SMALL_STATE(5240)] = 138901, + [SMALL_STATE(5241)] = 138911, + [SMALL_STATE(5242)] = 138921, + [SMALL_STATE(5243)] = 138931, + [SMALL_STATE(5244)] = 138941, + [SMALL_STATE(5245)] = 138951, + [SMALL_STATE(5246)] = 138961, + [SMALL_STATE(5247)] = 138971, + [SMALL_STATE(5248)] = 138981, + [SMALL_STATE(5249)] = 138991, + [SMALL_STATE(5250)] = 139001, + [SMALL_STATE(5251)] = 139011, + [SMALL_STATE(5252)] = 139021, + [SMALL_STATE(5253)] = 139031, + [SMALL_STATE(5254)] = 139041, + [SMALL_STATE(5255)] = 139051, + [SMALL_STATE(5256)] = 139061, + [SMALL_STATE(5257)] = 139071, + [SMALL_STATE(5258)] = 139081, + [SMALL_STATE(5259)] = 139091, + [SMALL_STATE(5260)] = 139101, + [SMALL_STATE(5261)] = 139111, + [SMALL_STATE(5262)] = 139121, + [SMALL_STATE(5263)] = 139131, + [SMALL_STATE(5264)] = 139141, + [SMALL_STATE(5265)] = 139151, + [SMALL_STATE(5266)] = 139161, + [SMALL_STATE(5267)] = 139171, + [SMALL_STATE(5268)] = 139181, + [SMALL_STATE(5269)] = 139191, + [SMALL_STATE(5270)] = 139201, + [SMALL_STATE(5271)] = 139211, + [SMALL_STATE(5272)] = 139221, + [SMALL_STATE(5273)] = 139231, + [SMALL_STATE(5274)] = 139241, + [SMALL_STATE(5275)] = 139251, + [SMALL_STATE(5276)] = 139261, + [SMALL_STATE(5277)] = 139271, + [SMALL_STATE(5278)] = 139281, + [SMALL_STATE(5279)] = 139291, + [SMALL_STATE(5280)] = 139301, + [SMALL_STATE(5281)] = 139311, + [SMALL_STATE(5282)] = 139321, + [SMALL_STATE(5283)] = 139331, + [SMALL_STATE(5284)] = 139341, + [SMALL_STATE(5285)] = 139351, + [SMALL_STATE(5286)] = 139361, + [SMALL_STATE(5287)] = 139371, + [SMALL_STATE(5288)] = 139381, + [SMALL_STATE(5289)] = 139391, + [SMALL_STATE(5290)] = 139401, + [SMALL_STATE(5291)] = 139411, + [SMALL_STATE(5292)] = 139421, + [SMALL_STATE(5293)] = 139431, + [SMALL_STATE(5294)] = 139441, + [SMALL_STATE(5295)] = 139451, + [SMALL_STATE(5296)] = 139461, + [SMALL_STATE(5297)] = 139471, + [SMALL_STATE(5298)] = 139481, + [SMALL_STATE(5299)] = 139491, + [SMALL_STATE(5300)] = 139501, + [SMALL_STATE(5301)] = 139511, + [SMALL_STATE(5302)] = 139521, + [SMALL_STATE(5303)] = 139531, + [SMALL_STATE(5304)] = 139541, + [SMALL_STATE(5305)] = 139551, + [SMALL_STATE(5306)] = 139561, + [SMALL_STATE(5307)] = 139571, + [SMALL_STATE(5308)] = 139581, + [SMALL_STATE(5309)] = 139591, + [SMALL_STATE(5310)] = 139601, + [SMALL_STATE(5311)] = 139611, + [SMALL_STATE(5312)] = 139621, + [SMALL_STATE(5313)] = 139631, + [SMALL_STATE(5314)] = 139641, + [SMALL_STATE(5315)] = 139651, + [SMALL_STATE(5316)] = 139661, + [SMALL_STATE(5317)] = 139671, + [SMALL_STATE(5318)] = 139681, + [SMALL_STATE(5319)] = 139691, + [SMALL_STATE(5320)] = 139701, + [SMALL_STATE(5321)] = 139711, + [SMALL_STATE(5322)] = 139721, + [SMALL_STATE(5323)] = 139731, + [SMALL_STATE(5324)] = 139741, + [SMALL_STATE(5325)] = 139751, + [SMALL_STATE(5326)] = 139761, + [SMALL_STATE(5327)] = 139771, + [SMALL_STATE(5328)] = 139781, + [SMALL_STATE(5329)] = 139791, + [SMALL_STATE(5330)] = 139801, + [SMALL_STATE(5331)] = 139811, + [SMALL_STATE(5332)] = 139821, + [SMALL_STATE(5333)] = 139831, + [SMALL_STATE(5334)] = 139841, + [SMALL_STATE(5335)] = 139851, + [SMALL_STATE(5336)] = 139861, + [SMALL_STATE(5337)] = 139871, + [SMALL_STATE(5338)] = 139881, + [SMALL_STATE(5339)] = 139891, + [SMALL_STATE(5340)] = 139901, + [SMALL_STATE(5341)] = 139911, + [SMALL_STATE(5342)] = 139921, + [SMALL_STATE(5343)] = 139931, + [SMALL_STATE(5344)] = 139941, + [SMALL_STATE(5345)] = 139951, + [SMALL_STATE(5346)] = 139961, + [SMALL_STATE(5347)] = 139971, + [SMALL_STATE(5348)] = 139981, + [SMALL_STATE(5349)] = 139991, + [SMALL_STATE(5350)] = 140001, + [SMALL_STATE(5351)] = 140011, + [SMALL_STATE(5352)] = 140021, + [SMALL_STATE(5353)] = 140031, + [SMALL_STATE(5354)] = 140041, + [SMALL_STATE(5355)] = 140051, + [SMALL_STATE(5356)] = 140061, + [SMALL_STATE(5357)] = 140071, + [SMALL_STATE(5358)] = 140081, + [SMALL_STATE(5359)] = 140091, + [SMALL_STATE(5360)] = 140101, + [SMALL_STATE(5361)] = 140111, + [SMALL_STATE(5362)] = 140121, + [SMALL_STATE(5363)] = 140131, + [SMALL_STATE(5364)] = 140141, + [SMALL_STATE(5365)] = 140151, + [SMALL_STATE(5366)] = 140161, + [SMALL_STATE(5367)] = 140171, + [SMALL_STATE(5368)] = 140181, + [SMALL_STATE(5369)] = 140191, + [SMALL_STATE(5370)] = 140201, + [SMALL_STATE(5371)] = 140211, + [SMALL_STATE(5372)] = 140221, + [SMALL_STATE(5373)] = 140231, + [SMALL_STATE(5374)] = 140241, + [SMALL_STATE(5375)] = 140251, + [SMALL_STATE(5376)] = 140261, + [SMALL_STATE(5377)] = 140271, + [SMALL_STATE(5378)] = 140281, + [SMALL_STATE(5379)] = 140291, + [SMALL_STATE(5380)] = 140301, + [SMALL_STATE(5381)] = 140311, + [SMALL_STATE(5382)] = 140321, + [SMALL_STATE(5383)] = 140331, + [SMALL_STATE(5384)] = 140341, + [SMALL_STATE(5385)] = 140351, + [SMALL_STATE(5386)] = 140361, + [SMALL_STATE(5387)] = 140371, + [SMALL_STATE(5388)] = 140381, + [SMALL_STATE(5389)] = 140391, + [SMALL_STATE(5390)] = 140401, + [SMALL_STATE(5391)] = 140411, + [SMALL_STATE(5392)] = 140421, + [SMALL_STATE(5393)] = 140431, + [SMALL_STATE(5394)] = 140441, + [SMALL_STATE(5395)] = 140451, + [SMALL_STATE(5396)] = 140461, + [SMALL_STATE(5397)] = 140471, + [SMALL_STATE(5398)] = 140481, + [SMALL_STATE(5399)] = 140491, + [SMALL_STATE(5400)] = 140501, + [SMALL_STATE(5401)] = 140511, + [SMALL_STATE(5402)] = 140521, + [SMALL_STATE(5403)] = 140531, + [SMALL_STATE(5404)] = 140541, + [SMALL_STATE(5405)] = 140551, + [SMALL_STATE(5406)] = 140561, + [SMALL_STATE(5407)] = 140571, + [SMALL_STATE(5408)] = 140581, + [SMALL_STATE(5409)] = 140591, + [SMALL_STATE(5410)] = 140601, + [SMALL_STATE(5411)] = 140611, + [SMALL_STATE(5412)] = 140621, + [SMALL_STATE(5413)] = 140631, + [SMALL_STATE(5414)] = 140641, + [SMALL_STATE(5415)] = 140651, + [SMALL_STATE(5416)] = 140661, + [SMALL_STATE(5417)] = 140671, + [SMALL_STATE(5418)] = 140681, + [SMALL_STATE(5419)] = 140691, + [SMALL_STATE(5420)] = 140701, + [SMALL_STATE(5421)] = 140711, + [SMALL_STATE(5422)] = 140721, + [SMALL_STATE(5423)] = 140731, + [SMALL_STATE(5424)] = 140741, + [SMALL_STATE(5425)] = 140751, + [SMALL_STATE(5426)] = 140761, + [SMALL_STATE(5427)] = 140771, + [SMALL_STATE(5428)] = 140781, + [SMALL_STATE(5429)] = 140791, + [SMALL_STATE(5430)] = 140801, + [SMALL_STATE(5431)] = 140811, + [SMALL_STATE(5432)] = 140821, + [SMALL_STATE(5433)] = 140831, + [SMALL_STATE(5434)] = 140841, + [SMALL_STATE(5435)] = 140851, + [SMALL_STATE(5436)] = 140861, + [SMALL_STATE(5437)] = 140871, + [SMALL_STATE(5438)] = 140881, + [SMALL_STATE(5439)] = 140891, + [SMALL_STATE(5440)] = 140901, + [SMALL_STATE(5441)] = 140911, + [SMALL_STATE(5442)] = 140921, + [SMALL_STATE(5443)] = 140931, + [SMALL_STATE(5444)] = 140941, + [SMALL_STATE(5445)] = 140951, + [SMALL_STATE(5446)] = 140961, + [SMALL_STATE(5447)] = 140971, + [SMALL_STATE(5448)] = 140981, + [SMALL_STATE(5449)] = 140991, + [SMALL_STATE(5450)] = 141001, + [SMALL_STATE(5451)] = 141011, + [SMALL_STATE(5452)] = 141021, + [SMALL_STATE(5453)] = 141031, + [SMALL_STATE(5454)] = 141041, + [SMALL_STATE(5455)] = 141051, + [SMALL_STATE(5456)] = 141061, + [SMALL_STATE(5457)] = 141071, + [SMALL_STATE(5458)] = 141081, + [SMALL_STATE(5459)] = 141091, + [SMALL_STATE(5460)] = 141101, + [SMALL_STATE(5461)] = 141111, + [SMALL_STATE(5462)] = 141121, + [SMALL_STATE(5463)] = 141131, + [SMALL_STATE(5464)] = 141141, + [SMALL_STATE(5465)] = 141151, + [SMALL_STATE(5466)] = 141161, + [SMALL_STATE(5467)] = 141171, + [SMALL_STATE(5468)] = 141181, + [SMALL_STATE(5469)] = 141191, + [SMALL_STATE(5470)] = 141201, + [SMALL_STATE(5471)] = 141211, + [SMALL_STATE(5472)] = 141221, + [SMALL_STATE(5473)] = 141231, + [SMALL_STATE(5474)] = 141241, + [SMALL_STATE(5475)] = 141251, + [SMALL_STATE(5476)] = 141261, + [SMALL_STATE(5477)] = 141271, + [SMALL_STATE(5478)] = 141281, + [SMALL_STATE(5479)] = 141291, + [SMALL_STATE(5480)] = 141301, + [SMALL_STATE(5481)] = 141311, + [SMALL_STATE(5482)] = 141321, + [SMALL_STATE(5483)] = 141331, + [SMALL_STATE(5484)] = 141341, + [SMALL_STATE(5485)] = 141351, + [SMALL_STATE(5486)] = 141361, + [SMALL_STATE(5487)] = 141371, + [SMALL_STATE(5488)] = 141381, + [SMALL_STATE(5489)] = 141391, + [SMALL_STATE(5490)] = 141401, + [SMALL_STATE(5491)] = 141411, + [SMALL_STATE(5492)] = 141421, + [SMALL_STATE(5493)] = 141431, + [SMALL_STATE(5494)] = 141441, + [SMALL_STATE(5495)] = 141451, + [SMALL_STATE(5496)] = 141461, + [SMALL_STATE(5497)] = 141471, + [SMALL_STATE(5498)] = 141481, + [SMALL_STATE(5499)] = 141491, + [SMALL_STATE(5500)] = 141501, + [SMALL_STATE(5501)] = 141511, + [SMALL_STATE(5502)] = 141521, + [SMALL_STATE(5503)] = 141531, + [SMALL_STATE(5504)] = 141541, + [SMALL_STATE(5505)] = 141551, + [SMALL_STATE(5506)] = 141561, + [SMALL_STATE(5507)] = 141571, + [SMALL_STATE(5508)] = 141581, + [SMALL_STATE(5509)] = 141591, + [SMALL_STATE(5510)] = 141601, + [SMALL_STATE(5511)] = 141611, }; 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(5019), + [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5383), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 0, 0, 0), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5348), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3828), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3066), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4738), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4723), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4999), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4999), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3772), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5342), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5249), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3893), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3192), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4799), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4789), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5469), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4883), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5469), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5374), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3832), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5176), [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5114), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5181), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5239), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5019), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5120), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3779), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), - [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4940), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4940), - [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), - [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3764), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4781), - [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), - [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5336), - [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), - [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5117), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3800), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5105), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5275), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5302), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5383), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5267), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3822), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2993), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4946), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4946), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3809), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4951), + [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), + [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5085), + [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5363), [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5068), - [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), - [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), - [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5256), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), - [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), - [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5253), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3746), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), - [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3790), - [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), - [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), - [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), - [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), - [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), - [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), - [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5198), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4531), - [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5198), - [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5318), - [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4676), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), - [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), - [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3890), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), - [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4399), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4677), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), - [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4765), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 1, 0, 0), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5123), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5378), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5335), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4743), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 1, 0, 0), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3880), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 1, 0, 0), - [463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3886), - [466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1785), - [469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4037), - [472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4038), - [475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4039), - [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2928), - [481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1709), - [484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1918), - [487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4675), - [490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1762), - [493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1773), - [496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4050), - [499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4600), - [502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1141), - [505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(918), - [508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5198), - [511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4164), - [514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1360), - [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5198), - [520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1119), - [523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1120), - [526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1121), - [529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5195), - [532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(340), - [535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(28), - [538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3746), - [541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5318), - [544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7), - [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3667), - [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2295), - [553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3530), - [556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3689), - [559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(103), - [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(103), - [565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(117), - [568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(699), - [571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(681), - [574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5068), - [577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(946), - [580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4054), - [583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5255), - [586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5256), - [589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4108), - [592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3939), - [595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1461), - [598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5253), - [601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3883), - [604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1781), - [607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4033), - [610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4034), - [613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4035), - [616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2928), - [619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1709), - [622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1918), - [625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4675), - [628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1762), - [631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1773), - [634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4050), - [637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4600), - [640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1141), - [643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1269), - [646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5198), - [649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4531), - [652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1360), - [655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5198), - [658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1119), - [661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1120), - [664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1121), - [667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5195), - [670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(340), - [673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(28), - [676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3746), - [679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5318), - [682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7), - [685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3667), - [688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2297), - [691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3530), - [694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3689), - [697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(103), - [700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(103), - [703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(117), - [706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(699), - [709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(681), - [712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5068), - [715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(946), - [718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4054), - [721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5255), - [724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5256), - [727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4108), - [730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3939), - [733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1458), - [736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5253), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5200), + [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), + [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5387), + [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5388), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), + [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5385), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3813), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3856), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), + [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4704), + [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4267), + [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4837), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5307), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4863), + [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5307), + [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5450), + [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), + [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4736), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3906), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3590), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2410), + [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), + [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5266), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 1, 0, 0), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4743), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4902), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5340), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5091), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4792), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), + [447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 1, 0, 0), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3950), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [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(3953), + [466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1770), + [469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4162), + [472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4163), + [475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4164), + [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2937), + [481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1685), + [484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1944), + [487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4704), + [490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1744), + [493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1745), + [496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4267), + [499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4837), + [502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1159), + [505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1272), + [508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5307), + [511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4863), + [514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1364), + [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5307), + [520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(996), + [523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1001), + [526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1066), + [529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5374), + [532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(350), + [535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(34), + [538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3813), + [541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5450), + [544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4), + [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3723), + [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2328), + [553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3605), + [556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3728), + [559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(111), + [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(111), + [565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(123), + [568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(712), + [571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(716), + [574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5200), + [577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(970), + [580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4315), + [583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5387), + [586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5388), + [589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4186), + [592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4043), + [595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1455), + [598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5385), + [601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3955), + [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(4166), + [610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4167), + [613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4168), + [616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2937), + [619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1685), + [622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1944), + [625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4704), + [628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1744), + [631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1745), + [634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4267), + [637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4837), + [640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1159), + [643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(930), + [646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5307), + [649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4221), + [652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1364), + [655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5307), + [658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(996), + [661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1001), + [664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1066), + [667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5374), + [670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(350), + [673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(34), + [676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3813), + [679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5450), + [682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4), + [685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3723), + [688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2292), + [691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3605), + [694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3728), + [697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(111), + [700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(111), + [703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(123), + [706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(712), + [709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(716), + [712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5200), + [715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(970), + [718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4315), + [721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5387), + [724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5388), + [727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4186), + [730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4043), + [733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1450), + [736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5385), [739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 2, 0, 0), [741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), - [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), [747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), [749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [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(109), - [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2813), - [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), - [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3021), - [801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 1, 0, 0), REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 1, 0, 0), - [804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 1, 0, 0), - [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), - [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), - [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3776), - [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2703), - [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), - [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), - [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), - [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), - [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3584), - [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5189), - [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), - [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), - [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), - [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3000), - [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5267), - [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), - [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4103), - [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5275), - [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5276), - [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4094), - [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3985), - [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), - [850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 1, 0, 0), - [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5258), - [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), - [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5274), - [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 4, 0, 0), - [862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 4, 0, 0), - [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number, 1, 0, 0), - [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4949), - [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4949), - [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), - [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), - [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 1, 0, 0), - [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number, 1, 0, 0), - [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4956), - [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4956), - [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), - [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5250), - [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5250), - [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2917), - [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), - [918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), - [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), - [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), - [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), - [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), - [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3754), - [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2804), - [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2864), - [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), - [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3626), - [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), - [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), - [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5180), - [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), - [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), - [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3349), - [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), - [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5254), - [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2950), - [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4081), - [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5268), - [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5269), - [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4070), - [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3975), - [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), - [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5217), - [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3026), - [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5266), - [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_duration, 2, 0, 32), - [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), - [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5331), - [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2987), - [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), - [1004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3762), - [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), - [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3755), - [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [1020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 2, 0, 32), - [1022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 2, 0, 32), - [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5132), - [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5132), - [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3150), - [1030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_duration, 2, 0, 32), - [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5072), - [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5072), - [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2961), - [1038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5198), - [1041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5198), - [1044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4087), - [1047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2928), - [1050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(971), - [1053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4164), - [1056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1360), - [1059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1119), - [1062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1120), - [1065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1121), - [1068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(340), - [1071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(28), - [1074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3762), - [1077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5318), - [1080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7), - [1083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3667), - [1086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2295), - [1089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3530), - [1092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3689), - [1095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(128), - [1098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(128), - [1101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(136), - [1104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(699), - [1107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(681), - [1110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5068), - [1113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(946), - [1116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4054), - [1119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5255), - [1122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5256), - [1125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4108), - [1128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3939), - [1131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1461), - [1134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5253), - [1137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5198), - [1140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5198), - [1143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4087), - [1146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2928), - [1149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1268), - [1152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4531), - [1155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1360), - [1158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1119), - [1161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1120), - [1164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1121), - [1167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(340), - [1170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(28), - [1173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3762), - [1176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5318), - [1179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7), - [1182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3667), - [1185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2297), - [1188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3530), - [1191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3689), - [1194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(128), - [1197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(128), - [1200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(136), - [1203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(699), - [1206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(681), - [1209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5068), - [1212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(946), - [1215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4054), - [1218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5255), - [1221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5256), - [1224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4108), - [1227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3939), - [1230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1458), - [1233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5253), - [1236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4072), - [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4073), - [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4230), - [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3957), - [1244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4006), - [1246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3578), - [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), - [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), - [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), - [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4092), - [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [1266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [1280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [1290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 3, 0, 0), + [769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 3, 0, 0), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), + [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), + [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), + [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(357), + [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), + [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), + [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), + [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2679), + [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), + [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), + [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), + [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), + [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5082), + [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), + [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), + [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3226), + [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2927), + [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5399), + [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2841), + [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4218), + [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5407), + [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5408), + [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4204), + [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4104), + [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5390), + [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2997), + [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5406), + [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number, 1, 0, 0), + [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5111), + [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5111), + [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2919), + [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 4, 0, 0), + [865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 4, 0, 0), + [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 1, 0, 0), REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 1, 0, 0), + [880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 1, 0, 0), + [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5369), + [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5369), + [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), + [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2967), + [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2950), + [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), + [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), + [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3824), + [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), + [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2888), + [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), + [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3665), + [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), + [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3666), + [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5103), + [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), + [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), + [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3268), + [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3187), + [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5386), + [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3015), + [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4194), + [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5400), + [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5401), + [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4182), + [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4094), + [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5349), + [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3188), + [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5398), + [964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), + [966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), + [968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number, 1, 0, 0), + [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5480), + [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5480), + [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), + [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), + [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3827), + [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), + [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3849), + [1012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 2, 0, 32), + [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5451), + [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5451), + [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), + [1020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_duration, 2, 0, 32), + [1022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5307), + [1025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5307), + [1028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4299), + [1031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2937), + [1034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1271), + [1037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4863), + [1040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1364), + [1043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(996), + [1046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1001), + [1049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1066), + [1052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(350), + [1055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(34), + [1058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3827), + [1061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5450), + [1064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4), + [1067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3723), + [1070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2328), + [1073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3605), + [1076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3728), + [1079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(121), + [1082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(121), + [1085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(134), + [1088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(712), + [1091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(716), + [1094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5200), + [1097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(970), + [1100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4315), + [1103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5387), + [1106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5388), + [1109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4186), + [1112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4043), + [1115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1455), + [1118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5385), + [1121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5307), + [1124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5307), + [1127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4299), + [1130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2937), + [1133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(975), + [1136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4221), + [1139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1364), + [1142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(996), + [1145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1001), + [1148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1066), + [1151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(350), + [1154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(34), + [1157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3827), + [1160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5450), + [1163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4), + [1166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3723), + [1169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2292), + [1172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3605), + [1175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3728), + [1178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(121), + [1181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(121), + [1184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(134), + [1187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(712), + [1190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(716), + [1193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5200), + [1196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(970), + [1199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4315), + [1202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5387), + [1205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5388), + [1208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4186), + [1211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4043), + [1214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1450), + [1217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5385), + [1220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5251), + [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5251), + [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2956), + [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 2, 0, 32), + [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5226), + [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5226), + [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), + [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_duration, 2, 0, 32), + [1236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4224), + [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4235), + [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4350), + [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4056), + [1244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4129), + [1246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3670), + [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), + [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3502), + [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), + [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4233), + [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [1268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [1274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [1280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [1294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [1306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [1340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [1338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), - [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), - [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), - [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), + [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), + [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), + [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), - [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4322), - [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3784), + [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), + [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4441), + [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3817), [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3406), - [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), - [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), - [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), - [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), - [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), - [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4148), - [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5212), - [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), - [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), - [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), - [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5265), - [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), - [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), - [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4300), - [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), - [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), - [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), - [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 2, 0, 22), - [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 2, 0, 22), - [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3617), - [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__path_suffix, 1, 0, 0), - [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__path_suffix, 1, 0, 0), - [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), - [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 0), - [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 0), - [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4161), - [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), - [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4760), - [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), - [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [1484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3648), - [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), - [1488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), - [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), - [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), - [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__path_suffix, 2, 0, 0), - [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__path_suffix, 2, 0, 0), - [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), - [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cell_path, 1, 0, 0), - [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cell_path, 1, 0, 0), - [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), - [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), - [1512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3601), - [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), - [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), - [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_string, 1, 0, 0), - [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_string, 1, 0, 0), - [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 2, 0, 0), - [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 2, 0, 0), - [1527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__raw_str, 3, 0, 0), - [1529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__raw_str, 3, 0, 0), - [1531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 3, 0, 0), - [1533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 3, 0, 0), - [1535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_single_quotes, 3, 0, 0), - [1537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_single_quotes, 3, 0, 0), - [1539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_back_ticks, 3, 0, 0), - [1541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_back_ticks, 3, 0, 0), - [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [1547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 1, 0, 0), - [1549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 1, 0, 0), - [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), - [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), - [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [1557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3617), - [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [1562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, 0, 0), - [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, 0, 0), - [1566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), - [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), - [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [1580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 3, 0, 22), - [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 3, 0, 22), - [1584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), - [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), - [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), - [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), - [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 31), - [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), - [1602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 31), - [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [1606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), - [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [1614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value, 1, 0, 0), - [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 1, 0, 20), - [1618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), - [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [1630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3574), - [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), - [1635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 2, 0, 0), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), - [1639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 30), - [1641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 30), - [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [1645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), - [1647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), - [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), - [1651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 130), - [1653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 130), - [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [1657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), - [1659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), - [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [1663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 129), - [1665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 129), - [1667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 127), - [1669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 127), - [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [1679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 4, 0, 0), - [1681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 128), - [1683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 128), - [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), - [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), - [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), - [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value, 1, 0, 0), - [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), - [1721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3569), - [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [1726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), - [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [1734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [1736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [1744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), - [1746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), - [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), - [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [1762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [1766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), - [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 2, 0, 0), - [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [1778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5355), - [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4833), - [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [1790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4463), - [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), - [1794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), - [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), - [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5069), - [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5070), - [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5064), - [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), - [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), - [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), - [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), - [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), - [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), - [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), - [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4394), - [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), - [1840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), - [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), - [1848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [1852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 3, 0, 0), - [1854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 3, 0, 0), - [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), - [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), - [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 3, 0, 0), - [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 3, 0, 0), - [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), - [1868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), - [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}}, SHIFT(719), - [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), - [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), - [1882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), - [1885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), - [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 3, 0, 48), - [1890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 3, 0, 48), - [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), - [1894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), - [1896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 101), - [1898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 101), - [1900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 2, 0, 0), - [1902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 2, 0, 0), - [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [1908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [1912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 3, 0, 0), - [1914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 3, 0, 0), - [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [1924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), - [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), - [1928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), - [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [1944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), - [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), - [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [1956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 24), - [1958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 24), - [1960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 2, 0, 0), - [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3662), - [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), - [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), - [1968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(696), - [1971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), - [1973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 79), - [1975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 79), - [1977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 3, 0, 0), - [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [1983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 3, 0, 0), - [1985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4161), - [1988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4318), - [1991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4760), - [1994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(344), - [1997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(31), - [2000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3784), - [2003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5), - [2006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3648), - [2009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(35), - [2012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3650), - [2015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5117), - [2018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3384), - [2021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3384), - [2024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3534), - [2027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4383), - [2030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4148), - [2033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5212), - [2036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4320), - [2039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4069), - [2042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5264), - [2045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5265), - [2048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4055), - [2051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3967), - [2054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(399), - [2057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4300), - [2060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5262), - [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), - [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [2083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3591), - [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [2088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 1, 0, 0), - [2090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 1, 0, 0), - [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), - [2094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3738), - [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), - [2098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 75), - [2100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 75), - [2102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 76), - [2104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 76), - [2106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [2110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 77), - [2112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 77), - [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [2118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 78), - [2120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 78), - [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [2126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [2130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), - [2132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), - [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 2, 0, 0), - [2144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 2, 0, 0), - [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}}, SHIFT(800), - [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 23), - [2156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 23), - [2158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3724), - [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), - [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), - [2164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), - [2166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), - [2168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), - [2170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_number, 1, 0, 0), - [2172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_number, 1, 0, 0), - [2174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 1, 0, 0), - [2176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 1, 0, 0), - [2178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 105), - [2180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 105), - [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [2184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 105), - [2186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 105), - [2188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), - [2190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), - [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3728), - [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), - [2196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 3, 0, 0), - [2198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 3, 0, 0), - [2200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 30), - [2202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 30), - [2204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 48), - [2206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 48), - [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), - [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), - [2218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), - [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [2226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), - [2228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 116), - [2230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 116), - [2232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 117), - [2234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 117), - [2236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 118), - [2238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 118), - [2240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 4, 0, 124), - [2242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 4, 0, 124), - [2244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 101), - [2246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 101), - [2248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 157), - [2250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 157), - [2252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 158), - [2254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 158), - [2256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 159), - [2258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 159), - [2260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 160), - [2262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 160), - [2264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 161), - [2266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 161), - [2268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 162), - [2270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 162), - [2272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 163), - [2274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 163), - [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_interpolated, 1, 0, 4), - [2278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_interpolated, 1, 0, 4), - [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), - [2282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), - [2284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), - [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), - [2288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), - [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 3, 0, 62), - [2292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 3, 0, 62), - [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 3, 0, 62), - [2296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 3, 0, 62), - [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), - [2300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), - [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 75), - [2304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 75), - [2306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), - [2309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), - [2311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [2319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), - [2321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [2327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 150), - [2329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 150), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [2337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 152), - [2339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 152), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [2347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), - [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [2359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4940), - [2362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4940), - [2365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(2926), - [2368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5355), - [2371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4833), - [2374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(51), - [2377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4394), - [2380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5336), - [2383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(35), - [2386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5117), - [2389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(1905), - [2392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(1905), - [2395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(1920), - [2398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(699), - [2401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4056), - [2404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5069), - [2407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5070), - [2410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4108), - [2413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3939), - [2416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(459), - [2419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5064), - [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [2428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), - [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), - [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), - [2434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), - [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [2442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 192), - [2444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 192), - [2446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4940), - [2449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4940), - [2452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(2926), - [2455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5355), - [2458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4833), - [2461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(51), - [2464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4463), - [2467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5336), - [2470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(35), - [2473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5117), - [2476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(1905), - [2479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(1905), - [2482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(1920), - [2485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(699), - [2488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4056), - [2491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5069), - [2494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5070), - [2497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4108), - [2500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3939), - [2503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(459), - [2506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5064), - [2509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), - [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), - [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [2515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), - [2517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), - [2519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(696), - [2522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(1114), - [2525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_bool, 1, 0, 0), - [2527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_bool, 1, 0, 0), - [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 2, 0, 0), - [2531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 2, 0, 0), - [2533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 60), - [2535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 60), - [2537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 4, 0, 0), - [2539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 4, 0, 0), - [2541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 119), - [2543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 119), - [2545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), - [2547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), - [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [2551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 74), - [2553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 74), - [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2996), - [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), - [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), - [2561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), - [2567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), - [2569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), - [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [2573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 5, 0, 114), - [2575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 5, 0, 114), - [2577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [2581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 0), - [2583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 0), - [2585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [2589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 164), - [2591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 164), - [2593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 60), - [2595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 60), - [2597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 31), - [2599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 31), - [2601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), - [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [2605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(1132), - [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 114), - [2610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 114), - [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 5), - [2614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 5), - [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 1, 0, 0), - [2618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 1, 0, 0), - [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 4, 0, 0), - [2622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 4, 0, 0), - [2624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), - [2628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3711), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), - [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_cellpath, 2, 0, 0), - [2634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_cellpath, 2, 0, 0), - [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 2, 0, 0), - [2638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 2, 0, 0), - [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [2642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 4, 0, 0), - [2644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 5, 0, 0), - [2646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 5, 0, 0), - [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 1, 0, 0), - [2650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 1, 0, 0), - [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), - [2654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), - [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 42), - [2658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 42), - [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), - [2662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), - [2664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 0), - [2666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 0), - [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [2678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), - [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), - [2682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2930), - [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), - [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [2696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3747), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [2700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), - [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), - [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), - [2706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [2716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 75), - [2718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 75), - [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 149), - [2722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 149), - [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 74), - [2726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 74), - [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), - [2730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 151), - [2732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 151), - [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 150), - [2736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 150), - [2738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 149), - [2740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 149), - [2742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 152), - [2744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 152), - [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 191), - [2748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 191), - [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 151), - [2752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 151), - [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 74), - [2756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 74), - [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 192), - [2760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 192), - [2762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 191), - [2764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 191), - [2766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), - [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), - [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), - [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [2780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3785), - [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [2784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), - [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), - [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), - [2790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), - [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), - [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [2798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), - [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), - [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [2804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 149), SHIFT(696), - [2807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [2811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [2819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [2823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), - [2831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 151), SHIFT(696), - [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4564), - [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [2838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [2846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), - [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [2860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 74), SHIFT(696), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), - [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), - [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4159), - [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), - [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), - [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), - [2879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4668), - [2881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [2885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), - [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), - [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), - [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [2911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [2915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [2923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [2941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 191), SHIFT(696), - [2944] = {.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), - [2948] = {.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), - [2952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [2955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [2958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), - [2960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), - [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), - [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), - [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), - [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), - [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [2978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), - [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [2982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), - [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), - [2986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), - [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [2994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), - [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5271), - [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), - [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5287), - [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5288), - [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), - [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), - [3010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), - [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5286), - [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [3020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [3042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3701), - [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), - [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [3048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4832), - [3050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4946), - [3052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4936), - [3054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3635), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), - [3058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), - [3060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3750), - [3062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4816), - [3064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(1376), - [3067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), - [3069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), - [3071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1371), - [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), - [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), - [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), - [3080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), - [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), - [3084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), - [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), - [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), - [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), - [3092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4102), - [3094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), - [3096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), - [3098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 3, 0, 0), - [3100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 2, 0, 0), - [3102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 4, 0, 0), - [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), - [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), - [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), - [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [3112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5332), - [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [3116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3981), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), - [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), - [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), - [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5275), - [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5276), - [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), - [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), - [3140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), - [3142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), - [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [3146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [3148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), - [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4239), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), - [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [3158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5139), - [3160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3778), - [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [3164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3968), - [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), - [3170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), - [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), - [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), - [3178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4520), - [3180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1389), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [3195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4084), - [3198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4085), - [3201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4159), - [3204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(973), - [3207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(33), - [3210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4325), - [3213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(479), - [3216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4668), - [3219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3572), - [3222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3573), - [3225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3414), - [3228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3414), - [3231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3533), - [3234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(699), - [3237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(681), - [3240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5068), - [3243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4169), - [3246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4056), - [3249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5069), - [3252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5070), - [3255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(715), - [3258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5064), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4961), - [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3775), - [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [3275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3940), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), - [3281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [3289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), - [3291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5263), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5278), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5279), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), - [3305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5277), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), - [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [3317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5374), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [3321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3976), - [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), - [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), - [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5268), - [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5269), - [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), - [3345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), - [3347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), - [3349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(696), - [3352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1397), - [3355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), - [3357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), - [3359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), - [3362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 2, 0, 0), - [3364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 2, 0, 0), - [3366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 3, 0, 0), - [3368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 3, 0, 0), - [3370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), - [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [3376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 4, 0, 0), - [3378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 4, 0, 0), - [3380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), - [3382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), - [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [3386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 2, 0, 0), - [3388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 2, 0, 0), - [3390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 3, 0, 0), - [3392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 3, 0, 0), - [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [3398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5129), - [3401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5129), - [3404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5126), - [3407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), - [3409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), - [3411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1934), - [3414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1934), - [3417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1960), - [3420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), - [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [3426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(5129), - [3429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(5129), - [3432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(5126), - [3435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), - [3437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), - [3439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(1934), - [3442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(1934), - [3445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(1960), - [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4902), - [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [3460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), - [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), - [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), - [3466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), - [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [3470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), - [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [3478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), - [3480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1411), - [3483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1411), - [3486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), - [3488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), - [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [3492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), - [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [3496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 1, 0, 0), - [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [3502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(1422), - [3505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [3509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), - [3511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1425), - [3514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [3520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [3524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [3530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4161), - [3533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4318), - [3536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4760), - [3539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(1134), - [3542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(31), - [3545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4394), - [3548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(480), - [3551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3648), - [3554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3650), - [3557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3384), - [3560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3384), - [3563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3534), - [3566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4383), - [3569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4148), - [3572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5212), - [3575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4901), - [3578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4069), - [3581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5264), - [3584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5265), - [3587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4300), - [3590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5262), - [3593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), - [3595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), - [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), - [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), - [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), - [3607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), - [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), - [3611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3547), - [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), - [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), - [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), - [3619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), + [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), + [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), + [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), + [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), + [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4625), + [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4298), + [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5344), + [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4322), + [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), + [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5396), + [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5397), + [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4316), + [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), + [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4459), + [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5394), + [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), + [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), + [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 0), + [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 0), + [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [1448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 2, 0, 22), + [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 2, 0, 22), + [1458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), + [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__path_suffix, 1, 0, 0), + [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__path_suffix, 1, 0, 0), + [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), + [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__path_suffix, 2, 0, 0), + [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__path_suffix, 2, 0, 0), + [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), + [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), + [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), + [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), + [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [1488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3648), + [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), + [1492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3530), + [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), + [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), + [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), + [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_single_quotes, 3, 0, 0), + [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_single_quotes, 3, 0, 0), + [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_back_ticks, 3, 0, 0), + [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_back_ticks, 3, 0, 0), + [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_string, 1, 0, 0), + [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_string, 1, 0, 0), + [1512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 2, 0, 0), + [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 2, 0, 0), + [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), + [1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__raw_str, 3, 0, 0), + [1522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__raw_str, 3, 0, 0), + [1524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cell_path, 1, 0, 0), + [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cell_path, 1, 0, 0), + [1528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 3, 0, 0), + [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 3, 0, 0), + [1532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), + [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), + [1536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3690), + [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), + [1543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 1, 0, 0), + [1545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 1, 0, 0), + [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [1551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, 0, 0), + [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, 0, 0), + [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), + [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [1563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3707), + [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3708), + [1572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [1578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 3, 0, 22), + [1580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 3, 0, 22), + [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [1584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3669), + [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), + [1594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3669), + [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), + [1599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 30), + [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), + [1603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 30), + [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [1615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value, 1, 0, 0), + [1617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 1, 0, 20), + [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), + [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 31), + [1633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 31), + [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), + [1637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 2, 0, 0), + [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), + [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), + [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [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(3711), + [1653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), + [1655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), + [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [1659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 129), + [1661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 129), + [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [1669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 130), + [1671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 130), + [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 128), + [1679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 128), + [1681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 131), + [1683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 131), + [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), + [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [1695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 4, 0, 0), + [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value, 1, 0, 0), + [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), + [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [1715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3711), + [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [1722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), + [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), + [1732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 2, 0, 0), + [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [1750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), + [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5484), + [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5034), + [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [1762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4615), + [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), + [1766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), + [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4272), + [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5201), + [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5202), + [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5196), + [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), + [1786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), + [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), + [1794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4547), + [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), + [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), + [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), + [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), + [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), + [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), + [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), + [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), + [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [1840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), + [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), + [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 3, 0, 0), + [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 3, 0, 0), + [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [1854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), + [1864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(527), + [1867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), + [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3720), + [1871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), + [1874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), + [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), + [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [1883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 2, 0, 0), + [1885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 2, 0, 0), + [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 3, 0, 0), + [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 3, 0, 0), + [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 3, 0, 48), + [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 3, 0, 48), + [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 4, 0, 0), + [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 4, 0, 0), + [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), + [1905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), + [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 3, 0, 0), + [1909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 3, 0, 0), + [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 102), + [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 102), + [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), + [1917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), + [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), + [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), + [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), + [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), + [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), + [1955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [1963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3720), + [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), + [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), + [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 24), + [1974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 24), + [1976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 2, 0, 0), + [1978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3753), + [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), + [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 79), + [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 79), + [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 3, 0, 0), + [1988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [1992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 3, 0, 0), + [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3662), + [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), + [2006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [2014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4178), + [2017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4428), + [2020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4671), + [2023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(351), + [2026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(27), + [2029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3817), + [2032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(7), + [2035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3648), + [2038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(66), + [2041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3649), + [2044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5363), + [2047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3530), + [2050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3530), + [2053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3628), + [2056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4625), + [2059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4298), + [2062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5344), + [2065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4431), + [2068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4181), + [2071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5396), + [2074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5397), + [2077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4316), + [2080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4086), + [2083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(378), + [2086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4459), + [2089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5394), + [2092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 75), + [2094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 75), + [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [2104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 76), + [2106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 76), + [2108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [2112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 77), + [2114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 77), + [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [2120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 78), + [2122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 78), + [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [2128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [2132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), + [2134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), + [2136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 106), + [2138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 106), + [2140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), + [2142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), + [2144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 106), + [2146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 106), + [2148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_number, 1, 0, 0), + [2150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_number, 1, 0, 0), + [2152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3732), + [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), + [2156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 1, 0, 0), + [2158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 1, 0, 0), + [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [2164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 1, 0, 0), + [2166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 1, 0, 0), + [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4900), + [2170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 23), + [2172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 23), + [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3784), + [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), + [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3785), + [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), + [2182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4946), + [2185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4946), + [2188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(2993), + [2191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5484), + [2194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5034), + [2197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(64), + [2200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4547), + [2203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5085), + [2206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(66), + [2209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5363), + [2212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(1928), + [2215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(1928), + [2218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(1943), + [2221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(712), + [2224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4272), + [2227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5201), + [2230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5202), + [2233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4186), + [2236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4043), + [2239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(465), + [2242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5196), + [2245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [2247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [2249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4946), + [2252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4946), + [2255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(2993), + [2258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5484), + [2261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5034), + [2264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(64), + [2267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4615), + [2270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5085), + [2273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(66), + [2276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5363), + [2279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(1928), + [2282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(1928), + [2285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(1943), + [2288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(712), + [2291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4272), + [2294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5201), + [2297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5202), + [2300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4186), + [2303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4043), + [2306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(465), + [2309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5196), + [2312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), + [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), + [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [2320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), + [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), + [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 2, 0, 0), + [2328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 2, 0, 0), + [2330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), + [2332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), + [2334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(527), + [2337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(954), + [2340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [2342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), + [2344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), + [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 151), + [2348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 151), + [2350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 196), + [2352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 196), + [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), + [2360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_bool, 1, 0, 0), + [2362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_bool, 1, 0, 0), + [2364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), + [2366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), + [2369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), + [2371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), + [2373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [2381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 153), + [2383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 153), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), + [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [2403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), + [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 30), + [2407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 30), + [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 48), + [2411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 48), + [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 0), + [2415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 0), + [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 115), + [2419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 115), + [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 60), + [2423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 60), + [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 117), + [2427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 117), + [2429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 118), + [2431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 118), + [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 119), + [2435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 119), + [2437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 4, 0, 125), + [2439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 4, 0, 125), + [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 102), + [2443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 102), + [2445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 5, 0, 115), + [2447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 5, 0, 115), + [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 158), + [2451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 158), + [2453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 159), + [2455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 159), + [2457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 160), + [2459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 160), + [2461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 161), + [2463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 161), + [2465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 162), + [2467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 162), + [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 163), + [2471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 163), + [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 164), + [2475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 164), + [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_interpolated, 1, 0, 4), + [2479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_interpolated, 1, 0, 4), + [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), + [2483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), + [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), + [2487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3640), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), + [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [2513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3694), + [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), + [2519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), + [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [2527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 3, 0, 62), + [2529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 3, 0, 62), + [2531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 3, 0, 62), + [2533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 3, 0, 62), + [2535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), + [2537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [2541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 75), + [2543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 75), + [2545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 2, 0, 0), + [2547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 2, 0, 0), + [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [2551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 0), + [2553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 0), + [2555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(939), + [2558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 60), + [2560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 60), + [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 3, 0, 0), + [2564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 3, 0, 0), + [2566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), + [2568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [2572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 120), + [2574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 120), + [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 4, 0, 0), + [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 4, 0, 0), + [2580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 4, 0, 0), + [2582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [2586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [2590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), + [2592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), + [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3022), + [2596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [2598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), + [2600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [2604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [2606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), + [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 165), + [2610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 165), + [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 5, 0, 0), + [2614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 5, 0, 0), + [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 1, 0, 0), + [2618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 1, 0, 0), + [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), + [2622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), + [2624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_cellpath, 2, 0, 0), + [2626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_cellpath, 2, 0, 0), + [2628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3794), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), + [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 42), + [2634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 42), + [2636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [2640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [2644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), + [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), + [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 74), + [2650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 74), + [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 31), + [2654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 31), + [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 1, 0, 0), + [2658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 1, 0, 0), + [2660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3793), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), + [2664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 4, 0, 0), + [2666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 4, 0, 0), + [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 2, 0, 0), + [2670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 2, 0, 0), + [2672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 5), + [2674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 5), + [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 75), + [2678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 75), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [2690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3810), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [2694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), + [2700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 196), + [2712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 196), + [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4819), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), + [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), + [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [2736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3836), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [2740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), + [2746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), + [2754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2920), + [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [2758] = {.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), + [2762] = {.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), + [2766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [2769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [2772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), + [2774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), + [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 152), + [2778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 152), + [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 151), + [2782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 151), + [2784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 150), + [2786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 150), + [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 150), + [2790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 150), + [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 74), + [2796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 74), + [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 74), + [2800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 74), + [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 153), + [2804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 153), + [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 195), + [2808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 195), + [2810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 152), + [2812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 152), + [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), + [2816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), + [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 195), + [2820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 195), + [2822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), + [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [2826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [2830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [2840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), + [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [2850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 74), SHIFT(527), + [2853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [2857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [2865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [2869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 195), SHIFT(527), + [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [2874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 150), SHIFT(527), + [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [2887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 152), SHIFT(527), + [2890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), + [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [2894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [2902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), + [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), + [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), + [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [2944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4812), + [2946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), + [2950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3495), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), + [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4286), + [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4906), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), + [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [2978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3804), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [2982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), + [2986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), + [2994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2933), + [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5403), + [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), + [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5419), + [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5420), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), + [3010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3281), + [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5418), + [3014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3788), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), + [3018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [3022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [3048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), + [3050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), + [3052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 4, 0, 0), + [3054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), + [3056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), + [3058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1363), + [3061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 2, 0, 0), + [3063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(1367), + [3066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 3, 0, 0), + [3068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5019), + [3070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4939), + [3072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4955), + [3074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3642), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), + [3078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3748), + [3080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3815), + [3082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4925), + [3084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [3086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [3088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), + [3090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4563), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4750), + [3100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3651), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), + [3104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3600), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), + [3112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4294), + [3114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), + [3116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), + [3118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(527), + [3121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1395), + [3124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1379), + [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), + [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), + [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5270), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4095), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5400), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5401), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4564), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5505), + [3173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3828), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4087), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), + [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), + [3191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4714), + [3193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 3, 0, 0), + [3195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 3, 0, 0), + [3197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4329), + [3200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4248), + [3203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4287), + [3206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1121), + [3209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(33), + [3212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4498), + [3215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(470), + [3218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4812), + [3221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3667), + [3224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3668), + [3227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3495), + [3230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3495), + [3233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3589), + [3236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(712), + [3239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(716), + [3242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5200), + [3245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4286), + [3248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4272), + [3251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5201), + [3254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5202), + [3257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(713), + [3260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5196), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5379), + [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3814), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [3277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4044), + [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), + [3283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [3291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), + [3293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5395), + [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5410), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5411), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), + [3307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5409), + [3311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 4, 0, 0), + [3313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 4, 0, 0), + [3315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 2, 0, 0), + [3317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 2, 0, 0), + [3319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 3, 0, 0), + [3321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 3, 0, 0), + [3323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 2, 0, 0), + [3325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 2, 0, 0), + [3327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), + [3329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), + [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [3341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5452), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4101), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), + [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5407), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5408), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), + [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), + [3381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [3383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [3385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [3388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [3394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5313), + [3397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5313), + [3400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5281), + [3403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), + [3405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), + [3407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1954), + [3410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1954), + [3413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1994), + [3416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(5313), + [3419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(5313), + [3422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(5281), + [3425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), + [3427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), + [3429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(1954), + [3432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(1954), + [3435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(1994), + [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [3442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), + [3444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1404), + [3447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1404), + [3450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), + [3452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [3456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [3462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [3466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 1, 0, 0), + [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4981), + [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [3474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3726), + [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4862), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [3492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(1419), + [3495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), + [3497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1420), + [3500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), + [3502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [3506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [3510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [3520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), + [3522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), + [3524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), + [3534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), + [3538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), + [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), + [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [3550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4178), + [3553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4428), + [3556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4671), + [3559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(1131), + [3562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(27), + [3565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4547), + [3568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(452), + [3571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3648), + [3574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3649), + [3577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3530), + [3580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3530), + [3583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3628), + [3586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4625), + [3589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4298), + [3592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5344), + [3595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4967), + [3598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4181), + [3601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5396), + [3604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5397), + [3607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4459), + [3610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5394), + [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [3615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [3619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), [3625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), - [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [3635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), - [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [3639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), - [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), - [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [3647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5350), - [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5350), - [3651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), - [3653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 2, 0, 12), - [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), - [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [3663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [3667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 34), - [3669] = {.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), - [3673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), - [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), - [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [3683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4402), - [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [3695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5144), - [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5144), - [3699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3031), - [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), - [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [3707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4375), - [3709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 20), - [3711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 20), - [3713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 20), - [3715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), - [3717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1510), - [3720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), - [3722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 20), - [3724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 20), - [3726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 20), - [3728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 51), - [3730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 4, 0, 106), - [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [3734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 51), - [3736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 4, 0, 106), - [3738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 50), - [3740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 50), - [3742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 20), REDUCE(aux_sym_record_body_repeat1, 2, 0, 20), - [3745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 20), REDUCE(sym_record_body, 2, 0, 20), - [3748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 20), REDUCE(aux_sym_record_body_repeat1, 2, 0, 20), - [3751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 50), REDUCE(sym_record_body, 3, 0, 50), + [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [3633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5371), + [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5371), + [3637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), + [3639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 34), + [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), + [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [3649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 2, 0, 12), + [3651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3769), + [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), + [3655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), + [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [3663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4559), + [3665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5218), + [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), + [3669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), + [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4749), + [3675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3766), + [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [3679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [3689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4532), + [3691] = {.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), + [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [3699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 20), + [3701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 4, 0, 107), + [3703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 20), + [3705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), + [3707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1496), + [3710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), + [3712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 20), REDUCE(aux_sym_record_body_repeat1, 2, 0, 20), + [3715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 20), REDUCE(sym_record_body, 2, 0, 20), + [3718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 20), REDUCE(aux_sym_record_body_repeat1, 2, 0, 20), + [3721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 20), + [3723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 4, 0, 107), + [3725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 20), + [3727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 50), REDUCE(sym_record_body, 3, 0, 50), + [3730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 50), + [3732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 51), + [3734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 20), + [3736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 50), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [3744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 51), + [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [3750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 20), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), [3754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat2, 1, 0, 0), [3756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 1, 0, 0), [3758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), [3760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), - [3762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1521), - [3765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [3771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), - [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5338), - [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [3788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), - [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), - [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5284), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5285), - [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5283), - [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [3810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5047), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5047), - [3814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4546), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), - [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [3826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [3832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [3850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5175), - [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5175), - [3854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3396), - [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), - [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [3862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [3866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [3874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), - [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4634), - [3900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), - [3902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), - [3904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), - [3906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), - [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [3910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), - [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [3918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), - [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), - [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [3960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [3964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), - [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [3972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5075), - [3994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), - [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [4002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), - [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), - [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), - [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), - [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5366), - [4024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [4030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), - [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [4034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), - [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [4038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), - [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [4054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 142), SHIFT_REPEAT(5047), - [4057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 142), SHIFT_REPEAT(5047), - [4060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 142), SHIFT_REPEAT(4546), - [4063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 142), SHIFT_REPEAT(1934), - [4066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 142), SHIFT_REPEAT(1960), - [4069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 142), SHIFT_REPEAT(4069), - [4072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 142), SHIFT_REPEAT(5264), - [4075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 142), SHIFT_REPEAT(5265), - [4078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 142), SHIFT_REPEAT(5262), - [4081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [4089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), - [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [4093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), - [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [4103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3612), - [4106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), - [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), - [4112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), - [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), - [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), - [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5337), - [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), - [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5360), - [4136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), - [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [4140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 3, 0, 0), - [4142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 3, 0, 0), - [4144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3589), - [4147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 4, 0, 0), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [4151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 4, 0, 0), - [4153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 174), SHIFT_REPEAT(2582), - [4156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 174), SHIFT_REPEAT(2511), - [4159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 174), SHIFT_REPEAT(2512), - [4162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 174), SHIFT_REPEAT(5338), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [4169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 2, 0, 0), - [4171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 2, 0, 0), - [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [4179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3674), - [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), - [4183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 174), SHIFT_REPEAT(4215), - [4186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 174), SHIFT_REPEAT(4096), - [4189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 174), SHIFT_REPEAT(4100), - [4192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 174), SHIFT_REPEAT(5366), - [4195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [4199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), - [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [4203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3800), - [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), - [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [4209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), - [4211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), - [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [4215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1915), - [4218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), - [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [4222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4959), - [4224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5177), - [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [4228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4400), - [4230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3900), - [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), - [4234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5101), - [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), - [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5272), - [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5273), - [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), - [4246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5270), - [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [4262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), - [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), - [4266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), - [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [4274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), - [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [4294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4991), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [4298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4223), - [4300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3920), - [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), - [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), - [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5213), - [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5214), - [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), - [4314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5211), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [4324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 91), - [4326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 4, 0, 205), - [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [4332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [4336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2135), - [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [4341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 3, 0, 86), - [4343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 91), - [4345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3669), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), - [4349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [4353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 1, 0, 0), - [4355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 1, 0, 0), - [4357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4832), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4959), - [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5177), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5101), - [4373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), - [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), - [4377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), - [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [4381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 2, 0, 91), - [4383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), - [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4991), - [4389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 3, 0, 174), - [4391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 2, 0, 91), - [4393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 4, 0, 205), - [4395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [4399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 3, 0, 86), - [4401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 3, 0, 174), - [4403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3606), - [4406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), - [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [4410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [4416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 93), - [4418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 4, 0, 177), - [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [4422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 93), - [4424] = {.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), - [4428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), - [4431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [4433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [4436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(2152), - [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5231), - [4441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5231), - [4443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), - [4445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), - [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [4449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2149), - [4452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 20), - [4454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 50), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [4458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 20), - [4460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 51), - [4462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [4468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [4472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 3, 0, 140), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [4488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 2, 0, 93), - [4490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [4494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [4502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [4520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 3, 0, 141), - [4522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 4, 0, 106), - [4524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), - [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [4528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 22), - [4530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 22), - [4532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2148), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [4537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), - [4539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), - [4541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(1962), - [4544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5185), - [4549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5185), - [4551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), - [4553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), - [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [4557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 20), - [4559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4995), - [4565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4995), - [4567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5188), - [4569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5145), - [4575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5145), - [4577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4537), - [4579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5257), - [4585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5257), - [4587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3371), - [4589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), - [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4717), - [4597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2200), - [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [4602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2192), - [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [3762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1528), + [3765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5223), + [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5223), + [3769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4667), + [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4616), + [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4504), + [3781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5331), + [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), + [3785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), + [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), + [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4790), + [3795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), + [3798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), + [3800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), + [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), + [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), + [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), + [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), + [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5416), + [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5417), + [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5415), + [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4571), + [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [3846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [3850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [3858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [3864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [3868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), + [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [3878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), + [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5470), + [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [3900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [3930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [3938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), + [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [3966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [3972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [3976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [3984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [4006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3702), + [4008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4375), + [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), + [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), + [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5498), + [4028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), + [4030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), + [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [4040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 143), SHIFT_REPEAT(5223), + [4043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 143), SHIFT_REPEAT(5223), + [4046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 143), SHIFT_REPEAT(4667), + [4049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 143), SHIFT_REPEAT(1954), + [4052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 143), SHIFT_REPEAT(1994), + [4055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 143), SHIFT_REPEAT(4181), + [4058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 143), SHIFT_REPEAT(5396), + [4061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 143), SHIFT_REPEAT(5397), + [4064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 143), SHIFT_REPEAT(5394), + [4067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [4071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [4079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [4087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3702), + [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), + [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), + [4100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3681), + [4103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [4107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [4111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), + [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5269), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5492), + [4143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 3, 0, 0), + [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [4147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 3, 0, 0), + [4149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 2, 0, 0), + [4151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 2, 0, 0), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [4159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 4, 0, 0), + [4161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [4165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 4, 0, 0), + [4167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 175), SHIFT_REPEAT(2610), + [4170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 175), SHIFT_REPEAT(2538), + [4173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 175), SHIFT_REPEAT(2539), + [4176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 175), SHIFT_REPEAT(5470), + [4179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3941), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [4185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), + [4187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [4191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 175), SHIFT_REPEAT(4375), + [4194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 175), SHIFT_REPEAT(4291), + [4197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 175), SHIFT_REPEAT(4293), + [4200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 175), SHIFT_REPEAT(5498), + [4203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3735), + [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), + [4207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [4211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [4215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696), + [4217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5295), + [4219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5477), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [4223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4554), + [4225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3980), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), + [4229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5364), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5404), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5405), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), + [4241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5402), + [4245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3767), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [4253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [4257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1949), + [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [4264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), + [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [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(1962), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [4300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3696), + [4303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5299), + [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [4307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4398), + [4309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4152), + [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), + [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), + [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5345), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5346), + [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), + [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), + [4323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5343), + [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [4335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [4339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 91), + [4341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 3, 0, 86), + [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [4345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 3, 0, 175), + [4347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 4, 0, 209), + [4349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 91), + [4351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 22), + [4353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 22), + [4355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 4, 0, 209), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [4359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [4363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2012), + [4366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 93), + [4368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 4, 0, 178), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [4372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 93), + [4374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 2, 0, 91), + [4376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3789), + [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), + [4380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), + [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [4388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3754), + [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), + [4392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), + [4394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), + [4396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(1937), + [4399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [4403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5019), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5295), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5477), + [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), + [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5364), + [4419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 3, 0, 175), + [4421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 3, 0, 86), + [4423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2009), + [4426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 2, 0, 93), + [4428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), + [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [4432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 2, 0, 91), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5299), + [4436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 3, 0, 141), + [4438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 3, 0, 142), + [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [4442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [4448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [4450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [4454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2157), + [4457] = {.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), + [4461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), + [4464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5139), + [4468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5139), + [4470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3162), + [4472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [4476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2202), + [4479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 20), + [4481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 50), + [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [4485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 20), + [4487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 51), + [4489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [4492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(2173), + [4495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [4499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [4507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), + [4527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [4533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 20), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [4549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5151), + [4555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5151), + [4557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5352), + [4559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5291), + [4565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5291), + [4567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4669), + [4569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5456), + [4575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5456), + [4577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3561), + [4579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5325), + [4585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5325), + [4587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2514), + [4589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [4593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [4596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 4, 0, 107), + [4598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag_equals_value, 2, 0, 89), + [4600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag_equals_value, 2, 0, 89), + [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [4606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2231), + [4609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 88), + [4611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 88), [4613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), [4615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), - [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4958), - [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5169), - [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5033), - [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), - [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [4627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3959), - [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), - [4631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3739), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), - [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), - [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5170), - [4639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [4643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [4651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [4669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(2246), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5083), - [4674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5083), - [4676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), - [4680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 37), - [4682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 37), - [4684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [4688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [4696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), - [4716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 88), - [4718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 88), - [4720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag_equals_value, 2, 0, 89), - [4722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag_equals_value, 2, 0, 89), - [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5030), - [4726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5030), - [4728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5328), - [4730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag_equals_value, 2, 0, 90), - [4732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag_equals_value, 2, 0, 90), - [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5164), - [4736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5164), - [4738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4541), - [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5329), - [4742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5329), - [4744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), - [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), - [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5371), - [4750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5371), - [4752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), - [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [4758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 1, 0, 0), - [4760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), - [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [4621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag_equals_value, 2, 0, 90), + [4623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag_equals_value, 2, 0, 90), + [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [4629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 37), + [4631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 37), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [4635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [4641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [4645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [4649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [4661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5341), + [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5283), + [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5238), + [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4415), + [4681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3986), + [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), + [4685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3844), + [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), + [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), + [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5355), + [4693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), + [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5208), + [4711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5208), + [4713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5504), + [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5479), + [4717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5479), + [4719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5311), + [4725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5311), + [4727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4860), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5461), + [4731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5461), + [4733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [4743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(2252), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5268), + [4750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5268), + [4752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [4768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 1, 0, 0), + [4770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), + [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), [4776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), [4778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 3, 0, 0), - [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), [4782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), - [4784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 4, 0, 0), - [4786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 2, 0, 0), - [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [4790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), - [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [4796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(2273), - [4799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2267), + [4784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2268), + [4787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(2270), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [4792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), + [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [4798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 4, 0, 0), + [4800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 2, 0, 0), [4802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 20), - [4804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 4, 0, 106), - [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [4804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 3, 0, 51), + [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), [4808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 20), - [4810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 2, 0, 20), - [4812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 3, 0, 50), - [4814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 3, 0, 51), - [4816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2279), - [4819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2284), - [4822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2287), - [4825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 201), SHIFT_REPEAT(4958), - [4828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 201), SHIFT_REPEAT(5169), - [4831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 201), SHIFT_REPEAT(5033), - [4834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 201), SHIFT_REPEAT(3959), - [4837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 201), SHIFT_REPEAT(3960), - [4840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 201), SHIFT_REPEAT(3739), - [4843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 201), SHIFT_REPEAT(3739), - [4846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 201), SHIFT_REPEAT(3835), - [4849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 201), SHIFT_REPEAT(5170), - [4852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 201), SHIFT_REPEAT(4069), - [4855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 201), SHIFT_REPEAT(5264), - [4858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 201), SHIFT_REPEAT(5265), - [4861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 201), SHIFT_REPEAT(4102), - [4864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 201), SHIFT_REPEAT(5262), + [4810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 4, 0, 107), + [4812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 2, 0, 20), + [4814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2283), + [4817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 3, 0, 50), + [4819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2280), + [4822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2286), + [4825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(5341), + [4828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(5283), + [4831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(5238), + [4834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(3986), + [4837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(3988), + [4840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(3844), + [4843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(3844), + [4846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(3947), + [4849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(5355), + [4852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(4181), + [4855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(5396), + [4858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(5397), + [4861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(4294), + [4864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 205), SHIFT_REPEAT(5394), [4867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 2, 0, 0), - [4869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5090), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5090), + [4869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5222), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5222), [4873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 0), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5318), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [4883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), - [4885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 0), - [4887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 0), - [4889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5344), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5344), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5342), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [4905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), - [4907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [4913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3644), - [4916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), - [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [4926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), - [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [4938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2805), - [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [4942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), - [4944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), - [4946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [4960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [4966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), - [4968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), - [4970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), - [4972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), - [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [4976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), - [4978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), - [4980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), - [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), - [4986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), - [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), - [4990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), - [4992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), - [4994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), - [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), - [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), - [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), - [5006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3657), - [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), - [5012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), - [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [5020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3260), - [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), - [5032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 168), - [5034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 4, 0, 221), - [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [5038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 168), - [5040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2435), - [5043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3133), - [5045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), - [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [5053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 3, 0, 200), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), - [5061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2960), - [5063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), - [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), - [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), - [5071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2913), - [5073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [5077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), - [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [5081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 3, 0, 201), - [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [5085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs_path_head, 1, 0, 0), - [5087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs_path_head, 1, 0, 0), - [5089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 2, 0, 168), - [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [5095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3657), - [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), - [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [5102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), - [5104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), + [4875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 0), + [4877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5357), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5357), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5450), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [4889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), + [4891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 0), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [4897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), + [4899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3659), + [4902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2608), + [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), + [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5176), + [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [4916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), + [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [4930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), + [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [4938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), + [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [4942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), + [4944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [4950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), + [4952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [4956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), + [4958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), + [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [4962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), + [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), + [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [4968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), + [4970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), + [4972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), + [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [4986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), + [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [4990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), + [4992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2852), + [4994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3703), + [4996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), + [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), + [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [5010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3291), + [5012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), + [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), + [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [5022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), + [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [5032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2460), + [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [5037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), + [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), + [5043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3020), + [5045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3112), + [5047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), + [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [5053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), + [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [5061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), + [5063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs_path_head, 1, 0, 0), + [5065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs_path_head, 1, 0, 0), + [5067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), + [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [5075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 169), + [5077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 2, 0, 169), + [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [5081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 169), + [5083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 4, 0, 227), + [5085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 3, 0, 204), + [5087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 3, 0, 205), + [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), + [5091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3703), + [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [5098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), + [5100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), + [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [5104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3699), [5106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), [5108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), - [5110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), - [5112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), - [5114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3609), - [5116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), - [5118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), - [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [5122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2489), - [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [5127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3673), - [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), - [5131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), - [5133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), - [5135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), - [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [5141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), - [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), - [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [5147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), - [5149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3614), - [5152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), - [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), - [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), - [5160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3041), - [5162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), - [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [5166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), - [5168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), - [5170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), - [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [5178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), - [5180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3609), - [5183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2514), - [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [5189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3104), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [5193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3666), - [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), - [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [5199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), - [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [5203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), - [5205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), - [5207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), - [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [5211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), - [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [5219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), - [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [5223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), - [5225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 3, 0, 74), - [5227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), - [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [5231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), - [5233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), - [5235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 0), - [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), - [5239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 42), - [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), - [5245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flat_type, 1, 0, 85), - [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), - [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [5255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 1, 0, 0), - [5257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs_path_head, 2, 0, 0), - [5259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs_path_head, 2, 0, 0), - [5261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), - [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), - [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [5271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4404), - [5273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3502), - [5275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 2, 0, 0), - [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [5279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3320), - [5281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 2, 0, 5), - [5283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), - [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [5287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3603), - [5290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), - [5292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), - [5294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 4, 0, 42), - [5296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 58), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), - [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4792), - [5306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 58), - [5308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3085), - [5310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696), - [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), - [5314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), - [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [5318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), - [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [5322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4325), - [5324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), - [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [5328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), - [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), - [5332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 3, 0, 75), - [5334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 3, 0, 0), - [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), - [5338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 3, 0, 0), - [5340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 2, 0, 22), - [5342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 2, 0, 22), - [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), - [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), - [5348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 202), - [5350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), - [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [5354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), - [5356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3733), - [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), - [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), - [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), - [5364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 203), - [5366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), - [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), - [5370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3611), - [5373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), - [5375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), - [5377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_composite_type, 4, 0, 134), - [5379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 5, 0, 222), - [5381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 2, 0, 0), - [5383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 2, 0, 0), - [5385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), - [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [5389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3615), - [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), - [5396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), - [5398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688), - [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), - [5402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), - [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [5406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), - [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [5410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), - [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [5414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), - [5416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), - [5418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 3, 0, 0), - [5420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 3, 0, 0), - [5422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 4, 0, 198), - [5424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 1, 0, 87), - [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), - [5430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), - [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [5434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), - [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), - [5438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), - [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [5442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), - [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [5446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), - [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [5450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 113), - [5452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 113), - [5454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3580), - [5457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), - [5461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4574), - [5463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), - [5465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, 0, 2), - [5467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), - [5471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 65), - [5473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 65), - [5475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 55), - [5477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 55), - [5479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 55), - [5481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 55), - [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), - [5487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), - [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), - [5491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), - [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), - [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), - [5499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 113), - [5501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 113), - [5503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 58), - [5505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 58), - [5507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 1, 0, 0), - [5509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 1, 0, 0), - [5511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2884), - [5513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 151), - [5515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 187), - [5517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 74), - [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), - [5521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 188), - [5523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 187), SHIFT(696), - [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [5528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2977), - [5530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), - [5532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 185), - [5534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 186), - [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [5544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 215), - [5546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 216), - [5548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 187), - [5550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 188), - [5552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 215), SHIFT(696), - [5555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 216), SHIFT(696), - [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [5564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 189), - [5566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 149), - [5568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 217), - [5570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 191), - [5572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 190), - [5574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 188), SHIFT(696), - [5577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 217), SHIFT(696), - [5580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 191), SHIFT(696), - [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [5585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), - [5587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), - [5589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 189), - [5591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 149), - [5593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 122), - [5595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 74), - [5597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 189), SHIFT(696), - [5600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 149), SHIFT(696), - [5603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 122), - [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [5613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 215), - [5615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 216), - [5617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), - [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [5621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 217), - [5623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 191), - [5625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 190), - [5627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 151), - [5629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 190), SHIFT(696), - [5632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3721), - [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), - [5636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 151), SHIFT(696), - [5639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), - [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), - [5645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 108), - [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [5649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 109), - [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [5655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 121), - [5657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), - [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [5661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), - [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [5665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), - [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [5669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 8), - [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [5673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_let_shortcut, 2, 0, 10), - [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [5677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 11), - [5679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 25), - [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [5683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 26), - [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [5687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 108), - [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [5691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 109), - [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [5695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 120), - [5697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 25), - [5699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 121), - [5701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 120), SHIFT(696), - [5704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 121), SHIFT(696), - [5707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 122), - [5709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 74), - [5711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 122), SHIFT(696), - [5714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 74), SHIFT(696), - [5717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 2, 0, 0), - [5719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 26), - [5721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), - [5723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(1345), - [5726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(3532), - [5729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(1798), - [5732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), - [5734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 185), - [5736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 186), - [5738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3012), - [5740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 120), - [5742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 71), - [5744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 71), - [5746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 185), SHIFT(696), - [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [5755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 120), - [5757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 121), - [5759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 25), - [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [5763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 22), - [5765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 22), - [5767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 186), SHIFT(696), - [5770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 26), - [5772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 2, 0, 86), - [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [5776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 134), - [5778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 173), - [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [5782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 28), - [5784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_completer, 2, 0, 171), - [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [5788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 4, 0, 218), - [5790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 4, 0, 218), - [5792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), - [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [5796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_completer, 2, 0, 172), - [5798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 2, 0, 0), - [5800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), SHIFT(696), - [5803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), - [5805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), - [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [5809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), - [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), - [5813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [5815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 1, 0, 0), - [5817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 2, 0, 5), - [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), - [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), - [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5026), - [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4904), - [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5357), - [5831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5190), - [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [5835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 2, 0, 154), - [5837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 2, 0, 154), - [5839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(3360), - [5842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), - [5844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5026), - [5847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(4904), - [5850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5357), - [5853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5190), - [5856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 0, 64), - [5858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, 0, 2), - [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), - [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), - [5866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), - [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [5870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), SHIFT(696), - [5873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), - [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [5879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 0), - [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [5883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 42), - [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [5903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4193), - [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), - [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), - [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4787), - [5911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), - [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [5915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3187), - [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [5921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 4, 0, 42), - [5923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 3, 0, 193), - [5925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 3, 0, 193), - [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4754), - [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), - [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), - [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [5937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 73), - [5939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 73), SHIFT_REPEAT(115), - [5942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [5946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 1, 0, 2), - [5948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3660), - [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), - [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), - [5954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 29), - [5956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(260), - [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [5961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 37), - [5963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 37), - [5965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(3324), - [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [5970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 46), SHIFT(696), - [5973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 46), - [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), - [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), - [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), - [5981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 107), SHIFT(696), - [5984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 107), - [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), - [5988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 15), SHIFT(696), - [5991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 15), - [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [5995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 134), - [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), - [5999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 15), SHIFT(696), - [6002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 15), - [6004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 28), - [6006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 2, 0, 86), - [6008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 29), - [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [6012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flat_type, 1, 0, 85), - [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), - [6018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 2, 0, 15), - [6020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), SHIFT(696), - [6023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), - [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [6027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 147), SHIFT(696), - [6030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 147), - [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [6034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 148), SHIFT(696), - [6037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 148), - [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [6041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 46), SHIFT(696), - [6044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 46), - [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [6048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 182), SHIFT(696), - [6051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 182), - [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [6055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 147), SHIFT(696), - [6058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 147), - [6060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 3, 0, 126), - [6062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 3, 0, 126), - [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), - [6066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 107), SHIFT(696), - [6069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 107), - [6071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(3998), - [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [6076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 148), SHIFT(696), - [6079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 148), - [6081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), - [6083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), - [6085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 73), - [6087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 73), SHIFT_REPEAT(130), - [6090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 173), - [6092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 135), - [6094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 105), - [6096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 105), - [6098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), - [6100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), - [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [6104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4136), - [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), - [6108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), - [6110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3729), - [6112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(254), - [6115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 3, 0, 64), - [6117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 4, 0, 0), - [6119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 4, 0, 0), - [6121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 29), - [6123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), SHIFT(696), - [6126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), - [6128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(3918), - [6131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 28), - [6133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 66), - [6135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 66), - [6137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 0, 64), - [6139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 67), - [6141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 67), - [6143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 68), - [6145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 68), - [6147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 69), - [6149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 69), - [6151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 70), - [6153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 70), - [6155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag, 1, 0, 0), - [6157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag, 1, 0, 0), - [6159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4284), - [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), - [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), - [6165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4160), - [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), - [6169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), - [6171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), - [6173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 170), - [6175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 88), - [6177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 88), - [6179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 3, 0, 22), - [6181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 3, 0, 22), - [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [6185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 182), SHIFT(696), - [6188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 182), - [6190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(263), - [6193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 73), SHIFT_REPEAT(129), - [6196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 73), SHIFT_REPEAT(129), - [6199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 73), - [6201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(258), - [6204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 5, 0, 204), - [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4674), - [6208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), - [6210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), - [6212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 105), - [6214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 105), - [6216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4440), - [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), - [6220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3710), - [6222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3748), - [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4279), - [6226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_let_shortcut, 3, 0, 36), - [6228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 145), - [6230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), - [6233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4515), - [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), - [6237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3624), - [6239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3661), - [6241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 96), - [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), - [6245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 3, 0, 46), - [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [6249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 99), - [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), - [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), - [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), - [6257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3847), - [6259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3953), - [6261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), - [6263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), - [6265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 3, 0, 0), - [6267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 0, 0), - [6269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 4, 0, 95), - [6271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 96), - [6273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 99), - [6275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 3, 0, 0), - [6277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 3, 0, 0), - [6279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 68), - [6281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 68), - [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), - [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [6287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 4, 0, 198), - [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [6291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 202), - [6293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4496), - [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [6299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 203), - [6301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_composite_type, 4, 0, 134), - [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [6305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 5, 0, 222), - [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [6313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), - [6315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), - [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [6319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_annotation, 1, 0, 87), - [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [6333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(231), - [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [6338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(235), - [6341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(237), - [6344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(240), - [6347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4407), - [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), - [6353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3811), - [6355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4000), - [6357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_long_flag, 2, 0, 0), - [6359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_long_flag, 2, 0, 0), - [6361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 0), - [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [6365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 2, 0, 0), - [6367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 3), - [6369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 144), - [6371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 54), - [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), - [6375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 54), - [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), - [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), - [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), - [6383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_completer, 2, 0, 172), - [6385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 0), - [6387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 3), - [6389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 144), - [6391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 21), - [6393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 56), - [6395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 56), - [6397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 57), - [6399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 57), - [6401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4464), - [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), - [6405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3911), - [6407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4163), - [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), - [6411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4171), - [6413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 247), - [6415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 248), - [6417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_opt, 2, 0, 111), - [6419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_opt, 2, 0, 111), - [6421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 145), - [6423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3365), - [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), - [6427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 59), - [6429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 59), - [6431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 249), - [6433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 53), - [6435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 2, 0, 112), - [6437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 2, 0, 112), - [6439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 2, 0, 22), - [6441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 2, 0, 22), - [6443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_short_flag, 2, 0, 22), - [6445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_short_flag, 2, 0, 22), - [6447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 3, 0, 153), - [6449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 3, 0, 153), - [6451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 214), - [6453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 183), - [6455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [6458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [6460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), - [6462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), - [6464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(3532), - [6467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 184), - [6469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4870), - [6471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 250), - [6473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 251), - [6475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4550), - [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5330), - [6479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4237), - [6481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 170), - [6483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 252), - [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), - [6487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4051), - [6489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), - [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), - [6493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 211), - [6495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4779), - [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), - [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), - [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), - [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), - [6505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), - [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), - [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), - [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), - [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), - [6515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4004), - [6517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4080), - [6519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 212), - [6521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 235), - [6523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 5, 0, 204), - [6525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 236), - [6527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_completer, 2, 0, 171), - [6529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 223), - [6531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 224), - [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [6537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), - [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), - [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [6553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(208), - [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [6558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(212), - [6561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(213), - [6564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(216), - [6567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 207), - [6569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 135), - [6571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 95), - [6573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 225), - [6575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 226), - [6577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 208), - [6579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flag_capsule, 3, 0, 0), - [6581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flag_capsule, 3, 0, 0), - [6583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 227), - [6585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 228), - [6587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 229), - [6589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 230), - [6591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 231), - [6593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4335), - [6595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 237), - [6597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 238), - [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), - [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), - [6603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 239), - [6605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 232), - [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [6609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 209), - [6611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 210), - [6613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3, 0, 0), - [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [6617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3625), - [6619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3598), - [6621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 240), - [6623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 213), - [6625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 241), - [6627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 242), - [6629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 243), - [6631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 245), - [6633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 246), - [6635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3598), - [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), - [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), - [6642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 55), - [6644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 55), - [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), - [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), - [6650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), - [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), - [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), - [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), - [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [6660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 58), - [6662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 58), - [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), - [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), - [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), - [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [6672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3110), - [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), - [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), - [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), - [6680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), - [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), - [6684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3527), - [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), - [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), - [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), - [6692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), - [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), - [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), - [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), - [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), - [6702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 113), - [6704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 113), - [6706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), - [6708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), SHIFT_REPEAT(3643), - [6711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), - [6713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4346), - [6715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), - [6717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [6719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4385), - [6721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), - [6723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), - [6725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), - [6727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), - [6729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4069), - [6731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5264), - [6733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5265), - [6735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), - [6737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4054), - [6739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5255), - [6741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5256), - [6743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [6745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3655), - [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), - [6749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3570), - [6751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), - [6753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3834), - [6755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3938), - [6757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4119), - [6759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5281), - [6761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5282), - [6763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5280), - [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), - [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), - [6771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4120), - [6773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5284), - [6775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5285), - [6777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), - [6779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), - [6781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4122), - [6783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5287), - [6785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5288), - [6787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), - [6789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [6791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [6793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [6795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [6797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4123), - [6799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5290), - [6801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5291), - [6803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), - [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5289), - [6807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4179), - [6809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5181), - [6811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5239), - [6813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [6815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2410), - [6817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2442), - [6819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), - [6821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), - [6823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4125), - [6825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5293), - [6827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5294), - [6829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3801), - [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5292), - [6833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4281), - [6835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4589), - [6837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), - [6839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), - [6841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), - [6843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), - [6845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4129), - [6847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5296), - [6849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5297), - [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5295), - [6853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), - [6855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3767), - [6857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4046), - [6859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4172), - [6861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4131), - [6863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5299), - [6865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5300), - [6867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5298), - [6871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), - [6873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), - [6875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2464), - [6877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), - [6879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), - [6881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), - [6883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), - [6885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4134), - [6887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5302), - [6889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5303), - [6891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), - [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5301), - [6895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), - [6897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), - [6899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), - [6901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), - [6903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), - [6905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4137), - [6907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5305), - [6909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5306), - [6911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4174), - [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5304), - [6915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4139), - [6917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5308), - [6919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5309), - [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5307), - [6923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4140), - [6925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5311), - [6927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5312), - [6929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5310), - [6933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4056), - [6935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5069), - [6937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5070), - [6939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), - [6941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3758), - [6943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4141), - [6945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5314), - [6947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5315), - [6949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5313), - [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4521), - [6955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4410), - [6957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), - [6959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3310), - [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), - [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4395), - [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4396), - [6967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3022), - [6969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), - [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), - [6973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), - [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), - [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), - [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), - [6981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3861), - [6983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3971), - [6985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2971), - [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), - [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), - [6993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), - [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), - [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), - [6999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), - [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), - [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), - [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486), - [7007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [7009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), - [7011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), - [7013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [7015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), - [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), - [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), - [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), - [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), - [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), - [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), - [7029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), - [7031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3706), - [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), - [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4402), - [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), - [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), - [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), - [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), - [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), - [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), - [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), - [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), - [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), - [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [7057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3736), - [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), - [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), - [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), - [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), - [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), - [7069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), - [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), - [7073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 6), - [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), - [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), - [7079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4747), - [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), - [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), - [7085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 7), - [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4375), - [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [7091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), - [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), - [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), - [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), - [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), - [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), - [7105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3763), - [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), - [7109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), - [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [7113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 179), - [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), - [7117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [7119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), - [7121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), - [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [7125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3716), - [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), - [7129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), - [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), - [7133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), - [7135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), - [7137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), - [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), - [7141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [7143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3966), - [7145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3958), - [7147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), - [7149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), - [7151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), - [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), - [7157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), - [7161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 2, 0, 0), - [7163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), - [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), - [7167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [7169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), - [7172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), - [7174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3670), - [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), - [7178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), - [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), - [7182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), - [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), - [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), - [7188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), - [7190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), - [7192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4166), - [7194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [7196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), - [7198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), - [7200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), - [7202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), - [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), - [7206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3616), - [7208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), - [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), - [7212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), - [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), - [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), - [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), - [7220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), - [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), - [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), - [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), - [7228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3402), - [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), - [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4823), - [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4824), - [7236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), - [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), - [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143), - [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [7244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5125), - [7246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4167), - [7248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4142), - [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), - [7252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5243), - [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), - [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155), - [7258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), - [7260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), - [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), - [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4899), - [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4908), - [7268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), - [7270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), - [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [7274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3814), - [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), - [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), - [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), - [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), - [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [7286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3693), - [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), - [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), - [7292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3735), - [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), - [7296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), - [7298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4068), - [7300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), - [7302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), - [7304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), - [7306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), - [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), - [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), - [7314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3677), - [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), - [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), - [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), - [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [7328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2823), - [7330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4388), - [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), - [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), - [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [7338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3616), - [7341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), - [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), - [7345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), - [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [7349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4459), - [7351] = {.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), - [7355] = {.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), - [7359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3839), - [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), - [7363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), - [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), - [7367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), - [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), - [7372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), - [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), - [7376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3235), - [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [7380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), - [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [7384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), - [7386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4178), - [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), - [7390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), - [7392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4048), - [7394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), - [7396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4194), - [7398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), - [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), - [7402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), - [7404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4204), - [7406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 179), - [7408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), - [7410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4222), - [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), - [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4757), - [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [7418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4414), - [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [7424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), - [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4985), - [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4759), - [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4888), - [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [7436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 2, 0, 50), - [7438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 17), SHIFT(2284), - [7441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 156), - [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), - [7445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), - [7447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 2, 0, 0), - [7449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 2, 0, 0), - [7451] = {.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), - [7455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3594), - [7458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), - [7460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), - [7462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5195), - [7465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3668), - [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), - [7469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 63), SHIFT_REPEAT(81), - [7472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 63), SHIFT_REPEAT(4414), - [7475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 63), - [7477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [7479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3568), - [7482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 3, 0, 0), - [7484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), - [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), - [7488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), - [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), - [7492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3462), - [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), - [7502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 3, 0, 0), - [7504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 3, 0, 0), - [7506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 1, 0, 0), - [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), - [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), - [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [7514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4197), - [7516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4042), - [7518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4155), - [7520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4759), - [7522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4888), - [7524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3804), - [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), - [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5199), - [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), - [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [7534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 2, 0, 14), - [7536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), - [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), - [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4735), - [7542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 17), - [7544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), - [7546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), - [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), - [7550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 17), - [7552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), - [7555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), - [7557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), - [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4557), - [7562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 1, 0, 20), - [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), - [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), - [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), - [7572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [7574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), - [7576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), - [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [7580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 35), - [7582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [7584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), - [7586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), - [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [7590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 3, 0, 43), - [7592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [7594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [7596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [7598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), - [7600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3498), - [7602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), - [7604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3377), - [7606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), - [7608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), - [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), - [7612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3378), - [7614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), - [7616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), - [7618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [7620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), - [7622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), - [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), - [7626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 2, 0, 0), - [7628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3718), - [7630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), - [7632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), - [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), - [7636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), - [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), - [7640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), - [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), - [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), - [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), - [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), - [7652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [7654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), - [7656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 81), - [7658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3585), - [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), - [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), - [7665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4016), - [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), - [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), - [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), - [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), - [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), - [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), - [7681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), - [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4586), - [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [7689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), - [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4731), - [7695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), - [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), - [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4554), - [7701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_list_body, 1, 0, 0), REDUCE(sym_list_body, 1, 0, 0), - [7704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list_body, 1, 0, 0), - [7706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3672), - [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), - [7710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3702), - [7712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), - [7714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 0, 180), - [7716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 0, 180), - [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), - [7720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 181), - [7722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 181), - [7724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), - [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [7728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), - [7730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), - [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), - [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [7736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), - [7738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), - [7740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [7742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(3963), - [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), - [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [7749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), - [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [7753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 110), - [7755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 110), - [7757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), - [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [7765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), - [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), - [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [7771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [7773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [7775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), - [7777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), SHIFT_REPEAT(4322), - [7780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), - [7782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), - [7784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3946), - [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [7788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), - [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [7792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [7794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), - [7796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4308), - [7798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), - [7800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), - [7802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), - [7804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4352), - [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4523), - [7808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 4, 0, 155), - [7810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 4, 0, 155), - [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4436), - [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), - [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4755), - [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), - [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4457), - [7822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [7824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 115), - [7826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 115), - [7828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), - [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), - [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4504), - [7834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), - [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), - [7838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 63), SHIFT_REPEAT(77), - [7841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 63), - [7843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 63), SHIFT_REPEAT(4586), - [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [7848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 132), - [7850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 3, 0, 139), - [7852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 5, 0, 143), - [7854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), - [7856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), - [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4528), - [7860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 4, 0, 0), - [7862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), - [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), - [7866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, 0, 47), - [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [7870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__table_body_repeat1, 2, 0, 49), - [7872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 2, 0, 49), - [7874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 4, 0, 206), - [7876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), - [7878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), - [7880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 2, 0, 16), - [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [7886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 3, 0, 106), - [7888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 165), - [7890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 166), - [7892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 167), - [7894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 4, 0, 179), - [7896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3610), - [7899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 106), - [7901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), - [7903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4820), - [7905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 176), - [7907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), - [7909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_entry, 1, 0, 169), - [7911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_entry, 1, 0, 169), - [7913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement, 1, 0, 0), - [7915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 1, 0, 0), - [7917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), - [7919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 1, 0, 1), - [7921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_statement, 1, 0, 0), - [7923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), - [7925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), - [7927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let, 2, 0, 9), - [7929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut, 2, 0, 9), - [7931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 2, 0, 9), - [7933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_export, 2, 0, 13), - [7935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_loop, 2, 0, 13), - [7937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 6, 0, 194), - [7939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 195), - [7941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 196), - [7943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 178), - [7945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 179), - [7947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 2, 0, 51), - [7949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 0), - [7951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 197), - [7953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [7955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 50), - [7957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 105), - [7959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 105), - [7961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 51), - [7963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(5173), - [7966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1431), - [7969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), - [7971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), - [7973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 219), - [7975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 4, 0, 146), - [7977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 8, 0, 220), - [7979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 8, 0, 233), - [7981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 3, 0, 33), - [7983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 8, 0, 234), - [7985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 9, 0, 244), - [7987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4058), - [7989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), - [7991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wild_card, 1, 0, 0), - [7993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 38), - [7995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 39), - [7997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 40), - [7999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 41), - [8001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_interpolated, 3, 0, 0), - [8003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_interpolated, 3, 0, 0), - [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), - [8007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), - [8009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3832), - [8011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 44), - [8013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_while, 3, 0, 45), - [8015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), - [8017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), - [8019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), - [8021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_content, 1, 0, 0), - [8023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_body, 1, 0, 0), - [8025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 5, 0, 131), - [8027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3781), - [8029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), - [8031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), - [8033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 133), - [8035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), - [8037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(4568), - [8040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [8042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 27), - [8044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 27), - [8046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4150), - [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), - [8050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 73), SHIFT_REPEAT(194), - [8053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4528), - [8056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4012), - [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), - [8060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), - [8062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 4, 0, 136), - [8064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern, 3, 0, 74), - [8066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 137), - [8068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 2, 0, 0), - [8070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), - [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), - [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), - [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4924), - [8078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), - [8080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [8082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4170), - [8084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3806), - [8086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), - [8088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), - [8090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 4, 0, 80), - [8092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 4, 0, 82), - [8094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 4, 0, 83), - [8096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 3, 0, 84), - [8098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 0), - [8100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 3, 0, 102), - [8102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 3, 0, 103), - [8104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 105), - [8106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 105), - [8108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 4, 0, 92), - [8110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 2, 0, 0), - [8112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3904), - [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), - [8116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 97), - [8118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 94), - [8120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 138), - [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [8124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_annotation, 2, 0, 86), - [8126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [8128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_annotation, 2, 0, 86), - [8130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 98), - [8132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3629), - [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), - [8136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), - [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), - [8140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), - [8142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), - [8144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4574), - [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), - [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), - [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), - [8153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 1, 0, 20), - [8155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), - [8157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 50), - [8159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 51), - [8161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), - [8163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 1, 0, 91), - [8165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 51), - [8167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [8169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 2, 0, 200), - [8171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 2, 0, 201), - [8173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_parenthesized, 2, 0, 9), - [8175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 2, 0, 86), - [8177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 106), - [8179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 178), - [8181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 2, 0, 174), - [8183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_parenthesized, 2, 0, 9), - [8185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [8187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4794), - [8191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 3, 0, 33), - [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [8195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), - [8198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), - [8200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), - [8203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 1, 0, 0), - [8205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 1, 0, 0), - [8207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_head, 2, 0, 2), - [8209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_head, 3, 0, 100), - [8211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 179), - [8213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), - [8215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), - [8217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 50), REDUCE(sym_record_body, 2, 0, 50), - [8220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 27), - [8222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 27), - [8224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 3, 0, 205), - [8226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized, 1, 0, 0), - [8228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_parenthesized, 1, 0, 1), - [8230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 1, 0, 61), - [8232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4797), - [8234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [8238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 2, 0, 102), - [8240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 2, 0, 86), - [8242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 1, 0, 91), - [8244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_parenthesized, 1, 0, 0), - [8246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 2, 0, 174), - [8248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), - [8250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [8252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 3, 0, 177), - [8254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5151), - [8256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4890), - [8258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 2, 0, 140), - [8260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 2, 0, 141), - [8262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 1, 0, 93), - [8264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 2, 0, 9), - [8266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 3, 0, 0), - [8268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [8270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), - [8272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4932), - [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4829), - [8276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4891), - [8278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5157), - [8280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(4890), - [8283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__table_body_repeat1, 2, 0, 104), SHIFT_REPEAT(382), - [8286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [8288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4896), - [8290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [8292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [8294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [8296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern_parenthesized, 3, 0, 74), - [8298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__all_type, 1, 0, 87), - [8300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__all_type, 1, 0, 87), - [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [8304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 3, 0, 205), - [8306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 1, 0, 0), - [8308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), - [8310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 1, 0, 20), - [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), - [8314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), - [8316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 1, 0, 49), - [8318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 106), - [8320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), - [8322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), - [8324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 3, 0, 146), - [8326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [8328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [8330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 4, 0, 206), - [8332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 4, 0, 179), - [8334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [8336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 2, 0, 103), - [8338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 4, 0, 83), - [8340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 3, 0, 84), - [8342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4927), - [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [8348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 97), - [8350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 1, 0, 20), REDUCE(sym_record_body, 1, 0, 20), - [8353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1, 0, 0), - [8355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 5, 0, 131), - [8357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 4, 0, 136), - [8359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 1, 0, 168), - [8361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [8363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 3, 0, 221), - [8365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4657), - [8367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5153), - [8369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), - [8371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [8373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 125), - [8375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 125), SHIFT_REPEAT(4598), - [8378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4571), - [8380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), - [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [8384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 50), - [8386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 10, 180), - [8388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 10, 180), - [8390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [8392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5165), - [8394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 10, 181), - [8396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 10, 181), - [8398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 4, 0, 0), - [8400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 4, 0, 0), - [8402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_var, 3, 0, 72), - [8404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_var, 3, 0, 72), - [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190), - [8408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 123), - [8410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [8412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [8414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4397), - [8416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3005), - [8418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3006), - [8420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2994), - [8422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), - [8425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), - [8427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(4815), - [8430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_annotation, 3, 0, 135), - [8432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_annotation, 3, 0, 135), - [8434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_type, 3, 0, 175), - [8436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_type, 3, 0, 175), - [8438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [8440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [8442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 6), - [8444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 7), - [8446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3093), - [8448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), - [8450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), - [8452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), - [8454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4347), - [8456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4444), - [8458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), - [8460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), - [8462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 18), - [8464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 18), - [8466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), - [8468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), - [8470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 19), - [8472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 19), - [8474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(4831), - [8477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [8479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [8481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4452), - [8483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4517), - [8485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), - [8487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5205), - [8489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4212), - [8491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 18), - [8493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 18), - [8495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(4791), - [8498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4474), - [8500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_entry, 2, 0, 199), - [8502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_entry, 2, 0, 199), - [8504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), - [8506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), - [8508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [8510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [8512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), - [8514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), - [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), - [8518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2854), - [8520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), - [8522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4465), - [8524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4441), - [8526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 19), - [8528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 19), - [8530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), - [8532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2959), - [8534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), - [8536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [8538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [8540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_guard, 2, 0, 0), - [8542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [8544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3146), - [8546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [8548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), - [8550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [8552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), - [8554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [8556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [8558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [8560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [8562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5174), - [8564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), - [8566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4578), - [8568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [8570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), - [8572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [8574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), - [8576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [8578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [8580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), - [8582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [8584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [8586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [8588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [8590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4702), - [8592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), - [8594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), - [8596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), - [8598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [8600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [8602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [8604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), - [8606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [8610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [8612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5321), - [8614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [8616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [8618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [8620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), - [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), - [8624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [8626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [8628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [8630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [8632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), - [8634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), - [8636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), - [8638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [8640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), - [8642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), - [8644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), - [8646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), - [8648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), - [8650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5379), - [8652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), - [8654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), - [8656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), - [8658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [8660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), - [8662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [8664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), - [8666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [8668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [8670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [8672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5372), - [8674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [8676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [8678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [8680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [8682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [8684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), - [8686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [8688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), - [8690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), - [8692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4316), - [8694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), - [8696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4758), - [8698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [8700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), - [8702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4556), - [8704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [8706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), - [8708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [8710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [8712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [8714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 1, 0, 91), - [8716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [8718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [8720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [8722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [8724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [8726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [8728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [8730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [8732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5105), - [8734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), - [8736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [8738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [8740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5119), - [8742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5158), - [8744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2984), - [8746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 2, 0, 86), - [8748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 2, 0, 0), - [8750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4810), - [8752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [8754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [8756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5133), - [8758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [8760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [8762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), - [8764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), - [8766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [8768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), - [8770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [8772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), - [8774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [8776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), - [8778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [8780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), - [8782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [8784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [8786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), - [8788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [8790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), - [8792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [8794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [8796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), - [8798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [8800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [8802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [8804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 2, 0, 0), - [8806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [8808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), - [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [8812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), - [8814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), - [8816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), - [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [8820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [8822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4987), - [8824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [8826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), - [8828] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [8830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [8832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [8834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5141), - [8836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [8838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [8840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), - [8842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 3, 0, 86), - [8844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [8846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [8848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), - [8852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), - [8854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), - [8856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3044), - [8858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4534), - [8860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4571), - [8862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), - [8864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [8866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [8868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_rest, 3, 0, 0), - [8870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), - [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), - [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), - [8878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [8880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), - [8882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), - [8884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5016), - [8886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), - [8888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4558), - [8890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_key, 2, 0, 0), - [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), - [8894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [8896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), - [8898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [8902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3426), - [8904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), - [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [8908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [8910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4988), - [8912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [8914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [8916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), - [8918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), - [8920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [8922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), - [8926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3390), - [8928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), - [8930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [8934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [8936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), - [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [8940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [8942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [8944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [8946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [8948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [8950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), - [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [8954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), - [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5167), - [8960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5225), - [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5226), - [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), - [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4767), - [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), - [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [8982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [8984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [8988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), - [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), - [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), - [8996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), - [9000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4989), - [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), - [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [9014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [9016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), - [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [9020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), - [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), - [9026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), - [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5246), - [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5247), - [9032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), - [9034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [9036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), - [9038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5369), - [9040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5163), - [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5261), - [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), - [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4973), - [9048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4976), - [9050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5077), - [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5134), - [9054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5135), - [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5192), - [9058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5230), - [9060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5235), - [9062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5346), - [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5376), - [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5377), - [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4957), - [9070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4965), - [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4966), - [9074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4971), - [9076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4980), - [9078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4981), - [9080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4986), - [9082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4993), - [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4994), - [9086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4997), - [9088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5004), - [9090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5005), - [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5008), - [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5014), - [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5015), - [9098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5018), - [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5021), - [9102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5022), - [9104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5025), - [9106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5028), - [9108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5029), - [9110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5032), - [9112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5035), - [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5036), - [9116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5039), - [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5042), - [9120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5043), - [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5046), - [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5049), - [9126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5050), - [9128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5052), - [9130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5055), - [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5056), - [9134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5058), - [9136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5061), - [9138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5062), - [9140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [9142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), - [9144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), - [9146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [9150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), - [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), - [9154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), - [9156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), - [9158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), - [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5150), - [9162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), - [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), - [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), - [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), - [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [9182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [9184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4267), - [9188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), - [9190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4271), - [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), - [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), - [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), - [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4753), - [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), - [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), - [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), - [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), - [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), - [9226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), - [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), - [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [9234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2, 0, 0), + [5110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), + [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), + [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [5118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3194), + [5120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3762), + [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), + [5124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), + [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), + [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [5136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), + [5138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), + [5140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), + [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [5144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), + [5146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), + [5148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3704), + [5151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2467), + [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [5156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), + [5158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), + [5160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), + [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [5164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), + [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [5168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3143), + [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [5174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), + [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [5178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), + [5180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), + [5182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3347), + [5184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3760), + [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), + [5188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), + [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [5196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), + [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [5200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3693), + [5202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), + [5204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3699), + [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [5211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), + [5213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), + [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [5219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), + [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [5223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 2, 0, 5), + [5225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), + [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), + [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), + [5233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 58), + [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), + [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5017), + [5243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 58), + [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [5247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3261), + [5249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 2, 0, 0), + [5251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), + [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [5257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 4, 0, 42), + [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), + [5265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2561), + [5267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), + [5269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3750), + [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), + [5273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4498), + [5275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [5279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4566), + [5281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), + [5283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 1, 0, 0), + [5285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), + [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [5289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3693), + [5292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), + [5294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), + [5296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), + [5298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 0), + [5300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 42), + [5302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flat_type, 1, 0, 85), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [5308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 3, 0, 74), + [5310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), + [5316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs_path_head, 2, 0, 0), + [5318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs_path_head, 2, 0, 0), + [5320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3783), + [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), + [5324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), + [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [5328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), + [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [5332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), + [5334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), + [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [5342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), + [5344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), + [5346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), + [5348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), + [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), + [5354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 3, 0, 0), + [5356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 3, 0, 0), + [5358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 3, 0, 0), + [5360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), + [5362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), + [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [5366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 2, 0, 22), + [5368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 2, 0, 22), + [5370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 2, 0, 0), + [5372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 2, 0, 0), + [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [5378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3731), + [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), + [5382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 4, 0, 202), + [5384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 206), + [5386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 207), + [5388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), + [5390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_composite_type, 4, 0, 135), + [5392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 5, 0, 228), + [5394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3705), + [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), + [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [5401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 3, 0, 75), + [5403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 3, 0, 0), + [5405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3701), + [5408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3774), + [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), + [5412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), + [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [5416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), + [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [5420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), + [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [5424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4695), + [5426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [5428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, 0, 2), + [5430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), + [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), + [5434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 114), + [5436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 114), + [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), + [5442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 1, 0, 87), + [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), + [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), + [5448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 58), + [5450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 58), + [5452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 114), + [5454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 114), + [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [5458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 1, 0, 0), + [5460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 1, 0, 0), + [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [5464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2858), + [5466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3764), + [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), + [5470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 55), + [5472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 55), + [5474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), + [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [5478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3742), + [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), + [5482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), + [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [5486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), + [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [5490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2375), + [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [5494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 55), + [5496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 55), + [5498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2863), + [5500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3672), + [5503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), + [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [5509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 65), + [5511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 65), + [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), + [5515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), + [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [5519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 194), + [5521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), + [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [5525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2911), + [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [5529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 152), + [5531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 74), + [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [5543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_let_shortcut, 2, 0, 10), + [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [5549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 122), + [5551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), + [5553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3138), + [5555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 109), + [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [5563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 110), + [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [5567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 121), + [5569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 192), SHIFT(527), + [5572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 192), + [5574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 110), + [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [5578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 71), + [5580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 71), + [5582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 121), + [5584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 122), + [5586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 189), + [5588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 190), + [5590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 221), + [5592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 222), + [5594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 191), + [5596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 192), + [5598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 121), SHIFT(527), + [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [5603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 221), SHIFT(527), + [5606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 222), SHIFT(527), + [5609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 122), SHIFT(527), + [5612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 222), + [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [5616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 193), SHIFT(527), + [5619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 193), + [5621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 191), + [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [5625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 123), + [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [5631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 123), + [5633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 8), + [5635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 25), + [5637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), + [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [5641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 74), + [5643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), + [5645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), + [5647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 25), + [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [5651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 26), + [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [5655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 11), + [5657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 194), SHIFT(527), + [5660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 123), SHIFT(527), + [5663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 74), SHIFT(527), + [5666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 223), + [5668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 195), + [5670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), + [5672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(1301), + [5675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(3608), + [5678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(1833), + [5681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), + [5683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 191), SHIFT(527), + [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), + [5688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 152), SHIFT(527), + [5691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3797), + [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), + [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [5697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 109), + [5699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 189), + [5701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), + [5703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [5705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 150), + [5707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 193), + [5709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 223), + [5711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 195), + [5713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 194), + [5715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 152), + [5717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 223), SHIFT(527), + [5720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 195), SHIFT(527), + [5723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 150), SHIFT(527), + [5726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 150), + [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [5730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 26), + [5732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 22), + [5734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 22), + [5736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 25), + [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [5744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 26), + [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [5752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 2, 0, 0), + [5754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 189), SHIFT(527), + [5757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 190), SHIFT(527), + [5760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 190), + [5762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 221), + [5764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 121), + [5766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 122), + [5768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), + [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [5772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2994), + [5774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 2, 0, 86), + [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [5778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 135), + [5780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 174), + [5782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 123), + [5784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 74), + [5786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [5790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 1, 0, 2), + [5792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3139), + [5794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), SHIFT(527), + [5797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), + [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [5801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3751), + [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), + [5805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4029), + [5808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4030), + [5811] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), REDUCE(sym_ctrl_try_parenthesized, 4, 0, 15), SHIFT(527), + [5815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), REDUCE(sym_ctrl_try_parenthesized, 4, 0, 15), + [5818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 2, 0, 0), + [5820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 2, 0, 5), + [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), + [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5301), + [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5023), + [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5304), + [5836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5308), + [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), + [5840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 29), + [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), + [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), + [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4689), + [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), + [5850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 1, 0, 0), + [5852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4071), + [5855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4332), + [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), + [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), + [5861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), SHIFT(527), + [5864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), + [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [5868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4035), + [5871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4051), + [5874] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), REDUCE(sym_ctrl_try_parenthesized, 5, 0, 108), SHIFT(527), + [5878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), REDUCE(sym_ctrl_try_parenthesized, 5, 0, 108), + [5881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, 0, 2), + [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [5885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 0), + [5887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 42), + [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [5891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 3, 0, 197), + [5893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 3, 0, 197), + [5895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), + [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [5899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 73), + [5901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 73), SHIFT_REPEAT(104), + [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), + [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), + [5910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 2, 0, 15), + [5912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 4, 0, 42), + [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), + [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), + [5920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 108), SHIFT(527), + [5923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 108), + [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), + [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), + [5929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 108), SHIFT(527), + [5932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 108), + [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [5942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 0, 64), + [5944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 4, 0, 224), + [5946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 4, 0, 224), + [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [5950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), + [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [5954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), + [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [5958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), + [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), + [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), + [5968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 15), SHIFT(527), + [5971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 15), + [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [5977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 2, 0, 155), + [5979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 2, 0, 155), + [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5016), + [5983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 28), + [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [5989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(3336), + [5992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), + [5994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5301), + [5997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5023), + [6000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5304), + [6003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5308), + [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [6008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_completer, 2, 0, 173), + [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), + [6012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4062), + [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), + [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), + [6023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 15), SHIFT(527), + [6026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 15), + [6028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_completer, 2, 0, 172), + [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), + [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), + [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), + [6036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 187), SHIFT(527), + [6039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 187), + [6041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4070), + [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), + [6046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 219), SHIFT(527), + [6049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 219), + [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), + [6053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 185), SHIFT(527), + [6056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 185), + [6058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4230), + [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), + [6062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3657), + [6064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3775), + [6066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 0, 64), + [6068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(253), + [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), + [6073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 217), SHIFT(527), + [6076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 217), + [6078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4118), + [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), + [6083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 238), SHIFT(527), + [6086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 238), + [6088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4123), + [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), + [6093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 219), SHIFT(527), + [6096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 219), + [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), + [6100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 242), SHIFT(527), + [6103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 242), + [6105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 73), + [6107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 73), SHIFT_REPEAT(127), + [6110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4143), + [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), + [6115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 238), SHIFT(527), + [6118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 238), + [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4161), + [6122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 256), SHIFT(527), + [6125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 256), + [6127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(3960), + [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), + [6132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 242), SHIFT(527), + [6135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 242), + [6137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(3972), + [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), + [6142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 9, 0, 256), SHIFT(527), + [6145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 9, 0, 256), + [6147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(3987), + [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [6152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4284), + [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), + [6156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), + [6158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3790), + [6160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(3996), + [6163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 28), + [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), + [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), + [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [6171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 148), SHIFT(527), + [6174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 148), + [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [6178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 149), SHIFT(527), + [6181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 149), + [6183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 29), + [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [6187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 46), SHIFT(527), + [6190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 46), + [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), + [6194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 95), SHIFT(527), + [6197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 95), + [6199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4404), + [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), + [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), + [6205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 66), + [6207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 66), + [6209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 67), + [6211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 67), + [6213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 68), + [6215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 68), + [6217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 69), + [6219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 69), + [6221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 70), + [6223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 70), + [6225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag, 1, 0, 0), + [6227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag, 1, 0, 0), + [6229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 0, 0), + [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), + [6233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 4, 0, 95), + [6235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 37), + [6237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 37), + [6239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 136), + [6241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), + [6244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 88), + [6246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 88), + [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [6250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 171), + [6252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), + [6254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), + [6256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 106), + [6258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 106), + [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [6262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 46), SHIFT(527), + [6265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 46), + [6267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 5, 0, 208), + [6269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), + [6271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), + [6273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 106), + [6275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 106), + [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [6279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 184), SHIFT(527), + [6282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 184), + [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [6286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 148), SHIFT(527), + [6289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 148), + [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [6293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 149), SHIFT(527), + [6296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 149), + [6298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(220), + [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), + [6303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 185), SHIFT(527), + [6306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 185), + [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), + [6310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 217), SHIFT(527), + [6313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 217), + [6315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 3, 0, 64), + [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), + [6319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 187), SHIFT(527), + [6322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 187), + [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), + [6326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 95), SHIFT(527), + [6329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 95), + [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [6333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 2, 0, 86), + [6335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), SHIFT(527), + [6338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), + [6340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 73), SHIFT_REPEAT(131), + [6343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 73), SHIFT_REPEAT(131), + [6346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 73), + [6348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 3, 0, 22), + [6350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 3, 0, 22), + [6352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 135), + [6354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), + [6356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), + [6358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 4, 0, 0), + [6360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 4, 0, 0), + [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4866), + [6364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 28), + [6366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(3278), + [6369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 29), + [6371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), SHIFT(527), + [6374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), + [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [6378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flat_type, 1, 0, 85), + [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [6382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 3, 0, 127), + [6384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 3, 0, 127), + [6386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 174), + [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [6390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 184), SHIFT(527), + [6393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 184), + [6395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(224), + [6398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(250), + [6401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 146), + [6403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4544), + [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), + [6407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3796), + [6409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3819), + [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4159), + [6415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4370), + [6417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 68), + [6419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 68), + [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4579), + [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), + [6425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3933), + [6427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4015), + [6429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 3, 0, 0), + [6431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 4, 0, 96), + [6433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 97), + [6435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 100), + [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [6439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3652), + [6441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), + [6443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), + [6445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), + [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), + [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), + [6451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 3, 0, 46), + [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [6457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_let_shortcut, 3, 0, 36), + [6459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_annotation, 1, 0, 87), + [6461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 145), + [6463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 3, 0, 0), + [6465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 3, 0, 0), + [6467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 206), + [6469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 207), + [6471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_composite_type, 4, 0, 135), + [6473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 5, 0, 228), + [6475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_long_flag, 2, 0, 0), + [6477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_long_flag, 2, 0, 0), + [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [6481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 54), + [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [6485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 54), + [6487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 97), + [6489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 100), + [6491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), + [6493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), + [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [6497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4571), + [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), + [6503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3878), + [6505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4124), + [6507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 6, 0, 179), + [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), + [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), + [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [6523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4364), + [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [6529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [6539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(236), + [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [6544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(240), + [6547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(242), + [6550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(245), + [6553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 2, 0, 0), + [6555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 0), + [6557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 3), + [6559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 4, 0, 202), + [6561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 213), + [6563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 248), + [6565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 249), + [6567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 250), + [6569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 251), + [6571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 252), + [6573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 253), + [6575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 3, 0, 154), + [6577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 3, 0, 154), + [6579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 254), + [6581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4616), + [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), + [6585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4128), + [6587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4326), + [6589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 255), + [6591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 218), + [6593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 257), + [6595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 258), + [6597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 259), + [6599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 260), + [6601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 261), + [6603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 263), + [6605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 264), + [6607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 265), + [6609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 266), + [6611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 267), + [6613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 268), + [6615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 9, 0, 269), + [6617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 9, 0, 270), + [6619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 9, 0, 271), + [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), + [6623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4134), + [6625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4295), + [6627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 9, 0, 272), + [6629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 9, 0, 273), + [6631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 9, 0, 274), + [6633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 9, 0, 275), + [6635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 9, 0, 276), + [6637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 277), + [6639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 278), + [6641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 10, 0, 279), + [6643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 10, 0, 280), + [6645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 10, 0, 281), + [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), + [6649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4309), + [6651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 10, 0, 282), + [6653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 10, 0, 283), + [6655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4711), + [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5475), + [6659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4352), + [6661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 10, 0, 284), + [6663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 10, 0, 285), + [6665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5064), + [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), + [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), + [6671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 11, 0, 286), + [6673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4969), + [6675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 11, 0, 287), + [6677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 0), + [6679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4633), + [6681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 11, 0, 288), + [6683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 11, 0, 289), + [6685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 145), + [6687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 146), + [6689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 11, 0, 290), + [6691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 12, 0, 291), + [6693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 186), + [6695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 12, 0, 292), + [6697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 12, 0, 293), + [6699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 13, 0, 294), + [6701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 188), + [6703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 3), + [6705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 229), + [6707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 230), + [6709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 231), + [6711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 232), + [6713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 233), + [6715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 179), + [6717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 234), + [6719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 96), + [6721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 136), + [6723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 235), + [6725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 236), + [6727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 171), + [6729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 5, 0, 208), + [6731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 21), + [6733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), + [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), + [6737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 247), + [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), + [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), + [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), + [6745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4302), + [6747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3505), + [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), + [6751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), + [6753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 239), + [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), + [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), + [6759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 53), + [6761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 240), + [6763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3, 0, 0), + [6765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 220), + [6767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 241), + [6769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_completer, 2, 0, 172), + [6771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_completer, 2, 0, 173), + [6773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_opt, 2, 0, 112), + [6775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_opt, 2, 0, 112), + [6777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 2, 0, 113), + [6779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 2, 0, 113), + [6781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 243), + [6783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 2, 0, 22), + [6785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 2, 0, 22), + [6787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3536), + [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), + [6791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_short_flag, 2, 0, 22), + [6793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_short_flag, 2, 0, 22), + [6795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [6798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [6800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), + [6802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), + [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), + [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), + [6808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(3608), + [6811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 56), + [6813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 56), + [6815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 57), + [6817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 57), + [6819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 59), + [6821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 59), + [6823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flag_capsule, 3, 0, 0), + [6825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flag_capsule, 3, 0, 0), + [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [6843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(202), + [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [6848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(206), + [6851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(208), + [6854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(211), + [6857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3687), + [6859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), + [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), + [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), + [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), + [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [6871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 246), + [6873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 211), + [6875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 212), + [6877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 214), + [6879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 215), + [6881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 216), + [6883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 237), + [6885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 58), + [6887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 58), + [6889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), + [6891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), SHIFT_REPEAT(3647), + [6894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), + [6896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), + [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), + [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), + [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), + [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [6906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), + [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), + [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), + [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [6916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), + [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), + [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), + [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), + [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), + [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), + [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), + [6930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), + [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), + [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), + [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), + [6938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 114), + [6940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 114), + [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), + [6944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), + [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), + [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), + [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), + [6952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3687), + [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), + [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [6959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 55), + [6961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 55), + [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), + [6965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4575), + [6967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), + [6969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3025), + [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4739), + [6973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3716), + [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), + [6977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), + [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), + [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), + [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), + [6985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3712), + [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), + [6989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4512), + [6991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [6993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [6995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3923), + [6997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4068), + [6999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [7001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), + [7003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4437), + [7005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4668), + [7007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4308), + [7009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3673), + [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), + [7013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), + [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4520), + [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), + [7021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), + [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), + [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), + [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4586), + [7029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3714), + [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), + [7033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4272), + [7035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5201), + [7037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5202), + [7039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), + [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), + [7043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4542), + [7045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), + [7047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), + [7049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), + [7051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), + [7053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4181), + [7055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5396), + [7057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5397), + [7059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), + [7061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), + [7063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3739), + [7065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3944), + [7067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3966), + [7069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4236), + [7071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5413), + [7073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5414), + [7075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5412), + [7079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4238), + [7081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5416), + [7083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5417), + [7085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), + [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), + [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), + [7091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4241), + [7093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5419), + [7095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5420), + [7097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), + [7099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [7101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [7103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [7105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [7107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4244), + [7109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5422), + [7111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5423), + [7113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), + [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5421), + [7117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), + [7119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), + [7121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), + [7123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), + [7125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4249), + [7127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5425), + [7129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5426), + [7131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3938), + [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5424), + [7135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), + [7137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), + [7139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), + [7141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), + [7143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4253), + [7145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5428), + [7147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5429), + [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5427), + [7151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3756), + [7153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3842), + [7155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3970), + [7157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4310), + [7159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4254), + [7161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5431), + [7163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5432), + [7165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5430), + [7169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), + [7171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), + [7173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), + [7175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), + [7177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), + [7179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), + [7181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), + [7183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), + [7185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), + [7187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4256), + [7189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5434), + [7191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5435), + [7193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), + [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5433), + [7197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [7199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), + [7201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [7203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), + [7205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), + [7207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4257), + [7209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5437), + [7211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5438), + [7213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4232), + [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5436), + [7217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4176), + [7219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5440), + [7221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5441), + [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5439), + [7225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4261), + [7227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5443), + [7229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5444), + [7231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5442), + [7235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), + [7237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), + [7239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3823), + [7241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4263), + [7243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5446), + [7245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5447), + [7247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5445), + [7251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4315), + [7253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5387), + [7255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5388), + [7257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), + [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), + [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), + [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), + [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), + [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), + [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), + [7273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4265), + [7275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5275), + [7277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5302), + [7279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), + [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), + [7285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4851), + [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), + [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), + [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), + [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), + [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), + [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), + [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), + [7305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3768), + [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), + [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), + [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [7313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 6), + [7315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3776), + [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), + [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4326), + [7321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), + [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), + [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), + [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), + [7329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 7), + [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), + [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), + [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), + [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), + [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), + [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), + [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), + [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), + [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), + [7349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3778), + [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), + [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [7355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), + [7357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), + [7359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), + [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), + [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), + [7365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 2, 0, 0), + [7367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [7369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), + [7371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), + [7374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), + [7376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), + [7378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [7380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), + [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), + [7384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3761), + [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), + [7388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), + [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), + [7392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), + [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), + [7396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), + [7398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4180), + [7400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), + [7402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), + [7404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), + [7406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), + [7408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4080), + [7410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4046), + [7412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), + [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), + [7416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [7418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), + [7420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3357), + [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), + [7424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [7426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 181), + [7428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3740), + [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), + [7432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), + [7434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3747), + [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), + [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), + [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), + [7442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3700), + [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), + [7446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3838), + [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), + [7450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3256), + [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), + [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), + [7456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3706), + [7458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3040), + [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), + [7462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [7464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), + [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), + [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), + [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), + [7472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), + [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), + [7476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), + [7478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4362), + [7480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), + [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), + [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [7486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), + [7488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), + [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), + [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [7496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3936), + [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), + [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [7502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3734), + [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), + [7506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), + [7508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4264), + [7510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), + [7512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), + [7514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [7516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), + [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [7520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), + [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), + [7524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), + [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), + [7528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3260), + [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), + [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), + [7536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 181), + [7538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), + [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), + [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5038), + [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4922), + [7546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), + [7548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4220), + [7550] = {.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), + [7554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), + [7556] = {.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), + [7560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), + [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), + [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5071), + [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5075), + [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), + [7572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), + [7574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), + [7576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4613), + [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), + [7580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), + [7582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), + [7584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3900), + [7586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), + [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [7590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), + [7592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), + [7594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3746), + [7596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), + [7598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), + [7600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), + [7602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), + [7604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), + [7606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), + [7608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), + [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4251), + [7612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4250), + [7614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4269), + [7616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), + [7618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5262), + [7620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3758), + [7622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), + [7624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), + [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), + [7628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), + [7630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), + [7632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3706), + [7635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), + [7637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4300), + [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [7641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), + [7643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4314), + [7645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), + [7648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), + [7650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4320), + [7652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5453), + [7654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), + [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4279), + [7658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [7660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), + [7662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), + [7664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), + [7666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), + [7668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4145), + [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), + [7672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3684), + [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), + [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4631), + [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), + [7681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), + [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4587), + [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [7687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), + [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), + [7691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3967), + [7693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4279), + [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4692), + [7697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4692), + [7699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5027), + [7701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3958), + [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), + [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5372), + [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), + [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5027), + [7713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 157), + [7715] = {.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), + [7719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 17), + [7721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 17), + [7723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), + [7726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), + [7729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 1, 0, 20), + [7731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 17), SHIFT(2280), + [7734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3787), + [7736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), + [7738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3664), + [7741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3515), + [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), + [7745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3516), + [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), + [7749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3517), + [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), + [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), + [7755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), + [7757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4474), + [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), + [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [7765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4212), + [7767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 2, 0, 14), + [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [7771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3280), + [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), + [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), + [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [7779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 1, 0, 0), + [7781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4785), + [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [7787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 3, 0, 0), + [7789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 81), + [7791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), + [7793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5374), + [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [7798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 35), + [7800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), + [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), + [7804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 3, 0, 0), + [7806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 3, 0, 0), + [7808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3736), + [7810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), + [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), + [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4717), + [7816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 3, 0, 43), + [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), + [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), + [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), + [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), + [7826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 2, 0, 0), + [7828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 2, 0, 0), + [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), + [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), + [7838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3444), + [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), + [7842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), + [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), + [7846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3472), + [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), + [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [7854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4252), + [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), + [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4650), + [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), + [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), + [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4634), + [7870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 63), SHIFT_REPEAT(79), + [7873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 63), SHIFT_REPEAT(4587), + [7876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 63), + [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4285), + [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), + [7882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), + [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), + [7886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), + [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), + [7890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), + [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), + [7894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3484), + [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), + [7898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), + [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5236), + [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [7906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), + [7908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 2, 0, 50), + [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), + [7912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3677), + [7915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4323), + [7917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), + [7919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), + [7921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), + [7923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 2, 0, 0), + [7925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), + [7927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4806), + [7929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [7931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [7933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), + [7935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3729), + [7937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [7939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), + [7941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4697), + [7943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4514), + [7945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), + [7947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [7949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), + [7951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_list_body, 1, 0, 0), REDUCE(sym_list_body, 1, 0, 0), + [7954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list_body, 1, 0, 0), + [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [7958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 63), SHIFT_REPEAT(78), + [7961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 63), + [7963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 63), SHIFT_REPEAT(4697), + [7966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), + [7968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [7970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3765), + [7972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), + [7974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [7976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 0, 182), + [7978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 0, 182), + [7980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), + [7982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), + [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [7986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), SHIFT_REPEAT(4441), + [7989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [7991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 183), + [7993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 183), + [7995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 4, 0, 156), + [7997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 4, 0, 156), + [7999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), + [8001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [8003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [8005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), + [8007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), + [8009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [8011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4761), + [8013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4843), + [8015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [8017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), + [8019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), + [8021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [8023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3777), + [8025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), + [8027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), + [8029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), + [8031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4001), + [8033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4641), + [8035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), + [8037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [8039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), + [8041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4467), + [8043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 116), + [8045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 116), + [8047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), + [8049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [8051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [8053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), + [8055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [8057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [8059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [8061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), + [8063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3585), + [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), + [8067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [8069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [8071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 111), + [8073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 111), + [8075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721), + [8077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), + [8079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), + [8081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(4042), + [8084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [8086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4657), + [8088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), + [8090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3626), + [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), + [8094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4713), + [8096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 1, 0, 0), + [8098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), + [8100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 2, 0, 51), + [8102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 1, 0, 1), + [8104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 0), + [8106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 50), + [8108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 51), + [8110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, 0, 47), + [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [8114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), + [8116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_statement, 1, 0, 0), + [8118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4850), + [8121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), + [8123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), + [8125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(5236), + [8128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1423), + [8131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), + [8133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__table_body_repeat1, 2, 0, 49), + [8135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 4, 0, 147), + [8137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4662), + [8139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4926), + [8141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3700), + [8144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3915), + [8146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), + [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), + [8150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3757), + [8152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), + [8154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 106), + [8156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 106), + [8158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 4, 0, 83), + [8160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_content, 1, 0, 0), + [8162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3635), + [8164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [8166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3721), + [8168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), + [8170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), + [8172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), + [8174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let, 2, 0, 9), + [8176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut, 2, 0, 9), + [8178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), + [8180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_entry, 1, 0, 170), + [8182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_entry, 1, 0, 170), + [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [8186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 2, 0, 9), + [8188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), + [8190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), + [8192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), + [8194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), + [8196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(4806), + [8199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_export, 2, 0, 13), + [8201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_loop, 2, 0, 13), + [8203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_interpolated, 3, 0, 0), + [8205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_interpolated, 3, 0, 0), + [8207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4695), + [8210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 5, 0, 132), + [8212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 133), + [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), + [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5040), + [8218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 134), + [8220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4850), + [8222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [8224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_annotation, 2, 0, 86), + [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [8228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_annotation, 2, 0, 86), + [8230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 2, 0, 16), + [8232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 4, 0, 137), + [8234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 138), + [8236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 139), + [8238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), + [8240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), + [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [8244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 3, 0, 140), + [8246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 5, 0, 144), + [8248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), + [8250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 27), + [8252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 27), + [8254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), + [8256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), + [8258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_body, 1, 0, 0), + [8260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 2, 0, 0), + [8262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 3, 0, 33), + [8264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [8266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [8268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 4, 0, 92), + [8270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4266), + [8272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), + [8274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wild_card, 1, 0, 0), + [8276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 38), + [8278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 39), + [8280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 40), + [8282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 41), + [8284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 2, 0, 0), + [8286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 2, 0, 49), + [8288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement, 1, 0, 0), + [8290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 44), + [8292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_while, 3, 0, 45), + [8294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 4, 0, 82), + [8296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 166), + [8298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 167), + [8300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3993), + [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), + [8304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), + [8306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 168), + [8308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), + [8310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), + [8312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 94), + [8314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 177), + [8316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [8318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 3, 0, 103), + [8320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), + [8322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 6, 0, 198), + [8324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 199), + [8326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 200), + [8328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4274), + [8330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), + [8332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 201), + [8334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3847), + [8336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 3, 0, 84), + [8338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 3, 0, 104), + [8340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [8342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 73), SHIFT_REPEAT(194), + [8345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), + [8347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), + [8349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4141), + [8351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), + [8353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 106), + [8355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 106), + [8357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 225), + [8359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 8, 0, 226), + [8361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 8, 0, 244), + [8363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 8, 0, 245), + [8365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 9, 0, 262), + [8367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 0), + [8369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), + [8371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 4, 0, 210), + [8373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4292), + [8375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3908), + [8377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 98), + [8379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 99), + [8381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 3, 0, 107), + [8383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 4, 0, 0), + [8385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 4, 0, 181), + [8387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 107), + [8389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 180), + [8391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern, 3, 0, 74), + [8393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 181), + [8395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 4, 0, 80), + [8397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 1, 0, 20), + [8399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [8401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), + [8403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4984), + [8407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), + [8409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 3, 0, 33), + [8411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), + [8413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 5, 0, 132), + [8415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__all_type, 1, 0, 87), + [8417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__all_type, 1, 0, 87), + [8419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), + [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5043), + [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [8425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [8427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4831), + [8429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5324), + [8431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [8433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), + [8435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), + [8437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), + [8439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 4, 0, 137), + [8441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4642), + [8443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5077), + [8445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), + [8447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 1, 0, 91), + [8449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 180), + [8451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 181), + [8453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), + [8455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 3, 0, 209), + [8457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 1, 0, 49), + [8459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), + [8461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 3, 0, 178), + [8463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern_parenthesized, 3, 0, 74), + [8465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(4983), + [8468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 50), REDUCE(sym_record_body, 2, 0, 50), + [8471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4740), + [8473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), + [8475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_head, 2, 0, 2), + [8477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 1, 0, 20), + [8479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), + [8481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 3, 0, 147), + [8483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), + [8486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), + [8489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5002), + [8491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 4, 0, 210), + [8493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [8495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 50), + [8497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 4, 0, 181), + [8499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 1, 0, 91), + [8501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 2, 0, 204), + [8503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 2, 0, 205), + [8505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 2, 0, 141), + [8507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 1, 0, 93), + [8509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 2, 0, 142), + [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [8513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized, 1, 0, 0), + [8515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4712), + [8517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4964), + [8519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 98), + [8521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 1, 0, 0), + [8523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 1, 0, 0), + [8525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 1, 0, 169), + [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [8529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 2, 0, 86), + [8531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 2, 0, 175), + [8533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 50), + [8535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 3, 0, 209), + [8537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 51), + [8539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [8541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 2, 0, 103), + [8543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 51), + [8545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_head, 3, 0, 101), + [8547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 1, 0, 0), + [8549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_parenthesized, 2, 0, 9), + [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5033), + [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5348), + [8555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 27), + [8557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 27), + [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [8561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 1, 0, 20), REDUCE(sym_record_body, 1, 0, 20), + [8564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 2, 0, 104), + [8566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_parenthesized, 2, 0, 9), + [8568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5361), + [8570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4983), + [8572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [8574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 3, 0, 227), + [8576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 2, 0, 9), + [8578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_parenthesized, 1, 0, 0), + [8580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 1, 0, 61), + [8582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5048), + [8584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1, 0, 0), + [8586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_parenthesized, 1, 0, 1), + [8588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), + [8590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__table_body_repeat1, 2, 0, 105), SHIFT_REPEAT(399), + [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5059), + [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [8599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 3, 0, 0), + [8601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 126), + [8603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 126), SHIFT_REPEAT(4861), + [8606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 4, 0, 83), + [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), + [8610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [8612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 2, 0, 86), + [8614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [8616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), + [8618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 107), + [8620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 107), + [8622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 3, 0, 84), + [8624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [8626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 2, 0, 175), + [8628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [8630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [8632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), + [8634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [8636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4624), + [8638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4603), + [8640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(5030), + [8643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), + [8645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), + [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), + [8649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2988), + [8651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_type, 3, 0, 176), + [8653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_type, 3, 0, 176), + [8655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [8657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [8661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5216), + [8663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 18), + [8665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 18), + [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4765), + [8669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4590), + [8671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 19), + [8673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 19), + [8675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), + [8677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), + [8679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), + [8681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4530), + [8683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4369), + [8685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_entry, 2, 0, 203), + [8687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_entry, 2, 0, 203), + [8689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), + [8691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(4954), + [8694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), + [8696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 10, 182), + [8698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 10, 182), + [8700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_annotation, 3, 0, 136), + [8702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_annotation, 3, 0, 136), + [8704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_var, 3, 0, 72), + [8706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_var, 3, 0, 72), + [8708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5308), + [8710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 18), + [8712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 18), + [8714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 19), + [8716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 19), + [8718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), + [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), + [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5260), + [8725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4399), + [8727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), + [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5351), + [8731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 10, 183), + [8733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 10, 183), + [8735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(4996), + [8738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [8740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [8742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 124), + [8744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 4, 0, 0), + [8746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 4, 0, 0), + [8748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4515), + [8750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 6), + [8752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 7), + [8754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), + [8756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), + [8758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4516), + [8760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [8762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [8764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), + [8766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2843), + [8768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), + [8770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3026), + [8772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [8774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [8776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), + [8778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), + [8780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4901), + [8782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), + [8784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [8786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [8788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [8790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [8792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), + [8794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), + [8796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [8798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [8800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [8802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [8804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [8806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), + [8808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [8812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [8814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [8816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5493), + [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), + [8820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [8822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [8824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [8826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [8828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), + [8830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2952), + [8832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [8834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [8836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [8838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4853), + [8840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [8842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), + [8844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [8846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), + [8848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4740), + [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [8852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [8854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 2, 0, 86), + [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), + [8858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [8860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), + [8862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [8864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [8866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [8868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [8870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), + [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [8878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [8880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [8882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3172), + [8884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [8886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), + [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), + [8894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), + [8896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), + [8898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), + [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), + [8902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5499), + [8904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), + [8908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [8910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 1, 0, 91), + [8912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [8914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [8916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [8918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [8920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [8922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [8926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [8928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [8930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [8934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), + [8936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), + [8940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), + [8942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), + [8944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [8946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), + [8948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [8950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), + [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), + [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [8960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), + [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), + [8982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5317), + [8984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), + [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), + [8988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), + [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5293), + [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5297), + [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [8996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [9000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5263), + [9002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 2, 0, 0), + [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), + [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [9014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_key, 2, 0, 0), + [9016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [9018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3161), + [9020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4777), + [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [9026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4896), + [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [9032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), + [9034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [9036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), + [9038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5368), + [9040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [9048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [9050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [9054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [9058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [9060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), + [9062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [9064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_guard, 2, 0, 0), + [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [9068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), + [9070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), + [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [9074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [9076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [9078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4904), + [9080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), + [9082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4776), + [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), + [9086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [9088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [9090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5310), + [9092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3181), + [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), + [9098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), + [9102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5510), + [9104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), + [9106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), + [9108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4711), + [9110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), + [9112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [9116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [9120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4633), + [9126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), + [9128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4835), + [9130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4877), + [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [9134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), + [9136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [9138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), + [9140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [9142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [9144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5474), + [9146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), + [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), + [9150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [9154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), + [9156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), + [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [9160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4858), + [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4825), + [9164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5296), + [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5022), + [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), + [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4617), + [9182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), + [9184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), + [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [9188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [9190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [9192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3544), + [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4273), + [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [9206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_rest, 3, 0, 0), + [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), + [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5335), + [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5131), + [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5132), + [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), + [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [9226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 2, 0, 0), + [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [9234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), + [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), + [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [9246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 3, 0, 86), + [9248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2991), + [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [9252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), + [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), + [9256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [9258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), + [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), + [9268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5144), + [9270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [9272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5511), + [9274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [9276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5320), + [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5365), + [9280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5366), + [9282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [9284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [9286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [9288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [9290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [9292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5496), + [9294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5485), + [9296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5081), + [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5481), + [9300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5135), + [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5143), + [9304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5240), + [9306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5285), + [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5286), + [9310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5360), + [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5392), + [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5393), + [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5482), + [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5506), + [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5508), + [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5089), + [9324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5098), + [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5099), + [9328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5104), + [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5113), + [9332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5114), + [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5119), + [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5126), + [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5127), + [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), + [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5137), + [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5138), + [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5141), + [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5146), + [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5147), + [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5150), + [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5153), + [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), + [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5157), + [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5160), + [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5161), + [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5164), + [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5167), + [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), + [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5171), + [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5174), + [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5175), + [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5178), + [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5181), + [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5182), + [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5184), + [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5187), + [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5188), + [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190), + [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), + [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5194), + [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [9396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2976), + [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [9402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), + [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), + [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), + [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), + [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), + [9412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), + [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), + [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), + [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), + [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [9422] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), + [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), + [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), + [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5338), + [9438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), + [9440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), + [9442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3123), + [9444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [9448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), + [9450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), + [9452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), + [9454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4728), + [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), + [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), + [9462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), + [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), + [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [9472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [9474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [9484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2, 0, 0), }; enum ts_external_scanner_symbol_identifiers { diff --git a/test/corpus/ctrl/try.nu b/test/corpus/ctrl/try.nu index 74506253..b9e9fbf4 100644 --- a/test/corpus/ctrl/try.nu +++ b/test/corpus/ctrl/try.nu @@ -28,6 +28,13 @@ try-002-parenthesized # comment } + # comment + finally # comment + + { + # comment + } + ) ----- @@ -43,5 +50,80 @@ try-002-parenthesized (block) (comment) (comment) + (block + (comment)) + (comment) + (comment) (block (comment))))))))) + +===== +try-003-catch-closure +===== + +try {} catch {|e|} + +----- + +(nu_script + (pipeline + (pipe_element + (ctrl_try + try_branch: (block) + catch_branch: (val_closure + parameters: (parameter_pipes + (parameter + param_name: (identifier)))))))) + +===== +try-004-catch-finally +===== + +try {} catch {} finally {} +try {} catch {|e|} finally {|e|} + +----- + +(nu_script + (pipeline + (pipe_element + (ctrl_try + try_branch: (block) + catch_branch: (block) + finally_branch: (block)))) + (pipeline + (pipe_element + (ctrl_try + try_branch: (block) + catch_branch: (val_closure + parameters: (parameter_pipes + (parameter + param_name: (identifier)))) + finally_branch: (val_closure + parameters: (parameter_pipes + (parameter + param_name: (identifier)))))))) + +===== +try-005-finally +===== + +try {} finally {} +try {} finally {|e|} + +----- + +(nu_script + (pipeline + (pipe_element + (ctrl_try + try_branch: (block) + finally_branch: (block)))) + (pipeline + (pipe_element + (ctrl_try + try_branch: (block) + finally_branch: (val_closure + parameters: (parameter_pipes + (parameter + param_name: (identifier))))))))